grm-shared-library 1.1.100 → 1.1.101

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.
@@ -27,4 +27,5 @@ __exportStar(require("./interfaces/user-context"), exports);
27
27
  __exportStar(require("./interfaces/access-scope"), exports);
28
28
  __exportStar(require("./interfaces/guardian"), exports);
29
29
  __exportStar(require("./interfaces/guardian-relation"), exports);
30
+ __exportStar(require("./interfaces/add-guardian-response"), exports);
30
31
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/user/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yDAAuC;AACvC,yDAAuC;AACvC,sDAAoC;AACpC,sEAAoD;AACpD,6EAA2D;AAE3D,2DAAyC;AACzC,qEAAmD;AACnD,wEAAsD;AAEtD,oDAAkC;AAClC,4DAA0C;AAC1C,4DAA0C;AAC1C,wDAAsC;AACtC,iEAA+C"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/user/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yDAAuC;AACvC,yDAAuC;AACvC,sDAAoC;AACpC,sEAAoD;AACpD,6EAA2D;AAE3D,2DAAyC;AACzC,qEAAmD;AACnD,wEAAsD;AAEtD,oDAAkC;AAClC,4DAA0C;AAC1C,4DAA0C;AAC1C,wDAAsC;AACtC,iEAA+C;AAC/C,qEAAmD"}
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=add-guardian-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"add-guardian-response.js","sourceRoot":"","sources":["../../../../../src/modules/user/interfaces/add-guardian-response.ts"],"names":[],"mappings":""}
@@ -11,4 +11,5 @@ export * from './interfaces/user-context';
11
11
  export * from './interfaces/access-scope';
12
12
  export * from './interfaces/guardian';
13
13
  export * from './interfaces/guardian-relation';
14
+ export * from './interfaces/add-guardian-response';
14
15
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/user/index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAC;AACvC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qCAAqC,CAAC;AACpD,cAAc,4CAA4C,CAAC;AAE3D,cAAc,0BAA0B,CAAC;AACzC,cAAc,oCAAoC,CAAC;AACnD,cAAc,uCAAuC,CAAC;AAEtD,cAAc,mBAAmB,CAAC;AAClC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,uBAAuB,CAAC;AACtC,cAAc,gCAAgC,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/user/index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAC;AACvC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qCAAqC,CAAC;AACpD,cAAc,4CAA4C,CAAC;AAE3D,cAAc,0BAA0B,CAAC;AACzC,cAAc,oCAAoC,CAAC;AACnD,cAAc,uCAAuC,CAAC;AAEtD,cAAc,mBAAmB,CAAC;AAClC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,uBAAuB,CAAC;AACtC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,oCAAoC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=add-guardian-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"add-guardian-response.js","sourceRoot":"","sources":["../../../../../src/modules/user/interfaces/add-guardian-response.ts"],"names":[],"mappings":""}
@@ -11,3 +11,4 @@ export * from './interfaces/user-context';
11
11
  export * from './interfaces/access-scope';
12
12
  export * from './interfaces/guardian';
13
13
  export * from './interfaces/guardian-relation';
14
+ export * from './interfaces/add-guardian-response';
@@ -0,0 +1,6 @@
1
+ import { Guardian } from "./guardian";
2
+ import { GuardianRelation } from "./guardian-relation";
3
+ export interface AddGuardianResponse {
4
+ externalGuardians: Guardian[];
5
+ systemGuardians: GuardianRelation[];
6
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "grm-shared-library",
3
- "version": "1.1.100",
3
+ "version": "1.1.101",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "types": "dist/types/index.d.ts",