@open-norantec/omni-sdk 1.0.15-beta.4 → 1.0.15-beta.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1,32 +1,41 @@
1
1
  export interface MethodTypeMap {
2
2
  '/dynamicConfig/get': {
3
3
  request: {
4
- patterns?: string[] | undefined;
4
+ patterns?: string[];
5
5
  };
6
6
  response: {
7
- name: string | null;
8
- content: string;
9
- }[];
7
+ data: {
8
+ name: string | null;
9
+ content: string;
10
+ }[];
11
+ token: string | null;
12
+ };
10
13
  };
11
14
  '/internationalization/get': {
12
15
  request: {
13
16
  locale: string;
14
17
  };
15
18
  response: {
16
- name: string | null;
17
- content: string;
19
+ data: {
20
+ name: string | null;
21
+ content: string;
22
+ };
23
+ token: string | null;
18
24
  };
19
25
  };
20
26
  '/auth/requestCode': {
21
27
  request: {
22
- applicationId: string;
23
28
  email: string;
29
+ applicationId: string;
24
30
  };
25
31
  response: {
26
- id: string;
27
- nextUnlockTime: string | null;
28
- createdAt?: string | null | undefined;
29
- updatedAt?: string | null | undefined;
32
+ data: {
33
+ id: string;
34
+ nextUnlockTime: string | null;
35
+ createdAt?: string | null;
36
+ updatedAt?: string | null;
37
+ };
38
+ token: string | null;
30
39
  };
31
40
  };
32
41
  '/auth/refreshToken': {
@@ -34,11 +43,14 @@ export interface MethodTypeMap {
34
43
  token: string;
35
44
  };
36
45
  response: {
37
- succeeded: boolean;
38
- id?: string | undefined;
39
- createdAt?: string | null | undefined;
40
- updatedAt?: string | null | undefined;
41
- content?: string | undefined;
46
+ data: {
47
+ succeeded: boolean;
48
+ content?: string;
49
+ id?: string;
50
+ createdAt?: string | null;
51
+ updatedAt?: string | null;
52
+ };
53
+ token: string | null;
42
54
  };
43
55
  };
44
56
  '/auth/getAccessTokenByEncryptedToken': {
@@ -46,63 +58,78 @@ export interface MethodTypeMap {
46
58
  token: string;
47
59
  };
48
60
  response: {
49
- succeeded: boolean;
50
- id?: string | undefined;
51
- createdAt?: string | null | undefined;
52
- updatedAt?: string | null | undefined;
53
- content?: string | undefined;
61
+ data: {
62
+ succeeded: boolean;
63
+ content?: string;
64
+ id?: string;
65
+ createdAt?: string | null;
66
+ updatedAt?: string | null;
67
+ };
68
+ token: string | null;
54
69
  };
55
70
  };
56
71
  '/auth/verifyJsonWebToken': {
57
72
  request: {
73
+ ignoreExpiration: boolean;
58
74
  token: string;
59
- ignoreExpiration?: boolean | undefined;
60
75
  };
61
76
  response: {
62
- userId: string;
63
- nextToken: string | null;
64
- } | null;
77
+ data: {
78
+ nextToken: string | null;
79
+ userId: string;
80
+ } | null;
81
+ token: string | null;
82
+ };
65
83
  };
66
84
  '/auth/logout': {
67
85
  request: {
68
86
  token: string;
69
87
  };
70
- response: boolean;
88
+ response: {
89
+ data: boolean;
90
+ token: string | null;
91
+ };
71
92
  };
72
93
  '/application/getDetail': {
73
94
  request: {
74
- id?: string | undefined;
95
+ id: string;
75
96
  };
76
97
  response: {
77
- brandImageUrl: string;
78
- redirectUrlPattern: string;
79
- title: string;
80
- id: string;
81
- createdAt?: string | null | undefined;
82
- updatedAt?: string | null | undefined;
83
- authCodeExpirationMinutes?: number | undefined;
84
- secretValue?: string | null | undefined;
85
- tokenExpirationDays?: number | undefined;
98
+ data: {
99
+ authCodeExpirationMinutes: number;
100
+ brandImageUrl: string;
101
+ redirectUrlPattern: string;
102
+ secretValue?: string | null;
103
+ title: string;
104
+ tokenExpirationDays: number;
105
+ id: string;
106
+ createdAt?: string | null;
107
+ updatedAt?: string | null;
108
+ };
109
+ token: string | null;
86
110
  };
87
111
  };
88
112
  '/application/update': {
89
113
  request: {
114
+ authCodeExpirationMinutes?: number;
115
+ brandImageUrl?: string;
116
+ redirectUrlPattern?: string;
117
+ title?: string;
118
+ tokenExpirationDays?: number;
90
119
  id: string;
91
- title?: string | undefined;
92
- redirectUrlPattern?: string | undefined;
93
- brandImageUrl?: string | undefined;
94
- authCodeExpirationMinutes?: number | undefined;
95
- tokenExpirationDays?: number | undefined;
96
120
  };
97
121
  response: {
98
- id: string;
99
- title: string;
100
- redirectUrlPattern: string;
101
- brandImageUrl: string;
102
- createdAt?: string | null | undefined;
103
- updatedAt?: string | null | undefined;
104
- authCodeExpirationMinutes?: number | undefined;
105
- tokenExpirationDays?: number | undefined;
122
+ data: {
123
+ authCodeExpirationMinutes: number;
124
+ brandImageUrl: string;
125
+ redirectUrlPattern: string;
126
+ title: string;
127
+ tokenExpirationDays: number;
128
+ id: string;
129
+ createdAt?: string | null;
130
+ updatedAt?: string | null;
131
+ };
132
+ token: string | null;
106
133
  };
107
134
  };
108
135
  '/application/regenerateKeyPair': {
@@ -110,15 +137,18 @@ export interface MethodTypeMap {
110
137
  id: string;
111
138
  };
112
139
  response: {
113
- brandImageUrl: string;
114
- redirectUrlPattern: string;
115
- title: string;
116
- id: string;
117
- createdAt?: string | null | undefined;
118
- updatedAt?: string | null | undefined;
119
- authCodeExpirationMinutes?: number | undefined;
120
- secretValue?: string | null | undefined;
121
- tokenExpirationDays?: number | undefined;
140
+ data: {
141
+ authCodeExpirationMinutes: number;
142
+ brandImageUrl: string;
143
+ redirectUrlPattern: string;
144
+ secretValue?: string | null;
145
+ title: string;
146
+ tokenExpirationDays: number;
147
+ id: string;
148
+ createdAt?: string | null;
149
+ updatedAt?: string | null;
150
+ };
151
+ token: string | null;
122
152
  };
123
153
  };
124
154
  '/application/regenerateSecret': {
@@ -126,228 +156,252 @@ export interface MethodTypeMap {
126
156
  id: string;
127
157
  };
128
158
  response: {
129
- brandImageUrl: string;
130
- redirectUrlPattern: string;
131
- title: string;
132
- id: string;
133
- createdAt?: string | null | undefined;
134
- updatedAt?: string | null | undefined;
135
- authCodeExpirationMinutes?: number | undefined;
136
- secretValue?: string | null | undefined;
137
- tokenExpirationDays?: number | undefined;
159
+ data: {
160
+ authCodeExpirationMinutes: number;
161
+ brandImageUrl: string;
162
+ redirectUrlPattern: string;
163
+ secretValue?: string | null;
164
+ title: string;
165
+ tokenExpirationDays: number;
166
+ id: string;
167
+ createdAt?: string | null;
168
+ updatedAt?: string | null;
169
+ };
170
+ token: string | null;
138
171
  };
139
172
  };
