@ampsec/platform-client 62.4.0 → 62.6.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/coverage.dto.d.ts +95 -9
- package/build/src/dto/coverage.dto.js +2 -0
- package/build/src/dto/coverage.dto.js.map +1 -1
- package/build/src/dto/notification.dto.d.ts +121 -121
- package/build/src/dto/notification.dto.js +1 -1
- package/build/src/dto/notification.dto.js.map +1 -1
- package/build/src/dto/platform/platform.saasUsers.dto.d.ts +52 -7
- package/build/src/dto/saasUsers.dto.d.ts +160 -19
- package/build/src/dto/saasUsers.dto.js +11 -2
- package/build/src/dto/saasUsers.dto.js.map +1 -1
- package/package.json +1 -1
- package/src/dto/coverage.dto.ts +3 -1
- package/src/dto/notification.dto.ts +1 -1
- package/src/dto/saasUsers.dto.ts +11 -1
|
@@ -33,57 +33,57 @@ export declare const _NotificationAddress: z.ZodObject<{
|
|
|
33
33
|
users?: (string | number)[] | undefined;
|
|
34
34
|
webhooks?: string[] | undefined;
|
|
35
35
|
}>;
|
|
36
|
-
export declare const _FlowContextKey: z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED"]>;
|
|
37
|
-
export declare const _FlowContext: z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED"]>, z.ZodAny>;
|
|
36
|
+
export declare const _FlowContextKey: z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED", "GHOST_MODE_ENABLED"]>;
|
|
37
|
+
export declare const _FlowContext: z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED", "GHOST_MODE_ENABLED"]>, z.ZodAny>;
|
|
38
38
|
export declare const _RawContentStrategy: z.ZodObject<{
|
|
39
39
|
kind: z.ZodLiteral<ContentStrategyKind.RAW>;
|
|
40
40
|
content: z.ZodString;
|
|
41
41
|
subject: z.ZodOptional<z.ZodString>;
|
|
42
42
|
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
43
|
-
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED"]>, z.ZodAny>>;
|
|
43
|
+
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED", "GHOST_MODE_ENABLED"]>, z.ZodAny>>;
|
|
44
44
|
}, "strip", z.ZodTypeAny, {
|
|
45
45
|
kind: ContentStrategyKind.RAW;
|
|
46
46
|
content: string;
|
|
47
47
|
subject?: string | undefined;
|
|
48
48
|
context?: Record<string, string> | undefined;
|
|
49
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
49
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
50
50
|
}, {
|
|
51
51
|
kind: ContentStrategyKind.RAW;
|
|
52
52
|
content: string;
|
|
53
53
|
subject?: string | undefined;
|
|
54
54
|
context?: Record<string, string> | undefined;
|
|
55
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
55
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
56
56
|
}>;
|
|
57
57
|
export type RawContentStrategy = z.infer<typeof _RawContentStrategy>;
|
|
58
58
|
export declare const _TemplateContentStrategy: z.ZodObject<{
|
|
59
59
|
kind: z.ZodLiteral<ContentStrategyKind.TEMPLATE>;
|
|
60
60
|
templateId: z.ZodString;
|
|
61
61
|
context: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
62
|
-
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED"]>, z.ZodAny>>;
|
|
62
|
+
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED", "GHOST_MODE_ENABLED"]>, z.ZodAny>>;
|
|
63
63
|
}, "strip", z.ZodTypeAny, {
|
|
64
64
|
kind: ContentStrategyKind.TEMPLATE;
|
|
65
65
|
context: Record<string, string>;
|
|
66
66
|
templateId: string;
|
|
67
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
67
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
68
68
|
}, {
|
|
69
69
|
kind: ContentStrategyKind.TEMPLATE;
|
|
70
70
|
context: Record<string, string>;
|
|
71
71
|
templateId: string;
|
|
72
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
72
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
73
73
|
}>;
|
|
74
74
|
export type TemplateContentStrategy = z.infer<typeof _TemplateContentStrategy>;
|
|
75
75
|
export declare const _FindingContentStrategy: z.ZodObject<{
|
|
76
76
|
kind: z.ZodLiteral<ContentStrategyKind.FINDING>;
|
|
77
77
|
fid: z.ZodString;
|
|
78
|
-
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED"]>, z.ZodAny>>;
|
|
78
|
+
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED", "GHOST_MODE_ENABLED"]>, z.ZodAny>>;
|
|
79
79
|
}, "strip", z.ZodTypeAny, {
|
|
80
80
|
kind: ContentStrategyKind.FINDING;
|
|
81
81
|
fid: string;
|
|
82
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
82
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
83
83
|
}, {
|
|
84
84
|
kind: ContentStrategyKind.FINDING;
|
|
85
85
|
fid: string;
|
|
86
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
86
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
87
87
|
}>;
|
|
88
88
|
export type FindingContentStrategy = z.infer<typeof _FindingContentStrategy>;
|
|
89
89
|
export declare const _SlackDeliveryStrategy: z.ZodObject<{
|
|
@@ -160,46 +160,46 @@ export declare const _BaseNotificationUpsertDto: z.ZodObject<{
|
|
|
160
160
|
content: z.ZodString;
|
|
161
161
|
subject: z.ZodOptional<z.ZodString>;
|
|
162
162
|
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
163
|
-
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED"]>, z.ZodAny>>;
|
|
163
|
+
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED", "GHOST_MODE_ENABLED"]>, z.ZodAny>>;
|
|
164
164
|
}, "strip", z.ZodTypeAny, {
|
|
165
165
|
kind: ContentStrategyKind.RAW;
|
|
166
166
|
content: string;
|
|
167
167
|
subject?: string | undefined;
|
|
168
168
|
context?: Record<string, string> | undefined;
|
|
169
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
169
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
170
170
|
}, {
|
|
171
171
|
kind: ContentStrategyKind.RAW;
|
|
172
172
|
content: string;
|
|
173
173
|
subject?: string | undefined;
|
|
174
174
|
context?: Record<string, string> | undefined;
|
|
175
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
175
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
176
176
|
}>, z.ZodObject<{
|
|
177
177
|
kind: z.ZodLiteral<ContentStrategyKind.FINDING>;
|
|
178
178
|
fid: z.ZodString;
|
|
179
|
-
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED"]>, z.ZodAny>>;
|
|
179
|
+
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED", "GHOST_MODE_ENABLED"]>, z.ZodAny>>;
|
|
180
180
|
}, "strip", z.ZodTypeAny, {
|
|
181
181
|
kind: ContentStrategyKind.FINDING;
|
|
182
182
|
fid: string;
|
|
183
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
183
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
184
184
|
}, {
|
|
185
185
|
kind: ContentStrategyKind.FINDING;
|
|
186
186
|
fid: string;
|
|
187
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
187
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
188
188
|
}>, z.ZodObject<{
|
|
189
189
|
kind: z.ZodLiteral<ContentStrategyKind.TEMPLATE>;
|
|
190
190
|
templateId: z.ZodString;
|
|
191
191
|
context: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
192
|
-
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED"]>, z.ZodAny>>;
|
|
192
|
+
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED", "GHOST_MODE_ENABLED"]>, z.ZodAny>>;
|
|
193
193
|
}, "strip", z.ZodTypeAny, {
|
|
194
194
|
kind: ContentStrategyKind.TEMPLATE;
|
|
195
195
|
context: Record<string, string>;
|
|
196
196
|
templateId: string;
|
|
197
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
197
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
198
198
|
}, {
|
|
199
199
|
kind: ContentStrategyKind.TEMPLATE;
|
|
200
200
|
context: Record<string, string>;
|
|
201
201
|
templateId: string;
|
|
202
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
202
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
203
203
|
}>]>;
|
|
204
204
|
fid: z.ZodOptional<z.ZodString>;
|
|
205
205
|
uid: z.ZodOptional<z.ZodString>;
|
|
@@ -211,16 +211,16 @@ export declare const _BaseNotificationUpsertDto: z.ZodObject<{
|
|
|
211
211
|
content: string;
|
|
212
212
|
subject?: string | undefined;
|
|
213
213
|
context?: Record<string, string> | undefined;
|
|
214
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
214
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
215
215
|
} | {
|
|
216
216
|
kind: ContentStrategyKind.TEMPLATE;
|
|
217
217
|
context: Record<string, string>;
|
|
218
218
|
templateId: string;
|
|
219
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
219
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
220
220
|
} | {
|
|
221
221
|
kind: ContentStrategyKind.FINDING;
|
|
222
222
|
fid: string;
|
|
223
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
223
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
224
224
|
};
|
|
225
225
|
id?: string | undefined;
|
|
226
226
|
createdAt?: string | undefined;
|
|
@@ -236,16 +236,16 @@ export declare const _BaseNotificationUpsertDto: z.ZodObject<{
|
|
|
236
236
|
content: string;
|
|
237
237
|
subject?: string | undefined;
|
|
238
238
|
context?: Record<string, string> | undefined;
|
|
239
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
239
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
240
240
|
} | {
|
|
241
241
|
kind: ContentStrategyKind.TEMPLATE;
|
|
242
242
|
context: Record<string, string>;
|
|
243
243
|
templateId: string;
|
|
244
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
244
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
245
245
|
} | {
|
|
246
246
|
kind: ContentStrategyKind.FINDING;
|
|
247
247
|
fid: string;
|
|
248
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
248
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
249
249
|
};
|
|
250
250
|
id?: string | undefined;
|
|
251
251
|
createdAt?: string | undefined;
|
|
@@ -268,46 +268,46 @@ export declare const _SlackNotificationUpsertDto: z.ZodObject<{
|
|
|
268
268
|
content: z.ZodString;
|
|
269
269
|
subject: z.ZodOptional<z.ZodString>;
|
|
270
270
|
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
271
|
-
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED"]>, z.ZodAny>>;
|
|
271
|
+
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED", "GHOST_MODE_ENABLED"]>, z.ZodAny>>;
|
|
272
272
|
}, "strip", z.ZodTypeAny, {
|
|
273
273
|
kind: ContentStrategyKind.RAW;
|
|
274
274
|
content: string;
|
|
275
275
|
subject?: string | undefined;
|
|
276
276
|
context?: Record<string, string> | undefined;
|
|
277
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
277
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
278
278
|
}, {
|
|
279
279
|
kind: ContentStrategyKind.RAW;
|
|
280
280
|
content: string;
|
|
281
281
|
subject?: string | undefined;
|
|
282
282
|
context?: Record<string, string> | undefined;
|
|
283
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
283
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
284
284
|
}>, z.ZodObject<{
|
|
285
285
|
kind: z.ZodLiteral<ContentStrategyKind.FINDING>;
|
|
286
286
|
fid: z.ZodString;
|
|
287
|
-
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED"]>, z.ZodAny>>;
|
|
287
|
+
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED", "GHOST_MODE_ENABLED"]>, z.ZodAny>>;
|
|
288
288
|
}, "strip", z.ZodTypeAny, {
|
|
289
289
|
kind: ContentStrategyKind.FINDING;
|
|
290
290
|
fid: string;
|
|
291
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
291
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
292
292
|
}, {
|
|
293
293
|
kind: ContentStrategyKind.FINDING;
|
|
294
294
|
fid: string;
|
|
295
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
295
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
296
296
|
}>, z.ZodObject<{
|
|
297
297
|
kind: z.ZodLiteral<ContentStrategyKind.TEMPLATE>;
|
|
298
298
|
templateId: z.ZodString;
|
|
299
299
|
context: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
300
|
-
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED"]>, z.ZodAny>>;
|
|
300
|
+
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED", "GHOST_MODE_ENABLED"]>, z.ZodAny>>;
|
|
301
301
|
}, "strip", z.ZodTypeAny, {
|
|
302
302
|
kind: ContentStrategyKind.TEMPLATE;
|
|
303
303
|
context: Record<string, string>;
|
|
304
304
|
templateId: string;
|
|
305
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
305
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
306
306
|
}, {
|
|
307
307
|
kind: ContentStrategyKind.TEMPLATE;
|
|
308
308
|
context: Record<string, string>;
|
|
309
309
|
templateId: string;
|
|
310
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
310
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
311
311
|
}>]>;
|
|
312
312
|
agentId: z.ZodOptional<z.ZodString>;
|
|
313
313
|
deliveryChannel: z.ZodLiteral<DeliveryStrategyKind.SLACK>;
|
|
@@ -356,16 +356,16 @@ export declare const _SlackNotificationUpsertDto: z.ZodObject<{
|
|
|
356
356
|
content: string;
|
|
357
357
|
subject?: string | undefined;
|
|
358
358
|
context?: Record<string, string> | undefined;
|
|
359
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
359
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
360
360
|
} | {
|
|
361
361
|
kind: ContentStrategyKind.TEMPLATE;
|
|
362
362
|
context: Record<string, string>;
|
|
363
363
|
templateId: string;
|
|
364
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
364
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
365
365
|
} | {
|
|
366
366
|
kind: ContentStrategyKind.FINDING;
|
|
367
367
|
fid: string;
|
|
368
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
368
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
369
369
|
};
|
|
370
370
|
deliveryChannel: DeliveryStrategyKind.SLACK;
|
|
371
371
|
deliveryStrategy: {
|
|
@@ -392,16 +392,16 @@ export declare const _SlackNotificationUpsertDto: z.ZodObject<{
|
|
|
392
392
|
content: string;
|
|
393
393
|
subject?: string | undefined;
|
|
394
394
|
context?: Record<string, string> | undefined;
|
|
395
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
395
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
396
396
|
} | {
|
|
397
397
|
kind: ContentStrategyKind.TEMPLATE;
|
|
398
398
|
context: Record<string, string>;
|
|
399
399
|
templateId: string;
|
|
400
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
400
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
401
401
|
} | {
|
|
402
402
|
kind: ContentStrategyKind.FINDING;
|
|
403
403
|
fid: string;
|
|
404
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
404
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
405
405
|
};
|
|
406
406
|
deliveryChannel: DeliveryStrategyKind.SLACK;
|
|
407
407
|
deliveryStrategy: {
|
|
@@ -436,46 +436,46 @@ export declare const _EmailNotificationUpsertDto: z.ZodObject<{
|
|
|
436
436
|
content: z.ZodString;
|
|
437
437
|
subject: z.ZodOptional<z.ZodString>;
|
|
438
438
|
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
439
|
-
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED"]>, z.ZodAny>>;
|
|
439
|
+
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED", "GHOST_MODE_ENABLED"]>, z.ZodAny>>;
|
|
440
440
|
}, "strip", z.ZodTypeAny, {
|
|
441
441
|
kind: ContentStrategyKind.RAW;
|
|
442
442
|
content: string;
|
|
443
443
|
subject?: string | undefined;
|
|
444
444
|
context?: Record<string, string> | undefined;
|
|
445
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
445
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
446
446
|
}, {
|
|
447
447
|
kind: ContentStrategyKind.RAW;
|
|
448
448
|
content: string;
|
|
449
449
|
subject?: string | undefined;
|
|
450
450
|
context?: Record<string, string> | undefined;
|
|
451
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
451
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
452
452
|
}>, z.ZodObject<{
|
|
453
453
|
kind: z.ZodLiteral<ContentStrategyKind.FINDING>;
|
|
454
454
|
fid: z.ZodString;
|
|
455
|
-
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED"]>, z.ZodAny>>;
|
|
455
|
+
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED", "GHOST_MODE_ENABLED"]>, z.ZodAny>>;
|
|
456
456
|
}, "strip", z.ZodTypeAny, {
|
|
457
457
|
kind: ContentStrategyKind.FINDING;
|
|
458
458
|
fid: string;
|
|
459
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
459
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
460
460
|
}, {
|
|
461
461
|
kind: ContentStrategyKind.FINDING;
|
|
462
462
|
fid: string;
|
|
463
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
463
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
464
464
|
}>, z.ZodObject<{
|
|
465
465
|
kind: z.ZodLiteral<ContentStrategyKind.TEMPLATE>;
|
|
466
466
|
templateId: z.ZodString;
|
|
467
467
|
context: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
468
|
-
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED"]>, z.ZodAny>>;
|
|
468
|
+
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED", "GHOST_MODE_ENABLED"]>, z.ZodAny>>;
|
|
469
469
|
}, "strip", z.ZodTypeAny, {
|
|
470
470
|
kind: ContentStrategyKind.TEMPLATE;
|
|
471
471
|
context: Record<string, string>;
|
|
472
472
|
templateId: string;
|
|
473
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
473
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
474
474
|
}, {
|
|
475
475
|
kind: ContentStrategyKind.TEMPLATE;
|
|
476
476
|
context: Record<string, string>;
|
|
477
477
|
templateId: string;
|
|
478
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
478
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
479
479
|
}>]>;
|
|
480
480
|
agentId: z.ZodOptional<z.ZodString>;
|
|
481
481
|
deliveryChannel: z.ZodLiteral<DeliveryStrategyKind.EMAIL>;
|
|
@@ -509,16 +509,16 @@ export declare const _EmailNotificationUpsertDto: z.ZodObject<{
|
|
|
509
509
|
content: string;
|
|
510
510
|
subject?: string | undefined;
|
|
511
511
|
context?: Record<string, string> | undefined;
|
|
512
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
512
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
513
513
|
} | {
|
|
514
514
|
kind: ContentStrategyKind.TEMPLATE;
|
|
515
515
|
context: Record<string, string>;
|
|
516
516
|
templateId: string;
|
|
517
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
517
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
518
518
|
} | {
|
|
519
519
|
kind: ContentStrategyKind.FINDING;
|
|
520
520
|
fid: string;
|
|
521
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
521
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
522
522
|
};
|
|
523
523
|
deliveryChannel: DeliveryStrategyKind.EMAIL;
|
|
524
524
|
deliveryStrategy: {
|
|
@@ -542,16 +542,16 @@ export declare const _EmailNotificationUpsertDto: z.ZodObject<{
|
|
|
542
542
|
content: string;
|
|
543
543
|
subject?: string | undefined;
|
|
544
544
|
context?: Record<string, string> | undefined;
|
|
545
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
545
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
546
546
|
} | {
|
|
547
547
|
kind: ContentStrategyKind.TEMPLATE;
|
|
548
548
|
context: Record<string, string>;
|
|
549
549
|
templateId: string;
|
|
550
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
550
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
551
551
|
} | {
|
|
552
552
|
kind: ContentStrategyKind.FINDING;
|
|
553
553
|
fid: string;
|
|
554
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
554
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
555
555
|
};
|
|
556
556
|
deliveryChannel: DeliveryStrategyKind.EMAIL;
|
|
557
557
|
deliveryStrategy: {
|
|
@@ -583,46 +583,46 @@ export declare const _NotificationUpsertDto: z.ZodDiscriminatedUnion<"deliveryCh
|
|
|
583
583
|
content: z.ZodString;
|
|
584
584
|
subject: z.ZodOptional<z.ZodString>;
|
|
585
585
|
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
586
|
-
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED"]>, z.ZodAny>>;
|
|
586
|
+
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED", "GHOST_MODE_ENABLED"]>, z.ZodAny>>;
|
|
587
587
|
}, "strip", z.ZodTypeAny, {
|
|
588
588
|
kind: ContentStrategyKind.RAW;
|
|
589
589
|
content: string;
|
|
590
590
|
subject?: string | undefined;
|
|
591
591
|
context?: Record<string, string> | undefined;
|
|
592
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
592
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
593
593
|
}, {
|
|
594
594
|
kind: ContentStrategyKind.RAW;
|
|
595
595
|
content: string;
|
|
596
596
|
subject?: string | undefined;
|
|
597
597
|
context?: Record<string, string> | undefined;
|
|
598
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
598
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
599
599
|
}>, z.ZodObject<{
|
|
600
600
|
kind: z.ZodLiteral<ContentStrategyKind.FINDING>;
|
|
601
601
|
fid: z.ZodString;
|
|
602
|
-
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED"]>, z.ZodAny>>;
|
|
602
|
+
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED", "GHOST_MODE_ENABLED"]>, z.ZodAny>>;
|
|
603
603
|
}, "strip", z.ZodTypeAny, {
|
|
604
604
|
kind: ContentStrategyKind.FINDING;
|
|
605
605
|
fid: string;
|
|
606
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
606
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
607
607
|
}, {
|
|
608
608
|
kind: ContentStrategyKind.FINDING;
|
|
609
609
|
fid: string;
|
|
610
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
610
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
611
611
|
}>, z.ZodObject<{
|
|
612
612
|
kind: z.ZodLiteral<ContentStrategyKind.TEMPLATE>;
|
|
613
613
|
templateId: z.ZodString;
|
|
614
614
|
context: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
615
|
-
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED"]>, z.ZodAny>>;
|
|
615
|
+
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED", "GHOST_MODE_ENABLED"]>, z.ZodAny>>;
|
|
616
616
|
}, "strip", z.ZodTypeAny, {
|
|
617
617
|
kind: ContentStrategyKind.TEMPLATE;
|
|
618
618
|
context: Record<string, string>;
|
|
619
619
|
templateId: string;
|
|
620
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
620
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
621
621
|
}, {
|
|
622
622
|
kind: ContentStrategyKind.TEMPLATE;
|
|
623
623
|
context: Record<string, string>;
|
|
624
624
|
templateId: string;
|
|
625
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
625
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
626
626
|
}>]>;
|
|
627
627
|
agentId: z.ZodOptional<z.ZodString>;
|
|
628
628
|
deliveryChannel: z.ZodLiteral<DeliveryStrategyKind.SLACK>;
|
|
@@ -671,16 +671,16 @@ export declare const _NotificationUpsertDto: z.ZodDiscriminatedUnion<"deliveryCh
|
|
|
671
671
|
content: string;
|
|
672
672
|
subject?: string | undefined;
|
|
673
673
|
context?: Record<string, string> | undefined;
|
|
674
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
674
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
675
675
|
} | {
|
|
676
676
|
kind: ContentStrategyKind.TEMPLATE;
|
|
677
677
|
context: Record<string, string>;
|
|
678
678
|
templateId: string;
|
|
679
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
679
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
680
680
|
} | {
|
|
681
681
|
kind: ContentStrategyKind.FINDING;
|
|
682
682
|
fid: string;
|
|
683
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
683
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
684
684
|
};
|
|
685
685
|
deliveryChannel: DeliveryStrategyKind.SLACK;
|
|
686
686
|
deliveryStrategy: {
|
|
@@ -707,16 +707,16 @@ export declare const _NotificationUpsertDto: z.ZodDiscriminatedUnion<"deliveryCh
|
|
|
707
707
|
content: string;
|
|
708
708
|
subject?: string | undefined;
|
|
709
709
|
context?: Record<string, string> | undefined;
|
|
710
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
710
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
711
711
|
} | {
|
|
712
712
|
kind: ContentStrategyKind.TEMPLATE;
|
|
713
713
|
context: Record<string, string>;
|
|
714
714
|
templateId: string;
|
|
715
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
715
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
716
716
|
} | {
|
|
717
717
|
kind: ContentStrategyKind.FINDING;
|
|
718
718
|
fid: string;
|
|
719
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
719
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
720
720
|
};
|
|
721
721
|
deliveryChannel: DeliveryStrategyKind.SLACK;
|
|
722
722
|
deliveryStrategy: {
|
|
@@ -749,46 +749,46 @@ export declare const _NotificationUpsertDto: z.ZodDiscriminatedUnion<"deliveryCh
|
|
|
749
749
|
content: z.ZodString;
|
|
750
750
|
subject: z.ZodOptional<z.ZodString>;
|
|
751
751
|
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
752
|
-
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED"]>, z.ZodAny>>;
|
|
752
|
+
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED", "GHOST_MODE_ENABLED"]>, z.ZodAny>>;
|
|
753
753
|
}, "strip", z.ZodTypeAny, {
|
|
754
754
|
kind: ContentStrategyKind.RAW;
|
|
755
755
|
content: string;
|
|
756
756
|
subject?: string | undefined;
|
|
757
757
|
context?: Record<string, string> | undefined;
|
|
758
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
758
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
759
759
|
}, {
|
|
760
760
|
kind: ContentStrategyKind.RAW;
|
|
761
761
|
content: string;
|
|
762
762
|
subject?: string | undefined;
|
|
763
763
|
context?: Record<string, string> | undefined;
|
|
764
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
764
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
765
765
|
}>, z.ZodObject<{
|
|
766
766
|
kind: z.ZodLiteral<ContentStrategyKind.FINDING>;
|
|
767
767
|
fid: z.ZodString;
|
|
768
|
-
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED"]>, z.ZodAny>>;
|
|
768
|
+
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED", "GHOST_MODE_ENABLED"]>, z.ZodAny>>;
|
|
769
769
|
}, "strip", z.ZodTypeAny, {
|
|
770
770
|
kind: ContentStrategyKind.FINDING;
|
|
771
771
|
fid: string;
|
|
772
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
772
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
773
773
|
}, {
|
|
774
774
|
kind: ContentStrategyKind.FINDING;
|
|
775
775
|
fid: string;
|
|
776
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
776
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
777
777
|
}>, z.ZodObject<{
|
|
778
778
|
kind: z.ZodLiteral<ContentStrategyKind.TEMPLATE>;
|
|
779
779
|
templateId: z.ZodString;
|
|
780
780
|
context: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
781
|
-
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED"]>, z.ZodAny>>;
|
|
781
|
+
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED", "GHOST_MODE_ENABLED"]>, z.ZodAny>>;
|
|
782
782
|
}, "strip", z.ZodTypeAny, {
|
|
783
783
|
kind: ContentStrategyKind.TEMPLATE;
|
|
784
784
|
context: Record<string, string>;
|
|
785
785
|
templateId: string;
|
|
786
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
786
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
787
787
|
}, {
|
|
788
788
|
kind: ContentStrategyKind.TEMPLATE;
|
|
789
789
|
context: Record<string, string>;
|
|
790
790
|
templateId: string;
|
|
791
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
791
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
792
792
|
}>]>;
|
|
793
793
|
agentId: z.ZodOptional<z.ZodString>;
|
|
794
794
|
deliveryChannel: z.ZodLiteral<DeliveryStrategyKind.EMAIL>;
|
|
@@ -822,16 +822,16 @@ export declare const _NotificationUpsertDto: z.ZodDiscriminatedUnion<"deliveryCh
|
|
|
822
822
|
content: string;
|
|
823
823
|
subject?: string | undefined;
|
|
824
824
|
context?: Record<string, string> | undefined;
|
|
825
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
825
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
826
826
|
} | {
|
|
827
827
|
kind: ContentStrategyKind.TEMPLATE;
|
|
828
828
|
context: Record<string, string>;
|
|
829
829
|
templateId: string;
|
|
830
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
830
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
831
831
|
} | {
|
|
832
832
|
kind: ContentStrategyKind.FINDING;
|
|
833
833
|
fid: string;
|
|
834
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
834
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
835
835
|
};
|
|
836
836
|
deliveryChannel: DeliveryStrategyKind.EMAIL;
|
|
837
837
|
deliveryStrategy: {
|
|
@@ -855,16 +855,16 @@ export declare const _NotificationUpsertDto: z.ZodDiscriminatedUnion<"deliveryCh
|
|
|
855
855
|
content: string;
|
|
856
856
|
subject?: string | undefined;
|
|
857
857
|
context?: Record<string, string> | undefined;
|
|
858
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
858
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
859
859
|
} | {
|
|
860
860
|
kind: ContentStrategyKind.TEMPLATE;
|
|
861
861
|
context: Record<string, string>;
|
|
862
862
|
templateId: string;
|
|
863
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
863
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
864
864
|
} | {
|
|
865
865
|
kind: ContentStrategyKind.FINDING;
|
|
866
866
|
fid: string;
|
|
867
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
867
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
868
868
|
};
|
|
869
869
|
deliveryChannel: DeliveryStrategyKind.EMAIL;
|
|
870
870
|
deliveryStrategy: {
|
|
@@ -896,46 +896,46 @@ export declare const _NotificationDto: z.ZodIntersection<z.ZodDiscriminatedUnion
|
|
|
896
896
|
content: z.ZodString;
|
|
897
897
|
subject: z.ZodOptional<z.ZodString>;
|
|
898
898
|
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
899
|
-
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED"]>, z.ZodAny>>;
|
|
899
|
+
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED", "GHOST_MODE_ENABLED"]>, z.ZodAny>>;
|
|
900
900
|
}, "strip", z.ZodTypeAny, {
|
|
901
901
|
kind: ContentStrategyKind.RAW;
|
|
902
902
|
content: string;
|
|
903
903
|
subject?: string | undefined;
|
|
904
904
|
context?: Record<string, string> | undefined;
|
|
905
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
905
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
906
906
|
}, {
|
|
907
907
|
kind: ContentStrategyKind.RAW;
|
|
908
908
|
content: string;
|
|
909
909
|
subject?: string | undefined;
|
|
910
910
|
context?: Record<string, string> | undefined;
|
|
911
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
911
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
912
912
|
}>, z.ZodObject<{
|
|
913
913
|
kind: z.ZodLiteral<ContentStrategyKind.FINDING>;
|
|
914
914
|
fid: z.ZodString;
|
|
915
|
-
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED"]>, z.ZodAny>>;
|
|
915
|
+
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED", "GHOST_MODE_ENABLED"]>, z.ZodAny>>;
|
|
916
916
|
}, "strip", z.ZodTypeAny, {
|
|
917
917
|
kind: ContentStrategyKind.FINDING;
|
|
918
918
|
fid: string;
|
|
919
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
919
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
920
920
|
}, {
|
|
921
921
|
kind: ContentStrategyKind.FINDING;
|
|
922
922
|
fid: string;
|
|
923
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
923
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
924
924
|
}>, z.ZodObject<{
|
|
925
925
|
kind: z.ZodLiteral<ContentStrategyKind.TEMPLATE>;
|
|
926
926
|
templateId: z.ZodString;
|
|
927
927
|
context: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
928
|
-
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED"]>, z.ZodAny>>;
|
|
928
|
+
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED", "GHOST_MODE_ENABLED"]>, z.ZodAny>>;
|
|
929
929
|
}, "strip", z.ZodTypeAny, {
|
|
930
930
|
kind: ContentStrategyKind.TEMPLATE;
|
|
931
931
|
context: Record<string, string>;
|
|
932
932
|
templateId: string;
|
|
933
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
933
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
934
934
|
}, {
|
|
935
935
|
kind: ContentStrategyKind.TEMPLATE;
|
|
936
936
|
context: Record<string, string>;
|
|
937
937
|
templateId: string;
|
|
938
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
938
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
939
939
|
}>]>;
|
|
940
940
|
agentId: z.ZodOptional<z.ZodString>;
|
|
941
941
|
deliveryChannel: z.ZodLiteral<DeliveryStrategyKind.SLACK>;
|
|
@@ -984,16 +984,16 @@ export declare const _NotificationDto: z.ZodIntersection<z.ZodDiscriminatedUnion
|
|
|
984
984
|
content: string;
|
|
985
985
|
subject?: string | undefined;
|
|
986
986
|
context?: Record<string, string> | undefined;
|
|
987
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
987
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
988
988
|
} | {
|
|
989
989
|
kind: ContentStrategyKind.TEMPLATE;
|
|
990
990
|
context: Record<string, string>;
|
|
991
991
|
templateId: string;
|
|
992
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
992
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
993
993
|
} | {
|
|
994
994
|
kind: ContentStrategyKind.FINDING;
|
|
995
995
|
fid: string;
|
|
996
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
996
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
997
997
|
};
|
|
998
998
|
deliveryChannel: DeliveryStrategyKind.SLACK;
|
|
999
999
|
deliveryStrategy: {
|
|
@@ -1020,16 +1020,16 @@ export declare const _NotificationDto: z.ZodIntersection<z.ZodDiscriminatedUnion
|
|
|
1020
1020
|
content: string;
|
|
1021
1021
|
subject?: string | undefined;
|
|
1022
1022
|
context?: Record<string, string> | undefined;
|
|
1023
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
1023
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
1024
1024
|
} | {
|
|
1025
1025
|
kind: ContentStrategyKind.TEMPLATE;
|
|
1026
1026
|
context: Record<string, string>;
|
|
1027
1027
|
templateId: string;
|
|
1028
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
1028
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
1029
1029
|
} | {
|
|
1030
1030
|
kind: ContentStrategyKind.FINDING;
|
|
1031
1031
|
fid: string;
|
|
1032
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
1032
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
1033
1033
|
};
|
|
1034
1034
|
deliveryChannel: DeliveryStrategyKind.SLACK;
|
|
1035
1035
|
deliveryStrategy: {
|
|
@@ -1062,46 +1062,46 @@ export declare const _NotificationDto: z.ZodIntersection<z.ZodDiscriminatedUnion
|
|
|
1062
1062
|
content: z.ZodString;
|
|
1063
1063
|
subject: z.ZodOptional<z.ZodString>;
|
|
1064
1064
|
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1065
|
-
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED"]>, z.ZodAny>>;
|
|
1065
|
+
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED", "GHOST_MODE_ENABLED"]>, z.ZodAny>>;
|
|
1066
1066
|
}, "strip", z.ZodTypeAny, {
|
|
1067
1067
|
kind: ContentStrategyKind.RAW;
|
|
1068
1068
|
content: string;
|
|
1069
1069
|
subject?: string | undefined;
|
|
1070
1070
|
context?: Record<string, string> | undefined;
|
|
1071
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
1071
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
1072
1072
|
}, {
|
|
1073
1073
|
kind: ContentStrategyKind.RAW;
|
|
1074
1074
|
content: string;
|
|
1075
1075
|
subject?: string | undefined;
|
|
1076
1076
|
context?: Record<string, string> | undefined;
|
|
1077
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
1077
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
1078
1078
|
}>, z.ZodObject<{
|
|
1079
1079
|
kind: z.ZodLiteral<ContentStrategyKind.FINDING>;
|
|
1080
1080
|
fid: z.ZodString;
|
|
1081
|
-
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED"]>, z.ZodAny>>;
|
|
1081
|
+
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED", "GHOST_MODE_ENABLED"]>, z.ZodAny>>;
|
|
1082
1082
|
}, "strip", z.ZodTypeAny, {
|
|
1083
1083
|
kind: ContentStrategyKind.FINDING;
|
|
1084
1084
|
fid: string;
|
|
1085
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
1085
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
1086
1086
|
}, {
|
|
1087
1087
|
kind: ContentStrategyKind.FINDING;
|
|
1088
1088
|
fid: string;
|
|
1089
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
1089
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
1090
1090
|
}>, z.ZodObject<{
|
|
1091
1091
|
kind: z.ZodLiteral<ContentStrategyKind.TEMPLATE>;
|
|
1092
1092
|
templateId: z.ZodString;
|
|
1093
1093
|
context: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1094
|
-
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED"]>, z.ZodAny>>;
|
|
1094
|
+
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED", "GHOST_MODE_ENABLED"]>, z.ZodAny>>;
|
|
1095
1095
|
}, "strip", z.ZodTypeAny, {
|
|
1096
1096
|
kind: ContentStrategyKind.TEMPLATE;
|
|
1097
1097
|
context: Record<string, string>;
|
|
1098
1098
|
templateId: string;
|
|
1099
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
1099
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
1100
1100
|
}, {
|
|
1101
1101
|
kind: ContentStrategyKind.TEMPLATE;
|
|
1102
1102
|
context: Record<string, string>;
|
|
1103
1103
|
templateId: string;
|
|
1104
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
1104
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
1105
1105
|
}>]>;
|
|
1106
1106
|
agentId: z.ZodOptional<z.ZodString>;
|
|
1107
1107
|
deliveryChannel: z.ZodLiteral<DeliveryStrategyKind.EMAIL>;
|
|
@@ -1135,16 +1135,16 @@ export declare const _NotificationDto: z.ZodIntersection<z.ZodDiscriminatedUnion
|
|
|
1135
1135
|
content: string;
|
|
1136
1136
|
subject?: string | undefined;
|
|
1137
1137
|
context?: Record<string, string> | undefined;
|
|
1138
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
1138
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
1139
1139
|
} | {
|
|
1140
1140
|
kind: ContentStrategyKind.TEMPLATE;
|
|
1141
1141
|
context: Record<string, string>;
|
|
1142
1142
|
templateId: string;
|
|
1143
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
1143
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
1144
1144
|
} | {
|
|
1145
1145
|
kind: ContentStrategyKind.FINDING;
|
|
1146
1146
|
fid: string;
|
|
1147
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
1147
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
1148
1148
|
};
|
|
1149
1149
|
deliveryChannel: DeliveryStrategyKind.EMAIL;
|
|
1150
1150
|
deliveryStrategy: {
|
|
@@ -1168,16 +1168,16 @@ export declare const _NotificationDto: z.ZodIntersection<z.ZodDiscriminatedUnion
|
|
|
1168
1168
|
content: string;
|
|
1169
1169
|
subject?: string | undefined;
|
|
1170
1170
|
context?: Record<string, string> | undefined;
|
|
1171
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
1171
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
1172
1172
|
} | {
|
|
1173
1173
|
kind: ContentStrategyKind.TEMPLATE;
|
|
1174
1174
|
context: Record<string, string>;
|
|
1175
1175
|
templateId: string;
|
|
1176
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
1176
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
1177
1177
|
} | {
|
|
1178
1178
|
kind: ContentStrategyKind.FINDING;
|
|
1179
1179
|
fid: string;
|
|
1180
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
1180
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
1181
1181
|
};
|
|
1182
1182
|
deliveryChannel: DeliveryStrategyKind.EMAIL;
|
|
1183
1183
|
deliveryStrategy: {
|
|
@@ -1223,19 +1223,19 @@ export declare const _CreateNotificationDto: z.ZodObject<{
|
|
|
1223
1223
|
content: z.ZodString;
|
|
1224
1224
|
subject: z.ZodOptional<z.ZodString>;
|
|
1225
1225
|
context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1226
|
-
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED"]>, z.ZodAny>>;
|
|
1226
|
+
flowContext: z.ZodOptional<z.ZodRecord<z.ZodEnum<["TONE", "ACTION_GET_INSTRUCTIONS_ENABLED", "GHOST_MODE_ENABLED"]>, z.ZodAny>>;
|
|
1227
1227
|
}, "strip", z.ZodTypeAny, {
|
|
1228
1228
|
kind: ContentStrategyKind.RAW;
|
|
1229
1229
|
content: string;
|
|
1230
1230
|
subject?: string | undefined;
|
|
1231
1231
|
context?: Record<string, string> | undefined;
|
|
1232
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
1232
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
1233
1233
|
}, {
|
|
1234
1234
|
kind: ContentStrategyKind.RAW;
|
|
1235
1235
|
content: string;
|
|
1236
1236
|
subject?: string | undefined;
|
|
1237
1237
|
context?: Record<string, string> | undefined;
|
|
1238
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
1238
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
1239
1239
|
}>;
|
|
1240
1240
|
options: z.ZodObject<{
|
|
1241
1241
|
copySecOpsTeam: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1257,7 +1257,7 @@ export declare const _CreateNotificationDto: z.ZodObject<{
|
|
|
1257
1257
|
content: string;
|
|
1258
1258
|
subject?: string | undefined;
|
|
1259
1259
|
context?: Record<string, string> | undefined;
|
|
1260
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
1260
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
1261
1261
|
};
|
|
1262
1262
|
channel: DeliveryStrategyKind;
|
|
1263
1263
|
id?: string | undefined;
|
|
@@ -1278,7 +1278,7 @@ export declare const _CreateNotificationDto: z.ZodObject<{
|
|
|
1278
1278
|
content: string;
|
|
1279
1279
|
subject?: string | undefined;
|
|
1280
1280
|
context?: Record<string, string> | undefined;
|
|
1281
|
-
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED", any>> | undefined;
|
|
1281
|
+
flowContext?: Partial<Record<"TONE" | "ACTION_GET_INSTRUCTIONS_ENABLED" | "GHOST_MODE_ENABLED", any>> | undefined;
|
|
1282
1282
|
};
|
|
1283
1283
|
channel: DeliveryStrategyKind;
|
|
1284
1284
|
id?: string | undefined;
|