@simitgroup/simpleapp-generator 1.1.16 → 1.1.18

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 (31) hide show
  1. package/README.md +7 -2
  2. package/dist/buildinschemas/index.d.ts +0 -1
  3. package/dist/buildinschemas/index.d.ts.map +1 -1
  4. package/dist/buildinschemas/index.js +2 -3
  5. package/dist/buildinschemas/index.js.map +1 -1
  6. package/dist/framework.js +1 -1
  7. package/docs/bpmn.md +187 -0
  8. package/docs/images/samplebpmn.jpg +0 -0
  9. package/package.json +1 -1
  10. package/src/buildinschemas/index.ts +1 -1
  11. package/src/framework.ts +1 -1
  12. package/templates/nest/src/simpleapp/generate/commons/user.context.ts.eta +31 -6
  13. package/templates/nest/src/simpleapp/generate/workflow/workflow.service.ts.eta +100 -50
  14. package/templates/nest/src/simpleapp/generate/workflow/workflow.type.ts.eta +38 -22
  15. package/templates/nuxt/components/event/{EventDecision.vue.eta → EventDecision.vue._eta} +1 -1
  16. package/templates/nuxt/components/event/{EventDocumentViewer.vue.eta → EventDocumentViewer.vue._eta} +6 -0
  17. package/templates/nuxt/components/event/{EventNotification.vue.eta → EventNotification.vue._eta} +1 -1
  18. package/templates/nuxt/composables/docformat.generate.ts.eta +1 -1
  19. package/templates/nuxt/plugins/20.simpleapp-userstore.ts.eta +4 -2
  20. package/templates/nuxt/simpleapp/generate/commons/documents.ts.eta +1 -2
  21. package/templates/nuxt/types/others.ts.eta +1 -2
  22. package/templates/project/jsonschemas/user.json._eta +72 -0
  23. package/templates/project/workflows/forms/index.ts._eta +2 -0
  24. package/templates/project/workflows/forms/simpleapprove.jsonschema.ts._eta +8 -0
  25. package/tsconfig.tsbuildinfo +1 -1
  26. /package/templates/nest/src/simpleapp/services/{user.service.ts.eta → user.service.ts.etax} +0 -0
  27. /package/templates/nuxt/pages/[xorg]/user/{[id].vue.eta → [id].vue._eta} +0 -0
  28. /package/templates/nuxt/pages/[xorg]/user/{index.vue.eta → index.vue._eta} +0 -0
  29. /package/templates/nuxt/pages/[xorg]/{user.vue.eta → user.vue._eta} +0 -0
  30. /package/templates/{project/workflows/forms/index.ts.eta → nuxt/simpleapp/workflows/forms/index.ts._eta} +0 -0
  31. /package/templates/{project/workflows/forms/simpleapprove.jsonschema.ts.eta → nuxt/simpleapp/workflows/forms/simpleapprove.jsonschema.ts._eta} +0 -0
package/README.md CHANGED
@@ -20,14 +20,19 @@ SimpleApp generator is a typescript code generator for convert jsonschemas becom
20
20
  e. openapi interface [x]
21
21
  f. pdf document []
22
22
  g. document uploads[]
23
- h. workflow integration[]
23
+ 8. BPMN workflow integration
24
+ a. streamline business flow with BPMN
25
+ b. implement philosophy of bpmn documentation is source code
26
+ c. fill in minimal source code in generated listener to run whole bpmn process
27
+ d. build in integrate between both frontend and backend
28
+ e. declare workflow in jsonschema
24
29
 
25
30
  # Documentation
26
31
  1. [jsonschemas](./docs/jsonschema.md)
27
32
  2. [backend walk through](./docs/backend.md)
28
33
  3. [frontend walk through](./docs/frontend.md)
29
34
  4. [End to End test](./docs/test.md)
30
-
35
+ 5. [BPMN walk through](./docs/bpmn.md)
31
36
 
32
37
  # Quick start
33
38
  1. Simpleapp implement database transaction, and require mongodb cluster, below setup 3 nodes
@@ -2,7 +2,6 @@ export { tenant } from './tenant';
2
2
  export { organization } from './organization';
3
3
  export { branch } from './branch';
4
4
  export { permission } from './permission';
5
- export { user } from './user';
6
5
  export { autoincreament } from './autoincreament';
7
6
  export { docnoformat } from './docnoformat';
8
7
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/buildinschemas/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,MAAM,EAAC,MAAM,UAAU,CAAA;AAC/B,OAAO,EAAC,YAAY,EAAC,MAAM,gBAAgB,CAAA;AAC3C,OAAO,EAAC,MAAM,EAAC,MAAM,UAAU,CAAA;AAC/B,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAA;AACvC,OAAO,EAAC,IAAI,EAAC,MAAM,QAAQ,CAAA;AAC3B,OAAO,EAAC,cAAc,EAAC,MAAM,kBAAkB,CAAA;AAC/C,OAAO,EAAC,WAAW,EAAC,MAAM,eAAe,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/buildinschemas/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,MAAM,EAAC,MAAM,UAAU,CAAA;AAC/B,OAAO,EAAC,YAAY,EAAC,MAAM,gBAAgB,CAAA;AAC3C,OAAO,EAAC,MAAM,EAAC,MAAM,UAAU,CAAA;AAC/B,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAA;AAEvC,OAAO,EAAC,cAAc,EAAC,MAAM,kBAAkB,CAAA;AAC/C,OAAO,EAAC,WAAW,EAAC,MAAM,eAAe,CAAA"}
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.docnoformat = exports.autoincreament = exports.user = exports.permission = exports.branch = exports.organization = exports.tenant = void 0;
3
+ exports.docnoformat = exports.autoincreament = exports.permission = exports.branch = exports.organization = exports.tenant = void 0;
4
4
  var tenant_1 = require("./tenant");
5
5
  Object.defineProperty(exports, "tenant", { enumerable: true, get: function () { return tenant_1.tenant; } });
6
6
  var organization_1 = require("./organization");
@@ -9,8 +9,7 @@ var branch_1 = require("./branch");
9
9
  Object.defineProperty(exports, "branch", { enumerable: true, get: function () { return branch_1.branch; } });
10
10
  var permission_1 = require("./permission");
11
11
  Object.defineProperty(exports, "permission", { enumerable: true, get: function () { return permission_1.permission; } });
12
- var user_1 = require("./user");
13
- Object.defineProperty(exports, "user", { enumerable: true, get: function () { return user_1.user; } });
12
+ // export {user} from './user'
14
13
  var autoincreament_1 = require("./autoincreament");
15
14
  Object.defineProperty(exports, "autoincreament", { enumerable: true, get: function () { return autoincreament_1.autoincreament; } });