140
173
  '/accessKey/create': {
141
174
  request: {
142
- userId: string;
143
175
  expirationTime: string | null;
144
176
  userApplicationRelation?: {
145
- id: string;
146
- applicationId: string;
147
- banned: boolean;
148
- userId: string;
149
- createdAt?: string | null | undefined;
150
- updatedAt?: string | null | undefined;
151
177
  application?: {
178
+ authCodeExpirationMinutes: number;
152
179
  brandImageUrl: string;
153
180
  redirectUrlPattern: string;
181
+ secretValue?: string | null;
154
182
  title: string;
183
+ tokenExpirationDays: number;
155
184
  id: string;
156
- createdAt?: string | null | undefined;
157
- updatedAt?: string | null | undefined;
158
- authCodeExpirationMinutes?: number | undefined;
159
- secretValue?: string | null | undefined;
160
- tokenExpirationDays?: number | undefined;
161
- } | null | undefined;
162
- nickName?: string | null | undefined;
163
- } | null | undefined;
164
- };
165
- response: {
166
- secretValue: string | null;
167
- id: string;
168
- deprecated: boolean;
169
- expirationTime: string | null;
170
- userApplicationRelationId: string;
171
- createdAt?: string | null | undefined;
172
- updatedAt?: string | null | undefined;
173
- userApplicationRelation?: {
174
- id: string;
185
+ createdAt?: string | null;
186
+ updatedAt?: string | null;
187
+ } | null;
175
188
  applicationId: string;
176
189
  banned: boolean;
190
+ nickName?: string | null;
177
191
  userId: string;
178
- createdAt?: string | null | undefined;
179
- updatedAt?: string | null | undefined;
180
- application?: {
181
- brandImageUrl: string;
182
- redirectUrlPattern: string;
183
- title: string;
192
+ id: string;
193
+ createdAt?: string | null;
194
+ updatedAt?: string | null;
195
+ } | null;
196
+ userId: string;
197
+ };
198
+ response: {
199
+ data: {
200
+ deprecated: boolean;
201
+ expirationTime: string | null;
202
+ secretValue: string | null;
203
+ userApplicationRelation?: {
204
+ application?: {
205
+ authCodeExpirationMinutes: number;
206
+ brandImageUrl: string;
207
+ redirectUrlPattern: string;
208
+ secretValue?: string | null;
209
+ title: string;
210
+ tokenExpirationDays: number;
211
+ id: string;
212
+ createdAt?: string | null;
213
+ updatedAt?: string | null;
214
+ } | null;
215
+ applicationId: string;
216
+ banned: boolean;
217
+ nickName?: string | null;
218
+ userId: string;
184
219
  id: string;
185
- createdAt?: string | null | undefined;
186
- updatedAt?: string | null | undefined;
187
- authCodeExpirationMinutes?: number | undefined;
188
- secretValue?: string | null | undefined;
189
- tokenExpirationDays?: number | undefined;
190
- } | null | undefined;
191
- nickName?: string | null | undefined;
192
- } | null | undefined;
220
+ createdAt?: string | null;
221
+ updatedAt?: string | null;
222
+ } | null;
223
+ userApplicationRelationId: string;
224
+ id: string;
225
+ createdAt?: string | null;
226
+ updatedAt?: string | null;
227
+ };
228
+ token: string | null;
193
229
  };
194
230
  };
195
231
  '/accessKey/update': {
196
232
  request: {
197
- id: string;
198
- expirationTime?: string | null | undefined;
199
- deprecated?: boolean | undefined;
233
+ deprecated?: boolean;
234
+ expirationTime?: string | null;
200
235
  userApplicationRelation?: {
201
- id: string;
202
- applicationId: string;
203
- banned: boolean;
204
- userId: string;
205
- createdAt?: string | null | undefined;
206
- updatedAt?: string | null | undefined;
207
236
  application?: {
237
+ authCodeExpirationMinutes: number;
208
238
  brandImageUrl: string;
209
239
  redirectUrlPattern: string;
240
+ secretValue?: string | null;
210
241
  title: string;
242
+ tokenExpirationDays: number;
211
243
  id: string;
212
- createdAt?: string | null | undefined;
213
- updatedAt?: string | null | undefined;
214
- authCodeExpirationMinutes?: number | undefined;
215
- secretValue?: string | null | undefined;
216
- tokenExpirationDays?: number | undefined;
217
- } | null | undefined;
218
- nickName?: string | null | undefined;
219
- } | null | undefined;
220
- };
221
- response: {
222
- secretValue: string | null;
223
- id: string;
224
- deprecated: boolean;
225
- expirationTime: string | null;
226
- userApplicationRelationId: string;
227
- createdAt?: string | null | undefined;
228
- updatedAt?: string | null | undefined;
229
- userApplicationRelation?: {
230
- id: string;
244
+ createdAt?: string | null;
245
+ updatedAt?: string | null;
246
+ } | null;
231
247
  applicationId: string;
232
248
  banned: boolean;
249
+ nickName?: string | null;
233
250
  userId: string;
234
- createdAt?: string | null | undefined;
235
- updatedAt?: string | null | undefined;
236
- application?: {
237
- brandImageUrl: string;
238
- redirectUrlPattern: string;
239
- title: string;
251
+ id: string;
252
+ createdAt?: string | null;
253
+ updatedAt?: string | null;
254
+ } | null;
255
+ id: string;
256
+ };
257
+ response: {
258
+ data: {
259
+ deprecated: boolean;
260
+ expirationTime: string | null;
261
+ secretValue: string | null;
262
+ userApplicationRelation?: {
263
+ application?: {
264
+ authCodeExpirationMinutes: number;
265
+ brandImageUrl: string;
266
+ redirectUrlPattern: string;
267
+ secretValue?: string | null;
268
+ title: string;
269
+ tokenExpirationDays: number;
270
+ id: string;
271
+ createdAt?: string | null;
272
+ updatedAt?: string | null;
273
+ } | null;
274
+ applicationId: string;
275
+ banned: boolean;
276
+ nickName?: string | null;
277
+ userId: string;
240
278
  id: string;
241
- createdAt?: string | null | undefined;
242
- updatedAt?: string | null | undefined;
243
- authCodeExpirationMinutes?: number | undefined;
244
- secretValue?: string | null | undefined;
245
- tokenExpirationDays?: number | undefined;
246
- } | null | undefined;
247
- nickName?: string | null | undefined;
248
- } | null | undefined;
279
+ createdAt?: string | null;
280
+ updatedAt?: string | null;
281
+ } | null;
282
+ userApplicationRelationId: string;
283
+ id: string;
284
+ createdAt?: string | null;
285
+ updatedAt?: string | null;
286
+ };
287
+ token: string | null;
249
288
  };
250
289
  };
251
290
  '/accessKey/verify': {
252
291
  request: {
253
- id: string;
254
292
  secret: string;
255
293
  scopeIdentifier: string | null;
294
+ id: string;
256
295
  };
257
296
  response: {
258
- secretValue: string | null;
259
- id: string;
260
- deprecated: boolean;
261
- expirationTime: string | null;
262
- userApplicationRelationId: string;
263
- createdAt?: string | null | undefined;
264
- updatedAt?: string | null | undefined;
265
- userApplicationRelation?: {
266
- id: string;
267
- applicationId: string;
268
- banned: boolean;
269
- userId: string;
270
- createdAt?: string | null | undefined;
271
- updatedAt?: string | null | undefined;
272
- application?: {
273
- brandImageUrl: string;
274
- redirectUrlPattern: string;
275
- title: string;
297
+ data: {
298
+ deprecated: boolean;
299
+ expirationTime: string | null;
300
+ secretValue: string | null;
301
+ userApplicationRelation?: {
302
+ application?: {
303
+ authCodeExpirationMinutes: number;
304
+ brandImageUrl: string;
305
+ redirectUrlPattern: string;
306
+ secretValue?: string | null;
307
+ title: string;
308
+ tokenExpirationDays: number;
309
+ id: string;
310
+ createdAt?: string | null;
311
+ updatedAt?: string | null;
312
+ } | null;
313
+ applicationId: string;
314
+ banned: boolean;
315
+ nickName?: string | null;
316
+ userId: string;
276
317
  id: string;
277
- createdAt?: string | null | undefined;
278
- updatedAt?: string | null | undefined;
279
- authCodeExpirationMinutes?: number | undefined;
280
- secretValue?: string | null | undefined;
281
- tokenExpirationDays?: number | undefined;
282
- } | null | undefined;
283
- nickName?: string | null | undefined;
284
- } | null | undefined;
318
+ createdAt?: string | null;
319
+ updatedAt?: string | null;
320
+ } | null;
321
+ userApplicationRelationId: string;
322
+ id: string;
323
+ createdAt?: string | null;
324
+ updatedAt?: string | null;
325
+ };
326
+ token: string | null;
285
327
  };
286
328
  };
