@scout9/app 1.0.0-alpha.0.3.1 → 1.0.0-alpha.0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{dev-73437873.cjs → dev-b57781e5.cjs} +114 -1031
- package/dist/{index-78f40e9a.cjs → index-6b64a6ac.cjs} +26 -10
- package/dist/index.cjs +4 -4
- package/dist/{macros-44f1f872.cjs → macros-5be965e9.cjs} +1 -1
- package/dist/{multipart-parser-12c1b026.cjs → multipart-parser-77660bcb.cjs} +4 -4
- package/dist/schemas.cjs +1 -1
- package/dist/{spirits-76855e30.cjs → spirits-d3dafe71.cjs} +2 -2
- package/dist/spirits.cjs +1 -1
- package/dist/testing-tools.cjs +3 -3
- package/package.json +1 -1
- package/src/core/templates/app.js +9 -2
- package/src/platform.js +18 -3
- package/src/public.d.ts +16 -4
- package/src/runtime/macros/event.js +2 -1
- package/src/runtime/schemas/conversation.js +11 -1
- package/src/testing-tools/dev.js +1 -1
- package/src/testing-tools/spirits.js +2 -2
- package/types/index.d.ts +625 -601
- package/types/index.d.ts.map +1 -1
package/types/index.d.ts
CHANGED
|
@@ -77,6 +77,9 @@ declare module '@scout9/app' {
|
|
|
77
77
|
*
|
|
78
78
|
* Calling this method will lock the conversation and prevent auto replies from being sent to the user.
|
|
79
79
|
*
|
|
80
|
+
* @example - basic forward
|
|
81
|
+
* forward()
|
|
82
|
+
*
|
|
80
83
|
* @example - end of workflow
|
|
81
84
|
* forward("User wants 1 cheese pizza ready for pick");
|
|
82
85
|
*
|
|
@@ -87,7 +90,7 @@ declare module '@scout9/app' {
|
|
|
87
90
|
* reply("Let me know if you're looking for a gutter cleaning").forward("User responded to gutter cleaning request", {mode: 'after-reply'});
|
|
88
91
|
*
|
|
89
92
|
* */
|
|
90
|
-
export const forward: (message
|
|
93
|
+
export const forward: (message?: string, options?: OptionsForward) => EventMacros;
|
|
91
94
|
/**
|
|
92
95
|
* Manual message to send to the customer from the workflow.
|
|
93
96
|
*
|
|
@@ -146,6 +149,8 @@ declare module '@scout9/app' {
|
|
|
146
149
|
* - another phone or email to forward to instead of owner
|
|
147
150
|
*/
|
|
148
151
|
to?: string;
|
|
152
|
+
|
|
153
|
+
resetIntent?: boolean;
|
|
149
154
|
};
|
|
150
155
|
/**
|
|
151
156
|
* - Extends `WorkflowResponseSlotBase` to include keywords.
|
|
@@ -181,8 +186,7 @@ declare module '@scout9/app' {
|
|
|
181
186
|
output: Record<string, any>[];
|
|
182
187
|
}
|
|
183
188
|
|
|
184
|
-
|
|
185
|
-
export type ConversationContext = Record<string, any>;
|
|
189
|
+
export type ConversationContext = Record<string, string | number | boolean | null | Array<string | number | boolean | null>>;
|
|
186
190
|
|
|
187
191
|
export type ContextExamples = (ContextExampleWithTrainingData | ConversationContext)[];
|
|
188
192
|
export type ContextOutput = Record<string, any>;
|
|
@@ -488,7 +492,15 @@ declare module '@scout9/app' {
|
|
|
488
492
|
};
|
|
489
493
|
|
|
490
494
|
export type Scout9ProjectBuildConfig = Scout9ProjectConfig & {
|
|
491
|
-
agents:
|
|
495
|
+
agents: AgentsConfiguration;
|
|
496
|
+
/**
|
|
497
|
+
* @deprecated use agents
|
|
498
|
+
*/
|
|
499
|
+
personas?: AgentsConfiguration;
|
|
500
|
+
/**
|
|
501
|
+
* @deprecated use agents
|
|
502
|
+
*/
|
|
503
|
+
persona?: AgentsConfiguration;
|
|
492
504
|
entities: EntityRootProjectConfiguration[];
|
|
493
505
|
workflows: WorkflowConfiguration[];
|
|
494
506
|
};
|
|
@@ -3478,15 +3490,15 @@ declare module '@scout9/app/schemas' {
|
|
|
3478
3490
|
*/
|
|
3479
3491
|
export const FollowupBaseSchema: z.ZodObject<{
|
|
3480
3492
|
scheduled: z.ZodNumber;
|
|
3481
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
3493
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
3482
3494
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
3483
3495
|
}, "strip", z.ZodTypeAny, {
|
|
3484
3496
|
scheduled: number;
|
|
3485
|
-
cancelIf?: Record<string,
|
|
3497
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
3486
3498
|
overrideLock?: boolean | undefined;
|
|
3487
3499
|
}, {
|
|
3488
3500
|
scheduled: number;
|
|
3489
|
-
cancelIf?: Record<string,
|
|
3501
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
3490
3502
|
overrideLock?: boolean | undefined;
|
|
3491
3503
|
}>;
|
|
3492
3504
|
/**
|
|
@@ -3494,22 +3506,22 @@ declare module '@scout9/app/schemas' {
|
|
|
3494
3506
|
*/
|
|
3495
3507
|
export const FollowupSchema: z.ZodUnion<[z.ZodObject<{
|
|
3496
3508
|
scheduled: z.ZodNumber;
|
|
3497
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
3509
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
3498
3510
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
3499
3511
|
message: z.ZodString;
|
|
3500
3512
|
}, "strip", z.ZodTypeAny, {
|
|
3501
3513
|
message: string;
|
|
3502
3514
|
scheduled: number;
|
|
3503
|
-
cancelIf?: Record<string,
|
|
3515
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
3504
3516
|
overrideLock?: boolean | undefined;
|
|
3505
3517
|
}, {
|
|
3506
3518
|
message: string;
|
|
3507
3519
|
scheduled: number;
|
|
3508
|
-
cancelIf?: Record<string,
|
|
3520
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
3509
3521
|
overrideLock?: boolean | undefined;
|
|
3510
3522
|
}>, z.ZodObject<{
|
|
3511
3523
|
scheduled: z.ZodNumber;
|
|
3512
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
3524
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
3513
3525
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
3514
3526
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
3515
3527
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -3555,7 +3567,7 @@ declare module '@scout9/app/schemas' {
|
|
|
3555
3567
|
id?: string | undefined;
|
|
3556
3568
|
persist?: boolean | undefined;
|
|
3557
3569
|
})[] | undefined);
|
|
3558
|
-
cancelIf?: Record<string,
|
|
3570
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
3559
3571
|
overrideLock?: boolean | undefined;
|
|
3560
3572
|
}, {
|
|
3561
3573
|
scheduled: number;
|
|
@@ -3576,7 +3588,7 @@ declare module '@scout9/app/schemas' {
|
|
|
3576
3588
|
id?: string | undefined;
|
|
3577
3589
|
persist?: boolean | undefined;
|
|
3578
3590
|
})[] | undefined);
|
|
3579
|
-
cancelIf?: Record<string,
|
|
3591
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
3580
3592
|
overrideLock?: boolean | undefined;
|
|
3581
3593
|
}>]>;
|
|
3582
3594
|
export const WorkflowConfigurationSchema: z.ZodObject<{
|
|
@@ -3663,12 +3675,18 @@ declare module '@scout9/app/schemas' {
|
|
|
3663
3675
|
platformEmailThreadId?: string | undefined;
|
|
3664
3676
|
}>>;
|
|
3665
3677
|
locked: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
3678
|
+
/**
|
|
3679
|
+
* The intended response provided by the WorkflowResponseMessageApiRequest
|
|
3680
|
+
*/
|
|
3666
3681
|
lockedReason: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3667
3682
|
lockAttempts: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
3668
3683
|
forwardedTo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3669
3684
|
forwarded: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3670
3685
|
forwardNote: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3671
3686
|
intent: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3687
|
+
/**
|
|
3688
|
+
* Base follow up schema to follow up with the client
|
|
3689
|
+
*/
|
|
3672
3690
|
intentScore: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
3673
3691
|
anticipate: z.ZodOptional<z.ZodObject<{
|
|
3674
3692
|
type: z.ZodEnum<["did", "literal", "context"]>;
|
|
@@ -4204,26 +4222,26 @@ declare module '@scout9/app/schemas' {
|
|
|
4204
4222
|
message: z.ZodOptional<z.ZodString>;
|
|
4205
4223
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
4206
4224
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
4207
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
4225
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
4208
4226
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
4209
4227
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
4210
4228
|
scheduled: z.ZodNumber;
|
|
4211
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
4229
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
4212
4230
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
4213
4231
|
message: z.ZodString;
|
|
4214
4232
|
}, "strip", z.ZodTypeAny, {
|
|
4215
4233
|
message: string;
|
|
4216
4234
|
scheduled: number;
|
|
4217
|
-
cancelIf?: Record<string,
|
|
4235
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4218
4236
|
overrideLock?: boolean | undefined;
|
|
4219
4237
|
}, {
|
|
4220
4238
|
message: string;
|
|
4221
4239
|
scheduled: number;
|
|
4222
|
-
cancelIf?: Record<string,
|
|
4240
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4223
4241
|
overrideLock?: boolean | undefined;
|
|
4224
4242
|
}>, z.ZodObject<{
|
|
4225
4243
|
scheduled: z.ZodNumber;
|
|
4226
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
4244
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
4227
4245
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
4228
4246
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
4229
4247
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -4269,7 +4287,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4269
4287
|
id?: string | undefined;
|
|
4270
4288
|
persist?: boolean | undefined;
|
|
4271
4289
|
})[] | undefined);
|
|
4272
|
-
cancelIf?: Record<string,
|
|
4290
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4273
4291
|
overrideLock?: boolean | undefined;
|
|
4274
4292
|
}, {
|
|
4275
4293
|
scheduled: number;
|
|
@@ -4290,7 +4308,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4290
4308
|
id?: string | undefined;
|
|
4291
4309
|
persist?: boolean | undefined;
|
|
4292
4310
|
})[] | undefined);
|
|
4293
|
-
cancelIf?: Record<string,
|
|
4311
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4294
4312
|
overrideLock?: boolean | undefined;
|
|
4295
4313
|
}>]>>;
|
|
4296
4314
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4313,12 +4331,12 @@ declare module '@scout9/app/schemas' {
|
|
|
4313
4331
|
message?: string | undefined;
|
|
4314
4332
|
secondsDelay?: number | undefined;
|
|
4315
4333
|
scheduled?: number | undefined;
|
|
4316
|
-
contextUpsert?: Record<string,
|
|
4334
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4317
4335
|
resetIntent?: boolean | undefined;
|
|
4318
4336
|
followup?: {
|
|
4319
4337
|
message: string;
|
|
4320
4338
|
scheduled: number;
|
|
4321
|
-
cancelIf?: Record<string,
|
|
4339
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4322
4340
|
overrideLock?: boolean | undefined;
|
|
4323
4341
|
} | {
|
|
4324
4342
|
scheduled: number;
|
|
@@ -4339,7 +4357,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4339
4357
|
id?: string | undefined;
|
|
4340
4358
|
persist?: boolean | undefined;
|
|
4341
4359
|
})[] | undefined);
|
|
4342
|
-
cancelIf?: Record<string,
|
|
4360
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4343
4361
|
overrideLock?: boolean | undefined;
|
|
4344
4362
|
} | undefined;
|
|
4345
4363
|
}, {
|
|
@@ -4362,12 +4380,12 @@ declare module '@scout9/app/schemas' {
|
|
|
4362
4380
|
message?: string | undefined;
|
|
4363
4381
|
secondsDelay?: number | undefined;
|
|
4364
4382
|
scheduled?: number | undefined;
|
|
4365
|
-
contextUpsert?: Record<string,
|
|
4383
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4366
4384
|
resetIntent?: boolean | undefined;
|
|
4367
4385
|
followup?: {
|
|
4368
4386
|
message: string;
|
|
4369
4387
|
scheduled: number;
|
|
4370
|
-
cancelIf?: Record<string,
|
|
4388
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4371
4389
|
overrideLock?: boolean | undefined;
|
|
4372
4390
|
} | {
|
|
4373
4391
|
scheduled: number;
|
|
@@ -4388,7 +4406,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4388
4406
|
id?: string | undefined;
|
|
4389
4407
|
persist?: boolean | undefined;
|
|
4390
4408
|
})[] | undefined);
|
|
4391
|
-
cancelIf?: Record<string,
|
|
4409
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4392
4410
|
overrideLock?: boolean | undefined;
|
|
4393
4411
|
} | undefined;
|
|
4394
4412
|
}>;
|
|
@@ -4439,26 +4457,26 @@ declare module '@scout9/app/schemas' {
|
|
|
4439
4457
|
}>]>, "many">]>>;
|
|
4440
4458
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4441
4459
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
4442
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
4460
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
4443
4461
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
4444
4462
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
4445
4463
|
scheduled: z.ZodNumber;
|
|
4446
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
4464
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
4447
4465
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
4448
4466
|
message: z.ZodString;
|
|
4449
4467
|
}, "strip", z.ZodTypeAny, {
|
|
4450
4468
|
message: string;
|
|
4451
4469
|
scheduled: number;
|
|
4452
|
-
cancelIf?: Record<string,
|
|
4470
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4453
4471
|
overrideLock?: boolean | undefined;
|
|
4454
4472
|
}, {
|
|
4455
4473
|
message: string;
|
|
4456
4474
|
scheduled: number;
|
|
4457
|
-
cancelIf?: Record<string,
|
|
4475
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4458
4476
|
overrideLock?: boolean | undefined;
|
|
4459
4477
|
}>, z.ZodObject<{
|
|
4460
4478
|
scheduled: z.ZodNumber;
|
|
4461
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
4479
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
4462
4480
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
4463
4481
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
4464
4482
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -4504,7 +4522,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4504
4522
|
id?: string | undefined;
|
|
4505
4523
|
persist?: boolean | undefined;
|
|
4506
4524
|
})[] | undefined);
|
|
4507
|
-
cancelIf?: Record<string,
|
|
4525
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4508
4526
|
overrideLock?: boolean | undefined;
|
|
4509
4527
|
}, {
|
|
4510
4528
|
scheduled: number;
|
|
@@ -4525,7 +4543,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4525
4543
|
id?: string | undefined;
|
|
4526
4544
|
persist?: boolean | undefined;
|
|
4527
4545
|
})[] | undefined);
|
|
4528
|
-
cancelIf?: Record<string,
|
|
4546
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4529
4547
|
overrideLock?: boolean | undefined;
|
|
4530
4548
|
}>]>>;
|
|
4531
4549
|
anticipate: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
@@ -4574,26 +4592,26 @@ declare module '@scout9/app/schemas' {
|
|
|
4574
4592
|
message: z.ZodOptional<z.ZodString>;
|
|
4575
4593
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
4576
4594
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
4577
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
4595
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
4578
4596
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
4579
4597
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
4580
4598
|
scheduled: z.ZodNumber;
|
|
4581
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
4599
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
4582
4600
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
4583
4601
|
message: z.ZodString;
|
|
4584
4602
|
}, "strip", z.ZodTypeAny, {
|
|
4585
4603
|
message: string;
|
|
4586
4604
|
scheduled: number;
|
|
4587
|
-
cancelIf?: Record<string,
|
|
4605
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4588
4606
|
overrideLock?: boolean | undefined;
|
|
4589
4607
|
}, {
|
|
4590
4608
|
message: string;
|
|
4591
4609
|
scheduled: number;
|
|
4592
|
-
cancelIf?: Record<string,
|
|
4610
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4593
4611
|
overrideLock?: boolean | undefined;
|
|
4594
4612
|
}>, z.ZodObject<{
|
|
4595
4613
|
scheduled: z.ZodNumber;
|
|
4596
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
4614
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
4597
4615
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
4598
4616
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
4599
4617
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -4639,7 +4657,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4639
4657
|
id?: string | undefined;
|
|
4640
4658
|
persist?: boolean | undefined;
|
|
4641
4659
|
})[] | undefined);
|
|
4642
|
-
cancelIf?: Record<string,
|
|
4660
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4643
4661
|
overrideLock?: boolean | undefined;
|
|
4644
4662
|
}, {
|
|
4645
4663
|
scheduled: number;
|
|
@@ -4660,7 +4678,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4660
4678
|
id?: string | undefined;
|
|
4661
4679
|
persist?: boolean | undefined;
|
|
4662
4680
|
})[] | undefined);
|
|
4663
|
-
cancelIf?: Record<string,
|
|
4681
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4664
4682
|
overrideLock?: boolean | undefined;
|
|
4665
4683
|
}>]>>;
|
|
4666
4684
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4683,12 +4701,12 @@ declare module '@scout9/app/schemas' {
|
|
|
4683
4701
|
message?: string | undefined;
|
|
4684
4702
|
secondsDelay?: number | undefined;
|
|
4685
4703
|
scheduled?: number | undefined;
|
|
4686
|
-
contextUpsert?: Record<string,
|
|
4704
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4687
4705
|
resetIntent?: boolean | undefined;
|
|
4688
4706
|
followup?: {
|
|
4689
4707
|
message: string;
|
|
4690
4708
|
scheduled: number;
|
|
4691
|
-
cancelIf?: Record<string,
|
|
4709
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4692
4710
|
overrideLock?: boolean | undefined;
|
|
4693
4711
|
} | {
|
|
4694
4712
|
scheduled: number;
|
|
@@ -4709,7 +4727,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4709
4727
|
id?: string | undefined;
|
|
4710
4728
|
persist?: boolean | undefined;
|
|
4711
4729
|
})[] | undefined);
|
|
4712
|
-
cancelIf?: Record<string,
|
|
4730
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4713
4731
|
overrideLock?: boolean | undefined;
|
|
4714
4732
|
} | undefined;
|
|
4715
4733
|
}, {
|
|
@@ -4732,12 +4750,12 @@ declare module '@scout9/app/schemas' {
|
|
|
4732
4750
|
message?: string | undefined;
|
|
4733
4751
|
secondsDelay?: number | undefined;
|
|
4734
4752
|
scheduled?: number | undefined;
|
|
4735
|
-
contextUpsert?: Record<string,
|
|
4753
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4736
4754
|
resetIntent?: boolean | undefined;
|
|
4737
4755
|
followup?: {
|
|
4738
4756
|
message: string;
|
|
4739
4757
|
scheduled: number;
|
|
4740
|
-
cancelIf?: Record<string,
|
|
4758
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4741
4759
|
overrideLock?: boolean | undefined;
|
|
4742
4760
|
} | {
|
|
4743
4761
|
scheduled: number;
|
|
@@ -4758,7 +4776,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4758
4776
|
id?: string | undefined;
|
|
4759
4777
|
persist?: boolean | undefined;
|
|
4760
4778
|
})[] | undefined);
|
|
4761
|
-
cancelIf?: Record<string,
|
|
4779
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4762
4780
|
overrideLock?: boolean | undefined;
|
|
4763
4781
|
} | undefined;
|
|
4764
4782
|
}>;
|
|
@@ -4806,26 +4824,26 @@ declare module '@scout9/app/schemas' {
|
|
|
4806
4824
|
message: z.ZodOptional<z.ZodString>;
|
|
4807
4825
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
4808
4826
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
4809
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
4827
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
4810
4828
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
4811
4829
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
4812
4830
|
scheduled: z.ZodNumber;
|
|
4813
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
4831
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
4814
4832
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
4815
4833
|
message: z.ZodString;
|
|
4816
4834
|
}, "strip", z.ZodTypeAny, {
|
|
4817
4835
|
message: string;
|
|
4818
4836
|
scheduled: number;
|
|
4819
|
-
cancelIf?: Record<string,
|
|
4837
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4820
4838
|
overrideLock?: boolean | undefined;
|
|
4821
4839
|
}, {
|
|
4822
4840
|
message: string;
|
|
4823
4841
|
scheduled: number;
|
|
4824
|
-
cancelIf?: Record<string,
|
|
4842
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4825
4843
|
overrideLock?: boolean | undefined;
|
|
4826
4844
|
}>, z.ZodObject<{
|
|
4827
4845
|
scheduled: z.ZodNumber;
|
|
4828
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
4846
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
4829
4847
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
4830
4848
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
4831
4849
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -4871,7 +4889,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4871
4889
|
id?: string | undefined;
|
|
4872
4890
|
persist?: boolean | undefined;
|
|
4873
4891
|
})[] | undefined);
|
|
4874
|
-
cancelIf?: Record<string,
|
|
4892
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4875
4893
|
overrideLock?: boolean | undefined;
|
|
4876
4894
|
}, {
|
|
4877
4895
|
scheduled: number;
|
|
@@ -4892,7 +4910,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4892
4910
|
id?: string | undefined;
|
|
4893
4911
|
persist?: boolean | undefined;
|
|
4894
4912
|
})[] | undefined);
|
|
4895
|
-
cancelIf?: Record<string,
|
|
4913
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4896
4914
|
overrideLock?: boolean | undefined;
|
|
4897
4915
|
}>]>>;
|
|
4898
4916
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4915,12 +4933,12 @@ declare module '@scout9/app/schemas' {
|
|
|
4915
4933
|
message?: string | undefined;
|
|
4916
4934
|
secondsDelay?: number | undefined;
|
|
4917
4935
|
scheduled?: number | undefined;
|
|
4918
|
-
contextUpsert?: Record<string,
|
|
4936
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4919
4937
|
resetIntent?: boolean | undefined;
|
|
4920
4938
|
followup?: {
|
|
4921
4939
|
message: string;
|
|
4922
4940
|
scheduled: number;
|
|
4923
|
-
cancelIf?: Record<string,
|
|
4941
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4924
4942
|
overrideLock?: boolean | undefined;
|
|
4925
4943
|
} | {
|
|
4926
4944
|
scheduled: number;
|
|
@@ -4941,7 +4959,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4941
4959
|
id?: string | undefined;
|
|
4942
4960
|
persist?: boolean | undefined;
|
|
4943
4961
|
})[] | undefined);
|
|
4944
|
-
cancelIf?: Record<string,
|
|
4962
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4945
4963
|
overrideLock?: boolean | undefined;
|
|
4946
4964
|
} | undefined;
|
|
4947
4965
|
}, {
|
|
@@ -4964,12 +4982,12 @@ declare module '@scout9/app/schemas' {
|
|
|
4964
4982
|
message?: string | undefined;
|
|
4965
4983
|
secondsDelay?: number | undefined;
|
|
4966
4984
|
scheduled?: number | undefined;
|
|
4967
|
-
contextUpsert?: Record<string,
|
|
4985
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4968
4986
|
resetIntent?: boolean | undefined;
|
|
4969
4987
|
followup?: {
|
|
4970
4988
|
message: string;
|
|
4971
4989
|
scheduled: number;
|
|
4972
|
-
cancelIf?: Record<string,
|
|
4990
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4973
4991
|
overrideLock?: boolean | undefined;
|
|
4974
4992
|
} | {
|
|
4975
4993
|
scheduled: number;
|
|
@@ -4990,7 +5008,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4990
5008
|
id?: string | undefined;
|
|
4991
5009
|
persist?: boolean | undefined;
|
|
4992
5010
|
})[] | undefined);
|
|
4993
|
-
cancelIf?: Record<string,
|
|
5011
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
4994
5012
|
overrideLock?: boolean | undefined;
|
|
4995
5013
|
} | undefined;
|
|
4996
5014
|
}>;
|
|
@@ -5016,12 +5034,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5016
5034
|
message?: string | undefined;
|
|
5017
5035
|
secondsDelay?: number | undefined;
|
|
5018
5036
|
scheduled?: number | undefined;
|
|
5019
|
-
contextUpsert?: Record<string,
|
|
5037
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5020
5038
|
resetIntent?: boolean | undefined;
|
|
5021
5039
|
followup?: {
|
|
5022
5040
|
message: string;
|
|
5023
5041
|
scheduled: number;
|
|
5024
|
-
cancelIf?: Record<string,
|
|
5042
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5025
5043
|
overrideLock?: boolean | undefined;
|
|
5026
5044
|
} | {
|
|
5027
5045
|
scheduled: number;
|
|
@@ -5042,7 +5060,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5042
5060
|
id?: string | undefined;
|
|
5043
5061
|
persist?: boolean | undefined;
|
|
5044
5062
|
})[] | undefined);
|
|
5045
|
-
cancelIf?: Record<string,
|
|
5063
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5046
5064
|
overrideLock?: boolean | undefined;
|
|
5047
5065
|
} | undefined;
|
|
5048
5066
|
};
|
|
@@ -5066,12 +5084,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5066
5084
|
message?: string | undefined;
|
|
5067
5085
|
secondsDelay?: number | undefined;
|
|
5068
5086
|
scheduled?: number | undefined;
|
|
5069
|
-
contextUpsert?: Record<string,
|
|
5087
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5070
5088
|
resetIntent?: boolean | undefined;
|
|
5071
5089
|
followup?: {
|
|
5072
5090
|
message: string;
|
|
5073
5091
|
scheduled: number;
|
|
5074
|
-
cancelIf?: Record<string,
|
|
5092
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5075
5093
|
overrideLock?: boolean | undefined;
|
|
5076
5094
|
} | {
|
|
5077
5095
|
scheduled: number;
|
|
@@ -5092,7 +5110,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5092
5110
|
id?: string | undefined;
|
|
5093
5111
|
persist?: boolean | undefined;
|
|
5094
5112
|
})[] | undefined);
|
|
5095
|
-
cancelIf?: Record<string,
|
|
5113
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5096
5114
|
overrideLock?: boolean | undefined;
|
|
5097
5115
|
} | undefined;
|
|
5098
5116
|
};
|
|
@@ -5118,12 +5136,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5118
5136
|
message?: string | undefined;
|
|
5119
5137
|
secondsDelay?: number | undefined;
|
|
5120
5138
|
scheduled?: number | undefined;
|
|
5121
|
-
contextUpsert?: Record<string,
|
|
5139
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5122
5140
|
resetIntent?: boolean | undefined;
|
|
5123
5141
|
followup?: {
|
|
5124
5142
|
message: string;
|
|
5125
5143
|
scheduled: number;
|
|
5126
|
-
cancelIf?: Record<string,
|
|
5144
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5127
5145
|
overrideLock?: boolean | undefined;
|
|
5128
5146
|
} | {
|
|
5129
5147
|
scheduled: number;
|
|
@@ -5144,7 +5162,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5144
5162
|
id?: string | undefined;
|
|
5145
5163
|
persist?: boolean | undefined;
|
|
5146
5164
|
})[] | undefined);
|
|
5147
|
-
cancelIf?: Record<string,
|
|
5165
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5148
5166
|
overrideLock?: boolean | undefined;
|
|
5149
5167
|
} | undefined;
|
|
5150
5168
|
};
|
|
@@ -5168,12 +5186,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5168
5186
|
message?: string | undefined;
|
|
5169
5187
|
secondsDelay?: number | undefined;
|
|
5170
5188
|
scheduled?: number | undefined;
|
|
5171
|
-
contextUpsert?: Record<string,
|
|
5189
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5172
5190
|
resetIntent?: boolean | undefined;
|
|
5173
5191
|
followup?: {
|
|
5174
5192
|
message: string;
|
|
5175
5193
|
scheduled: number;
|
|
5176
|
-
cancelIf?: Record<string,
|
|
5194
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5177
5195
|
overrideLock?: boolean | undefined;
|
|
5178
5196
|
} | {
|
|
5179
5197
|
scheduled: number;
|
|
@@ -5194,7 +5212,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5194
5212
|
id?: string | undefined;
|
|
5195
5213
|
persist?: boolean | undefined;
|
|
5196
5214
|
})[] | undefined);
|
|
5197
|
-
cancelIf?: Record<string,
|
|
5215
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5198
5216
|
overrideLock?: boolean | undefined;
|
|
5199
5217
|
} | undefined;
|
|
5200
5218
|
};
|
|
@@ -5242,26 +5260,26 @@ declare module '@scout9/app/schemas' {
|
|
|
5242
5260
|
}>]>, "many">]>>;
|
|
5243
5261
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5244
5262
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
5245
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
5263
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
5246
5264
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
5247
5265
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
5248
5266
|
scheduled: z.ZodNumber;
|
|
5249
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
5267
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
5250
5268
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
5251
5269
|
message: z.ZodString;
|
|
5252
5270
|
}, "strip", z.ZodTypeAny, {
|
|
5253
5271
|
message: string;
|
|
5254
5272
|
scheduled: number;
|
|
5255
|
-
cancelIf?: Record<string,
|
|
5273
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5256
5274
|
overrideLock?: boolean | undefined;
|
|
5257
5275
|
}, {
|
|
5258
5276
|
message: string;
|
|
5259
5277
|
scheduled: number;
|
|
5260
|
-
cancelIf?: Record<string,
|
|
5278
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5261
5279
|
overrideLock?: boolean | undefined;
|
|
5262
5280
|
}>, z.ZodObject<{
|
|
5263
5281
|
scheduled: z.ZodNumber;
|
|
5264
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
5282
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
5265
5283
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
5266
5284
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
5267
5285
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -5307,7 +5325,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5307
5325
|
id?: string | undefined;
|
|
5308
5326
|
persist?: boolean | undefined;
|
|
5309
5327
|
})[] | undefined);
|
|
5310
|
-
cancelIf?: Record<string,
|
|
5328
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5311
5329
|
overrideLock?: boolean | undefined;
|
|
5312
5330
|
}, {
|
|
5313
5331
|
scheduled: number;
|
|
@@ -5328,7 +5346,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5328
5346
|
id?: string | undefined;
|
|
5329
5347
|
persist?: boolean | undefined;
|
|
5330
5348
|
})[] | undefined);
|
|
5331
|
-
cancelIf?: Record<string,
|
|
5349
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5332
5350
|
overrideLock?: boolean | undefined;
|
|
5333
5351
|
}>]>>;
|
|
5334
5352
|
keywords: z.ZodArray<z.ZodString, "many">;
|
|
@@ -5353,12 +5371,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5353
5371
|
})[] | undefined;
|
|
5354
5372
|
removeInstructions?: string[] | undefined;
|
|
5355
5373
|
secondsDelay?: number | undefined;
|
|
5356
|
-
contextUpsert?: Record<string,
|
|
5374
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5357
5375
|
resetIntent?: boolean | undefined;
|
|
5358
5376
|
followup?: {
|
|
5359
5377
|
message: string;
|
|
5360
5378
|
scheduled: number;
|
|
5361
|
-
cancelIf?: Record<string,
|
|
5379
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5362
5380
|
overrideLock?: boolean | undefined;
|
|
5363
5381
|
} | {
|
|
5364
5382
|
scheduled: number;
|
|
@@ -5379,7 +5397,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5379
5397
|
id?: string | undefined;
|
|
5380
5398
|
persist?: boolean | undefined;
|
|
5381
5399
|
})[] | undefined);
|
|
5382
|
-
cancelIf?: Record<string,
|
|
5400
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5383
5401
|
overrideLock?: boolean | undefined;
|
|
5384
5402
|
} | undefined;
|
|
5385
5403
|
}, {
|
|
@@ -5403,12 +5421,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5403
5421
|
})[] | undefined;
|
|
5404
5422
|
removeInstructions?: string[] | undefined;
|
|
5405
5423
|
secondsDelay?: number | undefined;
|
|
5406
|
-
contextUpsert?: Record<string,
|
|
5424
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5407
5425
|
resetIntent?: boolean | undefined;
|
|
5408
5426
|
followup?: {
|
|
5409
5427
|
message: string;
|
|
5410
5428
|
scheduled: number;
|
|
5411
|
-
cancelIf?: Record<string,
|
|
5429
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5412
5430
|
overrideLock?: boolean | undefined;
|
|
5413
5431
|
} | {
|
|
5414
5432
|
scheduled: number;
|
|
@@ -5429,7 +5447,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5429
5447
|
id?: string | undefined;
|
|
5430
5448
|
persist?: boolean | undefined;
|
|
5431
5449
|
})[] | undefined);
|
|
5432
|
-
cancelIf?: Record<string,
|
|
5450
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5433
5451
|
overrideLock?: boolean | undefined;
|
|
5434
5452
|
} | undefined;
|
|
5435
5453
|
}>, "many">]>>;
|
|
@@ -5453,12 +5471,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5453
5471
|
})[] | undefined;
|
|
5454
5472
|
removeInstructions?: string[] | undefined;
|
|
5455
5473
|
secondsDelay?: number | undefined;
|
|
5456
|
-
contextUpsert?: Record<string,
|
|
5474
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5457
5475
|
resetIntent?: boolean | undefined;
|
|
5458
5476
|
followup?: {
|
|
5459
5477
|
message: string;
|
|
5460
5478
|
scheduled: number;
|
|
5461
|
-
cancelIf?: Record<string,
|
|
5479
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5462
5480
|
overrideLock?: boolean | undefined;
|
|
5463
5481
|
} | {
|
|
5464
5482
|
scheduled: number;
|
|
@@ -5479,7 +5497,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5479
5497
|
id?: string | undefined;
|
|
5480
5498
|
persist?: boolean | undefined;
|
|
5481
5499
|
})[] | undefined);
|
|
5482
|
-
cancelIf?: Record<string,
|
|
5500
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5483
5501
|
overrideLock?: boolean | undefined;
|
|
5484
5502
|
} | undefined;
|
|
5485
5503
|
anticipate?: {
|
|
@@ -5504,12 +5522,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5504
5522
|
message?: string | undefined;
|
|
5505
5523
|
secondsDelay?: number | undefined;
|
|
5506
5524
|
scheduled?: number | undefined;
|
|
5507
|
-
contextUpsert?: Record<string,
|
|
5525
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5508
5526
|
resetIntent?: boolean | undefined;
|
|
5509
5527
|
followup?: {
|
|
5510
5528
|
message: string;
|
|
5511
5529
|
scheduled: number;
|
|
5512
|
-
cancelIf?: Record<string,
|
|
5530
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5513
5531
|
overrideLock?: boolean | undefined;
|
|
5514
5532
|
} | {
|
|
5515
5533
|
scheduled: number;
|
|
@@ -5530,7 +5548,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5530
5548
|
id?: string | undefined;
|
|
5531
5549
|
persist?: boolean | undefined;
|
|
5532
5550
|
})[] | undefined);
|
|
5533
|
-
cancelIf?: Record<string,
|
|
5551
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5534
5552
|
overrideLock?: boolean | undefined;
|
|
5535
5553
|
} | undefined;
|
|
5536
5554
|
};
|
|
@@ -5554,12 +5572,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5554
5572
|
message?: string | undefined;
|
|
5555
5573
|
secondsDelay?: number | undefined;
|
|
5556
5574
|
scheduled?: number | undefined;
|
|
5557
|
-
contextUpsert?: Record<string,
|
|
5575
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5558
5576
|
resetIntent?: boolean | undefined;
|
|
5559
5577
|
followup?: {
|
|
5560
5578
|
message: string;
|
|
5561
5579
|
scheduled: number;
|
|
5562
|
-
cancelIf?: Record<string,
|
|
5580
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5563
5581
|
overrideLock?: boolean | undefined;
|
|
5564
5582
|
} | {
|
|
5565
5583
|
scheduled: number;
|
|
@@ -5580,7 +5598,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5580
5598
|
id?: string | undefined;
|
|
5581
5599
|
persist?: boolean | undefined;
|
|
5582
5600
|
})[] | undefined);
|
|
5583
|
-
cancelIf?: Record<string,
|
|
5601
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5584
5602
|
overrideLock?: boolean | undefined;
|
|
5585
5603
|
} | undefined;
|
|
5586
5604
|
};
|
|
@@ -5605,12 +5623,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5605
5623
|
})[] | undefined;
|
|
5606
5624
|
removeInstructions?: string[] | undefined;
|
|
5607
5625
|
secondsDelay?: number | undefined;
|
|
5608
|
-
contextUpsert?: Record<string,
|
|
5626
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5609
5627
|
resetIntent?: boolean | undefined;
|
|
5610
5628
|
followup?: {
|
|
5611
5629
|
message: string;
|
|
5612
5630
|
scheduled: number;
|
|
5613
|
-
cancelIf?: Record<string,
|
|
5631
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5614
5632
|
overrideLock?: boolean | undefined;
|
|
5615
5633
|
} | {
|
|
5616
5634
|
scheduled: number;
|
|
@@ -5631,7 +5649,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5631
5649
|
id?: string | undefined;
|
|
5632
5650
|
persist?: boolean | undefined;
|
|
5633
5651
|
})[] | undefined);
|
|
5634
|
-
cancelIf?: Record<string,
|
|
5652
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5635
5653
|
overrideLock?: boolean | undefined;
|
|
5636
5654
|
} | undefined;
|
|
5637
5655
|
}[] | undefined;
|
|
@@ -5655,12 +5673,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5655
5673
|
})[] | undefined;
|
|
5656
5674
|
removeInstructions?: string[] | undefined;
|
|
5657
5675
|
secondsDelay?: number | undefined;
|
|
5658
|
-
contextUpsert?: Record<string,
|
|
5676
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5659
5677
|
resetIntent?: boolean | undefined;
|
|
5660
5678
|
followup?: {
|
|
5661
5679
|
message: string;
|
|
5662
5680
|
scheduled: number;
|
|
5663
|
-
cancelIf?: Record<string,
|
|
5681
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5664
5682
|
overrideLock?: boolean | undefined;
|
|
5665
5683
|
} | {
|
|
5666
5684
|
scheduled: number;
|
|
@@ -5681,7 +5699,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5681
5699
|
id?: string | undefined;
|
|
5682
5700
|
persist?: boolean | undefined;
|
|
5683
5701
|
})[] | undefined);
|
|
5684
|
-
cancelIf?: Record<string,
|
|
5702
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5685
5703
|
overrideLock?: boolean | undefined;
|
|
5686
5704
|
} | undefined;
|
|
5687
5705
|
anticipate?: {
|
|
@@ -5706,12 +5724,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5706
5724
|
message?: string | undefined;
|
|
5707
5725
|
secondsDelay?: number | undefined;
|
|
5708
5726
|
scheduled?: number | undefined;
|
|
5709
|
-
contextUpsert?: Record<string,
|
|
5727
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5710
5728
|
resetIntent?: boolean | undefined;
|
|
5711
5729
|
followup?: {
|
|
5712
5730
|
message: string;
|
|
5713
5731
|
scheduled: number;
|
|
5714
|
-
cancelIf?: Record<string,
|
|
5732
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5715
5733
|
overrideLock?: boolean | undefined;
|
|
5716
5734
|
} | {
|
|
5717
5735
|
scheduled: number;
|
|
@@ -5732,7 +5750,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5732
5750
|
id?: string | undefined;
|
|
5733
5751
|
persist?: boolean | undefined;
|
|
5734
5752
|
})[] | undefined);
|
|
5735
|
-
cancelIf?: Record<string,
|
|
5753
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5736
5754
|
overrideLock?: boolean | undefined;
|
|
5737
5755
|
} | undefined;
|
|
5738
5756
|
};
|
|
@@ -5756,12 +5774,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5756
5774
|
message?: string | undefined;
|
|
5757
5775
|
secondsDelay?: number | undefined;
|
|
5758
5776
|
scheduled?: number | undefined;
|
|
5759
|
-
contextUpsert?: Record<string,
|
|
5777
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5760
5778
|
resetIntent?: boolean | undefined;
|
|
5761
5779
|
followup?: {
|
|
5762
5780
|
message: string;
|
|
5763
5781
|
scheduled: number;
|
|
5764
|
-
cancelIf?: Record<string,
|
|
5782
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5765
5783
|
overrideLock?: boolean | undefined;
|
|
5766
5784
|
} | {
|
|
5767
5785
|
scheduled: number;
|
|
@@ -5782,7 +5800,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5782
5800
|
id?: string | undefined;
|
|
5783
5801
|
persist?: boolean | undefined;
|
|
5784
5802
|
})[] | undefined);
|
|
5785
|
-
cancelIf?: Record<string,
|
|
5803
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5786
5804
|
overrideLock?: boolean | undefined;
|
|
5787
5805
|
} | undefined;
|
|
5788
5806
|
};
|
|
@@ -5807,12 +5825,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5807
5825
|
})[] | undefined;
|
|
5808
5826
|
removeInstructions?: string[] | undefined;
|
|
5809
5827
|
secondsDelay?: number | undefined;
|
|
5810
|
-
contextUpsert?: Record<string,
|
|
5828
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5811
5829
|
resetIntent?: boolean | undefined;
|
|
5812
5830
|
followup?: {
|
|
5813
5831
|
message: string;
|
|
5814
5832
|
scheduled: number;
|
|
5815
|
-
cancelIf?: Record<string,
|
|
5833
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5816
5834
|
overrideLock?: boolean | undefined;
|
|
5817
5835
|
} | {
|
|
5818
5836
|
scheduled: number;
|
|
@@ -5833,7 +5851,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5833
5851
|
id?: string | undefined;
|
|
5834
5852
|
persist?: boolean | undefined;
|
|
5835
5853
|
})[] | undefined);
|
|
5836
|
-
cancelIf?: Record<string,
|
|
5854
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5837
5855
|
overrideLock?: boolean | undefined;
|
|
5838
5856
|
} | undefined;
|
|
5839
5857
|
}[] | undefined;
|
|
@@ -5885,26 +5903,26 @@ declare module '@scout9/app/schemas' {
|
|
|
5885
5903
|
}>]>, "many">]>>;
|
|
5886
5904
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5887
5905
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
5888
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
5906
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
5889
5907
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
5890
5908
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
5891
5909
|
scheduled: z.ZodNumber;
|
|
5892
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
5910
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
5893
5911
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
5894
5912
|
message: z.ZodString;
|
|
5895
5913
|
}, "strip", z.ZodTypeAny, {
|
|
5896
5914
|
message: string;
|
|
5897
5915
|
scheduled: number;
|
|
5898
|
-
cancelIf?: Record<string,
|
|
5916
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5899
5917
|
overrideLock?: boolean | undefined;
|
|
5900
5918
|
}, {
|
|
5901
5919
|
message: string;
|
|
5902
5920
|
scheduled: number;
|
|
5903
|
-
cancelIf?: Record<string,
|
|
5921
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5904
5922
|
overrideLock?: boolean | undefined;
|
|
5905
5923
|
}>, z.ZodObject<{
|
|
5906
5924
|
scheduled: z.ZodNumber;
|
|
5907
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
5925
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
5908
5926
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
5909
5927
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
5910
5928
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -5950,7 +5968,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5950
5968
|
id?: string | undefined;
|
|
5951
5969
|
persist?: boolean | undefined;
|
|
5952
5970
|
})[] | undefined);
|
|
5953
|
-
cancelIf?: Record<string,
|
|
5971
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5954
5972
|
overrideLock?: boolean | undefined;
|
|
5955
5973
|
}, {
|
|
5956
5974
|
scheduled: number;
|
|
@@ -5971,7 +5989,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5971
5989
|
id?: string | undefined;
|
|
5972
5990
|
persist?: boolean | undefined;
|
|
5973
5991
|
})[] | undefined);
|
|
5974
|
-
cancelIf?: Record<string,
|
|
5992
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
5975
5993
|
overrideLock?: boolean | undefined;
|
|
5976
5994
|
}>]>>;
|
|
5977
5995
|
anticipate: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
@@ -6020,26 +6038,26 @@ declare module '@scout9/app/schemas' {
|
|
|
6020
6038
|
message: z.ZodOptional<z.ZodString>;
|
|
6021
6039
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
6022
6040
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
6023
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
6041
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
6024
6042
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
6025
6043
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
6026
6044
|
scheduled: z.ZodNumber;
|
|
6027
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
6045
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
6028
6046
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
6029
6047
|
message: z.ZodString;
|
|
6030
6048
|
}, "strip", z.ZodTypeAny, {
|
|
6031
6049
|
message: string;
|
|
6032
6050
|
scheduled: number;
|
|
6033
|
-
cancelIf?: Record<string,
|
|
6051
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6034
6052
|
overrideLock?: boolean | undefined;
|
|
6035
6053
|
}, {
|
|
6036
6054
|
message: string;
|
|
6037
6055
|
scheduled: number;
|
|
6038
|
-
cancelIf?: Record<string,
|
|
6056
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6039
6057
|
overrideLock?: boolean | undefined;
|
|
6040
6058
|
}>, z.ZodObject<{
|
|
6041
6059
|
scheduled: z.ZodNumber;
|
|
6042
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
6060
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
6043
6061
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
6044
6062
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
6045
6063
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -6085,7 +6103,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6085
6103
|
id?: string | undefined;
|
|
6086
6104
|
persist?: boolean | undefined;
|
|
6087
6105
|
})[] | undefined);
|
|
6088
|
-
cancelIf?: Record<string,
|
|
6106
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6089
6107
|
overrideLock?: boolean | undefined;
|
|
6090
6108
|
}, {
|
|
6091
6109
|
scheduled: number;
|
|
@@ -6106,7 +6124,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6106
6124
|
id?: string | undefined;
|
|
6107
6125
|
persist?: boolean | undefined;
|
|
6108
6126
|
})[] | undefined);
|
|
6109
|
-
cancelIf?: Record<string,
|
|
6127
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6110
6128
|
overrideLock?: boolean | undefined;
|
|
6111
6129
|
}>]>>;
|
|
6112
6130
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6129,12 +6147,12 @@ declare module '@scout9/app/schemas' {
|
|
|
6129
6147
|
message?: string | undefined;
|
|
6130
6148
|
secondsDelay?: number | undefined;
|
|
6131
6149
|
scheduled?: number | undefined;
|
|
6132
|
-
contextUpsert?: Record<string,
|
|
6150
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6133
6151
|
resetIntent?: boolean | undefined;
|
|
6134
6152
|
followup?: {
|
|
6135
6153
|
message: string;
|
|
6136
6154
|
scheduled: number;
|
|
6137
|
-
cancelIf?: Record<string,
|
|
6155
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6138
6156
|
overrideLock?: boolean | undefined;
|
|
6139
6157
|
} | {
|
|
6140
6158
|
scheduled: number;
|
|
@@ -6155,7 +6173,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6155
6173
|
id?: string | undefined;
|
|
6156
6174
|
persist?: boolean | undefined;
|
|
6157
6175
|
})[] | undefined);
|
|
6158
|
-
cancelIf?: Record<string,
|
|
6176
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6159
6177
|
overrideLock?: boolean | undefined;
|
|
6160
6178
|
} | undefined;
|
|
6161
6179
|
}, {
|
|
@@ -6178,12 +6196,12 @@ declare module '@scout9/app/schemas' {
|
|
|
6178
6196
|
message?: string | undefined;
|
|
6179
6197
|
secondsDelay?: number | undefined;
|
|
6180
6198
|
scheduled?: number | undefined;
|
|
6181
|
-
contextUpsert?: Record<string,
|
|
6199
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6182
6200
|
resetIntent?: boolean | undefined;
|
|
6183
6201
|
followup?: {
|
|
6184
6202
|
message: string;
|
|
6185
6203
|
scheduled: number;
|
|
6186
|
-
cancelIf?: Record<string,
|
|
6204
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6187
6205
|
overrideLock?: boolean | undefined;
|
|
6188
6206
|
} | {
|
|
6189
6207
|
scheduled: number;
|
|
@@ -6204,7 +6222,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6204
6222
|
id?: string | undefined;
|
|
6205
6223
|
persist?: boolean | undefined;
|
|
6206
6224
|
})[] | undefined);
|
|
6207
|
-
cancelIf?: Record<string,
|
|
6225
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6208
6226
|
overrideLock?: boolean | undefined;
|
|
6209
6227
|
} | undefined;
|
|
6210
6228
|
}>;
|
|
@@ -6252,26 +6270,26 @@ declare module '@scout9/app/schemas' {
|
|
|
6252
6270
|
message: z.ZodOptional<z.ZodString>;
|
|
6253
6271
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
6254
6272
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
6255
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
6273
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
6256
6274
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
6257
6275
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
6258
6276
|
scheduled: z.ZodNumber;
|
|
6259
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
6277
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
6260
6278
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
6261
6279
|
message: z.ZodString;
|
|
6262
6280
|
}, "strip", z.ZodTypeAny, {
|
|
6263
6281
|
message: string;
|
|
6264
6282
|
scheduled: number;
|
|
6265
|
-
cancelIf?: Record<string,
|
|
6283
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6266
6284
|
overrideLock?: boolean | undefined;
|
|
6267
6285
|
}, {
|
|
6268
6286
|
message: string;
|
|
6269
6287
|
scheduled: number;
|
|
6270
|
-
cancelIf?: Record<string,
|
|
6288
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6271
6289
|
overrideLock?: boolean | undefined;
|
|
6272
6290
|
}>, z.ZodObject<{
|
|
6273
6291
|
scheduled: z.ZodNumber;
|
|
6274
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
6292
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
6275
6293
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
6276
6294
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
6277
6295
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -6317,7 +6335,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6317
6335
|
id?: string | undefined;
|
|
6318
6336
|
persist?: boolean | undefined;
|
|
6319
6337
|
})[] | undefined);
|
|
6320
|
-
cancelIf?: Record<string,
|
|
6338
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6321
6339
|
overrideLock?: boolean | undefined;
|
|
6322
6340
|
}, {
|
|
6323
6341
|
scheduled: number;
|
|
@@ -6338,7 +6356,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6338
6356
|
id?: string | undefined;
|
|
6339
6357
|
persist?: boolean | undefined;
|
|
6340
6358
|
})[] | undefined);
|
|
6341
|
-
cancelIf?: Record<string,
|
|
6359
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6342
6360
|
overrideLock?: boolean | undefined;
|
|
6343
6361
|
}>]>>;
|
|
6344
6362
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6361,12 +6379,12 @@ declare module '@scout9/app/schemas' {
|
|
|
6361
6379
|
message?: string | undefined;
|
|
6362
6380
|
secondsDelay?: number | undefined;
|
|
6363
6381
|
scheduled?: number | undefined;
|
|
6364
|
-
contextUpsert?: Record<string,
|
|
6382
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6365
6383
|
resetIntent?: boolean | undefined;
|
|
6366
6384
|
followup?: {
|
|
6367
6385
|
message: string;
|
|
6368
6386
|
scheduled: number;
|
|
6369
|
-
cancelIf?: Record<string,
|
|
6387
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6370
6388
|
overrideLock?: boolean | undefined;
|
|
6371
6389
|
} | {
|
|
6372
6390
|
scheduled: number;
|
|
@@ -6387,7 +6405,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6387
6405
|
id?: string | undefined;
|
|
6388
6406
|
persist?: boolean | undefined;
|
|
6389
6407
|
})[] | undefined);
|
|
6390
|
-
cancelIf?: Record<string,
|
|
6408
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6391
6409
|
overrideLock?: boolean | undefined;
|
|
6392
6410
|
} | undefined;
|
|
6393
6411
|
}, {
|
|
@@ -6410,12 +6428,12 @@ declare module '@scout9/app/schemas' {
|
|
|
6410
6428
|
message?: string | undefined;
|
|
6411
6429
|
secondsDelay?: number | undefined;
|
|
6412
6430
|
scheduled?: number | undefined;
|
|
6413
|
-
contextUpsert?: Record<string,
|
|
6431
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6414
6432
|
resetIntent?: boolean | undefined;
|
|
6415
6433
|
followup?: {
|
|
6416
6434
|
message: string;
|
|
6417
6435
|
scheduled: number;
|
|
6418
|
-
cancelIf?: Record<string,
|
|
6436
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6419
6437
|
overrideLock?: boolean | undefined;
|
|
6420
6438
|
} | {
|
|
6421
6439
|
scheduled: number;
|
|
@@ -6436,7 +6454,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6436
6454
|
id?: string | undefined;
|
|
6437
6455
|
persist?: boolean | undefined;
|
|
6438
6456
|
})[] | undefined);
|
|
6439
|
-
cancelIf?: Record<string,
|
|
6457
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6440
6458
|
overrideLock?: boolean | undefined;
|
|
6441
6459
|
} | undefined;
|
|
6442
6460
|
}>;
|
|
@@ -6462,12 +6480,12 @@ declare module '@scout9/app/schemas' {
|
|
|
6462
6480
|
message?: string | undefined;
|
|
6463
6481
|
secondsDelay?: number | undefined;
|
|
6464
6482
|
scheduled?: number | undefined;
|
|
6465
|
-
contextUpsert?: Record<string,
|
|
6483
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6466
6484
|
resetIntent?: boolean | undefined;
|
|
6467
6485
|
followup?: {
|
|
6468
6486
|
message: string;
|
|
6469
6487
|
scheduled: number;
|
|
6470
|
-
cancelIf?: Record<string,
|
|
6488
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6471
6489
|
overrideLock?: boolean | undefined;
|
|
6472
6490
|
} | {
|
|
6473
6491
|
scheduled: number;
|
|
@@ -6488,7 +6506,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6488
6506
|
id?: string | undefined;
|
|
6489
6507
|
persist?: boolean | undefined;
|
|
6490
6508
|
})[] | undefined);
|
|
6491
|
-
cancelIf?: Record<string,
|
|
6509
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6492
6510
|
overrideLock?: boolean | undefined;
|
|
6493
6511
|
} | undefined;
|
|
6494
6512
|
};
|
|
@@ -6512,12 +6530,12 @@ declare module '@scout9/app/schemas' {
|
|
|
6512
6530
|
message?: string | undefined;
|
|
6513
6531
|
secondsDelay?: number | undefined;
|
|
6514
6532
|
scheduled?: number | undefined;
|
|
6515
|
-
contextUpsert?: Record<string,
|
|
6533
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6516
6534
|
resetIntent?: boolean | undefined;
|
|
6517
6535
|
followup?: {
|
|
6518
6536
|
message: string;
|
|
6519
6537
|
scheduled: number;
|
|
6520
|
-
cancelIf?: Record<string,
|
|
6538
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6521
6539
|
overrideLock?: boolean | undefined;
|
|
6522
6540
|
} | {
|
|
6523
6541
|
scheduled: number;
|
|
@@ -6538,7 +6556,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6538
6556
|
id?: string | undefined;
|
|
6539
6557
|
persist?: boolean | undefined;
|
|
6540
6558
|
})[] | undefined);
|
|
6541
|
-
cancelIf?: Record<string,
|
|
6559
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6542
6560
|
overrideLock?: boolean | undefined;
|
|
6543
6561
|
} | undefined;
|
|
6544
6562
|
};
|
|
@@ -6564,12 +6582,12 @@ declare module '@scout9/app/schemas' {
|
|
|
6564
6582
|
message?: string | undefined;
|
|
6565
6583
|
secondsDelay?: number | undefined;
|
|
6566
6584
|
scheduled?: number | undefined;
|
|
6567
|
-
contextUpsert?: Record<string,
|
|
6585
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6568
6586
|
resetIntent?: boolean | undefined;
|
|
6569
6587
|
followup?: {
|
|
6570
6588
|
message: string;
|
|
6571
6589
|
scheduled: number;
|
|
6572
|
-
cancelIf?: Record<string,
|
|
6590
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6573
6591
|
overrideLock?: boolean | undefined;
|
|
6574
6592
|
} | {
|
|
6575
6593
|
scheduled: number;
|
|
@@ -6590,7 +6608,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6590
6608
|
id?: string | undefined;
|
|
6591
6609
|
persist?: boolean | undefined;
|
|
6592
6610
|
})[] | undefined);
|
|
6593
|
-
cancelIf?: Record<string,
|
|
6611
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6594
6612
|
overrideLock?: boolean | undefined;
|
|
6595
6613
|
} | undefined;
|
|
6596
6614
|
};
|
|
@@ -6614,12 +6632,12 @@ declare module '@scout9/app/schemas' {
|
|
|
6614
6632
|
message?: string | undefined;
|
|
6615
6633
|
secondsDelay?: number | undefined;
|
|
6616
6634
|
scheduled?: number | undefined;
|
|
6617
|
-
contextUpsert?: Record<string,
|
|
6635
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6618
6636
|
resetIntent?: boolean | undefined;
|
|
6619
6637
|
followup?: {
|
|
6620
6638
|
message: string;
|
|
6621
6639
|
scheduled: number;
|
|
6622
|
-
cancelIf?: Record<string,
|
|
6640
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6623
6641
|
overrideLock?: boolean | undefined;
|
|
6624
6642
|
} | {
|
|
6625
6643
|
scheduled: number;
|
|
@@ -6640,7 +6658,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6640
6658
|
id?: string | undefined;
|
|
6641
6659
|
persist?: boolean | undefined;
|
|
6642
6660
|
})[] | undefined);
|
|
6643
|
-
cancelIf?: Record<string,
|
|
6661
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6644
6662
|
overrideLock?: boolean | undefined;
|
|
6645
6663
|
} | undefined;
|
|
6646
6664
|
};
|
|
@@ -6688,26 +6706,26 @@ declare module '@scout9/app/schemas' {
|
|
|
6688
6706
|
}>]>, "many">]>>;
|
|
6689
6707
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6690
6708
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
6691
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
6709
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
6692
6710
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
6693
6711
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
6694
6712
|
scheduled: z.ZodNumber;
|
|
6695
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
6713
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
6696
6714
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
6697
6715
|
message: z.ZodString;
|
|
6698
6716
|
}, "strip", z.ZodTypeAny, {
|
|
6699
6717
|
message: string;
|
|
6700
6718
|
scheduled: number;
|
|
6701
|
-
cancelIf?: Record<string,
|
|
6719
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6702
6720
|
overrideLock?: boolean | undefined;
|
|
6703
6721
|
}, {
|
|
6704
6722
|
message: string;
|
|
6705
6723
|
scheduled: number;
|
|
6706
|
-
cancelIf?: Record<string,
|
|
6724
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6707
6725
|
overrideLock?: boolean | undefined;
|
|
6708
6726
|
}>, z.ZodObject<{
|
|
6709
6727
|
scheduled: z.ZodNumber;
|
|
6710
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
6728
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
6711
6729
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
6712
6730
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
6713
6731
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -6753,7 +6771,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6753
6771
|
id?: string | undefined;
|
|
6754
6772
|
persist?: boolean | undefined;
|
|
6755
6773
|
})[] | undefined);
|
|
6756
|
-
cancelIf?: Record<string,
|
|
6774
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6757
6775
|
overrideLock?: boolean | undefined;
|
|
6758
6776
|
}, {
|
|
6759
6777
|
scheduled: number;
|
|
@@ -6774,7 +6792,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6774
6792
|
id?: string | undefined;
|
|
6775
6793
|
persist?: boolean | undefined;
|
|
6776
6794
|
})[] | undefined);
|
|
6777
|
-
cancelIf?: Record<string,
|
|
6795
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6778
6796
|
overrideLock?: boolean | undefined;
|
|
6779
6797
|
}>]>>;
|
|
6780
6798
|
keywords: z.ZodArray<z.ZodString, "many">;
|
|
@@ -6799,12 +6817,12 @@ declare module '@scout9/app/schemas' {
|
|
|
6799
6817
|
})[] | undefined;
|
|
6800
6818
|
removeInstructions?: string[] | undefined;
|
|
6801
6819
|
secondsDelay?: number | undefined;
|
|
6802
|
-
contextUpsert?: Record<string,
|
|
6820
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6803
6821
|
resetIntent?: boolean | undefined;
|
|
6804
6822
|
followup?: {
|
|
6805
6823
|
message: string;
|
|
6806
6824
|
scheduled: number;
|
|
6807
|
-
cancelIf?: Record<string,
|
|
6825
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6808
6826
|
overrideLock?: boolean | undefined;
|
|
6809
6827
|
} | {
|
|
6810
6828
|
scheduled: number;
|
|
@@ -6825,7 +6843,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6825
6843
|
id?: string | undefined;
|
|
6826
6844
|
persist?: boolean | undefined;
|
|
6827
6845
|
})[] | undefined);
|
|
6828
|
-
cancelIf?: Record<string,
|
|
6846
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6829
6847
|
overrideLock?: boolean | undefined;
|
|
6830
6848
|
} | undefined;
|
|
6831
6849
|
}, {
|
|
@@ -6849,12 +6867,12 @@ declare module '@scout9/app/schemas' {
|
|
|
6849
6867
|
})[] | undefined;
|
|
6850
6868
|
removeInstructions?: string[] | undefined;
|
|
6851
6869
|
secondsDelay?: number | undefined;
|
|
6852
|
-
contextUpsert?: Record<string,
|
|
6870
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6853
6871
|
resetIntent?: boolean | undefined;
|
|
6854
6872
|
followup?: {
|
|
6855
6873
|
message: string;
|
|
6856
6874
|
scheduled: number;
|
|
6857
|
-
cancelIf?: Record<string,
|
|
6875
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6858
6876
|
overrideLock?: boolean | undefined;
|
|
6859
6877
|
} | {
|
|
6860
6878
|
scheduled: number;
|
|
@@ -6875,7 +6893,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6875
6893
|
id?: string | undefined;
|
|
6876
6894
|
persist?: boolean | undefined;
|
|
6877
6895
|
})[] | undefined);
|
|
6878
|
-
cancelIf?: Record<string,
|
|
6896
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6879
6897
|
overrideLock?: boolean | undefined;
|
|
6880
6898
|
} | undefined;
|
|
6881
6899
|
}>, "many">]>>;
|
|
@@ -6899,12 +6917,12 @@ declare module '@scout9/app/schemas' {
|
|
|
6899
6917
|
})[] | undefined;
|
|
6900
6918
|
removeInstructions?: string[] | undefined;
|
|
6901
6919
|
secondsDelay?: number | undefined;
|
|
6902
|
-
contextUpsert?: Record<string,
|
|
6920
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6903
6921
|
resetIntent?: boolean | undefined;
|
|
6904
6922
|
followup?: {
|
|
6905
6923
|
message: string;
|
|
6906
6924
|
scheduled: number;
|
|
6907
|
-
cancelIf?: Record<string,
|
|
6925
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6908
6926
|
overrideLock?: boolean | undefined;
|
|
6909
6927
|
} | {
|
|
6910
6928
|
scheduled: number;
|
|
@@ -6925,7 +6943,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6925
6943
|
id?: string | undefined;
|
|
6926
6944
|
persist?: boolean | undefined;
|
|
6927
6945
|
})[] | undefined);
|
|
6928
|
-
cancelIf?: Record<string,
|
|
6946
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6929
6947
|
overrideLock?: boolean | undefined;
|
|
6930
6948
|
} | undefined;
|
|
6931
6949
|
anticipate?: {
|
|
@@ -6950,12 +6968,12 @@ declare module '@scout9/app/schemas' {
|
|
|
6950
6968
|
message?: string | undefined;
|
|
6951
6969
|
secondsDelay?: number | undefined;
|
|
6952
6970
|
scheduled?: number | undefined;
|
|
6953
|
-
contextUpsert?: Record<string,
|
|
6971
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6954
6972
|
resetIntent?: boolean | undefined;
|
|
6955
6973
|
followup?: {
|
|
6956
6974
|
message: string;
|
|
6957
6975
|
scheduled: number;
|
|
6958
|
-
cancelIf?: Record<string,
|
|
6976
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6959
6977
|
overrideLock?: boolean | undefined;
|
|
6960
6978
|
} | {
|
|
6961
6979
|
scheduled: number;
|
|
@@ -6976,7 +6994,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6976
6994
|
id?: string | undefined;
|
|
6977
6995
|
persist?: boolean | undefined;
|
|
6978
6996
|
})[] | undefined);
|
|
6979
|
-
cancelIf?: Record<string,
|
|
6997
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
6980
6998
|
overrideLock?: boolean | undefined;
|
|
6981
6999
|
} | undefined;
|
|
6982
7000
|
};
|
|
@@ -7000,12 +7018,12 @@ declare module '@scout9/app/schemas' {
|
|
|
7000
7018
|
message?: string | undefined;
|
|
7001
7019
|
secondsDelay?: number | undefined;
|
|
7002
7020
|
scheduled?: number | undefined;
|
|
7003
|
-
contextUpsert?: Record<string,
|
|
7021
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7004
7022
|
resetIntent?: boolean | undefined;
|
|
7005
7023
|
followup?: {
|
|
7006
7024
|
message: string;
|
|
7007
7025
|
scheduled: number;
|
|
7008
|
-
cancelIf?: Record<string,
|
|
7026
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7009
7027
|
overrideLock?: boolean | undefined;
|
|
7010
7028
|
} | {
|
|
7011
7029
|
scheduled: number;
|
|
@@ -7026,7 +7044,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7026
7044
|
id?: string | undefined;
|
|
7027
7045
|
persist?: boolean | undefined;
|
|
7028
7046
|
})[] | undefined);
|
|
7029
|
-
cancelIf?: Record<string,
|
|
7047
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7030
7048
|
overrideLock?: boolean | undefined;
|
|
7031
7049
|
} | undefined;
|
|
7032
7050
|
};
|
|
@@ -7051,12 +7069,12 @@ declare module '@scout9/app/schemas' {
|
|
|
7051
7069
|
})[] | undefined;
|
|
7052
7070
|
removeInstructions?: string[] | undefined;
|
|
7053
7071
|
secondsDelay?: number | undefined;
|
|
7054
|
-
contextUpsert?: Record<string,
|
|
7072
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7055
7073
|
resetIntent?: boolean | undefined;
|
|
7056
7074
|
followup?: {
|
|
7057
7075
|
message: string;
|
|
7058
7076
|
scheduled: number;
|
|
7059
|
-
cancelIf?: Record<string,
|
|
7077
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7060
7078
|
overrideLock?: boolean | undefined;
|
|
7061
7079
|
} | {
|
|
7062
7080
|
scheduled: number;
|
|
@@ -7077,7 +7095,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7077
7095
|
id?: string | undefined;
|
|
7078
7096
|
persist?: boolean | undefined;
|
|
7079
7097
|
})[] | undefined);
|
|
7080
|
-
cancelIf?: Record<string,
|
|
7098
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7081
7099
|
overrideLock?: boolean | undefined;
|
|
7082
7100
|
} | undefined;
|
|
7083
7101
|
}[] | undefined;
|
|
@@ -7101,12 +7119,12 @@ declare module '@scout9/app/schemas' {
|
|
|
7101
7119
|
})[] | undefined;
|
|
7102
7120
|
removeInstructions?: string[] | undefined;
|
|
7103
7121
|
secondsDelay?: number | undefined;
|
|
7104
|
-
contextUpsert?: Record<string,
|
|
7122
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7105
7123
|
resetIntent?: boolean | undefined;
|
|
7106
7124
|
followup?: {
|
|
7107
7125
|
message: string;
|
|
7108
7126
|
scheduled: number;
|
|
7109
|
-
cancelIf?: Record<string,
|
|
7127
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7110
7128
|
overrideLock?: boolean | undefined;
|
|
7111
7129
|
} | {
|
|
7112
7130
|
scheduled: number;
|
|
@@ -7127,7 +7145,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7127
7145
|
id?: string | undefined;
|
|
7128
7146
|
persist?: boolean | undefined;
|
|
7129
7147
|
})[] | undefined);
|
|
7130
|
-
cancelIf?: Record<string,
|
|
7148
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7131
7149
|
overrideLock?: boolean | undefined;
|
|
7132
7150
|
} | undefined;
|
|
7133
7151
|
anticipate?: {
|
|
@@ -7152,12 +7170,12 @@ declare module '@scout9/app/schemas' {
|
|
|
7152
7170
|
message?: string | undefined;
|
|
7153
7171
|
secondsDelay?: number | undefined;
|
|
7154
7172
|
scheduled?: number | undefined;
|
|
7155
|
-
contextUpsert?: Record<string,
|
|
7173
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7156
7174
|
resetIntent?: boolean | undefined;
|
|
7157
7175
|
followup?: {
|
|
7158
7176
|
message: string;
|
|
7159
7177
|
scheduled: number;
|
|
7160
|
-
cancelIf?: Record<string,
|
|
7178
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7161
7179
|
overrideLock?: boolean | undefined;
|
|
7162
7180
|
} | {
|
|
7163
7181
|
scheduled: number;
|
|
@@ -7178,7 +7196,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7178
7196
|
id?: string | undefined;
|
|
7179
7197
|
persist?: boolean | undefined;
|
|
7180
7198
|
})[] | undefined);
|
|
7181
|
-
cancelIf?: Record<string,
|
|
7199
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7182
7200
|
overrideLock?: boolean | undefined;
|
|
7183
7201
|
} | undefined;
|
|
7184
7202
|
};
|
|
@@ -7202,12 +7220,12 @@ declare module '@scout9/app/schemas' {
|
|
|
7202
7220
|
message?: string | undefined;
|
|
7203
7221
|
secondsDelay?: number | undefined;
|
|
7204
7222
|
scheduled?: number | undefined;
|
|
7205
|
-
contextUpsert?: Record<string,
|
|
7223
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7206
7224
|
resetIntent?: boolean | undefined;
|
|
7207
7225
|
followup?: {
|
|
7208
7226
|
message: string;
|
|
7209
7227
|
scheduled: number;
|
|
7210
|
-
cancelIf?: Record<string,
|
|
7228
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7211
7229
|
overrideLock?: boolean | undefined;
|
|
7212
7230
|
} | {
|
|
7213
7231
|
scheduled: number;
|
|
@@ -7228,7 +7246,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7228
7246
|
id?: string | undefined;
|
|
7229
7247
|
persist?: boolean | undefined;
|
|
7230
7248
|
})[] | undefined);
|
|
7231
|
-
cancelIf?: Record<string,
|
|
7249
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7232
7250
|
overrideLock?: boolean | undefined;
|
|
7233
7251
|
} | undefined;
|
|
7234
7252
|
};
|
|
@@ -7253,12 +7271,12 @@ declare module '@scout9/app/schemas' {
|
|
|
7253
7271
|
})[] | undefined;
|
|
7254
7272
|
removeInstructions?: string[] | undefined;
|
|
7255
7273
|
secondsDelay?: number | undefined;
|
|
7256
|
-
contextUpsert?: Record<string,
|
|
7274
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7257
7275
|
resetIntent?: boolean | undefined;
|
|
7258
7276
|
followup?: {
|
|
7259
7277
|
message: string;
|
|
7260
7278
|
scheduled: number;
|
|
7261
|
-
cancelIf?: Record<string,
|
|
7279
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7262
7280
|
overrideLock?: boolean | undefined;
|
|
7263
7281
|
} | {
|
|
7264
7282
|
scheduled: number;
|
|
@@ -7279,7 +7297,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7279
7297
|
id?: string | undefined;
|
|
7280
7298
|
persist?: boolean | undefined;
|
|
7281
7299
|
})[] | undefined);
|
|
7282
|
-
cancelIf?: Record<string,
|
|
7300
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7283
7301
|
overrideLock?: boolean | undefined;
|
|
7284
7302
|
} | undefined;
|
|
7285
7303
|
}[] | undefined;
|
|
@@ -7327,26 +7345,26 @@ declare module '@scout9/app/schemas' {
|
|
|
7327
7345
|
}>]>, "many">]>>;
|
|
7328
7346
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7329
7347
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
7330
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7348
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
7331
7349
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
7332
7350
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
7333
7351
|
scheduled: z.ZodNumber;
|
|
7334
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7352
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
7335
7353
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
7336
7354
|
message: z.ZodString;
|
|
7337
7355
|
}, "strip", z.ZodTypeAny, {
|
|
7338
7356
|
message: string;
|
|
7339
7357
|
scheduled: number;
|
|
7340
|
-
cancelIf?: Record<string,
|
|
7358
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7341
7359
|
overrideLock?: boolean | undefined;
|
|
7342
7360
|
}, {
|
|
7343
7361
|
message: string;
|
|
7344
7362
|
scheduled: number;
|
|
7345
|
-
cancelIf?: Record<string,
|
|
7363
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7346
7364
|
overrideLock?: boolean | undefined;
|
|
7347
7365
|
}>, z.ZodObject<{
|
|
7348
7366
|
scheduled: z.ZodNumber;
|
|
7349
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7367
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
7350
7368
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
7351
7369
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
7352
7370
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -7392,7 +7410,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7392
7410
|
id?: string | undefined;
|
|
7393
7411
|
persist?: boolean | undefined;
|
|
7394
7412
|
})[] | undefined);
|
|
7395
|
-
cancelIf?: Record<string,
|
|
7413
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7396
7414
|
overrideLock?: boolean | undefined;
|
|
7397
7415
|
}, {
|
|
7398
7416
|
scheduled: number;
|
|
@@ -7413,7 +7431,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7413
7431
|
id?: string | undefined;
|
|
7414
7432
|
persist?: boolean | undefined;
|
|
7415
7433
|
})[] | undefined);
|
|
7416
|
-
cancelIf?: Record<string,
|
|
7434
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7417
7435
|
overrideLock?: boolean | undefined;
|
|
7418
7436
|
}>]>>;
|
|
7419
7437
|
anticipate: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
@@ -7462,26 +7480,26 @@ declare module '@scout9/app/schemas' {
|
|
|
7462
7480
|
message: z.ZodOptional<z.ZodString>;
|
|
7463
7481
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
7464
7482
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
7465
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7483
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
7466
7484
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
7467
7485
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
7468
7486
|
scheduled: z.ZodNumber;
|
|
7469
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7487
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
7470
7488
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
7471
7489
|
message: z.ZodString;
|
|
7472
7490
|
}, "strip", z.ZodTypeAny, {
|
|
7473
7491
|
message: string;
|
|
7474
7492
|
scheduled: number;
|
|
7475
|
-
cancelIf?: Record<string,
|
|
7493
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7476
7494
|
overrideLock?: boolean | undefined;
|
|
7477
7495
|
}, {
|
|
7478
7496
|
message: string;
|
|
7479
7497
|
scheduled: number;
|
|
7480
|
-
cancelIf?: Record<string,
|
|
7498
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7481
7499
|
overrideLock?: boolean | undefined;
|
|
7482
7500
|
}>, z.ZodObject<{
|
|
7483
7501
|
scheduled: z.ZodNumber;
|
|
7484
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7502
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
7485
7503
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
7486
7504
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
7487
7505
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -7527,7 +7545,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7527
7545
|
id?: string | undefined;
|
|
7528
7546
|
persist?: boolean | undefined;
|
|
7529
7547
|
})[] | undefined);
|
|
7530
|
-
cancelIf?: Record<string,
|
|
7548
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7531
7549
|
overrideLock?: boolean | undefined;
|
|
7532
7550
|
}, {
|
|
7533
7551
|
scheduled: number;
|
|
@@ -7548,7 +7566,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7548
7566
|
id?: string | undefined;
|
|
7549
7567
|
persist?: boolean | undefined;
|
|
7550
7568
|
})[] | undefined);
|
|
7551
|
-
cancelIf?: Record<string,
|
|
7569
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7552
7570
|
overrideLock?: boolean | undefined;
|
|
7553
7571
|
}>]>>;
|
|
7554
7572
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7571,12 +7589,12 @@ declare module '@scout9/app/schemas' {
|
|
|
7571
7589
|
message?: string | undefined;
|
|
7572
7590
|
secondsDelay?: number | undefined;
|
|
7573
7591
|
scheduled?: number | undefined;
|
|
7574
|
-
contextUpsert?: Record<string,
|
|
7592
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7575
7593
|
resetIntent?: boolean | undefined;
|
|
7576
7594
|
followup?: {
|
|
7577
7595
|
message: string;
|
|
7578
7596
|
scheduled: number;
|
|
7579
|
-
cancelIf?: Record<string,
|
|
7597
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7580
7598
|
overrideLock?: boolean | undefined;
|
|
7581
7599
|
} | {
|
|
7582
7600
|
scheduled: number;
|
|
@@ -7597,7 +7615,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7597
7615
|
id?: string | undefined;
|
|
7598
7616
|
persist?: boolean | undefined;
|
|
7599
7617
|
})[] | undefined);
|
|
7600
|
-
cancelIf?: Record<string,
|
|
7618
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7601
7619
|
overrideLock?: boolean | undefined;
|
|
7602
7620
|
} | undefined;
|
|
7603
7621
|
}, {
|
|
@@ -7620,12 +7638,12 @@ declare module '@scout9/app/schemas' {
|
|
|
7620
7638
|
message?: string | undefined;
|
|
7621
7639
|
secondsDelay?: number | undefined;
|
|
7622
7640
|
scheduled?: number | undefined;
|
|
7623
|
-
contextUpsert?: Record<string,
|
|
7641
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7624
7642
|
resetIntent?: boolean | undefined;
|
|
7625
7643
|
followup?: {
|
|
7626
7644
|
message: string;
|
|
7627
7645
|
scheduled: number;
|
|
7628
|
-
cancelIf?: Record<string,
|
|
7646
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7629
7647
|
overrideLock?: boolean | undefined;
|
|
7630
7648
|
} | {
|
|
7631
7649
|
scheduled: number;
|
|
@@ -7646,7 +7664,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7646
7664
|
id?: string | undefined;
|
|
7647
7665
|
persist?: boolean | undefined;
|
|
7648
7666
|
})[] | undefined);
|
|
7649
|
-
cancelIf?: Record<string,
|
|
7667
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7650
7668
|
overrideLock?: boolean | undefined;
|
|
7651
7669
|
} | undefined;
|
|
7652
7670
|
}>;
|
|
@@ -7694,26 +7712,26 @@ declare module '@scout9/app/schemas' {
|
|
|
7694
7712
|
message: z.ZodOptional<z.ZodString>;
|
|
7695
7713
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
7696
7714
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
7697
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7715
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
7698
7716
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
7699
7717
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
7700
7718
|
scheduled: z.ZodNumber;
|
|
7701
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7719
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
7702
7720
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
7703
7721
|
message: z.ZodString;
|
|
7704
7722
|
}, "strip", z.ZodTypeAny, {
|
|
7705
7723
|
message: string;
|
|
7706
7724
|
scheduled: number;
|
|
7707
|
-
cancelIf?: Record<string,
|
|
7725
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7708
7726
|
overrideLock?: boolean | undefined;
|
|
7709
7727
|
}, {
|
|
7710
7728
|
message: string;
|
|
7711
7729
|
scheduled: number;
|
|
7712
|
-
cancelIf?: Record<string,
|
|
7730
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7713
7731
|
overrideLock?: boolean | undefined;
|
|
7714
7732
|
}>, z.ZodObject<{
|
|
7715
7733
|
scheduled: z.ZodNumber;
|
|
7716
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7734
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
7717
7735
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
7718
7736
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
7719
7737
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -7759,7 +7777,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7759
7777
|
id?: string | undefined;
|
|
7760
7778
|
persist?: boolean | undefined;
|
|
7761
7779
|
})[] | undefined);
|
|
7762
|
-
cancelIf?: Record<string,
|
|
7780
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7763
7781
|
overrideLock?: boolean | undefined;
|
|
7764
7782
|
}, {
|
|
7765
7783
|
scheduled: number;
|
|
@@ -7780,7 +7798,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7780
7798
|
id?: string | undefined;
|
|
7781
7799
|
persist?: boolean | undefined;
|
|
7782
7800
|
})[] | undefined);
|
|
7783
|
-
cancelIf?: Record<string,
|
|
7801
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7784
7802
|
overrideLock?: boolean | undefined;
|
|
7785
7803
|
}>]>>;
|
|
7786
7804
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7803,12 +7821,12 @@ declare module '@scout9/app/schemas' {
|
|
|
7803
7821
|
message?: string | undefined;
|
|
7804
7822
|
secondsDelay?: number | undefined;
|
|
7805
7823
|
scheduled?: number | undefined;
|
|
7806
|
-
contextUpsert?: Record<string,
|
|
7824
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7807
7825
|
resetIntent?: boolean | undefined;
|
|
7808
7826
|
followup?: {
|
|
7809
7827
|
message: string;
|
|
7810
7828
|
scheduled: number;
|
|
7811
|
-
cancelIf?: Record<string,
|
|
7829
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7812
7830
|
overrideLock?: boolean | undefined;
|
|
7813
7831
|
} | {
|
|
7814
7832
|
scheduled: number;
|
|
@@ -7829,7 +7847,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7829
7847
|
id?: string | undefined;
|
|
7830
7848
|
persist?: boolean | undefined;
|
|
7831
7849
|
})[] | undefined);
|
|
7832
|
-
cancelIf?: Record<string,
|
|
7850
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7833
7851
|
overrideLock?: boolean | undefined;
|
|
7834
7852
|
} | undefined;
|
|
7835
7853
|
}, {
|
|
@@ -7852,12 +7870,12 @@ declare module '@scout9/app/schemas' {
|
|
|
7852
7870
|
message?: string | undefined;
|
|
7853
7871
|
secondsDelay?: number | undefined;
|
|
7854
7872
|
scheduled?: number | undefined;
|
|
7855
|
-
contextUpsert?: Record<string,
|
|
7873
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7856
7874
|
resetIntent?: boolean | undefined;
|
|
7857
7875
|
followup?: {
|
|
7858
7876
|
message: string;
|
|
7859
7877
|
scheduled: number;
|
|
7860
|
-
cancelIf?: Record<string,
|
|
7878
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7861
7879
|
overrideLock?: boolean | undefined;
|
|
7862
7880
|
} | {
|
|
7863
7881
|
scheduled: number;
|
|
@@ -7878,7 +7896,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7878
7896
|
id?: string | undefined;
|
|
7879
7897
|
persist?: boolean | undefined;
|
|
7880
7898
|
})[] | undefined);
|
|
7881
|
-
cancelIf?: Record<string,
|
|
7899
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7882
7900
|
overrideLock?: boolean | undefined;
|
|
7883
7901
|
} | undefined;
|
|
7884
7902
|
}>;
|
|
@@ -7904,12 +7922,12 @@ declare module '@scout9/app/schemas' {
|
|
|
7904
7922
|
message?: string | undefined;
|
|
7905
7923
|
secondsDelay?: number | undefined;
|
|
7906
7924
|
scheduled?: number | undefined;
|
|
7907
|
-
contextUpsert?: Record<string,
|
|
7925
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7908
7926
|
resetIntent?: boolean | undefined;
|
|
7909
7927
|
followup?: {
|
|
7910
7928
|
message: string;
|
|
7911
7929
|
scheduled: number;
|
|
7912
|
-
cancelIf?: Record<string,
|
|
7930
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7913
7931
|
overrideLock?: boolean | undefined;
|
|
7914
7932
|
} | {
|
|
7915
7933
|
scheduled: number;
|
|
@@ -7930,7 +7948,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7930
7948
|
id?: string | undefined;
|
|
7931
7949
|
persist?: boolean | undefined;
|
|
7932
7950
|
})[] | undefined);
|
|
7933
|
-
cancelIf?: Record<string,
|
|
7951
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7934
7952
|
overrideLock?: boolean | undefined;
|
|
7935
7953
|
} | undefined;
|
|
7936
7954
|
};
|
|
@@ -7954,12 +7972,12 @@ declare module '@scout9/app/schemas' {
|
|
|
7954
7972
|
message?: string | undefined;
|
|
7955
7973
|
secondsDelay?: number | undefined;
|
|
7956
7974
|
scheduled?: number | undefined;
|
|
7957
|
-
contextUpsert?: Record<string,
|
|
7975
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7958
7976
|
resetIntent?: boolean | undefined;
|
|
7959
7977
|
followup?: {
|
|
7960
7978
|
message: string;
|
|
7961
7979
|
scheduled: number;
|
|
7962
|
-
cancelIf?: Record<string,
|
|
7980
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7963
7981
|
overrideLock?: boolean | undefined;
|
|
7964
7982
|
} | {
|
|
7965
7983
|
scheduled: number;
|
|
@@ -7980,7 +7998,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7980
7998
|
id?: string | undefined;
|
|
7981
7999
|
persist?: boolean | undefined;
|
|
7982
8000
|
})[] | undefined);
|
|
7983
|
-
cancelIf?: Record<string,
|
|
8001
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
7984
8002
|
overrideLock?: boolean | undefined;
|
|
7985
8003
|
} | undefined;
|
|
7986
8004
|
};
|
|
@@ -8006,12 +8024,12 @@ declare module '@scout9/app/schemas' {
|
|
|
8006
8024
|
message?: string | undefined;
|
|
8007
8025
|
secondsDelay?: number | undefined;
|
|
8008
8026
|
scheduled?: number | undefined;
|
|
8009
|
-
contextUpsert?: Record<string,
|
|
8027
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8010
8028
|
resetIntent?: boolean | undefined;
|
|
8011
8029
|
followup?: {
|
|
8012
8030
|
message: string;
|
|
8013
8031
|
scheduled: number;
|
|
8014
|
-
cancelIf?: Record<string,
|
|
8032
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8015
8033
|
overrideLock?: boolean | undefined;
|
|
8016
8034
|
} | {
|
|
8017
8035
|
scheduled: number;
|
|
@@ -8032,7 +8050,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8032
8050
|
id?: string | undefined;
|
|
8033
8051
|
persist?: boolean | undefined;
|
|
8034
8052
|
})[] | undefined);
|
|
8035
|
-
cancelIf?: Record<string,
|
|
8053
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8036
8054
|
overrideLock?: boolean | undefined;
|
|
8037
8055
|
} | undefined;
|
|
8038
8056
|
};
|
|
@@ -8056,12 +8074,12 @@ declare module '@scout9/app/schemas' {
|
|
|
8056
8074
|
message?: string | undefined;
|
|
8057
8075
|
secondsDelay?: number | undefined;
|
|
8058
8076
|
scheduled?: number | undefined;
|
|
8059
|
-
contextUpsert?: Record<string,
|
|
8077
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8060
8078
|
resetIntent?: boolean | undefined;
|
|
8061
8079
|
followup?: {
|
|
8062
8080
|
message: string;
|
|
8063
8081
|
scheduled: number;
|
|
8064
|
-
cancelIf?: Record<string,
|
|
8082
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8065
8083
|
overrideLock?: boolean | undefined;
|
|
8066
8084
|
} | {
|
|
8067
8085
|
scheduled: number;
|
|
@@ -8082,7 +8100,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8082
8100
|
id?: string | undefined;
|
|
8083
8101
|
persist?: boolean | undefined;
|
|
8084
8102
|
})[] | undefined);
|
|
8085
|
-
cancelIf?: Record<string,
|
|
8103
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8086
8104
|
overrideLock?: boolean | undefined;
|
|
8087
8105
|
} | undefined;
|
|
8088
8106
|
};
|
|
@@ -8130,26 +8148,26 @@ declare module '@scout9/app/schemas' {
|
|
|
8130
8148
|
}>]>, "many">]>>;
|
|
8131
8149
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8132
8150
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
8133
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
8151
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
8134
8152
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
8135
8153
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
8136
8154
|
scheduled: z.ZodNumber;
|
|
8137
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
8155
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
8138
8156
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
8139
8157
|
message: z.ZodString;
|
|
8140
8158
|
}, "strip", z.ZodTypeAny, {
|
|
8141
8159
|
message: string;
|
|
8142
8160
|
scheduled: number;
|
|
8143
|
-
cancelIf?: Record<string,
|
|
8161
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8144
8162
|
overrideLock?: boolean | undefined;
|
|
8145
8163
|
}, {
|
|
8146
8164
|
message: string;
|
|
8147
8165
|
scheduled: number;
|
|
8148
|
-
cancelIf?: Record<string,
|
|
8166
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8149
8167
|
overrideLock?: boolean | undefined;
|
|
8150
8168
|
}>, z.ZodObject<{
|
|
8151
8169
|
scheduled: z.ZodNumber;
|
|
8152
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
8170
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
8153
8171
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
8154
8172
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
8155
8173
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -8195,7 +8213,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8195
8213
|
id?: string | undefined;
|
|
8196
8214
|
persist?: boolean | undefined;
|
|
8197
8215
|
})[] | undefined);
|
|
8198
|
-
cancelIf?: Record<string,
|
|
8216
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8199
8217
|
overrideLock?: boolean | undefined;
|
|
8200
8218
|
}, {
|
|
8201
8219
|
scheduled: number;
|
|
@@ -8216,7 +8234,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8216
8234
|
id?: string | undefined;
|
|
8217
8235
|
persist?: boolean | undefined;
|
|
8218
8236
|
})[] | undefined);
|
|
8219
|
-
cancelIf?: Record<string,
|
|
8237
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8220
8238
|
overrideLock?: boolean | undefined;
|
|
8221
8239
|
}>]>>;
|
|
8222
8240
|
keywords: z.ZodArray<z.ZodString, "many">;
|
|
@@ -8241,12 +8259,12 @@ declare module '@scout9/app/schemas' {
|
|
|
8241
8259
|
})[] | undefined;
|
|
8242
8260
|
removeInstructions?: string[] | undefined;
|
|
8243
8261
|
secondsDelay?: number | undefined;
|
|
8244
|
-
contextUpsert?: Record<string,
|
|
8262
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8245
8263
|
resetIntent?: boolean | undefined;
|
|
8246
8264
|
followup?: {
|
|
8247
8265
|
message: string;
|
|
8248
8266
|
scheduled: number;
|
|
8249
|
-
cancelIf?: Record<string,
|
|
8267
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8250
8268
|
overrideLock?: boolean | undefined;
|
|
8251
8269
|
} | {
|
|
8252
8270
|
scheduled: number;
|
|
@@ -8267,7 +8285,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8267
8285
|
id?: string | undefined;
|
|
8268
8286
|
persist?: boolean | undefined;
|
|
8269
8287
|
})[] | undefined);
|
|
8270
|
-
cancelIf?: Record<string,
|
|
8288
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8271
8289
|
overrideLock?: boolean | undefined;
|
|
8272
8290
|
} | undefined;
|
|
8273
8291
|
}, {
|
|
@@ -8291,12 +8309,12 @@ declare module '@scout9/app/schemas' {
|
|
|
8291
8309
|
})[] | undefined;
|
|
8292
8310
|
removeInstructions?: string[] | undefined;
|
|
8293
8311
|
secondsDelay?: number | undefined;
|
|
8294
|
-
contextUpsert?: Record<string,
|
|
8312
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8295
8313
|
resetIntent?: boolean | undefined;
|
|
8296
8314
|
followup?: {
|
|
8297
8315
|
message: string;
|
|
8298
8316
|
scheduled: number;
|
|
8299
|
-
cancelIf?: Record<string,
|
|
8317
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8300
8318
|
overrideLock?: boolean | undefined;
|
|
8301
8319
|
} | {
|
|
8302
8320
|
scheduled: number;
|
|
@@ -8317,7 +8335,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8317
8335
|
id?: string | undefined;
|
|
8318
8336
|
persist?: boolean | undefined;
|
|
8319
8337
|
})[] | undefined);
|
|
8320
|
-
cancelIf?: Record<string,
|
|
8338
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8321
8339
|
overrideLock?: boolean | undefined;
|
|
8322
8340
|
} | undefined;
|
|
8323
8341
|
}>, "many">]>>;
|
|
@@ -8341,12 +8359,12 @@ declare module '@scout9/app/schemas' {
|
|
|
8341
8359
|
})[] | undefined;
|
|
8342
8360
|
removeInstructions?: string[] | undefined;
|
|
8343
8361
|
secondsDelay?: number | undefined;
|
|
8344
|
-
contextUpsert?: Record<string,
|
|
8362
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8345
8363
|
resetIntent?: boolean | undefined;
|
|
8346
8364
|
followup?: {
|
|
8347
8365
|
message: string;
|
|
8348
8366
|
scheduled: number;
|
|
8349
|
-
cancelIf?: Record<string,
|
|
8367
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8350
8368
|
overrideLock?: boolean | undefined;
|
|
8351
8369
|
} | {
|
|
8352
8370
|
scheduled: number;
|
|
@@ -8367,7 +8385,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8367
8385
|
id?: string | undefined;
|
|
8368
8386
|
persist?: boolean | undefined;
|
|
8369
8387
|
})[] | undefined);
|
|
8370
|
-
cancelIf?: Record<string,
|
|
8388
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8371
8389
|
overrideLock?: boolean | undefined;
|
|
8372
8390
|
} | undefined;
|
|
8373
8391
|
anticipate?: {
|
|
@@ -8392,12 +8410,12 @@ declare module '@scout9/app/schemas' {
|
|
|
8392
8410
|
message?: string | undefined;
|
|
8393
8411
|
secondsDelay?: number | undefined;
|
|
8394
8412
|
scheduled?: number | undefined;
|
|
8395
|
-
contextUpsert?: Record<string,
|
|
8413
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8396
8414
|
resetIntent?: boolean | undefined;
|
|
8397
8415
|
followup?: {
|
|
8398
8416
|
message: string;
|
|
8399
8417
|
scheduled: number;
|
|
8400
|
-
cancelIf?: Record<string,
|
|
8418
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8401
8419
|
overrideLock?: boolean | undefined;
|
|
8402
8420
|
} | {
|
|
8403
8421
|
scheduled: number;
|
|
@@ -8418,7 +8436,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8418
8436
|
id?: string | undefined;
|
|
8419
8437
|
persist?: boolean | undefined;
|
|
8420
8438
|
})[] | undefined);
|
|
8421
|
-
cancelIf?: Record<string,
|
|
8439
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8422
8440
|
overrideLock?: boolean | undefined;
|
|
8423
8441
|
} | undefined;
|
|
8424
8442
|
};
|
|
@@ -8442,12 +8460,12 @@ declare module '@scout9/app/schemas' {
|
|
|
8442
8460
|
message?: string | undefined;
|
|
8443
8461
|
secondsDelay?: number | undefined;
|
|
8444
8462
|
scheduled?: number | undefined;
|
|
8445
|
-
contextUpsert?: Record<string,
|
|
8463
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8446
8464
|
resetIntent?: boolean | undefined;
|
|
8447
8465
|
followup?: {
|
|
8448
8466
|
message: string;
|
|
8449
8467
|
scheduled: number;
|
|
8450
|
-
cancelIf?: Record<string,
|
|
8468
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8451
8469
|
overrideLock?: boolean | undefined;
|
|
8452
8470
|
} | {
|
|
8453
8471
|
scheduled: number;
|
|
@@ -8468,7 +8486,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8468
8486
|
id?: string | undefined;
|
|
8469
8487
|
persist?: boolean | undefined;
|
|
8470
8488
|
})[] | undefined);
|
|
8471
|
-
cancelIf?: Record<string,
|
|
8489
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8472
8490
|
overrideLock?: boolean | undefined;
|
|
8473
8491
|
} | undefined;
|
|
8474
8492
|
};
|
|
@@ -8493,12 +8511,12 @@ declare module '@scout9/app/schemas' {
|
|
|
8493
8511
|
})[] | undefined;
|
|
8494
8512
|
removeInstructions?: string[] | undefined;
|
|
8495
8513
|
secondsDelay?: number | undefined;
|
|
8496
|
-
contextUpsert?: Record<string,
|
|
8514
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8497
8515
|
resetIntent?: boolean | undefined;
|
|
8498
8516
|
followup?: {
|
|
8499
8517
|
message: string;
|
|
8500
8518
|
scheduled: number;
|
|
8501
|
-
cancelIf?: Record<string,
|
|
8519
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8502
8520
|
overrideLock?: boolean | undefined;
|
|
8503
8521
|
} | {
|
|
8504
8522
|
scheduled: number;
|
|
@@ -8519,7 +8537,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8519
8537
|
id?: string | undefined;
|
|
8520
8538
|
persist?: boolean | undefined;
|
|
8521
8539
|
})[] | undefined);
|
|
8522
|
-
cancelIf?: Record<string,
|
|
8540
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8523
8541
|
overrideLock?: boolean | undefined;
|
|
8524
8542
|
} | undefined;
|
|
8525
8543
|
}[] | undefined;
|
|
@@ -8543,12 +8561,12 @@ declare module '@scout9/app/schemas' {
|
|
|
8543
8561
|
})[] | undefined;
|
|
8544
8562
|
removeInstructions?: string[] | undefined;
|
|
8545
8563
|
secondsDelay?: number | undefined;
|
|
8546
|
-
contextUpsert?: Record<string,
|
|
8564
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8547
8565
|
resetIntent?: boolean | undefined;
|
|
8548
8566
|
followup?: {
|
|
8549
8567
|
message: string;
|
|
8550
8568
|
scheduled: number;
|
|
8551
|
-
cancelIf?: Record<string,
|
|
8569
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8552
8570
|
overrideLock?: boolean | undefined;
|
|
8553
8571
|
} | {
|
|
8554
8572
|
scheduled: number;
|
|
@@ -8569,7 +8587,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8569
8587
|
id?: string | undefined;
|
|
8570
8588
|
persist?: boolean | undefined;
|
|
8571
8589
|
})[] | undefined);
|
|
8572
|
-
cancelIf?: Record<string,
|
|
8590
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8573
8591
|
overrideLock?: boolean | undefined;
|
|
8574
8592
|
} | undefined;
|
|
8575
8593
|
anticipate?: {
|
|
@@ -8594,12 +8612,12 @@ declare module '@scout9/app/schemas' {
|
|
|
8594
8612
|
message?: string | undefined;
|
|
8595
8613
|
secondsDelay?: number | undefined;
|
|
8596
8614
|
scheduled?: number | undefined;
|
|
8597
|
-
contextUpsert?: Record<string,
|
|
8615
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8598
8616
|
resetIntent?: boolean | undefined;
|
|
8599
8617
|
followup?: {
|
|
8600
8618
|
message: string;
|
|
8601
8619
|
scheduled: number;
|
|
8602
|
-
cancelIf?: Record<string,
|
|
8620
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8603
8621
|
overrideLock?: boolean | undefined;
|
|
8604
8622
|
} | {
|
|
8605
8623
|
scheduled: number;
|
|
@@ -8620,7 +8638,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8620
8638
|
id?: string | undefined;
|
|
8621
8639
|
persist?: boolean | undefined;
|
|
8622
8640
|
})[] | undefined);
|
|
8623
|
-
cancelIf?: Record<string,
|
|
8641
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8624
8642
|
overrideLock?: boolean | undefined;
|
|
8625
8643
|
} | undefined;
|
|
8626
8644
|
};
|
|
@@ -8644,12 +8662,12 @@ declare module '@scout9/app/schemas' {
|
|
|
8644
8662
|
message?: string | undefined;
|
|
8645
8663
|
secondsDelay?: number | undefined;
|
|
8646
8664
|
scheduled?: number | undefined;
|
|
8647
|
-
contextUpsert?: Record<string,
|
|
8665
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8648
8666
|
resetIntent?: boolean | undefined;
|
|
8649
8667
|
followup?: {
|
|
8650
8668
|
message: string;
|
|
8651
8669
|
scheduled: number;
|
|
8652
|
-
cancelIf?: Record<string,
|
|
8670
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8653
8671
|
overrideLock?: boolean | undefined;
|
|
8654
8672
|
} | {
|
|
8655
8673
|
scheduled: number;
|
|
@@ -8670,7 +8688,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8670
8688
|
id?: string | undefined;
|
|
8671
8689
|
persist?: boolean | undefined;
|
|
8672
8690
|
})[] | undefined);
|
|
8673
|
-
cancelIf?: Record<string,
|
|
8691
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8674
8692
|
overrideLock?: boolean | undefined;
|
|
8675
8693
|
} | undefined;
|
|
8676
8694
|
};
|
|
@@ -8695,12 +8713,12 @@ declare module '@scout9/app/schemas' {
|
|
|
8695
8713
|
})[] | undefined;
|
|
8696
8714
|
removeInstructions?: string[] | undefined;
|
|
8697
8715
|
secondsDelay?: number | undefined;
|
|
8698
|
-
contextUpsert?: Record<string,
|
|
8716
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8699
8717
|
resetIntent?: boolean | undefined;
|
|
8700
8718
|
followup?: {
|
|
8701
8719
|
message: string;
|
|
8702
8720
|
scheduled: number;
|
|
8703
|
-
cancelIf?: Record<string,
|
|
8721
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8704
8722
|
overrideLock?: boolean | undefined;
|
|
8705
8723
|
} | {
|
|
8706
8724
|
scheduled: number;
|
|
@@ -8721,7 +8739,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8721
8739
|
id?: string | undefined;
|
|
8722
8740
|
persist?: boolean | undefined;
|
|
8723
8741
|
})[] | undefined);
|
|
8724
|
-
cancelIf?: Record<string,
|
|
8742
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
8725
8743
|
overrideLock?: boolean | undefined;
|
|
8726
8744
|
} | undefined;
|
|
8727
8745
|
}[] | undefined;
|
|
@@ -8777,12 +8795,18 @@ declare module '@scout9/app/schemas' {
|
|
|
8777
8795
|
platformEmailThreadId?: string | undefined;
|
|
8778
8796
|
}>>;
|
|
8779
8797
|
locked: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
8798
|
+
/**
|
|
8799
|
+
* The intended response provided by the WorkflowResponseMessageApiRequest
|
|
8800
|
+
*/
|
|
8780
8801
|
lockedReason: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8781
8802
|
lockAttempts: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
8782
8803
|
forwardedTo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8783
8804
|
forwarded: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8784
8805
|
forwardNote: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8785
8806
|
intent: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8807
|
+
/**
|
|
8808
|
+
* Base follow up schema to follow up with the client
|
|
8809
|
+
*/
|
|
8786
8810
|
intentScore: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
8787
8811
|
anticipate: z.ZodOptional<z.ZodObject<{
|
|
8788
8812
|
type: z.ZodEnum<["did", "literal", "context"]>;
|
|
@@ -9314,26 +9338,26 @@ declare module '@scout9/app/schemas' {
|
|
|
9314
9338
|
}>]>, "many">]>>;
|
|
9315
9339
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9316
9340
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
9317
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
9341
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
9318
9342
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
9319
9343
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
9320
9344
|
scheduled: z.ZodNumber;
|
|
9321
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
9345
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
9322
9346
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
9323
9347
|
message: z.ZodString;
|
|
9324
9348
|
}, "strip", z.ZodTypeAny, {
|
|
9325
9349
|
message: string;
|
|
9326
9350
|
scheduled: number;
|
|
9327
|
-
cancelIf?: Record<string,
|
|
9351
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9328
9352
|
overrideLock?: boolean | undefined;
|
|
9329
9353
|
}, {
|
|
9330
9354
|
message: string;
|
|
9331
9355
|
scheduled: number;
|
|
9332
|
-
cancelIf?: Record<string,
|
|
9356
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9333
9357
|
overrideLock?: boolean | undefined;
|
|
9334
9358
|
}>, z.ZodObject<{
|
|
9335
9359
|
scheduled: z.ZodNumber;
|
|
9336
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
9360
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
9337
9361
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
9338
9362
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
9339
9363
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -9379,7 +9403,7 @@ declare module '@scout9/app/schemas' {
|
|
|
9379
9403
|
id?: string | undefined;
|
|
9380
9404
|
persist?: boolean | undefined;
|
|
9381
9405
|
})[] | undefined);
|
|
9382
|
-
cancelIf?: Record<string,
|
|
9406
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9383
9407
|
overrideLock?: boolean | undefined;
|
|
9384
9408
|
}, {
|
|
9385
9409
|
scheduled: number;
|
|
@@ -9400,7 +9424,7 @@ declare module '@scout9/app/schemas' {
|
|
|
9400
9424
|
id?: string | undefined;
|
|
9401
9425
|
persist?: boolean | undefined;
|
|
9402
9426
|
})[] | undefined);
|
|
9403
|
-
cancelIf?: Record<string,
|
|
9427
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9404
9428
|
overrideLock?: boolean | undefined;
|
|
9405
9429
|
}>]>>;
|
|
9406
9430
|
anticipate: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
@@ -9449,26 +9473,26 @@ declare module '@scout9/app/schemas' {
|
|
|
9449
9473
|
message: z.ZodOptional<z.ZodString>;
|
|
9450
9474
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
9451
9475
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
9452
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
9476
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
9453
9477
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
9454
9478
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
9455
9479
|
scheduled: z.ZodNumber;
|
|
9456
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
9480
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
9457
9481
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
9458
9482
|
message: z.ZodString;
|
|
9459
9483
|
}, "strip", z.ZodTypeAny, {
|
|
9460
9484
|
message: string;
|
|
9461
9485
|
scheduled: number;
|
|
9462
|
-
cancelIf?: Record<string,
|
|
9486
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9463
9487
|
overrideLock?: boolean | undefined;
|
|
9464
9488
|
}, {
|
|
9465
9489
|
message: string;
|
|
9466
9490
|
scheduled: number;
|
|
9467
|
-
cancelIf?: Record<string,
|
|
9491
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9468
9492
|
overrideLock?: boolean | undefined;
|
|
9469
9493
|
}>, z.ZodObject<{
|
|
9470
9494
|
scheduled: z.ZodNumber;
|
|
9471
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
9495
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
9472
9496
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
9473
9497
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
9474
9498
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -9514,7 +9538,7 @@ declare module '@scout9/app/schemas' {
|
|
|
9514
9538
|
id?: string | undefined;
|
|
9515
9539
|
persist?: boolean | undefined;
|
|
9516
9540
|
})[] | undefined);
|
|
9517
|
-
cancelIf?: Record<string,
|
|
9541
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9518
9542
|
overrideLock?: boolean | undefined;
|
|
9519
9543
|
}, {
|
|
9520
9544
|
scheduled: number;
|
|
@@ -9535,7 +9559,7 @@ declare module '@scout9/app/schemas' {
|
|
|
9535
9559
|
id?: string | undefined;
|
|
9536
9560
|
persist?: boolean | undefined;
|
|
9537
9561
|
})[] | undefined);
|
|
9538
|
-
cancelIf?: Record<string,
|
|
9562
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9539
9563
|
overrideLock?: boolean | undefined;
|
|
9540
9564
|
}>]>>;
|
|
9541
9565
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -9558,12 +9582,12 @@ declare module '@scout9/app/schemas' {
|
|
|
9558
9582
|
message?: string | undefined;
|
|
9559
9583
|
secondsDelay?: number | undefined;
|
|
9560
9584
|
scheduled?: number | undefined;
|
|
9561
|
-
contextUpsert?: Record<string,
|
|
9585
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9562
9586
|
resetIntent?: boolean | undefined;
|
|
9563
9587
|
followup?: {
|
|
9564
9588
|
message: string;
|
|
9565
9589
|
scheduled: number;
|
|
9566
|
-
cancelIf?: Record<string,
|
|
9590
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9567
9591
|
overrideLock?: boolean | undefined;
|
|
9568
9592
|
} | {
|
|
9569
9593
|
scheduled: number;
|
|
@@ -9584,7 +9608,7 @@ declare module '@scout9/app/schemas' {
|
|
|
9584
9608
|
id?: string | undefined;
|
|
9585
9609
|
persist?: boolean | undefined;
|
|
9586
9610
|
})[] | undefined);
|
|
9587
|
-
cancelIf?: Record<string,
|
|
9611
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9588
9612
|
overrideLock?: boolean | undefined;
|
|
9589
9613
|
} | undefined;
|
|
9590
9614
|
}, {
|
|
@@ -9607,12 +9631,12 @@ declare module '@scout9/app/schemas' {
|
|
|
9607
9631
|
message?: string | undefined;
|
|
9608
9632
|
secondsDelay?: number | undefined;
|
|
9609
9633
|
scheduled?: number | undefined;
|
|
9610
|
-
contextUpsert?: Record<string,
|
|
9634
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9611
9635
|
resetIntent?: boolean | undefined;
|
|
9612
9636
|
followup?: {
|
|
9613
9637
|
message: string;
|
|
9614
9638
|
scheduled: number;
|
|
9615
|
-
cancelIf?: Record<string,
|
|
9639
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9616
9640
|
overrideLock?: boolean | undefined;
|
|
9617
9641
|
} | {
|
|
9618
9642
|
scheduled: number;
|
|
@@ -9633,7 +9657,7 @@ declare module '@scout9/app/schemas' {
|
|
|
9633
9657
|
id?: string | undefined;
|
|
9634
9658
|
persist?: boolean | undefined;
|
|
9635
9659
|
})[] | undefined);
|
|
9636
|
-
cancelIf?: Record<string,
|
|
9660
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9637
9661
|
overrideLock?: boolean | undefined;
|
|
9638
9662
|
} | undefined;
|
|
9639
9663
|
}>;
|
|
@@ -9681,26 +9705,26 @@ declare module '@scout9/app/schemas' {
|
|
|
9681
9705
|
message: z.ZodOptional<z.ZodString>;
|
|
9682
9706
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
9683
9707
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
9684
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
9708
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
9685
9709
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
9686
9710
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
9687
9711
|
scheduled: z.ZodNumber;
|
|
9688
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
9712
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
9689
9713
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
9690
9714
|
message: z.ZodString;
|
|
9691
9715
|
}, "strip", z.ZodTypeAny, {
|
|
9692
9716
|
message: string;
|
|
9693
9717
|
scheduled: number;
|
|
9694
|
-
cancelIf?: Record<string,
|
|
9718
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9695
9719
|
overrideLock?: boolean | undefined;
|
|
9696
9720
|
}, {
|
|
9697
9721
|
message: string;
|
|
9698
9722
|
scheduled: number;
|
|
9699
|
-
cancelIf?: Record<string,
|
|
9723
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9700
9724
|
overrideLock?: boolean | undefined;
|
|
9701
9725
|
}>, z.ZodObject<{
|
|
9702
9726
|
scheduled: z.ZodNumber;
|
|
9703
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
9727
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
9704
9728
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
9705
9729
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
9706
9730
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -9746,7 +9770,7 @@ declare module '@scout9/app/schemas' {
|
|
|
9746
9770
|
id?: string | undefined;
|
|
9747
9771
|
persist?: boolean | undefined;
|
|
9748
9772
|
})[] | undefined);
|
|
9749
|
-
cancelIf?: Record<string,
|
|
9773
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9750
9774
|
overrideLock?: boolean | undefined;
|
|
9751
9775
|
}, {
|
|
9752
9776
|
scheduled: number;
|
|
@@ -9767,7 +9791,7 @@ declare module '@scout9/app/schemas' {
|
|
|
9767
9791
|
id?: string | undefined;
|
|
9768
9792
|
persist?: boolean | undefined;
|
|
9769
9793
|
})[] | undefined);
|
|
9770
|
-
cancelIf?: Record<string,
|
|
9794
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9771
9795
|
overrideLock?: boolean | undefined;
|
|
9772
9796
|
}>]>>;
|
|
9773
9797
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -9790,12 +9814,12 @@ declare module '@scout9/app/schemas' {
|
|
|
9790
9814
|
message?: string | undefined;
|
|
9791
9815
|
secondsDelay?: number | undefined;
|
|
9792
9816
|
scheduled?: number | undefined;
|
|
9793
|
-
contextUpsert?: Record<string,
|
|
9817
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9794
9818
|
resetIntent?: boolean | undefined;
|
|
9795
9819
|
followup?: {
|
|
9796
9820
|
message: string;
|
|
9797
9821
|
scheduled: number;
|
|
9798
|
-
cancelIf?: Record<string,
|
|
9822
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9799
9823
|
overrideLock?: boolean | undefined;
|
|
9800
9824
|
} | {
|
|
9801
9825
|
scheduled: number;
|
|
@@ -9816,7 +9840,7 @@ declare module '@scout9/app/schemas' {
|
|
|
9816
9840
|
id?: string | undefined;
|
|
9817
9841
|
persist?: boolean | undefined;
|
|
9818
9842
|
})[] | undefined);
|
|
9819
|
-
cancelIf?: Record<string,
|
|
9843
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9820
9844
|
overrideLock?: boolean | undefined;
|
|
9821
9845
|
} | undefined;
|
|
9822
9846
|
}, {
|
|
@@ -9839,12 +9863,12 @@ declare module '@scout9/app/schemas' {
|
|
|
9839
9863
|
message?: string | undefined;
|
|
9840
9864
|
secondsDelay?: number | undefined;
|
|
9841
9865
|
scheduled?: number | undefined;
|
|
9842
|
-
contextUpsert?: Record<string,
|
|
9866
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9843
9867
|
resetIntent?: boolean | undefined;
|
|
9844
9868
|
followup?: {
|
|
9845
9869
|
message: string;
|
|
9846
9870
|
scheduled: number;
|
|
9847
|
-
cancelIf?: Record<string,
|
|
9871
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9848
9872
|
overrideLock?: boolean | undefined;
|
|
9849
9873
|
} | {
|
|
9850
9874
|
scheduled: number;
|
|
@@ -9865,7 +9889,7 @@ declare module '@scout9/app/schemas' {
|
|
|
9865
9889
|
id?: string | undefined;
|
|
9866
9890
|
persist?: boolean | undefined;
|
|
9867
9891
|
})[] | undefined);
|
|
9868
|
-
cancelIf?: Record<string,
|
|
9892
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9869
9893
|
overrideLock?: boolean | undefined;
|
|
9870
9894
|
} | undefined;
|
|
9871
9895
|
}>;
|
|
@@ -9891,12 +9915,12 @@ declare module '@scout9/app/schemas' {
|
|
|
9891
9915
|
message?: string | undefined;
|
|
9892
9916
|
secondsDelay?: number | undefined;
|
|
9893
9917
|
scheduled?: number | undefined;
|
|
9894
|
-
contextUpsert?: Record<string,
|
|
9918
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9895
9919
|
resetIntent?: boolean | undefined;
|
|
9896
9920
|
followup?: {
|
|
9897
9921
|
message: string;
|
|
9898
9922
|
scheduled: number;
|
|
9899
|
-
cancelIf?: Record<string,
|
|
9923
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9900
9924
|
overrideLock?: boolean | undefined;
|
|
9901
9925
|
} | {
|
|
9902
9926
|
scheduled: number;
|
|
@@ -9917,7 +9941,7 @@ declare module '@scout9/app/schemas' {
|
|
|
9917
9941
|
id?: string | undefined;
|
|
9918
9942
|
persist?: boolean | undefined;
|
|
9919
9943
|
})[] | undefined);
|
|
9920
|
-
cancelIf?: Record<string,
|
|
9944
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9921
9945
|
overrideLock?: boolean | undefined;
|
|
9922
9946
|
} | undefined;
|
|
9923
9947
|
};
|
|
@@ -9941,12 +9965,12 @@ declare module '@scout9/app/schemas' {
|
|
|
9941
9965
|
message?: string | undefined;
|
|
9942
9966
|
secondsDelay?: number | undefined;
|
|
9943
9967
|
scheduled?: number | undefined;
|
|
9944
|
-
contextUpsert?: Record<string,
|
|
9968
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9945
9969
|
resetIntent?: boolean | undefined;
|
|
9946
9970
|
followup?: {
|
|
9947
9971
|
message: string;
|
|
9948
9972
|
scheduled: number;
|
|
9949
|
-
cancelIf?: Record<string,
|
|
9973
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9950
9974
|
overrideLock?: boolean | undefined;
|
|
9951
9975
|
} | {
|
|
9952
9976
|
scheduled: number;
|
|
@@ -9967,7 +9991,7 @@ declare module '@scout9/app/schemas' {
|
|
|
9967
9991
|
id?: string | undefined;
|
|
9968
9992
|
persist?: boolean | undefined;
|
|
9969
9993
|
})[] | undefined);
|
|
9970
|
-
cancelIf?: Record<string,
|
|
9994
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9971
9995
|
overrideLock?: boolean | undefined;
|
|
9972
9996
|
} | undefined;
|
|
9973
9997
|
};
|
|
@@ -9993,12 +10017,12 @@ declare module '@scout9/app/schemas' {
|
|
|
9993
10017
|
message?: string | undefined;
|
|
9994
10018
|
secondsDelay?: number | undefined;
|
|
9995
10019
|
scheduled?: number | undefined;
|
|
9996
|
-
contextUpsert?: Record<string,
|
|
10020
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
9997
10021
|
resetIntent?: boolean | undefined;
|
|
9998
10022
|
followup?: {
|
|
9999
10023
|
message: string;
|
|
10000
10024
|
scheduled: number;
|
|
10001
|
-
cancelIf?: Record<string,
|
|
10025
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10002
10026
|
overrideLock?: boolean | undefined;
|
|
10003
10027
|
} | {
|
|
10004
10028
|
scheduled: number;
|
|
@@ -10019,7 +10043,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10019
10043
|
id?: string | undefined;
|
|
10020
10044
|
persist?: boolean | undefined;
|
|
10021
10045
|
})[] | undefined);
|
|
10022
|
-
cancelIf?: Record<string,
|
|
10046
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10023
10047
|
overrideLock?: boolean | undefined;
|
|
10024
10048
|
} | undefined;
|
|
10025
10049
|
};
|
|
@@ -10043,12 +10067,12 @@ declare module '@scout9/app/schemas' {
|
|
|
10043
10067
|
message?: string | undefined;
|
|
10044
10068
|
secondsDelay?: number | undefined;
|
|
10045
10069
|
scheduled?: number | undefined;
|
|
10046
|
-
contextUpsert?: Record<string,
|
|
10070
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10047
10071
|
resetIntent?: boolean | undefined;
|
|
10048
10072
|
followup?: {
|
|
10049
10073
|
message: string;
|
|
10050
10074
|
scheduled: number;
|
|
10051
|
-
cancelIf?: Record<string,
|
|
10075
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10052
10076
|
overrideLock?: boolean | undefined;
|
|
10053
10077
|
} | {
|
|
10054
10078
|
scheduled: number;
|
|
@@ -10069,7 +10093,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10069
10093
|
id?: string | undefined;
|
|
10070
10094
|
persist?: boolean | undefined;
|
|
10071
10095
|
})[] | undefined);
|
|
10072
|
-
cancelIf?: Record<string,
|
|
10096
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10073
10097
|
overrideLock?: boolean | undefined;
|
|
10074
10098
|
} | undefined;
|
|
10075
10099
|
};
|
|
@@ -10117,26 +10141,26 @@ declare module '@scout9/app/schemas' {
|
|
|
10117
10141
|
}>]>, "many">]>>;
|
|
10118
10142
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10119
10143
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
10120
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
10144
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
10121
10145
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
10122
10146
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
10123
10147
|
scheduled: z.ZodNumber;
|
|
10124
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
10148
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
10125
10149
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
10126
10150
|
message: z.ZodString;
|
|
10127
10151
|
}, "strip", z.ZodTypeAny, {
|
|
10128
10152
|
message: string;
|
|
10129
10153
|
scheduled: number;
|
|
10130
|
-
cancelIf?: Record<string,
|
|
10154
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10131
10155
|
overrideLock?: boolean | undefined;
|
|
10132
10156
|
}, {
|
|
10133
10157
|
message: string;
|
|
10134
10158
|
scheduled: number;
|
|
10135
|
-
cancelIf?: Record<string,
|
|
10159
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10136
10160
|
overrideLock?: boolean | undefined;
|
|
10137
10161
|
}>, z.ZodObject<{
|
|
10138
10162
|
scheduled: z.ZodNumber;
|
|
10139
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
10163
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
10140
10164
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
10141
10165
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
10142
10166
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -10182,7 +10206,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10182
10206
|
id?: string | undefined;
|
|
10183
10207
|
persist?: boolean | undefined;
|
|
10184
10208
|
})[] | undefined);
|
|
10185
|
-
cancelIf?: Record<string,
|
|
10209
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10186
10210
|
overrideLock?: boolean | undefined;
|
|
10187
10211
|
}, {
|
|
10188
10212
|
scheduled: number;
|
|
@@ -10203,7 +10227,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10203
10227
|
id?: string | undefined;
|
|
10204
10228
|
persist?: boolean | undefined;
|
|
10205
10229
|
})[] | undefined);
|
|
10206
|
-
cancelIf?: Record<string,
|
|
10230
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10207
10231
|
overrideLock?: boolean | undefined;
|
|
10208
10232
|
}>]>>;
|
|
10209
10233
|
keywords: z.ZodArray<z.ZodString, "many">;
|
|
@@ -10228,12 +10252,12 @@ declare module '@scout9/app/schemas' {
|
|
|
10228
10252
|
})[] | undefined;
|
|
10229
10253
|
removeInstructions?: string[] | undefined;
|
|
10230
10254
|
secondsDelay?: number | undefined;
|
|
10231
|
-
contextUpsert?: Record<string,
|
|
10255
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10232
10256
|
resetIntent?: boolean | undefined;
|
|
10233
10257
|
followup?: {
|
|
10234
10258
|
message: string;
|
|
10235
10259
|
scheduled: number;
|
|
10236
|
-
cancelIf?: Record<string,
|
|
10260
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10237
10261
|
overrideLock?: boolean | undefined;
|
|
10238
10262
|
} | {
|
|
10239
10263
|
scheduled: number;
|
|
@@ -10254,7 +10278,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10254
10278
|
id?: string | undefined;
|
|
10255
10279
|
persist?: boolean | undefined;
|
|
10256
10280
|
})[] | undefined);
|
|
10257
|
-
cancelIf?: Record<string,
|
|
10281
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10258
10282
|
overrideLock?: boolean | undefined;
|
|
10259
10283
|
} | undefined;
|
|
10260
10284
|
}, {
|
|
@@ -10278,12 +10302,12 @@ declare module '@scout9/app/schemas' {
|
|
|
10278
10302
|
})[] | undefined;
|
|
10279
10303
|
removeInstructions?: string[] | undefined;
|
|
10280
10304
|
secondsDelay?: number | undefined;
|
|
10281
|
-
contextUpsert?: Record<string,
|
|
10305
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10282
10306
|
resetIntent?: boolean | undefined;
|
|
10283
10307
|
followup?: {
|
|
10284
10308
|
message: string;
|
|
10285
10309
|
scheduled: number;
|
|
10286
|
-
cancelIf?: Record<string,
|
|
10310
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10287
10311
|
overrideLock?: boolean | undefined;
|
|
10288
10312
|
} | {
|
|
10289
10313
|
scheduled: number;
|
|
@@ -10304,7 +10328,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10304
10328
|
id?: string | undefined;
|
|
10305
10329
|
persist?: boolean | undefined;
|
|
10306
10330
|
})[] | undefined);
|
|
10307
|
-
cancelIf?: Record<string,
|
|
10331
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10308
10332
|
overrideLock?: boolean | undefined;
|
|
10309
10333
|
} | undefined;
|
|
10310
10334
|
}>, "many">]>>;
|
|
@@ -10328,12 +10352,12 @@ declare module '@scout9/app/schemas' {
|
|
|
10328
10352
|
})[] | undefined;
|
|
10329
10353
|
removeInstructions?: string[] | undefined;
|
|
10330
10354
|
secondsDelay?: number | undefined;
|
|
10331
|
-
contextUpsert?: Record<string,
|
|
10355
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10332
10356
|
resetIntent?: boolean | undefined;
|
|
10333
10357
|
followup?: {
|
|
10334
10358
|
message: string;
|
|
10335
10359
|
scheduled: number;
|
|
10336
|
-
cancelIf?: Record<string,
|
|
10360
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10337
10361
|
overrideLock?: boolean | undefined;
|
|
10338
10362
|
} | {
|
|
10339
10363
|
scheduled: number;
|
|
@@ -10354,7 +10378,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10354
10378
|
id?: string | undefined;
|
|
10355
10379
|
persist?: boolean | undefined;
|
|
10356
10380
|
})[] | undefined);
|
|
10357
|
-
cancelIf?: Record<string,
|
|
10381
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10358
10382
|
overrideLock?: boolean | undefined;
|
|
10359
10383
|
} | undefined;
|
|
10360
10384
|
anticipate?: {
|
|
@@ -10379,12 +10403,12 @@ declare module '@scout9/app/schemas' {
|
|
|
10379
10403
|
message?: string | undefined;
|
|
10380
10404
|
secondsDelay?: number | undefined;
|
|
10381
10405
|
scheduled?: number | undefined;
|
|
10382
|
-
contextUpsert?: Record<string,
|
|
10406
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10383
10407
|
resetIntent?: boolean | undefined;
|
|
10384
10408
|
followup?: {
|
|
10385
10409
|
message: string;
|
|
10386
10410
|
scheduled: number;
|
|
10387
|
-
cancelIf?: Record<string,
|
|
10411
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10388
10412
|
overrideLock?: boolean | undefined;
|
|
10389
10413
|
} | {
|
|
10390
10414
|
scheduled: number;
|
|
@@ -10405,7 +10429,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10405
10429
|
id?: string | undefined;
|
|
10406
10430
|
persist?: boolean | undefined;
|
|
10407
10431
|
})[] | undefined);
|
|
10408
|
-
cancelIf?: Record<string,
|
|
10432
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10409
10433
|
overrideLock?: boolean | undefined;
|
|
10410
10434
|
} | undefined;
|
|
10411
10435
|
};
|
|
@@ -10429,12 +10453,12 @@ declare module '@scout9/app/schemas' {
|
|
|
10429
10453
|
message?: string | undefined;
|
|
10430
10454
|
secondsDelay?: number | undefined;
|
|
10431
10455
|
scheduled?: number | undefined;
|
|
10432
|
-
contextUpsert?: Record<string,
|
|
10456
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10433
10457
|
resetIntent?: boolean | undefined;
|
|
10434
10458
|
followup?: {
|
|
10435
10459
|
message: string;
|
|
10436
10460
|
scheduled: number;
|
|
10437
|
-
cancelIf?: Record<string,
|
|
10461
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10438
10462
|
overrideLock?: boolean | undefined;
|
|
10439
10463
|
} | {
|
|
10440
10464
|
scheduled: number;
|
|
@@ -10455,7 +10479,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10455
10479
|
id?: string | undefined;
|
|
10456
10480
|
persist?: boolean | undefined;
|
|
10457
10481
|
})[] | undefined);
|
|
10458
|
-
cancelIf?: Record<string,
|
|
10482
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10459
10483
|
overrideLock?: boolean | undefined;
|
|
10460
10484
|
} | undefined;
|
|
10461
10485
|
};
|
|
@@ -10480,12 +10504,12 @@ declare module '@scout9/app/schemas' {
|
|
|
10480
10504
|
})[] | undefined;
|
|
10481
10505
|
removeInstructions?: string[] | undefined;
|
|
10482
10506
|
secondsDelay?: number | undefined;
|
|
10483
|
-
contextUpsert?: Record<string,
|
|
10507
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10484
10508
|
resetIntent?: boolean | undefined;
|
|
10485
10509
|
followup?: {
|
|
10486
10510
|
message: string;
|
|
10487
10511
|
scheduled: number;
|
|
10488
|
-
cancelIf?: Record<string,
|
|
10512
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10489
10513
|
overrideLock?: boolean | undefined;
|
|
10490
10514
|
} | {
|
|
10491
10515
|
scheduled: number;
|
|
@@ -10506,7 +10530,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10506
10530
|
id?: string | undefined;
|
|
10507
10531
|
persist?: boolean | undefined;
|
|
10508
10532
|
})[] | undefined);
|
|
10509
|
-
cancelIf?: Record<string,
|
|
10533
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10510
10534
|
overrideLock?: boolean | undefined;
|
|
10511
10535
|
} | undefined;
|
|
10512
10536
|
}[] | undefined;
|
|
@@ -10530,12 +10554,12 @@ declare module '@scout9/app/schemas' {
|
|
|
10530
10554
|
})[] | undefined;
|
|
10531
10555
|
removeInstructions?: string[] | undefined;
|
|
10532
10556
|
secondsDelay?: number | undefined;
|
|
10533
|
-
contextUpsert?: Record<string,
|
|
10557
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10534
10558
|
resetIntent?: boolean | undefined;
|
|
10535
10559
|
followup?: {
|
|
10536
10560
|
message: string;
|
|
10537
10561
|
scheduled: number;
|
|
10538
|
-
cancelIf?: Record<string,
|
|
10562
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10539
10563
|
overrideLock?: boolean | undefined;
|
|
10540
10564
|
} | {
|
|
10541
10565
|
scheduled: number;
|
|
@@ -10556,7 +10580,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10556
10580
|
id?: string | undefined;
|
|
10557
10581
|
persist?: boolean | undefined;
|
|
10558
10582
|
})[] | undefined);
|
|
10559
|
-
cancelIf?: Record<string,
|
|
10583
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10560
10584
|
overrideLock?: boolean | undefined;
|
|
10561
10585
|
} | undefined;
|
|
10562
10586
|
anticipate?: {
|
|
@@ -10581,12 +10605,12 @@ declare module '@scout9/app/schemas' {
|
|
|
10581
10605
|
message?: string | undefined;
|
|
10582
10606
|
secondsDelay?: number | undefined;
|
|
10583
10607
|
scheduled?: number | undefined;
|
|
10584
|
-
contextUpsert?: Record<string,
|
|
10608
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10585
10609
|
resetIntent?: boolean | undefined;
|
|
10586
10610
|
followup?: {
|
|
10587
10611
|
message: string;
|
|
10588
10612
|
scheduled: number;
|
|
10589
|
-
cancelIf?: Record<string,
|
|
10613
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10590
10614
|
overrideLock?: boolean | undefined;
|
|
10591
10615
|
} | {
|
|
10592
10616
|
scheduled: number;
|
|
@@ -10607,7 +10631,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10607
10631
|
id?: string | undefined;
|
|
10608
10632
|
persist?: boolean | undefined;
|
|
10609
10633
|
})[] | undefined);
|
|
10610
|
-
cancelIf?: Record<string,
|
|
10634
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10611
10635
|
overrideLock?: boolean | undefined;
|
|
10612
10636
|
} | undefined;
|
|
10613
10637
|
};
|
|
@@ -10631,12 +10655,12 @@ declare module '@scout9/app/schemas' {
|
|
|
10631
10655
|
message?: string | undefined;
|
|
10632
10656
|
secondsDelay?: number | undefined;
|
|
10633
10657
|
scheduled?: number | undefined;
|
|
10634
|
-
contextUpsert?: Record<string,
|
|
10658
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10635
10659
|
resetIntent?: boolean | undefined;
|
|
10636
10660
|
followup?: {
|
|
10637
10661
|
message: string;
|
|
10638
10662
|
scheduled: number;
|
|
10639
|
-
cancelIf?: Record<string,
|
|
10663
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10640
10664
|
overrideLock?: boolean | undefined;
|
|
10641
10665
|
} | {
|
|
10642
10666
|
scheduled: number;
|
|
@@ -10657,7 +10681,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10657
10681
|
id?: string | undefined;
|
|
10658
10682
|
persist?: boolean | undefined;
|
|
10659
10683
|
})[] | undefined);
|
|
10660
|
-
cancelIf?: Record<string,
|
|
10684
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10661
10685
|
overrideLock?: boolean | undefined;
|
|
10662
10686
|
} | undefined;
|
|
10663
10687
|
};
|
|
@@ -10682,12 +10706,12 @@ declare module '@scout9/app/schemas' {
|
|
|
10682
10706
|
})[] | undefined;
|
|
10683
10707
|
removeInstructions?: string[] | undefined;
|
|
10684
10708
|
secondsDelay?: number | undefined;
|
|
10685
|
-
contextUpsert?: Record<string,
|
|
10709
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10686
10710
|
resetIntent?: boolean | undefined;
|
|
10687
10711
|
followup?: {
|
|
10688
10712
|
message: string;
|
|
10689
10713
|
scheduled: number;
|
|
10690
|
-
cancelIf?: Record<string,
|
|
10714
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10691
10715
|
overrideLock?: boolean | undefined;
|
|
10692
10716
|
} | {
|
|
10693
10717
|
scheduled: number;
|
|
@@ -10708,7 +10732,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10708
10732
|
id?: string | undefined;
|
|
10709
10733
|
persist?: boolean | undefined;
|
|
10710
10734
|
})[] | undefined);
|
|
10711
|
-
cancelIf?: Record<string,
|
|
10735
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10712
10736
|
overrideLock?: boolean | undefined;
|
|
10713
10737
|
} | undefined;
|
|
10714
10738
|
}[] | undefined;
|
|
@@ -10756,26 +10780,26 @@ declare module '@scout9/app/schemas' {
|
|
|
10756
10780
|
}>]>, "many">]>>;
|
|
10757
10781
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10758
10782
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
10759
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
10783
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
10760
10784
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
10761
10785
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
10762
10786
|
scheduled: z.ZodNumber;
|
|
10763
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
10787
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
10764
10788
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
10765
10789
|
message: z.ZodString;
|
|
10766
10790
|
}, "strip", z.ZodTypeAny, {
|
|
10767
10791
|
message: string;
|
|
10768
10792
|
scheduled: number;
|
|
10769
|
-
cancelIf?: Record<string,
|
|
10793
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10770
10794
|
overrideLock?: boolean | undefined;
|
|
10771
10795
|
}, {
|
|
10772
10796
|
message: string;
|
|
10773
10797
|
scheduled: number;
|
|
10774
|
-
cancelIf?: Record<string,
|
|
10798
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10775
10799
|
overrideLock?: boolean | undefined;
|
|
10776
10800
|
}>, z.ZodObject<{
|
|
10777
10801
|
scheduled: z.ZodNumber;
|
|
10778
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
10802
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
10779
10803
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
10780
10804
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
10781
10805
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -10821,7 +10845,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10821
10845
|
id?: string | undefined;
|
|
10822
10846
|
persist?: boolean | undefined;
|
|
10823
10847
|
})[] | undefined);
|
|
10824
|
-
cancelIf?: Record<string,
|
|
10848
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10825
10849
|
overrideLock?: boolean | undefined;
|
|
10826
10850
|
}, {
|
|
10827
10851
|
scheduled: number;
|
|
@@ -10842,7 +10866,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10842
10866
|
id?: string | undefined;
|
|
10843
10867
|
persist?: boolean | undefined;
|
|
10844
10868
|
})[] | undefined);
|
|
10845
|
-
cancelIf?: Record<string,
|
|
10869
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10846
10870
|
overrideLock?: boolean | undefined;
|
|
10847
10871
|
}>]>>;
|
|
10848
10872
|
anticipate: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
@@ -10891,26 +10915,26 @@ declare module '@scout9/app/schemas' {
|
|
|
10891
10915
|
message: z.ZodOptional<z.ZodString>;
|
|
10892
10916
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
10893
10917
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
10894
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
10918
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
10895
10919
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
10896
10920
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
10897
10921
|
scheduled: z.ZodNumber;
|
|
10898
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
10922
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
10899
10923
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
10900
10924
|
message: z.ZodString;
|
|
10901
10925
|
}, "strip", z.ZodTypeAny, {
|
|
10902
10926
|
message: string;
|
|
10903
10927
|
scheduled: number;
|
|
10904
|
-
cancelIf?: Record<string,
|
|
10928
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10905
10929
|
overrideLock?: boolean | undefined;
|
|
10906
10930
|
}, {
|
|
10907
10931
|
message: string;
|
|
10908
10932
|
scheduled: number;
|
|
10909
|
-
cancelIf?: Record<string,
|
|
10933
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10910
10934
|
overrideLock?: boolean | undefined;
|
|
10911
10935
|
}>, z.ZodObject<{
|
|
10912
10936
|
scheduled: z.ZodNumber;
|
|
10913
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
10937
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
10914
10938
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
10915
10939
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
10916
10940
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -10956,7 +10980,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10956
10980
|
id?: string | undefined;
|
|
10957
10981
|
persist?: boolean | undefined;
|
|
10958
10982
|
})[] | undefined);
|
|
10959
|
-
cancelIf?: Record<string,
|
|
10983
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10960
10984
|
overrideLock?: boolean | undefined;
|
|
10961
10985
|
}, {
|
|
10962
10986
|
scheduled: number;
|
|
@@ -10977,7 +11001,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10977
11001
|
id?: string | undefined;
|
|
10978
11002
|
persist?: boolean | undefined;
|
|
10979
11003
|
})[] | undefined);
|
|
10980
|
-
cancelIf?: Record<string,
|
|
11004
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
10981
11005
|
overrideLock?: boolean | undefined;
|
|
10982
11006
|
}>]>>;
|
|
10983
11007
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11000,12 +11024,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11000
11024
|
message?: string | undefined;
|
|
11001
11025
|
secondsDelay?: number | undefined;
|
|
11002
11026
|
scheduled?: number | undefined;
|
|
11003
|
-
contextUpsert?: Record<string,
|
|
11027
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11004
11028
|
resetIntent?: boolean | undefined;
|
|
11005
11029
|
followup?: {
|
|
11006
11030
|
message: string;
|
|
11007
11031
|
scheduled: number;
|
|
11008
|
-
cancelIf?: Record<string,
|
|
11032
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11009
11033
|
overrideLock?: boolean | undefined;
|
|
11010
11034
|
} | {
|
|
11011
11035
|
scheduled: number;
|
|
@@ -11026,7 +11050,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11026
11050
|
id?: string | undefined;
|
|
11027
11051
|
persist?: boolean | undefined;
|
|
11028
11052
|
})[] | undefined);
|
|
11029
|
-
cancelIf?: Record<string,
|
|
11053
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11030
11054
|
overrideLock?: boolean | undefined;
|
|
11031
11055
|
} | undefined;
|
|
11032
11056
|
}, {
|
|
@@ -11049,12 +11073,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11049
11073
|
message?: string | undefined;
|
|
11050
11074
|
secondsDelay?: number | undefined;
|
|
11051
11075
|
scheduled?: number | undefined;
|
|
11052
|
-
contextUpsert?: Record<string,
|
|
11076
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11053
11077
|
resetIntent?: boolean | undefined;
|
|
11054
11078
|
followup?: {
|
|
11055
11079
|
message: string;
|
|
11056
11080
|
scheduled: number;
|
|
11057
|
-
cancelIf?: Record<string,
|
|
11081
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11058
11082
|
overrideLock?: boolean | undefined;
|
|
11059
11083
|
} | {
|
|
11060
11084
|
scheduled: number;
|
|
@@ -11075,7 +11099,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11075
11099
|
id?: string | undefined;
|
|
11076
11100
|
persist?: boolean | undefined;
|
|
11077
11101
|
})[] | undefined);
|
|
11078
|
-
cancelIf?: Record<string,
|
|
11102
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11079
11103
|
overrideLock?: boolean | undefined;
|
|
11080
11104
|
} | undefined;
|
|
11081
11105
|
}>;
|
|
@@ -11123,26 +11147,26 @@ declare module '@scout9/app/schemas' {
|
|
|
11123
11147
|
message: z.ZodOptional<z.ZodString>;
|
|
11124
11148
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
11125
11149
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
11126
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
11150
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
11127
11151
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
11128
11152
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
11129
11153
|
scheduled: z.ZodNumber;
|
|
11130
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
11154
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
11131
11155
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
11132
11156
|
message: z.ZodString;
|
|
11133
11157
|
}, "strip", z.ZodTypeAny, {
|
|
11134
11158
|
message: string;
|
|
11135
11159
|
scheduled: number;
|
|
11136
|
-
cancelIf?: Record<string,
|
|
11160
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11137
11161
|
overrideLock?: boolean | undefined;
|
|
11138
11162
|
}, {
|
|
11139
11163
|
message: string;
|
|
11140
11164
|
scheduled: number;
|
|
11141
|
-
cancelIf?: Record<string,
|
|
11165
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11142
11166
|
overrideLock?: boolean | undefined;
|
|
11143
11167
|
}>, z.ZodObject<{
|
|
11144
11168
|
scheduled: z.ZodNumber;
|
|
11145
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
11169
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
11146
11170
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
11147
11171
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
11148
11172
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -11188,7 +11212,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11188
11212
|
id?: string | undefined;
|
|
11189
11213
|
persist?: boolean | undefined;
|
|
11190
11214
|
})[] | undefined);
|
|
11191
|
-
cancelIf?: Record<string,
|
|
11215
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11192
11216
|
overrideLock?: boolean | undefined;
|
|
11193
11217
|
}, {
|
|
11194
11218
|
scheduled: number;
|
|
@@ -11209,7 +11233,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11209
11233
|
id?: string | undefined;
|
|
11210
11234
|
persist?: boolean | undefined;
|
|
11211
11235
|
})[] | undefined);
|
|
11212
|
-
cancelIf?: Record<string,
|
|
11236
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11213
11237
|
overrideLock?: boolean | undefined;
|
|
11214
11238
|
}>]>>;
|
|
11215
11239
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11232,12 +11256,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11232
11256
|
message?: string | undefined;
|
|
11233
11257
|
secondsDelay?: number | undefined;
|
|
11234
11258
|
scheduled?: number | undefined;
|
|
11235
|
-
contextUpsert?: Record<string,
|
|
11259
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11236
11260
|
resetIntent?: boolean | undefined;
|
|
11237
11261
|
followup?: {
|
|
11238
11262
|
message: string;
|
|
11239
11263
|
scheduled: number;
|
|
11240
|
-
cancelIf?: Record<string,
|
|
11264
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11241
11265
|
overrideLock?: boolean | undefined;
|
|
11242
11266
|
} | {
|
|
11243
11267
|
scheduled: number;
|
|
@@ -11258,7 +11282,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11258
11282
|
id?: string | undefined;
|
|
11259
11283
|
persist?: boolean | undefined;
|
|
11260
11284
|
})[] | undefined);
|
|
11261
|
-
cancelIf?: Record<string,
|
|
11285
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11262
11286
|
overrideLock?: boolean | undefined;
|
|
11263
11287
|
} | undefined;
|
|
11264
11288
|
}, {
|
|
@@ -11281,12 +11305,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11281
11305
|
message?: string | undefined;
|
|
11282
11306
|
secondsDelay?: number | undefined;
|
|
11283
11307
|
scheduled?: number | undefined;
|
|
11284
|
-
contextUpsert?: Record<string,
|
|
11308
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11285
11309
|
resetIntent?: boolean | undefined;
|
|
11286
11310
|
followup?: {
|
|
11287
11311
|
message: string;
|
|
11288
11312
|
scheduled: number;
|
|
11289
|
-
cancelIf?: Record<string,
|
|
11313
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11290
11314
|
overrideLock?: boolean | undefined;
|
|
11291
11315
|
} | {
|
|
11292
11316
|
scheduled: number;
|
|
@@ -11307,7 +11331,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11307
11331
|
id?: string | undefined;
|
|
11308
11332
|
persist?: boolean | undefined;
|
|
11309
11333
|
})[] | undefined);
|
|
11310
|
-
cancelIf?: Record<string,
|
|
11334
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11311
11335
|
overrideLock?: boolean | undefined;
|
|
11312
11336
|
} | undefined;
|
|
11313
11337
|
}>;
|
|
@@ -11333,12 +11357,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11333
11357
|
message?: string | undefined;
|
|
11334
11358
|
secondsDelay?: number | undefined;
|
|
11335
11359
|
scheduled?: number | undefined;
|
|
11336
|
-
contextUpsert?: Record<string,
|
|
11360
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11337
11361
|
resetIntent?: boolean | undefined;
|
|
11338
11362
|
followup?: {
|
|
11339
11363
|
message: string;
|
|
11340
11364
|
scheduled: number;
|
|
11341
|
-
cancelIf?: Record<string,
|
|
11365
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11342
11366
|
overrideLock?: boolean | undefined;
|
|
11343
11367
|
} | {
|
|
11344
11368
|
scheduled: number;
|
|
@@ -11359,7 +11383,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11359
11383
|
id?: string | undefined;
|
|
11360
11384
|
persist?: boolean | undefined;
|
|
11361
11385
|
})[] | undefined);
|
|
11362
|
-
cancelIf?: Record<string,
|
|
11386
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11363
11387
|
overrideLock?: boolean | undefined;
|
|
11364
11388
|
} | undefined;
|
|
11365
11389
|
};
|
|
@@ -11383,12 +11407,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11383
11407
|
message?: string | undefined;
|
|
11384
11408
|
secondsDelay?: number | undefined;
|
|
11385
11409
|
scheduled?: number | undefined;
|
|
11386
|
-
contextUpsert?: Record<string,
|
|
11410
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11387
11411
|
resetIntent?: boolean | undefined;
|
|
11388
11412
|
followup?: {
|
|
11389
11413
|
message: string;
|
|
11390
11414
|
scheduled: number;
|
|
11391
|
-
cancelIf?: Record<string,
|
|
11415
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11392
11416
|
overrideLock?: boolean | undefined;
|
|
11393
11417
|
} | {
|
|
11394
11418
|
scheduled: number;
|
|
@@ -11409,7 +11433,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11409
11433
|
id?: string | undefined;
|
|
11410
11434
|
persist?: boolean | undefined;
|
|
11411
11435
|
})[] | undefined);
|
|
11412
|
-
cancelIf?: Record<string,
|
|
11436
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11413
11437
|
overrideLock?: boolean | undefined;
|
|
11414
11438
|
} | undefined;
|
|
11415
11439
|
};
|
|
@@ -11435,12 +11459,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11435
11459
|
message?: string | undefined;
|
|
11436
11460
|
secondsDelay?: number | undefined;
|
|
11437
11461
|
scheduled?: number | undefined;
|
|
11438
|
-
contextUpsert?: Record<string,
|
|
11462
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11439
11463
|
resetIntent?: boolean | undefined;
|
|
11440
11464
|
followup?: {
|
|
11441
11465
|
message: string;
|
|
11442
11466
|
scheduled: number;
|
|
11443
|
-
cancelIf?: Record<string,
|
|
11467
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11444
11468
|
overrideLock?: boolean | undefined;
|
|
11445
11469
|
} | {
|
|
11446
11470
|
scheduled: number;
|
|
@@ -11461,7 +11485,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11461
11485
|
id?: string | undefined;
|
|
11462
11486
|
persist?: boolean | undefined;
|
|
11463
11487
|
})[] | undefined);
|
|
11464
|
-
cancelIf?: Record<string,
|
|
11488
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11465
11489
|
overrideLock?: boolean | undefined;
|
|
11466
11490
|
} | undefined;
|
|
11467
11491
|
};
|
|
@@ -11485,12 +11509,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11485
11509
|
message?: string | undefined;
|
|
11486
11510
|
secondsDelay?: number | undefined;
|
|
11487
11511
|
scheduled?: number | undefined;
|
|
11488
|
-
contextUpsert?: Record<string,
|
|
11512
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11489
11513
|
resetIntent?: boolean | undefined;
|
|
11490
11514
|
followup?: {
|
|
11491
11515
|
message: string;
|
|
11492
11516
|
scheduled: number;
|
|
11493
|
-
cancelIf?: Record<string,
|
|
11517
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11494
11518
|
overrideLock?: boolean | undefined;
|
|
11495
11519
|
} | {
|
|
11496
11520
|
scheduled: number;
|
|
@@ -11511,7 +11535,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11511
11535
|
id?: string | undefined;
|
|
11512
11536
|
persist?: boolean | undefined;
|
|
11513
11537
|
})[] | undefined);
|
|
11514
|
-
cancelIf?: Record<string,
|
|
11538
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11515
11539
|
overrideLock?: boolean | undefined;
|
|
11516
11540
|
} | undefined;
|
|
11517
11541
|
};
|
|
@@ -11559,26 +11583,26 @@ declare module '@scout9/app/schemas' {
|
|
|
11559
11583
|
}>]>, "many">]>>;
|
|
11560
11584
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11561
11585
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
11562
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
11586
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
11563
11587
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
11564
11588
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
11565
11589
|
scheduled: z.ZodNumber;
|
|
11566
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
11590
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
11567
11591
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
11568
11592
|
message: z.ZodString;
|
|
11569
11593
|
}, "strip", z.ZodTypeAny, {
|
|
11570
11594
|
message: string;
|
|
11571
11595
|
scheduled: number;
|
|
11572
|
-
cancelIf?: Record<string,
|
|
11596
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11573
11597
|
overrideLock?: boolean | undefined;
|
|
11574
11598
|
}, {
|
|
11575
11599
|
message: string;
|
|
11576
11600
|
scheduled: number;
|
|
11577
|
-
cancelIf?: Record<string,
|
|
11601
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11578
11602
|
overrideLock?: boolean | undefined;
|
|
11579
11603
|
}>, z.ZodObject<{
|
|
11580
11604
|
scheduled: z.ZodNumber;
|
|
11581
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
11605
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
11582
11606
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
11583
11607
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
11584
11608
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -11624,7 +11648,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11624
11648
|
id?: string | undefined;
|
|
11625
11649
|
persist?: boolean | undefined;
|
|
11626
11650
|
})[] | undefined);
|
|
11627
|
-
cancelIf?: Record<string,
|
|
11651
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11628
11652
|
overrideLock?: boolean | undefined;
|
|
11629
11653
|
}, {
|
|
11630
11654
|
scheduled: number;
|
|
@@ -11645,7 +11669,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11645
11669
|
id?: string | undefined;
|
|
11646
11670
|
persist?: boolean | undefined;
|
|
11647
11671
|
})[] | undefined);
|
|
11648
|
-
cancelIf?: Record<string,
|
|
11672
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11649
11673
|
overrideLock?: boolean | undefined;
|
|
11650
11674
|
}>]>>;
|
|
11651
11675
|
keywords: z.ZodArray<z.ZodString, "many">;
|
|
@@ -11670,12 +11694,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11670
11694
|
})[] | undefined;
|
|
11671
11695
|
removeInstructions?: string[] | undefined;
|
|
11672
11696
|
secondsDelay?: number | undefined;
|
|
11673
|
-
contextUpsert?: Record<string,
|
|
11697
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11674
11698
|
resetIntent?: boolean | undefined;
|
|
11675
11699
|
followup?: {
|
|
11676
11700
|
message: string;
|
|
11677
11701
|
scheduled: number;
|
|
11678
|
-
cancelIf?: Record<string,
|
|
11702
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11679
11703
|
overrideLock?: boolean | undefined;
|
|
11680
11704
|
} | {
|
|
11681
11705
|
scheduled: number;
|
|
@@ -11696,7 +11720,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11696
11720
|
id?: string | undefined;
|
|
11697
11721
|
persist?: boolean | undefined;
|
|
11698
11722
|
})[] | undefined);
|
|
11699
|
-
cancelIf?: Record<string,
|
|
11723
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11700
11724
|
overrideLock?: boolean | undefined;
|
|
11701
11725
|
} | undefined;
|
|
11702
11726
|
}, {
|
|
@@ -11720,12 +11744,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11720
11744
|
})[] | undefined;
|
|
11721
11745
|
removeInstructions?: string[] | undefined;
|
|
11722
11746
|
secondsDelay?: number | undefined;
|
|
11723
|
-
contextUpsert?: Record<string,
|
|
11747
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11724
11748
|
resetIntent?: boolean | undefined;
|
|
11725
11749
|
followup?: {
|
|
11726
11750
|
message: string;
|
|
11727
11751
|
scheduled: number;
|
|
11728
|
-
cancelIf?: Record<string,
|
|
11752
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11729
11753
|
overrideLock?: boolean | undefined;
|
|
11730
11754
|
} | {
|
|
11731
11755
|
scheduled: number;
|
|
@@ -11746,7 +11770,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11746
11770
|
id?: string | undefined;
|
|
11747
11771
|
persist?: boolean | undefined;
|
|
11748
11772
|
})[] | undefined);
|
|
11749
|
-
cancelIf?: Record<string,
|
|
11773
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11750
11774
|
overrideLock?: boolean | undefined;
|
|
11751
11775
|
} | undefined;
|
|
11752
11776
|
}>, "many">]>>;
|
|
@@ -11770,12 +11794,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11770
11794
|
})[] | undefined;
|
|
11771
11795
|
removeInstructions?: string[] | undefined;
|
|
11772
11796
|
secondsDelay?: number | undefined;
|
|
11773
|
-
contextUpsert?: Record<string,
|
|
11797
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11774
11798
|
resetIntent?: boolean | undefined;
|
|
11775
11799
|
followup?: {
|
|
11776
11800
|
message: string;
|
|
11777
11801
|
scheduled: number;
|
|
11778
|
-
cancelIf?: Record<string,
|
|
11802
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11779
11803
|
overrideLock?: boolean | undefined;
|
|
11780
11804
|
} | {
|
|
11781
11805
|
scheduled: number;
|
|
@@ -11796,7 +11820,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11796
11820
|
id?: string | undefined;
|
|
11797
11821
|
persist?: boolean | undefined;
|
|
11798
11822
|
})[] | undefined);
|
|
11799
|
-
cancelIf?: Record<string,
|
|
11823
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11800
11824
|
overrideLock?: boolean | undefined;
|
|
11801
11825
|
} | undefined;
|
|
11802
11826
|
anticipate?: {
|
|
@@ -11821,12 +11845,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11821
11845
|
message?: string | undefined;
|
|
11822
11846
|
secondsDelay?: number | undefined;
|
|
11823
11847
|
scheduled?: number | undefined;
|
|
11824
|
-
contextUpsert?: Record<string,
|
|
11848
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11825
11849
|
resetIntent?: boolean | undefined;
|
|
11826
11850
|
followup?: {
|
|
11827
11851
|
message: string;
|
|
11828
11852
|
scheduled: number;
|
|
11829
|
-
cancelIf?: Record<string,
|
|
11853
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11830
11854
|
overrideLock?: boolean | undefined;
|
|
11831
11855
|
} | {
|
|
11832
11856
|
scheduled: number;
|
|
@@ -11847,7 +11871,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11847
11871
|
id?: string | undefined;
|
|
11848
11872
|
persist?: boolean | undefined;
|
|
11849
11873
|
})[] | undefined);
|
|
11850
|
-
cancelIf?: Record<string,
|
|
11874
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11851
11875
|
overrideLock?: boolean | undefined;
|
|
11852
11876
|
} | undefined;
|
|
11853
11877
|
};
|
|
@@ -11871,12 +11895,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11871
11895
|
message?: string | undefined;
|
|
11872
11896
|
secondsDelay?: number | undefined;
|
|
11873
11897
|
scheduled?: number | undefined;
|
|
11874
|
-
contextUpsert?: Record<string,
|
|
11898
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11875
11899
|
resetIntent?: boolean | undefined;
|
|
11876
11900
|
followup?: {
|
|
11877
11901
|
message: string;
|
|
11878
11902
|
scheduled: number;
|
|
11879
|
-
cancelIf?: Record<string,
|
|
11903
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11880
11904
|
overrideLock?: boolean | undefined;
|
|
11881
11905
|
} | {
|
|
11882
11906
|
scheduled: number;
|
|
@@ -11897,7 +11921,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11897
11921
|
id?: string | undefined;
|
|
11898
11922
|
persist?: boolean | undefined;
|
|
11899
11923
|
})[] | undefined);
|
|
11900
|
-
cancelIf?: Record<string,
|
|
11924
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11901
11925
|
overrideLock?: boolean | undefined;
|
|
11902
11926
|
} | undefined;
|
|
11903
11927
|
};
|
|
@@ -11922,12 +11946,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11922
11946
|
})[] | undefined;
|
|
11923
11947
|
removeInstructions?: string[] | undefined;
|
|
11924
11948
|
secondsDelay?: number | undefined;
|
|
11925
|
-
contextUpsert?: Record<string,
|
|
11949
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11926
11950
|
resetIntent?: boolean | undefined;
|
|
11927
11951
|
followup?: {
|
|
11928
11952
|
message: string;
|
|
11929
11953
|
scheduled: number;
|
|
11930
|
-
cancelIf?: Record<string,
|
|
11954
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11931
11955
|
overrideLock?: boolean | undefined;
|
|
11932
11956
|
} | {
|
|
11933
11957
|
scheduled: number;
|
|
@@ -11948,7 +11972,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11948
11972
|
id?: string | undefined;
|
|
11949
11973
|
persist?: boolean | undefined;
|
|
11950
11974
|
})[] | undefined);
|
|
11951
|
-
cancelIf?: Record<string,
|
|
11975
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11952
11976
|
overrideLock?: boolean | undefined;
|
|
11953
11977
|
} | undefined;
|
|
11954
11978
|
}[] | undefined;
|
|
@@ -11972,12 +11996,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11972
11996
|
})[] | undefined;
|
|
11973
11997
|
removeInstructions?: string[] | undefined;
|
|
11974
11998
|
secondsDelay?: number | undefined;
|
|
11975
|
-
contextUpsert?: Record<string,
|
|
11999
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11976
12000
|
resetIntent?: boolean | undefined;
|
|
11977
12001
|
followup?: {
|
|
11978
12002
|
message: string;
|
|
11979
12003
|
scheduled: number;
|
|
11980
|
-
cancelIf?: Record<string,
|
|
12004
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
11981
12005
|
overrideLock?: boolean | undefined;
|
|
11982
12006
|
} | {
|
|
11983
12007
|
scheduled: number;
|
|
@@ -11998,7 +12022,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11998
12022
|
id?: string | undefined;
|
|
11999
12023
|
persist?: boolean | undefined;
|
|
12000
12024
|
})[] | undefined);
|
|
12001
|
-
cancelIf?: Record<string,
|
|
12025
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12002
12026
|
overrideLock?: boolean | undefined;
|
|
12003
12027
|
} | undefined;
|
|
12004
12028
|
anticipate?: {
|
|
@@ -12023,12 +12047,12 @@ declare module '@scout9/app/schemas' {
|
|
|
12023
12047
|
message?: string | undefined;
|
|
12024
12048
|
secondsDelay?: number | undefined;
|
|
12025
12049
|
scheduled?: number | undefined;
|
|
12026
|
-
contextUpsert?: Record<string,
|
|
12050
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12027
12051
|
resetIntent?: boolean | undefined;
|
|
12028
12052
|
followup?: {
|
|
12029
12053
|
message: string;
|
|
12030
12054
|
scheduled: number;
|
|
12031
|
-
cancelIf?: Record<string,
|
|
12055
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12032
12056
|
overrideLock?: boolean | undefined;
|
|
12033
12057
|
} | {
|
|
12034
12058
|
scheduled: number;
|
|
@@ -12049,7 +12073,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12049
12073
|
id?: string | undefined;
|
|
12050
12074
|
persist?: boolean | undefined;
|
|
12051
12075
|
})[] | undefined);
|
|
12052
|
-
cancelIf?: Record<string,
|
|
12076
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12053
12077
|
overrideLock?: boolean | undefined;
|
|
12054
12078
|
} | undefined;
|
|
12055
12079
|
};
|
|
@@ -12073,12 +12097,12 @@ declare module '@scout9/app/schemas' {
|
|
|
12073
12097
|
message?: string | undefined;
|
|
12074
12098
|
secondsDelay?: number | undefined;
|
|
12075
12099
|
scheduled?: number | undefined;
|
|
12076
|
-
contextUpsert?: Record<string,
|
|
12100
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12077
12101
|
resetIntent?: boolean | undefined;
|
|
12078
12102
|
followup?: {
|
|
12079
12103
|
message: string;
|
|
12080
12104
|
scheduled: number;
|
|
12081
|
-
cancelIf?: Record<string,
|
|
12105
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12082
12106
|
overrideLock?: boolean | undefined;
|
|
12083
12107
|
} | {
|
|
12084
12108
|
scheduled: number;
|
|
@@ -12099,7 +12123,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12099
12123
|
id?: string | undefined;
|
|
12100
12124
|
persist?: boolean | undefined;
|
|
12101
12125
|
})[] | undefined);
|
|
12102
|
-
cancelIf?: Record<string,
|
|
12126
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12103
12127
|
overrideLock?: boolean | undefined;
|
|
12104
12128
|
} | undefined;
|
|
12105
12129
|
};
|
|
@@ -12124,12 +12148,12 @@ declare module '@scout9/app/schemas' {
|
|
|
12124
12148
|
})[] | undefined;
|
|
12125
12149
|
removeInstructions?: string[] | undefined;
|
|
12126
12150
|
secondsDelay?: number | undefined;
|
|
12127
|
-
contextUpsert?: Record<string,
|
|
12151
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12128
12152
|
resetIntent?: boolean | undefined;
|
|
12129
12153
|
followup?: {
|
|
12130
12154
|
message: string;
|
|
12131
12155
|
scheduled: number;
|
|
12132
|
-
cancelIf?: Record<string,
|
|
12156
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12133
12157
|
overrideLock?: boolean | undefined;
|
|
12134
12158
|
} | {
|
|
12135
12159
|
scheduled: number;
|
|
@@ -12150,7 +12174,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12150
12174
|
id?: string | undefined;
|
|
12151
12175
|
persist?: boolean | undefined;
|
|
12152
12176
|
})[] | undefined);
|
|
12153
|
-
cancelIf?: Record<string,
|
|
12177
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12154
12178
|
overrideLock?: boolean | undefined;
|
|
12155
12179
|
} | undefined;
|
|
12156
12180
|
}[] | undefined;
|
|
@@ -12198,26 +12222,26 @@ declare module '@scout9/app/schemas' {
|
|
|
12198
12222
|
}>]>, "many">]>>;
|
|
12199
12223
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12200
12224
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
12201
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
12225
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
12202
12226
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
12203
12227
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
12204
12228
|
scheduled: z.ZodNumber;
|
|
12205
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
12229
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
12206
12230
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
12207
12231
|
message: z.ZodString;
|
|
12208
12232
|
}, "strip", z.ZodTypeAny, {
|
|
12209
12233
|
message: string;
|
|
12210
12234
|
scheduled: number;
|
|
12211
|
-
cancelIf?: Record<string,
|
|
12235
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12212
12236
|
overrideLock?: boolean | undefined;
|
|
12213
12237
|
}, {
|
|
12214
12238
|
message: string;
|
|
12215
12239
|
scheduled: number;
|
|
12216
|
-
cancelIf?: Record<string,
|
|
12240
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12217
12241
|
overrideLock?: boolean | undefined;
|
|
12218
12242
|
}>, z.ZodObject<{
|
|
12219
12243
|
scheduled: z.ZodNumber;
|
|
12220
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
12244
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
12221
12245
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
12222
12246
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
12223
12247
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -12263,7 +12287,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12263
12287
|
id?: string | undefined;
|
|
12264
12288
|
persist?: boolean | undefined;
|
|
12265
12289
|
})[] | undefined);
|
|
12266
|
-
cancelIf?: Record<string,
|
|
12290
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12267
12291
|
overrideLock?: boolean | undefined;
|
|
12268
12292
|
}, {
|
|
12269
12293
|
scheduled: number;
|
|
@@ -12284,7 +12308,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12284
12308
|
id?: string | undefined;
|
|
12285
12309
|
persist?: boolean | undefined;
|
|
12286
12310
|
})[] | undefined);
|
|
12287
|
-
cancelIf?: Record<string,
|
|
12311
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12288
12312
|
overrideLock?: boolean | undefined;
|
|
12289
12313
|
}>]>>;
|
|
12290
12314
|
anticipate: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
@@ -12333,26 +12357,26 @@ declare module '@scout9/app/schemas' {
|
|
|
12333
12357
|
message: z.ZodOptional<z.ZodString>;
|
|
12334
12358
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
12335
12359
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
12336
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
12360
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
12337
12361
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
12338
12362
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
12339
12363
|
scheduled: z.ZodNumber;
|
|
12340
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
12364
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
12341
12365
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
12342
12366
|
message: z.ZodString;
|
|
12343
12367
|
}, "strip", z.ZodTypeAny, {
|
|
12344
12368
|
message: string;
|
|
12345
12369
|
scheduled: number;
|
|
12346
|
-
cancelIf?: Record<string,
|
|
12370
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12347
12371
|
overrideLock?: boolean | undefined;
|
|
12348
12372
|
}, {
|
|
12349
12373
|
message: string;
|
|
12350
12374
|
scheduled: number;
|
|
12351
|
-
cancelIf?: Record<string,
|
|
12375
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12352
12376
|
overrideLock?: boolean | undefined;
|
|
12353
12377
|
}>, z.ZodObject<{
|
|
12354
12378
|
scheduled: z.ZodNumber;
|
|
12355
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
12379
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
12356
12380
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
12357
12381
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
12358
12382
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -12398,7 +12422,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12398
12422
|
id?: string | undefined;
|
|
12399
12423
|
persist?: boolean | undefined;
|
|
12400
12424
|
})[] | undefined);
|
|
12401
|
-
cancelIf?: Record<string,
|
|
12425
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12402
12426
|
overrideLock?: boolean | undefined;
|
|
12403
12427
|
}, {
|
|
12404
12428
|
scheduled: number;
|
|
@@ -12419,7 +12443,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12419
12443
|
id?: string | undefined;
|
|
12420
12444
|
persist?: boolean | undefined;
|
|
12421
12445
|
})[] | undefined);
|
|
12422
|
-
cancelIf?: Record<string,
|
|
12446
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12423
12447
|
overrideLock?: boolean | undefined;
|
|
12424
12448
|
}>]>>;
|
|
12425
12449
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -12442,12 +12466,12 @@ declare module '@scout9/app/schemas' {
|
|
|
12442
12466
|
message?: string | undefined;
|
|
12443
12467
|
secondsDelay?: number | undefined;
|
|
12444
12468
|
scheduled?: number | undefined;
|
|
12445
|
-
contextUpsert?: Record<string,
|
|
12469
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12446
12470
|
resetIntent?: boolean | undefined;
|
|
12447
12471
|
followup?: {
|
|
12448
12472
|
message: string;
|
|
12449
12473
|
scheduled: number;
|
|
12450
|
-
cancelIf?: Record<string,
|
|
12474
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12451
12475
|
overrideLock?: boolean | undefined;
|
|
12452
12476
|
} | {
|
|
12453
12477
|
scheduled: number;
|
|
@@ -12468,7 +12492,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12468
12492
|
id?: string | undefined;
|
|
12469
12493
|
persist?: boolean | undefined;
|
|
12470
12494
|
})[] | undefined);
|
|
12471
|
-
cancelIf?: Record<string,
|
|
12495
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12472
12496
|
overrideLock?: boolean | undefined;
|
|
12473
12497
|
} | undefined;
|
|
12474
12498
|
}, {
|
|
@@ -12491,12 +12515,12 @@ declare module '@scout9/app/schemas' {
|
|
|
12491
12515
|
message?: string | undefined;
|
|
12492
12516
|
secondsDelay?: number | undefined;
|
|
12493
12517
|
scheduled?: number | undefined;
|
|
12494
|
-
contextUpsert?: Record<string,
|
|
12518
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12495
12519
|
resetIntent?: boolean | undefined;
|
|
12496
12520
|
followup?: {
|
|
12497
12521
|
message: string;
|
|
12498
12522
|
scheduled: number;
|
|
12499
|
-
cancelIf?: Record<string,
|
|
12523
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12500
12524
|
overrideLock?: boolean | undefined;
|
|
12501
12525
|
} | {
|
|
12502
12526
|
scheduled: number;
|
|
@@ -12517,7 +12541,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12517
12541
|
id?: string | undefined;
|
|
12518
12542
|
persist?: boolean | undefined;
|
|
12519
12543
|
})[] | undefined);
|
|
12520
|
-
cancelIf?: Record<string,
|
|
12544
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12521
12545
|
overrideLock?: boolean | undefined;
|
|
12522
12546
|
} | undefined;
|
|
12523
12547
|
}>;
|
|
@@ -12565,26 +12589,26 @@ declare module '@scout9/app/schemas' {
|
|
|
12565
12589
|
message: z.ZodOptional<z.ZodString>;
|
|
12566
12590
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
12567
12591
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
12568
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
12592
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
12569
12593
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
12570
12594
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
12571
12595
|
scheduled: z.ZodNumber;
|
|
12572
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
12596
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
12573
12597
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
12574
12598
|
message: z.ZodString;
|
|
12575
12599
|
}, "strip", z.ZodTypeAny, {
|
|
12576
12600
|
message: string;
|
|
12577
12601
|
scheduled: number;
|
|
12578
|
-
cancelIf?: Record<string,
|
|
12602
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12579
12603
|
overrideLock?: boolean | undefined;
|
|
12580
12604
|
}, {
|
|
12581
12605
|
message: string;
|
|
12582
12606
|
scheduled: number;
|
|
12583
|
-
cancelIf?: Record<string,
|
|
12607
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12584
12608
|
overrideLock?: boolean | undefined;
|
|
12585
12609
|
}>, z.ZodObject<{
|
|
12586
12610
|
scheduled: z.ZodNumber;
|
|
12587
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
12611
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
12588
12612
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
12589
12613
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
12590
12614
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -12630,7 +12654,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12630
12654
|
id?: string | undefined;
|
|
12631
12655
|
persist?: boolean | undefined;
|
|
12632
12656
|
})[] | undefined);
|
|
12633
|
-
cancelIf?: Record<string,
|
|
12657
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12634
12658
|
overrideLock?: boolean | undefined;
|
|
12635
12659
|
}, {
|
|
12636
12660
|
scheduled: number;
|
|
@@ -12651,7 +12675,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12651
12675
|
id?: string | undefined;
|
|
12652
12676
|
persist?: boolean | undefined;
|
|
12653
12677
|
})[] | undefined);
|
|
12654
|
-
cancelIf?: Record<string,
|
|
12678
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12655
12679
|
overrideLock?: boolean | undefined;
|
|
12656
12680
|
}>]>>;
|
|
12657
12681
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -12674,12 +12698,12 @@ declare module '@scout9/app/schemas' {
|
|
|
12674
12698
|
message?: string | undefined;
|
|
12675
12699
|
secondsDelay?: number | undefined;
|
|
12676
12700
|
scheduled?: number | undefined;
|
|
12677
|
-
contextUpsert?: Record<string,
|
|
12701
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12678
12702
|
resetIntent?: boolean | undefined;
|
|
12679
12703
|
followup?: {
|
|
12680
12704
|
message: string;
|
|
12681
12705
|
scheduled: number;
|
|
12682
|
-
cancelIf?: Record<string,
|
|
12706
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12683
12707
|
overrideLock?: boolean | undefined;
|
|
12684
12708
|
} | {
|
|
12685
12709
|
scheduled: number;
|
|
@@ -12700,7 +12724,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12700
12724
|
id?: string | undefined;
|
|
12701
12725
|
persist?: boolean | undefined;
|
|
12702
12726
|
})[] | undefined);
|
|
12703
|
-
cancelIf?: Record<string,
|
|
12727
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12704
12728
|
overrideLock?: boolean | undefined;
|
|
12705
12729
|
} | undefined;
|
|
12706
12730
|
}, {
|
|
@@ -12723,12 +12747,12 @@ declare module '@scout9/app/schemas' {
|
|
|
12723
12747
|
message?: string | undefined;
|
|
12724
12748
|
secondsDelay?: number | undefined;
|
|
12725
12749
|
scheduled?: number | undefined;
|
|
12726
|
-
contextUpsert?: Record<string,
|
|
12750
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12727
12751
|
resetIntent?: boolean | undefined;
|
|
12728
12752
|
followup?: {
|
|
12729
12753
|
message: string;
|
|
12730
12754
|
scheduled: number;
|
|
12731
|
-
cancelIf?: Record<string,
|
|
12755
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12732
12756
|
overrideLock?: boolean | undefined;
|
|
12733
12757
|
} | {
|
|
12734
12758
|
scheduled: number;
|
|
@@ -12749,7 +12773,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12749
12773
|
id?: string | undefined;
|
|
12750
12774
|
persist?: boolean | undefined;
|
|
12751
12775
|
})[] | undefined);
|
|
12752
|
-
cancelIf?: Record<string,
|
|
12776
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12753
12777
|
overrideLock?: boolean | undefined;
|
|
12754
12778
|
} | undefined;
|
|
12755
12779
|
}>;
|
|
@@ -12775,12 +12799,12 @@ declare module '@scout9/app/schemas' {
|
|
|
12775
12799
|
message?: string | undefined;
|
|
12776
12800
|
secondsDelay?: number | undefined;
|
|
12777
12801
|
scheduled?: number | undefined;
|
|
12778
|
-
contextUpsert?: Record<string,
|
|
12802
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12779
12803
|
resetIntent?: boolean | undefined;
|
|
12780
12804
|
followup?: {
|
|
12781
12805
|
message: string;
|
|
12782
12806
|
scheduled: number;
|
|
12783
|
-
cancelIf?: Record<string,
|
|
12807
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12784
12808
|
overrideLock?: boolean | undefined;
|
|
12785
12809
|
} | {
|
|
12786
12810
|
scheduled: number;
|
|
@@ -12801,7 +12825,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12801
12825
|
id?: string | undefined;
|
|
12802
12826
|
persist?: boolean | undefined;
|
|
12803
12827
|
})[] | undefined);
|
|
12804
|
-
cancelIf?: Record<string,
|
|
12828
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12805
12829
|
overrideLock?: boolean | undefined;
|
|
12806
12830
|
} | undefined;
|
|
12807
12831
|
};
|
|
@@ -12825,12 +12849,12 @@ declare module '@scout9/app/schemas' {
|
|
|
12825
12849
|
message?: string | undefined;
|
|
12826
12850
|
secondsDelay?: number | undefined;
|
|
12827
12851
|
scheduled?: number | undefined;
|
|
12828
|
-
contextUpsert?: Record<string,
|
|
12852
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12829
12853
|
resetIntent?: boolean | undefined;
|
|
12830
12854
|
followup?: {
|
|
12831
12855
|
message: string;
|
|
12832
12856
|
scheduled: number;
|
|
12833
|
-
cancelIf?: Record<string,
|
|
12857
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12834
12858
|
overrideLock?: boolean | undefined;
|
|
12835
12859
|
} | {
|
|
12836
12860
|
scheduled: number;
|
|
@@ -12851,7 +12875,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12851
12875
|
id?: string | undefined;
|
|
12852
12876
|
persist?: boolean | undefined;
|
|
12853
12877
|
})[] | undefined);
|
|
12854
|
-
cancelIf?: Record<string,
|
|
12878
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12855
12879
|
overrideLock?: boolean | undefined;
|
|
12856
12880
|
} | undefined;
|
|
12857
12881
|
};
|
|
@@ -12877,12 +12901,12 @@ declare module '@scout9/app/schemas' {
|
|
|
12877
12901
|
message?: string | undefined;
|
|
12878
12902
|
secondsDelay?: number | undefined;
|
|
12879
12903
|
scheduled?: number | undefined;
|
|
12880
|
-
contextUpsert?: Record<string,
|
|
12904
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12881
12905
|
resetIntent?: boolean | undefined;
|
|
12882
12906
|
followup?: {
|
|
12883
12907
|
message: string;
|
|
12884
12908
|
scheduled: number;
|
|
12885
|
-
cancelIf?: Record<string,
|
|
12909
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12886
12910
|
overrideLock?: boolean | undefined;
|
|
12887
12911
|
} | {
|
|
12888
12912
|
scheduled: number;
|
|
@@ -12903,7 +12927,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12903
12927
|
id?: string | undefined;
|
|
12904
12928
|
persist?: boolean | undefined;
|
|
12905
12929
|
})[] | undefined);
|
|
12906
|
-
cancelIf?: Record<string,
|
|
12930
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12907
12931
|
overrideLock?: boolean | undefined;
|
|
12908
12932
|
} | undefined;
|
|
12909
12933
|
};
|
|
@@ -12927,12 +12951,12 @@ declare module '@scout9/app/schemas' {
|
|
|
12927
12951
|
message?: string | undefined;
|
|
12928
12952
|
secondsDelay?: number | undefined;
|
|
12929
12953
|
scheduled?: number | undefined;
|
|
12930
|
-
contextUpsert?: Record<string,
|
|
12954
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12931
12955
|
resetIntent?: boolean | undefined;
|
|
12932
12956
|
followup?: {
|
|
12933
12957
|
message: string;
|
|
12934
12958
|
scheduled: number;
|
|
12935
|
-
cancelIf?: Record<string,
|
|
12959
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12936
12960
|
overrideLock?: boolean | undefined;
|
|
12937
12961
|
} | {
|
|
12938
12962
|
scheduled: number;
|
|
@@ -12953,7 +12977,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12953
12977
|
id?: string | undefined;
|
|
12954
12978
|
persist?: boolean | undefined;
|
|
12955
12979
|
})[] | undefined);
|
|
12956
|
-
cancelIf?: Record<string,
|
|
12980
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12957
12981
|
overrideLock?: boolean | undefined;
|
|
12958
12982
|
} | undefined;
|
|
12959
12983
|
};
|
|
@@ -13001,26 +13025,26 @@ declare module '@scout9/app/schemas' {
|
|
|
13001
13025
|
}>]>, "many">]>>;
|
|
13002
13026
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13003
13027
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
13004
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
13028
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
13005
13029
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
13006
13030
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
13007
13031
|
scheduled: z.ZodNumber;
|
|
13008
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
13032
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
13009
13033
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
13010
13034
|
message: z.ZodString;
|
|
13011
13035
|
}, "strip", z.ZodTypeAny, {
|
|
13012
13036
|
message: string;
|
|
13013
13037
|
scheduled: number;
|
|
13014
|
-
cancelIf?: Record<string,
|
|
13038
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13015
13039
|
overrideLock?: boolean | undefined;
|
|
13016
13040
|
}, {
|
|
13017
13041
|
message: string;
|
|
13018
13042
|
scheduled: number;
|
|
13019
|
-
cancelIf?: Record<string,
|
|
13043
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13020
13044
|
overrideLock?: boolean | undefined;
|
|
13021
13045
|
}>, z.ZodObject<{
|
|
13022
13046
|
scheduled: z.ZodNumber;
|
|
13023
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
13047
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
13024
13048
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
13025
13049
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
13026
13050
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -13066,7 +13090,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13066
13090
|
id?: string | undefined;
|
|
13067
13091
|
persist?: boolean | undefined;
|
|
13068
13092
|
})[] | undefined);
|
|
13069
|
-
cancelIf?: Record<string,
|
|
13093
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13070
13094
|
overrideLock?: boolean | undefined;
|
|
13071
13095
|
}, {
|
|
13072
13096
|
scheduled: number;
|
|
@@ -13087,7 +13111,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13087
13111
|
id?: string | undefined;
|
|
13088
13112
|
persist?: boolean | undefined;
|
|
13089
13113
|
})[] | undefined);
|
|
13090
|
-
cancelIf?: Record<string,
|
|
13114
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13091
13115
|
overrideLock?: boolean | undefined;
|
|
13092
13116
|
}>]>>;
|
|
13093
13117
|
keywords: z.ZodArray<z.ZodString, "many">;
|
|
@@ -13112,12 +13136,12 @@ declare module '@scout9/app/schemas' {
|
|
|
13112
13136
|
})[] | undefined;
|
|
13113
13137
|
removeInstructions?: string[] | undefined;
|
|
13114
13138
|
secondsDelay?: number | undefined;
|
|
13115
|
-
contextUpsert?: Record<string,
|
|
13139
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13116
13140
|
resetIntent?: boolean | undefined;
|
|
13117
13141
|
followup?: {
|
|
13118
13142
|
message: string;
|
|
13119
13143
|
scheduled: number;
|
|
13120
|
-
cancelIf?: Record<string,
|
|
13144
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13121
13145
|
overrideLock?: boolean | undefined;
|
|
13122
13146
|
} | {
|
|
13123
13147
|
scheduled: number;
|
|
@@ -13138,7 +13162,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13138
13162
|
id?: string | undefined;
|
|
13139
13163
|
persist?: boolean | undefined;
|
|
13140
13164
|
})[] | undefined);
|
|
13141
|
-
cancelIf?: Record<string,
|
|
13165
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13142
13166
|
overrideLock?: boolean | undefined;
|
|
13143
13167
|
} | undefined;
|
|
13144
13168
|
}, {
|
|
@@ -13162,12 +13186,12 @@ declare module '@scout9/app/schemas' {
|
|
|
13162
13186
|
})[] | undefined;
|
|
13163
13187
|
removeInstructions?: string[] | undefined;
|
|
13164
13188
|
secondsDelay?: number | undefined;
|
|
13165
|
-
contextUpsert?: Record<string,
|
|
13189
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13166
13190
|
resetIntent?: boolean | undefined;
|
|
13167
13191
|
followup?: {
|
|
13168
13192
|
message: string;
|
|
13169
13193
|
scheduled: number;
|
|
13170
|
-
cancelIf?: Record<string,
|
|
13194
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13171
13195
|
overrideLock?: boolean | undefined;
|
|
13172
13196
|
} | {
|
|
13173
13197
|
scheduled: number;
|
|
@@ -13188,7 +13212,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13188
13212
|
id?: string | undefined;
|
|
13189
13213
|
persist?: boolean | undefined;
|
|
13190
13214
|
})[] | undefined);
|
|
13191
|
-
cancelIf?: Record<string,
|
|
13215
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13192
13216
|
overrideLock?: boolean | undefined;
|
|
13193
13217
|
} | undefined;
|
|
13194
13218
|
}>, "many">]>>;
|
|
@@ -13212,12 +13236,12 @@ declare module '@scout9/app/schemas' {
|
|
|
13212
13236
|
})[] | undefined;
|
|
13213
13237
|
removeInstructions?: string[] | undefined;
|
|
13214
13238
|
secondsDelay?: number | undefined;
|
|
13215
|
-
contextUpsert?: Record<string,
|
|
13239
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13216
13240
|
resetIntent?: boolean | undefined;
|
|
13217
13241
|
followup?: {
|
|
13218
13242
|
message: string;
|
|
13219
13243
|
scheduled: number;
|
|
13220
|
-
cancelIf?: Record<string,
|
|
13244
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13221
13245
|
overrideLock?: boolean | undefined;
|
|
13222
13246
|
} | {
|
|
13223
13247
|
scheduled: number;
|
|
@@ -13238,7 +13262,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13238
13262
|
id?: string | undefined;
|
|
13239
13263
|
persist?: boolean | undefined;
|
|
13240
13264
|
})[] | undefined);
|
|
13241
|
-
cancelIf?: Record<string,
|
|
13265
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13242
13266
|
overrideLock?: boolean | undefined;
|
|
13243
13267
|
} | undefined;
|
|
13244
13268
|
anticipate?: {
|
|
@@ -13263,12 +13287,12 @@ declare module '@scout9/app/schemas' {
|
|
|
13263
13287
|
message?: string | undefined;
|
|
13264
13288
|
secondsDelay?: number | undefined;
|
|
13265
13289
|
scheduled?: number | undefined;
|
|
13266
|
-
contextUpsert?: Record<string,
|
|
13290
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13267
13291
|
resetIntent?: boolean | undefined;
|
|
13268
13292
|
followup?: {
|
|
13269
13293
|
message: string;
|
|
13270
13294
|
scheduled: number;
|
|
13271
|
-
cancelIf?: Record<string,
|
|
13295
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13272
13296
|
overrideLock?: boolean | undefined;
|
|
13273
13297
|
} | {
|
|
13274
13298
|
scheduled: number;
|
|
@@ -13289,7 +13313,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13289
13313
|
id?: string | undefined;
|
|
13290
13314
|
persist?: boolean | undefined;
|
|
13291
13315
|
})[] | undefined);
|
|
13292
|
-
cancelIf?: Record<string,
|
|
13316
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13293
13317
|
overrideLock?: boolean | undefined;
|
|
13294
13318
|
} | undefined;
|
|
13295
13319
|
};
|
|
@@ -13313,12 +13337,12 @@ declare module '@scout9/app/schemas' {
|
|
|
13313
13337
|
message?: string | undefined;
|
|
13314
13338
|
secondsDelay?: number | undefined;
|
|
13315
13339
|
scheduled?: number | undefined;
|
|
13316
|
-
contextUpsert?: Record<string,
|
|
13340
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13317
13341
|
resetIntent?: boolean | undefined;
|
|
13318
13342
|
followup?: {
|
|
13319
13343
|
message: string;
|
|
13320
13344
|
scheduled: number;
|
|
13321
|
-
cancelIf?: Record<string,
|
|
13345
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13322
13346
|
overrideLock?: boolean | undefined;
|
|
13323
13347
|
} | {
|
|
13324
13348
|
scheduled: number;
|
|
@@ -13339,7 +13363,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13339
13363
|
id?: string | undefined;
|
|
13340
13364
|
persist?: boolean | undefined;
|
|
13341
13365
|
})[] | undefined);
|
|
13342
|
-
cancelIf?: Record<string,
|
|
13366
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13343
13367
|
overrideLock?: boolean | undefined;
|
|
13344
13368
|
} | undefined;
|
|
13345
13369
|
};
|
|
@@ -13364,12 +13388,12 @@ declare module '@scout9/app/schemas' {
|
|
|
13364
13388
|
})[] | undefined;
|
|
13365
13389
|
removeInstructions?: string[] | undefined;
|
|
13366
13390
|
secondsDelay?: number | undefined;
|
|
13367
|
-
contextUpsert?: Record<string,
|
|
13391
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13368
13392
|
resetIntent?: boolean | undefined;
|
|
13369
13393
|
followup?: {
|
|
13370
13394
|
message: string;
|
|
13371
13395
|
scheduled: number;
|
|
13372
|
-
cancelIf?: Record<string,
|
|
13396
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13373
13397
|
overrideLock?: boolean | undefined;
|
|
13374
13398
|
} | {
|
|
13375
13399
|
scheduled: number;
|
|
@@ -13390,7 +13414,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13390
13414
|
id?: string | undefined;
|
|
13391
13415
|
persist?: boolean | undefined;
|
|
13392
13416
|
})[] | undefined);
|
|
13393
|
-
cancelIf?: Record<string,
|
|
13417
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13394
13418
|
overrideLock?: boolean | undefined;
|
|
13395
13419
|
} | undefined;
|
|
13396
13420
|
}[] | undefined;
|
|
@@ -13414,12 +13438,12 @@ declare module '@scout9/app/schemas' {
|
|
|
13414
13438
|
})[] | undefined;
|
|
13415
13439
|
removeInstructions?: string[] | undefined;
|
|
13416
13440
|
secondsDelay?: number | undefined;
|
|
13417
|
-
contextUpsert?: Record<string,
|
|
13441
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13418
13442
|
resetIntent?: boolean | undefined;
|
|
13419
13443
|
followup?: {
|
|
13420
13444
|
message: string;
|
|
13421
13445
|
scheduled: number;
|
|
13422
|
-
cancelIf?: Record<string,
|
|
13446
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13423
13447
|
overrideLock?: boolean | undefined;
|
|
13424
13448
|
} | {
|
|
13425
13449
|
scheduled: number;
|
|
@@ -13440,7 +13464,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13440
13464
|
id?: string | undefined;
|
|
13441
13465
|
persist?: boolean | undefined;
|
|
13442
13466
|
})[] | undefined);
|
|
13443
|
-
cancelIf?: Record<string,
|
|
13467
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13444
13468
|
overrideLock?: boolean | undefined;
|
|
13445
13469
|
} | undefined;
|
|
13446
13470
|
anticipate?: {
|
|
@@ -13465,12 +13489,12 @@ declare module '@scout9/app/schemas' {
|
|
|
13465
13489
|
message?: string | undefined;
|
|
13466
13490
|
secondsDelay?: number | undefined;
|
|
13467
13491
|
scheduled?: number | undefined;
|
|
13468
|
-
contextUpsert?: Record<string,
|
|
13492
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13469
13493
|
resetIntent?: boolean | undefined;
|
|
13470
13494
|
followup?: {
|
|
13471
13495
|
message: string;
|
|
13472
13496
|
scheduled: number;
|
|
13473
|
-
cancelIf?: Record<string,
|
|
13497
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13474
13498
|
overrideLock?: boolean | undefined;
|
|
13475
13499
|
} | {
|
|
13476
13500
|
scheduled: number;
|
|
@@ -13491,7 +13515,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13491
13515
|
id?: string | undefined;
|
|
13492
13516
|
persist?: boolean | undefined;
|
|
13493
13517
|
})[] | undefined);
|
|
13494
|
-
cancelIf?: Record<string,
|
|
13518
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13495
13519
|
overrideLock?: boolean | undefined;
|
|
13496
13520
|
} | undefined;
|
|
13497
13521
|
};
|
|
@@ -13515,12 +13539,12 @@ declare module '@scout9/app/schemas' {
|
|
|
13515
13539
|
message?: string | undefined;
|
|
13516
13540
|
secondsDelay?: number | undefined;
|
|
13517
13541
|
scheduled?: number | undefined;
|
|
13518
|
-
contextUpsert?: Record<string,
|
|
13542
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13519
13543
|
resetIntent?: boolean | undefined;
|
|
13520
13544
|
followup?: {
|
|
13521
13545
|
message: string;
|
|
13522
13546
|
scheduled: number;
|
|
13523
|
-
cancelIf?: Record<string,
|
|
13547
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13524
13548
|
overrideLock?: boolean | undefined;
|
|
13525
13549
|
} | {
|
|
13526
13550
|
scheduled: number;
|
|
@@ -13541,7 +13565,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13541
13565
|
id?: string | undefined;
|
|
13542
13566
|
persist?: boolean | undefined;
|
|
13543
13567
|
})[] | undefined);
|
|
13544
|
-
cancelIf?: Record<string,
|
|
13568
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13545
13569
|
overrideLock?: boolean | undefined;
|
|
13546
13570
|
} | undefined;
|
|
13547
13571
|
};
|
|
@@ -13566,12 +13590,12 @@ declare module '@scout9/app/schemas' {
|
|
|
13566
13590
|
})[] | undefined;
|
|
13567
13591
|
removeInstructions?: string[] | undefined;
|
|
13568
13592
|
secondsDelay?: number | undefined;
|
|
13569
|
-
contextUpsert?: Record<string,
|
|
13593
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13570
13594
|
resetIntent?: boolean | undefined;
|
|
13571
13595
|
followup?: {
|
|
13572
13596
|
message: string;
|
|
13573
13597
|
scheduled: number;
|
|
13574
|
-
cancelIf?: Record<string,
|
|
13598
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13575
13599
|
overrideLock?: boolean | undefined;
|
|
13576
13600
|
} | {
|
|
13577
13601
|
scheduled: number;
|
|
@@ -13592,7 +13616,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13592
13616
|
id?: string | undefined;
|
|
13593
13617
|
persist?: boolean | undefined;
|
|
13594
13618
|
})[] | undefined);
|
|
13595
|
-
cancelIf?: Record<string,
|
|
13619
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13596
13620
|
overrideLock?: boolean | undefined;
|
|
13597
13621
|
} | undefined;
|
|
13598
13622
|
}[] | undefined;
|
|
@@ -13640,26 +13664,26 @@ declare module '@scout9/app/schemas' {
|
|
|
13640
13664
|
}>]>, "many">]>>;
|
|
13641
13665
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13642
13666
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
13643
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
13667
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
13644
13668
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
13645
13669
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
13646
13670
|
scheduled: z.ZodNumber;
|
|
13647
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
13671
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
13648
13672
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
13649
13673
|
message: z.ZodString;
|
|
13650
13674
|
}, "strip", z.ZodTypeAny, {
|
|
13651
13675
|
message: string;
|
|
13652
13676
|
scheduled: number;
|
|
13653
|
-
cancelIf?: Record<string,
|
|
13677
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13654
13678
|
overrideLock?: boolean | undefined;
|
|
13655
13679
|
}, {
|
|
13656
13680
|
message: string;
|
|
13657
13681
|
scheduled: number;
|
|
13658
|
-
cancelIf?: Record<string,
|
|
13682
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13659
13683
|
overrideLock?: boolean | undefined;
|
|
13660
13684
|
}>, z.ZodObject<{
|
|
13661
13685
|
scheduled: z.ZodNumber;
|
|
13662
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
13686
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
13663
13687
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
13664
13688
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
13665
13689
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -13705,7 +13729,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13705
13729
|
id?: string | undefined;
|
|
13706
13730
|
persist?: boolean | undefined;
|
|
13707
13731
|
})[] | undefined);
|
|
13708
|
-
cancelIf?: Record<string,
|
|
13732
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13709
13733
|
overrideLock?: boolean | undefined;
|
|
13710
13734
|
}, {
|
|
13711
13735
|
scheduled: number;
|
|
@@ -13726,7 +13750,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13726
13750
|
id?: string | undefined;
|
|
13727
13751
|
persist?: boolean | undefined;
|
|
13728
13752
|
})[] | undefined);
|
|
13729
|
-
cancelIf?: Record<string,
|
|
13753
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13730
13754
|
overrideLock?: boolean | undefined;
|
|
13731
13755
|
}>]>>;
|
|
13732
13756
|
anticipate: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
@@ -13775,26 +13799,26 @@ declare module '@scout9/app/schemas' {
|
|
|
13775
13799
|
message: z.ZodOptional<z.ZodString>;
|
|
13776
13800
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
13777
13801
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
13778
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
13802
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
13779
13803
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
13780
13804
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
13781
13805
|
scheduled: z.ZodNumber;
|
|
13782
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
13806
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
13783
13807
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
13784
13808
|
message: z.ZodString;
|
|
13785
13809
|
}, "strip", z.ZodTypeAny, {
|
|
13786
13810
|
message: string;
|
|
13787
13811
|
scheduled: number;
|
|
13788
|
-
cancelIf?: Record<string,
|
|
13812
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13789
13813
|
overrideLock?: boolean | undefined;
|
|
13790
13814
|
}, {
|
|
13791
13815
|
message: string;
|
|
13792
13816
|
scheduled: number;
|
|
13793
|
-
cancelIf?: Record<string,
|
|
13817
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13794
13818
|
overrideLock?: boolean | undefined;
|
|
13795
13819
|
}>, z.ZodObject<{
|
|
13796
13820
|
scheduled: z.ZodNumber;
|
|
13797
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
13821
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
13798
13822
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
13799
13823
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
13800
13824
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -13840,7 +13864,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13840
13864
|
id?: string | undefined;
|
|
13841
13865
|
persist?: boolean | undefined;
|
|
13842
13866
|
})[] | undefined);
|
|
13843
|
-
cancelIf?: Record<string,
|
|
13867
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13844
13868
|
overrideLock?: boolean | undefined;
|
|
13845
13869
|
}, {
|
|
13846
13870
|
scheduled: number;
|
|
@@ -13861,7 +13885,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13861
13885
|
id?: string | undefined;
|
|
13862
13886
|
persist?: boolean | undefined;
|
|
13863
13887
|
})[] | undefined);
|
|
13864
|
-
cancelIf?: Record<string,
|
|
13888
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13865
13889
|
overrideLock?: boolean | undefined;
|
|
13866
13890
|
}>]>>;
|
|
13867
13891
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -13884,12 +13908,12 @@ declare module '@scout9/app/schemas' {
|
|
|
13884
13908
|
message?: string | undefined;
|
|
13885
13909
|
secondsDelay?: number | undefined;
|
|
13886
13910
|
scheduled?: number | undefined;
|
|
13887
|
-
contextUpsert?: Record<string,
|
|
13911
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13888
13912
|
resetIntent?: boolean | undefined;
|
|
13889
13913
|
followup?: {
|
|
13890
13914
|
message: string;
|
|
13891
13915
|
scheduled: number;
|
|
13892
|
-
cancelIf?: Record<string,
|
|
13916
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13893
13917
|
overrideLock?: boolean | undefined;
|
|
13894
13918
|
} | {
|
|
13895
13919
|
scheduled: number;
|
|
@@ -13910,7 +13934,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13910
13934
|
id?: string | undefined;
|
|
13911
13935
|
persist?: boolean | undefined;
|
|
13912
13936
|
})[] | undefined);
|
|
13913
|
-
cancelIf?: Record<string,
|
|
13937
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13914
13938
|
overrideLock?: boolean | undefined;
|
|
13915
13939
|
} | undefined;
|
|
13916
13940
|
}, {
|
|
@@ -13933,12 +13957,12 @@ declare module '@scout9/app/schemas' {
|
|
|
13933
13957
|
message?: string | undefined;
|
|
13934
13958
|
secondsDelay?: number | undefined;
|
|
13935
13959
|
scheduled?: number | undefined;
|
|
13936
|
-
contextUpsert?: Record<string,
|
|
13960
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13937
13961
|
resetIntent?: boolean | undefined;
|
|
13938
13962
|
followup?: {
|
|
13939
13963
|
message: string;
|
|
13940
13964
|
scheduled: number;
|
|
13941
|
-
cancelIf?: Record<string,
|
|
13965
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13942
13966
|
overrideLock?: boolean | undefined;
|
|
13943
13967
|
} | {
|
|
13944
13968
|
scheduled: number;
|
|
@@ -13959,7 +13983,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13959
13983
|
id?: string | undefined;
|
|
13960
13984
|
persist?: boolean | undefined;
|
|
13961
13985
|
})[] | undefined);
|
|
13962
|
-
cancelIf?: Record<string,
|
|
13986
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
13963
13987
|
overrideLock?: boolean | undefined;
|
|
13964
13988
|
} | undefined;
|
|
13965
13989
|
}>;
|
|
@@ -14007,26 +14031,26 @@ declare module '@scout9/app/schemas' {
|
|
|
14007
14031
|
message: z.ZodOptional<z.ZodString>;
|
|
14008
14032
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
14009
14033
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
14010
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
14034
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
14011
14035
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
14012
14036
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
14013
14037
|
scheduled: z.ZodNumber;
|
|
14014
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
14038
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
14015
14039
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
14016
14040
|
message: z.ZodString;
|
|
14017
14041
|
}, "strip", z.ZodTypeAny, {
|
|
14018
14042
|
message: string;
|
|
14019
14043
|
scheduled: number;
|
|
14020
|
-
cancelIf?: Record<string,
|
|
14044
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14021
14045
|
overrideLock?: boolean | undefined;
|
|
14022
14046
|
}, {
|
|
14023
14047
|
message: string;
|
|
14024
14048
|
scheduled: number;
|
|
14025
|
-
cancelIf?: Record<string,
|
|
14049
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14026
14050
|
overrideLock?: boolean | undefined;
|
|
14027
14051
|
}>, z.ZodObject<{
|
|
14028
14052
|
scheduled: z.ZodNumber;
|
|
14029
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
14053
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
14030
14054
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
14031
14055
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
14032
14056
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -14072,7 +14096,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14072
14096
|
id?: string | undefined;
|
|
14073
14097
|
persist?: boolean | undefined;
|
|
14074
14098
|
})[] | undefined);
|
|
14075
|
-
cancelIf?: Record<string,
|
|
14099
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14076
14100
|
overrideLock?: boolean | undefined;
|
|
14077
14101
|
}, {
|
|
14078
14102
|
scheduled: number;
|
|
@@ -14093,7 +14117,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14093
14117
|
id?: string | undefined;
|
|
14094
14118
|
persist?: boolean | undefined;
|
|
14095
14119
|
})[] | undefined);
|
|
14096
|
-
cancelIf?: Record<string,
|
|
14120
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14097
14121
|
overrideLock?: boolean | undefined;
|
|
14098
14122
|
}>]>>;
|
|
14099
14123
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14116,12 +14140,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14116
14140
|
message?: string | undefined;
|
|
14117
14141
|
secondsDelay?: number | undefined;
|
|
14118
14142
|
scheduled?: number | undefined;
|
|
14119
|
-
contextUpsert?: Record<string,
|
|
14143
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14120
14144
|
resetIntent?: boolean | undefined;
|
|
14121
14145
|
followup?: {
|
|
14122
14146
|
message: string;
|
|
14123
14147
|
scheduled: number;
|
|
14124
|
-
cancelIf?: Record<string,
|
|
14148
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14125
14149
|
overrideLock?: boolean | undefined;
|
|
14126
14150
|
} | {
|
|
14127
14151
|
scheduled: number;
|
|
@@ -14142,7 +14166,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14142
14166
|
id?: string | undefined;
|
|
14143
14167
|
persist?: boolean | undefined;
|
|
14144
14168
|
})[] | undefined);
|
|
14145
|
-
cancelIf?: Record<string,
|
|
14169
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14146
14170
|
overrideLock?: boolean | undefined;
|
|
14147
14171
|
} | undefined;
|
|
14148
14172
|
}, {
|
|
@@ -14165,12 +14189,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14165
14189
|
message?: string | undefined;
|
|
14166
14190
|
secondsDelay?: number | undefined;
|
|
14167
14191
|
scheduled?: number | undefined;
|
|
14168
|
-
contextUpsert?: Record<string,
|
|
14192
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14169
14193
|
resetIntent?: boolean | undefined;
|
|
14170
14194
|
followup?: {
|
|
14171
14195
|
message: string;
|
|
14172
14196
|
scheduled: number;
|
|
14173
|
-
cancelIf?: Record<string,
|
|
14197
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14174
14198
|
overrideLock?: boolean | undefined;
|
|
14175
14199
|
} | {
|
|
14176
14200
|
scheduled: number;
|
|
@@ -14191,7 +14215,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14191
14215
|
id?: string | undefined;
|
|
14192
14216
|
persist?: boolean | undefined;
|
|
14193
14217
|
})[] | undefined);
|
|
14194
|
-
cancelIf?: Record<string,
|
|
14218
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14195
14219
|
overrideLock?: boolean | undefined;
|
|
14196
14220
|
} | undefined;
|
|
14197
14221
|
}>;
|
|
@@ -14217,12 +14241,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14217
14241
|
message?: string | undefined;
|
|
14218
14242
|
secondsDelay?: number | undefined;
|
|
14219
14243
|
scheduled?: number | undefined;
|
|
14220
|
-
contextUpsert?: Record<string,
|
|
14244
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14221
14245
|
resetIntent?: boolean | undefined;
|
|
14222
14246
|
followup?: {
|
|
14223
14247
|
message: string;
|
|
14224
14248
|
scheduled: number;
|
|
14225
|
-
cancelIf?: Record<string,
|
|
14249
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14226
14250
|
overrideLock?: boolean | undefined;
|
|
14227
14251
|
} | {
|
|
14228
14252
|
scheduled: number;
|
|
@@ -14243,7 +14267,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14243
14267
|
id?: string | undefined;
|
|
14244
14268
|
persist?: boolean | undefined;
|
|
14245
14269
|
})[] | undefined);
|
|
14246
|
-
cancelIf?: Record<string,
|
|
14270
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14247
14271
|
overrideLock?: boolean | undefined;
|
|
14248
14272
|
} | undefined;
|
|
14249
14273
|
};
|
|
@@ -14267,12 +14291,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14267
14291
|
message?: string | undefined;
|
|
14268
14292
|
secondsDelay?: number | undefined;
|
|
14269
14293
|
scheduled?: number | undefined;
|
|
14270
|
-
contextUpsert?: Record<string,
|
|
14294
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14271
14295
|
resetIntent?: boolean | undefined;
|
|
14272
14296
|
followup?: {
|
|
14273
14297
|
message: string;
|
|
14274
14298
|
scheduled: number;
|
|
14275
|
-
cancelIf?: Record<string,
|
|
14299
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14276
14300
|
overrideLock?: boolean | undefined;
|
|
14277
14301
|
} | {
|
|
14278
14302
|
scheduled: number;
|
|
@@ -14293,7 +14317,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14293
14317
|
id?: string | undefined;
|
|
14294
14318
|
persist?: boolean | undefined;
|
|
14295
14319
|
})[] | undefined);
|
|
14296
|
-
cancelIf?: Record<string,
|
|
14320
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14297
14321
|
overrideLock?: boolean | undefined;
|
|
14298
14322
|
} | undefined;
|
|
14299
14323
|
};
|
|
@@ -14319,12 +14343,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14319
14343
|
message?: string | undefined;
|
|
14320
14344
|
secondsDelay?: number | undefined;
|
|
14321
14345
|
scheduled?: number | undefined;
|
|
14322
|
-
contextUpsert?: Record<string,
|
|
14346
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14323
14347
|
resetIntent?: boolean | undefined;
|
|
14324
14348
|
followup?: {
|
|
14325
14349
|
message: string;
|
|
14326
14350
|
scheduled: number;
|
|
14327
|
-
cancelIf?: Record<string,
|
|
14351
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14328
14352
|
overrideLock?: boolean | undefined;
|
|
14329
14353
|
} | {
|
|
14330
14354
|
scheduled: number;
|
|
@@ -14345,7 +14369,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14345
14369
|
id?: string | undefined;
|
|
14346
14370
|
persist?: boolean | undefined;
|
|
14347
14371
|
})[] | undefined);
|
|
14348
|
-
cancelIf?: Record<string,
|
|
14372
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14349
14373
|
overrideLock?: boolean | undefined;
|
|
14350
14374
|
} | undefined;
|
|
14351
14375
|
};
|
|
@@ -14369,12 +14393,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14369
14393
|
message?: string | undefined;
|
|
14370
14394
|
secondsDelay?: number | undefined;
|
|
14371
14395
|
scheduled?: number | undefined;
|
|
14372
|
-
contextUpsert?: Record<string,
|
|
14396
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14373
14397
|
resetIntent?: boolean | undefined;
|
|
14374
14398
|
followup?: {
|
|
14375
14399
|
message: string;
|
|
14376
14400
|
scheduled: number;
|
|
14377
|
-
cancelIf?: Record<string,
|
|
14401
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14378
14402
|
overrideLock?: boolean | undefined;
|
|
14379
14403
|
} | {
|
|
14380
14404
|
scheduled: number;
|
|
@@ -14395,7 +14419,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14395
14419
|
id?: string | undefined;
|
|
14396
14420
|
persist?: boolean | undefined;
|
|
14397
14421
|
})[] | undefined);
|
|
14398
|
-
cancelIf?: Record<string,
|
|
14422
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14399
14423
|
overrideLock?: boolean | undefined;
|
|
14400
14424
|
} | undefined;
|
|
14401
14425
|
};
|
|
@@ -14443,26 +14467,26 @@ declare module '@scout9/app/schemas' {
|
|
|
14443
14467
|
}>]>, "many">]>>;
|
|
14444
14468
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
14445
14469
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
14446
|
-
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
14470
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
14447
14471
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
14448
14472
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
14449
14473
|
scheduled: z.ZodNumber;
|
|
14450
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
14474
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
14451
14475
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
14452
14476
|
message: z.ZodString;
|
|
14453
14477
|
}, "strip", z.ZodTypeAny, {
|
|
14454
14478
|
message: string;
|
|
14455
14479
|
scheduled: number;
|
|
14456
|
-
cancelIf?: Record<string,
|
|
14480
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14457
14481
|
overrideLock?: boolean | undefined;
|
|
14458
14482
|
}, {
|
|
14459
14483
|
message: string;
|
|
14460
14484
|
scheduled: number;
|
|
14461
|
-
cancelIf?: Record<string,
|
|
14485
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14462
14486
|
overrideLock?: boolean | undefined;
|
|
14463
14487
|
}>, z.ZodObject<{
|
|
14464
14488
|
scheduled: z.ZodNumber;
|
|
14465
|
-
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
14489
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
14466
14490
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
14467
14491
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
14468
14492
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -14508,7 +14532,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14508
14532
|
id?: string | undefined;
|
|
14509
14533
|
persist?: boolean | undefined;
|
|
14510
14534
|
})[] | undefined);
|
|
14511
|
-
cancelIf?: Record<string,
|
|
14535
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14512
14536
|
overrideLock?: boolean | undefined;
|
|
14513
14537
|
}, {
|
|
14514
14538
|
scheduled: number;
|
|
@@ -14529,7 +14553,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14529
14553
|
id?: string | undefined;
|
|
14530
14554
|
persist?: boolean | undefined;
|
|
14531
14555
|
})[] | undefined);
|
|
14532
|
-
cancelIf?: Record<string,
|
|
14556
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14533
14557
|
overrideLock?: boolean | undefined;
|
|
14534
14558
|
}>]>>;
|
|
14535
14559
|
keywords: z.ZodArray<z.ZodString, "many">;
|
|
@@ -14554,12 +14578,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14554
14578
|
})[] | undefined;
|
|
14555
14579
|
removeInstructions?: string[] | undefined;
|
|
14556
14580
|
secondsDelay?: number | undefined;
|
|
14557
|
-
contextUpsert?: Record<string,
|
|
14581
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14558
14582
|
resetIntent?: boolean | undefined;
|
|
14559
14583
|
followup?: {
|
|
14560
14584
|
message: string;
|
|
14561
14585
|
scheduled: number;
|
|
14562
|
-
cancelIf?: Record<string,
|
|
14586
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14563
14587
|
overrideLock?: boolean | undefined;
|
|
14564
14588
|
} | {
|
|
14565
14589
|
scheduled: number;
|
|
@@ -14580,7 +14604,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14580
14604
|
id?: string | undefined;
|
|
14581
14605
|
persist?: boolean | undefined;
|
|
14582
14606
|
})[] | undefined);
|
|
14583
|
-
cancelIf?: Record<string,
|
|
14607
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14584
14608
|
overrideLock?: boolean | undefined;
|
|
14585
14609
|
} | undefined;
|
|
14586
14610
|
}, {
|
|
@@ -14604,12 +14628,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14604
14628
|
})[] | undefined;
|
|
14605
14629
|
removeInstructions?: string[] | undefined;
|
|
14606
14630
|
secondsDelay?: number | undefined;
|
|
14607
|
-
contextUpsert?: Record<string,
|
|
14631
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14608
14632
|
resetIntent?: boolean | undefined;
|
|
14609
14633
|
followup?: {
|
|
14610
14634
|
message: string;
|
|
14611
14635
|
scheduled: number;
|
|
14612
|
-
cancelIf?: Record<string,
|
|
14636
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14613
14637
|
overrideLock?: boolean | undefined;
|
|
14614
14638
|
} | {
|
|
14615
14639
|
scheduled: number;
|
|
@@ -14630,7 +14654,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14630
14654
|
id?: string | undefined;
|
|
14631
14655
|
persist?: boolean | undefined;
|
|
14632
14656
|
})[] | undefined);
|
|
14633
|
-
cancelIf?: Record<string,
|
|
14657
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14634
14658
|
overrideLock?: boolean | undefined;
|
|
14635
14659
|
} | undefined;
|
|
14636
14660
|
}>, "many">]>>;
|
|
@@ -14654,12 +14678,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14654
14678
|
})[] | undefined;
|
|
14655
14679
|
removeInstructions?: string[] | undefined;
|
|
14656
14680
|
secondsDelay?: number | undefined;
|
|
14657
|
-
contextUpsert?: Record<string,
|
|
14681
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14658
14682
|
resetIntent?: boolean | undefined;
|
|
14659
14683
|
followup?: {
|
|
14660
14684
|
message: string;
|
|
14661
14685
|
scheduled: number;
|
|
14662
|
-
cancelIf?: Record<string,
|
|
14686
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14663
14687
|
overrideLock?: boolean | undefined;
|
|
14664
14688
|
} | {
|
|
14665
14689
|
scheduled: number;
|
|
@@ -14680,7 +14704,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14680
14704
|
id?: string | undefined;
|
|
14681
14705
|
persist?: boolean | undefined;
|
|
14682
14706
|
})[] | undefined);
|
|
14683
|
-
cancelIf?: Record<string,
|
|
14707
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14684
14708
|
overrideLock?: boolean | undefined;
|
|
14685
14709
|
} | undefined;
|
|
14686
14710
|
anticipate?: {
|
|
@@ -14705,12 +14729,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14705
14729
|
message?: string | undefined;
|
|
14706
14730
|
secondsDelay?: number | undefined;
|
|
14707
14731
|
scheduled?: number | undefined;
|
|
14708
|
-
contextUpsert?: Record<string,
|
|
14732
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14709
14733
|
resetIntent?: boolean | undefined;
|
|
14710
14734
|
followup?: {
|
|
14711
14735
|
message: string;
|
|
14712
14736
|
scheduled: number;
|
|
14713
|
-
cancelIf?: Record<string,
|
|
14737
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14714
14738
|
overrideLock?: boolean | undefined;
|
|
14715
14739
|
} | {
|
|
14716
14740
|
scheduled: number;
|
|
@@ -14731,7 +14755,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14731
14755
|
id?: string | undefined;
|
|
14732
14756
|
persist?: boolean | undefined;
|
|
14733
14757
|
})[] | undefined);
|
|
14734
|
-
cancelIf?: Record<string,
|
|
14758
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14735
14759
|
overrideLock?: boolean | undefined;
|
|
14736
14760
|
} | undefined;
|
|
14737
14761
|
};
|
|
@@ -14755,12 +14779,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14755
14779
|
message?: string | undefined;
|
|
14756
14780
|
secondsDelay?: number | undefined;
|
|
14757
14781
|
scheduled?: number | undefined;
|
|
14758
|
-
contextUpsert?: Record<string,
|
|
14782
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14759
14783
|
resetIntent?: boolean | undefined;
|
|
14760
14784
|
followup?: {
|
|
14761
14785
|
message: string;
|
|
14762
14786
|
scheduled: number;
|
|
14763
|
-
cancelIf?: Record<string,
|
|
14787
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14764
14788
|
overrideLock?: boolean | undefined;
|
|
14765
14789
|
} | {
|
|
14766
14790
|
scheduled: number;
|
|
@@ -14781,7 +14805,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14781
14805
|
id?: string | undefined;
|
|
14782
14806
|
persist?: boolean | undefined;
|
|
14783
14807
|
})[] | undefined);
|
|
14784
|
-
cancelIf?: Record<string,
|
|
14808
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14785
14809
|
overrideLock?: boolean | undefined;
|
|
14786
14810
|
} | undefined;
|
|
14787
14811
|
};
|
|
@@ -14806,12 +14830,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14806
14830
|
})[] | undefined;
|
|
14807
14831
|
removeInstructions?: string[] | undefined;
|
|
14808
14832
|
secondsDelay?: number | undefined;
|
|
14809
|
-
contextUpsert?: Record<string,
|
|
14833
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14810
14834
|
resetIntent?: boolean | undefined;
|
|
14811
14835
|
followup?: {
|
|
14812
14836
|
message: string;
|
|
14813
14837
|
scheduled: number;
|
|
14814
|
-
cancelIf?: Record<string,
|
|
14838
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14815
14839
|
overrideLock?: boolean | undefined;
|
|
14816
14840
|
} | {
|
|
14817
14841
|
scheduled: number;
|
|
@@ -14832,7 +14856,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14832
14856
|
id?: string | undefined;
|
|
14833
14857
|
persist?: boolean | undefined;
|
|
14834
14858
|
})[] | undefined);
|
|
14835
|
-
cancelIf?: Record<string,
|
|
14859
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14836
14860
|
overrideLock?: boolean | undefined;
|
|
14837
14861
|
} | undefined;
|
|
14838
14862
|
}[] | undefined;
|
|
@@ -14856,12 +14880,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14856
14880
|
})[] | undefined;
|
|
14857
14881
|
removeInstructions?: string[] | undefined;
|
|
14858
14882
|
secondsDelay?: number | undefined;
|
|
14859
|
-
contextUpsert?: Record<string,
|
|
14883
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14860
14884
|
resetIntent?: boolean | undefined;
|
|
14861
14885
|
followup?: {
|
|
14862
14886
|
message: string;
|
|
14863
14887
|
scheduled: number;
|
|
14864
|
-
cancelIf?: Record<string,
|
|
14888
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14865
14889
|
overrideLock?: boolean | undefined;
|
|
14866
14890
|
} | {
|
|
14867
14891
|
scheduled: number;
|
|
@@ -14882,7 +14906,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14882
14906
|
id?: string | undefined;
|
|
14883
14907
|
persist?: boolean | undefined;
|
|
14884
14908
|
})[] | undefined);
|
|
14885
|
-
cancelIf?: Record<string,
|
|
14909
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14886
14910
|
overrideLock?: boolean | undefined;
|
|
14887
14911
|
} | undefined;
|
|
14888
14912
|
anticipate?: {
|
|
@@ -14907,12 +14931,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14907
14931
|
message?: string | undefined;
|
|
14908
14932
|
secondsDelay?: number | undefined;
|
|
14909
14933
|
scheduled?: number | undefined;
|
|
14910
|
-
contextUpsert?: Record<string,
|
|
14934
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14911
14935
|
resetIntent?: boolean | undefined;
|
|
14912
14936
|
followup?: {
|
|
14913
14937
|
message: string;
|
|
14914
14938
|
scheduled: number;
|
|
14915
|
-
cancelIf?: Record<string,
|
|
14939
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14916
14940
|
overrideLock?: boolean | undefined;
|
|
14917
14941
|
} | {
|
|
14918
14942
|
scheduled: number;
|
|
@@ -14933,7 +14957,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14933
14957
|
id?: string | undefined;
|
|
14934
14958
|
persist?: boolean | undefined;
|
|
14935
14959
|
})[] | undefined);
|
|
14936
|
-
cancelIf?: Record<string,
|
|
14960
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14937
14961
|
overrideLock?: boolean | undefined;
|
|
14938
14962
|
} | undefined;
|
|
14939
14963
|
};
|
|
@@ -14957,12 +14981,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14957
14981
|
message?: string | undefined;
|
|
14958
14982
|
secondsDelay?: number | undefined;
|
|
14959
14983
|
scheduled?: number | undefined;
|
|
14960
|
-
contextUpsert?: Record<string,
|
|
14984
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14961
14985
|
resetIntent?: boolean | undefined;
|
|
14962
14986
|
followup?: {
|
|
14963
14987
|
message: string;
|
|
14964
14988
|
scheduled: number;
|
|
14965
|
-
cancelIf?: Record<string,
|
|
14989
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14966
14990
|
overrideLock?: boolean | undefined;
|
|
14967
14991
|
} | {
|
|
14968
14992
|
scheduled: number;
|
|
@@ -14983,7 +15007,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14983
15007
|
id?: string | undefined;
|
|
14984
15008
|
persist?: boolean | undefined;
|
|
14985
15009
|
})[] | undefined);
|
|
14986
|
-
cancelIf?: Record<string,
|
|
15010
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
14987
15011
|
overrideLock?: boolean | undefined;
|
|
14988
15012
|
} | undefined;
|
|
14989
15013
|
};
|
|
@@ -15008,12 +15032,12 @@ declare module '@scout9/app/schemas' {
|
|
|
15008
15032
|
})[] | undefined;
|
|
15009
15033
|
removeInstructions?: string[] | undefined;
|
|
15010
15034
|
secondsDelay?: number | undefined;
|
|
15011
|
-
contextUpsert?: Record<string,
|
|
15035
|
+
contextUpsert?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
15012
15036
|
resetIntent?: boolean | undefined;
|
|
15013
15037
|
followup?: {
|
|
15014
15038
|
message: string;
|
|
15015
15039
|
scheduled: number;
|
|
15016
|
-
cancelIf?: Record<string,
|
|
15040
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
15017
15041
|
overrideLock?: boolean | undefined;
|
|
15018
15042
|
} | {
|
|
15019
15043
|
scheduled: number;
|
|
@@ -15034,7 +15058,7 @@ declare module '@scout9/app/schemas' {
|
|
|
15034
15058
|
id?: string | undefined;
|
|
15035
15059
|
persist?: boolean | undefined;
|
|
15036
15060
|
})[] | undefined);
|
|
15037
|
-
cancelIf?: Record<string,
|
|
15061
|
+
cancelIf?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
15038
15062
|
overrideLock?: boolean | undefined;
|
|
15039
15063
|
} | undefined;
|
|
15040
15064
|
}[] | undefined;
|
|
@@ -15321,7 +15345,7 @@ declare module '@scout9/app/schemas' {
|
|
|
15321
15345
|
headers?: any;
|
|
15322
15346
|
} | undefined;
|
|
15323
15347
|
}>>>;
|
|
15324
|
-
export const ConversationContext: z.ZodRecord<z.ZodString, z.
|
|
15348
|
+
export const ConversationContext: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>;
|
|
15325
15349
|
export const ConversationAnticipateSchema: z.ZodObject<{
|
|
15326
15350
|
type: z.ZodEnum<["did", "literal", "context"]>;
|
|
15327
15351
|
slots: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodAny, "many">>;
|