16
15
  var docnoformat_1 = require("./docnoformat");
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/buildinschemas/index.ts"],"names":[],"mappings":";;;AAAA,mCAA+B;AAAvB,gGAAA,MAAM,OAAA;AACd,+CAA2C;AAAnC,4GAAA,YAAY,OAAA;AACpB,mCAA+B;AAAvB,gGAAA,MAAM,OAAA;AACd,2CAAuC;AAA/B,wGAAA,UAAU,OAAA;AAClB,+BAA2B;AAAnB,4FAAA,IAAI,OAAA;AACZ,mDAA+C;AAAvC,gHAAA,cAAc,OAAA;AACtB,6CAAyC;AAAjC,0GAAA,WAAW,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/buildinschemas/index.ts"],"names":[],"mappings":";;;AAAA,mCAA+B;AAAvB,gGAAA,MAAM,OAAA;AACd,+CAA2C;AAAnC,4GAAA,YAAY,OAAA;AACpB,mCAA+B;AAAvB,gGAAA,MAAM,OAAA;AACd,2CAAuC;AAA/B,wGAAA,UAAU,OAAA;AAClB,8BAA8B;AAC9B,mDAA+C;AAAvC,gHAAA,cAAc,OAAA;AACtB,6CAAyC;AAAjC,0GAAA,WAAW,OAAA"}
package/dist/framework.js CHANGED
@@ -98,7 +98,7 @@ const prepareNest = (callback) => {
98
98
  const targetfolder = config.backendFolder;
99
99
  log.info(`creating backend project ${targetfolder}`);
100
100
  if (!fs_1.default.existsSync(`${targetfolder}/.env`)) {
101
- (0, child_process_1.exec)(`cd ${targetfolder};pnpm install --save @nestjs/event-emitter dayjs bpmn-server@2.0.5-alpha2 moment @casl/ability jsonpath yaml lodash @types/lodash nest-keycloak-connect keycloak-connect bpmn-client @nestjs/serve-static jsonwebtoken axios @darkwolf/base64url json-schema @wearenova/mongoose-tenant @nestjs/swagger @nestjs/mongoose mongoose ajv ajv-formats ajv-errors @nestjs/config`, async (error, stdout, stderr) => {
101
+ (0, child_process_1.exec)(`cd ${targetfolder};pnpm install --save @nestjs/event-emitter dayjs bpmn-server@2.0.6-alpha2 moment @casl/ability jsonpath yaml lodash @types/lodash nest-keycloak-connect keycloak-connect bpmn-client @nestjs/serve-static jsonwebtoken axios @darkwolf/base64url json-schema @wearenova/mongoose-tenant @nestjs/swagger @nestjs/mongoose mongoose ajv ajv-formats ajv-errors @nestjs/config`, async (error, stdout, stderr) => {
102
102
  // log.info(`dependency installed`)
103
103
  if (!error) {
104
104
  // fs.mkdirSync(`${targetfolder}/public_html`,{recursive:true})
package/docs/bpmn.md ADDED
@@ -0,0 +1,187 @@
1
+ # BPMN Walk Through
2
+ BPMN allow us design complex computer readable business workflow diagram. Beside standard CRUD api, SimpleApp Generator allow flexible workflow by design `bpmn` document and optionally bind to specific `jsonschema` as easy access entry point.
3
+
4
+ At the moment, SimpleApp Generator using [bpmn-server](https://github.com/bpmnServer/bpmn-server) to process bpmn document, and map the business event to specific `document listener` in run time.
5
+
6
+ [bpmn-server](https://github.com/bpmnServer/bpmn-server) is young and may change frequently in future and cause some break of compatibility, but it look promising and allow very tight integration with our backend (nestjs). There is [BPMN Compatibility](#bpmn-compatibility) table
7
+
8
+
9
+ # Prepare your vscode ide
10
+ We recomend you to install vscode extension `Camunda Modeler` from `Miranium`.
11
+
12
+ # Using BPMN in SimpleApp Project
13
+ Use BPMN in SimpleApp Generator involve below steps:
14
+ 1. Write definitions and generate codes
15
+ 2. Modify generated source code
16
+
17
+
18
+ ## Write definitions and generate codes
19
+ 1. Ensure config.json declare bpmn folder,
20
+ ```json
21
+ {
22
+ ... # others props
23
+ "bpmnFolder": "./workflows/bpmn", # empty will not generate workflow codes
24
+ ... # others props
25
+ }
26
+
27
+ ```
28
+ 2. Create a sample business process definitions file: `project1/workflows/bpmn/suspendcustomer.bpmn`
29
+ ![suspendcustomer](./images/samplebpmn.jpg)
30
+ 3. (optional) Define alternate api entry point `additionalApis` at existing jsonschema to start the bpmn process.
31
+ ```json
32
+ # example customer.json
33
+ {
34
+ "type": "object",
35
+ "x-simpleapp-config": {
36
+ "documentType": "cust",
37
+ "documentName": "customer",
38
+ "uniqueKey": "customerNo",
39
+ "documentTitle": "customerName",
40
+ "generateDocumentNumber": true,
41
+ "isolationType": "org",
42
+ "pageType": "crud",
43
+ "additionalApis":[
44
+ {
45
+ "action":"suspend",
46
+ "entryPoint":":id/suspend",
47
+ "requiredRole":["Customer_update"],
48
+ "method":"patch",
49
+ "workflowSetting":{
50
+ "bpmn":"suspendcustomer"
51
+ },
52
+ "description":"Suspend specific customer (set active=false)"
53
+ }
54
+ ]
55
+ },
56
+ "properties": {
57
+ "_id": { "type": "string" },
58
+ "created": { "type": "string" },
59
+ "updated": { "type": "string" },
60
+ "createdBy": { "type": "string" },
61
+ "updatedBy": { "type": "string" },
62
+ "tenantId": { "type": "integer", "default": 1 },
63
+ "orgId": { "type": "integer", "default": 1 },
64
+ "branchId": { "type": "integer", "default": 1 },
65
+ "customerNo": {
66
+ "type": "string",
67
+ "format": "documentno",
68
+ "examples": ["S0001"]
69
+ },
70
+ "customerName": {
71
+ "type": "string",
72
+ "examples": ["Customer 1"],
73
+ "minLength": 3
74
+ },
75
+ "customerStatus": {
76
+ "type": "string",
77
+ "enum": ["unknown", "potential", "suspended", "existing"],
78
+ "examples": ["unknown"]
79
+ },
80
+ "email": {
81
+ "type": "string",
82
+ "oneOf": [{ "format": "email" }, { "enum": [""] }]
83
+ },
84
+ "tel": {
85
+ "type": "string",
86
+ "oneOf": [{ "format": "tel" }, { "enum": [""] }]
87
+ },
88
+ "active": { "type": "boolean", "default": true, "examples": [true] },
89
+ "description": { "type": "string", "format": "text" },
90
+ "docNoFormat": {
91
+ "type": "object",
92
+ "x-foreignkey": "docnoformat",
93
+ "properties": {
94
+ "_id": { "type": "string" },
95
+ "label": { "type": "string" }
96
+ }
97
+ }
98
+ }
99
+ }
100
+
101
+ ```
102
+ 4. Generate (or regenerate) backend codes:
103
+ ```bash
104
+ sh build.sh updatebackend
105
+ # observe generated code at below path:
106
+ # backend/src/simpleapp/services/cust.service.ts
107
+ # backend/src/simpleapp/workflows/bpmn/suspendcustomer.bpmn.ts
108
+ # backend/src/simpleapp/workflows/listeners/suspendcustomer.listener.ts
109
+ ```
110
+ 5. restart backend service
111
+ 6. regenerate frontend codes (ensure backend regenerated and service restart):
112
+ ```sh
113
+ sh build.sh updatefrontend
114
+ ```
115
+ 7. restart frontend service
116
+
117
+
118
+
119
+ ## Modify generated source code
120
+ After source code generated, it add files into frontend and backend:
121
+ ### Generated backend workflow files
122
+ 1. `./src/simpleapp/workflows/bpmn/suspendcustomer.bpmn`: backend will use the bpmn to spawn workflow process
123
+ 2. `./src/simpleapp/workflows/listeners/suspendcustomer.listener.ts`: this file will provide sample code of listen common `usertask` and `servicetask`.
124
+ 3. `./src/simpleapp/services/cust.service.ts`: If `customer.json` added additionalApis, after regenerate backend `customer.service.ts` auto created new rest api `runSuspend`, which will route the execution to generate new workflow process `suspendcustomer`.
125
+
126
+ ### Generated frontend workflow files
127
+ 1. `./simpleapp/workflows/bpmn/suspendcustomer.bpmn`: keep here for reference, frontend can render bpmn ui with this file
128
+ 2. `./simpleapp/generate/clients/CustomerClient.ts`: added api entry point `runSuspend`.
129
+
130
+
131
+ ### Understand Listener Codes
132
+ `./src/simpleapp/workflows/listeners/suspendcustomer.listener.ts` provide sample listener code of below task:
133
+
134
+ #### User Task
135
+ Sample code listen on user task `wait` & `invoke` event. you can add more (support `start,wait,invoke,end,assign`)
136
+ 1. `start`: task begin, seldom use
137
+ 2. `wait`: workflow suspend and waiting user input. You may send notification to users base on `props:UserTaskData`. To trigger workflow continue we shall call api `workflow/invoke-task/:taskId`
138
+ 3. `invoked`: during user invoked process, you will obtain input data from actor. The workflow will go to `end` then move to next task
139
+ 4. `end`: when current task completed, before move to next process (seldom use)
140
+ 5. `assign`: during trigger when current task properties like assignee, candidateUsers, duedata changed. workflow status remain unchange.
141
+ #### Service Task
142
+ Sample code listen on `start` only, it support `start` and `end`. Event characteristic for `start` & `end` same with User task
143
+
144
+ ### Modify Listener Codes
145
+
146
+ 1. Remove `* --remove-this-line-to-prevent-override--` from top comment in `./src/simpleapp/workflows/listeners/suspendcustomer.listener.ts`
147
+ 2. Put in suspend customer source code by modify the file.
148
+ ```ts
149
+ //plenty of import here
150
+ @Injectable()
151
+ export class SuspendcustomerListenerService extends SimpleAppListenerService {
152
+ logger = new Logger();
153
+ constructor() {
154
+ super();
155
+ }
156
+ @OnEvent('suspendcustomer.hello1.start')
157
+ async watch_hello1_start(props: ServiceTaskData) {
158
+ console.log('Running listener suspendcustomer.hello1.start', props);
159
+ }
160
+ }
161
+ ```
162
+ to
163
+ ```ts
164
+ //plenty of import here
165
+ import { CustomerService } from 'src/simpleapp/services/cust.service'; //import customer service class
166
+ @Injectable()
167
+ export class SuspendcustomerListenerService extends SimpleAppListenerService {
168
+ logger = new Logger();
169
+ constructor(private custService:CustomerService) { //inject custService object
170
+ super();
171
+ }
172
+
173
+ @OnEvent('suspendcustomer.hello1.start')
174
+ async watch_hello1_start(props: ServiceTaskData) {
175
+ const appuser = this.prepareAppUser(props.data) //obtain user info, and perform data isolation
176
+ const id = props.data._id
177
+ //find existing record and suspend it
178
+ const newdata = await this.custService.findById(appuser,id)
179
+ newdata.active=false
180
+ await this.custService.findIdThenUpdate(appuser,props.data._id,newdata) //save into database
181
+ }
182
+ }
183
+ ```
184
+
185
+ # BPMN Compatibility
186
+ | type |status|description|
187
+ |------|------|-----------|
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simitgroup/simpleapp-generator",
3
- "version": "1.1.16",
3
+ "version": "1.1.18",
4
4
  "description": "frontend nuxtjs and backend nests code generator using jsonschema",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -2,6 +2,6 @@ export {tenant} from './tenant'
2
2
  export {organization} from './organization'
3
3
  export {branch} from './branch'
4
4
  export {permission} from './permission'
5
- export {user} from './user'
5
+ // export {user} from './user'
6
6
  export {autoincreament} from './autoincreament'
7
7
  export {docnoformat} from './docnoformat'
package/src/framework.ts CHANGED
@@ -70,7 +70,7 @@ export const prepareNest = (callback:Function)=>{
70
70
  if(!fs.existsSync(`${targetfolder}/.env`)){
71
71
 
72
72
 
73
- exec(`cd ${targetfolder};pnpm install --save @nestjs/event-emitter dayjs bpmn-server@2.0.5-alpha2 moment @casl/ability jsonpath yaml lodash @types/lodash nest-keycloak-connect keycloak-connect bpmn-client @nestjs/serve-static jsonwebtoken axios @darkwolf/base64url json-schema @wearenova/mongoose-tenant @nestjs/swagger @nestjs/mongoose mongoose ajv ajv-formats ajv-errors @nestjs/config`,async (error, stdout, stderr)=>{
73
+ exec(`cd ${targetfolder};pnpm install --save @nestjs/event-emitter dayjs bpmn-server@2.0.6-alpha2 moment @casl/ability jsonpath yaml lodash @types/lodash nest-keycloak-connect keycloak-connect bpmn-client @nestjs/serve-static jsonwebtoken axios @darkwolf/base64url json-schema @wearenova/mongoose-tenant @nestjs/swagger @nestjs/mongoose mongoose ajv ajv-formats ajv-errors @nestjs/config`,async (error, stdout, stderr)=>{
74
74
  // log.info(`dependency installed`)
75
75
  if(!error){
76
76
  // fs.mkdirSync(`${targetfolder}/public_html`,{recursive:true})
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * This file was automatically generated by simpleapp generator. Every
3
3
  * MODIFICATION OVERRIDE BY GENERATEOR
4
- * last change 2023-10-28
4
+ * last change 2024-01-01
5
5
  * Author: Ks Tan
6
6
  */
7
7
  import {
@@ -58,6 +58,7 @@ export class UserContext {
58
58
  protected lastActivity: string = new Date().toISOString();
59
59
  protected invites: any[] = []; //User + field tenant:Tenant[]
60
60
  protected roles: string[] = [];
61
+ protected moreProps: any[] =[]
61
62
  private dbsession: ClientSession;
62
63
  protected modifiedRecords: ModifiedRecords = {
63
64
  createds: {},
@@ -74,7 +75,7 @@ export class UserContext {
74
75
  setDBSession = (dbsession: ClientSession) => {
75
76
  this.dbsession = dbsession;
76
77
  };
77
- getDBSession = (): ClientSession => this.dbsession;
78
+ getDBSession = (): ClientSession => this.dbsession;
78
79
  getId = () => this._id;
79
80
  getUid = () => this.uid;
80
81
  getUname = () => this.uname;
@@ -84,6 +85,7 @@ export class UserContext {
84
85
  getBranchId = () => this.branchId;
85
86
  getEmail = () => this.email;
86
87
  getGroup = () => this.group;
88
+ getMoreProps = () => this.moreProps;
87
89
  getRoles = () => this.roles;
88
90
  getModifieds = () => this.modifiedRecords;
89
91
  getBranches = (): ProfileUserBranch[] => {
@@ -256,6 +258,7 @@ export class UserContext {
256
258
  this.branchRecordId = userinfo['branchRecordId'] ?? '';
257
259
  this.group = userinfo['group'] ?? '';
258
260
  this.roles = userinfo['roles'] ?? [Role.Everyone, Role.User];
261
+ this.moreProps = this.setMoreProps(userinfo)
259
262
  } else {
260
263
  this.logger.debug(`Set unknown id of current user`, 'setUserToken');
261
264
  // this.group = ''
@@ -328,7 +331,7 @@ export class UserContext {
328
331
  updated: new Date().toISOString(),
329
332
  };
330
333
  };
331
- setCurrentTenant(tenantId:number, orgId:number,branchId:number){
334
+ setCurrentTenant(tenantId: number, orgId: number, branchId: number) {
332
335
  this.tenantId = tenantId;
333
336
  this.orgId = orgId;
334
337
  this.branchId = branchId;
@@ -372,6 +375,7 @@ export class UserContext {
372
375
  roles: this.getRoles(),
373
376
  branches: this.getBranches(),
374
377
  invites: await this.getInvites(),
378
+ morePros: this.getMoreProps()
375
379
  };
376
380
  this.logger.debug(userinfo, 'init getUserInfo()');
377
381
 
@@ -612,7 +616,12 @@ export class UserContext {
612
616
  return results;
613
617
  }
614
618
 
615
- setAsStaticUser = (uid:string,uname:string,name:string,email:string) => {
619
+ setAsStaticUser = (
620
+ uid: string,
621
+ uname: string,
622
+ name: string,
623
+ email: string,
624
+ ) => {
616
625
  //define token info
617
626
  this.token = '';
618
627
  this.uid = uid;
@@ -620,7 +629,23 @@ export class UserContext {
620
629
  this.uname = uname;
621
630
  this.fullname = name;
622
631
  this.ssoACL = '';
623
- this.roles = [Role.Everyone, Role.User];
632
+ this.roles = [Role.Everyone, Role.User];
624
633
  };
625
-
634
+
635
+ /**
636
+ * define additional properties from user into moreProps
637
+ */
638
+ setMoreProps(userinfo:any){
639
+ const allprops = Object.keys(userinfo)
640
+ const excludekeys=['created','createdBy','updated','updatedBy','_id','email','fullName','permissions','roles','branchCode','branchId','branchName','orgCode','orgId','orgName','tenantId','lastActivity','group','__v','uid','orgRecordId']
641
+ let data:any = {}
642
+ for(let i=0; i< allprops.length; i++){
643
+ const key = allprops[i]
644
+ if(!excludekeys.includes(key)){
645
+ data[key] = userinfo[key]
646
+ }
647
+
648
+ }
649
+ return data
650
+ }
626
651
  }
@@ -24,10 +24,15 @@ import {
24
24
  ServiceTaskData,
25
25
  UserTaskData,
26
26
  UserTaskEventType,
27
- ServiceTaskEventType
27
+ ServiceTaskEventType,
28
28
  } from './workflow.type';
29
29
  import { EventEmitter2, OnEvent } from '@nestjs/event-emitter';
30
- import { BPMNServer, Logger as bpmnlogger ,BPMN_TYPE, EXECUTION_EVENT} from 'bpmn-server';
30
+ import {
31
+ BPMNServer,
32
+ Logger as bpmnlogger,
33
+ BPMN_TYPE,
34
+ EXECUTION_EVENT,
35
+ } from 'bpmn-server';
31
36
  // import { configuration } from './configuration';
32
37
  import { UserContext } from '../commons/user.context';
33
38
  //import * as formschemas from '../../workflow/formschema';
@@ -42,10 +47,13 @@ export class WorkflowService {
42
47
  private readonly logger = new Logger();
43
48
  constructor(
44
49
  private workflowconfig: WorkflowConfig,
45
- private eventEmitter: EventEmitter2
46
- ) {
50
+ private eventEmitter: EventEmitter2,
51
+ ) {
47
52
  this.bpmnServer = new BPMNServer(this.workflowconfig.getConfig());
48
- this.bpmnServer.listener.on('all',async (event)=>await this.applyEventListener(event))
53
+ this.bpmnServer.listener.on(
54
+ 'all',
55
+ async (event) => await this.applyEventListener(event),
56
+ );
49
57
  }
50
58
 
51
59
  /**
@@ -54,7 +62,6 @@ export class WorkflowService {
54
62
  * @returns array of usertask
55
63
  */
56
64
  async getActorUserTask(appuser: UserContext, uid: string) {
57
-
58
65
  const tmp: any[] = await this.bpmnServer.dataStore.findItems({
59
66
  'items.status': 'wait',
60
67
  'data.tenantId': appuser.getTenantId(),
@@ -188,11 +195,23 @@ export class WorkflowService {
188
195
  data: any,
189
196
  ) {
190
197
  try {
198
+
191
199
  const response = await this.bpmnServer.engine.invoke(
192
200
  { 'items.id': taskId, 'items.status': 'wait' },
193
201
  data,
202
+ appuser.getUid(),
203
+ {appuser:appuser}
194
204
  );
195
- return Object.keys(response);
205
+ return {
206
+ parentKeys:Object.keys(response),
207
+ parentId:response.id,
208
+ data:response.instance.data,
209
+ // parentId:response,
210
+ input:response.item.input,
211
+ vars:response.item.vars,
212
+ id:response.item.id,
213
+ status: response.item.status,
214
+ };
196
215
  } catch (e) {
197
216
  throw new NotFoundException(e);
198
217
  }
@@ -298,7 +317,7 @@ export class WorkflowService {
298
317
  @OnEvent('workflow.start')
299
318
  async startWorkflow(appuser: UserContext, workflowName: string, data?: any) {
300
319
  try {
301
- console.log('startWorkflow started: ', workflowName);
320
+ // console.log('startWorkflow started: ', workflowName);
302
321
  data.tenantId = appuser.getTenantId();
303
322
  data.orgId = appuser.getOrgId();
304
323
  data.branchId = appuser.getBranchId();
@@ -307,7 +326,9 @@ export class WorkflowService {
307
326
  data,
308
327
  undefined,
309
328
  appuser.getUid(),
310
- // appuser.getBranchFilter(),
329
+ {
330
+ appuser: appuser,
331
+ },
311
332
  );
312
333
 
313
334
  // console.log("startWorkflowstartWorkflowstartWorkflow",result)
@@ -422,66 +443,95 @@ export class WorkflowService {
422
443
  })),
423
444
  };
424
445
  return result;
425
- }
426
-
446
+ }
427
447
 
428
448
  /**
429
449
  * listen all events in bpmn-server engine, inclduded task and execution instances
430
450
  * @param event bpmn-server event instance
431
451
  */
432
- async applyEventListener(event){
433
-
434
- if(event.context.item){
435
- const workflowName:string = event.context.instance.name
436
- const eventType:EXECUTION_EVENT = event.event
437
- const elementType:BPMN_TYPE = event.context.item.element.type
438
- const elementId:string = event.context.item.element.id
439
- const elementName:string = event.context.item.element.name
440
- const elementProps = event.context.item.element.def
441
- const usertaskinput = event.context.item.input ?? null
442
- const data = event.context.instance.data
443
- switch(elementType){
452
+ async applyEventListener(event) {
453
+ if (event.context.item) {
454
+ const workflowName: string = event.context.instance.name;
455
+ const eventType: EXECUTION_EVENT = event.event;
456
+ const elementType: BPMN_TYPE = event.context.item.element.type;
457
+ const elementId: string = event.context.item.element.id;
458
+ const elementName: string = event.context.item.element.name;
459
+ const elementProps = event.context.item.element.def;
460
+ // const usertaskinput = event.context.item.input ?? null;
461
+ const data = event.context.instance.data;
462
+ const vars = {}
463
+ Object.assign(vars,event.context.item.input);
464
+ event.context.item.input={}
465
+ const options = event.context.options;
466
+ switch (elementType) {
444
467
  case BPMN_TYPE.UserTask:
445
- let usertaskeventtype: UserTaskEventType
446
- if(eventType==EXECUTION_EVENT.node_start) usertaskeventtype='start'
447
- else if(eventType==EXECUTION_EVENT.node_assign) usertaskeventtype='assign'
448
- else if(eventType==EXECUTION_EVENT.node_end) usertaskeventtype='end'
449
- else if(eventType==EXECUTION_EVENT.transform_input) usertaskeventtype='invoke'
450
- else if(eventType==EXECUTION_EVENT.node_wait) usertaskeventtype='wait'
451
- if(usertaskeventtype){
452
- const props:UserTaskData = {
468
+
469
+ let usertaskeventtype: UserTaskEventType;
470
+ if (eventType == EXECUTION_EVENT.node_start)
471
+ usertaskeventtype = 'start';
472
+ else if (eventType == EXECUTION_EVENT.node_assign)
473
+ usertaskeventtype = 'assign';
474
+ else if (eventType == EXECUTION_EVENT.node_end)
475
+ usertaskeventtype = 'end';
476
+ else if (eventType == EXECUTION_EVENT.transform_input)
477
+ usertaskeventtype = 'invoked';
478
+ else if (eventType == EXECUTION_EVENT.node_wait)
479
+ usertaskeventtype = 'wait';
480
+ // console.log("event-------=================================",eventType,usertaskeventtype)
481
+ if (usertaskeventtype) {
482
+ const props: UserTaskData = {
453
483
  workflowName: workflowName,
454
484
  eventType: usertaskeventtype,
455
- elementType:'bpmn:UserTask',
485
+ elementType: 'bpmn:UserTask',
456
486
  elementId: elementId,
457
487
  elementName: elementName,
458
- elementProps: elementProps,
459
- usertaskinput: usertaskinput,
488
+ elementProps: {
489
+ startedAt: event.context.item.startedAt,
490
+ assignee: event.context.item.assignee,
491
+ candidateGroups: event.context.item.candidateGroups,
492
+ candidateUsers: event.context.item.candidateUsers,
493
+ dueDate: event.context.item.dueDate,
494
+ followUpDate: event.context.item.followUpDate,
495
+ priority: event.context.item.priority,
496
+ formKey: elementProps.formKey,
497
+ },
460
498
  data: data,
461
- }
462
- this.eventEmitter.emit(`${workflowName}.${elementId}.${eventType}`,props)
463
- }
499
+ vars:vars,
500
+ options: options,
501
+ };
502
+ this.eventEmitter.emit(
503
+ `${workflowName}.${elementId}.${usertaskeventtype}`,
504
+ props,
505
+ );
506
+ }
507
+
464
508
  break;
465
509
  case BPMN_TYPE.ServiceTask:
466
- let servicetaskeventtype: ServiceTaskEventType
467
- if(eventType==EXECUTION_EVENT.node_start) servicetaskeventtype='start'
468
- else if(eventType==EXECUTION_EVENT.node_end) servicetaskeventtype='end'
469
- if(servicetaskeventtype){
470
- const props:ServiceTaskData = {
510
+ let servicetaskeventtype: ServiceTaskEventType;
511
+ if (eventType == EXECUTION_EVENT.node_start)
512
+ servicetaskeventtype = 'start';
513
+ else if (eventType == EXECUTION_EVENT.node_end)
514
+ servicetaskeventtype = 'end';
515
+ if (servicetaskeventtype) {
516
+ const props: ServiceTaskData = {
471
517
  workflowName: workflowName,
472
518
  eventType: servicetaskeventtype,
473
- elementType:'bpmn:ServiceTask',
519
+ elementType: 'bpmn:ServiceTask',
474
520
  elementId: elementId,
475
521
  elementName: elementName,
476
- elementProps: elementProps,
477
522
  data: data,
478
- }
479
- this.eventEmitter.emit(`${workflowName}.${elementId}.${eventType}`,props)
523
+ vars:vars,
524
+ options: options,
525
+ };
526
+ this.eventEmitter.emit(
527
+ `${workflowName}.${elementId}.${servicetaskeventtype}`,
528
+ props,
529
+ );
480
530
  }
481
531
  break;
482
- default://do nothing at the moment
483
- break;
484
- }
485
- }
532
+ default: //do nothing at the moment
533
+ break;
534
+ }
535
+ }
486
536
  }
487
537
  }
@@ -1,3 +1,5 @@
1
+ import { UserContext } from '../commons/user.context';
2
+
1
3
  /**
2
4
  * This file was automatically generated by simpleapp generator.
3
5
  * DONT CHANGE THIS FILE !!
@@ -59,25 +61,39 @@ export type UserTaskType = {
59
61
  userId: string;
60
62
  };
61
63
 
62
- export type UserTaskEventType = 'start'|'wait'|'invoke'|'end'|'assign'
63
- export type UserTaskData ={
64
- workflowName: string
65
- eventType: 'start'|'wait'|'invoke'|'end'|'assign' //assign = modify properties but not change state
66
- elementType: 'bpmn:UserTask'
67
- elementId: string
68
- elementName: string
69
- elementProps: any
70
- usertaskinput: any
71
- data: any
72
- }
73
- export type ServiceTaskEventType = 'start'|'end'
74
- export type ServiceTaskData ={
75
- workflowName: string
76
- eventType: 'start'|'end'
77
- elementType: 'bpmn:ServiceTask'
78
- elementId: string
79
- elementName: string
80
- elementProps: any,
81
- data: any,
82
- }
83
-
64
+ export type UserTaskEventType = 'start' | 'wait' | 'invoked' | 'end' | 'assign';
65
+ export type UserTaskData = {
66
+ workflowName: string;
67
+ eventType: UserTaskEventType //assign = modify properties but not change state
68
+ elementType: 'bpmn:UserTask';
69
+ elementId: string;
70
+ elementName: string;
71
+ vars:any
72
+ elementProps: {
73
+ startedAt: string;
74
+ assignee?: string;
75
+ candidateGroups?: string | string[];
76
+ candidateUsers?: string | string[];
77
+ dueDate?: string;
78
+ followUpDate?: string;
79
+ priority?: string;
80
+ formKey?: string;
81
+ };
82
+ data: any;
83
+ options: WorkflowOptions;
84
+ };
85
+ export type ServiceTaskEventType = 'start' | 'end';
86
+ export type WorkflowOptions = {
87
+ appuser: UserContext;
88
+ [key: string]: any;
89
+ };
90
+ export type ServiceTaskData = {
91
+ workflowName: string;
92
+ eventType: 'start' | 'end';
93
+ elementType: 'bpmn:ServiceTask';
94
+ elementId: string;
95
+ elementName: string;
96
+ data: any;
97
+ vars:any
98
+ options: WorkflowOptions;
99
+ };
@@ -1,7 +1,7 @@
1
1
  <script setup lang="ts">
2
2
  /**
3
3
  * This file was automatically generated by simpleapp generator during initialization.
4
- * DO NOT MODIFY IT BY HAND.
4
+ * IT WONT OVERRIDE AND YOU CAN MODIFY IT.
5
5
  * last change 2023-09-09
6
6
  * author: Ks Tan
7
7
  */
@@ -17,6 +17,12 @@
17
17
  </Dialog>
18
18
  </template>
19
19
  <script setup lang="ts">
20
+ /**
21
+ * This file was automatically generated by simpleapp generator during initialization.
22
+ * IT WONT OVERRIDE AND YOU CAN MODIFY IT.
23
+ * last change 2023-09-09
24
+ * author: Ks Tan
25
+ */
20
26
  import { onKeyStroke } from '@vueuse/core'
21
27
 
22
28
  import { useDialog } from 'primevue/usedialog';
@@ -1,7 +1,7 @@
1
1
  <script setup lang="ts">
2
2
  /**
3
3
  * This file was automatically generated by simpleapp generator during initialization.
4
- * DO NOT MODIFY IT BY HAND.
4
+ * IT WONT OVERRIDE AND YOU CAN MODIFY IT.
5
5
  * last change 2023-09-09
6
6
  * author: Ks Tan
7
7
  */
@@ -1,5 +1,5 @@
1
1
  export const getDocFormats = async (doctype:string)=>{
2
2
  const docno = useNuxtApp().$DocnoformatDoc();
3
- const docnoformats = await docno.listDocFormats(doctype)
3
+ const docnoformats = await docno.runListDocFormats(doctype)
4
4
  return docnoformats
5
5
  }
@@ -33,7 +33,8 @@ export default defineNuxtPlugin( async(nuxtApp) => {
33
33
  group:ref(''),
34
34
  branches:ref([]),
35
35
  invites : ref([]),
36
- time:ref('')
36
+ time:ref(''),
37
+ moreProps:ref()
37
38
  }),
38
39
 
39
40
  actions:{
@@ -74,7 +75,7 @@ export default defineNuxtPlugin( async(nuxtApp) => {
74
75
  this.roles = res.data.roles
75
76
  this.time = res.data.time
76
77
  this.invites = res.data.invites
77
-
78
+ this.moreProps = res.data.morePros
78
79
  return Promise.resolve(true)
79
80
  // return true
80
81
  }).catch((err:any)=>{
@@ -161,6 +162,7 @@ export default defineNuxtPlugin( async(nuxtApp) => {
161
162
  roles:this.roles,
162
163
  group:this.group,
163
164
  time:this.time,
165
+ moreProps: this.moreProps
164
166
 
165
167
 
166
168
 
@@ -14,8 +14,7 @@ export const getAllDocuments=():DocumentMetaData[] => [
14
14
  <% const conf = d.schema["x-simpleapp-config"] %>
15
15
  {docName:'<%= d['docname'].toLowerCase() %>',docType:'<%= d['doctype'].toUpperCase()%>',page: '<%=d['pagetype']%>', isolationType:'<%=conf['isolationType']%>',
16
16
  documentDate:'<%=conf['documentDate']??""%>', docNumber:<%=conf['generateDocumentNumber']??false%>,
17
- viewer: () => import('~/pages/[xorg]/<%=d['docname'].toLowerCase()%>/viewer.vue'
18
- ),
17
+ <%if(d['pagetype']){%>viewer: () => import('~/pages/[xorg]/<%=d['docname'].toLowerCase()%>/viewer.vue'),<%}%>
19
18
  docClass: useNuxtApp().$<%=d['docname']%>Doc()},
20
19
  <%}%>
21
20
  ]
@@ -9,8 +9,7 @@ import { Component } from 'vue'
9
9
  documentDate:string
10
10
  docNumber:boolean
11
11
  docClass: SimpleAppClient<any,any>
12
- viewer: any
13
-
12
+ viewer?: Function
14
13
  }
15
14
  export type MenuData = {
16
15
  label: string
@@ -0,0 +1,72 @@
1
+ {
2
+ "type": "object",
3
+ "x-simpleapp-config": {
4
+ "documentType": "user",
5
+ "documentName": "user",
6
+ "pageType": "crud",
7
+ "isolationType": "tenant",
8
+ "uniqueKey": "email",
9
+ "documentTitle": "fullName",
10
+ "requiredRoles": [
11
+ "SuperUser"
12
+ ],
13
+ "additionalAutoCompleteFields": [
14
+ "uid"
15
+ ]
16
+ },
17
+ "properties": {
18
+ "_id": {
19
+ "type": "string"
20
+ },
21
+ "created": {
22
+ "type": "string"
23
+ },
24
+ "updated": {
25
+ "type": "string"
26
+ },
27
+ "createdBy": {
28
+ "type": "string"
29
+ },
30
+ "updatedBy": {
31
+ "type": "string"
32
+ },
33
+ "tenantId": {
34
+ "type": "integer",
35
+ "default": 1,
36
+ "minimum": 0
37
+ },
38
+ "orgId": {
39
+ "type": "integer",
40
+ "default": 1,
41
+ "minimum": 0
42
+ },
43
+ "branchId": {
44
+ "type": "integer",
45
+ "default": 1,
46
+ "minimum": 0
47
+ },
48
+ "uid": {
49
+ "type": "string"
50
+ },
51
+ "fullName": {
52
+ "type": "string",
53
+ "minLength": 3
54
+ },
55
+ "email": {
56
+ "type": "string",
57
+ "minLength": 10,
58
+ "format": "email"
59
+ },
60
+ "active": {
61
+ "type": "boolean",
62
+ "default": true
63
+ },
64
+ "description": {
65
+ "type": "string"
66
+ },
67
+ "lastActivity": {
68
+ "type": "string",
69
+ "description": "capture ISO8601 last api call"
70
+ }
71
+ }
72
+ }
@@ -0,0 +1,2 @@
1
+ export {simpleapprove} from './simpleapprove.jsonschema'
2
+
@@ -0,0 +1,8 @@
1
+ export const simpleapprove = {
2
+ "type": "object",
3
+ "required": ["decision"],
4
+ "properties": {
5
+ "decision": { "type": "string", "enum": ["", "approve", "reject"] },
6
+ "description": { "type": "string", "default":"" }
7
+ }
8
+ }
@@ -1 +1 @@
1
- {"program":{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/typescript/lib/lib.webworker.importscripts.d.ts","./node_modules/typescript/lib/lib.scripthost.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2017.date.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.esnext.intl.d.ts","./node_modules/typescript/lib/lib.decorators.d.ts","./node_modules/typescript/lib/lib.decorators.legacy.d.ts","./node_modules/typescript/lib/lib.es2017.full.d.ts","./src/constant.ts","./node_modules/@types/lodash/common/common.d.ts","./node_modules/@types/lodash/common/array.d.ts","./node_modules/@types/lodash/common/collection.d.ts","./node_modules/@types/lodash/common/date.d.ts","./node_modules/@types/lodash/common/function.d.ts","./node_modules/@types/lodash/common/lang.d.ts","./node_modules/@types/lodash/common/math.d.ts","./node_modules/@types/lodash/common/number.d.ts","./node_modules/@types/lodash/common/object.d.ts","./node_modules/@types/lodash/common/seq.d.ts","./node_modules/@types/lodash/common/string.d.ts","./node_modules/@types/lodash/common/util.d.ts","./node_modules/@types/lodash/index.d.ts","./node_modules/tslog/dist/types/runtime/browser/inspectoptions.interface.d.ts","./node_modules/tslog/dist/types/runtime/browser/util.inspect.polyfil.d.ts","./node_modules/tslog/dist/types/runtime/browser/index.d.ts","./node_modules/tslog/dist/types/interfaces.d.ts","./node_modules/tslog/dist/types/runtime/nodejs/index.d.ts","./node_modules/tslog/dist/types/baselogger.d.ts","./node_modules/tslog/dist/types/index.d.ts","./node_modules/eta/dist/types/storage.d.ts","./node_modules/eta/dist/types/config.d.ts","./node_modules/eta/dist/types/compile.d.ts","./node_modules/eta/dist/types/parse.d.ts","./node_modules/eta/dist/types/compile-string.d.ts","./node_modules/eta/dist/types/render.d.ts","./node_modules/eta/dist/types/err.d.ts","./node_modules/eta/dist/types/core.d.ts","./node_modules/eta/dist/types/file-handling.d.ts","./node_modules/eta/dist/types/index.d.ts","./src/framework.ts","./node_modules/@types/json-schema/index.d.ts","./src/libs.ts","./src/type.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/assert/strict.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/diagnostics_channel.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/dns/promises.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/dom-events.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/readline/promises.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/stream/promises.d.ts","./node_modules/@types/node/stream/consumers.d.ts","./node_modules/@types/node/stream/web.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/test.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/timers/promises.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/globals.global.d.ts","./node_modules/@types/node/index.d.ts","./node_modules/@apidevtools/json-schema-ref-parser/dist/lib/types/index.d.ts","./node_modules/@apidevtools/json-schema-ref-parser/dist/lib/options.d.ts","./node_modules/@apidevtools/json-schema-ref-parser/dist/lib/pointer.d.ts","./node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/errors.d.ts","./node_modules/@apidevtools/json-schema-ref-parser/dist/lib/ref.d.ts","./node_modules/@apidevtools/json-schema-ref-parser/dist/lib/refs.d.ts","./node_modules/@apidevtools/json-schema-ref-parser/dist/lib/index.d.ts","./src/storage.ts","./src/processors/jsonschemabuilder.ts","./src/resource/camunda-moodle.ts","./src/processors/bpmnbuilder.ts","./src/buildinschemas/tenant.ts","./src/buildinschemas/organization.ts","./src/buildinschemas/branch.ts","./src/buildinschemas/permission.ts","./src/buildinschemas/user.ts","./src/buildinschemas/autoincreament.ts","./src/buildinschemas/docnoformat.ts","./src/buildinschemas/index.ts","./src/generate.ts","./src/index.ts","./src/validation.ts","./node_modules/@types/lodash.clonedeep/index.d.ts","../node_modules/.pnpm/@types+eslint@8.44.2/node_modules/@types/eslint/helpers.d.ts","../node_modules/.pnpm/@types+estree@1.0.1/node_modules/@types/estree/index.d.ts","../node_modules/.pnpm/@types+json-schema@7.0.12/node_modules/@types/json-schema/index.d.ts","../node_modules/.pnpm/@types+eslint@8.44.2/node_modules/@types/eslint/index.d.ts","../node_modules/.pnpm/@types+eslint-scope@3.7.4/node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/.pnpm/@types+uuid@9.0.4/node_modules/@types/uuid/index.d.ts"],"fileInfos":[{"version":"2ac9cdcfb8f8875c18d14ec5796a8b029c426f73ad6dc3ffb580c228b58d1c44","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"0075fa5ceda385bcdf3488e37786b5a33be730e8bc4aa3cf1e78c63891752ce8","affectsGlobalScope":true},{"version":"35299ae4a62086698444a5aaee27fc7aa377c68cbb90b441c9ace246ffd05c97","affectsGlobalScope":true},{"version":"c5c5565225fce2ede835725a92a28ece149f83542aa4866cfb10290bff7b8996","affectsGlobalScope":true},{"version":"7d2dbc2a0250400af0809b0ad5f84686e84c73526de931f84560e483eb16b03c","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"09226e53d1cfda217317074a97724da3e71e2c545e18774484b61562afc53cd2","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"8b41361862022eb72fcc8a7f34680ac842aca802cf4bc1f915e8c620c9ce4331","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"f35a831e4f0fe3b3697f4a0fe0e3caa7624c92b78afbecaf142c0f93abfaf379","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"994c234848afc14a2586b6565777f4c0b05dc479ede0a041bfd5becf6dceb586",{"version":"851aa9ba6dc0e0f2fb800a55a1cde59615dee74980c50731bda408f5bc03598c","signature":"2341b9d77752b71f419fbcaad23ba010cf3532143e3a8692b8a91d9b89b4d722"},"675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","da2b6356b84a40111aaecb18304ea4e4fcb43d70efb1c13ca7d7a906445ee0d3","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","b03afe4bec768ae333582915146f48b161e567a81b5ebc31c4d78af089770ac9","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","30abc554c7ad13063a02ddd06757929b34357aea1f6fcf4ca39114cb0fc19384","a0ea0ebb80cc84ee69c710fb2facb1aaa928bbba76e4cf2d6986d227e201d8da","e25331ef774a0959e2bdee0725a2fd16f2190a05b4c6568bb5a2f8892bbbbefd","5d8d6708d454b41684ce566f2800c3eb430457dffebbd15b76458d31a603e52d","4be195e56e2a4defc0dcf4dcda78736800c38d0c5acd8ae19a3f8121a2d86db6","9bbc6220a376b95d00d7caa9879f6838e2b14ce6ed27178b16e79849a110d916","505126b9899af41cbe039047ea0cff5d2b5e4c6229319fc639d4150d99a597f0",{"version":"91da497254ee49742e2c2610ba6718b98118652a1c04da086bfd2d0894ea3dff","affectsGlobalScope":true},"69c752e25fd2df30de8a8af5cf9d9d454ddca3fe95341df35978ae73ba221902","9318f9895b9e905e9be43dc145655e60d80be8d3bbcd0947486e0bf6a988b6e5","26e7def372e302eabad5736aaa9a2b6c678eefa9a6997de97a0ed044821229dd","43a9f51aaf8d63dd7b6e1129044e959bc6170197312250d203a39ed9bde2a38d","55b83a98a31fe6aaae2ffa79a833ad42bb69e65dbeba9031c1ab2ae96dd9c806","27b805327aec5a96b728b1717232036fae0c52ce07ebb12365f3f21cab5af4c2","e167772b0b3c93562ec0e2910dcdaff404d9b852bcc326e7f5889ba57d8b5398","576ac8236c4370c710958f4e0f6cacd0255b7f0eeac8724dfb577be8d0a54f88","41a9b6e40e2b85b2cce9b53260d7a8d6a12b450ebe5279ed7f976a40006d2eb0","ba557fb45c819c4c249263eb922ec44a9cdc1f6101dc421502415df219cb4e29",{"version":"b8b02cd5c54a12c1464d0bbf9bcd670a588526643443a81b39b9384d3a0b15d1","signature":"15d6107e23e95346e3a654fc24089c8ee2f41a177717775abb2fe16967900641"},"dca41e86e89dfb2e85e6935260250f02eb6683b86c2fa16bec729ddd1bcd9b4b",{"version":"f976550251fafe42ed2df5e0a09e11e34d67a5dbcdbc97329b2907d5b1ab0821","signature":"d590d612e2c38f0060636bbcd87cf751081c103d1b20f2577ea588afc2b816d4"},{"version":"491dffb59ab97202ffd88fa588caf156d15f3727f45e5623b963bd53643fbb68","signature":"74c11a496c4a92a8cf71c01a5001e0a9ddea7b31386003facf12ead1b7c6991c"},"587f13f1e8157bd8cec0adda0de4ef558bb8573daa9d518d1e2af38e87ecc91f","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"d32f90e6cf32e99c86009b5f79fa50bc750fe54e17137d9bb029c377a2822ee2","affectsGlobalScope":true},"e6f0b909b1c34b38407a6c8b6c92e56a2635527d07dbabe765cfa729c26f3c20",{"version":"c81c51f43e343b6d89114b17341fb9d381c4ccbb25e0ee77532376052c801ba7","affectsGlobalScope":true},"3dd49afd822c82b63b3905a13e22240f34cf367aea4f4dd0e6564f4bddcb8370","57135ce61976a8b1dadd01bb412406d1805b90db6e8ecb726d0d78e0b5f76050",{"version":"49479e21a040c0177d1b1bc05a124c0383df7a08a0726ad4d9457619642e875a","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","f302f3a47d7758f67f2afc753b9375d6504dde05d2e6ecdb1df50abbb131fc89","93db4c949a785a3dbef7f5e08523be538e468c580dd276178b818e761b3b68cd","5b1c0a23f464f894e7c2b2b6c56df7b9afa60ed48c5345f8618d389a636b2108","be2b092f2765222757c6441b86c53a5ea8dfed47bbc43eab4c5fe37942c866b3","8e6b05abc98adba15e1ac78e137c64576c74002e301d682e66feb77a23907ab8","1ca735bb3d407b2af4fbee7665f3a0a83be52168c728cc209755060ba7ed67bd",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"6e335a70826a634c5a1a1fa36a2dacbf3712ef2be7a517540ae1de8a1e8ea4f6","affectsGlobalScope":true},"576115ea69691c96f8f2b9fcfde5d0fb9b5f047dfa7dec242ebc08694c3b3190","df8529626079d6f9d5d3cd7b6fb7db9cda5a3118d383d8cd46c52aadb59593e7","55709608060f77965c270ac10ac646286589f1bd1cb174fff1778a2dd9a7ef31","3122a3f1136508a27a229e0e4e2848299028300ffa11d0cdfe99df90c492fe20","42b40e40f2a358cda332456214fad311e1806a6abf3cebaaac72496e07556642","51fd089a29b2a91c69bdaa28882cf1340dac3df3a068327b6a044d21a79bf8f5",{"version":"0066ebbd0f4ef9656983a2017969afa6460879e894ebaf6f2969631ad9b5b430","affectsGlobalScope":true},"fe6dba0e8c69f2b244e3da38e53dd2cc9e51b2543e647e805396af73006613f7","5e2b91328a540a0933ab5c2203f4358918e6f0fe7505d22840a891a6117735f1","3abc3512fa04aa0230f59ea1019311fd8667bd935d28306311dccc8b17e79d5d",{"version":"5810080a0da989a944d3b691b7b479a4a13c75947fb538abb8070710baa5ccee","affectsGlobalScope":true},{"version":"19da7150ca062323b1db6311a6ef058c9b0a39cc64d836b5e9b75d301869653b","affectsGlobalScope":true},"1349077576abb41f0e9c78ec30762ff75b710208aff77f5fdcc6a8c8ce6289dd","e2ce82603102b5c0563f59fb40314cc1ff95a4d521a66ad14146e130ea80d89c","a3e0395220255a350aa9c6d56f882bfcb5b85c19fddf5419ec822cf22246a26d","c27b01e8ddff5cd280711af5e13aecd9a3228d1c256ea797dd64f8fdec5f7df5","898840e876dfd21843db9f2aa6ae38ba2eab550eb780ff62b894b9fbfebfae6b","8904e5b670bbfc712dda607853de9227206e7dad93ac97109fe30875c5f12b78","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","164deb2409ac5f4da3cd139dbcee7f7d66753d90363a4d7e2db8d8874f272270",{"version":"a54ee34c2cc03ec4bbf0c9b10a08b9f909a21b3314f90a743de7b12b85867cef","affectsGlobalScope":true},{"version":"8a985c7d30aea82342d5017730b546bb2b734fe37a2684ca55d4734deb019d58","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","5bc85813bfcb6907cc3a960fec8734a29d7884e0e372515147720c5991b8bc22","812b25f798033c202baedf386a1ccc41f9191b122f089bffd10fdccce99fba11","993325544790073f77e945bee046d53988c0bc3ac5695c9cf8098166feb82661",{"version":"4d06f3abc2a6aae86f1be39e397372f74fb6e7964f594d645926b4a3419cc15d","affectsGlobalScope":true},{"version":"0e08c360c9b5961ecb0537b703e253842b3ded53151ee07024148219b61a8baf","affectsGlobalScope":true},"2ce2210032ccaff7710e2abf6a722e62c54960458e73e356b6a365c93ab6ca66","5ba5b760345053acdf5beb1a9048ff43a51373f3d87849963779c1711ea7cbcc","16a3080e885ed52d4017c902227a8d0d8daf723d062bec9e45627c6fdcd6699b",{"version":"0bd9543cd8fc0959c76fb8f4f5a26626c2ed62ef4be98fd857bce268066db0a2","affectsGlobalScope":true},"1ca6858a0cbcd74d7db72d7b14c5360a928d1d16748a55ecfa6bfaff8b83071b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"4905d61a3e1e9b12e12dbf8660fc8d2f085734da6da8d725f395bf41a04853d6","2fb77d5b118a9808b842d7153535e7647d98012d0947b74f51e3894711ccbd7b","34b1b6a319f9973e92aefd30d321c10cb6376659ab74c2e08ce0c1fe25a441d7","2f85df10da3009cac88d99eab08f7c86e2b8d007e8105f0c02dee34ee1c66ff5","b242b684342db91be9e15c97cba52b40cf15dfdb2f748db84105c8250fe14a98","370efcddacd922a871b41a319eb797102fca67dae0de2dc515e1a262a276be2d","47c23de74e00c82d3d5a79c48e790c04d6fad367fa1766e077534183dbd06dc2","9df2b4459f88f233eaf07785b3ade78e06406a602ee06438ceb03328b13c1f83",{"version":"362492652d59c064c9b92d6520c485b6b0f1158a8658d6293991bfda97e0fa13","signature":"bc9b3d5073e7a8d7ce3b9804780ff91d63217a3208af5c10509d3051bd8c6b0e"},{"version":"7cd9e8a9b9d8ba94beeb1f953f2dad1951a48b8565f97221413168761642a140","signature":"1992ff33ab78288a93c96a8bc066eaae489080321407b6d0fab53c36e61ebed0"},{"version":"9a2b25b478cd41d4f1ddc8c12253a8d44ea1d0525ccca12cb8b87a5d678d543c","signature":"a47160a67c9a7ce7f3302f69d57f05eeebdb14fa47527477f3dee10015fb2f53"},{"version":"c30a6731274804b67b0019effadee3a80298ddab8588009ef4833d50643b4b26","signature":"2188789ddcf1268012fdd94f660f851d8aece63ebed3a4542823e14dc3ee6c89"},{"version":"5d65195c1c89d5c5f88d72cba886a161aa8fa336dade87b87a6dea904b16dd6c","signature":"2957a5e64e42d9c69465978a6be93076941eec260ff5b89d0e1944056653973a"},{"version":"a559416b7124900ce465befd6e420516ddfd1e6c6e8fa46556ea326c2e48e4e3","signature":"50be57aa3f4d1e7d6f48eaf5ca3158793350f67c869d10df7799cfb3a1f9a2db"},{"version":"05e9914b5ba56e2ec2b1e9a832c904641f5bf690bca5e941cbf994fa7619f6d0","signature":"99160ef059c7487e1b3a769077e4bae89915c29e8a9e7648f41c4f2fb915dc9a"},{"version":"9e00923078a612ef9b464a031b97fb23ce527f5933879411d3b23b5c02293b56","signature":"615feb68c48060c70a56ed5ca8a54879b33d96372fa9aaee4e9ba0e30b5e132b"},{"version":"4577dbd61a9866e8aa9aa729fcd14a74bef402698b0888c94fe12b788ad0311f","signature":"db3ffdb2215faffb9dccefade0c5cfba07523fcd4ac04e634da19fdce0a18e46"},{"version":"c87bc325330a25eb4143be81d638b0ab2c7c629e68df8780d0303fe8838b19c4","signature":"5e677998b9d3db7c8ff512cfab20524cced44685a3031b74ab0daad943a55916"},{"version":"4dcb2c6cf4923ebeb52fa2745747db95da3aeda85ce201435eec14ead36fa645","signature":"e54d3ed3088fc56c29da22d90d11dca66fe740ee398916a43f35dcca40e11ab4"},{"version":"1c3d826b3ba48589709e298df2ac91d8992b625857eddb8e9662b3f2a8d72cf0","signature":"e3238212d053dd584ef8569061950e3133ae91df5eee71c8c2987f5f3b1aed9e"},{"version":"6caa6ef5916a09532dfa8cac1d2e124d883943f03d25d1ed23699b0a3e94c7ad","signature":"c5007a015591dc06207779bd5b97ce64089fff048bcaabb1794aa8edef579f08"},{"version":"d5c3ebe25d1511c6d15efd95f23f09dfa22b2bb3cb072f277a609ed241e5a12f","signature":"ba5c193062970e890092e20cae165633ad9e484ae8ed0073308e371b33587509"},"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","1ecdcf09ff556c7be88a5969071d09fdf173da75b7502ee2ae3d368b0e33a87f",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"bee89e1eb6425eb49894f3f25e4562dc2564e84e5aa7610b7e13d8ecddf8f5db","dca41e86e89dfb2e85e6935260250f02eb6683b86c2fa16bec729ddd1bcd9b4b","facc7572c3330810ff4728113a324790679d4ed41fbd9e371028f08f1cad29f3","e050a0afcdbb269720a900c85076d18e0c1ab73e580202a2bf6964978181222a","f875e913ef24873eb2a469605402595f1c783070b52a98e53686b32c0f827f7f"],"root":[50,81,83,84,[146,160]],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":1,"noImplicitAny":false,"outDir":"./dist","rootDir":"./src","sourceMap":true,"strict":true,"strictBindCallApply":false,"strictNullChecks":false,"target":4},"fileIdsList":[[131,163,165],[131],[82,131,162,163],[131,139,140,142,144],[131,139],[131,140,143],[131,139,140,141,142,144],[82,131,139,140,141,143],[82,131,138,144],[131,145],[63,131],[51,53,54,55,56,57,58,59,60,61,62,63,131],[51,52,54,55,56,57,58,59,60,61,62,63,131],[52,53,54,55,56,57,58,59,60,61,62,63,131],[51,52,53,55,56,57,58,59,60,61,62,63,131],[51,52,53,54,56,57,58,59,60,61,62,63,131],[51,52,53,54,55,57,58,59,60,61,62,63,131],[51,52,53,54,55,56,58,59,60,61,62,63,131],[51,52,53,54,55,56,57,59,60,61,62,63,131],[51,52,53,54,55,56,57,58,60,61,62,63,131],[51,52,53,54,55,56,57,58,59,61,62,63,131],[51,52,53,54,55,56,57,58,59,60,62,63,131],[51,52,53,54,55,56,57,58,59,60,61,63,131],[51,52,53,54,55,56,57,58,59,60,61,62,131],[85,131],[88,131],[89,94,122,131],[90,101,102,109,119,130,131],[90,91,101,109,131],[92,131],[93,94,102,110,131],[94,119,127,131],[95,97,101,109,131],[96,131],[97,98,131],[101,131],[99,101,131],[101,102,103,119,130,131],[101,102,103,116,119,122,131],[131,135],[97,101,104,109,119,130,131],[101,102,104,105,109,119,127,130,131],[104,106,119,127,130,131],[85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137],[101,107,131],[108,130,131,135],[97,101,109,119,131],[110,131],[111,131],[88,112,131],[113,129,131,135],[114,131],[115,131],[101,116,117,131],[116,118,131,133],[89,101,119,120,121,122,131],[89,119,121,131],[119,120,131],[122,131],[123,131],[88,119,131],[101,125,126,131],[125,126,131],[94,109,119,127,131],[128,131],[109,129,131],[89,104,115,130,131],[94,131],[119,131,132],[108,131,133],[131,134],[89,94,101,103,112,119,130,131,133,135],[119,131,136],[72,74,78,131],[72,78,131],[71,72,73,74,75,76,77,131],[78,79,131],[78,131],[73,78,131],[67,68,131],[67,69,131],[66,131],[65,67,131],[64,131],[67,131],[84,131],[131,150,151,152,153,154,155,156],[50,63,70,80,90,102,131],[50,63,70,82,84,102,131,146,147,149,157],[81,92,131,158],[50,63,70,83,102,131,148],[63,70,82,83,84,131,145,146],[82,131],[84],[150,151,152,153,154,155,156],[82,84],[82]],"referencedMap":[[166,1],[162,2],[165,3],[163,2],[164,2],[145,4],[140,5],[141,6],[143,7],[144,8],[139,9],[142,10],[82,2],[161,11],[52,12],[53,13],[51,14],[54,15],[55,16],[56,17],[57,18],[58,19],[59,20],[60,21],[61,22],[62,23],[63,24],[85,25],[86,25],[88,26],[89,27],[90,28],[91,29],[92,30],[93,31],[94,32],[95,33],[96,34],[97,35],[98,35],[100,36],[99,37],[101,36],[102,38],[103,39],[87,40],[137,2],[104,41],[105,42],[106,43],[138,44],[107,45],[108,46],[109,47],[110,48],[111,49],[112,50],[113,51],[114,52],[115,53],[116,54],[117,54],[118,55],[119,56],[121,57],[120,58],[122,59],[123,60],[124,61],[125,62],[126,63],[127,64],[128,65],[129,66],[130,67],[131,68],[132,69],[133,70],[134,71],[135,72],[136,73],[75,74],[73,75],[72,2],[78,76],[77,2],[79,75],[80,77],[74,78],[76,79],[71,2],[69,80],[70,81],[67,82],[66,83],[64,2],[65,84],[68,85],[47,2],[48,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[22,2],[49,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[5,2],[30,2],[31,2],[32,2],[33,2],[6,2],[37,2],[34,2],[35,2],[36,2],[38,2],[7,2],[39,2],[44,2],[45,2],[40,2],[41,2],[42,2],[43,2],[1,2],[46,2],[11,2],[10,2],[155,86],[152,86],[156,86],[157,87],[151,86],[153,86],[150,86],[154,86],[50,2],[81,88],[158,89],[159,90],[83,2],[149,91],[147,92],[148,2],[146,86],[84,93],[160,2],[167,2]],"exportedModulesMap":[[166,1],[162,2],[165,3],[163,2],[164,2],[145,4],[140,5],[141,6],[143,7],[144,8],[139,9],[142,10],[82,2],[161,11],[52,12],[53,13],[51,14],[54,15],[55,16],[56,17],[57,18],[58,19],[59,20],[60,21],[61,22],[62,23],[63,24],[85,25],[86,25],[88,26],[89,27],[90,28],[91,29],[92,30],[93,31],[94,32],[95,33],[96,34],[97,35],[98,35],[100,36],[99,37],[101,36],[102,38],[103,39],[87,40],[137,2],[104,41],[105,42],[106,43],[138,44],[107,45],[108,46],[109,47],[110,48],[111,49],[112,50],[113,51],[114,52],[115,53],[116,54],[117,54],[118,55],[119,56],[121,57],[120,58],[122,59],[123,60],[124,61],[125,62],[126,63],[127,64],[128,65],[129,66],[130,67],[131,68],[132,69],[133,70],[134,71],[135,72],[136,73],[75,74],[73,75],[72,2],[78,76],[77,2],[79,75],[80,77],[74,78],[76,79],[71,2],[69,80],[70,81],[67,82],[66,83],[64,2],[65,84],[68,85],[47,2],[48,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[22,2],[49,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[5,2],[30,2],[31,2],[32,2],[33,2],[6,2],[37,2],[34,2],[35,2],[36,2],[38,2],[7,2],[39,2],[44,2],[45,2],[40,2],[41,2],[42,2],[43,2],[1,2],[46,2],[11,2],[10,2],[155,94],[152,94],[156,94],[157,95],[151,94],[153,94],[150,94],[154,94],[147,96],[146,94],[84,97],[160,2],[167,2]],"semanticDiagnosticsPerFile":[166,162,165,163,164,145,140,141,143,144,139,142,82,161,52,53,51,54,55,56,57,58,59,60,61,62,63,85,86,88,89,90,91,92,93,94,95,96,97,98,100,99,101,102,103,87,137,104,105,106,138,107,108,109,110,111,112,113,114,115,116,117,118,119,121,120,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,75,73,72,78,77,79,80,74,76,71,69,70,67,66,64,65,68,47,48,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,22,49,26,23,24,25,27,28,29,5,30,31,32,33,6,37,34,35,36,38,7,39,44,45,40,41,42,43,1,46,11,10,155,152,156,157,151,153,150,154,50,81,158,159,83,149,147,148,146,84,160,167],"latestChangedDtsFile":"./dist/processors/bpmnbuilder.d.ts"},"version":"5.2.2"}
1
+ {"program":{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/typescript/lib/lib.webworker.importscripts.d.ts","./node_modules/typescript/lib/lib.scripthost.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2017.date.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.esnext.intl.d.ts","./node_modules/typescript/lib/lib.decorators.d.ts","./node_modules/typescript/lib/lib.decorators.legacy.d.ts","./node_modules/typescript/lib/lib.es2017.full.d.ts","./src/constant.ts","./node_modules/@types/lodash/common/common.d.ts","./node_modules/@types/lodash/common/array.d.ts","./node_modules/@types/lodash/common/collection.d.ts","./node_modules/@types/lodash/common/date.d.ts","./node_modules/@types/lodash/common/function.d.ts","./node_modules/@types/lodash/common/lang.d.ts","./node_modules/@types/lodash/common/math.d.ts","./node_modules/@types/lodash/common/number.d.ts","./node_modules/@types/lodash/common/object.d.ts","./node_modules/@types/lodash/common/seq.d.ts","./node_modules/@types/lodash/common/string.d.ts","./node_modules/@types/lodash/common/util.d.ts","./node_modules/@types/lodash/index.d.ts","./node_modules/tslog/dist/types/runtime/browser/inspectoptions.interface.d.ts","./node_modules/tslog/dist/types/runtime/browser/util.inspect.polyfil.d.ts","./node_modules/tslog/dist/types/runtime/browser/index.d.ts","./node_modules/tslog/dist/types/interfaces.d.ts","./node_modules/tslog/dist/types/runtime/nodejs/index.d.ts","./node_modules/tslog/dist/types/baselogger.d.ts","./node_modules/tslog/dist/types/index.d.ts","./node_modules/eta/dist/types/storage.d.ts","./node_modules/eta/dist/types/config.d.ts","./node_modules/eta/dist/types/compile.d.ts","./node_modules/eta/dist/types/parse.d.ts","./node_modules/eta/dist/types/compile-string.d.ts","./node_modules/eta/dist/types/render.d.ts","./node_modules/eta/dist/types/err.d.ts","./node_modules/eta/dist/types/core.d.ts","./node_modules/eta/dist/types/file-handling.d.ts","./node_modules/eta/dist/types/index.d.ts","./src/framework.ts","./node_modules/@types/json-schema/index.d.ts","./src/libs.ts","./src/type.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/assert/strict.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/diagnostics_channel.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/dns/promises.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/dom-events.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/readline/promises.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/stream/promises.d.ts","./node_modules/@types/node/stream/consumers.d.ts","./node_modules/@types/node/stream/web.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/test.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/timers/promises.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/globals.global.d.ts","./node_modules/@types/node/index.d.ts","./node_modules/@apidevtools/json-schema-ref-parser/dist/lib/types/index.d.ts","./node_modules/@apidevtools/json-schema-ref-parser/dist/lib/options.d.ts","./node_modules/@apidevtools/json-schema-ref-parser/dist/lib/pointer.d.ts","./node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/errors.d.ts","./node_modules/@apidevtools/json-schema-ref-parser/dist/lib/ref.d.ts","./node_modules/@apidevtools/json-schema-ref-parser/dist/lib/refs.d.ts","./node_modules/@apidevtools/json-schema-ref-parser/dist/lib/index.d.ts","./src/storage.ts","./src/processors/jsonschemabuilder.ts","./src/resource/camunda-moodle.ts","./src/processors/bpmnbuilder.ts","./src/buildinschemas/tenant.ts","./src/buildinschemas/organization.ts","./src/buildinschemas/branch.ts","./src/buildinschemas/permission.ts","./src/buildinschemas/autoincreament.ts","./src/buildinschemas/docnoformat.ts","./src/buildinschemas/index.ts","./src/generate.ts","./src/index.ts","./src/validation.ts","./src/buildinschemas/user.ts","./node_modules/@types/lodash.clonedeep/index.d.ts","../node_modules/.pnpm/@types+eslint@8.44.2/node_modules/@types/eslint/helpers.d.ts","../node_modules/.pnpm/@types+estree@1.0.1/node_modules/@types/estree/index.d.ts","../node_modules/.pnpm/@types+json-schema@7.0.12/node_modules/@types/json-schema/index.d.ts","../node_modules/.pnpm/@types+eslint@8.44.2/node_modules/@types/eslint/index.d.ts","../node_modules/.pnpm/@types+eslint-scope@3.7.4/node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/.pnpm/@types+uuid@9.0.4/node_modules/@types/uuid/index.d.ts"],"fileInfos":[{"version":"2ac9cdcfb8f8875c18d14ec5796a8b029c426f73ad6dc3ffb580c228b58d1c44","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"0075fa5ceda385bcdf3488e37786b5a33be730e8bc4aa3cf1e78c63891752ce8","affectsGlobalScope":true},{"version":"35299ae4a62086698444a5aaee27fc7aa377c68cbb90b441c9ace246ffd05c97","affectsGlobalScope":true},{"version":"c5c5565225fce2ede835725a92a28ece149f83542aa4866cfb10290bff7b8996","affectsGlobalScope":true},{"version":"7d2dbc2a0250400af0809b0ad5f84686e84c73526de931f84560e483eb16b03c","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"09226e53d1cfda217317074a97724da3e71e2c545e18774484b61562afc53cd2","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"8b41361862022eb72fcc8a7f34680ac842aca802cf4bc1f915e8c620c9ce4331","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"f35a831e4f0fe3b3697f4a0fe0e3caa7624c92b78afbecaf142c0f93abfaf379","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"994c234848afc14a2586b6565777f4c0b05dc479ede0a041bfd5becf6dceb586",{"version":"851aa9ba6dc0e0f2fb800a55a1cde59615dee74980c50731bda408f5bc03598c","signature":"2341b9d77752b71f419fbcaad23ba010cf3532143e3a8692b8a91d9b89b4d722"},"675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","da2b6356b84a40111aaecb18304ea4e4fcb43d70efb1c13ca7d7a906445ee0d3","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","b03afe4bec768ae333582915146f48b161e567a81b5ebc31c4d78af089770ac9","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","30abc554c7ad13063a02ddd06757929b34357aea1f6fcf4ca39114cb0fc19384","a0ea0ebb80cc84ee69c710fb2facb1aaa928bbba76e4cf2d6986d227e201d8da","e25331ef774a0959e2bdee0725a2fd16f2190a05b4c6568bb5a2f8892bbbbefd","5d8d6708d454b41684ce566f2800c3eb430457dffebbd15b76458d31a603e52d","4be195e56e2a4defc0dcf4dcda78736800c38d0c5acd8ae19a3f8121a2d86db6","9bbc6220a376b95d00d7caa9879f6838e2b14ce6ed27178b16e79849a110d916","505126b9899af41cbe039047ea0cff5d2b5e4c6229319fc639d4150d99a597f0",{"version":"91da497254ee49742e2c2610ba6718b98118652a1c04da086bfd2d0894ea3dff","affectsGlobalScope":true},"69c752e25fd2df30de8a8af5cf9d9d454ddca3fe95341df35978ae73ba221902","9318f9895b9e905e9be43dc145655e60d80be8d3bbcd0947486e0bf6a988b6e5","26e7def372e302eabad5736aaa9a2b6c678eefa9a6997de97a0ed044821229dd","43a9f51aaf8d63dd7b6e1129044e959bc6170197312250d203a39ed9bde2a38d","55b83a98a31fe6aaae2ffa79a833ad42bb69e65dbeba9031c1ab2ae96dd9c806","27b805327aec5a96b728b1717232036fae0c52ce07ebb12365f3f21cab5af4c2","e167772b0b3c93562ec0e2910dcdaff404d9b852bcc326e7f5889ba57d8b5398","576ac8236c4370c710958f4e0f6cacd0255b7f0eeac8724dfb577be8d0a54f88","41a9b6e40e2b85b2cce9b53260d7a8d6a12b450ebe5279ed7f976a40006d2eb0","ba557fb45c819c4c249263eb922ec44a9cdc1f6101dc421502415df219cb4e29",{"version":"10464a9ee32f7f1c48be933a6a4842ae75bd6dee2ba08c4ac10d2d5b6a9aedfd","signature":"15d6107e23e95346e3a654fc24089c8ee2f41a177717775abb2fe16967900641"},"dca41e86e89dfb2e85e6935260250f02eb6683b86c2fa16bec729ddd1bcd9b4b",{"version":"f976550251fafe42ed2df5e0a09e11e34d67a5dbcdbc97329b2907d5b1ab0821","signature":"d590d612e2c38f0060636bbcd87cf751081c103d1b20f2577ea588afc2b816d4"},{"version":"491dffb59ab97202ffd88fa588caf156d15f3727f45e5623b963bd53643fbb68","signature":"74c11a496c4a92a8cf71c01a5001e0a9ddea7b31386003facf12ead1b7c6991c"},"587f13f1e8157bd8cec0adda0de4ef558bb8573daa9d518d1e2af38e87ecc91f","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"d32f90e6cf32e99c86009b5f79fa50bc750fe54e17137d9bb029c377a2822ee2","affectsGlobalScope":true},"e6f0b909b1c34b38407a6c8b6c92e56a2635527d07dbabe765cfa729c26f3c20",{"version":"c81c51f43e343b6d89114b17341fb9d381c4ccbb25e0ee77532376052c801ba7","affectsGlobalScope":true},"3dd49afd822c82b63b3905a13e22240f34cf367aea4f4dd0e6564f4bddcb8370","57135ce61976a8b1dadd01bb412406d1805b90db6e8ecb726d0d78e0b5f76050",{"version":"49479e21a040c0177d1b1bc05a124c0383df7a08a0726ad4d9457619642e875a","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","f302f3a47d7758f67f2afc753b9375d6504dde05d2e6ecdb1df50abbb131fc89","93db4c949a785a3dbef7f5e08523be538e468c580dd276178b818e761b3b68cd","5b1c0a23f464f894e7c2b2b6c56df7b9afa60ed48c5345f8618d389a636b2108","be2b092f2765222757c6441b86c53a5ea8dfed47bbc43eab4c5fe37942c866b3","8e6b05abc98adba15e1ac78e137c64576c74002e301d682e66feb77a23907ab8","1ca735bb3d407b2af4fbee7665f3a0a83be52168c728cc209755060ba7ed67bd",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"6e335a70826a634c5a1a1fa36a2dacbf3712ef2be7a517540ae1de8a1e8ea4f6","affectsGlobalScope":true},"576115ea69691c96f8f2b9fcfde5d0fb9b5f047dfa7dec242ebc08694c3b3190","df8529626079d6f9d5d3cd7b6fb7db9cda5a3118d383d8cd46c52aadb59593e7","55709608060f77965c270ac10ac646286589f1bd1cb174fff1778a2dd9a7ef31","3122a3f1136508a27a229e0e4e2848299028300ffa11d0cdfe99df90c492fe20","42b40e40f2a358cda332456214fad311e1806a6abf3cebaaac72496e07556642","51fd089a29b2a91c69bdaa28882cf1340dac3df3a068327b6a044d21a79bf8f5",{"version":"0066ebbd0f4ef9656983a2017969afa6460879e894ebaf6f2969631ad9b5b430","affectsGlobalScope":true},"fe6dba0e8c69f2b244e3da38e53dd2cc9e51b2543e647e805396af73006613f7","5e2b91328a540a0933ab5c2203f4358918e6f0fe7505d22840a891a6117735f1","3abc3512fa04aa0230f59ea1019311fd8667bd935d28306311dccc8b17e79d5d",{"version":"5810080a0da989a944d3b691b7b479a4a13c75947fb538abb8070710baa5ccee","affectsGlobalScope":true},{"version":"19da7150ca062323b1db6311a6ef058c9b0a39cc64d836b5e9b75d301869653b","affectsGlobalScope":true},"1349077576abb41f0e9c78ec30762ff75b710208aff77f5fdcc6a8c8ce6289dd","e2ce82603102b5c0563f59fb40314cc1ff95a4d521a66ad14146e130ea80d89c","a3e0395220255a350aa9c6d56f882bfcb5b85c19fddf5419ec822cf22246a26d","c27b01e8ddff5cd280711af5e13aecd9a3228d1c256ea797dd64f8fdec5f7df5","898840e876dfd21843db9f2aa6ae38ba2eab550eb780ff62b894b9fbfebfae6b","8904e5b670bbfc712dda607853de9227206e7dad93ac97109fe30875c5f12b78","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","164deb2409ac5f4da3cd139dbcee7f7d66753d90363a4d7e2db8d8874f272270",{"version":"a54ee34c2cc03ec4bbf0c9b10a08b9f909a21b3314f90a743de7b12b85867cef","affectsGlobalScope":true},{"version":"8a985c7d30aea82342d5017730b546bb2b734fe37a2684ca55d4734deb019d58","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","5bc85813bfcb6907cc3a960fec8734a29d7884e0e372515147720c5991b8bc22","812b25f798033c202baedf386a1ccc41f9191b122f089bffd10fdccce99fba11","993325544790073f77e945bee046d53988c0bc3ac5695c9cf8098166feb82661",{"version":"4d06f3abc2a6aae86f1be39e397372f74fb6e7964f594d645926b4a3419cc15d","affectsGlobalScope":true},{"version":"0e08c360c9b5961ecb0537b703e253842b3ded53151ee07024148219b61a8baf","affectsGlobalScope":true},"2ce2210032ccaff7710e2abf6a722e62c54960458e73e356b6a365c93ab6ca66","5ba5b760345053acdf5beb1a9048ff43a51373f3d87849963779c1711ea7cbcc","16a3080e885ed52d4017c902227a8d0d8daf723d062bec9e45627c6fdcd6699b",{"version":"0bd9543cd8fc0959c76fb8f4f5a26626c2ed62ef4be98fd857bce268066db0a2","affectsGlobalScope":true},"1ca6858a0cbcd74d7db72d7b14c5360a928d1d16748a55ecfa6bfaff8b83071b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"4905d61a3e1e9b12e12dbf8660fc8d2f085734da6da8d725f395bf41a04853d6","2fb77d5b118a9808b842d7153535e7647d98012d0947b74f51e3894711ccbd7b","34b1b6a319f9973e92aefd30d321c10cb6376659ab74c2e08ce0c1fe25a441d7","2f85df10da3009cac88d99eab08f7c86e2b8d007e8105f0c02dee34ee1c66ff5","b242b684342db91be9e15c97cba52b40cf15dfdb2f748db84105c8250fe14a98","370efcddacd922a871b41a319eb797102fca67dae0de2dc515e1a262a276be2d","47c23de74e00c82d3d5a79c48e790c04d6fad367fa1766e077534183dbd06dc2","9df2b4459f88f233eaf07785b3ade78e06406a602ee06438ceb03328b13c1f83",{"version":"362492652d59c064c9b92d6520c485b6b0f1158a8658d6293991bfda97e0fa13","signature":"bc9b3d5073e7a8d7ce3b9804780ff91d63217a3208af5c10509d3051bd8c6b0e"},{"version":"7cd9e8a9b9d8ba94beeb1f953f2dad1951a48b8565f97221413168761642a140","signature":"1992ff33ab78288a93c96a8bc066eaae489080321407b6d0fab53c36e61ebed0"},{"version":"9a2b25b478cd41d4f1ddc8c12253a8d44ea1d0525ccca12cb8b87a5d678d543c","signature":"a47160a67c9a7ce7f3302f69d57f05eeebdb14fa47527477f3dee10015fb2f53"},{"version":"c30a6731274804b67b0019effadee3a80298ddab8588009ef4833d50643b4b26","signature":"2188789ddcf1268012fdd94f660f851d8aece63ebed3a4542823e14dc3ee6c89"},{"version":"5d65195c1c89d5c5f88d72cba886a161aa8fa336dade87b87a6dea904b16dd6c","signature":"2957a5e64e42d9c69465978a6be93076941eec260ff5b89d0e1944056653973a"},{"version":"a559416b7124900ce465befd6e420516ddfd1e6c6e8fa46556ea326c2e48e4e3","signature":"50be57aa3f4d1e7d6f48eaf5ca3158793350f67c869d10df7799cfb3a1f9a2db"},{"version":"05e9914b5ba56e2ec2b1e9a832c904641f5bf690bca5e941cbf994fa7619f6d0","signature":"99160ef059c7487e1b3a769077e4bae89915c29e8a9e7648f41c4f2fb915dc9a"},{"version":"9e00923078a612ef9b464a031b97fb23ce527f5933879411d3b23b5c02293b56","signature":"615feb68c48060c70a56ed5ca8a54879b33d96372fa9aaee4e9ba0e30b5e132b"},{"version":"c87bc325330a25eb4143be81d638b0ab2c7c629e68df8780d0303fe8838b19c4","signature":"5e677998b9d3db7c8ff512cfab20524cced44685a3031b74ab0daad943a55916"},{"version":"4dcb2c6cf4923ebeb52fa2745747db95da3aeda85ce201435eec14ead36fa645","signature":"e54d3ed3088fc56c29da22d90d11dca66fe740ee398916a43f35dcca40e11ab4"},{"version":"5e79660a6214a545c3a306d1c0601452c6c7524beaf086ff397a46a1a5fd7217","signature":"a838515c413f3211d80a11a9c0d0ae95bd79e06fcbbea02e6aa3076733501b17"},{"version":"6caa6ef5916a09532dfa8cac1d2e124d883943f03d25d1ed23699b0a3e94c7ad","signature":"c5007a015591dc06207779bd5b97ce64089fff048bcaabb1794aa8edef579f08"},{"version":"d5c3ebe25d1511c6d15efd95f23f09dfa22b2bb3cb072f277a609ed241e5a12f","signature":"ba5c193062970e890092e20cae165633ad9e484ae8ed0073308e371b33587509"},"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",{"version":"4577dbd61a9866e8aa9aa729fcd14a74bef402698b0888c94fe12b788ad0311f","signature":"db3ffdb2215faffb9dccefade0c5cfba07523fcd4ac04e634da19fdce0a18e46"},"1ecdcf09ff556c7be88a5969071d09fdf173da75b7502ee2ae3d368b0e33a87f",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"bee89e1eb6425eb49894f3f25e4562dc2564e84e5aa7610b7e13d8ecddf8f5db","dca41e86e89dfb2e85e6935260250f02eb6683b86c2fa16bec729ddd1bcd9b4b","facc7572c3330810ff4728113a324790679d4ed41fbd9e371028f08f1cad29f3","e050a0afcdbb269720a900c85076d18e0c1ab73e580202a2bf6964978181222a","f875e913ef24873eb2a469605402595f1c783070b52a98e53686b32c0f827f7f"],"root":[50,81,83,84,[146,160]],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":1,"noImplicitAny":false,"outDir":"./dist","rootDir":"./src","sourceMap":true,"strict":true,"strictBindCallApply":false,"strictNullChecks":false,"target":4},"fileIdsList":[[131,163,165],[131],[82,131,162,163],[131,139,140,142,144],[131,139],[131,140,143],[131,139,140,141,142,144],[82,131,139,140,141,143],[82,131,138,144],[131,145],[63,131],[51,53,54,55,56,57,58,59,60,61,62,63,131],[51,52,54,55,56,57,58,59,60,61,62,63,131],[52,53,54,55,56,57,58,59,60,61,62,63,131],[51,52,53,55,56,57,58,59,60,61,62,63,131],[51,52,53,54,56,57,58,59,60,61,62,63,131],[51,52,53,54,55,57,58,59,60,61,62,63,131],[51,52,53,54,55,56,58,59,60,61,62,63,131],[51,52,53,54,55,56,57,59,60,61,62,63,131],[51,52,53,54,55,56,57,58,60,61,62,63,131],[51,52,53,54,55,56,57,58,59,61,62,63,131],[51,52,53,54,55,56,57,58,59,60,62,63,131],[51,52,53,54,55,56,57,58,59,60,61,63,131],[51,52,53,54,55,56,57,58,59,60,61,62,131],[85,131],[88,131],[89,94,122,131],[90,101,102,109,119,130,131],[90,91,101,109,131],[92,131],[93,94,102,110,131],[94,119,127,131],[95,97,101,109,131],[96,131],[97,98,131],[101,131],[99,101,131],[101,102,103,119,130,131],[101,102,103,116,119,122,131],[131,135],[97,101,104,109,119,130,131],[101,102,104,105,109,119,127,130,131],[104,106,119,127,130,131],[85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137],[101,107,131],[108,130,131,135],[97,101,109,119,131],[110,131],[111,131],[88,112,131],[113,129,131,135],[114,131],[115,131],[101,116,117,131],[116,118,131,133],[89,101,119,120,121,122,131],[89,119,121,131],[119,120,131],[122,131],[123,131],[88,119,131],[101,125,126,131],[125,126,131],[94,109,119,127,131],[128,131],[109,129,131],[89,104,115,130,131],[94,131],[119,131,132],[108,131,133],[131,134],[89,94,101,103,112,119,130,131,133,135],[119,131,136],[72,74,78,131],[72,78,131],[71,72,73,74,75,76,77,131],[78,79,131],[78,131],[73,78,131],[67,68,131],[67,69,131],[66,131],[65,67,131],[64,131],[67,131],[84,131],[131,150,151,152,153,154,155],[50,63,70,80,90,102,131],[50,63,70,82,84,102,131,146,147,149,156],[81,92,131,157],[50,63,70,83,102,131,148],[63,70,82,83,84,131,145,146],[82,131],[84],[150,151,152,153,154,155],[82,84],[82]],"referencedMap":[[166,1],[162,2],[165,3],[163,2],[164,2],[145,4],[140,5],[141,6],[143,7],[144,8],[139,9],[142,10],[82,2],[161,11],[52,12],[53,13],[51,14],[54,15],[55,16],[56,17],[57,18],[58,19],[59,20],[60,21],[61,22],[62,23],[63,24],[85,25],[86,25],[88,26],[89,27],[90,28],[91,29],[92,30],[93,31],[94,32],[95,33],[96,34],[97,35],[98,35],[100,36],[99,37],[101,36],[102,38],[103,39],[87,40],[137,2],[104,41],[105,42],[106,43],[138,44],[107,45],[108,46],[109,47],[110,48],[111,49],[112,50],[113,51],[114,52],[115,53],[116,54],[117,54],[118,55],[119,56],[121,57],[120,58],[122,59],[123,60],[124,61],[125,62],[126,63],[127,64],[128,65],[129,66],[130,67],[131,68],[132,69],[133,70],[134,71],[135,72],[136,73],[75,74],[73,75],[72,2],[78,76],[77,2],[79,75],[80,77],[74,78],[76,79],[71,2],[69,80],[70,81],[67,82],[66,83],[64,2],[65,84],[68,85],[47,2],[48,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[22,2],[49,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[5,2],[30,2],[31,2],[32,2],[33,2],[6,2],[37,2],[34,2],[35,2],[36,2],[38,2],[7,2],[39,2],[44,2],[45,2],[40,2],[41,2],[42,2],[43,2],[1,2],[46,2],[11,2],[10,2],[154,86],[152,86],[155,86],[156,87],[151,86],[153,86],[150,86],[160,86],[50,2],[81,88],[157,89],[158,90],[83,2],[149,91],[147,92],[148,2],[146,86],[84,93],[159,2],[167,2]],"exportedModulesMap":[[166,1],[162,2],[165,3],[163,2],[164,2],[145,4],[140,5],[141,6],[143,7],[144,8],[139,9],[142,10],[82,2],[161,11],[52,12],[53,13],[51,14],[54,15],[55,16],[56,17],[57,18],[58,19],[59,20],[60,21],[61,22],[62,23],[63,24],[85,25],[86,25],[88,26],[89,27],[90,28],[91,29],[92,30],[93,31],[94,32],[95,33],[96,34],[97,35],[98,35],[100,36],[99,37],[101,36],[102,38],[103,39],[87,40],[137,2],[104,41],[105,42],[106,43],[138,44],[107,45],[108,46],[109,47],[110,48],[111,49],[112,50],[113,51],[114,52],[115,53],[116,54],[117,54],[118,55],[119,56],[121,57],[120,58],[122,59],[123,60],[124,61],[125,62],[126,63],[127,64],[128,65],[129,66],[130,67],[131,68],[132,69],[133,70],[134,71],[135,72],[136,73],[75,74],[73,75],[72,2],[78,76],[77,2],[79,75],[80,77],[74,78],[76,79],[71,2],[69,80],[70,81],[67,82],[66,83],[64,2],[65,84],[68,85],[47,2],[48,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[22,2],[49,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[5,2],[30,2],[31,2],[32,2],[33,2],[6,2],[37,2],[34,2],[35,2],[36,2],[38,2],[7,2],[39,2],[44,2],[45,2],[40,2],[41,2],[42,2],[43,2],[1,2],[46,2],[11,2],[10,2],[154,94],[152,94],[155,94],[156,95],[151,94],[153,94],[150,94],[160,94],[147,96],[146,94],[84,97],[159,2],[167,2]],"semanticDiagnosticsPerFile":[166,162,165,163,164,145,140,141,143,144,139,142,82,161,52,53,51,54,55,56,57,58,59,60,61,62,63,85,86,88,89,90,91,92,93,94,95,96,97,98,100,99,101,102,103,87,137,104,105,106,138,107,108,109,110,111,112,113,114,115,116,117,118,119,121,120,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,75,73,72,78,77,79,80,74,76,71,69,70,67,66,64,65,68,47,48,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,22,49,26,23,24,25,27,28,29,5,30,31,32,33,6,37,34,35,36,38,7,39,44,45,40,41,42,43,1,46,11,10,154,152,155,156,151,153,150,160,50,81,157,158,83,149,147,148,146,84,159,167],"latestChangedDtsFile":"./dist/buildinschemas/index.d.ts"},"version":"5.2.2"}