287
329
  '/accessKey/list': {
288
330
  request: {
289
- applicationId: string;
331
+ cursorField: string;
332
+ cursorFieldOrderOrientation: 'ASC' | 'DESC';
333
+ lastCursor?: string;
334
+ limit?: number;
290
335
  search?: {
291
- value: string;
292
336
  fields: (string | {
293
337
  field: string;
294
338
  ratio: number;
295
339
  })[];
296
- } | undefined;
297
- where?: ({
298
340
  value: string;
299
- type: "condition";
341
+ };
342
+ order?: {
343
+ field: string;
344
+ orientation: 'ASC' | 'DESC';
345
+ }[];
346
+ orderField: string;
347
+ orderFieldOrderOrientation: 'ASC' | 'DESC';
348
+ where?: [({
300
349
  field: string;
301
- op: "match" | "substring" | "endsWith" | "startsWith" | "values" | "col" | "adjacent" | "any" | "between" | "contained" | "contains" | "eq" | "gt" | "gte" | "iLike" | "in" | "iRegexp" | "is" | "like" | "lt" | "lte" | "ne" | "noExtendLeft" | "noExtendRight" | "not" | "notBetween" | "notILike" | "notIn" | "notIRegexp" | "notLike" | "notRegexp" | "overlap" | "placeholder" | "regexp" | "strictLeft" | "strictRight";
350
+ op: 'adjacent' | 'any' | 'between' | 'col' | 'contained' | 'contains' | 'endsWith' | 'eq' | 'gt' | 'gte' | 'iLike' | 'in' | 'iRegexp' | 'is' | 'like' | 'lt' | 'lte' | 'match' | 'ne' | 'noExtendLeft' | 'noExtendRight' | 'not' | 'notBetween' | 'notILike' | 'notIn' | 'notIRegexp' | 'notLike' | 'notRegexp' | 'overlap' | 'placeholder' | 'regexp' | 'startsWith' | 'strictLeft' | 'strictRight' | 'substring' | 'values';
351
+ type: 'condition';
352
+ value: string;
302
353
  } | {
303
- type: "literal";
304
354
  literal: string;
305
- params?: any[] | undefined;
306
- })[][] | undefined;
307
- userId?: string | undefined;
308
- lastCursor?: string | undefined;
309
- limit?: number | undefined;
310
- cursorField?: string | undefined;
311
- cursorFieldOrderOrientation?: "ASC" | "DESC" | undefined;
312
- order?: {
355
+ params?: any[];
356
+ type: 'literal';
357
+ }), ...({
313
358
  field: string;
314
- orientation: "ASC" | "DESC";
315
- }[] | undefined;
316
- orderField?: string | undefined;
317
- orderFieldOrderOrientation?: "ASC" | "DESC" | undefined;
359
+ op: 'adjacent' | 'any' | 'between' | 'col' | 'contained' | 'contains' | 'endsWith' | 'eq' | 'gt' | 'gte' | 'iLike' | 'in' | 'iRegexp' | 'is' | 'like' | 'lt' | 'lte' | 'match' | 'ne' | 'noExtendLeft' | 'noExtendRight' | 'not' | 'notBetween' | 'notILike' | 'notIn' | 'notIRegexp' | 'notLike' | 'notRegexp' | 'overlap' | 'placeholder' | 'regexp' | 'startsWith' | 'strictLeft' | 'strictRight' | 'substring' | 'values';
360
+ type: 'condition';
361
+ value: string;
362
+ } | {
363
+ literal: string;
364
+ params?: any[];
365
+ type: 'literal';
366
+ })[]][];
367
+ applicationId: string;
368
+ userId?: string;
318
369
  };
319
370
  response: {
320
371
  data: {
321
- id: string;
322
- expirationTime: string | null;
323
- userApplicationRelationId: string;
324
- deprecated: boolean;
325
- createdAt?: string | null | undefined;
326
- updatedAt?: string | null | undefined;
327
- userApplicationRelation?: {
328
- id: string;
329
- applicationId: string;
330
- banned: boolean;
331
- userId: string;
332
- createdAt?: string | null | undefined;
333
- updatedAt?: string | null | undefined;
334
- application?: {
335
- brandImageUrl: string;
336
- redirectUrlPattern: string;
337
- title: string;
372
+ hasNext: boolean;
373
+ nextCursor: string | null;
374
+ previousCursor: string | null;
375
+ data: {
376
+ deprecated: boolean;
377
+ expirationTime: string | null;
378
+ userApplicationRelation?: {
379
+ application?: {
380
+ authCodeExpirationMinutes: number;
381
+ brandImageUrl: string;
382
+ redirectUrlPattern: string;
383
+ secretValue?: string | null;
384
+ title: string;
385
+ tokenExpirationDays: number;
386
+ id: string;
387
+ createdAt?: string | null;
388
+ updatedAt?: string | null;
389
+ } | null;
390
+ applicationId: string;
391
+ banned: boolean;
392
+ nickName?: string | null;
393
+ userId: string;
338
394
  id: string;
339
- createdAt?: string | null | undefined;
340
- updatedAt?: string | null | undefined;
341
- authCodeExpirationMinutes?: number | undefined;
342
- secretValue?: string | null | undefined;
343
- tokenExpirationDays?: number | undefined;
344
- } | null | undefined;
345
- nickName?: string | null | undefined;
346
- } | null | undefined;
347
- }[];
348
- hasNext: boolean;
349
- nextCursor: string | null;
350
- previousCursor: string | null;
395
+ createdAt?: string | null;
396
+ updatedAt?: string | null;
397
+ } | null;
398
+ userApplicationRelationId: string;
399
+ id: string;
400
+ createdAt?: string | null;
401
+ updatedAt?: string | null;
402
+ }[];
403
+ };
404
+ token: string | null;
351
405
  };
352
406
  };
353
407
  '/user/getDetail': {
@@ -355,195 +409,196 @@ export interface MethodTypeMap {
355
409
  id: string;
356
410
  };
357
411
  response: {
358
- id: string;
359
- email: string;
360
- createdAt?: string | null | undefined;
361
- updatedAt?: string | null | undefined;
362
- name?: string | null | undefined;
363
- applicationRelations?: {
364
- id: string;
365
- applicationId: string;
366
- banned: boolean;
367
- userId: string;
368
- createdAt?: string | null | undefined;
369
- updatedAt?: string | null | undefined;
370
- application?: {
371
- brandImageUrl: string;
372
- redirectUrlPattern: string;
373
- title: string;
412
+ data: {
413
+ applicationRelations?: {
414
+ application?: {
415
+ authCodeExpirationMinutes: number;
416
+ brandImageUrl: string;
417
+ redirectUrlPattern: string;
418
+ secretValue?: string | null;
419
+ title: string;
420
+ tokenExpirationDays: number;
421
+ id: string;
422
+ createdAt?: string | null;
423
+ updatedAt?: string | null;
424
+ } | null;
425
+ applicationId: string;
426
+ banned: boolean;
427
+ nickName?: string | null;
428
+ userId: string;
374
429
  id: string;
375
- createdAt?: string | null | undefined;
376
- updatedAt?: string | null | undefined;
377
- authCodeExpirationMinutes?: number | undefined;
378
- secretValue?: string | null | undefined;
379
- tokenExpirationDays?: number | undefined;
380
- } | null | undefined;
381
- nickName?: string | null | undefined;
382
- }[] | null | undefined;
383
- birth?: string | null | undefined;
384
- imageUrl?: string | null | undefined;
430
+ createdAt?: string | null;
431
+ updatedAt?: string | null;
432
+ }[] | null;
433
+ birth?: string | null;
434
+ email: string;
435
+ imageUrl?: string | null;
436
+ name?: string | null;
437
+ id: string;
438
+ createdAt?: string | null;
439
+ updatedAt?: string | null;
440
+ };
441
+ token: string | null;
385
442
  };
386
443
  };
387
444
  '/user/update': {
388
445
  request: {
446
+ birth?: string | null;
389
447
  email: string;
390
- name?: string | null | undefined;
391
- createdAt?: string | null | undefined;
392
- updatedAt?: string | null | undefined;
393
- birth?: string | null | undefined;
394
- applicationRelations?: {
395
- id: string;
396
- applicationId: string;
397
- banned: boolean;
398
- userId: string;
399
- createdAt?: string | null | undefined;
400
- updatedAt?: string | null | undefined;
401
- application?: {
402
- brandImageUrl: string;
403
- redirectUrlPattern: string;
404
- title: string;
405
- id: string;
406
- createdAt?: string | null | undefined;
407
- updatedAt?: string | null | undefined;
408
- authCodeExpirationMinutes?: number | undefined;
409
- secretValue?: string | null | undefined;
410
- tokenExpirationDays?: number | undefined;
411
- } | null | undefined;
412
- nickName?: string | null | undefined;
413
- }[] | null | undefined;
414
- id?: string | undefined;
415
- imageUrl?: string | null | undefined;
448
+ imageUrl?: string | null;
449
+ name?: string | null;
450
+ id?: string;
451
+ createdAt?: string | null;
452
+ updatedAt?: string | null;
416
453
  };
417
454
  response: {
418
- id: string;
419
- email: string;
420
- createdAt?: string | null | undefined;
421
- updatedAt?: string | null | undefined;
422
- name?: string | null | undefined;
423
- applicationRelations?: {
424
- id: string;
425
- applicationId: string;
426
- banned: boolean;
427
- userId: string;
428
- createdAt?: string | null | undefined;
429
- updatedAt?: string | null | undefined;
430
- application?: {
431
- brandImageUrl: string;
432
- redirectUrlPattern: string;
433
- title: string;
455
+ data: {
456
+ applicationRelations?: {
457
+ application?: {
458
+ authCodeExpirationMinutes: number;
459
+ brandImageUrl: string;
460
+ redirectUrlPattern: string;
461
+ secretValue?: string | null;
462
+ title: string;
463
+ tokenExpirationDays: number;
464
+ id: string;
465
+ createdAt?: string | null;
466
+ updatedAt?: string | null;
467
+ } | null;
468
+ applicationId: string;
469
+ banned: boolean;
470
+ nickName?: string | null;
471
+ userId: string;
434
472
  id: string;
435
- createdAt?: string | null | undefined;
436
- updatedAt?: string | null | undefined;
437
- authCodeExpirationMinutes?: number | undefined;
438
- secretValue?: string | null | undefined;
439
- tokenExpirationDays?: number | undefined;
440
- } | null | undefined;
441
- nickName?: string | null | undefined;
442
- }[] | null | undefined;
443
- birth?: string | null | undefined;
444
- imageUrl?: string | null | undefined;
473
+ createdAt?: string | null;
474
+ updatedAt?: string | null;
475
+ }[] | null;
476
+ birth?: string | null;
477
+ email: string;
478
+ imageUrl?: string | null;
479
+ name?: string | null;
480
+ id: string;
481
+ createdAt?: string | null;
482
+ updatedAt?: string | null;
483
+ };
484
+ token: string | null;
445
485
  };
446
486
  };
