@campxdev/server-shared 1.6.56 → 1.6.58
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.
- package/dist/cloud-watch-logger/cloud-watch-logger.module.d.ts +5 -0
- package/dist/cloud-watch-logger/cloud-watch-logger.module.d.ts.map +1 -1
- package/dist/cloud-watch-logger/cloud-watch-logger.module.js +5 -0
- package/dist/cloud-watch-logger/cloud-watch-logger.module.js.map +1 -1
- package/dist/cloud-watch-logger/cloud-water-logger.service.d.ts +21 -5
- package/dist/cloud-watch-logger/cloud-water-logger.service.d.ts.map +1 -1
- package/dist/cloud-watch-logger/cloud-water-logger.service.js +17 -5
- package/dist/cloud-watch-logger/cloud-water-logger.service.js.map +1 -1
- package/dist/cloud-watch-logger/dtos/put-log-event.dto.d.ts +7 -0
- package/dist/cloud-watch-logger/dtos/put-log-event.dto.d.ts.map +1 -1
- package/dist/cloud-watch-logger/dtos/put-log-event.dto.js +7 -0
- package/dist/cloud-watch-logger/dtos/put-log-event.dto.js.map +1 -1
- package/dist/common/decorators/batch-validation.decorator.d.ts +5 -0
- package/dist/common/decorators/batch-validation.decorator.d.ts.map +1 -1
- package/dist/common/decorators/batch-validation.decorator.js +5 -0
- package/dist/common/decorators/batch-validation.decorator.js.map +1 -1
- package/dist/common/decorators/request.decorators.d.ts +30 -1
- package/dist/common/decorators/request.decorators.d.ts.map +1 -1
- package/dist/common/decorators/request.decorators.js +92 -17
- package/dist/common/decorators/request.decorators.js.map +1 -1
- package/dist/common/decorators/time-validation.decorator.d.ts +6 -0
- package/dist/common/decorators/time-validation.decorator.d.ts.map +1 -1
- package/dist/common/decorators/time-validation.decorator.js +6 -0
- package/dist/common/decorators/time-validation.decorator.js.map +1 -1
- package/dist/common/filters/unhandled-exception.filter.d.ts +7 -0
- package/dist/common/filters/unhandled-exception.filter.d.ts.map +1 -1
- package/dist/common/filters/unhandled-exception.filter.js +7 -0
- package/dist/common/filters/unhandled-exception.filter.js.map +1 -1
- package/dist/common/interceptors/request.interceptor.js +2 -2
- package/dist/common/interceptors/request.interceptor.js.map +1 -1
- package/dist/domain/index.d.ts +2 -4
- package/dist/domain/index.d.ts.map +1 -1
- package/dist/domain/index.js +3 -4
- package/dist/domain/index.js.map +1 -1
- package/dist/domain/schemas/index.d.ts +5 -0
- package/dist/domain/schemas/index.d.ts.map +1 -0
- package/dist/domain/schemas/index.js +21 -0
- package/dist/domain/schemas/index.js.map +1 -0
- package/dist/domain/schemas/print-format.schema.d.ts +72 -0
- package/dist/domain/schemas/print-format.schema.d.ts.map +1 -0
- package/dist/domain/schemas/print-format.schema.js +90 -0
- package/dist/domain/schemas/print-format.schema.js.map +1 -0
- package/dist/modules-handler/modules-handler.module.d.ts +14 -0
- package/dist/modules-handler/modules-handler.module.d.ts.map +1 -1
- package/dist/modules-handler/modules-handler.module.js +14 -0
- package/dist/modules-handler/modules-handler.module.js.map +1 -1
- package/dist/permissions/app-permissions/exams-permissions.d.ts +27 -0
- package/dist/permissions/app-permissions/exams-permissions.d.ts.map +1 -1
- package/dist/permissions/app-permissions/exams-permissions.js +27 -0
- package/dist/permissions/app-permissions/exams-permissions.js.map +1 -1
- package/dist/permissions/permissions.d.ts +54 -0
- package/dist/permissions/permissions.d.ts.map +1 -1
- package/dist/request-store/constants.d.ts +15 -0
- package/dist/request-store/constants.d.ts.map +1 -0
- package/dist/request-store/constants.js +19 -0
- package/dist/request-store/constants.js.map +1 -0
- package/dist/request-store/contexts/aws-context.d.ts +24 -0
- package/dist/request-store/contexts/aws-context.d.ts.map +1 -0
- package/dist/request-store/contexts/aws-context.js +36 -0
- package/dist/request-store/contexts/aws-context.js.map +1 -0
- package/dist/request-store/contexts/easydms-context.d.ts +13 -0
- package/dist/request-store/contexts/easydms-context.d.ts.map +1 -0
- package/dist/request-store/contexts/easydms-context.js +29 -0
- package/dist/request-store/contexts/easydms-context.js.map +1 -0
- package/dist/request-store/contexts/express-context.d.ts +23 -0
- package/dist/request-store/contexts/express-context.d.ts.map +1 -0
- package/dist/request-store/contexts/express-context.js +38 -0
- package/dist/request-store/contexts/express-context.js.map +1 -0
- package/dist/request-store/contexts/index.d.ts +9 -0
- package/dist/request-store/contexts/index.d.ts.map +1 -0
- package/dist/request-store/contexts/index.js +25 -0
- package/dist/request-store/contexts/index.js.map +1 -0
- package/dist/request-store/contexts/mongo-context.d.ts +38 -0
- package/dist/request-store/contexts/mongo-context.d.ts.map +1 -0
- package/dist/request-store/contexts/mongo-context.js +29 -0
- package/dist/request-store/contexts/mongo-context.js.map +1 -0
- package/dist/request-store/contexts/mysql-context.d.ts +21 -0
- package/dist/request-store/contexts/mysql-context.d.ts.map +1 -0
- package/dist/request-store/contexts/mysql-context.js +43 -0
- package/dist/request-store/contexts/mysql-context.js.map +1 -0
- package/dist/request-store/contexts/mysql-credentials-context.d.ts +11 -0
- package/dist/request-store/contexts/mysql-credentials-context.d.ts.map +1 -0
- package/dist/request-store/contexts/mysql-credentials-context.js +18 -0
- package/dist/request-store/contexts/mysql-credentials-context.js.map +1 -0
- package/dist/request-store/contexts/tenant-context.d.ts +163 -0
- package/dist/request-store/contexts/tenant-context.d.ts.map +1 -0
- package/dist/request-store/contexts/tenant-context.js +195 -0
- package/dist/request-store/contexts/tenant-context.js.map +1 -0
- package/dist/request-store/contexts/user-context.d.ts +45 -0
- package/dist/request-store/contexts/user-context.d.ts.map +1 -0
- package/dist/request-store/contexts/user-context.js +81 -0
- package/dist/request-store/contexts/user-context.js.map +1 -0
- package/dist/request-store/index.d.ts +1 -0
- package/dist/request-store/index.d.ts.map +1 -1
- package/dist/request-store/index.js +1 -0
- package/dist/request-store/index.js.map +1 -1
- package/dist/request-store/request-store.d.ts +13 -148
- package/dist/request-store/request-store.d.ts.map +1 -1
- package/dist/request-store/request-store.js +16 -256
- package/dist/request-store/request-store.js.map +1 -1
- package/dist/request-store/store.interceptor.d.ts +8 -0
- package/dist/request-store/store.interceptor.d.ts.map +1 -1
- package/dist/request-store/store.interceptor.js +8 -0
- package/dist/request-store/store.interceptor.js.map +1 -1
- package/dist/shared-module/shared.module.d.ts +5 -0
- package/dist/shared-module/shared.module.d.ts.map +1 -1
- package/dist/shared-module/shared.module.js +5 -0
- package/dist/shared-module/shared.module.js.map +1 -1
- package/dist/util-module/index.d.ts +1 -0
- package/dist/util-module/index.d.ts.map +1 -1
- package/dist/util-module/index.js +1 -0
- package/dist/util-module/index.js.map +1 -1
- package/dist/util-module/utils-custom.service.d.ts +17 -0
- package/dist/util-module/utils-custom.service.d.ts.map +1 -0
- package/dist/util-module/utils-custom.service.js +57 -0
- package/dist/util-module/utils-custom.service.js.map +1 -0
- package/dist/util-module/utils.service.d.ts +1 -14
- package/dist/util-module/utils.service.d.ts.map +1 -1
- package/dist/util-module/utils.service.js +2 -36
- package/dist/util-module/utils.service.js.map +1 -1
- package/package.json +1 -1
|
@@ -3844,6 +3844,33 @@ export declare const APermission: {
|
|
|
3844
3844
|
};
|
|
3845
3845
|
};
|
|
3846
3846
|
};
|
|
3847
|
+
external_exam_booklet_assignment: {
|
|
3848
|
+
GROUP: {
|
|
3849
|
+
name: string;
|
|
3850
|
+
slug: string;
|
|
3851
|
+
application: string;
|
|
3852
|
+
};
|
|
3853
|
+
PERMISSIONS: {
|
|
3854
|
+
external_exam_booklet_assignment_view: {
|
|
3855
|
+
name: string;
|
|
3856
|
+
slug: string;
|
|
3857
|
+
permissions: any[];
|
|
3858
|
+
permissionObj: {};
|
|
3859
|
+
};
|
|
3860
|
+
external_exam_booklet_assign: {
|
|
3861
|
+
name: string;
|
|
3862
|
+
slug: string;
|
|
3863
|
+
permissions: any[];
|
|
3864
|
+
permissionObj: {};
|
|
3865
|
+
};
|
|
3866
|
+
external_exam_booklet_un_assign: {
|
|
3867
|
+
name: string;
|
|
3868
|
+
slug: string;
|
|
3869
|
+
permissions: any[];
|
|
3870
|
+
permissionObj: {};
|
|
3871
|
+
};
|
|
3872
|
+
};
|
|
3873
|
+
};
|
|
3847
3874
|
empty_booklet_group: {
|
|
3848
3875
|
GROUP: {
|
|
3849
3876
|
name: string;
|
|
@@ -8187,6 +8214,33 @@ export declare const PermissionGroup: {
|
|
|
8187
8214
|
};
|
|
8188
8215
|
};
|
|
8189
8216
|
};
|
|
8217
|
+
external_exam_booklet_assignment: {
|
|
8218
|
+
GROUP: {
|
|
8219
|
+
name: string;
|
|
8220
|
+
slug: string;
|
|
8221
|
+
application: string;
|
|
8222
|
+
};
|
|
8223
|
+
PERMISSIONS: {
|
|
8224
|
+
external_exam_booklet_assignment_view: {
|
|
8225
|
+
name: string;
|
|
8226
|
+
slug: string;
|
|
8227
|
+
permissions: any[];
|
|
8228
|
+
permissionObj: {};
|
|
8229
|
+
};
|
|
8230
|
+
external_exam_booklet_assign: {
|
|
8231
|
+
name: string;
|
|
8232
|
+
slug: string;
|
|
8233
|
+
permissions: any[];
|
|
8234
|
+
permissionObj: {};
|
|
8235
|
+
};
|
|
8236
|
+
external_exam_booklet_un_assign: {
|
|
8237
|
+
name: string;
|
|
8238
|
+
slug: string;
|
|
8239
|
+
permissions: any[];
|
|
8240
|
+
permissionObj: {};
|
|
8241
|
+
};
|
|
8242
|
+
};
|
|
8243
|
+
};
|
|
8190
8244
|
empty_booklet_group: {
|
|
8191
8245
|
GROUP: {
|
|
8192
8246
|
name: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"permissions.d.ts","sourceRoot":"","sources":["../../src/permissions/permissions.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,aAAa,EAAM,MAAM,SAAS,CAAC;AAW5C,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CASvB,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAS3B,CAAC;AAEF,MAAM,WAAW,gBAAgB;IAC/B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,WAAW,EAAE,CAAC;CAC5B;AAED,MAAM,WAAW,WAAW;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,EAAE,CAAC;CACvB;AAED,MAAM,MAAM,eAAe,GAAG;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,OAAO,CAAC;IACjB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,KAAK,CAAC;QACjB,SAAS,EAAE,MAAM,CAAC;QAClB,cAAc,EAAE,MAAM,CAAC;QACvB,WAAW,EAAE,MAAM,EAAE,CAAC;KACvB,CAAC,CAAC;CACJ,CAAC;AAEF,wBAAgB,qBAAqB,CAAC,WAAW,CAAC,EAAE,MAAM,GAAG,gBAAgB,EAAE,CAmB9E;AAED,wBAAgB,gBAAgB,CAAC,WAAW,CAAC,EAAE,MAAM,iBAGpD;AAED,wBAAgB,uBAAuB,CAAC,WAAW,CAAC,EAAE,MAAM,4CAG3D;AAED,wBAAgB,gBAAgB,SAgB/B;AAID,wBAAsB,kBAAkB,CAAC,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,eAAe,EAAE,iBAgD3F"}
|
|
1
|
+
{"version":3,"file":"permissions.d.ts","sourceRoot":"","sources":["../../src/permissions/permissions.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,aAAa,EAAM,MAAM,SAAS,CAAC;AAW5C,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CASvB,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAS3B,CAAC;AAEF,MAAM,WAAW,gBAAgB;IAC/B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,WAAW,EAAE,CAAC;CAC5B;AAED,MAAM,WAAW,WAAW;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,EAAE,CAAC;CACvB;AAED,MAAM,MAAM,eAAe,GAAG;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,OAAO,CAAC;IACjB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,KAAK,CAAC;QACjB,SAAS,EAAE,MAAM,CAAC;QAClB,cAAc,EAAE,MAAM,CAAC;QACvB,WAAW,EAAE,MAAM,EAAE,CAAC;KACvB,CAAC,CAAC;CACJ,CAAC;AAEF,wBAAgB,qBAAqB,CAAC,WAAW,CAAC,EAAE,MAAM,GAAG,gBAAgB,EAAE,CAmB9E;AAED,wBAAgB,gBAAgB,CAAC,WAAW,CAAC,EAAE,MAAM,iBAGpD;AAED,wBAAgB,uBAAuB,CAAC,WAAW,CAAC,EAAE,MAAM,4CAG3D;AAED,wBAAgB,gBAAgB,SAgB/B;AAID,wBAAsB,kBAAkB,CAAC,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,eAAe,EAAE,iBAgD3F"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Constants used throughout the request store module.
|
|
3
|
+
*/
|
|
4
|
+
export declare const EXPRESS_REQUEST = "EXPRESS_REQUEST";
|
|
5
|
+
export declare const TENANT_EASY_WDMS_DATA_SOURCE = "TENANT_EASY_WDMS_DATA_SOURCE";
|
|
6
|
+
export declare const TENANT_DATA_SOURCE = "TENANT_DATA_SOURCE";
|
|
7
|
+
export declare const TENANT_DETAILS = "TENANT_DETAILS";
|
|
8
|
+
export declare const INSTITUTION_KEY = "INSTITUTION_KEY";
|
|
9
|
+
export declare const USER_DATA = "USER_DATA";
|
|
10
|
+
export declare const EVALUATOR_DATA = "EVALUATOR_DATA";
|
|
11
|
+
export declare const LEAD_DATA = "LEAD_DATA";
|
|
12
|
+
export declare const USER_INSTITUTIONS = "USER_INSTITUTIONS";
|
|
13
|
+
export declare const MONGO_TRANSACTION_SESSION = "MONGO_TRANSACTION_SESSION";
|
|
14
|
+
export declare const MYSQL_TRANSACTION_MANAGER = "MYSQL_TRANSACTION_MANAGER";
|
|
15
|
+
//# sourceMappingURL=constants.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/request-store/constants.ts"],"names":[],"mappings":"AACA;;GAEG;AACH,eAAO,MAAM,eAAe,oBAAoB,CAAC;AACjD,eAAO,MAAM,4BAA4B,iCAAiC,CAAC;AAC3E,eAAO,MAAM,kBAAkB,uBAAuB,CAAC;AACvD,eAAO,MAAM,cAAc,mBAAmB,CAAC;AAC/C,eAAO,MAAM,eAAe,oBAAoB,CAAC;AACjD,eAAO,MAAM,SAAS,cAAc,CAAC;AACrC,eAAO,MAAM,cAAc,mBAAmB,CAAC;AAC/C,eAAO,MAAM,SAAS,cAAc,CAAC;AACrC,eAAO,MAAM,iBAAiB,sBAAsB,CAAC;AACrD,eAAO,MAAM,yBAAyB,8BAA8B,CAAC;AACrE,eAAO,MAAM,yBAAyB,8BAA8B,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MYSQL_TRANSACTION_MANAGER = exports.MONGO_TRANSACTION_SESSION = exports.USER_INSTITUTIONS = exports.LEAD_DATA = exports.EVALUATOR_DATA = exports.USER_DATA = exports.INSTITUTION_KEY = exports.TENANT_DETAILS = exports.TENANT_DATA_SOURCE = exports.TENANT_EASY_WDMS_DATA_SOURCE = exports.EXPRESS_REQUEST = void 0;
|
|
4
|
+
// constants.ts
|
|
5
|
+
/**
|
|
6
|
+
* Constants used throughout the request store module.
|
|
7
|
+
*/
|
|
8
|
+
exports.EXPRESS_REQUEST = 'EXPRESS_REQUEST';
|
|
9
|
+
exports.TENANT_EASY_WDMS_DATA_SOURCE = 'TENANT_EASY_WDMS_DATA_SOURCE';
|
|
10
|
+
exports.TENANT_DATA_SOURCE = 'TENANT_DATA_SOURCE';
|
|
11
|
+
exports.TENANT_DETAILS = 'TENANT_DETAILS';
|
|
12
|
+
exports.INSTITUTION_KEY = 'INSTITUTION_KEY';
|
|
13
|
+
exports.USER_DATA = 'USER_DATA';
|
|
14
|
+
exports.EVALUATOR_DATA = 'EVALUATOR_DATA';
|
|
15
|
+
exports.LEAD_DATA = 'LEAD_DATA';
|
|
16
|
+
exports.USER_INSTITUTIONS = 'USER_INSTITUTIONS';
|
|
17
|
+
exports.MONGO_TRANSACTION_SESSION = 'MONGO_TRANSACTION_SESSION';
|
|
18
|
+
exports.MYSQL_TRANSACTION_MANAGER = 'MYSQL_TRANSACTION_MANAGER';
|
|
19
|
+
//# sourceMappingURL=constants.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../src/request-store/constants.ts"],"names":[],"mappings":";;;AAAA,eAAe;AACf;;GAEG;AACU,QAAA,eAAe,GAAG,iBAAiB,CAAC;AACpC,QAAA,4BAA4B,GAAG,8BAA8B,CAAC;AAC9D,QAAA,kBAAkB,GAAG,oBAAoB,CAAC;AAC1C,QAAA,cAAc,GAAG,gBAAgB,CAAC;AAClC,QAAA,eAAe,GAAG,iBAAiB,CAAC;AACpC,QAAA,SAAS,GAAG,WAAW,CAAC;AACxB,QAAA,cAAc,GAAG,gBAAgB,CAAC;AAClC,QAAA,SAAS,GAAG,WAAW,CAAC;AACxB,QAAA,iBAAiB,GAAG,mBAAmB,CAAC;AACxC,QAAA,yBAAyB,GAAG,2BAA2B,CAAC;AACxD,QAAA,yBAAyB,GAAG,2BAA2B,CAAC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Retrieves the AWS keys from environment variables.
|
|
3
|
+
* @returns The AWS keys.
|
|
4
|
+
*/
|
|
5
|
+
export declare function getAWSKeys(): {
|
|
6
|
+
accountId: string;
|
|
7
|
+
accessKeyId: string;
|
|
8
|
+
secretAccessKey: string;
|
|
9
|
+
region: string;
|
|
10
|
+
bucketName: string;
|
|
11
|
+
baseUrl: string;
|
|
12
|
+
cloudFrontDistributionId: string;
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* Retrieves the S3 bucket name from environment variables.
|
|
16
|
+
* @returns The S3 bucket name.
|
|
17
|
+
*/
|
|
18
|
+
export declare function getS3BucketName(): string;
|
|
19
|
+
/**
|
|
20
|
+
* Retrieves the S3 base URL from environment variables.
|
|
21
|
+
* @returns The S3 base URL.
|
|
22
|
+
*/
|
|
23
|
+
export declare function getS3BaseUrl(): string;
|
|
24
|
+
//# sourceMappingURL=aws-context.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"aws-context.d.ts","sourceRoot":"","sources":["../../../src/request-store/contexts/aws-context.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,wBAAgB,UAAU;;;;;;;;EAUzB;AAED;;;GAGG;AACH,wBAAgB,eAAe,WAE9B;AAED;;;GAGG;AACH,wBAAgB,YAAY,WAE3B"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getS3BaseUrl = exports.getS3BucketName = exports.getAWSKeys = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* Retrieves the AWS keys from environment variables.
|
|
6
|
+
* @returns The AWS keys.
|
|
7
|
+
*/
|
|
8
|
+
function getAWSKeys() {
|
|
9
|
+
return {
|
|
10
|
+
accountId: process.env.AWS_ACCOUNT_ID,
|
|
11
|
+
accessKeyId: process.env.AWS_ACCESS_KEY_ID,
|
|
12
|
+
secretAccessKey: process.env.AWS_SECRET_ACCESS_KEY,
|
|
13
|
+
region: process.env.AWS_REGION,
|
|
14
|
+
bucketName: process.env.AWS_S3_BUCKET_NAME,
|
|
15
|
+
baseUrl: process.env.AWS_S3_BUCKET_BASE_URL,
|
|
16
|
+
cloudFrontDistributionId: process.env.AWS_CLOUD_FRONT_DISTRIBUTION_ID,
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
exports.getAWSKeys = getAWSKeys;
|
|
20
|
+
/**
|
|
21
|
+
* Retrieves the S3 bucket name from environment variables.
|
|
22
|
+
* @returns The S3 bucket name.
|
|
23
|
+
*/
|
|
24
|
+
function getS3BucketName() {
|
|
25
|
+
return process.env.AWS_S3_BUCKET_NAME;
|
|
26
|
+
}
|
|
27
|
+
exports.getS3BucketName = getS3BucketName;
|
|
28
|
+
/**
|
|
29
|
+
* Retrieves the S3 base URL from environment variables.
|
|
30
|
+
* @returns The S3 base URL.
|
|
31
|
+
*/
|
|
32
|
+
function getS3BaseUrl() {
|
|
33
|
+
return process.env.AWS_S3_BUCKET_BASE_URL;
|
|
34
|
+
}
|
|
35
|
+
exports.getS3BaseUrl = getS3BaseUrl;
|
|
36
|
+
//# sourceMappingURL=aws-context.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"aws-context.js","sourceRoot":"","sources":["../../../src/request-store/contexts/aws-context.ts"],"names":[],"mappings":";;;AAAA;;;GAGG;AACH,SAAgB,UAAU;IACxB,OAAO;QACL,SAAS,EAAE,OAAO,CAAC,GAAG,CAAC,cAAc;QACrC,WAAW,EAAE,OAAO,CAAC,GAAG,CAAC,iBAAiB;QAC1C,eAAe,EAAE,OAAO,CAAC,GAAG,CAAC,qBAAqB;QAClD,MAAM,EAAE,OAAO,CAAC,GAAG,CAAC,UAAU;QAC9B,UAAU,EAAE,OAAO,CAAC,GAAG,CAAC,kBAAkB;QAC1C,OAAO,EAAE,OAAO,CAAC,GAAG,CAAC,sBAAsB;QAC3C,wBAAwB,EAAE,OAAO,CAAC,GAAG,CAAC,+BAA+B;KACtE,CAAC;AACJ,CAAC;AAVD,gCAUC;AAED;;;GAGG;AACH,SAAgB,eAAe;IAC7B,OAAO,OAAO,CAAC,GAAG,CAAC,kBAAkB,CAAC;AACxC,CAAC;AAFD,0CAEC;AAED;;;GAGG;AACH,SAAgB,YAAY;IAC1B,OAAO,OAAO,CAAC,GAAG,CAAC,sBAAsB,CAAC;AAC5C,CAAC;AAFD,oCAEC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { DataSource, EntityManager } from 'typeorm';
|
|
2
|
+
/**
|
|
3
|
+
* Retrieves the EasyWDMS DataSource.
|
|
4
|
+
* @returns The EasyWDMS DataSource.
|
|
5
|
+
* @throws UnprocessableEntityException if the EasyWDMS database is not configured.
|
|
6
|
+
*/
|
|
7
|
+
export declare function getEasyWDMSDataSource(): DataSource;
|
|
8
|
+
/**
|
|
9
|
+
* Retrieves the EasyWDMS EntityManager.
|
|
10
|
+
* @returns The EasyWDMS EntityManager.
|
|
11
|
+
*/
|
|
12
|
+
export declare function getEasyWDMSManager(): EntityManager;
|
|
13
|
+
//# sourceMappingURL=easydms-context.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"easydms-context.d.ts","sourceRoot":"","sources":["../../../src/request-store/contexts/easydms-context.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAIpD;;;;GAIG;AACH,wBAAgB,qBAAqB,IAAI,UAAU,CAMlD;AAED;;;GAGG;AACH,wBAAgB,kBAAkB,IAAI,aAAa,CAGlD"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getEasyWDMSManager = exports.getEasyWDMSDataSource = void 0;
|
|
4
|
+
const common_1 = require("@nestjs/common");
|
|
5
|
+
const constants_1 = require("../constants");
|
|
6
|
+
const store_config_1 = require("../store-config");
|
|
7
|
+
/**
|
|
8
|
+
* Retrieves the EasyWDMS DataSource.
|
|
9
|
+
* @returns The EasyWDMS DataSource.
|
|
10
|
+
* @throws UnprocessableEntityException if the EasyWDMS database is not configured.
|
|
11
|
+
*/
|
|
12
|
+
function getEasyWDMSDataSource() {
|
|
13
|
+
const dataSource = (0, store_config_1.get)(constants_1.TENANT_EASY_WDMS_DATA_SOURCE);
|
|
14
|
+
if (!dataSource) {
|
|
15
|
+
throw new common_1.UnprocessableEntityException('EasyWDMS database not configured');
|
|
16
|
+
}
|
|
17
|
+
return dataSource;
|
|
18
|
+
}
|
|
19
|
+
exports.getEasyWDMSDataSource = getEasyWDMSDataSource;
|
|
20
|
+
/**
|
|
21
|
+
* Retrieves the EasyWDMS EntityManager.
|
|
22
|
+
* @returns The EasyWDMS EntityManager.
|
|
23
|
+
*/
|
|
24
|
+
function getEasyWDMSManager() {
|
|
25
|
+
const dataSource = getEasyWDMSDataSource();
|
|
26
|
+
return dataSource.manager;
|
|
27
|
+
}
|
|
28
|
+
exports.getEasyWDMSManager = getEasyWDMSManager;
|
|
29
|
+
//# sourceMappingURL=easydms-context.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"easydms-context.js","sourceRoot":"","sources":["../../../src/request-store/contexts/easydms-context.ts"],"names":[],"mappings":";;;AAAA,2CAA8D;AAE9D,4CAA4D;AAC5D,kDAAsC;AAEtC;;;;GAIG;AACH,SAAgB,qBAAqB;IACnC,MAAM,UAAU,GAAG,IAAA,kBAAG,EAAa,wCAA4B,CAAC,CAAC;IACjE,IAAI,CAAC,UAAU,EAAE,CAAC;QAChB,MAAM,IAAI,qCAA4B,CAAC,kCAAkC,CAAC,CAAC;IAC7E,CAAC;IACD,OAAO,UAAU,CAAC;AACpB,CAAC;AAND,sDAMC;AAED;;;GAGG;AACH,SAAgB,kBAAkB;IAChC,MAAM,UAAU,GAAG,qBAAqB,EAAE,CAAC;IAC3C,OAAO,UAAU,CAAC,OAAO,CAAC;AAC5B,CAAC;AAHD,gDAGC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Request } from 'express';
|
|
2
|
+
import { IRequest } from '../../common/interfaces/context.interface';
|
|
3
|
+
/**
|
|
4
|
+
* Sets the Express request object in the store.
|
|
5
|
+
* @param req - The Express request object.
|
|
6
|
+
*/
|
|
7
|
+
export declare function setExpressRequest(req: Request): void;
|
|
8
|
+
/**
|
|
9
|
+
* Retrieves the Express request object from the store.
|
|
10
|
+
* @returns The Express request object.
|
|
11
|
+
*/
|
|
12
|
+
export declare function getExpressRequest(): Request;
|
|
13
|
+
/**
|
|
14
|
+
* Sets the custom request object in the store.
|
|
15
|
+
* @param req - The custom request object.
|
|
16
|
+
*/
|
|
17
|
+
export declare function setRequest(req: IRequest): void;
|
|
18
|
+
/**
|
|
19
|
+
* Retrieves the custom request object from the store.
|
|
20
|
+
* @returns The custom request object.
|
|
21
|
+
*/
|
|
22
|
+
export declare function getRequest(): IRequest;
|
|
23
|
+
//# sourceMappingURL=express-context.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"express-context.d.ts","sourceRoot":"","sources":["../../../src/request-store/contexts/express-context.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAGlC,OAAO,EAAE,QAAQ,EAAE,MAAM,2CAA2C,CAAC;AAErE;;;GAGG;AACH,wBAAgB,iBAAiB,CAAC,GAAG,EAAE,OAAO,GAAG,IAAI,CAEpD;AAED;;;GAGG;AACH,wBAAgB,iBAAiB,IAAI,OAAO,CAE3C;AAED;;;GAGG;AACH,wBAAgB,UAAU,CAAC,GAAG,EAAE,QAAQ,GAAG,IAAI,CAE9C;AAED;;;GAGG;AACH,wBAAgB,UAAU,IAAI,QAAQ,CAErC"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getRequest = exports.setRequest = exports.getExpressRequest = exports.setExpressRequest = void 0;
|
|
4
|
+
const store_config_1 = require("../store-config");
|
|
5
|
+
const constants_1 = require("../constants");
|
|
6
|
+
/**
|
|
7
|
+
* Sets the Express request object in the store.
|
|
8
|
+
* @param req - The Express request object.
|
|
9
|
+
*/
|
|
10
|
+
function setExpressRequest(req) {
|
|
11
|
+
(0, store_config_1.set)(constants_1.EXPRESS_REQUEST, req);
|
|
12
|
+
}
|
|
13
|
+
exports.setExpressRequest = setExpressRequest;
|
|
14
|
+
/**
|
|
15
|
+
* Retrieves the Express request object from the store.
|
|
16
|
+
* @returns The Express request object.
|
|
17
|
+
*/
|
|
18
|
+
function getExpressRequest() {
|
|
19
|
+
return (0, store_config_1.get)(constants_1.EXPRESS_REQUEST);
|
|
20
|
+
}
|
|
21
|
+
exports.getExpressRequest = getExpressRequest;
|
|
22
|
+
/**
|
|
23
|
+
* Sets the custom request object in the store.
|
|
24
|
+
* @param req - The custom request object.
|
|
25
|
+
*/
|
|
26
|
+
function setRequest(req) {
|
|
27
|
+
(0, store_config_1.set)(constants_1.EXPRESS_REQUEST, req);
|
|
28
|
+
}
|
|
29
|
+
exports.setRequest = setRequest;
|
|
30
|
+
/**
|
|
31
|
+
* Retrieves the custom request object from the store.
|
|
32
|
+
* @returns The custom request object.
|
|
33
|
+
*/
|
|
34
|
+
function getRequest() {
|
|
35
|
+
return (0, store_config_1.get)(constants_1.EXPRESS_REQUEST);
|
|
36
|
+
}
|
|
37
|
+
exports.getRequest = getRequest;
|
|
38
|
+
//# sourceMappingURL=express-context.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"express-context.js","sourceRoot":"","sources":["../../../src/request-store/contexts/express-context.ts"],"names":[],"mappings":";;;AACA,kDAA2C;AAC3C,4CAA+C;AAG/C;;;GAGG;AACH,SAAgB,iBAAiB,CAAC,GAAY;IAC5C,IAAA,kBAAG,EAAC,2BAAe,EAAE,GAAG,CAAC,CAAC;AAC5B,CAAC;AAFD,8CAEC;AAED;;;GAGG;AACH,SAAgB,iBAAiB;IAC/B,OAAO,IAAA,kBAAG,EAAU,2BAAe,CAAC,CAAC;AACvC,CAAC;AAFD,8CAEC;AAED;;;GAGG;AACH,SAAgB,UAAU,CAAC,GAAa;IACtC,IAAA,kBAAG,EAAC,2BAAe,EAAE,GAAG,CAAC,CAAC;AAC5B,CAAC;AAFD,gCAEC;AAED;;;GAGG;AACH,SAAgB,UAAU;IACxB,OAAO,IAAA,kBAAG,EAAC,2BAAe,CAAC,CAAC;AAC9B,CAAC;AAFD,gCAEC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from './aws-context';
|
|
2
|
+
export * from './express-context';
|
|
3
|
+
export * from './easydms-context';
|
|
4
|
+
export * from './mongo-context';
|
|
5
|
+
export * from './mysql-context';
|
|
6
|
+
export * from './mysql-credentials-context';
|
|
7
|
+
export * from './user-context';
|
|
8
|
+
export * from './tenant-context';
|
|
9
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/request-store/contexts/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./aws-context"), exports);
|
|
18
|
+
__exportStar(require("./express-context"), exports);
|
|
19
|
+
__exportStar(require("./easydms-context"), exports);
|
|
20
|
+
__exportStar(require("./mongo-context"), exports);
|
|
21
|
+
__exportStar(require("./mysql-context"), exports);
|
|
22
|
+
__exportStar(require("./mysql-credentials-context"), exports);
|
|
23
|
+
__exportStar(require("./user-context"), exports);
|
|
24
|
+
__exportStar(require("./tenant-context"), exports);
|
|
25
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/request-store/contexts/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gDAA8B;AAC9B,oDAAkC;AAClC,oDAAkC;AAClC,kDAAgC;AAChC,kDAAgC;AAChC,8DAA4C;AAC5C,iDAA+B;AAC/B,mDAAiC"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/// <reference types="mongoose/types/aggregate" />
|
|
2
|
+
/// <reference types="mongoose/types/callback" />
|
|
3
|
+
/// <reference types="mongoose/types/collection" />
|
|
4
|
+
/// <reference types="mongoose/types/connection" />
|
|
5
|
+
/// <reference types="mongoose/types/cursor" />
|
|
6
|
+
/// <reference types="mongoose/types/document" />
|
|
7
|
+
/// <reference types="mongoose/types/error" />
|
|
8
|
+
/// <reference types="mongoose/types/expressions" />
|
|
9
|
+
/// <reference types="mongoose/types/helpers" />
|
|
10
|
+
/// <reference types="mongoose/types/middlewares" />
|
|
11
|
+
/// <reference types="mongoose/types/indexes" />
|
|
12
|
+
/// <reference types="mongoose/types/models" />
|
|
13
|
+
/// <reference types="mongoose/types/mongooseoptions" />
|
|
14
|
+
/// <reference types="mongoose/types/pipelinestage" />
|
|
15
|
+
/// <reference types="mongoose/types/populate" />
|
|
16
|
+
/// <reference types="mongoose/types/query" />
|
|
17
|
+
/// <reference types="mongoose/types/schemaoptions" />
|
|
18
|
+
/// <reference types="mongoose/types/schematypes" />
|
|
19
|
+
/// <reference types="mongoose/types/session" />
|
|
20
|
+
/// <reference types="mongoose/types/types" />
|
|
21
|
+
/// <reference types="mongoose/types/utility" />
|
|
22
|
+
/// <reference types="mongoose/types/validation" />
|
|
23
|
+
/// <reference types="mongoose/types/virtuals" />
|
|
24
|
+
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
+
import { ClientSession } from 'mongoose';
|
|
26
|
+
/**
|
|
27
|
+
* Sets the MongoDB transaction session in the store.
|
|
28
|
+
* @param session - The MongoDB transaction session.
|
|
29
|
+
*/
|
|
30
|
+
export declare function setMongoTransactionSession(session: ClientSession): void;
|
|
31
|
+
/**
|
|
32
|
+
* Retrieves the MongoDB transaction session from the store.
|
|
33
|
+
* @param strict - Whether to throw an exception if the session is not found.
|
|
34
|
+
* @returns The MongoDB transaction session.
|
|
35
|
+
* @throws UnprocessableEntityException if session is not found and strict is true.
|
|
36
|
+
*/
|
|
37
|
+
export declare function getMongoSession(strict?: boolean): ClientSession;
|
|
38
|
+
//# sourceMappingURL=mongo-context.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mongo-context.d.ts","sourceRoot":"","sources":["../../../src/request-store/contexts/mongo-context.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;AACA,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAIzC;;;GAGG;AACH,wBAAgB,0BAA0B,CAAC,OAAO,EAAE,aAAa,QAEhE;AAED;;;;;GAKG;AACH,wBAAgB,eAAe,CAAC,MAAM,CAAC,EAAE,OAAO,GAAG,aAAa,CAM/D"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getMongoSession = exports.setMongoTransactionSession = void 0;
|
|
4
|
+
const common_1 = require("@nestjs/common");
|
|
5
|
+
const store_config_1 = require("../store-config");
|
|
6
|
+
const constants_1 = require("../constants");
|
|
7
|
+
/**
|
|
8
|
+
* Sets the MongoDB transaction session in the store.
|
|
9
|
+
* @param session - The MongoDB transaction session.
|
|
10
|
+
*/
|
|
11
|
+
function setMongoTransactionSession(session) {
|
|
12
|
+
(0, store_config_1.set)(constants_1.MONGO_TRANSACTION_SESSION, session);
|
|
13
|
+
}
|
|
14
|
+
exports.setMongoTransactionSession = setMongoTransactionSession;
|
|
15
|
+
/**
|
|
16
|
+
* Retrieves the MongoDB transaction session from the store.
|
|
17
|
+
* @param strict - Whether to throw an exception if the session is not found.
|
|
18
|
+
* @returns The MongoDB transaction session.
|
|
19
|
+
* @throws UnprocessableEntityException if session is not found and strict is true.
|
|
20
|
+
*/
|
|
21
|
+
function getMongoSession(strict) {
|
|
22
|
+
const session = (0, store_config_1.get)(constants_1.MONGO_TRANSACTION_SESSION);
|
|
23
|
+
if (!session && strict) {
|
|
24
|
+
throw new common_1.UnprocessableEntityException('Unable to get database session');
|
|
25
|
+
}
|
|
26
|
+
return session;
|
|
27
|
+
}
|
|
28
|
+
exports.getMongoSession = getMongoSession;
|
|
29
|
+
//# sourceMappingURL=mongo-context.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mongo-context.js","sourceRoot":"","sources":["../../../src/request-store/contexts/mongo-context.ts"],"names":[],"mappings":";;;AAAA,2CAA8D;AAE9D,kDAA2C;AAC3C,4CAAyD;AAEzD;;;GAGG;AACH,SAAgB,0BAA0B,CAAC,OAAsB;IAC/D,IAAA,kBAAG,EAAC,qCAAyB,EAAE,OAAO,CAAC,CAAC;AAC1C,CAAC;AAFD,gEAEC;AAED;;;;;GAKG;AACH,SAAgB,eAAe,CAAC,MAAgB;IAC9C,MAAM,OAAO,GAAG,IAAA,kBAAG,EAAgB,qCAAyB,CAAC,CAAC;IAC9D,IAAI,CAAC,OAAO,IAAI,MAAM,EAAE,CAAC;QACvB,MAAM,IAAI,qCAA4B,CAAC,gCAAgC,CAAC,CAAC;IAC3E,CAAC;IACD,OAAO,OAAO,CAAC;AACjB,CAAC;AAND,0CAMC"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { EntityManager } from 'typeorm';
|
|
2
|
+
/**
|
|
3
|
+
* Sets the MySQL transaction manager in the store.
|
|
4
|
+
* @param manager - The MySQL transaction manager.
|
|
5
|
+
*/
|
|
6
|
+
export declare function setMySQLTransactionManager(manager: EntityManager): void;
|
|
7
|
+
/**
|
|
8
|
+
* Retrieves the MySQL transaction manager from the store.
|
|
9
|
+
* @param strict - Whether to throw an exception if the manager is not found.
|
|
10
|
+
* @returns The MySQL transaction manager.
|
|
11
|
+
* @throws UnprocessableEntityException if manager is not found and strict is true.
|
|
12
|
+
*/
|
|
13
|
+
export declare function getMySqlTransactionManager(strict?: boolean): EntityManager;
|
|
14
|
+
/**
|
|
15
|
+
* Retrieves the MySQL manager from the store.
|
|
16
|
+
* @param strict - Whether to throw an exception if the manager is not found.
|
|
17
|
+
* @returns The MySQL manager.
|
|
18
|
+
* @throws UnprocessableEntityException if manager is not found and strict is true.
|
|
19
|
+
*/
|
|
20
|
+
export declare function getMySQLManager(strict?: boolean): EntityManager;
|
|
21
|
+
//# sourceMappingURL=mysql-context.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mysql-context.d.ts","sourceRoot":"","sources":["../../../src/request-store/contexts/mysql-context.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAIxC;;;GAGG;AACH,wBAAgB,0BAA0B,CAAC,OAAO,EAAE,aAAa,QAEhE;AAED;;;;;GAKG;AACH,wBAAgB,0BAA0B,CAAC,MAAM,CAAC,EAAE,OAAO,GAAG,aAAa,CAM1E;AAED;;;;;GAKG;AACH,wBAAgB,eAAe,CAAC,MAAM,CAAC,EAAE,OAAO,GAAG,aAAa,CAM/D"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getMySQLManager = exports.getMySqlTransactionManager = exports.setMySQLTransactionManager = void 0;
|
|
4
|
+
const common_1 = require("@nestjs/common");
|
|
5
|
+
const store_config_1 = require("../store-config");
|
|
6
|
+
const constants_1 = require("../constants");
|
|
7
|
+
/**
|
|
8
|
+
* Sets the MySQL transaction manager in the store.
|
|
9
|
+
* @param manager - The MySQL transaction manager.
|
|
10
|
+
*/
|
|
11
|
+
function setMySQLTransactionManager(manager) {
|
|
12
|
+
(0, store_config_1.set)(constants_1.MYSQL_TRANSACTION_MANAGER, manager);
|
|
13
|
+
}
|
|
14
|
+
exports.setMySQLTransactionManager = setMySQLTransactionManager;
|
|
15
|
+
/**
|
|
16
|
+
* Retrieves the MySQL transaction manager from the store.
|
|
17
|
+
* @param strict - Whether to throw an exception if the manager is not found.
|
|
18
|
+
* @returns The MySQL transaction manager.
|
|
19
|
+
* @throws UnprocessableEntityException if manager is not found and strict is true.
|
|
20
|
+
*/
|
|
21
|
+
function getMySqlTransactionManager(strict) {
|
|
22
|
+
const manager = (0, store_config_1.get)(constants_1.MYSQL_TRANSACTION_MANAGER);
|
|
23
|
+
if (!manager && strict) {
|
|
24
|
+
throw new common_1.UnprocessableEntityException('Unable to get database manager');
|
|
25
|
+
}
|
|
26
|
+
return manager;
|
|
27
|
+
}
|
|
28
|
+
exports.getMySqlTransactionManager = getMySqlTransactionManager;
|
|
29
|
+
/**
|
|
30
|
+
* Retrieves the MySQL manager from the store.
|
|
31
|
+
* @param strict - Whether to throw an exception if the manager is not found.
|
|
32
|
+
* @returns The MySQL manager.
|
|
33
|
+
* @throws UnprocessableEntityException if manager is not found and strict is true.
|
|
34
|
+
*/
|
|
35
|
+
function getMySQLManager(strict) {
|
|
36
|
+
const manager = (0, store_config_1.get)(constants_1.MYSQL_TRANSACTION_MANAGER);
|
|
37
|
+
if (!manager && strict) {
|
|
38
|
+
throw new common_1.UnprocessableEntityException('Unable to get database manager');
|
|
39
|
+
}
|
|
40
|
+
return manager;
|
|
41
|
+
}
|
|
42
|
+
exports.getMySQLManager = getMySQLManager;
|
|
43
|
+
//# sourceMappingURL=mysql-context.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mysql-context.js","sourceRoot":"","sources":["../../../src/request-store/contexts/mysql-context.ts"],"names":[],"mappings":";;;AAAA,2CAA8D;AAE9D,kDAA2C;AAC3C,4CAAyD;AAEzD;;;GAGG;AACH,SAAgB,0BAA0B,CAAC,OAAsB;IAC/D,IAAA,kBAAG,EAAC,qCAAyB,EAAE,OAAO,CAAC,CAAC;AAC1C,CAAC;AAFD,gEAEC;AAED;;;;;GAKG;AACH,SAAgB,0BAA0B,CAAC,MAAgB;IACzD,MAAM,OAAO,GAAG,IAAA,kBAAG,EAAgB,qCAAyB,CAAC,CAAC;IAC9D,IAAI,CAAC,OAAO,IAAI,MAAM,EAAE,CAAC;QACvB,MAAM,IAAI,qCAA4B,CAAC,gCAAgC,CAAC,CAAC;IAC3E,CAAC;IACD,OAAO,OAAO,CAAC;AACjB,CAAC;AAND,gEAMC;AAED;;;;;GAKG;AACH,SAAgB,eAAe,CAAC,MAAgB;IAC9C,MAAM,OAAO,GAAG,IAAA,kBAAG,EAAgB,qCAAyB,CAAC,CAAC;IAC9D,IAAI,CAAC,OAAO,IAAI,MAAM,EAAE,CAAC;QACvB,MAAM,IAAI,qCAA4B,CAAC,gCAAgC,CAAC,CAAC;IAC3E,CAAC;IACD,OAAO,OAAO,CAAC;AACjB,CAAC;AAND,0CAMC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Retrieves the MySQL credentials from environment variables.
|
|
3
|
+
* @returns The MySQL credentials.
|
|
4
|
+
*/
|
|
5
|
+
export declare function getMySQLCredentials(): {
|
|
6
|
+
host: string;
|
|
7
|
+
port: number;
|
|
8
|
+
username: string;
|
|
9
|
+
password: string;
|
|
10
|
+
};
|
|
11
|
+
//# sourceMappingURL=mysql-credentials-context.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mysql-credentials-context.d.ts","sourceRoot":"","sources":["../../../src/request-store/contexts/mysql-credentials-context.ts"],"names":[],"mappings":"AACA;;;GAGG;AACH,wBAAgB,mBAAmB;;;;;EAOlC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getMySQLCredentials = void 0;
|
|
4
|
+
// mysql-credentials.ts
|
|
5
|
+
/**
|
|
6
|
+
* Retrieves the MySQL credentials from environment variables.
|
|
7
|
+
* @returns The MySQL credentials.
|
|
8
|
+
*/
|
|
9
|
+
function getMySQLCredentials() {
|
|
10
|
+
return {
|
|
11
|
+
host: process.env.MYSQL_DB_HOST,
|
|
12
|
+
port: Number(process.env.MYSQL_DB_PORT),
|
|
13
|
+
username: process.env.MYSQL_DB_USERNAME,
|
|
14
|
+
password: process.env.MYSQL_DB_PASSWORD,
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
exports.getMySQLCredentials = getMySQLCredentials;
|
|
18
|
+
//# sourceMappingURL=mysql-credentials-context.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mysql-credentials-context.js","sourceRoot":"","sources":["../../../src/request-store/contexts/mysql-credentials-context.ts"],"names":[],"mappings":";;;AAAA,uBAAuB;AACvB;;;GAGG;AACH,SAAgB,mBAAmB;IACjC,OAAO;QACL,IAAI,EAAE,OAAO,CAAC,GAAG,CAAC,aAAa;QAC/B,IAAI,EAAE,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC;QACvC,QAAQ,EAAE,OAAO,CAAC,GAAG,CAAC,iBAAiB;QACvC,QAAQ,EAAE,OAAO,CAAC,GAAG,CAAC,iBAAiB;KACxC,CAAC;AACJ,CAAC;AAPD,kDAOC"}
|