@ampsec/platform-client 87.4.0 → 87.5.1
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 +173 -0
- package/build/src/dto/flows.dto.js +4 -0
- package/build/src/dto/flows.dto.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 +100 -0
- 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 +4 -0
- 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;
|
|
@@ -665,6 +695,7 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
|
|
|
665
695
|
template?: string | undefined;
|
|
666
696
|
append?: boolean | undefined;
|
|
667
697
|
}>>;
|
|
698
|
+
messageTitle: z.ZodOptional<z.ZodString>;
|
|
668
699
|
additionalContext: z.ZodOptional<z.ZodObject<{
|
|
669
700
|
data: z.ZodOptional<z.ZodString>;
|
|
670
701
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -759,6 +790,7 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
|
|
|
759
790
|
actionId: string | null;
|
|
760
791
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
761
792
|
responseMessage?: string | undefined;
|
|
793
|
+
actionDescriptionContext?: string | undefined;
|
|
762
794
|
} | undefined;
|
|
763
795
|
simpleTriageYesActId?: string | undefined;
|
|
764
796
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -767,16 +799,19 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
|
|
|
767
799
|
actionId: string | null;
|
|
768
800
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
769
801
|
responseMessage?: string | undefined;
|
|
802
|
+
actionDescriptionContext?: string | undefined;
|
|
770
803
|
} | undefined;
|
|
771
804
|
scheduleResolutionAction?: {
|
|
772
805
|
actionId: string | null;
|
|
773
806
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
774
807
|
responseMessage?: string | undefined;
|
|
808
|
+
actionDescriptionContext?: string | undefined;
|
|
775
809
|
} | undefined;
|
|
776
810
|
launchAction?: {
|
|
777
811
|
actionId: string | null;
|
|
778
812
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
779
813
|
responseMessage?: string | undefined;
|
|
814
|
+
actionDescriptionContext?: string | undefined;
|
|
780
815
|
} | undefined;
|
|
781
816
|
launchActionsV2?: {
|
|
782
817
|
id: string;
|
|
@@ -830,11 +865,13 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
|
|
|
830
865
|
actionId: string | null;
|
|
831
866
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
832
867
|
responseMessage?: string | undefined;
|
|
868
|
+
actionDescriptionContext?: string | undefined;
|
|
833
869
|
};
|
|
834
870
|
noAction: {
|
|
835
871
|
actionId: string | null;
|
|
836
872
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
837
873
|
responseMessage?: string | undefined;
|
|
874
|
+
actionDescriptionContext?: string | undefined;
|
|
838
875
|
};
|
|
839
876
|
} | undefined;
|
|
840
877
|
reminderInterval?: {
|
|
@@ -895,6 +932,7 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
|
|
|
895
932
|
template?: string | undefined;
|
|
896
933
|
append?: boolean | undefined;
|
|
897
934
|
} | undefined;
|
|
935
|
+
messageTitle?: string | undefined;
|
|
898
936
|
additionalContext?: {
|
|
899
937
|
data?: string | undefined;
|
|
900
938
|
} | undefined;
|
|
@@ -947,6 +985,7 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
|
|
|
947
985
|
actionId: string | null;
|
|
948
986
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
949
987
|
responseMessage?: string | undefined;
|
|
988
|
+
actionDescriptionContext?: string | undefined;
|
|
950
989
|
} | undefined;
|
|
951
990
|
simpleTriageYesActId?: string | undefined;
|
|
952
991
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -955,16 +994,19 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
|
|
|
955
994
|
actionId: string | null;
|
|
956
995
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
957
996
|
responseMessage?: string | undefined;
|
|
997
|
+
actionDescriptionContext?: string | undefined;
|
|
958
998
|
} | undefined;
|
|
959
999
|
scheduleResolutionAction?: {
|
|
960
1000
|
actionId: string | null;
|
|
961
1001
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
962
1002
|
responseMessage?: string | undefined;
|
|
1003
|
+
actionDescriptionContext?: string | undefined;
|
|
963
1004
|
} | undefined;
|
|
964
1005
|
launchAction?: {
|
|
965
1006
|
actionId: string | null;
|
|
966
1007
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
967
1008
|
responseMessage?: string | undefined;
|
|
1009
|
+
actionDescriptionContext?: string | undefined;
|
|
968
1010
|
} | undefined;
|
|
969
1011
|
launchActionsV2?: {
|
|
970
1012
|
id: string;
|
|
@@ -1019,11 +1061,13 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
|
|
|
1019
1061
|
actionId: string | null;
|
|
1020
1062
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1021
1063
|
responseMessage?: string | undefined;
|
|
1064
|
+
actionDescriptionContext?: string | undefined;
|
|
1022
1065
|
};
|
|
1023
1066
|
noAction: {
|
|
1024
1067
|
actionId: string | null;
|
|
1025
1068
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1026
1069
|
responseMessage?: string | undefined;
|
|
1070
|
+
actionDescriptionContext?: string | undefined;
|
|
1027
1071
|
};
|
|
1028
1072
|
} | undefined;
|
|
1029
1073
|
reminderInterval?: {
|
|
@@ -1084,6 +1128,7 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
|
|
|
1084
1128
|
template?: string | undefined;
|
|
1085
1129
|
append?: boolean | undefined;
|
|
1086
1130
|
} | undefined;
|
|
1131
|
+
messageTitle?: string | undefined;
|
|
1087
1132
|
additionalContext?: {
|
|
1088
1133
|
data?: string | undefined;
|
|
1089
1134
|
} | undefined;
|
|
@@ -1233,27 +1278,33 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1233
1278
|
actionId: z.ZodNullable<z.ZodString>;
|
|
1234
1279
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
|
|
1235
1280
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
1281
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
1236
1282
|
}, "strip", z.ZodTypeAny, {
|
|
1237
1283
|
actionId: string | null;
|
|
1238
1284
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1239
1285
|
responseMessage?: string | undefined;
|
|
1286
|
+
actionDescriptionContext?: string | undefined;
|
|
1240
1287
|
}, {
|
|
1241
1288
|
actionId: string | null;
|
|
1242
1289
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1243
1290
|
responseMessage?: string | undefined;
|
|
1291
|
+
actionDescriptionContext?: string | undefined;
|
|
1244
1292
|
}>;
|
|
1245
1293
|
noAction: z.ZodObject<{
|
|
1246
1294
|
actionId: z.ZodNullable<z.ZodString>;
|
|
1247
1295
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
|
|
1248
1296
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
1297
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
1249
1298
|
}, "strip", z.ZodTypeAny, {
|
|
1250
1299
|
actionId: string | null;
|
|
1251
1300
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1252
1301
|
responseMessage?: string | undefined;
|
|
1302
|
+
actionDescriptionContext?: string | undefined;
|
|
1253
1303
|
}, {
|
|
1254
1304
|
actionId: string | null;
|
|
1255
1305
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1256
1306
|
responseMessage?: string | undefined;
|
|
1307
|
+
actionDescriptionContext?: string | undefined;
|
|
1257
1308
|
}>;
|
|
1258
1309
|
}, "strip", z.ZodTypeAny, {
|
|
1259
1310
|
message: string;
|
|
@@ -1261,11 +1312,13 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1261
1312
|
actionId: string | null;
|
|
1262
1313
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1263
1314
|
responseMessage?: string | undefined;
|
|
1315
|
+
actionDescriptionContext?: string | undefined;
|
|
1264
1316
|
};
|
|
1265
1317
|
noAction: {
|
|
1266
1318
|
actionId: string | null;
|
|
1267
1319
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1268
1320
|
responseMessage?: string | undefined;
|
|
1321
|
+
actionDescriptionContext?: string | undefined;
|
|
1269
1322
|
};
|
|
1270
1323
|
}, {
|
|
1271
1324
|
message: string;
|
|
@@ -1273,11 +1326,13 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1273
1326
|
actionId: string | null;
|
|
1274
1327
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1275
1328
|
responseMessage?: string | undefined;
|
|
1329
|
+
actionDescriptionContext?: string | undefined;
|
|
1276
1330
|
};
|
|
1277
1331
|
noAction: {
|
|
1278
1332
|
actionId: string | null;
|
|
1279
1333
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1280
1334
|
responseMessage?: string | undefined;
|
|
1335
|
+
actionDescriptionContext?: string | undefined;
|
|
1281
1336
|
};
|
|
1282
1337
|
}>>;
|
|
1283
1338
|
reminderInterval: z.ZodOptional<z.ZodObject<{
|
|
@@ -1314,14 +1369,17 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1314
1369
|
actionId: z.ZodNullable<z.ZodString>;
|
|
1315
1370
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
|
|
1316
1371
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
1372
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
1317
1373
|
}, "strip", z.ZodTypeAny, {
|
|
1318
1374
|
actionId: string | null;
|
|
1319
1375
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1320
1376
|
responseMessage?: string | undefined;
|
|
1377
|
+
actionDescriptionContext?: string | undefined;
|
|
1321
1378
|
}, {
|
|
1322
1379
|
actionId: string | null;
|
|
1323
1380
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1324
1381
|
responseMessage?: string | undefined;
|
|
1382
|
+
actionDescriptionContext?: string | undefined;
|
|
1325
1383
|
}>>;
|
|
1326
1384
|
simpleTriageYesActId: z.ZodOptional<z.ZodString>;
|
|
1327
1385
|
simpleTriageNoActId: z.ZodOptional<z.ZodString>;
|
|
@@ -1330,40 +1388,49 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1330
1388
|
actionId: z.ZodNullable<z.ZodString>;
|
|
1331
1389
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
|
|
1332
1390
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
1391
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
1333
1392
|
}, "strip", z.ZodTypeAny, {
|
|
1334
1393
|
actionId: string | null;
|
|
1335
1394
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1336
1395
|
responseMessage?: string | undefined;
|
|
1396
|
+
actionDescriptionContext?: string | undefined;
|
|
1337
1397
|
}, {
|
|
1338
1398
|
actionId: string | null;
|
|
1339
1399
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1340
1400
|
responseMessage?: string | undefined;
|
|
1401
|
+
actionDescriptionContext?: string | undefined;
|
|
1341
1402
|
}>>;
|
|
1342
1403
|
scheduleResolutionAction: z.ZodOptional<z.ZodObject<{
|
|
1343
1404
|
actionId: z.ZodNullable<z.ZodString>;
|
|
1344
1405
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
|
|
1345
1406
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
1407
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
1346
1408
|
}, "strip", z.ZodTypeAny, {
|
|
1347
1409
|
actionId: string | null;
|
|
1348
1410
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1349
1411
|
responseMessage?: string | undefined;
|
|
1412
|
+
actionDescriptionContext?: string | undefined;
|
|
1350
1413
|
}, {
|
|
1351
1414
|
actionId: string | null;
|
|
1352
1415
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1353
1416
|
responseMessage?: string | undefined;
|
|
1417
|
+
actionDescriptionContext?: string | undefined;
|
|
1354
1418
|
}>>;
|
|
1355
1419
|
launchAction: z.ZodOptional<z.ZodObject<{
|
|
1356
1420
|
actionId: z.ZodNullable<z.ZodString>;
|
|
1357
1421
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
|
|
1358
1422
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
1423
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
1359
1424
|
}, "strip", z.ZodTypeAny, {
|
|
1360
1425
|
actionId: string | null;
|
|
1361
1426
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1362
1427
|
responseMessage?: string | undefined;
|
|
1428
|
+
actionDescriptionContext?: string | undefined;
|
|
1363
1429
|
}, {
|
|
1364
1430
|
actionId: string | null;
|
|
1365
1431
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1366
1432
|
responseMessage?: string | undefined;
|
|
1433
|
+
actionDescriptionContext?: string | undefined;
|
|
1367
1434
|
}>>;
|
|
1368
1435
|
launchActionsV2: z.ZodOptional<z.ZodObject<{
|
|
1369
1436
|
id: z.ZodString;
|
|
@@ -1427,6 +1494,7 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1427
1494
|
actionId: string | null;
|
|
1428
1495
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1429
1496
|
responseMessage?: string | undefined;
|
|
1497
|
+
actionDescriptionContext?: string | undefined;
|
|
1430
1498
|
} | undefined;
|
|
1431
1499
|
simpleTriageYesActId?: string | undefined;
|
|
1432
1500
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -1435,16 +1503,19 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1435
1503
|
actionId: string | null;
|
|
1436
1504
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1437
1505
|
responseMessage?: string | undefined;
|
|
1506
|
+
actionDescriptionContext?: string | undefined;
|
|
1438
1507
|
} | undefined;
|
|
1439
1508
|
scheduleResolutionAction?: {
|
|
1440
1509
|
actionId: string | null;
|
|
1441
1510
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1442
1511
|
responseMessage?: string | undefined;
|
|
1512
|
+
actionDescriptionContext?: string | undefined;
|
|
1443
1513
|
} | undefined;
|
|
1444
1514
|
launchAction?: {
|
|
1445
1515
|
actionId: string | null;
|
|
1446
1516
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1447
1517
|
responseMessage?: string | undefined;
|
|
1518
|
+
actionDescriptionContext?: string | undefined;
|
|
1448
1519
|
} | undefined;
|
|
1449
1520
|
launchActionsV2?: {
|
|
1450
1521
|
id: string;
|
|
@@ -1474,6 +1545,7 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1474
1545
|
actionId: string | null;
|
|
1475
1546
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1476
1547
|
responseMessage?: string | undefined;
|
|
1548
|
+
actionDescriptionContext?: string | undefined;
|
|
1477
1549
|
} | undefined;
|
|
1478
1550
|
simpleTriageYesActId?: string | undefined;
|
|
1479
1551
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -1482,16 +1554,19 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1482
1554
|
actionId: string | null;
|
|
1483
1555
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1484
1556
|
responseMessage?: string | undefined;
|
|
1557
|
+
actionDescriptionContext?: string | undefined;
|
|
1485
1558
|
} | undefined;
|
|
1486
1559
|
scheduleResolutionAction?: {
|
|
1487
1560
|
actionId: string | null;
|
|
1488
1561
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1489
1562
|
responseMessage?: string | undefined;
|
|
1563
|
+
actionDescriptionContext?: string | undefined;
|
|
1490
1564
|
} | undefined;
|
|
1491
1565
|
launchAction?: {
|
|
1492
1566
|
actionId: string | null;
|
|
1493
1567
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1494
1568
|
responseMessage?: string | undefined;
|
|
1569
|
+
actionDescriptionContext?: string | undefined;
|
|
1495
1570
|
} | undefined;
|
|
1496
1571
|
launchActionsV2?: {
|
|
1497
1572
|
id: string;
|
|
@@ -1761,6 +1836,7 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1761
1836
|
template?: string | undefined;
|
|
1762
1837
|
append?: boolean | undefined;
|
|
1763
1838
|
}>>;
|
|
1839
|
+
messageTitle: z.ZodOptional<z.ZodString>;
|
|
1764
1840
|
additionalContext: z.ZodOptional<z.ZodObject<{
|
|
1765
1841
|
data: z.ZodOptional<z.ZodString>;
|
|
1766
1842
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1850,6 +1926,7 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1850
1926
|
actionId: string | null;
|
|
1851
1927
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1852
1928
|
responseMessage?: string | undefined;
|
|
1929
|
+
actionDescriptionContext?: string | undefined;
|
|
1853
1930
|
} | undefined;
|
|
1854
1931
|
simpleTriageYesActId?: string | undefined;
|
|
1855
1932
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -1858,16 +1935,19 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1858
1935
|
actionId: string | null;
|
|
1859
1936
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1860
1937
|
responseMessage?: string | undefined;
|
|
1938
|
+
actionDescriptionContext?: string | undefined;
|
|
1861
1939
|
} | undefined;
|
|
1862
1940
|
scheduleResolutionAction?: {
|
|
1863
1941
|
actionId: string | null;
|
|
1864
1942
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1865
1943
|
responseMessage?: string | undefined;
|
|
1944
|
+
actionDescriptionContext?: string | undefined;
|
|
1866
1945
|
} | undefined;
|
|
1867
1946
|
launchAction?: {
|
|
1868
1947
|
actionId: string | null;
|
|
1869
1948
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1870
1949
|
responseMessage?: string | undefined;
|
|
1950
|
+
actionDescriptionContext?: string | undefined;
|
|
1871
1951
|
} | undefined;
|
|
1872
1952
|
launchActionsV2?: {
|
|
1873
1953
|
id: string;
|
|
@@ -1921,11 +2001,13 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1921
2001
|
actionId: string | null;
|
|
1922
2002
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1923
2003
|
responseMessage?: string | undefined;
|
|
2004
|
+
actionDescriptionContext?: string | undefined;
|
|
1924
2005
|
};
|
|
1925
2006
|
noAction: {
|
|
1926
2007
|
actionId: string | null;
|
|
1927
2008
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
1928
2009
|
responseMessage?: string | undefined;
|
|
2010
|
+
actionDescriptionContext?: string | undefined;
|
|
1929
2011
|
};
|
|
1930
2012
|
} | undefined;
|
|
1931
2013
|
reminderInterval?: {
|
|
@@ -1986,6 +2068,7 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1986
2068
|
template?: string | undefined;
|
|
1987
2069
|
append?: boolean | undefined;
|
|
1988
2070
|
} | undefined;
|
|
2071
|
+
messageTitle?: string | undefined;
|
|
1989
2072
|
additionalContext?: {
|
|
1990
2073
|
data?: string | undefined;
|
|
1991
2074
|
} | undefined;
|
|
@@ -2046,6 +2129,7 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
2046
2129
|
actionId: string | null;
|
|
2047
2130
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
2048
2131
|
responseMessage?: string | undefined;
|
|
2132
|
+
actionDescriptionContext?: string | undefined;
|
|
2049
2133
|
} | undefined;
|
|
2050
2134
|
simpleTriageYesActId?: string | undefined;
|
|
2051
2135
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -2054,16 +2138,19 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
2054
2138
|
actionId: string | null;
|
|
2055
2139
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
2056
2140
|
responseMessage?: string | undefined;
|
|
2141
|
+
actionDescriptionContext?: string | undefined;
|
|
2057
2142
|
} | undefined;
|
|
2058
2143
|
scheduleResolutionAction?: {
|
|
2059
2144
|
actionId: string | null;
|
|
2060
2145
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
2061
2146
|
responseMessage?: string | undefined;
|
|
2147
|
+
actionDescriptionContext?: string | undefined;
|
|
2062
2148
|
} | undefined;
|
|
2063
2149
|
launchAction?: {
|
|
2064
2150
|
actionId: string | null;
|
|
2065
2151
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
2066
2152
|
responseMessage?: string | undefined;
|
|
2153
|
+
actionDescriptionContext?: string | undefined;
|
|
2067
2154
|
} | undefined;
|
|
2068
2155
|
launchActionsV2?: {
|
|
2069
2156
|
id: string;
|
|
@@ -2118,11 +2205,13 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
2118
2205
|
actionId: string | null;
|
|
2119
2206
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
2120
2207
|
responseMessage?: string | undefined;
|
|
2208
|
+
actionDescriptionContext?: string | undefined;
|
|
2121
2209
|
};
|
|
2122
2210
|
noAction: {
|
|
2123
2211
|
actionId: string | null;
|
|
2124
2212
|
findingStatus?: import("..").FindingStatus | null | undefined;
|
|
2125
2213
|
responseMessage?: string | undefined;
|
|
2214
|
+
actionDescriptionContext?: string | undefined;
|
|
2126
2215
|
};
|
|
2127
2216
|
} | undefined;
|
|
2128
2217
|
reminderInterval?: {
|
|
@@ -2183,6 +2272,7 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
|
|
|
2183
2272
|
template?: string | undefined;
|
|
2184
2273
|
append?: boolean | undefined;
|
|
2185
2274
|
} | undefined;
|
|
2275
|
+
messageTitle?: string | undefined;
|
|
2186
2276
|
additionalContext?: {
|
|
2187
2277
|
data?: string | undefined;
|
|
2188
2278
|
} | undefined;
|
|
@@ -2339,12 +2429,15 @@ export declare const _PlatformFlowStateUpsertDto: z.ZodObject<z.objectUtil.exten
|
|
|
2339
2429
|
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2340
2430
|
overrideWorkingHours: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2341
2431
|
engagementTriggerSource: z.ZodOptional<z.ZodNativeEnum<typeof import("../flows.dto").ENGAGEMENT_TRIGGER_SOURCE>>;
|
|
2432
|
+
scheduleResolutionWorkflowId: z.ZodOptional<z.ZodString>;
|
|
2342
2433
|
}, "strip", z.ZodTypeAny, {
|
|
2343
2434
|
overrideWorkingHours?: boolean | undefined;
|
|
2344
2435
|
engagementTriggerSource?: import("../flows.dto").ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
2436
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
2345
2437
|
}, {
|
|
2346
2438
|
overrideWorkingHours?: boolean | undefined;
|
|
2347
2439
|
engagementTriggerSource?: import("../flows.dto").ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
2440
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
2348
2441
|
}>>>;
|
|
2349
2442
|
}>, {
|
|
2350
2443
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -2395,6 +2488,7 @@ export declare const _PlatformFlowStateUpsertDto: z.ZodObject<z.objectUtil.exten
|
|
|
2395
2488
|
meta?: {
|
|
2396
2489
|
overrideWorkingHours?: boolean | undefined;
|
|
2397
2490
|
engagementTriggerSource?: import("../flows.dto").ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
2491
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
2398
2492
|
} | null | undefined;
|
|
2399
2493
|
fid?: string | undefined;
|
|
2400
2494
|
specId?: string | undefined;
|
|
@@ -2438,6 +2532,7 @@ export declare const _PlatformFlowStateUpsertDto: z.ZodObject<z.objectUtil.exten
|
|
|
2438
2532
|
meta?: {
|
|
2439
2533
|
overrideWorkingHours?: boolean | undefined;
|
|
2440
2534
|
engagementTriggerSource?: import("../flows.dto").ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
2535
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
2441
2536
|
} | null | undefined;
|
|
2442
2537
|
fid?: string | undefined;
|
|
2443
2538
|
specId?: string | undefined;
|
|
@@ -2581,12 +2676,15 @@ export declare const _PlatformFlowStateDto: z.ZodObject<z.objectUtil.extendShape
|
|
|
2581
2676
|
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2582
2677
|
overrideWorkingHours: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2583
2678
|
engagementTriggerSource: z.ZodOptional<z.ZodNativeEnum<typeof import("../flows.dto").ENGAGEMENT_TRIGGER_SOURCE>>;
|
|
2679
|
+
scheduleResolutionWorkflowId: z.ZodOptional<z.ZodString>;
|
|
2584
2680
|
}, "strip", z.ZodTypeAny, {
|
|
2585
2681
|
overrideWorkingHours?: boolean | undefined;
|
|
2586
2682
|
engagementTriggerSource?: import("../flows.dto").ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
2683
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
2587
2684
|
}, {
|
|
2588
2685
|
overrideWorkingHours?: boolean | undefined;
|
|
2589
2686
|
engagementTriggerSource?: import("../flows.dto").ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
2687
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
2590
2688
|
}>>>;
|
|
2591
2689
|
}>, z.objectUtil.extendShape<{
|
|
2592
2690
|
id: z.ZodString;
|
|
@@ -2633,6 +2731,7 @@ export declare const _PlatformFlowStateDto: z.ZodObject<z.objectUtil.extendShape
|
|
|
2633
2731
|
meta?: {
|
|
2634
2732
|
overrideWorkingHours?: boolean | undefined;
|
|
2635
2733
|
engagementTriggerSource?: import("../flows.dto").ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
2734
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
2636
2735
|
} | null | undefined;
|
|
2637
2736
|
fid?: string | undefined;
|
|
2638
2737
|
specId?: string | undefined;
|
|
@@ -2676,6 +2775,7 @@ export declare const _PlatformFlowStateDto: z.ZodObject<z.objectUtil.extendShape
|
|
|
2676
2775
|
meta?: {
|
|
2677
2776
|
overrideWorkingHours?: boolean | undefined;
|
|
2678
2777
|
engagementTriggerSource?: import("../flows.dto").ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
2778
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
2679
2779
|
} | null | undefined;
|
|
2680
2780
|
fid?: string | undefined;
|
|
2681
2781
|
specId?: string | undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ActionExecutionDto, AssetDto, CustomScoreCohortDto, CustomScoreCohortUpsertDto, CustomScoreValueDto, CustomScoreValueUpsertDto, FindingSpecDto, FindingSpecUpsertDto, ProviderDto, ReportResultDto, SaasAssetDto, SaasComponentDto, SaasUserDto, TenantDto, TenantUpsertDto, TokenDto, UserDto } from '../dto';
|
|
2
|
-
import { AmpEntityService, AmpDataService, AmpReportService, AmpSettingsService, ConnectorsService, FindingsInsightsService, FindingsService, NotificationService, PredictionService, CustomActionsService } from '.';
|
|
2
|
+
import { AmpEntityService, AmpDataService, AmpReportService, AmpSettingsService, ConnectorsService, FindingsInsightsService, FindingsService, NotificationService, PredictionService, CustomActionsService, RulesService } from '.';
|
|
3
3
|
import { AmpRestClientOptions, AgentIdentityService, ConnectorInstallService, EnumService, RestClient } from './rest';
|
|
4
4
|
import { UsersInsightsService } from './usersInsights.service';
|
|
5
5
|
import { FlowSpecsService } from './flowSpecs.service';
|
|
@@ -10,6 +10,7 @@ import { TrainingsService } from './trainings.service';
|
|
|
10
10
|
import { AnalyticsService } from './analytics.service';
|
|
11
11
|
import { EngagementLogsService } from './engagementLogs.service';
|
|
12
12
|
import { ConnectorReadinessService } from './connectorReadiness.service';
|
|
13
|
+
import { AmpSdkTagSpecsService } from './tagSpecs.service';
|
|
13
14
|
export type AmpApiOptions = AmpRestClientOptions;
|
|
14
15
|
/**
|
|
15
16
|
* AMP API
|
|
@@ -45,9 +46,11 @@ export declare class AmpApi {
|
|
|
45
46
|
readonly providers: AmpDataService<ProviderDto>;
|
|
46
47
|
readonly reportResults: AmpDataService<ReportResultDto>;
|
|
47
48
|
readonly reports: AmpReportService;
|
|
49
|
+
readonly rules: RulesService;
|
|
48
50
|
readonly saasAssets: AmpDataService<SaasAssetDto>;
|
|
49
51
|
readonly saasComponents: AmpDataService<SaasComponentDto>;
|
|
50
52
|
readonly saasUsers: AmpDataService<SaasUserDto>;
|
|
53
|
+
readonly tagSpecsService: AmpSdkTagSpecsService;
|
|
51
54
|
readonly settings: AmpSettingsService;
|
|
52
55
|
readonly tenants: AmpEntityService<TenantUpsertDto, TenantDto>;
|
|
53
56
|
readonly tokens: AmpDataService<TokenDto>;
|