447
487
  '/user/updatePassword': {
448
488
  request: {
489
+ originalPassword?: string;
449
490
  password: string;
450
491
  userId: string;
451
- originalPassword?: string | undefined;
452
492
  };
453
493
  response: {
454
- id: string;
455
- email: string;
456
- createdAt?: string | null | undefined;
457
- updatedAt?: string | null | undefined;
458
- name?: string | null | undefined;
459
- applicationRelations?: {
460
- id: string;
461
- applicationId: string;
462
- banned: boolean;
463
- userId: string;
464
- createdAt?: string | null | undefined;
465
- updatedAt?: string | null | undefined;
466
- application?: {
467
- brandImageUrl: string;
468
- redirectUrlPattern: string;
469
- title: string;
494
+ data: {
495
+ applicationRelations?: {
496
+ application?: {
497
+ authCodeExpirationMinutes: number;
498
+ brandImageUrl: string;
499
+ redirectUrlPattern: string;
500
+ secretValue?: string | null;
501
+ title: string;
502
+ tokenExpirationDays: number;
503
+ id: string;
504
+ createdAt?: string | null;
505
+ updatedAt?: string | null;
506
+ } | null;
507
+ applicationId: string;
508
+ banned: boolean;
509
+ nickName?: string | null;
510
+ userId: string;
470
511
  id: string;
471
- createdAt?: string | null | undefined;
472
- updatedAt?: string | null | undefined;
473
- authCodeExpirationMinutes?: number | undefined;
474
- secretValue?: string | null | undefined;
475
- tokenExpirationDays?: number | undefined;
476
- } | null | undefined;
477
- nickName?: string | null | undefined;
478
- }[] | null | undefined;
479
- birth?: string | null | undefined;
480
- imageUrl?: string | null | undefined;
512
+ createdAt?: string | null;
513
+ updatedAt?: string | null;
514
+ }[] | null;
515
+ birth?: string | null;
516
+ email: string;
517
+ imageUrl?: string | null;
518
+ name?: string | null;
519
+ id: string;
520
+ createdAt?: string | null;
521
+ updatedAt?: string | null;
522
+ };
523
+ token: string | null;
481
524
  };
482
525
  };
483
526
  '/user/list': {
484
527
  request: {
528
+ cursorField: string;
529
+ cursorFieldOrderOrientation: 'ASC' | 'DESC';
530
+ lastCursor?: string;
531
+ limit?: number;
485
532
  search?: {
486
- value: string;
487
533
  fields: (string | {
488
534
  field: string;
489
535
  ratio: number;
490
536
  })[];
491
- } | undefined;
492
- where?: ({
493
537
  value: string;
494
- type: "condition";
538
+ };
539
+ order?: {
540
+ field: string;
541
+ orientation: 'ASC' | 'DESC';
542
+ }[];
543
+ orderField: string;
544
+ orderFieldOrderOrientation: 'ASC' | 'DESC';
545
+ where?: [({
495
546
  field: string;
496
- op: "match" | "substring" | "endsWith" | "startsWith" | "values" | "col" | "adjacent" | "any" | "between" | "contained" | "contains" | "eq" | "gt" | "gte" | "iLike" | "in" | "iRegexp" | "is" | "like" | "lt" | "lte" | "ne" | "noExtendLeft" | "noExtendRight" | "not" | "notBetween" | "notILike" | "notIn" | "notIRegexp" | "notLike" | "notRegexp" | "overlap" | "placeholder" | "regexp" | "strictLeft" | "strictRight";
547
+ op: 'adjacent' | 'any' | 'between' | 'col' | 'contained' | 'contains' | 'endsWith' | 'eq' | 'gt' | 'gte' | 'iLike' | 'in' | 'iRegexp' | 'is' | 'like' | 'lt' | 'lte' | 'match' | 'ne' | 'noExtendLeft' | 'noExtendRight' | 'not' | 'notBetween' | 'notILike' | 'notIn' | 'notIRegexp' | 'notLike' | 'notRegexp' | 'overlap' | 'placeholder' | 'regexp' | 'startsWith' | 'strictLeft' | 'strictRight' | 'substring' | 'values';
548
+ type: 'condition';
549
+ value: string;
497
550
  } | {
498
- type: "literal";
499
551
  literal: string;
500
- params?: any[] | undefined;
501
- })[][] | undefined;
502
- applicationId?: string | undefined;
503
- lastCursor?: string | undefined;
504
- limit?: number | undefined;
505
- cursorField?: string | undefined;
506
- cursorFieldOrderOrientation?: "ASC" | "DESC" | undefined;
507
- order?: {
552
+ params?: any[];
553
+ type: 'literal';
554
+ }), ...({
508
555
  field: string;
509
- orientation: "ASC" | "DESC";
510
- }[] | undefined;
511
- orderField?: string | undefined;
512
- orderFieldOrderOrientation?: "ASC" | "DESC" | undefined;
556
+ op: 'adjacent' | 'any' | 'between' | 'col' | 'contained' | 'contains' | 'endsWith' | 'eq' | 'gt' | 'gte' | 'iLike' | 'in' | 'iRegexp' | 'is' | 'like' | 'lt' | 'lte' | 'match' | 'ne' | 'noExtendLeft' | 'noExtendRight' | 'not' | 'notBetween' | 'notILike' | 'notIn' | 'notIRegexp' | 'notLike' | 'notRegexp' | 'overlap' | 'placeholder' | 'regexp' | 'startsWith' | 'strictLeft' | 'strictRight' | 'substring' | 'values';
557
+ type: 'condition';
558
+ value: string;
559
+ } | {
560
+ literal: string;
561
+ params?: any[];
562
+ type: 'literal';
563
+ })[]][];
564
+ applicationId?: string;
513
565
  };
514
566
  response: {
515
567
  data: {
516
- id: string;
517
- email: string;
518
- createdAt?: string | null | undefined;
519
- updatedAt?: string | null | undefined;
520
- name?: string | null | undefined;
521
- applicationRelations?: {
522
- id: string;
523
- applicationId: string;
524
- banned: boolean;
525
- userId: string;
526
- createdAt?: string | null | undefined;
527
- updatedAt?: string | null | undefined;
528
- application?: {
529
- brandImageUrl: string;
530
- redirectUrlPattern: string;
531
- title: string;
568
+ hasNext: boolean;
569
+ nextCursor: string | null;
570
+ previousCursor: string | null;
571
+ data: {
572
+ applicationRelations?: {
573
+ application?: {
574
+ authCodeExpirationMinutes: number;
575
+ brandImageUrl: string;
576
+ redirectUrlPattern: string;
577
+ secretValue?: string | null;
578
+ title: string;
579
+ tokenExpirationDays: number;
580
+ id: string;
581
+ createdAt?: string | null;
582
+ updatedAt?: string | null;
583
+ } | null;
584
+ applicationId: string;
585
+ banned: boolean;
586
+ nickName?: string | null;
587
+ userId: string;
532
588
  id: string;
533
- createdAt?: string | null | undefined;
534
- updatedAt?: string | null | undefined;
535
- authCodeExpirationMinutes?: number | undefined;
536
- secretValue?: string | null | undefined;
537
- tokenExpirationDays?: number | undefined;
538
- } | null | undefined;
539
- nickName?: string | null | undefined;
540
- }[] | null | undefined;
541
- birth?: string | null | undefined;
542
- imageUrl?: string | null | undefined;
543
- }[];
544
- hasNext: boolean;
545
- nextCursor: string | null;
546
- previousCursor: string | null;
589
+ createdAt?: string | null;
590
+ updatedAt?: string | null;
591
+ }[] | null;
592
+ birth?: string | null;
593
+ email: string;
594
+ imageUrl?: string | null;
595
+ name?: string | null;
596
+ id: string;
597
+ createdAt?: string | null;
598
+ updatedAt?: string | null;
599
+ }[];
600
+ };
601
+ token: string | null;
547
602
  };
