Skip to content

Commit

Permalink
ENG-0000 - Fix Namespace Overwrite
Browse files Browse the repository at this point in the history
It might work, but it ain't right and I'm tired of looking at the
warning in my console :)
  • Loading branch information
mcnielsen committed Dec 3, 2024
1 parent cf61bed commit 7b9657f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/assets-query/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@al/assets-query",
"version": "2.1.101",
"version": "2.1.102",
"license": "MIT",
"description": "A client for interacting with the Alert Logic Assets Query Public API",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion packages/assets-query/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { AlAssetsWriteClientInstance } from './al-assets-write-client';

/* tslint:disable:variable-name */
export const AlAssetsQueryClient = AlGlobalizer.instantiate('al.assets-query', () => new AlAssetsQueryClientInstance());
export const AlAssetsQueryV2Client = AlGlobalizer.instantiate('al.assets-query', () => new AlAssetsQueryV2ClientInstance());
export const AlAssetsQueryV2Client = AlGlobalizer.instantiate('al.assets-queryV2', () => new AlAssetsQueryV2ClientInstance());
export const AlAssetsWriteClient = AlGlobalizer.instantiate('al.assets-write', () => new AlAssetsWriteClientInstance());

export { AlAssetsQueryClientInstance } from './al-assets-query-client';
Expand Down

0 comments on commit 7b9657f

Please sign in to comment.