@loomcore/common 0.0.10 → 0.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9,7 +9,7 @@ export declare const UserContextSchema: import("@sinclair/typebox").TObject<{
9
9
  _orgId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
10
10
  }>;
11
11
  export declare const UserContextSpec: import("./model-spec.interface.js").IModelSpec<import("@sinclair/typebox").TSchema>;
12
- export declare function initializeSystemUserContext(systemEmail: string, metaOrgId: string): IUserContext;
12
+ export declare function initializeSystemUserContext(systemEmail: string, metaOrgId: string | undefined): IUserContext;
13
13
  export declare function getSystemUserContext(): IUserContext;
14
14
  export declare function isSystemUserContextInitialized(): boolean;
15
15
  export declare function resetSystemUserContext(): void;
@@ -24,7 +24,6 @@ export function initializeSystemUserContext(systemEmail, metaOrgId) {
24
24
  },
25
25
  _orgId: metaOrgId,
26
26
  };
27
- console.log('SystemUserContext initialized successfully');
28
27
  return _systemUserContext;
29
28
  }
30
29
  export function getSystemUserContext() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loomcore/common",
3
- "version": "0.0.10",
3
+ "version": "0.0.12",
4
4
  "private": false,
5
5
  "description": "Loom Core Models- common models, interfaces, types, and utils for Loom Core. All things common to both api and client apps.",
6
6
  "scripts": {