548
603
  };
549
604
  '/mailer/send': {
@@ -557,31 +612,37 @@ export interface MethodTypeMap {
557
612
  };
558
613
  };
559
614
  response: {
560
- succeeded: boolean;
561
- id?: string | undefined;
562
- createdAt?: string | null | undefined;
563
- updatedAt?: string | null | undefined;
564
- content?: string | undefined;
615
+ data: {
616
+ succeeded: boolean;
617
+ content?: string;
618
+ id?: string;
619
+ createdAt?: string | null;
620
+ updatedAt?: string | null;
621
+ };
622
+ token: string | null;
565
623
  };
566
624
  };
567
625
  '/protector/createTask': {
568
626
  request: {
569
627
  files: {
570
- name: string;
571
628
  content: string;
629
+ name: string;
572
630
  }[];
573
631
  ivHex: string;
574
632
  keyHex: string;
575
633
  };
576
634
  response: {
577
- status: "RUNNING" | "SUCCEEDED" | "FAILED";
578
- id: string;
579
- endedAt: string | null;
580
- files: {
581
- pathname: string;
582
- base64Content: string;
583
- }[];
584
- startedAt: string;
635
+ data: {
636
+ id: string;
637
+ status: 'RUNNING' | 'SUCCEEDED' | 'FAILED';
638
+ files: {
639
+ pathname: string;
640
+ base64Content: string;
641
+ }[];
642
+ startedAt: string;
643
+ endedAt: string | null;
644
+ };
645
+ token: string | null;
585
646
  };
586
647
  };
587
648
  '/protector/getTask': {
@@ -589,25 +650,24 @@ export interface MethodTypeMap {
589
650
  id: string;
590
651
  };
591
652
  response: {
592
- status: "RUNNING" | "SUCCEEDED" | "FAILED";
593
- id: string;
594
- endedAt: string | null;
595
- files: {
596
- pathname: string;
597
- base64Content: string;
598
- }[];
599
- startedAt: string;
653
+ data: {
654
+ id: string;
655
+ status: 'RUNNING' | 'SUCCEEDED' | 'FAILED';
656
+ files: {
657
+ pathname: string;
658
+ base64Content: string;
659
+ }[];
660
+ startedAt: string;
661
+ endedAt: string | null;
662
+ };
663
+ token: string | null;
600
664
  };
601
665
  };
602
666
  }
603
667
  type MethodTypeMapKeys = keyof MethodTypeMap;
604
668
  type ResponseCallbackData<K extends MethodTypeMapKeys> = {
605
669
  url: K;
606
- result: Result<HttpResponseBody<MethodTypeMap[K]['response']>>;
607
- };
608
- export type HttpResponseBody<T> = {
609
- data: T;
610
- token: string | null;
670
+ result: Result<MethodTypeMap[K]['response']>;
611
671
  };
