@ampsec/platform-client 87.3.0 → 87.5.0
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/build/src/dto/contexts.dto.d.ts +10 -10
- package/build/src/dto/flows.dto.d.ts +164 -0
- package/build/src/dto/flows.dto.js +3 -0
- package/build/src/dto/flows.dto.js.map +1 -1
- package/build/src/dto/index.d.ts +1 -0
- package/build/src/dto/index.js +1 -0
- package/build/src/dto/index.js.map +1 -1
- package/build/src/dto/platform/platform.contexts.dto.d.ts +8 -8
- package/build/src/dto/platform/platform.flows.dto.d.ts +94 -0
- package/build/src/dto/ruleSet.dto.d.ts +38 -0
- package/build/src/dto/ruleSet.dto.js +18 -0
- package/build/src/dto/ruleSet.dto.js.map +1 -0
- package/build/src/dto/rules.dto.d.ts +233 -16
- package/build/src/dto/rules.dto.js +69 -7
- package/build/src/dto/rules.dto.js.map +1 -1
- package/build/src/services/AmpApi.d.ts +4 -1
- package/build/src/services/AmpApi.js +4 -0
- package/build/src/services/AmpApi.js.map +1 -1
- package/build/src/services/AmpSdk.js +1 -1
- package/build/src/services/AmpSdk.js.map +1 -1
- package/build/src/services/tagSpecs.service.d.ts +17 -3
- package/build/src/services/tagSpecs.service.js +47 -1
- package/build/src/services/tagSpecs.service.js.map +1 -1
- package/package.json +1 -1
- package/src/dto/flows.dto.ts +3 -0
- package/src/dto/index.ts +1 -0
- package/src/dto/ruleSet.dto.ts +19 -0
- package/src/dto/rules.dto.ts +140 -7
- package/src/services/AmpApi.ts +7 -0
- package/src/services/AmpSdk.ts +2 -2
- package/src/services/tagSpecs.service.ts +60 -4
|
@@ -137,27 +137,33 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
|
|
|
137
137
|
actionId: z.ZodNullable<z.ZodString>;
|
|
138
138
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
|
|
139
139
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
140
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
140
141
|
}, "strip", z.ZodTypeAny, {
|
|
141
142
|
actionId: string | null;
|
|
142
143
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
143
144
|
responseMessage?: string | undefined;
|
|
145
|
+
actionDescriptionContext?: string | undefined;
|
|
144
146
|
}, {
|
|
145
147
|
actionId: string | null;
|
|
146
148
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
147
149
|
responseMessage?: string | undefined;
|
|
150
|
+
actionDescriptionContext?: string | undefined;
|
|
148
151
|
}>;
|
|
149
152
|
noAction: z.ZodObject<{
|
|
150
153
|
actionId: z.ZodNullable<z.ZodString>;
|
|
151
154
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
|
|
152
155
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
156
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
153
157
|
}, "strip", z.ZodTypeAny, {
|
|
154
158
|
actionId: string | null;
|
|
155
159
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
156
160
|
responseMessage?: string | undefined;
|
|
161
|
+
actionDescriptionContext?: string | undefined;
|
|
157
162
|
}, {
|
|
158
163
|
actionId: string | null;
|
|
159
164
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
160
165
|
responseMessage?: string | undefined;
|
|
166
|
+
actionDescriptionContext?: string | undefined;
|
|
161
167
|
}>;
|
|
162
168
|
}, "strip", z.ZodTypeAny, {
|
|
163
169
|
message: string;
|
|
@@ -165,11 +171,13 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
|
|
|
165
171
|
actionId: string | null;
|
|
166
172
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
167
173
|
responseMessage?: string | undefined;
|
|
174
|
+
actionDescriptionContext?: string | undefined;
|
|
168
175
|
};
|
|
169
176
|
noAction: {
|
|
170
177
|
actionId: string | null;
|
|
171
178
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
172
179
|
responseMessage?: string | undefined;
|
|
180
|
+
actionDescriptionContext?: string | undefined;
|
|
173
181
|
};
|
|
174
182
|
}, {
|
|
175
183
|
message: string;
|
|
@@ -177,11 +185,13 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
|
|
|
177
185
|
actionId: string | null;
|
|
178
186
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
179
187
|
responseMessage?: string | undefined;
|
|
188
|
+
actionDescriptionContext?: string | undefined;
|
|
180
189
|
};
|
|
181
190
|
noAction: {
|
|
182
191
|
actionId: string | null;
|
|
183
192
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
184
193
|
responseMessage?: string | undefined;
|
|
194
|
+
actionDescriptionContext?: string | undefined;
|
|
185
195
|
};
|
|
186
196
|
}>>;
|
|
187
197
|
reminderInterval: z.ZodOptional<z.ZodObject<{
|
|
@@ -218,14 +228,17 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
|
|
|
218
228
|
actionId: z.ZodNullable<z.ZodString>;
|
|
219
229
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
|
|
220
230
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
231
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
221
232
|
}, "strip", z.ZodTypeAny, {
|
|
222
233
|
actionId: string | null;
|
|
223
234
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
224
235
|
responseMessage?: string | undefined;
|
|
236
|
+
actionDescriptionContext?: string | undefined;
|
|
225
237
|
}, {
|
|
226
238
|
actionId: string | null;
|
|
227
239
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
228
240
|
responseMessage?: string | undefined;
|
|
241
|
+
actionDescriptionContext?: string | undefined;
|
|
229
242
|
}>>;
|
|
230
243
|
simpleTriageYesActId: z.ZodOptional<z.ZodString>;
|
|
231
244
|
simpleTriageNoActId: z.ZodOptional<z.ZodString>;
|
|
@@ -234,40 +247,49 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
|
|
|
234
247
|
actionId: z.ZodNullable<z.ZodString>;
|
|
235
248
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
|
|
236
249
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
250
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
237
251
|
}, "strip", z.ZodTypeAny, {
|
|
238
252
|
actionId: string | null;
|
|
239
253
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
240
254
|
responseMessage?: string | undefined;
|
|
255
|
+
actionDescriptionContext?: string | undefined;
|
|
241
256
|
}, {
|
|
242
257
|
actionId: string | null;
|
|
243
258
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
244
259
|
responseMessage?: string | undefined;
|
|
260
|
+
actionDescriptionContext?: string | undefined;
|
|
245
261
|
}>>;
|
|
246
262
|
scheduleResolutionAction: z.ZodOptional<z.ZodObject<{
|
|
247
263
|
actionId: z.ZodNullable<z.ZodString>;
|
|
248
264
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
|
|
249
265
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
266
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
250
267
|
}, "strip", z.ZodTypeAny, {
|
|
251
268
|
actionId: string | null;
|
|
252
269
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
253
270
|
responseMessage?: string | undefined;
|
|
271
|
+
actionDescriptionContext?: string | undefined;
|
|
254
272
|
}, {
|
|
255
273
|
actionId: string | null;
|
|
256
274
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
257
275
|
responseMessage?: string | undefined;
|
|
276
|
+
actionDescriptionContext?: string | undefined;
|
|
258
277
|
}>>;
|
|
259
278
|
launchAction: z.ZodOptional<z.ZodObject<{
|
|
260
279
|
actionId: z.ZodNullable<z.ZodString>;
|
|
261
280
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
|
|
262
281
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
282
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
263
283
|
}, "strip", z.ZodTypeAny, {
|
|
264
284
|
actionId: string | null;
|
|
265
285
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
266
286
|
responseMessage?: string | undefined;
|
|
287
|
+
actionDescriptionContext?: string | undefined;
|
|
267
288
|
}, {
|
|
268
289
|
actionId: string | null;
|
|
269
290
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
270
291
|
responseMessage?: string | undefined;
|
|
292
|
+
actionDescriptionContext?: string | undefined;
|
|
271
293
|
}>>;
|
|
272
294
|
launchActionsV2: z.ZodOptional<z.ZodObject<{
|
|
273
295
|
id: z.ZodString;
|
|
@@ -331,6 +353,7 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
|
|
|
331
353
|
actionId: string | null;
|
|
332
354
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
333
355
|
responseMessage?: string | undefined;
|
|
356
|
+
actionDescriptionContext?: string | undefined;
|
|
334
357
|
} | undefined;
|
|
335
358
|
simpleTriageYesActId?: string | undefined;
|
|
336
359
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -339,16 +362,19 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
|
|
|
339
362
|
actionId: string | null;
|
|
340
363
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
341
364
|
responseMessage?: string | undefined;
|
|
365
|
+
actionDescriptionContext?: string | undefined;
|
|
342
366
|
} | undefined;
|
|
343
367
|
scheduleResolutionAction?: {
|
|
344
368
|
actionId: string | null;
|
|
345
369
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
346
370
|
responseMessage?: string | undefined;
|
|
371
|
+
actionDescriptionContext?: string | undefined;
|
|
347
372
|
} | undefined;
|
|
348
373
|
launchAction?: {
|
|
349
374
|
actionId: string | null;
|
|
350
375
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
351
376
|
responseMessage?: string | undefined;
|
|
377
|
+
actionDescriptionContext?: string | undefined;
|
|
352
378
|
} | undefined;
|
|
353
379
|
launchActionsV2?: {
|
|
354
380
|
id: string;
|
|
@@ -378,6 +404,7 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
|
|
|
378
404
|
actionId: string | null;
|
|
379
405
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
380
406
|
responseMessage?: string | undefined;
|
|
407
|
+
actionDescriptionContext?: string | undefined;
|
|
381
408
|
} | undefined;
|
|
382
409
|
simpleTriageYesActId?: string | undefined;
|
|
383
410
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -386,16 +413,19 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
|
|
|
386
413
|
actionId: string | null;
|
|
387
414
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
388
415
|
responseMessage?: string | undefined;
|
|
416
|
+
actionDescriptionContext?: string | undefined;
|
|
389
417
|
} | undefined;
|
|
390
418
|
scheduleResolutionAction?: {
|
|
391
419
|
actionId: string | null;
|
|
392
420
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
393
421
|
responseMessage?: string | undefined;
|
|
422
|
+
actionDescriptionContext?: string | undefined;
|
|
394
423
|
} | undefined;
|
|
395
424
|
launchAction?: {
|
|
396
425
|
actionId: string | null;
|
|
397
426
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
398
427
|
responseMessage?: string | undefined;
|
|
428
|
+
actionDescriptionContext?: string | undefined;
|
|
399
429
|
} | undefined;
|
|
400
430
|
launchActionsV2?: {
|
|
401
431
|
id: string;
|
|
@@ -759,6 +789,7 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
|
|
|
759
789
|
actionId: string | null;
|
|
760
790
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
761
791
|
responseMessage?: string | undefined;
|
|
792
|
+
actionDescriptionContext?: string | undefined;
|
|
762
793
|
} | undefined;
|
|
763
794
|
simpleTriageYesActId?: string | undefined;
|
|
764
795
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -767,16 +798,19 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
|
|
|
767
798
|
actionId: string | null;
|
|
768
799
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
769
800
|
responseMessage?: string | undefined;
|
|
801
|
+
actionDescriptionContext?: string | undefined;
|
|
770
802
|
} | undefined;
|
|
771
803
|
scheduleResolutionAction?: {
|
|
772
804
|
actionId: string | null;
|
|
773
805
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
774
806
|
responseMessage?: string | undefined;
|
|
807
|
+
actionDescriptionContext?: string | undefined;
|
|
775
808
|
} | undefined;
|
|
776
809
|
launchAction?: {
|
|
777
810
|
actionId: string | null;
|
|
778
811
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
779
812
|
responseMessage?: string | undefined;
|
|
813
|
+
actionDescriptionContext?: string | undefined;
|
|
780
814
|
} | undefined;
|
|
781
815
|
launchActionsV2?: {
|
|
782
816
|
id: string;
|
|
@@ -830,11 +864,13 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
|
|
|
830
864
|
actionId: string | null;
|
|
831
865
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
832
866
|
responseMessage?: string | undefined;
|
|
867
|
+
actionDescriptionContext?: string | undefined;
|
|
833
868
|
};
|
|
834
869
|
noAction: {
|
|
835
870
|
actionId: string | null;
|
|
836
871
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
837
872
|
responseMessage?: string | undefined;
|
|
873
|
+
actionDescriptionContext?: string | undefined;
|
|
838
874
|
};
|
|
839
875
|
} | undefined;
|
|
840
876
|
reminderInterval?: {
|
|
@@ -947,6 +983,7 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
|
|
|
947
983
|
actionId: string | null;
|
|
948
984
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
949
985
|
responseMessage?: string | undefined;
|
|
986
|
+
actionDescriptionContext?: string | undefined;
|
|
950
987
|
} | undefined;
|
|
951
988
|
simpleTriageYesActId?: string | undefined;
|
|
952
989
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -955,16 +992,19 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
|
|
|
955
992
|
actionId: string | null;
|
|
956
993
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
957
994
|
responseMessage?: string | undefined;
|
|
995
|
+
actionDescriptionContext?: string | undefined;
|
|
958
996
|
} | undefined;
|
|
959
997
|
scheduleResolutionAction?: {
|
|
960
998
|
actionId: string | null;
|
|
961
999
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
962
1000
|
responseMessage?: string | undefined;
|
|
1001
|
+
actionDescriptionContext?: string | undefined;
|
|
963
1002
|
} | undefined;
|
|
964
1003
|
launchAction?: {
|
|
965
1004
|
actionId: string | null;
|
|
966
1005
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
967
1006
|
responseMessage?: string | undefined;
|
|
1007
|
+
actionDescriptionContext?: string | undefined;
|
|
968
1008
|
} | undefined;
|
|
969
1009
|
launchActionsV2?: {
|
|
970
1010
|
id: string;
|
|
@@ -1019,11 +1059,13 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
|
|
|
1019
1059
|
actionId: string | null;
|
|
1020
1060
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1021
1061
|
responseMessage?: string | undefined;
|
|
1062
|
+
actionDescriptionContext?: string | undefined;
|
|
1022
1063
|
};
|
|
1023
1064
|
noAction: {
|
|
1024
1065
|
actionId: string | null;
|
|
1025
1066
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1026
1067
|
responseMessage?: string | undefined;
|
|
1068
|
+
actionDescriptionContext?: string | undefined;
|
|
1027
1069
|
};
|
|
1028
1070
|
} | undefined;
|
|
1029
1071
|
reminderInterval?: {
|
|
@@ -1233,27 +1275,33 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1233
1275
|
actionId: z.ZodNullable<z.ZodString>;
|
|
1234
1276
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
|
|
1235
1277
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
1278
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
1236
1279
|
}, "strip", z.ZodTypeAny, {
|
|
1237
1280
|
actionId: string | null;
|
|
1238
1281
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1239
1282
|
responseMessage?: string | undefined;
|
|
1283
|
+
actionDescriptionContext?: string | undefined;
|
|
1240
1284
|
}, {
|
|
1241
1285
|
actionId: string | null;
|
|
1242
1286
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1243
1287
|
responseMessage?: string | undefined;
|
|
1288
|
+
actionDescriptionContext?: string | undefined;
|
|
1244
1289
|
}>;
|
|
1245
1290
|
noAction: z.ZodObject<{
|
|
1246
1291
|
actionId: z.ZodNullable<z.ZodString>;
|
|
1247
1292
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
|
|
1248
1293
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
1294
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
1249
1295
|
}, "strip", z.ZodTypeAny, {
|
|
1250
1296
|
actionId: string | null;
|
|
1251
1297
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1252
1298
|
responseMessage?: string | undefined;
|
|
1299
|
+
actionDescriptionContext?: string | undefined;
|
|
1253
1300
|
}, {
|
|
1254
1301
|
actionId: string | null;
|
|
1255
1302
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1256
1303
|
responseMessage?: string | undefined;
|
|
1304
|
+
actionDescriptionContext?: string | undefined;
|
|
1257
1305
|
}>;
|
|
1258
1306
|
}, "strip", z.ZodTypeAny, {
|
|
1259
1307
|
message: string;
|
|
@@ -1261,11 +1309,13 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1261
1309
|
actionId: string | null;
|
|
1262
1310
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1263
1311
|
responseMessage?: string | undefined;
|
|
1312
|
+
actionDescriptionContext?: string | undefined;
|
|
1264
1313
|
};
|
|
1265
1314
|
noAction: {
|
|
1266
1315
|
actionId: string | null;
|
|
1267
1316
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1268
1317
|
responseMessage?: string | undefined;
|
|
1318
|
+
actionDescriptionContext?: string | undefined;
|
|
1269
1319
|
};
|
|
1270
1320
|
}, {
|
|
1271
1321
|
message: string;
|
|
@@ -1273,11 +1323,13 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1273
1323
|
actionId: string | null;
|
|
1274
1324
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1275
1325
|
responseMessage?: string | undefined;
|
|
1326
|
+
actionDescriptionContext?: string | undefined;
|
|
1276
1327
|
};
|
|
1277
1328
|
noAction: {
|
|
1278
1329
|
actionId: string | null;
|
|
1279
1330
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1280
1331
|
responseMessage?: string | undefined;
|
|
1332
|
+
actionDescriptionContext?: string | undefined;
|
|
1281
1333
|
};
|
|
1282
1334
|
}>>;
|
|
1283
1335
|
reminderInterval: z.ZodOptional<z.ZodObject<{
|
|
@@ -1314,14 +1366,17 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1314
1366
|
actionId: z.ZodNullable<z.ZodString>;
|
|
1315
1367
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
|
|
1316
1368
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
1369
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
1317
1370
|
}, "strip", z.ZodTypeAny, {
|
|
1318
1371
|
actionId: string | null;
|
|
1319
1372
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1320
1373
|
responseMessage?: string | undefined;
|
|
1374
|
+
actionDescriptionContext?: string | undefined;
|
|
1321
1375
|
}, {
|
|
1322
1376
|
actionId: string | null;
|
|
1323
1377
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1324
1378
|
responseMessage?: string | undefined;
|
|
1379
|
+
actionDescriptionContext?: string | undefined;
|
|
1325
1380
|
}>>;
|
|
1326
1381
|
simpleTriageYesActId: z.ZodOptional<z.ZodString>;
|
|
1327
1382
|
simpleTriageNoActId: z.ZodOptional<z.ZodString>;
|
|
@@ -1330,40 +1385,49 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1330
1385
|
actionId: z.ZodNullable<z.ZodString>;
|
|
1331
1386
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
|
|
1332
1387
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
1388
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
1333
1389
|
}, "strip", z.ZodTypeAny, {
|
|
1334
1390
|
actionId: string | null;
|
|
1335
1391
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1336
1392
|
responseMessage?: string | undefined;
|
|
1393
|
+
actionDescriptionContext?: string | undefined;
|
|
1337
1394
|
}, {
|
|
1338
1395
|
actionId: string | null;
|
|
1339
1396
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1340
1397
|
responseMessage?: string | undefined;
|
|
1398
|
+
actionDescriptionContext?: string | undefined;
|
|
1341
1399
|
}>>;
|
|
1342
1400
|
scheduleResolutionAction: z.ZodOptional<z.ZodObject<{
|
|
1343
1401
|
actionId: z.ZodNullable<z.ZodString>;
|
|
1344
1402
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
|
|
1345
1403
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
1404
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
1346
1405
|
}, "strip", z.ZodTypeAny, {
|
|
1347
1406
|
actionId: string | null;
|
|
1348
1407
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1349
1408
|
responseMessage?: string | undefined;
|
|
1409
|
+
actionDescriptionContext?: string | undefined;
|
|
1350
1410
|
}, {
|
|
1351
1411
|
actionId: string | null;
|
|
1352
1412
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1353
1413
|
responseMessage?: string | undefined;
|
|
1414
|
+
actionDescriptionContext?: string | undefined;
|
|
1354
1415
|
}>>;
|
|
1355
1416
|
launchAction: z.ZodOptional<z.ZodObject<{
|
|
1356
1417
|
actionId: z.ZodNullable<z.ZodString>;
|
|
1357
1418
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
|
|
1358
1419
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
1420
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
1359
1421
|
}, "strip", z.ZodTypeAny, {
|
|
1360
1422
|
actionId: string | null;
|
|
1361
1423
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1362
1424
|
responseMessage?: string | undefined;
|
|
1425
|
+
actionDescriptionContext?: string | undefined;
|
|
1363
1426
|
}, {
|
|
1364
1427
|
actionId: string | null;
|
|
1365
1428
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1366
1429
|
responseMessage?: string | undefined;
|
|
1430
|
+
actionDescriptionContext?: string | undefined;
|
|
1367
1431
|
}>>;
|
|
1368
1432
|
launchActionsV2: z.ZodOptional<z.ZodObject<{
|
|
1369
1433
|
id: z.ZodString;
|
|
@@ -1427,6 +1491,7 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1427
1491
|
actionId: string | null;
|
|
1428
1492
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1429
1493
|
responseMessage?: string | undefined;
|
|
1494
|
+
actionDescriptionContext?: string | undefined;
|
|
1430
1495
|
} | undefined;
|
|
1431
1496
|
simpleTriageYesActId?: string | undefined;
|
|
1432
1497
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -1435,16 +1500,19 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1435
1500
|
actionId: string | null;
|
|
1436
1501
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1437
1502
|
responseMessage?: string | undefined;
|
|
1503
|
+
actionDescriptionContext?: string | undefined;
|
|
1438
1504
|
} | undefined;
|
|
1439
1505
|
scheduleResolutionAction?: {
|
|
1440
1506
|
actionId: string | null;
|
|
1441
1507
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1442
1508
|
responseMessage?: string | undefined;
|
|
1509
|
+
actionDescriptionContext?: string | undefined;
|
|
1443
1510
|
} | undefined;
|
|
1444
1511
|
launchAction?: {
|
|
1445
1512
|
actionId: string | null;
|
|
1446
1513
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1447
1514
|
responseMessage?: string | undefined;
|
|
1515
|
+
actionDescriptionContext?: string | undefined;
|
|
1448
1516
|
} | undefined;
|
|
1449
1517
|
launchActionsV2?: {
|
|
1450
1518
|
id: string;
|
|
@@ -1474,6 +1542,7 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1474
1542
|
actionId: string | null;
|
|
1475
1543
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1476
1544
|
responseMessage?: string | undefined;
|
|
1545
|
+
actionDescriptionContext?: string | undefined;
|
|
1477
1546
|
} | undefined;
|
|
1478
1547
|
simpleTriageYesActId?: string | undefined;
|
|
1479
1548
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -1482,16 +1551,19 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1482
1551
|
actionId: string | null;
|
|
1483
1552
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1484
1553
|
responseMessage?: string | undefined;
|
|
1554
|
+
actionDescriptionContext?: string | undefined;
|
|
1485
1555
|
} | undefined;
|
|
1486
1556
|
scheduleResolutionAction?: {
|
|
1487
1557
|
actionId: string | null;
|
|
1488
1558
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1489
1559
|
responseMessage?: string | undefined;
|
|
1560
|
+
actionDescriptionContext?: string | undefined;
|
|
1490
1561
|
} | undefined;
|
|
1491
1562
|
launchAction?: {
|
|
1492
1563
|
actionId: string | null;
|
|
1493
1564
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1494
1565
|
responseMessage?: string | undefined;
|
|
1566
|
+
actionDescriptionContext?: string | undefined;
|
|
1495
1567
|
} | undefined;
|
|
1496
1568
|
launchActionsV2?: {
|
|
1497
1569
|
id: string;
|
|
@@ -1850,6 +1922,7 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1850
1922
|
actionId: string | null;
|
|
1851
1923
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1852
1924
|
responseMessage?: string | undefined;
|
|
1925
|
+
actionDescriptionContext?: string | undefined;
|
|
1853
1926
|
} | undefined;
|
|
1854
1927
|
simpleTriageYesActId?: string | undefined;
|
|
1855
1928
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -1858,16 +1931,19 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1858
1931
|
actionId: string | null;
|
|
1859
1932
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1860
1933
|
responseMessage?: string | undefined;
|
|
1934
|
+
actionDescriptionContext?: string | undefined;
|
|
1861
1935
|
} | undefined;
|
|
1862
1936
|
scheduleResolutionAction?: {
|
|
1863
1937
|
actionId: string | null;
|
|
1864
1938
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1865
1939
|
responseMessage?: string | undefined;
|
|
1940
|
+
actionDescriptionContext?: string | undefined;
|
|
1866
1941
|
} | undefined;
|
|
1867
1942
|
launchAction?: {
|
|
1868
1943
|
actionId: string | null;
|
|
1869
1944
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1870
1945
|
responseMessage?: string | undefined;
|
|
1946
|
+
actionDescriptionContext?: string | undefined;
|
|
1871
1947
|
} | undefined;
|
|
1872
1948
|
launchActionsV2?: {
|
|
1873
1949
|
id: string;
|
|
@@ -1921,11 +1997,13 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1921
1997
|
actionId: string | null;
|
|
1922
1998
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1923
1999
|
responseMessage?: string | undefined;
|
|
2000
|
+
actionDescriptionContext?: string | undefined;
|
|
1924
2001
|
};
|
|
1925
2002
|
noAction: {
|
|
1926
2003
|
actionId: string | null;
|
|
1927
2004
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1928
2005
|
responseMessage?: string | undefined;
|
|
2006
|
+
actionDescriptionContext?: string | undefined;
|
|
1929
2007
|
};
|
|
1930
2008
|
} | undefined;
|
|
1931
2009
|
reminderInterval?: {
|
|
@@ -2046,6 +2124,7 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
2046
2124
|
actionId: string | null;
|
|
2047
2125
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
2048
2126
|
responseMessage?: string | undefined;
|
|
2127
|
+
actionDescriptionContext?: string | undefined;
|
|
2049
2128
|
} | undefined;
|
|
2050
2129
|
simpleTriageYesActId?: string | undefined;
|
|
2051
2130
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -2054,16 +2133,19 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
2054
2133
|
actionId: string | null;
|
|
2055
2134
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
2056
2135
|
responseMessage?: string | undefined;
|
|
2136
|
+
actionDescriptionContext?: string | undefined;
|
|
2057
2137
|
} | undefined;
|
|
2058
2138
|
scheduleResolutionAction?: {
|
|
2059
2139
|
actionId: string | null;
|
|
2060
2140
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
2061
2141
|
responseMessage?: string | undefined;
|
|
2142
|
+
actionDescriptionContext?: string | undefined;
|
|
2062
2143
|
} | undefined;
|
|
2063
2144
|
launchAction?: {
|
|
2064
2145
|
actionId: string | null;
|
|
2065
2146
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
2066
2147
|
responseMessage?: string | undefined;
|
|
2148
|
+
actionDescriptionContext?: string | undefined;
|
|
2067
2149
|
} | undefined;
|
|
2068
2150
|
launchActionsV2?: {
|
|
2069
2151
|
id: string;
|
|
@@ -2118,11 +2200,13 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
2118
2200
|
actionId: string | null;
|
|
2119
2201
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
2120
2202
|
responseMessage?: string | undefined;
|
|
2203
|
+
actionDescriptionContext?: string | undefined;
|
|
2121
2204
|
};
|
|
2122
2205
|
noAction: {
|
|
2123
2206
|
actionId: string | null;
|
|
2124
2207
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
2125
2208
|
responseMessage?: string | undefined;
|
|
2209
|
+
actionDescriptionContext?: string | undefined;
|
|
2126
2210
|
};
|
|
2127
2211
|
} | undefined;
|
|
2128
2212
|
reminderInterval?: {
|
|
@@ -2339,12 +2423,15 @@ export declare const _PlatformFlowStateUpsertDto: z.ZodObject<z.objectUtil.exten
|
|
|
2339
2423
|
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2340
2424
|
overrideWorkingHours: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2341
2425
|
engagementTriggerSource: z.ZodOptional<z.ZodNativeEnum<typeof import("../flows.dto").ENGAGEMENT_TRIGGER_SOURCE>>;
|
|
2426
|
+
scheduleResolutionWorkflowId: z.ZodOptional<z.ZodString>;
|
|
2342
2427
|
}, "strip", z.ZodTypeAny, {
|
|
2343
2428
|
overrideWorkingHours?: boolean | undefined;
|
|
2344
2429
|
engagementTriggerSource?: import("../flows.dto").ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
2430
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
2345
2431
|
}, {
|
|
2346
2432
|
overrideWorkingHours?: boolean | undefined;
|
|
2347
2433
|
engagementTriggerSource?: import("../flows.dto").ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
2434
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
2348
2435
|
}>>>;
|
|
2349
2436
|
}>, {
|
|
2350
2437
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -2395,6 +2482,7 @@ export declare const _PlatformFlowStateUpsertDto: z.ZodObject<z.objectUtil.exten
|
|
|
2395
2482
|
meta?: {
|
|
2396
2483
|
overrideWorkingHours?: boolean | undefined;
|
|
2397
2484
|
engagementTriggerSource?: import("../flows.dto").ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
2485
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
2398
2486
|
} | null | undefined;
|
|
2399
2487
|
fid?: string | undefined;
|
|
2400
2488
|
specId?: string | undefined;
|
|
@@ -2438,6 +2526,7 @@ export declare const _PlatformFlowStateUpsertDto: z.ZodObject<z.objectUtil.exten
|
|
|
2438
2526
|
meta?: {
|
|
2439
2527
|
overrideWorkingHours?: boolean | undefined;
|
|
2440
2528
|
engagementTriggerSource?: import("../flows.dto").ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
2529
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
2441
2530
|
} | null | undefined;
|
|
2442
2531
|
fid?: string | undefined;
|
|
2443
2532
|
specId?: string | undefined;
|
|
@@ -2581,12 +2670,15 @@ export declare const _PlatformFlowStateDto: z.ZodObject<z.objectUtil.extendShape
|
|
|
2581
2670
|
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2582
2671
|
overrideWorkingHours: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2583
2672
|
engagementTriggerSource: z.ZodOptional<z.ZodNativeEnum<typeof import("../flows.dto").ENGAGEMENT_TRIGGER_SOURCE>>;
|
|
2673
|
+
scheduleResolutionWorkflowId: z.ZodOptional<z.ZodString>;
|
|
2584
2674
|
}, "strip", z.ZodTypeAny, {
|
|
2585
2675
|
overrideWorkingHours?: boolean | undefined;
|
|
2586
2676
|
engagementTriggerSource?: import("../flows.dto").ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
2677
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
2587
2678
|
}, {
|
|
2588
2679
|
overrideWorkingHours?: boolean | undefined;
|
|
2589
2680
|
engagementTriggerSource?: import("../flows.dto").ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
2681
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
2590
2682
|
}>>>;
|
|
2591
2683
|
}>, z.objectUtil.extendShape<{
|
|
2592
2684
|
id: z.ZodString;
|
|
@@ -2633,6 +2725,7 @@ export declare const _PlatformFlowStateDto: z.ZodObject<z.objectUtil.extendShape
|
|
|
2633
2725
|
meta?: {
|
|
2634
2726
|
overrideWorkingHours?: boolean | undefined;
|
|
2635
2727
|
engagementTriggerSource?: import("../flows.dto").ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
2728
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
2636
2729
|
} | null | undefined;
|
|
2637
2730
|
fid?: string | undefined;
|
|
2638
2731
|
specId?: string | undefined;
|
|
@@ -2676,6 +2769,7 @@ export declare const _PlatformFlowStateDto: z.ZodObject<z.objectUtil.extendShape
|
|
|
2676
2769
|
meta?: {
|
|
2677
2770
|
overrideWorkingHours?: boolean | undefined;
|
|
2678
2771
|
engagementTriggerSource?: import("../flows.dto").ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
2772
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
2679
2773
|
} | null | undefined;
|
|
2680
2774
|
fid?: string | undefined;
|
|
2681
2775
|
specId?: string | undefined;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const RULESET_CREATE_SCHEMA: z.ZodObject<{
|
|
3
|
+
tid: z.ZodOptional<z.ZodString>;
|
|
4
|
+
cid: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5
|
+
name: z.ZodString;
|
|
6
|
+
description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7
|
+
is_default: z.ZodDefault<z.ZodBoolean>;
|
|
8
|
+
}, "strip", z.ZodTypeAny, {
|
|
9
|
+
name: string;
|
|
10
|
+
is_default: boolean;
|
|
11
|
+
description?: string | null | undefined;
|
|
12
|
+
tid?: string | undefined;
|
|
13
|
+
cid?: string | null | undefined;
|
|
14
|
+
}, {
|
|
15
|
+
name: string;
|
|
16
|
+
description?: string | null | undefined;
|
|
17
|
+
tid?: string | undefined;
|
|
18
|
+
cid?: string | null | undefined;
|
|
19
|
+
is_default?: boolean | undefined;
|
|
20
|
+
}>;
|
|
21
|
+
export declare const RULESET_UPDATE_SCHEMA: z.ZodObject<{
|
|
22
|
+
name: z.ZodOptional<z.ZodString>;
|
|
23
|
+
description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
24
|
+
is_default: z.ZodOptional<z.ZodBoolean>;
|
|
25
|
+
cid: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
26
|
+
}, "strip", z.ZodTypeAny, {
|
|
27
|
+
name?: string | undefined;
|
|
28
|
+
description?: string | null | undefined;
|
|
29
|
+
cid?: string | null | undefined;
|
|
30
|
+
is_default?: boolean | undefined;
|
|
31
|
+
}, {
|
|
32
|
+
name?: string | undefined;
|
|
33
|
+
description?: string | null | undefined;
|
|
34
|
+
cid?: string | null | undefined;
|
|
35
|
+
is_default?: boolean | undefined;
|
|
36
|
+
}>;
|
|
37
|
+
export type RuleSetCreateDto = z.infer<typeof RULESET_CREATE_SCHEMA>;
|
|
38
|
+
export type RuleSetUpdateDto = z.infer<typeof RULESET_UPDATE_SCHEMA>;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RULESET_UPDATE_SCHEMA = exports.RULESET_CREATE_SCHEMA = void 0;
|
|
4
|
+
const zod_1 = require("zod");
|
|
5
|
+
exports.RULESET_CREATE_SCHEMA = zod_1.z.object({
|
|
6
|
+
tid: zod_1.z.string().optional(),
|
|
7
|
+
cid: zod_1.z.string().optional().nullable(),
|
|
8
|
+
name: zod_1.z.string(),
|
|
9
|
+
description: zod_1.z.string().optional().nullable(),
|
|
10
|
+
is_default: zod_1.z.boolean().default(false),
|
|
11
|
+
});
|
|
12
|
+
exports.RULESET_UPDATE_SCHEMA = zod_1.z.object({
|
|
13
|
+
name: zod_1.z.string().optional(),
|
|
14
|
+
description: zod_1.z.string().optional().nullable(),
|
|
15
|
+
is_default: zod_1.z.boolean().optional(),
|
|
16
|
+
cid: zod_1.z.string().optional().nullable(),
|
|
17
|
+
});
|
|
18
|
+
//# sourceMappingURL=ruleSet.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ruleSet.dto.js","sourceRoot":"","sources":["../../../src/dto/ruleSet.dto.ts"],"names":[],"mappings":";;;AAAA,6BAAsB;AAET,QAAA,qBAAqB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC5C,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC1B,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACrC,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;IAChB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IAC7C,UAAU,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC;CACvC,CAAC,CAAC;AAEU,QAAA,qBAAqB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC5C,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3B,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IAC7C,UAAU,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAClC,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;CACtC,CAAC,CAAC"}
|