@spytecgps/lambda-utils 1.0.2 → 1.0.3

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.
Files changed (2) hide show
  1. package/dist/types.d.ts +2 -2
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -9,13 +9,13 @@ export interface SpytecAuthorizedResources {
9
9
  }
10
10
  export declare type AuthClass = 'user' | 'client' | 'system';
11
11
  export declare type DevicesAccess = 'full' | 'limited';
12
- export declare type BoundaryAccess = 'full' | 'limited';
12
+ export declare type BoundariesAccess = 'full' | 'limited';
13
13
  export interface SpytecAuthContext {
14
14
  type: AuthClass;
15
15
  userId?: string;
16
16
  clientId: number;
17
17
  devicesAccess: DevicesAccess;
18
- boundaryAccess: BoundaryAccess;
18
+ boundariesAccess: BoundariesAccess;
19
19
  minAccessDate?: string;
20
20
  resources: SpytecAuthorizedResources;
21
21
  principalId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spytecgps/lambda-utils",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Lambda Utils",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",