612
672
  export interface RequestOptions extends RequestInit {
613
673
  headers?: Record<string, any>;
@@ -637,7 +697,7 @@ export declare class Client {
637
697
  constructor(options?: RequestOptions);
638
698
  protected readonly REQUEST_METHOD_MAP: Map<keyof MethodTypeMap, (...params: any[]) => Promise<unknown>>;
639
699
  protected readonly RESPONSE_CACHE_MAP: Map<string, Result<unknown>>;
640
- createRequest<T extends keyof MethodTypeMap>(url: T): (requestBody?: MethodTypeMap[T]['request'], options?: RequestOptions) => Promise<Result<HttpResponseBody<MethodTypeMap[T]['response']>>>;
641
- request<T extends keyof MethodTypeMap>(url: T, requestBody?: MethodTypeMap[T]['request'], options?: Omit<RequestOptions, 'getAuthorizationCredential' | 'onRequest' | 'onResponse'>): Promise<Result<HttpResponseBody<MethodTypeMap[T]['response']>>>;
700
+ createRequest<T extends keyof MethodTypeMap>(url: T): (requestBody?: MethodTypeMap[T]['request'], options?: RequestOptions) => Promise<Result<MethodTypeMap[T]['response']>>;
701
+ request<T extends keyof MethodTypeMap>(url: T, requestBody?: MethodTypeMap[T]['request'], options?: Omit<RequestOptions, 'getAuthorizationCredential' | 'onRequest' | 'onResponse'>): Promise<Result<MethodTypeMap[T]['response']>>;
642
702
  }
643
703
  export {};
@@ -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.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.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/typescript/lib/lib.es2017.full.d.ts","../node_modules/@types/object-hash/index.d.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","../src/index.ts","../node_modules/@types/node/compatibility/disposable.d.ts","../node_modules/@types/node/compatibility/indexable.d.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/compatibility/index.d.ts","../node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/web-globals/abortcontroller.d.ts","../node_modules/@types/node/web-globals/domexception.d.ts","../node_modules/@types/node/web-globals/events.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/web-globals/fetch.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.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/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.generated.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/sea.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/ts5.6/index.d.ts"],"fileInfos":[{"version":"f59215c5f1d886b05395ee7aca73e0ac69ddfad2843aa88530e797879d511bad","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"3dda5344576193a4ae48b8d03f105c86f20b2f2aff0a1d1fd7935f5d68649654","affectsGlobalScope":true},{"version":"35299ae4a62086698444a5aaee27fc7aa377c68cbb90b441c9ace246ffd05c97","affectsGlobalScope":true},{"version":"c5c5565225fce2ede835725a92a28ece149f83542aa4866cfb10290bff7b8996","affectsGlobalScope":true},{"version":"7d2dbc2a0250400af0809b0ad5f84686e84c73526de931f84560e483eb16b03c","affectsGlobalScope":true},{"version":"9d9885c728913c1d16e0d2831b40341d6ad9a0ceecaabc55209b306ad9c736a5","affectsGlobalScope":true},{"version":"17bea081b9c0541f39dd1ae9bc8c78bdd561879a682e60e2f25f688c0ecab248","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","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":"f06948deb2a51aae25184561c9640fb66afeddb34531a9212d011792b1d19e0a","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":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"994c234848afc14a2586b6565777f4c0b05dc479ede0a041bfd5becf6dceb586","355fed2467fbcdb0e4004a9fcdf0201d6d15ad68bc90160a12b56e9fcf945d11","380b919bfa0516118edaf25b99e45f855e7bc3fd75ce4163a1cfe4a666388804","40de86ced5175a6ffe84a52abe6ac59ac0efbc604a5975a8c6476c3ddc682ff1","fcf79300e5257a23ed3bacaa6861d7c645139c6f7ece134d15e6669447e5e6db","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","aa2c18a1b5a086bbcaae10a4efba409cc95ba7287d8cf8f2591b53704fea3dea","5a0b15210129310cee9fa6af9200714bb4b12af4a04d890e15f34dbea1cf1852","0244119dbcbcf34faf3ffdae72dab1e9bc2bc9efc3c477b2240ffa94af3bca56","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","a873c50d3e47c21aa09fbe1e2023d9a44efb07cc0cb8c72f418bf301b0771fd3","7c14ccd2eaa82619fffc1bfa877eb68a012e9fb723d07ee98db451fadb618906","49c36529ee09ea9ce19525af5bb84985ea8e782cb7ee8c493d9e36d027a3d019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd",{"version":"2bababba650f4480a0307a7d3dc7663db19f64f90485043bf7f345099003b1bc","signature":"a9e396f1e5da6c3e6ebe4543b17e707c81ccbf30163f290ca5917500274cbc8b"},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true},"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a",{"version":"1456e80bd8a3870034d89f91bd7df12ac29acfb083e31c0bb1fb38ca7bf5fbc2","affectsGlobalScope":true},{"version":"a98aedd64ad81793f146d36d1611ed9ba61b8b49ff040f0d13a103ed626595d9","affectsGlobalScope":true},{"version":"6d9ef24f9a22a88e3e9b3b3d8c40ab1ddb0853f1bfbd5c843c37800138437b61","affectsGlobalScope":true},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true},"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107",{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true},"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f",{"version":"8cd19276b6590b3ebbeeb030ac271871b9ed0afc3074ac88a94ed2449174b776","affectsGlobalScope":true},"696eb8d28f5949b87d894b26dc97318ef944c794a9a4e4f62360cd1d1958014b","3f8fa3061bd7402970b399300880d55257953ee6d3cd408722cb9ac20126460c",{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true},"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a",{"version":"68bd56c92c2bd7d2339457eb84d63e7de3bd56a69b25f3576e1568d21a162398","affectsGlobalScope":true},"3e93b123f7c2944969d291b35fed2af79a6e9e27fdd5faa99748a51c07c02d28","9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","87aad3dd9752067dc875cfaa466fc44246451c0c560b820796bdd528e29bef40","4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45",{"version":"8db0ae9cb14d9955b14c214f34dae1b9ef2baee2fe4ce794a4cd3ac2531e3255","affectsGlobalScope":true},"15fc6f7512c86810273af28f224251a5a879e4261b4d4c7e532abfbfc3983134","58adba1a8ab2d10b54dc1dced4e41f4e7c9772cbbac40939c0dc8ce2cdb1d442","641942a78f9063caa5d6b777c99304b7d1dc7328076038c6d94d8a0b81fc95c1","714435130b9015fae551788df2a88038471a5a11eb471f27c4ede86552842bc9","855cd5f7eb396f5f1ab1bc0f8580339bff77b68a770f84c6b254e319bbfd1ac7","5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86",{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true},"7e20d899c28ca26a2a7afc98beaa69e63ff7fba0a8bc47b4e3bf3ede5e09e424","2d2fcaab481b31a5882065c7951255703ddbe1c0e507af56ea42d79ac3911201","a192fe8ec33f75edbc8d8f3ed79f768dfae11ff5735e7fe52bfa69956e46d78d",{"version":"ca867399f7db82df981d6915bcbb2d81131d7d1ef683bc782b59f71dda59bc85","affectsGlobalScope":true},{"version":"372413016d17d804e1d139418aca0c68e47a83fb6669490857f4b318de8cccb3","affectsGlobalScope":true},"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","6e70e9570e98aae2b825b533aa6292b6abd542e8d9f6e9475e88e1d7ba17c866","f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","085f552d005479e2e6a7311cdbbe5d8c55c497b4d19274285df161ee9684cd9c","37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee",{"version":"007faacc9268357caa21d24169f3f3f2497af3e9241308df2d89f6e6d9bb3f2e","affectsGlobalScope":true},"74cf591a0f63db318651e0e04cb55f8791385f86e987a67fd4d2eaab8191f730","5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5",{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true},"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","809821b8a065e3234a55b3a9d7846231ed18d66dd749f2494c66288d890daf7f","ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9",{"version":"c3b41e74b9a84b88b1dca61ec39eee25c0dbc8e7d519ba11bb070918cfacf656","affectsGlobalScope":true},{"version":"4737a9dc24d0e68b734e6cfbcea0c15a2cfafeb493485e27905f7856988c6b29","affectsGlobalScope":true},"36d8d3e7506b631c9582c251a2c0b8a28855af3f76719b12b534c6edf952748d","1ca69210cc42729e7ca97d3a9ad48f2e9cb0042bada4075b588ae5387debd318","f5ebe66baaf7c552cfa59d75f2bfba679f329204847db3cec385acda245e574e",{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","affectsGlobalScope":true},"b7c5e2ea4a9749097c347454805e933844ed207b6eefec6b7cfd418b5f5f7b28","0ea329e5eab6719ff83bcb97e8bd03f1faab4feb74704010783b881fc9d80f92"],"root":[62],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"emitDecoratorMetadata":true,"experimentalDecorators":true,"module":1,"noFallthroughCasesInSwitch":false,"noImplicitAny":false,"outDir":"./","removeComments":true,"skipLibCheck":true,"sourceMap":false,"strictBindCallApply":false,"strictNullChecks":true,"target":4},"fileIdsList":[[49,51,52,53,54,55,56,57,58,59,60,61,68,114],[49,50,52,53,54,55,56,57,58,59,60,61,68,114],[50,51,52,53,54,55,56,57,58,59,60,61,68,114],[49,50,51,53,54,55,56,57,58,59,60,61,68,114],[49,50,51,52,54,55,56,57,58,59,60,61,68,114],[49,50,51,52,53,55,56,57,58,59,60,61,68,114],[49,50,51,52,53,54,56,57,58,59,60,61,68,114],[49,50,51,52,53,54,55,57,58,59,60,61,68,114],[49,50,51,52,53,54,55,56,58,59,60,61,68,114],[49,50,51,52,53,54,55,56,57,59,60,61,68,114],[49,50,51,52,53,54,55,56,57,58,60,61,68,114],[49,50,51,52,53,54,55,56,57,58,59,61,68,114],[49,50,51,52,53,54,55,56,57,58,59,60,68,114],[68,111,114],[68,113,114],[68,114,119,147],[68,114,115,120,125,133,144,155],[68,114,115,116,125,133],[68,114],[63,64,65,68,114],[68,114,117,156],[68,114,118,119,126,134],[68,114,119,144,152],[68,114,120,122,125,133],[68,113,114,121],[68,114,122,123],[68,114,124,125],[68,113,114,125],[68,114,125,126,127,144,155],[68,114,125,126,127,140,144,147],[68,114,122,125,128,133,144,155],[68,114,125,126,128,129,133,144,152,155],[68,114,128,130,144,152,155],[68,114,125,131],[68,114,132,155,160],[68,114,122,125,133,144],[68,114,134],[68,114,135],[68,113,114,136],[68,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,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161],[68,114,138],[68,114,139],[68,114,125,140,141],[68,114,140,142,156,158],[68,114,125,144,145,147],[68,114,146,147],[68,114,144,145],[68,114,147],[68,114,148],[68,111,114,144,149],[68,114,125,150,151],[68,114,150,151],[68,114,119,133,144,152],[68,114,153],[114],[66,67,68,69,70,71,72,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,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161],[68,114,133,154],[68,114,128,139,155],[68,114,119,156],[68,114,144,157],[68,114,132,158],[68,114,159],[68,109,114],[68,109,114,125,127,136,144,147,155,158,160],[68,114,144,161],[68,81,85,114,155],[68,81,114,144,155],[68,76,114],[68,78,81,114,152,155],[68,114,133,152],[68,114,162],[68,76,114,162],[68,78,81,114,133,155],[68,73,74,77,80,114,125,144,155],[68,81,88,114],[68,73,79,114],[68,81,102,103,114],[68,77,81,114,147,155,162],[68,102,114,162],[68,75,76,114,162],[68,81,114],[68,75,76,77,78,79,80,81,82,83,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,114],[68,81,96,114],[68,81,88,89,114],[68,79,81,89,90,114],[68,80,114],[68,73,76,81,114],[68,81,85,89,90,114],[68,85,114],[68,79,81,84,114,155],[68,73,78,81,88,114],[68,114,144],[68,76,81,102,114,160,162],[48,61,68,114]],"referencedMap":[[50,1],[51,2],[49,3],[52,4],[53,5],[54,6],[55,7],[56,8],[57,9],[58,10],[59,11],[60,12],[61,13],[111,14],[112,14],[113,15],[114,16],[115,17],[116,18],[63,19],[66,20],[64,19],[65,19],[117,21],[118,22],[119,23],[120,24],[121,25],[122,26],[123,26],[124,27],[125,28],[126,29],[127,30],[69,19],[128,31],[129,32],[130,33],[131,34],[132,35],[133,36],[134,37],[135,38],[136,39],[137,40],[138,41],[139,42],[140,43],[141,43],[142,44],[143,19],[144,45],[146,46],[145,47],[147,48],[148,49],[149,50],[150,51],[151,52],[152,53],[153,54],[68,55],[67,19],[162,56],[154,57],[155,58],[156,59],[157,60],[158,61],[159,62],[70,19],[71,19],[72,19],[110,63],[160,64],[161,65],[48,19],[45,19],[46,19],[8,19],[9,19],[13,19],[12,19],[2,19],[14,19],[15,19],[16,19],[17,19],[18,19],[19,19],[20,19],[21,19],[3,19],[4,19],[47,19],[25,19],[22,19],[23,19],[24,19],[26,19],[27,19],[28,19],[5,19],[29,19],[30,19],[31,19],[32,19],[6,19],[36,19],[33,19],[34,19],[35,19],[37,19],[7,19],[38,19],[43,19],[44,19],[39,19],[40,19],[41,19],[42,19],[1,19],[11,19],[10,19],[88,66],[98,67],[87,66],[108,68],[79,69],[78,70],[107,71],[101,72],[106,73],[81,74],[95,75],[80,76],[104,77],[76,78],[75,71],[105,79],[77,80],[82,81],[83,19],[86,81],[73,19],[109,82],[99,83],[90,84],[91,85],[93,86],[89,87],[92,88],[102,71],[84,89],[85,90],[94,91],[74,92],[97,83],[96,81],[100,19],[103,93],[62,94]],"exportedModulesMap":[[50,1],[51,2],[49,3],[52,4],[53,5],[54,6],[55,7],[56,8],[57,9],[58,10],[59,11],[60,12],[61,13],[111,14],[112,14],[113,15],[114,16],[115,17],[116,18],[63,19],[66,20],[64,19],[65,19],[117,21],[118,22],[119,23],[120,24],[121,25],[122,26],[123,26],[124,27],[125,28],[126,29],[127,30],[69,19],[128,31],[129,32],[130,33],[131,34],[132,35],[133,36],[134,37],[135,38],[136,39],[137,40],[138,41],[139,42],[140,43],[141,43],[142,44],[143,19],[144,45],[146,46],[145,47],[147,48],[148,49],[149,50],[150,51],[151,52],[152,53],[153,54],[68,55],[67,19],[162,56],[154,57],[155,58],[156,59],[157,60],[158,61],[159,62],[70,19],[71,19],[72,19],[110,63],[160,64],[161,65],[48,19],[45,19],[46,19],[8,19],[9,19],[13,19],[12,19],[2,19],[14,19],[15,19],[16,19],[17,19],[18,19],[19,19],[20,19],[21,19],[3,19],[4,19],[47,19],[25,19],[22,19],[23,19],[24,19],[26,19],[27,19],[28,19],[5,19],[29,19],[30,19],[31,19],[32,19],[6,19],[36,19],[33,19],[34,19],[35,19],[37,19],[7,19],[38,19],[43,19],[44,19],[39,19],[40,19],[41,19],[42,19],[1,19],[11,19],[10,19],[88,66],[98,67],[87,66],[108,68],[79,69],[78,70],[107,71],[101,72],[106,73],[81,74],[95,75],[80,76],[104,77],[76,78],[75,71],[105,79],[77,80],[82,81],[83,19],[86,81],[73,19],[109,82],[99,83],[90,84],[91,85],[93,86],[89,87],[92,88],[102,71],[84,89],[85,90],[94,91],[74,92],[97,83],[96,81],[100,19],[103,93]],"semanticDiagnosticsPerFile":[50,51,49,52,53,54,55,56,57,58,59,60,61,111,112,113,114,115,116,63,66,64,65,117,118,119,120,121,122,123,124,125,126,127,69,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,146,145,147,148,149,150,151,152,153,68,67,162,154,155,156,157,158,159,70,71,72,110,160,161,48,45,46,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,47,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,1,11,10,88,98,87,108,79,78,107,101,106,81,95,80,104,76,75,105,77,82,83,86,73,109,99,90,91,93,89,92,102,84,85,94,74,97,96,100,103,62]},"version":"5.1.3"}
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.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.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/typescript/lib/lib.es2017.full.d.ts","../node_modules/@types/object-hash/index.d.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","../src/index.ts","../node_modules/@types/node/compatibility/disposable.d.ts","../node_modules/@types/node/compatibility/indexable.d.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/compatibility/index.d.ts","../node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/web-globals/abortcontroller.d.ts","../node_modules/@types/node/web-globals/domexception.d.ts","../node_modules/@types/node/web-globals/events.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/web-globals/fetch.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.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/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.generated.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/sea.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/ts5.6/index.d.ts"],"fileInfos":[{"version":"f59215c5f1d886b05395ee7aca73e0ac69ddfad2843aa88530e797879d511bad","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"3dda5344576193a4ae48b8d03f105c86f20b2f2aff0a1d1fd7935f5d68649654","affectsGlobalScope":true},{"version":"35299ae4a62086698444a5aaee27fc7aa377c68cbb90b441c9ace246ffd05c97","affectsGlobalScope":true},{"version":"c5c5565225fce2ede835725a92a28ece149f83542aa4866cfb10290bff7b8996","affectsGlobalScope":true},{"version":"7d2dbc2a0250400af0809b0ad5f84686e84c73526de931f84560e483eb16b03c","affectsGlobalScope":true},{"version":"9d9885c728913c1d16e0d2831b40341d6ad9a0ceecaabc55209b306ad9c736a5","affectsGlobalScope":true},{"version":"17bea081b9c0541f39dd1ae9bc8c78bdd561879a682e60e2f25f688c0ecab248","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","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":"f06948deb2a51aae25184561c9640fb66afeddb34531a9212d011792b1d19e0a","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":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"994c234848afc14a2586b6565777f4c0b05dc479ede0a041bfd5becf6dceb586","355fed2467fbcdb0e4004a9fcdf0201d6d15ad68bc90160a12b56e9fcf945d11","380b919bfa0516118edaf25b99e45f855e7bc3fd75ce4163a1cfe4a666388804","40de86ced5175a6ffe84a52abe6ac59ac0efbc604a5975a8c6476c3ddc682ff1","fcf79300e5257a23ed3bacaa6861d7c645139c6f7ece134d15e6669447e5e6db","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","aa2c18a1b5a086bbcaae10a4efba409cc95ba7287d8cf8f2591b53704fea3dea","5a0b15210129310cee9fa6af9200714bb4b12af4a04d890e15f34dbea1cf1852","0244119dbcbcf34faf3ffdae72dab1e9bc2bc9efc3c477b2240ffa94af3bca56","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","a873c50d3e47c21aa09fbe1e2023d9a44efb07cc0cb8c72f418bf301b0771fd3","7c14ccd2eaa82619fffc1bfa877eb68a012e9fb723d07ee98db451fadb618906","49c36529ee09ea9ce19525af5bb84985ea8e782cb7ee8c493d9e36d027a3d019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd",{"version":"cdf0f58d8477ce8b2d9b5443a02d3c358361458e7fdeeea6f2104fc32c0e653e","signature":"dd4b9eec43b823162afbd93a0efaa27d73b1ac5340ece436d2a7597600f6220b"},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true},"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a",{"version":"1456e80bd8a3870034d89f91bd7df12ac29acfb083e31c0bb1fb38ca7bf5fbc2","affectsGlobalScope":true},{"version":"a98aedd64ad81793f146d36d1611ed9ba61b8b49ff040f0d13a103ed626595d9","affectsGlobalScope":true},{"version":"6d9ef24f9a22a88e3e9b3b3d8c40ab1ddb0853f1bfbd5c843c37800138437b61","affectsGlobalScope":true},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true},"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107",{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true},"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f",{"version":"8cd19276b6590b3ebbeeb030ac271871b9ed0afc3074ac88a94ed2449174b776","affectsGlobalScope":true},"696eb8d28f5949b87d894b26dc97318ef944c794a9a4e4f62360cd1d1958014b","3f8fa3061bd7402970b399300880d55257953ee6d3cd408722cb9ac20126460c",{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true},"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a",{"version":"68bd56c92c2bd7d2339457eb84d63e7de3bd56a69b25f3576e1568d21a162398","affectsGlobalScope":true},"3e93b123f7c2944969d291b35fed2af79a6e9e27fdd5faa99748a51c07c02d28","9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","87aad3dd9752067dc875cfaa466fc44246451c0c560b820796bdd528e29bef40","4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45",{"version":"8db0ae9cb14d9955b14c214f34dae1b9ef2baee2fe4ce794a4cd3ac2531e3255","affectsGlobalScope":true},"15fc6f7512c86810273af28f224251a5a879e4261b4d4c7e532abfbfc3983134","58adba1a8ab2d10b54dc1dced4e41f4e7c9772cbbac40939c0dc8ce2cdb1d442","641942a78f9063caa5d6b777c99304b7d1dc7328076038c6d94d8a0b81fc95c1","714435130b9015fae551788df2a88038471a5a11eb471f27c4ede86552842bc9","855cd5f7eb396f5f1ab1bc0f8580339bff77b68a770f84c6b254e319bbfd1ac7","5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86",{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true},"7e20d899c28ca26a2a7afc98beaa69e63ff7fba0a8bc47b4e3bf3ede5e09e424","2d2fcaab481b31a5882065c7951255703ddbe1c0e507af56ea42d79ac3911201","a192fe8ec33f75edbc8d8f3ed79f768dfae11ff5735e7fe52bfa69956e46d78d",{"version":"ca867399f7db82df981d6915bcbb2d81131d7d1ef683bc782b59f71dda59bc85","affectsGlobalScope":true},{"version":"372413016d17d804e1d139418aca0c68e47a83fb6669490857f4b318de8cccb3","affectsGlobalScope":true},"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","6e70e9570e98aae2b825b533aa6292b6abd542e8d9f6e9475e88e1d7ba17c866","f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","085f552d005479e2e6a7311cdbbe5d8c55c497b4d19274285df161ee9684cd9c","37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee",{"version":"007faacc9268357caa21d24169f3f3f2497af3e9241308df2d89f6e6d9bb3f2e","affectsGlobalScope":true},"74cf591a0f63db318651e0e04cb55f8791385f86e987a67fd4d2eaab8191f730","5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5",{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true},"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","809821b8a065e3234a55b3a9d7846231ed18d66dd749f2494c66288d890daf7f","ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9",{"version":"c3b41e74b9a84b88b1dca61ec39eee25c0dbc8e7d519ba11bb070918cfacf656","affectsGlobalScope":true},{"version":"4737a9dc24d0e68b734e6cfbcea0c15a2cfafeb493485e27905f7856988c6b29","affectsGlobalScope":true},"36d8d3e7506b631c9582c251a2c0b8a28855af3f76719b12b534c6edf952748d","1ca69210cc42729e7ca97d3a9ad48f2e9cb0042bada4075b588ae5387debd318","f5ebe66baaf7c552cfa59d75f2bfba679f329204847db3cec385acda245e574e",{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","affectsGlobalScope":true},"b7c5e2ea4a9749097c347454805e933844ed207b6eefec6b7cfd418b5f5f7b28","0ea329e5eab6719ff83bcb97e8bd03f1faab4feb74704010783b881fc9d80f92"],"root":[62],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"emitDecoratorMetadata":true,"experimentalDecorators":true,"module":1,"noFallthroughCasesInSwitch":false,"noImplicitAny":false,"outDir":"./","removeComments":true,"skipLibCheck":true,"sourceMap":false,"strictBindCallApply":false,"strictNullChecks":true,"target":4},"fileIdsList":[[49,51,52,53,54,55,56,57,58,59,60,61,68,114],[49,50,52,53,54,55,56,57,58,59,60,61,68,114],[50,51,52,53,54,55,56,57,58,59,60,61,68,114],[49,50,51,53,54,55,56,57,58,59,60,61,68,114],[49,50,51,52,54,55,56,57,58,59,60,61,68,114],[49,50,51,52,53,55,56,57,58,59,60,61,68,114],[49,50,51,52,53,54,56,57,58,59,60,61,68,114],[49,50,51,52,53,54,55,57,58,59,60,61,68,114],[49,50,51,52,53,54,55,56,58,59,60,61,68,114],[49,50,51,52,53,54,55,56,57,59,60,61,68,114],[49,50,51,52,53,54,55,56,57,58,60,61,68,114],[49,50,51,52,53,54,55,56,57,58,59,61,68,114],[49,50,51,52,53,54,55,56,57,58,59,60,68,114],[68,111,114],[68,113,114],[68,114,119,147],[68,114,115,120,125,133,144,155],[68,114,115,116,125,133],[68,114],[63,64,65,68,114],[68,114,117,156],[68,114,118,119,126,134],[68,114,119,144,152],[68,114,120,122,125,133],[68,113,114,121],[68,114,122,123],[68,114,124,125],[68,113,114,125],[68,114,125,126,127,144,155],[68,114,125,126,127,140,144,147],[68,114,122,125,128,133,144,155],[68,114,125,126,128,129,133,144,152,155],[68,114,128,130,144,152,155],[68,114,125,131],[68,114,132,155,160],[68,114,122,125,133,144],[68,114,134],[68,114,135],[68,113,114,136],[68,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,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161],[68,114,138],[68,114,139],[68,114,125,140,141],[68,114,140,142,156,158],[68,114,125,144,145,147],[68,114,146,147],[68,114,144,145],[68,114,147],[68,114,148],[68,111,114,144,149],[68,114,125,150,151],[68,114,150,151],[68,114,119,133,144,152],[68,114,153],[114],[66,67,68,69,70,71,72,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,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161],[68,114,133,154],[68,114,128,139,155],[68,114,119,156],[68,114,144,157],[68,114,132,158],[68,114,159],[68,109,114],[68,109,114,125,127,136,144,147,155,158,160],[68,114,144,161],[68,81,85,114,155],[68,81,114,144,155],[68,76,114],[68,78,81,114,152,155],[68,114,133,152],[68,114,162],[68,76,114,162],[68,78,81,114,133,155],[68,73,74,77,80,114,125,144,155],[68,81,88,114],[68,73,79,114],[68,81,102,103,114],[68,77,81,114,147,155,162],[68,102,114,162],[68,75,76,114,162],[68,81,114],[68,75,76,77,78,79,80,81,82,83,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,114],[68,81,96,114],[68,81,88,89,114],[68,79,81,89,90,114],[68,80,114],[68,73,76,81,114],[68,81,85,89,90,114],[68,85,114],[68,79,81,84,114,155],[68,73,78,81,88,114],[68,114,144],[68,76,81,102,114,160,162],[48,61,68,114]],"referencedMap":[[50,1],[51,2],[49,3],[52,4],[53,5],[54,6],[55,7],[56,8],[57,9],[58,10],[59,11],[60,12],[61,13],[111,14],[112,14],[113,15],[114,16],[115,17],[116,18],[63,19],[66,20],[64,19],[65,19],[117,21],[118,22],[119,23],[120,24],[121,25],[122,26],[123,26],[124,27],[125,28],[126,29],[127,30],[69,19],[128,31],[129,32],[130,33],[131,34],[132,35],[133,36],[134,37],[135,38],[136,39],[137,40],[138,41],[139,42],[140,43],[141,43],[142,44],[143,19],[144,45],[146,46],[145,47],[147,48],[148,49],[149,50],[150,51],[151,52],[152,53],[153,54],[68,55],[67,19],[162,56],[154,57],[155,58],[156,59],[157,60],[158,61],[159,62],[70,19],[71,19],[72,19],[110,63],[160,64],[161,65],[48,19],[45,19],[46,19],[8,19],[9,19],[13,19],[12,19],[2,19],[14,19],[15,19],[16,19],[17,19],[18,19],[19,19],[20,19],[21,19],[3,19],[4,19],[47,19],[25,19],[22,19],[23,19],[24,19],[26,19],[27,19],[28,19],[5,19],[29,19],[30,19],[31,19],[32,19],[6,19],[36,19],[33,19],[34,19],[35,19],[37,19],[7,19],[38,19],[43,19],[44,19],[39,19],[40,19],[41,19],[42,19],[1,19],[11,19],[10,19],[88,66],[98,67],[87,66],[108,68],[79,69],[78,70],[107,71],[101,72],[106,73],[81,74],[95,75],[80,76],[104,77],[76,78],[75,71],[105,79],[77,80],[82,81],[83,19],[86,81],[73,19],[109,82],[99,83],[90,84],[91,85],[93,86],[89,87],[92,88],[102,71],[84,89],[85,90],[94,91],[74,92],[97,83],[96,81],[100,19],[103,93],[62,94]],"exportedModulesMap":[[50,1],[51,2],[49,3],[52,4],[53,5],[54,6],[55,7],[56,8],[57,9],[58,10],[59,11],[60,12],[61,13],[111,14],[112,14],[113,15],[114,16],[115,17],[116,18],[63,19],[66,20],[64,19],[65,19],[117,21],[118,22],[119,23],[120,24],[121,25],[122,26],[123,26],[124,27],[125,28],[126,29],[127,30],[69,19],[128,31],[129,32],[130,33],[131,34],[132,35],[133,36],[134,37],[135,38],[136,39],[137,40],[138,41],[139,42],[140,43],[141,43],[142,44],[143,19],[144,45],[146,46],[145,47],[147,48],[148,49],[149,50],[150,51],[151,52],[152,53],[153,54],[68,55],[67,19],[162,56],[154,57],[155,58],[156,59],[157,60],[158,61],[159,62],[70,19],[71,19],[72,19],[110,63],[160,64],[161,65],[48,19],[45,19],[46,19],[8,19],[9,19],[13,19],[12,19],[2,19],[14,19],[15,19],[16,19],[17,19],[18,19],[19,19],[20,19],[21,19],[3,19],[4,19],[47,19],[25,19],[22,19],[23,19],[24,19],[26,19],[27,19],[28,19],[5,19],[29,19],[30,19],[31,19],[32,19],[6,19],[36,19],[33,19],[34,19],[35,19],[37,19],[7,19],[38,19],[43,19],[44,19],[39,19],[40,19],[41,19],[42,19],[1,19],[11,19],[10,19],[88,66],[98,67],[87,66],[108,68],[79,69],[78,70],[107,71],[101,72],[106,73],[81,74],[95,75],[80,76],[104,77],[76,78],[75,71],[105,79],[77,80],[82,81],[83,19],[86,81],[73,19],[109,82],[99,83],[90,84],[91,85],[93,86],[89,87],[92,88],[102,71],[84,89],[85,90],[94,91],[74,92],[97,83],[96,81],[100,19],[103,93]],"semanticDiagnosticsPerFile":[50,51,49,52,53,54,55,56,57,58,59,60,61,111,112,113,114,115,116,63,66,64,65,117,118,119,120,121,122,123,124,125,126,127,69,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,146,145,147,148,149,150,151,152,153,68,67,162,154,155,156,157,158,159,70,71,72,110,160,161,48,45,46,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,47,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,1,11,10,88,98,87,108,79,78,107,101,106,81,95,80,104,76,75,105,77,82,83,86,73,109,99,90,91,93,89,92,102,84,85,94,74,97,96,100,103,62]},"version":"5.1.3"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-norantec/omni-sdk",
3
- "version": "1.0.15-beta.4",
3
+ "version": "1.0.15-beta.5",
4
4
  "scripts": {
5
5
  "build": "tsc"
6
6
  },