Skip to content

Commit 7b9657f

Browse files
committed
ENG-0000 - Fix Namespace Overwrite
It might work, but it ain't right and I'm tired of looking at the warning in my console :)
1 parent cf61bed commit 7b9657f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/assets-query/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@al/assets-query",
3-
"version": "2.1.101",
3+
"version": "2.1.102",
44
"license": "MIT",
55
"description": "A client for interacting with the Alert Logic Assets Query Public API",
66
"author": {

packages/assets-query/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { AlAssetsWriteClientInstance } from './al-assets-write-client';
55

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

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

0 commit comments

Comments
 (0)