@scout9/app 1.0.0-alpha.0.4.8 → 1.0.0-alpha.0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{dev-332ccb5a.cjs → dev-5c6f5d76.cjs} +323 -153
- package/dist/{index-2d62ac36.cjs → index-45f6ee5e.cjs} +16 -10
- package/dist/index.cjs +5 -4
- package/dist/{macros-e4105c56.cjs → macros-2f21c706.cjs} +8 -1
- package/dist/{multipart-parser-948d98ce.cjs → multipart-parser-bac8efc8.cjs} +4 -4
- package/dist/schemas.cjs +3 -1
- package/dist/{spirits-5c9243a1.cjs → spirits-2ab4d673.cjs} +14 -2
- package/dist/spirits.cjs +1 -1
- package/dist/testing-tools.cjs +3 -3
- package/package.json +3 -3
- package/src/core/config/commands.js +41 -0
- package/src/core/config/index.js +4 -1
- package/src/core/templates/app.js +466 -76
- package/src/exports.js +1 -0
- package/src/public.d.ts +5 -2
- package/src/runtime/macros/builder.js +6 -3
- package/src/runtime/schemas/conversation.js +1 -0
- package/src/runtime/schemas/workflow.js +7 -0
- package/src/testing-tools/dev.js +371 -360
- package/src/testing-tools/spirits.js +2 -2
- package/types/index.d.ts +625 -618
- package/types/index.d.ts.map +4 -1
package/types/index.d.ts
CHANGED
|
@@ -387,8 +387,6 @@ declare module '@scout9/app' {
|
|
|
387
387
|
state?: (string | null) | undefined;
|
|
388
388
|
town?: (string | null) | undefined;
|
|
389
389
|
joined?: (string | null) | undefined;
|
|
390
|
-
stripe?: (string | null) | undefined;
|
|
391
|
-
stripeDev?: (string | null) | undefined;
|
|
392
390
|
} & {[key: string]: CustomerValue};
|
|
393
391
|
|
|
394
392
|
export type EntityDefinition = {
|
|
@@ -521,6 +519,10 @@ declare module '@scout9/app' {
|
|
|
521
519
|
entity: string;
|
|
522
520
|
};
|
|
523
521
|
|
|
522
|
+
export type CommandConfiguration = {
|
|
523
|
+
entity: string;
|
|
524
|
+
path: string;
|
|
525
|
+
};
|
|
524
526
|
|
|
525
527
|
export type Scout9ProjectConfig = {
|
|
526
528
|
tag?: string | undefined;
|
|
@@ -568,6 +570,7 @@ declare module '@scout9/app' {
|
|
|
568
570
|
persona?: AgentsConfiguration;
|
|
569
571
|
entities: EntityRootProjectConfiguration[];
|
|
570
572
|
workflows: WorkflowConfiguration[];
|
|
573
|
+
commands: CommandConfiguration[];
|
|
571
574
|
};
|
|
572
575
|
|
|
573
576
|
export type WorkflowEvent = {
|
|
@@ -695,9 +698,10 @@ declare module '@scout9/app/testing-tools' {
|
|
|
695
698
|
* @param props.context - prior conversation context
|
|
696
699
|
* @param props.persona id to use
|
|
697
700
|
* @param props.conversation - existing conversation
|
|
701
|
+
* @param props.command - if provided it will use the command runtime instead of the app runtime
|
|
698
702
|
*
|
|
699
703
|
*/
|
|
700
|
-
constructor({ persona, customer, context, conversation, cwd, src, mode, api, app, project, log }?: {
|
|
704
|
+
constructor({ persona, customer, context, conversation, cwd, src, mode, api, app, command, project, log }?: {
|
|
701
705
|
cwd?: string;
|
|
702
706
|
src?: string;
|
|
703
707
|
mode?: string;
|
|
@@ -707,6 +711,7 @@ declare module '@scout9/app/testing-tools' {
|
|
|
707
711
|
conversation?: any;
|
|
708
712
|
api: any;
|
|
709
713
|
app: any;
|
|
714
|
+
command?: null | undefined;
|
|
710
715
|
project: any;
|
|
711
716
|
log?: boolean | undefined;
|
|
712
717
|
});
|
|
@@ -720,22 +725,6 @@ declare module '@scout9/app/testing-tools' {
|
|
|
720
725
|
messages: any[];
|
|
721
726
|
|
|
722
727
|
context: any;
|
|
723
|
-
|
|
724
|
-
private _project;
|
|
725
|
-
|
|
726
|
-
private _app;
|
|
727
|
-
|
|
728
|
-
private _api;
|
|
729
|
-
|
|
730
|
-
private _cwd;
|
|
731
|
-
|
|
732
|
-
private _src;
|
|
733
|
-
|
|
734
|
-
private _mode;
|
|
735
|
-
|
|
736
|
-
private _loaded;
|
|
737
|
-
|
|
738
|
-
private _personaId;
|
|
739
728
|
/**
|
|
740
729
|
* Loads the test environment
|
|
741
730
|
* @param override - defaults to false, if true, it will override the current loaded state such as the scout9 api, workflow function, and project config
|
|
@@ -773,8 +762,6 @@ declare module '@scout9/app/testing-tools' {
|
|
|
773
762
|
messages?: any[] | undefined;
|
|
774
763
|
context?: any;
|
|
775
764
|
} | undefined): Promise<import('@scout9/admin').GenerateResponse>;
|
|
776
|
-
|
|
777
|
-
private _loadApp;
|
|
778
765
|
#private;
|
|
779
766
|
}
|
|
780
767
|
}
|
|
@@ -3557,15 +3544,15 @@ declare module '@scout9/app/schemas' {
|
|
|
3557
3544
|
*/
|
|
3558
3545
|
export const FollowupBaseSchema: z.ZodObject<{
|
|
3559
3546
|
scheduled: z.ZodNumber;
|
|
3560
|
-
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">]>>>;
|
|
3547
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
3561
3548
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
3562
3549
|
}, "strip", z.ZodTypeAny, {
|
|
3563
3550
|
scheduled: number;
|
|
3564
|
-
cancelIf?: Record<string,
|
|
3551
|
+
cancelIf?: Record<string, any> | undefined;
|
|
3565
3552
|
overrideLock?: boolean | undefined;
|
|
3566
3553
|
}, {
|
|
3567
3554
|
scheduled: number;
|
|
3568
|
-
cancelIf?: Record<string,
|
|
3555
|
+
cancelIf?: Record<string, any> | undefined;
|
|
3569
3556
|
overrideLock?: boolean | undefined;
|
|
3570
3557
|
}>;
|
|
3571
3558
|
/**
|
|
@@ -3573,22 +3560,22 @@ declare module '@scout9/app/schemas' {
|
|
|
3573
3560
|
*/
|
|
3574
3561
|
export const FollowupSchema: z.ZodUnion<[z.ZodObject<{
|
|
3575
3562
|
scheduled: z.ZodNumber;
|
|
3576
|
-
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">]>>>;
|
|
3563
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
3577
3564
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
3578
3565
|
message: z.ZodString;
|
|
3579
3566
|
}, "strip", z.ZodTypeAny, {
|
|
3580
3567
|
message: string;
|
|
3581
3568
|
scheduled: number;
|
|
3582
|
-
cancelIf?: Record<string,
|
|
3569
|
+
cancelIf?: Record<string, any> | undefined;
|
|
3583
3570
|
overrideLock?: boolean | undefined;
|
|
3584
3571
|
}, {
|
|
3585
3572
|
message: string;
|
|
3586
3573
|
scheduled: number;
|
|
3587
|
-
cancelIf?: Record<string,
|
|
3574
|
+
cancelIf?: Record<string, any> | undefined;
|
|
3588
3575
|
overrideLock?: boolean | undefined;
|
|
3589
3576
|
}>, z.ZodObject<{
|
|
3590
3577
|
scheduled: z.ZodNumber;
|
|
3591
|
-
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">]>>>;
|
|
3578
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
3592
3579
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
3593
3580
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
3594
3581
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -3634,7 +3621,7 @@ declare module '@scout9/app/schemas' {
|
|
|
3634
3621
|
id?: string | undefined;
|
|
3635
3622
|
persist?: boolean | undefined;
|
|
3636
3623
|
})[] | undefined);
|
|
3637
|
-
cancelIf?: Record<string,
|
|
3624
|
+
cancelIf?: Record<string, any> | undefined;
|
|
3638
3625
|
overrideLock?: boolean | undefined;
|
|
3639
3626
|
}, {
|
|
3640
3627
|
scheduled: number;
|
|
@@ -3655,7 +3642,7 @@ declare module '@scout9/app/schemas' {
|
|
|
3655
3642
|
id?: string | undefined;
|
|
3656
3643
|
persist?: boolean | undefined;
|
|
3657
3644
|
})[] | undefined);
|
|
3658
|
-
cancelIf?: Record<string,
|
|
3645
|
+
cancelIf?: Record<string, any> | undefined;
|
|
3659
3646
|
overrideLock?: boolean | undefined;
|
|
3660
3647
|
}>]>;
|
|
3661
3648
|
export const WorkflowConfigurationSchema: z.ZodObject<{
|
|
@@ -3678,6 +3665,26 @@ declare module '@scout9/app/schemas' {
|
|
|
3678
3665
|
entity: string;
|
|
3679
3666
|
entities: string[];
|
|
3680
3667
|
}>, "many">;
|
|
3668
|
+
export const CommandSchema: z.ZodObject<{
|
|
3669
|
+
path: z.ZodString;
|
|
3670
|
+
entity: z.ZodString;
|
|
3671
|
+
}, "strip", z.ZodTypeAny, {
|
|
3672
|
+
path: string;
|
|
3673
|
+
entity: string;
|
|
3674
|
+
}, {
|
|
3675
|
+
path: string;
|
|
3676
|
+
entity: string;
|
|
3677
|
+
}>;
|
|
3678
|
+
export const CommandsSchema: z.ZodArray<z.ZodObject<{
|
|
3679
|
+
path: z.ZodString;
|
|
3680
|
+
entity: z.ZodString;
|
|
3681
|
+
}, "strip", z.ZodTypeAny, {
|
|
3682
|
+
path: string;
|
|
3683
|
+
entity: string;
|
|
3684
|
+
}, {
|
|
3685
|
+
path: string;
|
|
3686
|
+
entity: string;
|
|
3687
|
+
}>, "many">;
|
|
3681
3688
|
export const IntentWorkflowEventSchema: z.ZodObject<{
|
|
3682
3689
|
current: z.ZodNullable<z.ZodString>;
|
|
3683
3690
|
flow: z.ZodArray<z.ZodString, "many">;
|
|
@@ -4288,26 +4295,26 @@ declare module '@scout9/app/schemas' {
|
|
|
4288
4295
|
message: z.ZodOptional<z.ZodString>;
|
|
4289
4296
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
4290
4297
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
4291
|
-
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">]>>>;
|
|
4298
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
4292
4299
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
4293
4300
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
4294
4301
|
scheduled: z.ZodNumber;
|
|
4295
|
-
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">]>>>;
|
|
4302
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
4296
4303
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
4297
4304
|
message: z.ZodString;
|
|
4298
4305
|
}, "strip", z.ZodTypeAny, {
|
|
4299
4306
|
message: string;
|
|
4300
4307
|
scheduled: number;
|
|
4301
|
-
cancelIf?: Record<string,
|
|
4308
|
+
cancelIf?: Record<string, any> | undefined;
|
|
4302
4309
|
overrideLock?: boolean | undefined;
|
|
4303
4310
|
}, {
|
|
4304
4311
|
message: string;
|
|
4305
4312
|
scheduled: number;
|
|
4306
|
-
cancelIf?: Record<string,
|
|
4313
|
+
cancelIf?: Record<string, any> | undefined;
|
|
4307
4314
|
overrideLock?: boolean | undefined;
|
|
4308
4315
|
}>, z.ZodObject<{
|
|
4309
4316
|
scheduled: z.ZodNumber;
|
|
4310
|
-
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">]>>>;
|
|
4317
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
4311
4318
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
4312
4319
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
4313
4320
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -4353,7 +4360,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4353
4360
|
id?: string | undefined;
|
|
4354
4361
|
persist?: boolean | undefined;
|
|
4355
4362
|
})[] | undefined);
|
|
4356
|
-
cancelIf?: Record<string,
|
|
4363
|
+
cancelIf?: Record<string, any> | undefined;
|
|
4357
4364
|
overrideLock?: boolean | undefined;
|
|
4358
4365
|
}, {
|
|
4359
4366
|
scheduled: number;
|
|
@@ -4374,7 +4381,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4374
4381
|
id?: string | undefined;
|
|
4375
4382
|
persist?: boolean | undefined;
|
|
4376
4383
|
})[] | undefined);
|
|
4377
|
-
cancelIf?: Record<string,
|
|
4384
|
+
cancelIf?: Record<string, any> | undefined;
|
|
4378
4385
|
overrideLock?: boolean | undefined;
|
|
4379
4386
|
}>]>>;
|
|
4380
4387
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4397,12 +4404,12 @@ declare module '@scout9/app/schemas' {
|
|
|
4397
4404
|
message?: string | undefined;
|
|
4398
4405
|
secondsDelay?: number | undefined;
|
|
4399
4406
|
scheduled?: number | undefined;
|
|
4400
|
-
contextUpsert?: Record<string,
|
|
4407
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
4401
4408
|
resetIntent?: boolean | undefined;
|
|
4402
4409
|
followup?: {
|
|
4403
4410
|
message: string;
|
|
4404
4411
|
scheduled: number;
|
|
4405
|
-
cancelIf?: Record<string,
|
|
4412
|
+
cancelIf?: Record<string, any> | undefined;
|
|
4406
4413
|
overrideLock?: boolean | undefined;
|
|
4407
4414
|
} | {
|
|
4408
4415
|
scheduled: number;
|
|
@@ -4423,7 +4430,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4423
4430
|
id?: string | undefined;
|
|
4424
4431
|
persist?: boolean | undefined;
|
|
4425
4432
|
})[] | undefined);
|
|
4426
|
-
cancelIf?: Record<string,
|
|
4433
|
+
cancelIf?: Record<string, any> | undefined;
|
|
4427
4434
|
overrideLock?: boolean | undefined;
|
|
4428
4435
|
} | undefined;
|
|
4429
4436
|
}, {
|
|
@@ -4446,12 +4453,12 @@ declare module '@scout9/app/schemas' {
|
|
|
4446
4453
|
message?: string | undefined;
|
|
4447
4454
|
secondsDelay?: number | undefined;
|
|
4448
4455
|
scheduled?: number | undefined;
|
|
4449
|
-
contextUpsert?: Record<string,
|
|
4456
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
4450
4457
|
resetIntent?: boolean | undefined;
|
|
4451
4458
|
followup?: {
|
|
4452
4459
|
message: string;
|
|
4453
4460
|
scheduled: number;
|
|
4454
|
-
cancelIf?: Record<string,
|
|
4461
|
+
cancelIf?: Record<string, any> | undefined;
|
|
4455
4462
|
overrideLock?: boolean | undefined;
|
|
4456
4463
|
} | {
|
|
4457
4464
|
scheduled: number;
|
|
@@ -4472,7 +4479,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4472
4479
|
id?: string | undefined;
|
|
4473
4480
|
persist?: boolean | undefined;
|
|
4474
4481
|
})[] | undefined);
|
|
4475
|
-
cancelIf?: Record<string,
|
|
4482
|
+
cancelIf?: Record<string, any> | undefined;
|
|
4476
4483
|
overrideLock?: boolean | undefined;
|
|
4477
4484
|
} | undefined;
|
|
4478
4485
|
}>;
|
|
@@ -4523,26 +4530,26 @@ declare module '@scout9/app/schemas' {
|
|
|
4523
4530
|
}>]>, "many">]>>;
|
|
4524
4531
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4525
4532
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
4526
|
-
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">]>>>;
|
|
4533
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
4527
4534
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
4528
4535
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
4529
4536
|
scheduled: z.ZodNumber;
|
|
4530
|
-
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">]>>>;
|
|
4537
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
4531
4538
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
4532
4539
|
message: z.ZodString;
|
|
4533
4540
|
}, "strip", z.ZodTypeAny, {
|
|
4534
4541
|
message: string;
|
|
4535
4542
|
scheduled: number;
|
|
4536
|
-
cancelIf?: Record<string,
|
|
4543
|
+
cancelIf?: Record<string, any> | undefined;
|
|
4537
4544
|
overrideLock?: boolean | undefined;
|
|
4538
4545
|
}, {
|
|
4539
4546
|
message: string;
|
|
4540
4547
|
scheduled: number;
|
|
4541
|
-
cancelIf?: Record<string,
|
|
4548
|
+
cancelIf?: Record<string, any> | undefined;
|
|
4542
4549
|
overrideLock?: boolean | undefined;
|
|
4543
4550
|
}>, z.ZodObject<{
|
|
4544
4551
|
scheduled: z.ZodNumber;
|
|
4545
|
-
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">]>>>;
|
|
4552
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
4546
4553
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
4547
4554
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
4548
4555
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -4588,7 +4595,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4588
4595
|
id?: string | undefined;
|
|
4589
4596
|
persist?: boolean | undefined;
|
|
4590
4597
|
})[] | undefined);
|
|
4591
|
-
cancelIf?: Record<string,
|
|
4598
|
+
cancelIf?: Record<string, any> | undefined;
|
|
4592
4599
|
overrideLock?: boolean | undefined;
|
|
4593
4600
|
}, {
|
|
4594
4601
|
scheduled: number;
|
|
@@ -4609,7 +4616,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4609
4616
|
id?: string | undefined;
|
|
4610
4617
|
persist?: boolean | undefined;
|
|
4611
4618
|
})[] | undefined);
|
|
4612
|
-
cancelIf?: Record<string,
|
|
4619
|
+
cancelIf?: Record<string, any> | undefined;
|
|
4613
4620
|
overrideLock?: boolean | undefined;
|
|
4614
4621
|
}>]>>;
|
|
4615
4622
|
anticipate: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
@@ -4658,26 +4665,26 @@ declare module '@scout9/app/schemas' {
|
|
|
4658
4665
|
message: z.ZodOptional<z.ZodString>;
|
|
4659
4666
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
4660
4667
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
4661
|
-
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">]>>>;
|
|
4668
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
4662
4669
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
4663
4670
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
4664
4671
|
scheduled: z.ZodNumber;
|
|
4665
|
-
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">]>>>;
|
|
4672
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
4666
4673
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
4667
4674
|
message: z.ZodString;
|
|
4668
4675
|
}, "strip", z.ZodTypeAny, {
|
|
4669
4676
|
message: string;
|
|
4670
4677
|
scheduled: number;
|
|
4671
|
-
cancelIf?: Record<string,
|
|
4678
|
+
cancelIf?: Record<string, any> | undefined;
|
|
4672
4679
|
overrideLock?: boolean | undefined;
|
|
4673
4680
|
}, {
|
|
4674
4681
|
message: string;
|
|
4675
4682
|
scheduled: number;
|
|
4676
|
-
cancelIf?: Record<string,
|
|
4683
|
+
cancelIf?: Record<string, any> | undefined;
|
|
4677
4684
|
overrideLock?: boolean | undefined;
|
|
4678
4685
|
}>, z.ZodObject<{
|
|
4679
4686
|
scheduled: z.ZodNumber;
|
|
4680
|
-
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">]>>>;
|
|
4687
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
4681
4688
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
4682
4689
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
4683
4690
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -4723,7 +4730,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4723
4730
|
id?: string | undefined;
|
|
4724
4731
|
persist?: boolean | undefined;
|
|
4725
4732
|
})[] | undefined);
|
|
4726
|
-
cancelIf?: Record<string,
|
|
4733
|
+
cancelIf?: Record<string, any> | undefined;
|
|
4727
4734
|
overrideLock?: boolean | undefined;
|
|
4728
4735
|
}, {
|
|
4729
4736
|
scheduled: number;
|
|
@@ -4744,7 +4751,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4744
4751
|
id?: string | undefined;
|
|
4745
4752
|
persist?: boolean | undefined;
|
|
4746
4753
|
})[] | undefined);
|
|
4747
|
-
cancelIf?: Record<string,
|
|
4754
|
+
cancelIf?: Record<string, any> | undefined;
|
|
4748
4755
|
overrideLock?: boolean | undefined;
|
|
4749
4756
|
}>]>>;
|
|
4750
4757
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4767,12 +4774,12 @@ declare module '@scout9/app/schemas' {
|
|
|
4767
4774
|
message?: string | undefined;
|
|
4768
4775
|
secondsDelay?: number | undefined;
|
|
4769
4776
|
scheduled?: number | undefined;
|
|
4770
|
-
contextUpsert?: Record<string,
|
|
4777
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
4771
4778
|
resetIntent?: boolean | undefined;
|
|
4772
4779
|
followup?: {
|
|
4773
4780
|
message: string;
|
|
4774
4781
|
scheduled: number;
|
|
4775
|
-
cancelIf?: Record<string,
|
|
4782
|
+
cancelIf?: Record<string, any> | undefined;
|
|
4776
4783
|
overrideLock?: boolean | undefined;
|
|
4777
4784
|
} | {
|
|
4778
4785
|
scheduled: number;
|
|
@@ -4793,7 +4800,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4793
4800
|
id?: string | undefined;
|
|
4794
4801
|
persist?: boolean | undefined;
|
|
4795
4802
|
})[] | undefined);
|
|
4796
|
-
cancelIf?: Record<string,
|
|
4803
|
+
cancelIf?: Record<string, any> | undefined;
|
|
4797
4804
|
overrideLock?: boolean | undefined;
|
|
4798
4805
|
} | undefined;
|
|
4799
4806
|
}, {
|
|
@@ -4816,12 +4823,12 @@ declare module '@scout9/app/schemas' {
|
|
|
4816
4823
|
message?: string | undefined;
|
|
4817
4824
|
secondsDelay?: number | undefined;
|
|
4818
4825
|
scheduled?: number | undefined;
|
|
4819
|
-
contextUpsert?: Record<string,
|
|
4826
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
4820
4827
|
resetIntent?: boolean | undefined;
|
|
4821
4828
|
followup?: {
|
|
4822
4829
|
message: string;
|
|
4823
4830
|
scheduled: number;
|
|
4824
|
-
cancelIf?: Record<string,
|
|
4831
|
+
cancelIf?: Record<string, any> | undefined;
|
|
4825
4832
|
overrideLock?: boolean | undefined;
|
|
4826
4833
|
} | {
|
|
4827
4834
|
scheduled: number;
|
|
@@ -4842,7 +4849,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4842
4849
|
id?: string | undefined;
|
|
4843
4850
|
persist?: boolean | undefined;
|
|
4844
4851
|
})[] | undefined);
|
|
4845
|
-
cancelIf?: Record<string,
|
|
4852
|
+
cancelIf?: Record<string, any> | undefined;
|
|
4846
4853
|
overrideLock?: boolean | undefined;
|
|
4847
4854
|
} | undefined;
|
|
4848
4855
|
}>;
|
|
@@ -4890,26 +4897,26 @@ declare module '@scout9/app/schemas' {
|
|
|
4890
4897
|
message: z.ZodOptional<z.ZodString>;
|
|
4891
4898
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
4892
4899
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
4893
|
-
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">]>>>;
|
|
4900
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
4894
4901
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
4895
4902
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
4896
4903
|
scheduled: z.ZodNumber;
|
|
4897
|
-
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">]>>>;
|
|
4904
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
4898
4905
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
4899
4906
|
message: z.ZodString;
|
|
4900
4907
|
}, "strip", z.ZodTypeAny, {
|
|
4901
4908
|
message: string;
|
|
4902
4909
|
scheduled: number;
|
|
4903
|
-
cancelIf?: Record<string,
|
|
4910
|
+
cancelIf?: Record<string, any> | undefined;
|
|
4904
4911
|
overrideLock?: boolean | undefined;
|
|
4905
4912
|
}, {
|
|
4906
4913
|
message: string;
|
|
4907
4914
|
scheduled: number;
|
|
4908
|
-
cancelIf?: Record<string,
|
|
4915
|
+
cancelIf?: Record<string, any> | undefined;
|
|
4909
4916
|
overrideLock?: boolean | undefined;
|
|
4910
4917
|
}>, z.ZodObject<{
|
|
4911
4918
|
scheduled: z.ZodNumber;
|
|
4912
|
-
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">]>>>;
|
|
4919
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
4913
4920
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
4914
4921
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
4915
4922
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -4955,7 +4962,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4955
4962
|
id?: string | undefined;
|
|
4956
4963
|
persist?: boolean | undefined;
|
|
4957
4964
|
})[] | undefined);
|
|
4958
|
-
cancelIf?: Record<string,
|
|
4965
|
+
cancelIf?: Record<string, any> | undefined;
|
|
4959
4966
|
overrideLock?: boolean | undefined;
|
|
4960
4967
|
}, {
|
|
4961
4968
|
scheduled: number;
|
|
@@ -4976,7 +4983,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4976
4983
|
id?: string | undefined;
|
|
4977
4984
|
persist?: boolean | undefined;
|
|
4978
4985
|
})[] | undefined);
|
|
4979
|
-
cancelIf?: Record<string,
|
|
4986
|
+
cancelIf?: Record<string, any> | undefined;
|
|
4980
4987
|
overrideLock?: boolean | undefined;
|
|
4981
4988
|
}>]>>;
|
|
4982
4989
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4999,12 +5006,12 @@ declare module '@scout9/app/schemas' {
|
|
|
4999
5006
|
message?: string | undefined;
|
|
5000
5007
|
secondsDelay?: number | undefined;
|
|
5001
5008
|
scheduled?: number | undefined;
|
|
5002
|
-
contextUpsert?: Record<string,
|
|
5009
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
5003
5010
|
resetIntent?: boolean | undefined;
|
|
5004
5011
|
followup?: {
|
|
5005
5012
|
message: string;
|
|
5006
5013
|
scheduled: number;
|
|
5007
|
-
cancelIf?: Record<string,
|
|
5014
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5008
5015
|
overrideLock?: boolean | undefined;
|
|
5009
5016
|
} | {
|
|
5010
5017
|
scheduled: number;
|
|
@@ -5025,7 +5032,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5025
5032
|
id?: string | undefined;
|
|
5026
5033
|
persist?: boolean | undefined;
|
|
5027
5034
|
})[] | undefined);
|
|
5028
|
-
cancelIf?: Record<string,
|
|
5035
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5029
5036
|
overrideLock?: boolean | undefined;
|
|
5030
5037
|
} | undefined;
|
|
5031
5038
|
}, {
|
|
@@ -5048,12 +5055,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5048
5055
|
message?: string | undefined;
|
|
5049
5056
|
secondsDelay?: number | undefined;
|
|
5050
5057
|
scheduled?: number | undefined;
|
|
5051
|
-
contextUpsert?: Record<string,
|
|
5058
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
5052
5059
|
resetIntent?: boolean | undefined;
|
|
5053
5060
|
followup?: {
|
|
5054
5061
|
message: string;
|
|
5055
5062
|
scheduled: number;
|
|
5056
|
-
cancelIf?: Record<string,
|
|
5063
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5057
5064
|
overrideLock?: boolean | undefined;
|
|
5058
5065
|
} | {
|
|
5059
5066
|
scheduled: number;
|
|
@@ -5074,7 +5081,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5074
5081
|
id?: string | undefined;
|
|
5075
5082
|
persist?: boolean | undefined;
|
|
5076
5083
|
})[] | undefined);
|
|
5077
|
-
cancelIf?: Record<string,
|
|
5084
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5078
5085
|
overrideLock?: boolean | undefined;
|
|
5079
5086
|
} | undefined;
|
|
5080
5087
|
}>;
|
|
@@ -5100,12 +5107,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5100
5107
|
message?: string | undefined;
|
|
5101
5108
|
secondsDelay?: number | undefined;
|
|
5102
5109
|
scheduled?: number | undefined;
|
|
5103
|
-
contextUpsert?: Record<string,
|
|
5110
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
5104
5111
|
resetIntent?: boolean | undefined;
|
|
5105
5112
|
followup?: {
|
|
5106
5113
|
message: string;
|
|
5107
5114
|
scheduled: number;
|
|
5108
|
-
cancelIf?: Record<string,
|
|
5115
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5109
5116
|
overrideLock?: boolean | undefined;
|
|
5110
5117
|
} | {
|
|
5111
5118
|
scheduled: number;
|
|
@@ -5126,7 +5133,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5126
5133
|
id?: string | undefined;
|
|
5127
5134
|
persist?: boolean | undefined;
|
|
5128
5135
|
})[] | undefined);
|
|
5129
|
-
cancelIf?: Record<string,
|
|
5136
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5130
5137
|
overrideLock?: boolean | undefined;
|
|
5131
5138
|
} | undefined;
|
|
5132
5139
|
};
|
|
@@ -5150,12 +5157,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5150
5157
|
message?: string | undefined;
|
|
5151
5158
|
secondsDelay?: number | undefined;
|
|
5152
5159
|
scheduled?: number | undefined;
|
|
5153
|
-
contextUpsert?: Record<string,
|
|
5160
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
5154
5161
|
resetIntent?: boolean | undefined;
|
|
5155
5162
|
followup?: {
|
|
5156
5163
|
message: string;
|
|
5157
5164
|
scheduled: number;
|
|
5158
|
-
cancelIf?: Record<string,
|
|
5165
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5159
5166
|
overrideLock?: boolean | undefined;
|
|
5160
5167
|
} | {
|
|
5161
5168
|
scheduled: number;
|
|
@@ -5176,7 +5183,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5176
5183
|
id?: string | undefined;
|
|
5177
5184
|
persist?: boolean | undefined;
|
|
5178
5185
|
})[] | undefined);
|
|
5179
|
-
cancelIf?: Record<string,
|
|
5186
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5180
5187
|
overrideLock?: boolean | undefined;
|
|
5181
5188
|
} | undefined;
|
|
5182
5189
|
};
|
|
@@ -5202,12 +5209,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5202
5209
|
message?: string | undefined;
|
|
5203
5210
|
secondsDelay?: number | undefined;
|
|
5204
5211
|
scheduled?: number | undefined;
|
|
5205
|
-
contextUpsert?: Record<string,
|
|
5212
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
5206
5213
|
resetIntent?: boolean | undefined;
|
|
5207
5214
|
followup?: {
|
|
5208
5215
|
message: string;
|
|
5209
5216
|
scheduled: number;
|
|
5210
|
-
cancelIf?: Record<string,
|
|
5217
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5211
5218
|
overrideLock?: boolean | undefined;
|
|
5212
5219
|
} | {
|
|
5213
5220
|
scheduled: number;
|
|
@@ -5228,7 +5235,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5228
5235
|
id?: string | undefined;
|
|
5229
5236
|
persist?: boolean | undefined;
|
|
5230
5237
|
})[] | undefined);
|
|
5231
|
-
cancelIf?: Record<string,
|
|
5238
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5232
5239
|
overrideLock?: boolean | undefined;
|
|
5233
5240
|
} | undefined;
|
|
5234
5241
|
};
|
|
@@ -5252,12 +5259,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5252
5259
|
message?: string | undefined;
|
|
5253
5260
|
secondsDelay?: number | undefined;
|
|
5254
5261
|
scheduled?: number | undefined;
|
|
5255
|
-
contextUpsert?: Record<string,
|
|
5262
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
5256
5263
|
resetIntent?: boolean | undefined;
|
|
5257
5264
|
followup?: {
|
|
5258
5265
|
message: string;
|
|
5259
5266
|
scheduled: number;
|
|
5260
|
-
cancelIf?: Record<string,
|
|
5267
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5261
5268
|
overrideLock?: boolean | undefined;
|
|
5262
5269
|
} | {
|
|
5263
5270
|
scheduled: number;
|
|
@@ -5278,7 +5285,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5278
5285
|
id?: string | undefined;
|
|
5279
5286
|
persist?: boolean | undefined;
|
|
5280
5287
|
})[] | undefined);
|
|
5281
|
-
cancelIf?: Record<string,
|
|
5288
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5282
5289
|
overrideLock?: boolean | undefined;
|
|
5283
5290
|
} | undefined;
|
|
5284
5291
|
};
|
|
@@ -5326,26 +5333,26 @@ declare module '@scout9/app/schemas' {
|
|
|
5326
5333
|
}>]>, "many">]>>;
|
|
5327
5334
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5328
5335
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
5329
|
-
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">]>>>;
|
|
5336
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
5330
5337
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
5331
5338
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
5332
5339
|
scheduled: z.ZodNumber;
|
|
5333
|
-
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">]>>>;
|
|
5340
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
5334
5341
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
5335
5342
|
message: z.ZodString;
|
|
5336
5343
|
}, "strip", z.ZodTypeAny, {
|
|
5337
5344
|
message: string;
|
|
5338
5345
|
scheduled: number;
|
|
5339
|
-
cancelIf?: Record<string,
|
|
5346
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5340
5347
|
overrideLock?: boolean | undefined;
|
|
5341
5348
|
}, {
|
|
5342
5349
|
message: string;
|
|
5343
5350
|
scheduled: number;
|
|
5344
|
-
cancelIf?: Record<string,
|
|
5351
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5345
5352
|
overrideLock?: boolean | undefined;
|
|
5346
5353
|
}>, z.ZodObject<{
|
|
5347
5354
|
scheduled: z.ZodNumber;
|
|
5348
|
-
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">]>>>;
|
|
5355
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
5349
5356
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
5350
5357
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
5351
5358
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -5391,7 +5398,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5391
5398
|
id?: string | undefined;
|
|
5392
5399
|
persist?: boolean | undefined;
|
|
5393
5400
|
})[] | undefined);
|
|
5394
|
-
cancelIf?: Record<string,
|
|
5401
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5395
5402
|
overrideLock?: boolean | undefined;
|
|
5396
5403
|
}, {
|
|
5397
5404
|
scheduled: number;
|
|
@@ -5412,7 +5419,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5412
5419
|
id?: string | undefined;
|
|
5413
5420
|
persist?: boolean | undefined;
|
|
5414
5421
|
})[] | undefined);
|
|
5415
|
-
cancelIf?: Record<string,
|
|
5422
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5416
5423
|
overrideLock?: boolean | undefined;
|
|
5417
5424
|
}>]>>;
|
|
5418
5425
|
keywords: z.ZodArray<z.ZodString, "many">;
|
|
@@ -5437,12 +5444,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5437
5444
|
})[] | undefined;
|
|
5438
5445
|
removeInstructions?: string[] | undefined;
|
|
5439
5446
|
secondsDelay?: number | undefined;
|
|
5440
|
-
contextUpsert?: Record<string,
|
|
5447
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
5441
5448
|
resetIntent?: boolean | undefined;
|
|
5442
5449
|
followup?: {
|
|
5443
5450
|
message: string;
|
|
5444
5451
|
scheduled: number;
|
|
5445
|
-
cancelIf?: Record<string,
|
|
5452
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5446
5453
|
overrideLock?: boolean | undefined;
|
|
5447
5454
|
} | {
|
|
5448
5455
|
scheduled: number;
|
|
@@ -5463,7 +5470,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5463
5470
|
id?: string | undefined;
|
|
5464
5471
|
persist?: boolean | undefined;
|
|
5465
5472
|
})[] | undefined);
|
|
5466
|
-
cancelIf?: Record<string,
|
|
5473
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5467
5474
|
overrideLock?: boolean | undefined;
|
|
5468
5475
|
} | undefined;
|
|
5469
5476
|
}, {
|
|
@@ -5487,12 +5494,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5487
5494
|
})[] | undefined;
|
|
5488
5495
|
removeInstructions?: string[] | undefined;
|
|
5489
5496
|
secondsDelay?: number | undefined;
|
|
5490
|
-
contextUpsert?: Record<string,
|
|
5497
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
5491
5498
|
resetIntent?: boolean | undefined;
|
|
5492
5499
|
followup?: {
|
|
5493
5500
|
message: string;
|
|
5494
5501
|
scheduled: number;
|
|
5495
|
-
cancelIf?: Record<string,
|
|
5502
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5496
5503
|
overrideLock?: boolean | undefined;
|
|
5497
5504
|
} | {
|
|
5498
5505
|
scheduled: number;
|
|
@@ -5513,7 +5520,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5513
5520
|
id?: string | undefined;
|
|
5514
5521
|
persist?: boolean | undefined;
|
|
5515
5522
|
})[] | undefined);
|
|
5516
|
-
cancelIf?: Record<string,
|
|
5523
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5517
5524
|
overrideLock?: boolean | undefined;
|
|
5518
5525
|
} | undefined;
|
|
5519
5526
|
}>, "many">]>>;
|
|
@@ -5537,12 +5544,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5537
5544
|
})[] | undefined;
|
|
5538
5545
|
removeInstructions?: string[] | undefined;
|
|
5539
5546
|
secondsDelay?: number | undefined;
|
|
5540
|
-
contextUpsert?: Record<string,
|
|
5547
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
5541
5548
|
resetIntent?: boolean | undefined;
|
|
5542
5549
|
followup?: {
|
|
5543
5550
|
message: string;
|
|
5544
5551
|
scheduled: number;
|
|
5545
|
-
cancelIf?: Record<string,
|
|
5552
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5546
5553
|
overrideLock?: boolean | undefined;
|
|
5547
5554
|
} | {
|
|
5548
5555
|
scheduled: number;
|
|
@@ -5563,7 +5570,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5563
5570
|
id?: string | undefined;
|
|
5564
5571
|
persist?: boolean | undefined;
|
|
5565
5572
|
})[] | undefined);
|
|
5566
|
-
cancelIf?: Record<string,
|
|
5573
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5567
5574
|
overrideLock?: boolean | undefined;
|
|
5568
5575
|
} | undefined;
|
|
5569
5576
|
anticipate?: {
|
|
@@ -5588,12 +5595,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5588
5595
|
message?: string | undefined;
|
|
5589
5596
|
secondsDelay?: number | undefined;
|
|
5590
5597
|
scheduled?: number | undefined;
|
|
5591
|
-
contextUpsert?: Record<string,
|
|
5598
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
5592
5599
|
resetIntent?: boolean | undefined;
|
|
5593
5600
|
followup?: {
|
|
5594
5601
|
message: string;
|
|
5595
5602
|
scheduled: number;
|
|
5596
|
-
cancelIf?: Record<string,
|
|
5603
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5597
5604
|
overrideLock?: boolean | undefined;
|
|
5598
5605
|
} | {
|
|
5599
5606
|
scheduled: number;
|
|
@@ -5614,7 +5621,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5614
5621
|
id?: string | undefined;
|
|
5615
5622
|
persist?: boolean | undefined;
|
|
5616
5623
|
})[] | undefined);
|
|
5617
|
-
cancelIf?: Record<string,
|
|
5624
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5618
5625
|
overrideLock?: boolean | undefined;
|
|
5619
5626
|
} | undefined;
|
|
5620
5627
|
};
|
|
@@ -5638,12 +5645,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5638
5645
|
message?: string | undefined;
|
|
5639
5646
|
secondsDelay?: number | undefined;
|
|
5640
5647
|
scheduled?: number | undefined;
|
|
5641
|
-
contextUpsert?: Record<string,
|
|
5648
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
5642
5649
|
resetIntent?: boolean | undefined;
|
|
5643
5650
|
followup?: {
|
|
5644
5651
|
message: string;
|
|
5645
5652
|
scheduled: number;
|
|
5646
|
-
cancelIf?: Record<string,
|
|
5653
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5647
5654
|
overrideLock?: boolean | undefined;
|
|
5648
5655
|
} | {
|
|
5649
5656
|
scheduled: number;
|
|
@@ -5664,7 +5671,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5664
5671
|
id?: string | undefined;
|
|
5665
5672
|
persist?: boolean | undefined;
|
|
5666
5673
|
})[] | undefined);
|
|
5667
|
-
cancelIf?: Record<string,
|
|
5674
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5668
5675
|
overrideLock?: boolean | undefined;
|
|
5669
5676
|
} | undefined;
|
|
5670
5677
|
};
|
|
@@ -5689,12 +5696,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5689
5696
|
})[] | undefined;
|
|
5690
5697
|
removeInstructions?: string[] | undefined;
|
|
5691
5698
|
secondsDelay?: number | undefined;
|
|
5692
|
-
contextUpsert?: Record<string,
|
|
5699
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
5693
5700
|
resetIntent?: boolean | undefined;
|
|
5694
5701
|
followup?: {
|
|
5695
5702
|
message: string;
|
|
5696
5703
|
scheduled: number;
|
|
5697
|
-
cancelIf?: Record<string,
|
|
5704
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5698
5705
|
overrideLock?: boolean | undefined;
|
|
5699
5706
|
} | {
|
|
5700
5707
|
scheduled: number;
|
|
@@ -5715,7 +5722,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5715
5722
|
id?: string | undefined;
|
|
5716
5723
|
persist?: boolean | undefined;
|
|
5717
5724
|
})[] | undefined);
|
|
5718
|
-
cancelIf?: Record<string,
|
|
5725
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5719
5726
|
overrideLock?: boolean | undefined;
|
|
5720
5727
|
} | undefined;
|
|
5721
5728
|
}[] | undefined;
|
|
@@ -5739,12 +5746,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5739
5746
|
})[] | undefined;
|
|
5740
5747
|
removeInstructions?: string[] | undefined;
|
|
5741
5748
|
secondsDelay?: number | undefined;
|
|
5742
|
-
contextUpsert?: Record<string,
|
|
5749
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
5743
5750
|
resetIntent?: boolean | undefined;
|
|
5744
5751
|
followup?: {
|
|
5745
5752
|
message: string;
|
|
5746
5753
|
scheduled: number;
|
|
5747
|
-
cancelIf?: Record<string,
|
|
5754
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5748
5755
|
overrideLock?: boolean | undefined;
|
|
5749
5756
|
} | {
|
|
5750
5757
|
scheduled: number;
|
|
@@ -5765,7 +5772,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5765
5772
|
id?: string | undefined;
|
|
5766
5773
|
persist?: boolean | undefined;
|
|
5767
5774
|
})[] | undefined);
|
|
5768
|
-
cancelIf?: Record<string,
|
|
5775
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5769
5776
|
overrideLock?: boolean | undefined;
|
|
5770
5777
|
} | undefined;
|
|
5771
5778
|
anticipate?: {
|
|
@@ -5790,12 +5797,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5790
5797
|
message?: string | undefined;
|
|
5791
5798
|
secondsDelay?: number | undefined;
|
|
5792
5799
|
scheduled?: number | undefined;
|
|
5793
|
-
contextUpsert?: Record<string,
|
|
5800
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
5794
5801
|
resetIntent?: boolean | undefined;
|
|
5795
5802
|
followup?: {
|
|
5796
5803
|
message: string;
|
|
5797
5804
|
scheduled: number;
|
|
5798
|
-
cancelIf?: Record<string,
|
|
5805
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5799
5806
|
overrideLock?: boolean | undefined;
|
|
5800
5807
|
} | {
|
|
5801
5808
|
scheduled: number;
|
|
@@ -5816,7 +5823,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5816
5823
|
id?: string | undefined;
|
|
5817
5824
|
persist?: boolean | undefined;
|
|
5818
5825
|
})[] | undefined);
|
|
5819
|
-
cancelIf?: Record<string,
|
|
5826
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5820
5827
|
overrideLock?: boolean | undefined;
|
|
5821
5828
|
} | undefined;
|
|
5822
5829
|
};
|
|
@@ -5840,12 +5847,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5840
5847
|
message?: string | undefined;
|
|
5841
5848
|
secondsDelay?: number | undefined;
|
|
5842
5849
|
scheduled?: number | undefined;
|
|
5843
|
-
contextUpsert?: Record<string,
|
|
5850
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
5844
5851
|
resetIntent?: boolean | undefined;
|
|
5845
5852
|
followup?: {
|
|
5846
5853
|
message: string;
|
|
5847
5854
|
scheduled: number;
|
|
5848
|
-
cancelIf?: Record<string,
|
|
5855
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5849
5856
|
overrideLock?: boolean | undefined;
|
|
5850
5857
|
} | {
|
|
5851
5858
|
scheduled: number;
|
|
@@ -5866,7 +5873,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5866
5873
|
id?: string | undefined;
|
|
5867
5874
|
persist?: boolean | undefined;
|
|
5868
5875
|
})[] | undefined);
|
|
5869
|
-
cancelIf?: Record<string,
|
|
5876
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5870
5877
|
overrideLock?: boolean | undefined;
|
|
5871
5878
|
} | undefined;
|
|
5872
5879
|
};
|
|
@@ -5891,12 +5898,12 @@ declare module '@scout9/app/schemas' {
|
|
|
5891
5898
|
})[] | undefined;
|
|
5892
5899
|
removeInstructions?: string[] | undefined;
|
|
5893
5900
|
secondsDelay?: number | undefined;
|
|
5894
|
-
contextUpsert?: Record<string,
|
|
5901
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
5895
5902
|
resetIntent?: boolean | undefined;
|
|
5896
5903
|
followup?: {
|
|
5897
5904
|
message: string;
|
|
5898
5905
|
scheduled: number;
|
|
5899
|
-
cancelIf?: Record<string,
|
|
5906
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5900
5907
|
overrideLock?: boolean | undefined;
|
|
5901
5908
|
} | {
|
|
5902
5909
|
scheduled: number;
|
|
@@ -5917,7 +5924,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5917
5924
|
id?: string | undefined;
|
|
5918
5925
|
persist?: boolean | undefined;
|
|
5919
5926
|
})[] | undefined);
|
|
5920
|
-
cancelIf?: Record<string,
|
|
5927
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5921
5928
|
overrideLock?: boolean | undefined;
|
|
5922
5929
|
} | undefined;
|
|
5923
5930
|
}[] | undefined;
|
|
@@ -5969,26 +5976,26 @@ declare module '@scout9/app/schemas' {
|
|
|
5969
5976
|
}>]>, "many">]>>;
|
|
5970
5977
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5971
5978
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
5972
|
-
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">]>>>;
|
|
5979
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
5973
5980
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
5974
5981
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
5975
5982
|
scheduled: z.ZodNumber;
|
|
5976
|
-
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">]>>>;
|
|
5983
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
5977
5984
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
5978
5985
|
message: z.ZodString;
|
|
5979
5986
|
}, "strip", z.ZodTypeAny, {
|
|
5980
5987
|
message: string;
|
|
5981
5988
|
scheduled: number;
|
|
5982
|
-
cancelIf?: Record<string,
|
|
5989
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5983
5990
|
overrideLock?: boolean | undefined;
|
|
5984
5991
|
}, {
|
|
5985
5992
|
message: string;
|
|
5986
5993
|
scheduled: number;
|
|
5987
|
-
cancelIf?: Record<string,
|
|
5994
|
+
cancelIf?: Record<string, any> | undefined;
|
|
5988
5995
|
overrideLock?: boolean | undefined;
|
|
5989
5996
|
}>, z.ZodObject<{
|
|
5990
5997
|
scheduled: z.ZodNumber;
|
|
5991
|
-
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">]>>>;
|
|
5998
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
5992
5999
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
5993
6000
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
5994
6001
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -6034,7 +6041,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6034
6041
|
id?: string | undefined;
|
|
6035
6042
|
persist?: boolean | undefined;
|
|
6036
6043
|
})[] | undefined);
|
|
6037
|
-
cancelIf?: Record<string,
|
|
6044
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6038
6045
|
overrideLock?: boolean | undefined;
|
|
6039
6046
|
}, {
|
|
6040
6047
|
scheduled: number;
|
|
@@ -6055,7 +6062,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6055
6062
|
id?: string | undefined;
|
|
6056
6063
|
persist?: boolean | undefined;
|
|
6057
6064
|
})[] | undefined);
|
|
6058
|
-
cancelIf?: Record<string,
|
|
6065
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6059
6066
|
overrideLock?: boolean | undefined;
|
|
6060
6067
|
}>]>>;
|
|
6061
6068
|
anticipate: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
@@ -6104,26 +6111,26 @@ declare module '@scout9/app/schemas' {
|
|
|
6104
6111
|
message: z.ZodOptional<z.ZodString>;
|
|
6105
6112
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
6106
6113
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
6107
|
-
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">]>>>;
|
|
6114
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
6108
6115
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
6109
6116
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
6110
6117
|
scheduled: z.ZodNumber;
|
|
6111
|
-
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">]>>>;
|
|
6118
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
6112
6119
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
6113
6120
|
message: z.ZodString;
|
|
6114
6121
|
}, "strip", z.ZodTypeAny, {
|
|
6115
6122
|
message: string;
|
|
6116
6123
|
scheduled: number;
|
|
6117
|
-
cancelIf?: Record<string,
|
|
6124
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6118
6125
|
overrideLock?: boolean | undefined;
|
|
6119
6126
|
}, {
|
|
6120
6127
|
message: string;
|
|
6121
6128
|
scheduled: number;
|
|
6122
|
-
cancelIf?: Record<string,
|
|
6129
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6123
6130
|
overrideLock?: boolean | undefined;
|
|
6124
6131
|
}>, z.ZodObject<{
|
|
6125
6132
|
scheduled: z.ZodNumber;
|
|
6126
|
-
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">]>>>;
|
|
6133
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
6127
6134
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
6128
6135
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
6129
6136
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -6169,7 +6176,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6169
6176
|
id?: string | undefined;
|
|
6170
6177
|
persist?: boolean | undefined;
|
|
6171
6178
|
})[] | undefined);
|
|
6172
|
-
cancelIf?: Record<string,
|
|
6179
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6173
6180
|
overrideLock?: boolean | undefined;
|
|
6174
6181
|
}, {
|
|
6175
6182
|
scheduled: number;
|
|
@@ -6190,7 +6197,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6190
6197
|
id?: string | undefined;
|
|
6191
6198
|
persist?: boolean | undefined;
|
|
6192
6199
|
})[] | undefined);
|
|
6193
|
-
cancelIf?: Record<string,
|
|
6200
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6194
6201
|
overrideLock?: boolean | undefined;
|
|
6195
6202
|
}>]>>;
|
|
6196
6203
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6213,12 +6220,12 @@ declare module '@scout9/app/schemas' {
|
|
|
6213
6220
|
message?: string | undefined;
|
|
6214
6221
|
secondsDelay?: number | undefined;
|
|
6215
6222
|
scheduled?: number | undefined;
|
|
6216
|
-
contextUpsert?: Record<string,
|
|
6223
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
6217
6224
|
resetIntent?: boolean | undefined;
|
|
6218
6225
|
followup?: {
|
|
6219
6226
|
message: string;
|
|
6220
6227
|
scheduled: number;
|
|
6221
|
-
cancelIf?: Record<string,
|
|
6228
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6222
6229
|
overrideLock?: boolean | undefined;
|
|
6223
6230
|
} | {
|
|
6224
6231
|
scheduled: number;
|
|
@@ -6239,7 +6246,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6239
6246
|
id?: string | undefined;
|
|
6240
6247
|
persist?: boolean | undefined;
|
|
6241
6248
|
})[] | undefined);
|
|
6242
|
-
cancelIf?: Record<string,
|
|
6249
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6243
6250
|
overrideLock?: boolean | undefined;
|
|
6244
6251
|
} | undefined;
|
|
6245
6252
|
}, {
|
|
@@ -6262,12 +6269,12 @@ declare module '@scout9/app/schemas' {
|
|
|
6262
6269
|
message?: string | undefined;
|
|
6263
6270
|
secondsDelay?: number | undefined;
|
|
6264
6271
|
scheduled?: number | undefined;
|
|
6265
|
-
contextUpsert?: Record<string,
|
|
6272
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
6266
6273
|
resetIntent?: boolean | undefined;
|
|
6267
6274
|
followup?: {
|
|
6268
6275
|
message: string;
|
|
6269
6276
|
scheduled: number;
|
|
6270
|
-
cancelIf?: Record<string,
|
|
6277
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6271
6278
|
overrideLock?: boolean | undefined;
|
|
6272
6279
|
} | {
|
|
6273
6280
|
scheduled: number;
|
|
@@ -6288,7 +6295,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6288
6295
|
id?: string | undefined;
|
|
6289
6296
|
persist?: boolean | undefined;
|
|
6290
6297
|
})[] | undefined);
|
|
6291
|
-
cancelIf?: Record<string,
|
|
6298
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6292
6299
|
overrideLock?: boolean | undefined;
|
|
6293
6300
|
} | undefined;
|
|
6294
6301
|
}>;
|
|
@@ -6336,26 +6343,26 @@ declare module '@scout9/app/schemas' {
|
|
|
6336
6343
|
message: z.ZodOptional<z.ZodString>;
|
|
6337
6344
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
6338
6345
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
6339
|
-
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">]>>>;
|
|
6346
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
6340
6347
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
6341
6348
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
6342
6349
|
scheduled: z.ZodNumber;
|
|
6343
|
-
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">]>>>;
|
|
6350
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
6344
6351
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
6345
6352
|
message: z.ZodString;
|
|
6346
6353
|
}, "strip", z.ZodTypeAny, {
|
|
6347
6354
|
message: string;
|
|
6348
6355
|
scheduled: number;
|
|
6349
|
-
cancelIf?: Record<string,
|
|
6356
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6350
6357
|
overrideLock?: boolean | undefined;
|
|
6351
6358
|
}, {
|
|
6352
6359
|
message: string;
|
|
6353
6360
|
scheduled: number;
|
|
6354
|
-
cancelIf?: Record<string,
|
|
6361
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6355
6362
|
overrideLock?: boolean | undefined;
|
|
6356
6363
|
}>, z.ZodObject<{
|
|
6357
6364
|
scheduled: z.ZodNumber;
|
|
6358
|
-
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">]>>>;
|
|
6365
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
6359
6366
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
6360
6367
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
6361
6368
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -6401,7 +6408,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6401
6408
|
id?: string | undefined;
|
|
6402
6409
|
persist?: boolean | undefined;
|
|
6403
6410
|
})[] | undefined);
|
|
6404
|
-
cancelIf?: Record<string,
|
|
6411
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6405
6412
|
overrideLock?: boolean | undefined;
|
|
6406
6413
|
}, {
|
|
6407
6414
|
scheduled: number;
|
|
@@ -6422,7 +6429,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6422
6429
|
id?: string | undefined;
|
|
6423
6430
|
persist?: boolean | undefined;
|
|
6424
6431
|
})[] | undefined);
|
|
6425
|
-
cancelIf?: Record<string,
|
|
6432
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6426
6433
|
overrideLock?: boolean | undefined;
|
|
6427
6434
|
}>]>>;
|
|
6428
6435
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6445,12 +6452,12 @@ declare module '@scout9/app/schemas' {
|
|
|
6445
6452
|
message?: string | undefined;
|
|
6446
6453
|
secondsDelay?: number | undefined;
|
|
6447
6454
|
scheduled?: number | undefined;
|
|
6448
|
-
contextUpsert?: Record<string,
|
|
6455
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
6449
6456
|
resetIntent?: boolean | undefined;
|
|
6450
6457
|
followup?: {
|
|
6451
6458
|
message: string;
|
|
6452
6459
|
scheduled: number;
|
|
6453
|
-
cancelIf?: Record<string,
|
|
6460
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6454
6461
|
overrideLock?: boolean | undefined;
|
|
6455
6462
|
} | {
|
|
6456
6463
|
scheduled: number;
|
|
@@ -6471,7 +6478,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6471
6478
|
id?: string | undefined;
|
|
6472
6479
|
persist?: boolean | undefined;
|
|
6473
6480
|
})[] | undefined);
|
|
6474
|
-
cancelIf?: Record<string,
|
|
6481
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6475
6482
|
overrideLock?: boolean | undefined;
|
|
6476
6483
|
} | undefined;
|
|
6477
6484
|
}, {
|
|
@@ -6494,12 +6501,12 @@ declare module '@scout9/app/schemas' {
|
|
|
6494
6501
|
message?: string | undefined;
|
|
6495
6502
|
secondsDelay?: number | undefined;
|
|
6496
6503
|
scheduled?: number | undefined;
|
|
6497
|
-
contextUpsert?: Record<string,
|
|
6504
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
6498
6505
|
resetIntent?: boolean | undefined;
|
|
6499
6506
|
followup?: {
|
|
6500
6507
|
message: string;
|
|
6501
6508
|
scheduled: number;
|
|
6502
|
-
cancelIf?: Record<string,
|
|
6509
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6503
6510
|
overrideLock?: boolean | undefined;
|
|
6504
6511
|
} | {
|
|
6505
6512
|
scheduled: number;
|
|
@@ -6520,7 +6527,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6520
6527
|
id?: string | undefined;
|
|
6521
6528
|
persist?: boolean | undefined;
|
|
6522
6529
|
})[] | undefined);
|
|
6523
|
-
cancelIf?: Record<string,
|
|
6530
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6524
6531
|
overrideLock?: boolean | undefined;
|
|
6525
6532
|
} | undefined;
|
|
6526
6533
|
}>;
|
|
@@ -6546,12 +6553,12 @@ declare module '@scout9/app/schemas' {
|
|
|
6546
6553
|
message?: string | undefined;
|
|
6547
6554
|
secondsDelay?: number | undefined;
|
|
6548
6555
|
scheduled?: number | undefined;
|
|
6549
|
-
contextUpsert?: Record<string,
|
|
6556
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
6550
6557
|
resetIntent?: boolean | undefined;
|
|
6551
6558
|
followup?: {
|
|
6552
6559
|
message: string;
|
|
6553
6560
|
scheduled: number;
|
|
6554
|
-
cancelIf?: Record<string,
|
|
6561
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6555
6562
|
overrideLock?: boolean | undefined;
|
|
6556
6563
|
} | {
|
|
6557
6564
|
scheduled: number;
|
|
@@ -6572,7 +6579,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6572
6579
|
id?: string | undefined;
|
|
6573
6580
|
persist?: boolean | undefined;
|
|
6574
6581
|
})[] | undefined);
|
|
6575
|
-
cancelIf?: Record<string,
|
|
6582
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6576
6583
|
overrideLock?: boolean | undefined;
|
|
6577
6584
|
} | undefined;
|
|
6578
6585
|
};
|
|
@@ -6596,12 +6603,12 @@ declare module '@scout9/app/schemas' {
|
|
|
6596
6603
|
message?: string | undefined;
|
|
6597
6604
|
secondsDelay?: number | undefined;
|
|
6598
6605
|
scheduled?: number | undefined;
|
|
6599
|
-
contextUpsert?: Record<string,
|
|
6606
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
6600
6607
|
resetIntent?: boolean | undefined;
|
|
6601
6608
|
followup?: {
|
|
6602
6609
|
message: string;
|
|
6603
6610
|
scheduled: number;
|
|
6604
|
-
cancelIf?: Record<string,
|
|
6611
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6605
6612
|
overrideLock?: boolean | undefined;
|
|
6606
6613
|
} | {
|
|
6607
6614
|
scheduled: number;
|
|
@@ -6622,7 +6629,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6622
6629
|
id?: string | undefined;
|
|
6623
6630
|
persist?: boolean | undefined;
|
|
6624
6631
|
})[] | undefined);
|
|
6625
|
-
cancelIf?: Record<string,
|
|
6632
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6626
6633
|
overrideLock?: boolean | undefined;
|
|
6627
6634
|
} | undefined;
|
|
6628
6635
|
};
|
|
@@ -6648,12 +6655,12 @@ declare module '@scout9/app/schemas' {
|
|
|
6648
6655
|
message?: string | undefined;
|
|
6649
6656
|
secondsDelay?: number | undefined;
|
|
6650
6657
|
scheduled?: number | undefined;
|
|
6651
|
-
contextUpsert?: Record<string,
|
|
6658
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
6652
6659
|
resetIntent?: boolean | undefined;
|
|
6653
6660
|
followup?: {
|
|
6654
6661
|
message: string;
|
|
6655
6662
|
scheduled: number;
|
|
6656
|
-
cancelIf?: Record<string,
|
|
6663
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6657
6664
|
overrideLock?: boolean | undefined;
|
|
6658
6665
|
} | {
|
|
6659
6666
|
scheduled: number;
|
|
@@ -6674,7 +6681,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6674
6681
|
id?: string | undefined;
|
|
6675
6682
|
persist?: boolean | undefined;
|
|
6676
6683
|
})[] | undefined);
|
|
6677
|
-
cancelIf?: Record<string,
|
|
6684
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6678
6685
|
overrideLock?: boolean | undefined;
|
|
6679
6686
|
} | undefined;
|
|
6680
6687
|
};
|
|
@@ -6698,12 +6705,12 @@ declare module '@scout9/app/schemas' {
|
|
|
6698
6705
|
message?: string | undefined;
|
|
6699
6706
|
secondsDelay?: number | undefined;
|
|
6700
6707
|
scheduled?: number | undefined;
|
|
6701
|
-
contextUpsert?: Record<string,
|
|
6708
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
6702
6709
|
resetIntent?: boolean | undefined;
|
|
6703
6710
|
followup?: {
|
|
6704
6711
|
message: string;
|
|
6705
6712
|
scheduled: number;
|
|
6706
|
-
cancelIf?: Record<string,
|
|
6713
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6707
6714
|
overrideLock?: boolean | undefined;
|
|
6708
6715
|
} | {
|
|
6709
6716
|
scheduled: number;
|
|
@@ -6724,7 +6731,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6724
6731
|
id?: string | undefined;
|
|
6725
6732
|
persist?: boolean | undefined;
|
|
6726
6733
|
})[] | undefined);
|
|
6727
|
-
cancelIf?: Record<string,
|
|
6734
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6728
6735
|
overrideLock?: boolean | undefined;
|
|
6729
6736
|
} | undefined;
|
|
6730
6737
|
};
|
|
@@ -6772,26 +6779,26 @@ declare module '@scout9/app/schemas' {
|
|
|
6772
6779
|
}>]>, "many">]>>;
|
|
6773
6780
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6774
6781
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
6775
|
-
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">]>>>;
|
|
6782
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
6776
6783
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
6777
6784
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
6778
6785
|
scheduled: z.ZodNumber;
|
|
6779
|
-
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">]>>>;
|
|
6786
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
6780
6787
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
6781
6788
|
message: z.ZodString;
|
|
6782
6789
|
}, "strip", z.ZodTypeAny, {
|
|
6783
6790
|
message: string;
|
|
6784
6791
|
scheduled: number;
|
|
6785
|
-
cancelIf?: Record<string,
|
|
6792
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6786
6793
|
overrideLock?: boolean | undefined;
|
|
6787
6794
|
}, {
|
|
6788
6795
|
message: string;
|
|
6789
6796
|
scheduled: number;
|
|
6790
|
-
cancelIf?: Record<string,
|
|
6797
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6791
6798
|
overrideLock?: boolean | undefined;
|
|
6792
6799
|
}>, z.ZodObject<{
|
|
6793
6800
|
scheduled: z.ZodNumber;
|
|
6794
|
-
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">]>>>;
|
|
6801
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
6795
6802
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
6796
6803
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
6797
6804
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -6837,7 +6844,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6837
6844
|
id?: string | undefined;
|
|
6838
6845
|
persist?: boolean | undefined;
|
|
6839
6846
|
})[] | undefined);
|
|
6840
|
-
cancelIf?: Record<string,
|
|
6847
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6841
6848
|
overrideLock?: boolean | undefined;
|
|
6842
6849
|
}, {
|
|
6843
6850
|
scheduled: number;
|
|
@@ -6858,7 +6865,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6858
6865
|
id?: string | undefined;
|
|
6859
6866
|
persist?: boolean | undefined;
|
|
6860
6867
|
})[] | undefined);
|
|
6861
|
-
cancelIf?: Record<string,
|
|
6868
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6862
6869
|
overrideLock?: boolean | undefined;
|
|
6863
6870
|
}>]>>;
|
|
6864
6871
|
keywords: z.ZodArray<z.ZodString, "many">;
|
|
@@ -6883,12 +6890,12 @@ declare module '@scout9/app/schemas' {
|
|
|
6883
6890
|
})[] | undefined;
|
|
6884
6891
|
removeInstructions?: string[] | undefined;
|
|
6885
6892
|
secondsDelay?: number | undefined;
|
|
6886
|
-
contextUpsert?: Record<string,
|
|
6893
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
6887
6894
|
resetIntent?: boolean | undefined;
|
|
6888
6895
|
followup?: {
|
|
6889
6896
|
message: string;
|
|
6890
6897
|
scheduled: number;
|
|
6891
|
-
cancelIf?: Record<string,
|
|
6898
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6892
6899
|
overrideLock?: boolean | undefined;
|
|
6893
6900
|
} | {
|
|
6894
6901
|
scheduled: number;
|
|
@@ -6909,7 +6916,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6909
6916
|
id?: string | undefined;
|
|
6910
6917
|
persist?: boolean | undefined;
|
|
6911
6918
|
})[] | undefined);
|
|
6912
|
-
cancelIf?: Record<string,
|
|
6919
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6913
6920
|
overrideLock?: boolean | undefined;
|
|
6914
6921
|
} | undefined;
|
|
6915
6922
|
}, {
|
|
@@ -6933,12 +6940,12 @@ declare module '@scout9/app/schemas' {
|
|
|
6933
6940
|
})[] | undefined;
|
|
6934
6941
|
removeInstructions?: string[] | undefined;
|
|
6935
6942
|
secondsDelay?: number | undefined;
|
|
6936
|
-
contextUpsert?: Record<string,
|
|
6943
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
6937
6944
|
resetIntent?: boolean | undefined;
|
|
6938
6945
|
followup?: {
|
|
6939
6946
|
message: string;
|
|
6940
6947
|
scheduled: number;
|
|
6941
|
-
cancelIf?: Record<string,
|
|
6948
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6942
6949
|
overrideLock?: boolean | undefined;
|
|
6943
6950
|
} | {
|
|
6944
6951
|
scheduled: number;
|
|
@@ -6959,7 +6966,7 @@ declare module '@scout9/app/schemas' {
|
|
|
6959
6966
|
id?: string | undefined;
|
|
6960
6967
|
persist?: boolean | undefined;
|
|
6961
6968
|
})[] | undefined);
|
|
6962
|
-
cancelIf?: Record<string,
|
|
6969
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6963
6970
|
overrideLock?: boolean | undefined;
|
|
6964
6971
|
} | undefined;
|
|
6965
6972
|
}>, "many">]>>;
|
|
@@ -6983,12 +6990,12 @@ declare module '@scout9/app/schemas' {
|
|
|
6983
6990
|
})[] | undefined;
|
|
6984
6991
|
removeInstructions?: string[] | undefined;
|
|
6985
6992
|
secondsDelay?: number | undefined;
|
|
6986
|
-
contextUpsert?: Record<string,
|
|
6993
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
6987
6994
|
resetIntent?: boolean | undefined;
|
|
6988
6995
|
followup?: {
|
|
6989
6996
|
message: string;
|
|
6990
6997
|
scheduled: number;
|
|
6991
|
-
cancelIf?: Record<string,
|
|
6998
|
+
cancelIf?: Record<string, any> | undefined;
|
|
6992
6999
|
overrideLock?: boolean | undefined;
|
|
6993
7000
|
} | {
|
|
6994
7001
|
scheduled: number;
|
|
@@ -7009,7 +7016,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7009
7016
|
id?: string | undefined;
|
|
7010
7017
|
persist?: boolean | undefined;
|
|
7011
7018
|
})[] | undefined);
|
|
7012
|
-
cancelIf?: Record<string,
|
|
7019
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7013
7020
|
overrideLock?: boolean | undefined;
|
|
7014
7021
|
} | undefined;
|
|
7015
7022
|
anticipate?: {
|
|
@@ -7034,12 +7041,12 @@ declare module '@scout9/app/schemas' {
|
|
|
7034
7041
|
message?: string | undefined;
|
|
7035
7042
|
secondsDelay?: number | undefined;
|
|
7036
7043
|
scheduled?: number | undefined;
|
|
7037
|
-
contextUpsert?: Record<string,
|
|
7044
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
7038
7045
|
resetIntent?: boolean | undefined;
|
|
7039
7046
|
followup?: {
|
|
7040
7047
|
message: string;
|
|
7041
7048
|
scheduled: number;
|
|
7042
|
-
cancelIf?: Record<string,
|
|
7049
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7043
7050
|
overrideLock?: boolean | undefined;
|
|
7044
7051
|
} | {
|
|
7045
7052
|
scheduled: number;
|
|
@@ -7060,7 +7067,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7060
7067
|
id?: string | undefined;
|
|
7061
7068
|
persist?: boolean | undefined;
|
|
7062
7069
|
})[] | undefined);
|
|
7063
|
-
cancelIf?: Record<string,
|
|
7070
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7064
7071
|
overrideLock?: boolean | undefined;
|
|
7065
7072
|
} | undefined;
|
|
7066
7073
|
};
|
|
@@ -7084,12 +7091,12 @@ declare module '@scout9/app/schemas' {
|
|
|
7084
7091
|
message?: string | undefined;
|
|
7085
7092
|
secondsDelay?: number | undefined;
|
|
7086
7093
|
scheduled?: number | undefined;
|
|
7087
|
-
contextUpsert?: Record<string,
|
|
7094
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
7088
7095
|
resetIntent?: boolean | undefined;
|
|
7089
7096
|
followup?: {
|
|
7090
7097
|
message: string;
|
|
7091
7098
|
scheduled: number;
|
|
7092
|
-
cancelIf?: Record<string,
|
|
7099
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7093
7100
|
overrideLock?: boolean | undefined;
|
|
7094
7101
|
} | {
|
|
7095
7102
|
scheduled: number;
|
|
@@ -7110,7 +7117,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7110
7117
|
id?: string | undefined;
|
|
7111
7118
|
persist?: boolean | undefined;
|
|
7112
7119
|
})[] | undefined);
|
|
7113
|
-
cancelIf?: Record<string,
|
|
7120
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7114
7121
|
overrideLock?: boolean | undefined;
|
|
7115
7122
|
} | undefined;
|
|
7116
7123
|
};
|
|
@@ -7135,12 +7142,12 @@ declare module '@scout9/app/schemas' {
|
|
|
7135
7142
|
})[] | undefined;
|
|
7136
7143
|
removeInstructions?: string[] | undefined;
|
|
7137
7144
|
secondsDelay?: number | undefined;
|
|
7138
|
-
contextUpsert?: Record<string,
|
|
7145
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
7139
7146
|
resetIntent?: boolean | undefined;
|
|
7140
7147
|
followup?: {
|
|
7141
7148
|
message: string;
|
|
7142
7149
|
scheduled: number;
|
|
7143
|
-
cancelIf?: Record<string,
|
|
7150
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7144
7151
|
overrideLock?: boolean | undefined;
|
|
7145
7152
|
} | {
|
|
7146
7153
|
scheduled: number;
|
|
@@ -7161,7 +7168,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7161
7168
|
id?: string | undefined;
|
|
7162
7169
|
persist?: boolean | undefined;
|
|
7163
7170
|
})[] | undefined);
|
|
7164
|
-
cancelIf?: Record<string,
|
|
7171
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7165
7172
|
overrideLock?: boolean | undefined;
|
|
7166
7173
|
} | undefined;
|
|
7167
7174
|
}[] | undefined;
|
|
@@ -7185,12 +7192,12 @@ declare module '@scout9/app/schemas' {
|
|
|
7185
7192
|
})[] | undefined;
|
|
7186
7193
|
removeInstructions?: string[] | undefined;
|
|
7187
7194
|
secondsDelay?: number | undefined;
|
|
7188
|
-
contextUpsert?: Record<string,
|
|
7195
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
7189
7196
|
resetIntent?: boolean | undefined;
|
|
7190
7197
|
followup?: {
|
|
7191
7198
|
message: string;
|
|
7192
7199
|
scheduled: number;
|
|
7193
|
-
cancelIf?: Record<string,
|
|
7200
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7194
7201
|
overrideLock?: boolean | undefined;
|
|
7195
7202
|
} | {
|
|
7196
7203
|
scheduled: number;
|
|
@@ -7211,7 +7218,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7211
7218
|
id?: string | undefined;
|
|
7212
7219
|
persist?: boolean | undefined;
|
|
7213
7220
|
})[] | undefined);
|
|
7214
|
-
cancelIf?: Record<string,
|
|
7221
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7215
7222
|
overrideLock?: boolean | undefined;
|
|
7216
7223
|
} | undefined;
|
|
7217
7224
|
anticipate?: {
|
|
@@ -7236,12 +7243,12 @@ declare module '@scout9/app/schemas' {
|
|
|
7236
7243
|
message?: string | undefined;
|
|
7237
7244
|
secondsDelay?: number | undefined;
|
|
7238
7245
|
scheduled?: number | undefined;
|
|
7239
|
-
contextUpsert?: Record<string,
|
|
7246
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
7240
7247
|
resetIntent?: boolean | undefined;
|
|
7241
7248
|
followup?: {
|
|
7242
7249
|
message: string;
|
|
7243
7250
|
scheduled: number;
|
|
7244
|
-
cancelIf?: Record<string,
|
|
7251
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7245
7252
|
overrideLock?: boolean | undefined;
|
|
7246
7253
|
} | {
|
|
7247
7254
|
scheduled: number;
|
|
@@ -7262,7 +7269,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7262
7269
|
id?: string | undefined;
|
|
7263
7270
|
persist?: boolean | undefined;
|
|
7264
7271
|
})[] | undefined);
|
|
7265
|
-
cancelIf?: Record<string,
|
|
7272
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7266
7273
|
overrideLock?: boolean | undefined;
|
|
7267
7274
|
} | undefined;
|
|
7268
7275
|
};
|
|
@@ -7286,12 +7293,12 @@ declare module '@scout9/app/schemas' {
|
|
|
7286
7293
|
message?: string | undefined;
|
|
7287
7294
|
secondsDelay?: number | undefined;
|
|
7288
7295
|
scheduled?: number | undefined;
|
|
7289
|
-
contextUpsert?: Record<string,
|
|
7296
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
7290
7297
|
resetIntent?: boolean | undefined;
|
|
7291
7298
|
followup?: {
|
|
7292
7299
|
message: string;
|
|
7293
7300
|
scheduled: number;
|
|
7294
|
-
cancelIf?: Record<string,
|
|
7301
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7295
7302
|
overrideLock?: boolean | undefined;
|
|
7296
7303
|
} | {
|
|
7297
7304
|
scheduled: number;
|
|
@@ -7312,7 +7319,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7312
7319
|
id?: string | undefined;
|
|
7313
7320
|
persist?: boolean | undefined;
|
|
7314
7321
|
})[] | undefined);
|
|
7315
|
-
cancelIf?: Record<string,
|
|
7322
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7316
7323
|
overrideLock?: boolean | undefined;
|
|
7317
7324
|
} | undefined;
|
|
7318
7325
|
};
|
|
@@ -7337,12 +7344,12 @@ declare module '@scout9/app/schemas' {
|
|
|
7337
7344
|
})[] | undefined;
|
|
7338
7345
|
removeInstructions?: string[] | undefined;
|
|
7339
7346
|
secondsDelay?: number | undefined;
|
|
7340
|
-
contextUpsert?: Record<string,
|
|
7347
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
7341
7348
|
resetIntent?: boolean | undefined;
|
|
7342
7349
|
followup?: {
|
|
7343
7350
|
message: string;
|
|
7344
7351
|
scheduled: number;
|
|
7345
|
-
cancelIf?: Record<string,
|
|
7352
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7346
7353
|
overrideLock?: boolean | undefined;
|
|
7347
7354
|
} | {
|
|
7348
7355
|
scheduled: number;
|
|
@@ -7363,7 +7370,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7363
7370
|
id?: string | undefined;
|
|
7364
7371
|
persist?: boolean | undefined;
|
|
7365
7372
|
})[] | undefined);
|
|
7366
|
-
cancelIf?: Record<string,
|
|
7373
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7367
7374
|
overrideLock?: boolean | undefined;
|
|
7368
7375
|
} | undefined;
|
|
7369
7376
|
}[] | undefined;
|
|
@@ -7411,26 +7418,26 @@ declare module '@scout9/app/schemas' {
|
|
|
7411
7418
|
}>]>, "many">]>>;
|
|
7412
7419
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7413
7420
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
7414
|
-
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">]>>>;
|
|
7421
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
7415
7422
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
7416
7423
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
7417
7424
|
scheduled: z.ZodNumber;
|
|
7418
|
-
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">]>>>;
|
|
7425
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
7419
7426
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
7420
7427
|
message: z.ZodString;
|
|
7421
7428
|
}, "strip", z.ZodTypeAny, {
|
|
7422
7429
|
message: string;
|
|
7423
7430
|
scheduled: number;
|
|
7424
|
-
cancelIf?: Record<string,
|
|
7431
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7425
7432
|
overrideLock?: boolean | undefined;
|
|
7426
7433
|
}, {
|
|
7427
7434
|
message: string;
|
|
7428
7435
|
scheduled: number;
|
|
7429
|
-
cancelIf?: Record<string,
|
|
7436
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7430
7437
|
overrideLock?: boolean | undefined;
|
|
7431
7438
|
}>, z.ZodObject<{
|
|
7432
7439
|
scheduled: z.ZodNumber;
|
|
7433
|
-
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">]>>>;
|
|
7440
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
7434
7441
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
7435
7442
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
7436
7443
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -7476,7 +7483,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7476
7483
|
id?: string | undefined;
|
|
7477
7484
|
persist?: boolean | undefined;
|
|
7478
7485
|
})[] | undefined);
|
|
7479
|
-
cancelIf?: Record<string,
|
|
7486
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7480
7487
|
overrideLock?: boolean | undefined;
|
|
7481
7488
|
}, {
|
|
7482
7489
|
scheduled: number;
|
|
@@ -7497,7 +7504,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7497
7504
|
id?: string | undefined;
|
|
7498
7505
|
persist?: boolean | undefined;
|
|
7499
7506
|
})[] | undefined);
|
|
7500
|
-
cancelIf?: Record<string,
|
|
7507
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7501
7508
|
overrideLock?: boolean | undefined;
|
|
7502
7509
|
}>]>>;
|
|
7503
7510
|
anticipate: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
@@ -7546,26 +7553,26 @@ declare module '@scout9/app/schemas' {
|
|
|
7546
7553
|
message: z.ZodOptional<z.ZodString>;
|
|
7547
7554
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
7548
7555
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
7549
|
-
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">]>>>;
|
|
7556
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
7550
7557
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
7551
7558
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
7552
7559
|
scheduled: z.ZodNumber;
|
|
7553
|
-
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">]>>>;
|
|
7560
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
7554
7561
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
7555
7562
|
message: z.ZodString;
|
|
7556
7563
|
}, "strip", z.ZodTypeAny, {
|
|
7557
7564
|
message: string;
|
|
7558
7565
|
scheduled: number;
|
|
7559
|
-
cancelIf?: Record<string,
|
|
7566
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7560
7567
|
overrideLock?: boolean | undefined;
|
|
7561
7568
|
}, {
|
|
7562
7569
|
message: string;
|
|
7563
7570
|
scheduled: number;
|
|
7564
|
-
cancelIf?: Record<string,
|
|
7571
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7565
7572
|
overrideLock?: boolean | undefined;
|
|
7566
7573
|
}>, z.ZodObject<{
|
|
7567
7574
|
scheduled: z.ZodNumber;
|
|
7568
|
-
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">]>>>;
|
|
7575
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
7569
7576
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
7570
7577
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
7571
7578
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -7611,7 +7618,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7611
7618
|
id?: string | undefined;
|
|
7612
7619
|
persist?: boolean | undefined;
|
|
7613
7620
|
})[] | undefined);
|
|
7614
|
-
cancelIf?: Record<string,
|
|
7621
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7615
7622
|
overrideLock?: boolean | undefined;
|
|
7616
7623
|
}, {
|
|
7617
7624
|
scheduled: number;
|
|
@@ -7632,7 +7639,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7632
7639
|
id?: string | undefined;
|
|
7633
7640
|
persist?: boolean | undefined;
|
|
7634
7641
|
})[] | undefined);
|
|
7635
|
-
cancelIf?: Record<string,
|
|
7642
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7636
7643
|
overrideLock?: boolean | undefined;
|
|
7637
7644
|
}>]>>;
|
|
7638
7645
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7655,12 +7662,12 @@ declare module '@scout9/app/schemas' {
|
|
|
7655
7662
|
message?: string | undefined;
|
|
7656
7663
|
secondsDelay?: number | undefined;
|
|
7657
7664
|
scheduled?: number | undefined;
|
|
7658
|
-
contextUpsert?: Record<string,
|
|
7665
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
7659
7666
|
resetIntent?: boolean | undefined;
|
|
7660
7667
|
followup?: {
|
|
7661
7668
|
message: string;
|
|
7662
7669
|
scheduled: number;
|
|
7663
|
-
cancelIf?: Record<string,
|
|
7670
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7664
7671
|
overrideLock?: boolean | undefined;
|
|
7665
7672
|
} | {
|
|
7666
7673
|
scheduled: number;
|
|
@@ -7681,7 +7688,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7681
7688
|
id?: string | undefined;
|
|
7682
7689
|
persist?: boolean | undefined;
|
|
7683
7690
|
})[] | undefined);
|
|
7684
|
-
cancelIf?: Record<string,
|
|
7691
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7685
7692
|
overrideLock?: boolean | undefined;
|
|
7686
7693
|
} | undefined;
|
|
7687
7694
|
}, {
|
|
@@ -7704,12 +7711,12 @@ declare module '@scout9/app/schemas' {
|
|
|
7704
7711
|
message?: string | undefined;
|
|
7705
7712
|
secondsDelay?: number | undefined;
|
|
7706
7713
|
scheduled?: number | undefined;
|
|
7707
|
-
contextUpsert?: Record<string,
|
|
7714
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
7708
7715
|
resetIntent?: boolean | undefined;
|
|
7709
7716
|
followup?: {
|
|
7710
7717
|
message: string;
|
|
7711
7718
|
scheduled: number;
|
|
7712
|
-
cancelIf?: Record<string,
|
|
7719
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7713
7720
|
overrideLock?: boolean | undefined;
|
|
7714
7721
|
} | {
|
|
7715
7722
|
scheduled: number;
|
|
@@ -7730,7 +7737,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7730
7737
|
id?: string | undefined;
|
|
7731
7738
|
persist?: boolean | undefined;
|
|
7732
7739
|
})[] | undefined);
|
|
7733
|
-
cancelIf?: Record<string,
|
|
7740
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7734
7741
|
overrideLock?: boolean | undefined;
|
|
7735
7742
|
} | undefined;
|
|
7736
7743
|
}>;
|
|
@@ -7778,26 +7785,26 @@ declare module '@scout9/app/schemas' {
|
|
|
7778
7785
|
message: z.ZodOptional<z.ZodString>;
|
|
7779
7786
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
7780
7787
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
7781
|
-
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">]>>>;
|
|
7788
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
7782
7789
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
7783
7790
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
7784
7791
|
scheduled: z.ZodNumber;
|
|
7785
|
-
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">]>>>;
|
|
7792
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
7786
7793
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
7787
7794
|
message: z.ZodString;
|
|
7788
7795
|
}, "strip", z.ZodTypeAny, {
|
|
7789
7796
|
message: string;
|
|
7790
7797
|
scheduled: number;
|
|
7791
|
-
cancelIf?: Record<string,
|
|
7798
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7792
7799
|
overrideLock?: boolean | undefined;
|
|
7793
7800
|
}, {
|
|
7794
7801
|
message: string;
|
|
7795
7802
|
scheduled: number;
|
|
7796
|
-
cancelIf?: Record<string,
|
|
7803
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7797
7804
|
overrideLock?: boolean | undefined;
|
|
7798
7805
|
}>, z.ZodObject<{
|
|
7799
7806
|
scheduled: z.ZodNumber;
|
|
7800
|
-
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">]>>>;
|
|
7807
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
7801
7808
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
7802
7809
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
7803
7810
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -7843,7 +7850,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7843
7850
|
id?: string | undefined;
|
|
7844
7851
|
persist?: boolean | undefined;
|
|
7845
7852
|
})[] | undefined);
|
|
7846
|
-
cancelIf?: Record<string,
|
|
7853
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7847
7854
|
overrideLock?: boolean | undefined;
|
|
7848
7855
|
}, {
|
|
7849
7856
|
scheduled: number;
|
|
@@ -7864,7 +7871,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7864
7871
|
id?: string | undefined;
|
|
7865
7872
|
persist?: boolean | undefined;
|
|
7866
7873
|
})[] | undefined);
|
|
7867
|
-
cancelIf?: Record<string,
|
|
7874
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7868
7875
|
overrideLock?: boolean | undefined;
|
|
7869
7876
|
}>]>>;
|
|
7870
7877
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7887,12 +7894,12 @@ declare module '@scout9/app/schemas' {
|
|
|
7887
7894
|
message?: string | undefined;
|
|
7888
7895
|
secondsDelay?: number | undefined;
|
|
7889
7896
|
scheduled?: number | undefined;
|
|
7890
|
-
contextUpsert?: Record<string,
|
|
7897
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
7891
7898
|
resetIntent?: boolean | undefined;
|
|
7892
7899
|
followup?: {
|
|
7893
7900
|
message: string;
|
|
7894
7901
|
scheduled: number;
|
|
7895
|
-
cancelIf?: Record<string,
|
|
7902
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7896
7903
|
overrideLock?: boolean | undefined;
|
|
7897
7904
|
} | {
|
|
7898
7905
|
scheduled: number;
|
|
@@ -7913,7 +7920,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7913
7920
|
id?: string | undefined;
|
|
7914
7921
|
persist?: boolean | undefined;
|
|
7915
7922
|
})[] | undefined);
|
|
7916
|
-
cancelIf?: Record<string,
|
|
7923
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7917
7924
|
overrideLock?: boolean | undefined;
|
|
7918
7925
|
} | undefined;
|
|
7919
7926
|
}, {
|
|
@@ -7936,12 +7943,12 @@ declare module '@scout9/app/schemas' {
|
|
|
7936
7943
|
message?: string | undefined;
|
|
7937
7944
|
secondsDelay?: number | undefined;
|
|
7938
7945
|
scheduled?: number | undefined;
|
|
7939
|
-
contextUpsert?: Record<string,
|
|
7946
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
7940
7947
|
resetIntent?: boolean | undefined;
|
|
7941
7948
|
followup?: {
|
|
7942
7949
|
message: string;
|
|
7943
7950
|
scheduled: number;
|
|
7944
|
-
cancelIf?: Record<string,
|
|
7951
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7945
7952
|
overrideLock?: boolean | undefined;
|
|
7946
7953
|
} | {
|
|
7947
7954
|
scheduled: number;
|
|
@@ -7962,7 +7969,7 @@ declare module '@scout9/app/schemas' {
|
|
|
7962
7969
|
id?: string | undefined;
|
|
7963
7970
|
persist?: boolean | undefined;
|
|
7964
7971
|
})[] | undefined);
|
|
7965
|
-
cancelIf?: Record<string,
|
|
7972
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7966
7973
|
overrideLock?: boolean | undefined;
|
|
7967
7974
|
} | undefined;
|
|
7968
7975
|
}>;
|
|
@@ -7988,12 +7995,12 @@ declare module '@scout9/app/schemas' {
|
|
|
7988
7995
|
message?: string | undefined;
|
|
7989
7996
|
secondsDelay?: number | undefined;
|
|
7990
7997
|
scheduled?: number | undefined;
|
|
7991
|
-
contextUpsert?: Record<string,
|
|
7998
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
7992
7999
|
resetIntent?: boolean | undefined;
|
|
7993
8000
|
followup?: {
|
|
7994
8001
|
message: string;
|
|
7995
8002
|
scheduled: number;
|
|
7996
|
-
cancelIf?: Record<string,
|
|
8003
|
+
cancelIf?: Record<string, any> | undefined;
|
|
7997
8004
|
overrideLock?: boolean | undefined;
|
|
7998
8005
|
} | {
|
|
7999
8006
|
scheduled: number;
|
|
@@ -8014,7 +8021,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8014
8021
|
id?: string | undefined;
|
|
8015
8022
|
persist?: boolean | undefined;
|
|
8016
8023
|
})[] | undefined);
|
|
8017
|
-
cancelIf?: Record<string,
|
|
8024
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8018
8025
|
overrideLock?: boolean | undefined;
|
|
8019
8026
|
} | undefined;
|
|
8020
8027
|
};
|
|
@@ -8038,12 +8045,12 @@ declare module '@scout9/app/schemas' {
|
|
|
8038
8045
|
message?: string | undefined;
|
|
8039
8046
|
secondsDelay?: number | undefined;
|
|
8040
8047
|
scheduled?: number | undefined;
|
|
8041
|
-
contextUpsert?: Record<string,
|
|
8048
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
8042
8049
|
resetIntent?: boolean | undefined;
|
|
8043
8050
|
followup?: {
|
|
8044
8051
|
message: string;
|
|
8045
8052
|
scheduled: number;
|
|
8046
|
-
cancelIf?: Record<string,
|
|
8053
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8047
8054
|
overrideLock?: boolean | undefined;
|
|
8048
8055
|
} | {
|
|
8049
8056
|
scheduled: number;
|
|
@@ -8064,7 +8071,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8064
8071
|
id?: string | undefined;
|
|
8065
8072
|
persist?: boolean | undefined;
|
|
8066
8073
|
})[] | undefined);
|
|
8067
|
-
cancelIf?: Record<string,
|
|
8074
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8068
8075
|
overrideLock?: boolean | undefined;
|
|
8069
8076
|
} | undefined;
|
|
8070
8077
|
};
|
|
@@ -8090,12 +8097,12 @@ declare module '@scout9/app/schemas' {
|
|
|
8090
8097
|
message?: string | undefined;
|
|
8091
8098
|
secondsDelay?: number | undefined;
|
|
8092
8099
|
scheduled?: number | undefined;
|
|
8093
|
-
contextUpsert?: Record<string,
|
|
8100
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
8094
8101
|
resetIntent?: boolean | undefined;
|
|
8095
8102
|
followup?: {
|
|
8096
8103
|
message: string;
|
|
8097
8104
|
scheduled: number;
|
|
8098
|
-
cancelIf?: Record<string,
|
|
8105
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8099
8106
|
overrideLock?: boolean | undefined;
|
|
8100
8107
|
} | {
|
|
8101
8108
|
scheduled: number;
|
|
@@ -8116,7 +8123,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8116
8123
|
id?: string | undefined;
|
|
8117
8124
|
persist?: boolean | undefined;
|
|
8118
8125
|
})[] | undefined);
|
|
8119
|
-
cancelIf?: Record<string,
|
|
8126
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8120
8127
|
overrideLock?: boolean | undefined;
|
|
8121
8128
|
} | undefined;
|
|
8122
8129
|
};
|
|
@@ -8140,12 +8147,12 @@ declare module '@scout9/app/schemas' {
|
|
|
8140
8147
|
message?: string | undefined;
|
|
8141
8148
|
secondsDelay?: number | undefined;
|
|
8142
8149
|
scheduled?: number | undefined;
|
|
8143
|
-
contextUpsert?: Record<string,
|
|
8150
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
8144
8151
|
resetIntent?: boolean | undefined;
|
|
8145
8152
|
followup?: {
|
|
8146
8153
|
message: string;
|
|
8147
8154
|
scheduled: number;
|
|
8148
|
-
cancelIf?: Record<string,
|
|
8155
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8149
8156
|
overrideLock?: boolean | undefined;
|
|
8150
8157
|
} | {
|
|
8151
8158
|
scheduled: number;
|
|
@@ -8166,7 +8173,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8166
8173
|
id?: string | undefined;
|
|
8167
8174
|
persist?: boolean | undefined;
|
|
8168
8175
|
})[] | undefined);
|
|
8169
|
-
cancelIf?: Record<string,
|
|
8176
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8170
8177
|
overrideLock?: boolean | undefined;
|
|
8171
8178
|
} | undefined;
|
|
8172
8179
|
};
|
|
@@ -8214,26 +8221,26 @@ declare module '@scout9/app/schemas' {
|
|
|
8214
8221
|
}>]>, "many">]>>;
|
|
8215
8222
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8216
8223
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
8217
|
-
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">]>>>;
|
|
8224
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
8218
8225
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
8219
8226
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
8220
8227
|
scheduled: z.ZodNumber;
|
|
8221
|
-
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">]>>>;
|
|
8228
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
8222
8229
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
8223
8230
|
message: z.ZodString;
|
|
8224
8231
|
}, "strip", z.ZodTypeAny, {
|
|
8225
8232
|
message: string;
|
|
8226
8233
|
scheduled: number;
|
|
8227
|
-
cancelIf?: Record<string,
|
|
8234
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8228
8235
|
overrideLock?: boolean | undefined;
|
|
8229
8236
|
}, {
|
|
8230
8237
|
message: string;
|
|
8231
8238
|
scheduled: number;
|
|
8232
|
-
cancelIf?: Record<string,
|
|
8239
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8233
8240
|
overrideLock?: boolean | undefined;
|
|
8234
8241
|
}>, z.ZodObject<{
|
|
8235
8242
|
scheduled: z.ZodNumber;
|
|
8236
|
-
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">]>>>;
|
|
8243
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
8237
8244
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
8238
8245
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
8239
8246
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -8279,7 +8286,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8279
8286
|
id?: string | undefined;
|
|
8280
8287
|
persist?: boolean | undefined;
|
|
8281
8288
|
})[] | undefined);
|
|
8282
|
-
cancelIf?: Record<string,
|
|
8289
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8283
8290
|
overrideLock?: boolean | undefined;
|
|
8284
8291
|
}, {
|
|
8285
8292
|
scheduled: number;
|
|
@@ -8300,7 +8307,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8300
8307
|
id?: string | undefined;
|
|
8301
8308
|
persist?: boolean | undefined;
|
|
8302
8309
|
})[] | undefined);
|
|
8303
|
-
cancelIf?: Record<string,
|
|
8310
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8304
8311
|
overrideLock?: boolean | undefined;
|
|
8305
8312
|
}>]>>;
|
|
8306
8313
|
keywords: z.ZodArray<z.ZodString, "many">;
|
|
@@ -8325,12 +8332,12 @@ declare module '@scout9/app/schemas' {
|
|
|
8325
8332
|
})[] | undefined;
|
|
8326
8333
|
removeInstructions?: string[] | undefined;
|
|
8327
8334
|
secondsDelay?: number | undefined;
|
|
8328
|
-
contextUpsert?: Record<string,
|
|
8335
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
8329
8336
|
resetIntent?: boolean | undefined;
|
|
8330
8337
|
followup?: {
|
|
8331
8338
|
message: string;
|
|
8332
8339
|
scheduled: number;
|
|
8333
|
-
cancelIf?: Record<string,
|
|
8340
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8334
8341
|
overrideLock?: boolean | undefined;
|
|
8335
8342
|
} | {
|
|
8336
8343
|
scheduled: number;
|
|
@@ -8351,7 +8358,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8351
8358
|
id?: string | undefined;
|
|
8352
8359
|
persist?: boolean | undefined;
|
|
8353
8360
|
})[] | undefined);
|
|
8354
|
-
cancelIf?: Record<string,
|
|
8361
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8355
8362
|
overrideLock?: boolean | undefined;
|
|
8356
8363
|
} | undefined;
|
|
8357
8364
|
}, {
|
|
@@ -8375,12 +8382,12 @@ declare module '@scout9/app/schemas' {
|
|
|
8375
8382
|
})[] | undefined;
|
|
8376
8383
|
removeInstructions?: string[] | undefined;
|
|
8377
8384
|
secondsDelay?: number | undefined;
|
|
8378
|
-
contextUpsert?: Record<string,
|
|
8385
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
8379
8386
|
resetIntent?: boolean | undefined;
|
|
8380
8387
|
followup?: {
|
|
8381
8388
|
message: string;
|
|
8382
8389
|
scheduled: number;
|
|
8383
|
-
cancelIf?: Record<string,
|
|
8390
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8384
8391
|
overrideLock?: boolean | undefined;
|
|
8385
8392
|
} | {
|
|
8386
8393
|
scheduled: number;
|
|
@@ -8401,7 +8408,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8401
8408
|
id?: string | undefined;
|
|
8402
8409
|
persist?: boolean | undefined;
|
|
8403
8410
|
})[] | undefined);
|
|
8404
|
-
cancelIf?: Record<string,
|
|
8411
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8405
8412
|
overrideLock?: boolean | undefined;
|
|
8406
8413
|
} | undefined;
|
|
8407
8414
|
}>, "many">]>>;
|
|
@@ -8425,12 +8432,12 @@ declare module '@scout9/app/schemas' {
|
|
|
8425
8432
|
})[] | undefined;
|
|
8426
8433
|
removeInstructions?: string[] | undefined;
|
|
8427
8434
|
secondsDelay?: number | undefined;
|
|
8428
|
-
contextUpsert?: Record<string,
|
|
8435
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
8429
8436
|
resetIntent?: boolean | undefined;
|
|
8430
8437
|
followup?: {
|
|
8431
8438
|
message: string;
|
|
8432
8439
|
scheduled: number;
|
|
8433
|
-
cancelIf?: Record<string,
|
|
8440
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8434
8441
|
overrideLock?: boolean | undefined;
|
|
8435
8442
|
} | {
|
|
8436
8443
|
scheduled: number;
|
|
@@ -8451,7 +8458,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8451
8458
|
id?: string | undefined;
|
|
8452
8459
|
persist?: boolean | undefined;
|
|
8453
8460
|
})[] | undefined);
|
|
8454
|
-
cancelIf?: Record<string,
|
|
8461
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8455
8462
|
overrideLock?: boolean | undefined;
|
|
8456
8463
|
} | undefined;
|
|
8457
8464
|
anticipate?: {
|
|
@@ -8476,12 +8483,12 @@ declare module '@scout9/app/schemas' {
|
|
|
8476
8483
|
message?: string | undefined;
|
|
8477
8484
|
secondsDelay?: number | undefined;
|
|
8478
8485
|
scheduled?: number | undefined;
|
|
8479
|
-
contextUpsert?: Record<string,
|
|
8486
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
8480
8487
|
resetIntent?: boolean | undefined;
|
|
8481
8488
|
followup?: {
|
|
8482
8489
|
message: string;
|
|
8483
8490
|
scheduled: number;
|
|
8484
|
-
cancelIf?: Record<string,
|
|
8491
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8485
8492
|
overrideLock?: boolean | undefined;
|
|
8486
8493
|
} | {
|
|
8487
8494
|
scheduled: number;
|
|
@@ -8502,7 +8509,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8502
8509
|
id?: string | undefined;
|
|
8503
8510
|
persist?: boolean | undefined;
|
|
8504
8511
|
})[] | undefined);
|
|
8505
|
-
cancelIf?: Record<string,
|
|
8512
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8506
8513
|
overrideLock?: boolean | undefined;
|
|
8507
8514
|
} | undefined;
|
|
8508
8515
|
};
|
|
@@ -8526,12 +8533,12 @@ declare module '@scout9/app/schemas' {
|
|
|
8526
8533
|
message?: string | undefined;
|
|
8527
8534
|
secondsDelay?: number | undefined;
|
|
8528
8535
|
scheduled?: number | undefined;
|
|
8529
|
-
contextUpsert?: Record<string,
|
|
8536
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
8530
8537
|
resetIntent?: boolean | undefined;
|
|
8531
8538
|
followup?: {
|
|
8532
8539
|
message: string;
|
|
8533
8540
|
scheduled: number;
|
|
8534
|
-
cancelIf?: Record<string,
|
|
8541
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8535
8542
|
overrideLock?: boolean | undefined;
|
|
8536
8543
|
} | {
|
|
8537
8544
|
scheduled: number;
|
|
@@ -8552,7 +8559,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8552
8559
|
id?: string | undefined;
|
|
8553
8560
|
persist?: boolean | undefined;
|
|
8554
8561
|
})[] | undefined);
|
|
8555
|
-
cancelIf?: Record<string,
|
|
8562
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8556
8563
|
overrideLock?: boolean | undefined;
|
|
8557
8564
|
} | undefined;
|
|
8558
8565
|
};
|
|
@@ -8577,12 +8584,12 @@ declare module '@scout9/app/schemas' {
|
|
|
8577
8584
|
})[] | undefined;
|
|
8578
8585
|
removeInstructions?: string[] | undefined;
|
|
8579
8586
|
secondsDelay?: number | undefined;
|
|
8580
|
-
contextUpsert?: Record<string,
|
|
8587
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
8581
8588
|
resetIntent?: boolean | undefined;
|
|
8582
8589
|
followup?: {
|
|
8583
8590
|
message: string;
|
|
8584
8591
|
scheduled: number;
|
|
8585
|
-
cancelIf?: Record<string,
|
|
8592
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8586
8593
|
overrideLock?: boolean | undefined;
|
|
8587
8594
|
} | {
|
|
8588
8595
|
scheduled: number;
|
|
@@ -8603,7 +8610,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8603
8610
|
id?: string | undefined;
|
|
8604
8611
|
persist?: boolean | undefined;
|
|
8605
8612
|
})[] | undefined);
|
|
8606
|
-
cancelIf?: Record<string,
|
|
8613
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8607
8614
|
overrideLock?: boolean | undefined;
|
|
8608
8615
|
} | undefined;
|
|
8609
8616
|
}[] | undefined;
|
|
@@ -8627,12 +8634,12 @@ declare module '@scout9/app/schemas' {
|
|
|
8627
8634
|
})[] | undefined;
|
|
8628
8635
|
removeInstructions?: string[] | undefined;
|
|
8629
8636
|
secondsDelay?: number | undefined;
|
|
8630
|
-
contextUpsert?: Record<string,
|
|
8637
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
8631
8638
|
resetIntent?: boolean | undefined;
|
|
8632
8639
|
followup?: {
|
|
8633
8640
|
message: string;
|
|
8634
8641
|
scheduled: number;
|
|
8635
|
-
cancelIf?: Record<string,
|
|
8642
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8636
8643
|
overrideLock?: boolean | undefined;
|
|
8637
8644
|
} | {
|
|
8638
8645
|
scheduled: number;
|
|
@@ -8653,7 +8660,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8653
8660
|
id?: string | undefined;
|
|
8654
8661
|
persist?: boolean | undefined;
|
|
8655
8662
|
})[] | undefined);
|
|
8656
|
-
cancelIf?: Record<string,
|
|
8663
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8657
8664
|
overrideLock?: boolean | undefined;
|
|
8658
8665
|
} | undefined;
|
|
8659
8666
|
anticipate?: {
|
|
@@ -8678,12 +8685,12 @@ declare module '@scout9/app/schemas' {
|
|
|
8678
8685
|
message?: string | undefined;
|
|
8679
8686
|
secondsDelay?: number | undefined;
|
|
8680
8687
|
scheduled?: number | undefined;
|
|
8681
|
-
contextUpsert?: Record<string,
|
|
8688
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
8682
8689
|
resetIntent?: boolean | undefined;
|
|
8683
8690
|
followup?: {
|
|
8684
8691
|
message: string;
|
|
8685
8692
|
scheduled: number;
|
|
8686
|
-
cancelIf?: Record<string,
|
|
8693
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8687
8694
|
overrideLock?: boolean | undefined;
|
|
8688
8695
|
} | {
|
|
8689
8696
|
scheduled: number;
|
|
@@ -8704,7 +8711,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8704
8711
|
id?: string | undefined;
|
|
8705
8712
|
persist?: boolean | undefined;
|
|
8706
8713
|
})[] | undefined);
|
|
8707
|
-
cancelIf?: Record<string,
|
|
8714
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8708
8715
|
overrideLock?: boolean | undefined;
|
|
8709
8716
|
} | undefined;
|
|
8710
8717
|
};
|
|
@@ -8728,12 +8735,12 @@ declare module '@scout9/app/schemas' {
|
|
|
8728
8735
|
message?: string | undefined;
|
|
8729
8736
|
secondsDelay?: number | undefined;
|
|
8730
8737
|
scheduled?: number | undefined;
|
|
8731
|
-
contextUpsert?: Record<string,
|
|
8738
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
8732
8739
|
resetIntent?: boolean | undefined;
|
|
8733
8740
|
followup?: {
|
|
8734
8741
|
message: string;
|
|
8735
8742
|
scheduled: number;
|
|
8736
|
-
cancelIf?: Record<string,
|
|
8743
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8737
8744
|
overrideLock?: boolean | undefined;
|
|
8738
8745
|
} | {
|
|
8739
8746
|
scheduled: number;
|
|
@@ -8754,7 +8761,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8754
8761
|
id?: string | undefined;
|
|
8755
8762
|
persist?: boolean | undefined;
|
|
8756
8763
|
})[] | undefined);
|
|
8757
|
-
cancelIf?: Record<string,
|
|
8764
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8758
8765
|
overrideLock?: boolean | undefined;
|
|
8759
8766
|
} | undefined;
|
|
8760
8767
|
};
|
|
@@ -8779,12 +8786,12 @@ declare module '@scout9/app/schemas' {
|
|
|
8779
8786
|
})[] | undefined;
|
|
8780
8787
|
removeInstructions?: string[] | undefined;
|
|
8781
8788
|
secondsDelay?: number | undefined;
|
|
8782
|
-
contextUpsert?: Record<string,
|
|
8789
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
8783
8790
|
resetIntent?: boolean | undefined;
|
|
8784
8791
|
followup?: {
|
|
8785
8792
|
message: string;
|
|
8786
8793
|
scheduled: number;
|
|
8787
|
-
cancelIf?: Record<string,
|
|
8794
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8788
8795
|
overrideLock?: boolean | undefined;
|
|
8789
8796
|
} | {
|
|
8790
8797
|
scheduled: number;
|
|
@@ -8805,7 +8812,7 @@ declare module '@scout9/app/schemas' {
|
|
|
8805
8812
|
id?: string | undefined;
|
|
8806
8813
|
persist?: boolean | undefined;
|
|
8807
8814
|
})[] | undefined);
|
|
8808
|
-
cancelIf?: Record<string,
|
|
8815
|
+
cancelIf?: Record<string, any> | undefined;
|
|
8809
8816
|
overrideLock?: boolean | undefined;
|
|
8810
8817
|
} | undefined;
|
|
8811
8818
|
}[] | undefined;
|
|
@@ -9403,26 +9410,26 @@ declare module '@scout9/app/schemas' {
|
|
|
9403
9410
|
}>]>, "many">]>>;
|
|
9404
9411
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9405
9412
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
9406
|
-
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">]>>>;
|
|
9413
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
9407
9414
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
9408
9415
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
9409
9416
|
scheduled: z.ZodNumber;
|
|
9410
|
-
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">]>>>;
|
|
9417
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
9411
9418
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
9412
9419
|
message: z.ZodString;
|
|
9413
9420
|
}, "strip", z.ZodTypeAny, {
|
|
9414
9421
|
message: string;
|
|
9415
9422
|
scheduled: number;
|
|
9416
|
-
cancelIf?: Record<string,
|
|
9423
|
+
cancelIf?: Record<string, any> | undefined;
|
|
9417
9424
|
overrideLock?: boolean | undefined;
|
|
9418
9425
|
}, {
|
|
9419
9426
|
message: string;
|
|
9420
9427
|
scheduled: number;
|
|
9421
|
-
cancelIf?: Record<string,
|
|
9428
|
+
cancelIf?: Record<string, any> | undefined;
|
|
9422
9429
|
overrideLock?: boolean | undefined;
|
|
9423
9430
|
}>, z.ZodObject<{
|
|
9424
9431
|
scheduled: z.ZodNumber;
|
|
9425
|
-
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">]>>>;
|
|
9432
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
9426
9433
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
9427
9434
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
9428
9435
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -9468,7 +9475,7 @@ declare module '@scout9/app/schemas' {
|
|
|
9468
9475
|
id?: string | undefined;
|
|
9469
9476
|
persist?: boolean | undefined;
|
|
9470
9477
|
})[] | undefined);
|
|
9471
|
-
cancelIf?: Record<string,
|
|
9478
|
+
cancelIf?: Record<string, any> | undefined;
|
|
9472
9479
|
overrideLock?: boolean | undefined;
|
|
9473
9480
|
}, {
|
|
9474
9481
|
scheduled: number;
|
|
@@ -9489,7 +9496,7 @@ declare module '@scout9/app/schemas' {
|
|
|
9489
9496
|
id?: string | undefined;
|
|
9490
9497
|
persist?: boolean | undefined;
|
|
9491
9498
|
})[] | undefined);
|
|
9492
|
-
cancelIf?: Record<string,
|
|
9499
|
+
cancelIf?: Record<string, any> | undefined;
|
|
9493
9500
|
overrideLock?: boolean | undefined;
|
|
9494
9501
|
}>]>>;
|
|
9495
9502
|
anticipate: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
@@ -9538,26 +9545,26 @@ declare module '@scout9/app/schemas' {
|
|
|
9538
9545
|
message: z.ZodOptional<z.ZodString>;
|
|
9539
9546
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
9540
9547
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
9541
|
-
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">]>>>;
|
|
9548
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
9542
9549
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
9543
9550
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
9544
9551
|
scheduled: z.ZodNumber;
|
|
9545
|
-
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">]>>>;
|
|
9552
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
9546
9553
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
9547
9554
|
message: z.ZodString;
|
|
9548
9555
|
}, "strip", z.ZodTypeAny, {
|
|
9549
9556
|
message: string;
|
|
9550
9557
|
scheduled: number;
|
|
9551
|
-
cancelIf?: Record<string,
|
|
9558
|
+
cancelIf?: Record<string, any> | undefined;
|
|
9552
9559
|
overrideLock?: boolean | undefined;
|
|
9553
9560
|
}, {
|
|
9554
9561
|
message: string;
|
|
9555
9562
|
scheduled: number;
|
|
9556
|
-
cancelIf?: Record<string,
|
|
9563
|
+
cancelIf?: Record<string, any> | undefined;
|
|
9557
9564
|
overrideLock?: boolean | undefined;
|
|
9558
9565
|
}>, z.ZodObject<{
|
|
9559
9566
|
scheduled: z.ZodNumber;
|
|
9560
|
-
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">]>>>;
|
|
9567
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
9561
9568
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
9562
9569
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
9563
9570
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -9603,7 +9610,7 @@ declare module '@scout9/app/schemas' {
|
|
|
9603
9610
|
id?: string | undefined;
|
|
9604
9611
|
persist?: boolean | undefined;
|
|
9605
9612
|
})[] | undefined);
|
|
9606
|
-
cancelIf?: Record<string,
|
|
9613
|
+
cancelIf?: Record<string, any> | undefined;
|
|
9607
9614
|
overrideLock?: boolean | undefined;
|
|
9608
9615
|
}, {
|
|
9609
9616
|
scheduled: number;
|
|
@@ -9624,7 +9631,7 @@ declare module '@scout9/app/schemas' {
|
|
|
9624
9631
|
id?: string | undefined;
|
|
9625
9632
|
persist?: boolean | undefined;
|
|
9626
9633
|
})[] | undefined);
|
|
9627
|
-
cancelIf?: Record<string,
|
|
9634
|
+
cancelIf?: Record<string, any> | undefined;
|
|
9628
9635
|
overrideLock?: boolean | undefined;
|
|
9629
9636
|
}>]>>;
|
|
9630
9637
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -9647,12 +9654,12 @@ declare module '@scout9/app/schemas' {
|
|
|
9647
9654
|
message?: string | undefined;
|
|
9648
9655
|
secondsDelay?: number | undefined;
|
|
9649
9656
|
scheduled?: number | undefined;
|
|
9650
|
-
contextUpsert?: Record<string,
|
|
9657
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
9651
9658
|
resetIntent?: boolean | undefined;
|
|
9652
9659
|
followup?: {
|
|
9653
9660
|
message: string;
|
|
9654
9661
|
scheduled: number;
|
|
9655
|
-
cancelIf?: Record<string,
|
|
9662
|
+
cancelIf?: Record<string, any> | undefined;
|
|
9656
9663
|
overrideLock?: boolean | undefined;
|
|
9657
9664
|
} | {
|
|
9658
9665
|
scheduled: number;
|
|
@@ -9673,7 +9680,7 @@ declare module '@scout9/app/schemas' {
|
|
|
9673
9680
|
id?: string | undefined;
|
|
9674
9681
|
persist?: boolean | undefined;
|
|
9675
9682
|
})[] | undefined);
|
|
9676
|
-
cancelIf?: Record<string,
|
|
9683
|
+
cancelIf?: Record<string, any> | undefined;
|
|
9677
9684
|
overrideLock?: boolean | undefined;
|
|
9678
9685
|
} | undefined;
|
|
9679
9686
|
}, {
|
|
@@ -9696,12 +9703,12 @@ declare module '@scout9/app/schemas' {
|
|
|
9696
9703
|
message?: string | undefined;
|
|
9697
9704
|
secondsDelay?: number | undefined;
|
|
9698
9705
|
scheduled?: number | undefined;
|
|
9699
|
-
contextUpsert?: Record<string,
|
|
9706
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
9700
9707
|
resetIntent?: boolean | undefined;
|
|
9701
9708
|
followup?: {
|
|
9702
9709
|
message: string;
|
|
9703
9710
|
scheduled: number;
|
|
9704
|
-
cancelIf?: Record<string,
|
|
9711
|
+
cancelIf?: Record<string, any> | undefined;
|
|
9705
9712
|
overrideLock?: boolean | undefined;
|
|
9706
9713
|
} | {
|
|
9707
9714
|
scheduled: number;
|
|
@@ -9722,7 +9729,7 @@ declare module '@scout9/app/schemas' {
|
|
|
9722
9729
|
id?: string | undefined;
|
|
9723
9730
|
persist?: boolean | undefined;
|
|
9724
9731
|
})[] | undefined);
|
|
9725
|
-
cancelIf?: Record<string,
|
|
9732
|
+
cancelIf?: Record<string, any> | undefined;
|
|
9726
9733
|
overrideLock?: boolean | undefined;
|
|
9727
9734
|
} | undefined;
|
|
9728
9735
|
}>;
|
|
@@ -9770,26 +9777,26 @@ declare module '@scout9/app/schemas' {
|
|
|
9770
9777
|
message: z.ZodOptional<z.ZodString>;
|
|
9771
9778
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
9772
9779
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
9773
|
-
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">]>>>;
|
|
9780
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
9774
9781
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
9775
9782
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
9776
9783
|
scheduled: z.ZodNumber;
|
|
9777
|
-
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">]>>>;
|
|
9784
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
9778
9785
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
9779
9786
|
message: z.ZodString;
|
|
9780
9787
|
}, "strip", z.ZodTypeAny, {
|
|
9781
9788
|
message: string;
|
|
9782
9789
|
scheduled: number;
|
|
9783
|
-
cancelIf?: Record<string,
|
|
9790
|
+
cancelIf?: Record<string, any> | undefined;
|
|
9784
9791
|
overrideLock?: boolean | undefined;
|
|
9785
9792
|
}, {
|
|
9786
9793
|
message: string;
|
|
9787
9794
|
scheduled: number;
|
|
9788
|
-
cancelIf?: Record<string,
|
|
9795
|
+
cancelIf?: Record<string, any> | undefined;
|
|
9789
9796
|
overrideLock?: boolean | undefined;
|
|
9790
9797
|
}>, z.ZodObject<{
|
|
9791
9798
|
scheduled: z.ZodNumber;
|
|
9792
|
-
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">]>>>;
|
|
9799
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
9793
9800
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
9794
9801
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
9795
9802
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -9835,7 +9842,7 @@ declare module '@scout9/app/schemas' {
|
|
|
9835
9842
|
id?: string | undefined;
|
|
9836
9843
|
persist?: boolean | undefined;
|
|
9837
9844
|
})[] | undefined);
|
|
9838
|
-
cancelIf?: Record<string,
|
|
9845
|
+
cancelIf?: Record<string, any> | undefined;
|
|
9839
9846
|
overrideLock?: boolean | undefined;
|
|
9840
9847
|
}, {
|
|
9841
9848
|
scheduled: number;
|
|
@@ -9856,7 +9863,7 @@ declare module '@scout9/app/schemas' {
|
|
|
9856
9863
|
id?: string | undefined;
|
|
9857
9864
|
persist?: boolean | undefined;
|
|
9858
9865
|
})[] | undefined);
|
|
9859
|
-
cancelIf?: Record<string,
|
|
9866
|
+
cancelIf?: Record<string, any> | undefined;
|
|
9860
9867
|
overrideLock?: boolean | undefined;
|
|
9861
9868
|
}>]>>;
|
|
9862
9869
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -9879,12 +9886,12 @@ declare module '@scout9/app/schemas' {
|
|
|
9879
9886
|
message?: string | undefined;
|
|
9880
9887
|
secondsDelay?: number | undefined;
|
|
9881
9888
|
scheduled?: number | undefined;
|
|
9882
|
-
contextUpsert?: Record<string,
|
|
9889
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
9883
9890
|
resetIntent?: boolean | undefined;
|
|
9884
9891
|
followup?: {
|
|
9885
9892
|
message: string;
|
|
9886
9893
|
scheduled: number;
|
|
9887
|
-
cancelIf?: Record<string,
|
|
9894
|
+
cancelIf?: Record<string, any> | undefined;
|
|
9888
9895
|
overrideLock?: boolean | undefined;
|
|
9889
9896
|
} | {
|
|
9890
9897
|
scheduled: number;
|
|
@@ -9905,7 +9912,7 @@ declare module '@scout9/app/schemas' {
|
|
|
9905
9912
|
id?: string | undefined;
|
|
9906
9913
|
persist?: boolean | undefined;
|
|
9907
9914
|
})[] | undefined);
|
|
9908
|
-
cancelIf?: Record<string,
|
|
9915
|
+
cancelIf?: Record<string, any> | undefined;
|
|
9909
9916
|
overrideLock?: boolean | undefined;
|
|
9910
9917
|
} | undefined;
|
|
9911
9918
|
}, {
|
|
@@ -9928,12 +9935,12 @@ declare module '@scout9/app/schemas' {
|
|
|
9928
9935
|
message?: string | undefined;
|
|
9929
9936
|
secondsDelay?: number | undefined;
|
|
9930
9937
|
scheduled?: number | undefined;
|
|
9931
|
-
contextUpsert?: Record<string,
|
|
9938
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
9932
9939
|
resetIntent?: boolean | undefined;
|
|
9933
9940
|
followup?: {
|
|
9934
9941
|
message: string;
|
|
9935
9942
|
scheduled: number;
|
|
9936
|
-
cancelIf?: Record<string,
|
|
9943
|
+
cancelIf?: Record<string, any> | undefined;
|
|
9937
9944
|
overrideLock?: boolean | undefined;
|
|
9938
9945
|
} | {
|
|
9939
9946
|
scheduled: number;
|
|
@@ -9954,7 +9961,7 @@ declare module '@scout9/app/schemas' {
|
|
|
9954
9961
|
id?: string | undefined;
|
|
9955
9962
|
persist?: boolean | undefined;
|
|
9956
9963
|
})[] | undefined);
|
|
9957
|
-
cancelIf?: Record<string,
|
|
9964
|
+
cancelIf?: Record<string, any> | undefined;
|
|
9958
9965
|
overrideLock?: boolean | undefined;
|
|
9959
9966
|
} | undefined;
|
|
9960
9967
|
}>;
|
|
@@ -9980,12 +9987,12 @@ declare module '@scout9/app/schemas' {
|
|
|
9980
9987
|
message?: string | undefined;
|
|
9981
9988
|
secondsDelay?: number | undefined;
|
|
9982
9989
|
scheduled?: number | undefined;
|
|
9983
|
-
contextUpsert?: Record<string,
|
|
9990
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
9984
9991
|
resetIntent?: boolean | undefined;
|
|
9985
9992
|
followup?: {
|
|
9986
9993
|
message: string;
|
|
9987
9994
|
scheduled: number;
|
|
9988
|
-
cancelIf?: Record<string,
|
|
9995
|
+
cancelIf?: Record<string, any> | undefined;
|
|
9989
9996
|
overrideLock?: boolean | undefined;
|
|
9990
9997
|
} | {
|
|
9991
9998
|
scheduled: number;
|
|
@@ -10006,7 +10013,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10006
10013
|
id?: string | undefined;
|
|
10007
10014
|
persist?: boolean | undefined;
|
|
10008
10015
|
})[] | undefined);
|
|
10009
|
-
cancelIf?: Record<string,
|
|
10016
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10010
10017
|
overrideLock?: boolean | undefined;
|
|
10011
10018
|
} | undefined;
|
|
10012
10019
|
};
|
|
@@ -10030,12 +10037,12 @@ declare module '@scout9/app/schemas' {
|
|
|
10030
10037
|
message?: string | undefined;
|
|
10031
10038
|
secondsDelay?: number | undefined;
|
|
10032
10039
|
scheduled?: number | undefined;
|
|
10033
|
-
contextUpsert?: Record<string,
|
|
10040
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
10034
10041
|
resetIntent?: boolean | undefined;
|
|
10035
10042
|
followup?: {
|
|
10036
10043
|
message: string;
|
|
10037
10044
|
scheduled: number;
|
|
10038
|
-
cancelIf?: Record<string,
|
|
10045
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10039
10046
|
overrideLock?: boolean | undefined;
|
|
10040
10047
|
} | {
|
|
10041
10048
|
scheduled: number;
|
|
@@ -10056,7 +10063,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10056
10063
|
id?: string | undefined;
|
|
10057
10064
|
persist?: boolean | undefined;
|
|
10058
10065
|
})[] | undefined);
|
|
10059
|
-
cancelIf?: Record<string,
|
|
10066
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10060
10067
|
overrideLock?: boolean | undefined;
|
|
10061
10068
|
} | undefined;
|
|
10062
10069
|
};
|
|
@@ -10082,12 +10089,12 @@ declare module '@scout9/app/schemas' {
|
|
|
10082
10089
|
message?: string | undefined;
|
|
10083
10090
|
secondsDelay?: number | undefined;
|
|
10084
10091
|
scheduled?: number | undefined;
|
|
10085
|
-
contextUpsert?: Record<string,
|
|
10092
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
10086
10093
|
resetIntent?: boolean | undefined;
|
|
10087
10094
|
followup?: {
|
|
10088
10095
|
message: string;
|
|
10089
10096
|
scheduled: number;
|
|
10090
|
-
cancelIf?: Record<string,
|
|
10097
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10091
10098
|
overrideLock?: boolean | undefined;
|
|
10092
10099
|
} | {
|
|
10093
10100
|
scheduled: number;
|
|
@@ -10108,7 +10115,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10108
10115
|
id?: string | undefined;
|
|
10109
10116
|
persist?: boolean | undefined;
|
|
10110
10117
|
})[] | undefined);
|
|
10111
|
-
cancelIf?: Record<string,
|
|
10118
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10112
10119
|
overrideLock?: boolean | undefined;
|
|
10113
10120
|
} | undefined;
|
|
10114
10121
|
};
|
|
@@ -10132,12 +10139,12 @@ declare module '@scout9/app/schemas' {
|
|
|
10132
10139
|
message?: string | undefined;
|
|
10133
10140
|
secondsDelay?: number | undefined;
|
|
10134
10141
|
scheduled?: number | undefined;
|
|
10135
|
-
contextUpsert?: Record<string,
|
|
10142
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
10136
10143
|
resetIntent?: boolean | undefined;
|
|
10137
10144
|
followup?: {
|
|
10138
10145
|
message: string;
|
|
10139
10146
|
scheduled: number;
|
|
10140
|
-
cancelIf?: Record<string,
|
|
10147
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10141
10148
|
overrideLock?: boolean | undefined;
|
|
10142
10149
|
} | {
|
|
10143
10150
|
scheduled: number;
|
|
@@ -10158,7 +10165,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10158
10165
|
id?: string | undefined;
|
|
10159
10166
|
persist?: boolean | undefined;
|
|
10160
10167
|
})[] | undefined);
|
|
10161
|
-
cancelIf?: Record<string,
|
|
10168
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10162
10169
|
overrideLock?: boolean | undefined;
|
|
10163
10170
|
} | undefined;
|
|
10164
10171
|
};
|
|
@@ -10206,26 +10213,26 @@ declare module '@scout9/app/schemas' {
|
|
|
10206
10213
|
}>]>, "many">]>>;
|
|
10207
10214
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10208
10215
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
10209
|
-
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">]>>>;
|
|
10216
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
10210
10217
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
10211
10218
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
10212
10219
|
scheduled: z.ZodNumber;
|
|
10213
|
-
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">]>>>;
|
|
10220
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
10214
10221
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
10215
10222
|
message: z.ZodString;
|
|
10216
10223
|
}, "strip", z.ZodTypeAny, {
|
|
10217
10224
|
message: string;
|
|
10218
10225
|
scheduled: number;
|
|
10219
|
-
cancelIf?: Record<string,
|
|
10226
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10220
10227
|
overrideLock?: boolean | undefined;
|
|
10221
10228
|
}, {
|
|
10222
10229
|
message: string;
|
|
10223
10230
|
scheduled: number;
|
|
10224
|
-
cancelIf?: Record<string,
|
|
10231
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10225
10232
|
overrideLock?: boolean | undefined;
|
|
10226
10233
|
}>, z.ZodObject<{
|
|
10227
10234
|
scheduled: z.ZodNumber;
|
|
10228
|
-
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">]>>>;
|
|
10235
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
10229
10236
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
10230
10237
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
10231
10238
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -10271,7 +10278,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10271
10278
|
id?: string | undefined;
|
|
10272
10279
|
persist?: boolean | undefined;
|
|
10273
10280
|
})[] | undefined);
|
|
10274
|
-
cancelIf?: Record<string,
|
|
10281
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10275
10282
|
overrideLock?: boolean | undefined;
|
|
10276
10283
|
}, {
|
|
10277
10284
|
scheduled: number;
|
|
@@ -10292,7 +10299,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10292
10299
|
id?: string | undefined;
|
|
10293
10300
|
persist?: boolean | undefined;
|
|
10294
10301
|
})[] | undefined);
|
|
10295
|
-
cancelIf?: Record<string,
|
|
10302
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10296
10303
|
overrideLock?: boolean | undefined;
|
|
10297
10304
|
}>]>>;
|
|
10298
10305
|
keywords: z.ZodArray<z.ZodString, "many">;
|
|
@@ -10317,12 +10324,12 @@ declare module '@scout9/app/schemas' {
|
|
|
10317
10324
|
})[] | undefined;
|
|
10318
10325
|
removeInstructions?: string[] | undefined;
|
|
10319
10326
|
secondsDelay?: number | undefined;
|
|
10320
|
-
contextUpsert?: Record<string,
|
|
10327
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
10321
10328
|
resetIntent?: boolean | undefined;
|
|
10322
10329
|
followup?: {
|
|
10323
10330
|
message: string;
|
|
10324
10331
|
scheduled: number;
|
|
10325
|
-
cancelIf?: Record<string,
|
|
10332
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10326
10333
|
overrideLock?: boolean | undefined;
|
|
10327
10334
|
} | {
|
|
10328
10335
|
scheduled: number;
|
|
@@ -10343,7 +10350,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10343
10350
|
id?: string | undefined;
|
|
10344
10351
|
persist?: boolean | undefined;
|
|
10345
10352
|
})[] | undefined);
|
|
10346
|
-
cancelIf?: Record<string,
|
|
10353
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10347
10354
|
overrideLock?: boolean | undefined;
|
|
10348
10355
|
} | undefined;
|
|
10349
10356
|
}, {
|
|
@@ -10367,12 +10374,12 @@ declare module '@scout9/app/schemas' {
|
|
|
10367
10374
|
})[] | undefined;
|
|
10368
10375
|
removeInstructions?: string[] | undefined;
|
|
10369
10376
|
secondsDelay?: number | undefined;
|
|
10370
|
-
contextUpsert?: Record<string,
|
|
10377
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
10371
10378
|
resetIntent?: boolean | undefined;
|
|
10372
10379
|
followup?: {
|
|
10373
10380
|
message: string;
|
|
10374
10381
|
scheduled: number;
|
|
10375
|
-
cancelIf?: Record<string,
|
|
10382
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10376
10383
|
overrideLock?: boolean | undefined;
|
|
10377
10384
|
} | {
|
|
10378
10385
|
scheduled: number;
|
|
@@ -10393,7 +10400,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10393
10400
|
id?: string | undefined;
|
|
10394
10401
|
persist?: boolean | undefined;
|
|
10395
10402
|
})[] | undefined);
|
|
10396
|
-
cancelIf?: Record<string,
|
|
10403
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10397
10404
|
overrideLock?: boolean | undefined;
|
|
10398
10405
|
} | undefined;
|
|
10399
10406
|
}>, "many">]>>;
|
|
@@ -10417,12 +10424,12 @@ declare module '@scout9/app/schemas' {
|
|
|
10417
10424
|
})[] | undefined;
|
|
10418
10425
|
removeInstructions?: string[] | undefined;
|
|
10419
10426
|
secondsDelay?: number | undefined;
|
|
10420
|
-
contextUpsert?: Record<string,
|
|
10427
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
10421
10428
|
resetIntent?: boolean | undefined;
|
|
10422
10429
|
followup?: {
|
|
10423
10430
|
message: string;
|
|
10424
10431
|
scheduled: number;
|
|
10425
|
-
cancelIf?: Record<string,
|
|
10432
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10426
10433
|
overrideLock?: boolean | undefined;
|
|
10427
10434
|
} | {
|
|
10428
10435
|
scheduled: number;
|
|
@@ -10443,7 +10450,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10443
10450
|
id?: string | undefined;
|
|
10444
10451
|
persist?: boolean | undefined;
|
|
10445
10452
|
})[] | undefined);
|
|
10446
|
-
cancelIf?: Record<string,
|
|
10453
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10447
10454
|
overrideLock?: boolean | undefined;
|
|
10448
10455
|
} | undefined;
|
|
10449
10456
|
anticipate?: {
|
|
@@ -10468,12 +10475,12 @@ declare module '@scout9/app/schemas' {
|
|
|
10468
10475
|
message?: string | undefined;
|
|
10469
10476
|
secondsDelay?: number | undefined;
|
|
10470
10477
|
scheduled?: number | undefined;
|
|
10471
|
-
contextUpsert?: Record<string,
|
|
10478
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
10472
10479
|
resetIntent?: boolean | undefined;
|
|
10473
10480
|
followup?: {
|
|
10474
10481
|
message: string;
|
|
10475
10482
|
scheduled: number;
|
|
10476
|
-
cancelIf?: Record<string,
|
|
10483
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10477
10484
|
overrideLock?: boolean | undefined;
|
|
10478
10485
|
} | {
|
|
10479
10486
|
scheduled: number;
|
|
@@ -10494,7 +10501,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10494
10501
|
id?: string | undefined;
|
|
10495
10502
|
persist?: boolean | undefined;
|
|
10496
10503
|
})[] | undefined);
|
|
10497
|
-
cancelIf?: Record<string,
|
|
10504
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10498
10505
|
overrideLock?: boolean | undefined;
|
|
10499
10506
|
} | undefined;
|
|
10500
10507
|
};
|
|
@@ -10518,12 +10525,12 @@ declare module '@scout9/app/schemas' {
|
|
|
10518
10525
|
message?: string | undefined;
|
|
10519
10526
|
secondsDelay?: number | undefined;
|
|
10520
10527
|
scheduled?: number | undefined;
|
|
10521
|
-
contextUpsert?: Record<string,
|
|
10528
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
10522
10529
|
resetIntent?: boolean | undefined;
|
|
10523
10530
|
followup?: {
|
|
10524
10531
|
message: string;
|
|
10525
10532
|
scheduled: number;
|
|
10526
|
-
cancelIf?: Record<string,
|
|
10533
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10527
10534
|
overrideLock?: boolean | undefined;
|
|
10528
10535
|
} | {
|
|
10529
10536
|
scheduled: number;
|
|
@@ -10544,7 +10551,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10544
10551
|
id?: string | undefined;
|
|
10545
10552
|
persist?: boolean | undefined;
|
|
10546
10553
|
})[] | undefined);
|
|
10547
|
-
cancelIf?: Record<string,
|
|
10554
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10548
10555
|
overrideLock?: boolean | undefined;
|
|
10549
10556
|
} | undefined;
|
|
10550
10557
|
};
|
|
@@ -10569,12 +10576,12 @@ declare module '@scout9/app/schemas' {
|
|
|
10569
10576
|
})[] | undefined;
|
|
10570
10577
|
removeInstructions?: string[] | undefined;
|
|
10571
10578
|
secondsDelay?: number | undefined;
|
|
10572
|
-
contextUpsert?: Record<string,
|
|
10579
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
10573
10580
|
resetIntent?: boolean | undefined;
|
|
10574
10581
|
followup?: {
|
|
10575
10582
|
message: string;
|
|
10576
10583
|
scheduled: number;
|
|
10577
|
-
cancelIf?: Record<string,
|
|
10584
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10578
10585
|
overrideLock?: boolean | undefined;
|
|
10579
10586
|
} | {
|
|
10580
10587
|
scheduled: number;
|
|
@@ -10595,7 +10602,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10595
10602
|
id?: string | undefined;
|
|
10596
10603
|
persist?: boolean | undefined;
|
|
10597
10604
|
})[] | undefined);
|
|
10598
|
-
cancelIf?: Record<string,
|
|
10605
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10599
10606
|
overrideLock?: boolean | undefined;
|
|
10600
10607
|
} | undefined;
|
|
10601
10608
|
}[] | undefined;
|
|
@@ -10619,12 +10626,12 @@ declare module '@scout9/app/schemas' {
|
|
|
10619
10626
|
})[] | undefined;
|
|
10620
10627
|
removeInstructions?: string[] | undefined;
|
|
10621
10628
|
secondsDelay?: number | undefined;
|
|
10622
|
-
contextUpsert?: Record<string,
|
|
10629
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
10623
10630
|
resetIntent?: boolean | undefined;
|
|
10624
10631
|
followup?: {
|
|
10625
10632
|
message: string;
|
|
10626
10633
|
scheduled: number;
|
|
10627
|
-
cancelIf?: Record<string,
|
|
10634
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10628
10635
|
overrideLock?: boolean | undefined;
|
|
10629
10636
|
} | {
|
|
10630
10637
|
scheduled: number;
|
|
@@ -10645,7 +10652,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10645
10652
|
id?: string | undefined;
|
|
10646
10653
|
persist?: boolean | undefined;
|
|
10647
10654
|
})[] | undefined);
|
|
10648
|
-
cancelIf?: Record<string,
|
|
10655
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10649
10656
|
overrideLock?: boolean | undefined;
|
|
10650
10657
|
} | undefined;
|
|
10651
10658
|
anticipate?: {
|
|
@@ -10670,12 +10677,12 @@ declare module '@scout9/app/schemas' {
|
|
|
10670
10677
|
message?: string | undefined;
|
|
10671
10678
|
secondsDelay?: number | undefined;
|
|
10672
10679
|
scheduled?: number | undefined;
|
|
10673
|
-
contextUpsert?: Record<string,
|
|
10680
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
10674
10681
|
resetIntent?: boolean | undefined;
|
|
10675
10682
|
followup?: {
|
|
10676
10683
|
message: string;
|
|
10677
10684
|
scheduled: number;
|
|
10678
|
-
cancelIf?: Record<string,
|
|
10685
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10679
10686
|
overrideLock?: boolean | undefined;
|
|
10680
10687
|
} | {
|
|
10681
10688
|
scheduled: number;
|
|
@@ -10696,7 +10703,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10696
10703
|
id?: string | undefined;
|
|
10697
10704
|
persist?: boolean | undefined;
|
|
10698
10705
|
})[] | undefined);
|
|
10699
|
-
cancelIf?: Record<string,
|
|
10706
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10700
10707
|
overrideLock?: boolean | undefined;
|
|
10701
10708
|
} | undefined;
|
|
10702
10709
|
};
|
|
@@ -10720,12 +10727,12 @@ declare module '@scout9/app/schemas' {
|
|
|
10720
10727
|
message?: string | undefined;
|
|
10721
10728
|
secondsDelay?: number | undefined;
|
|
10722
10729
|
scheduled?: number | undefined;
|
|
10723
|
-
contextUpsert?: Record<string,
|
|
10730
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
10724
10731
|
resetIntent?: boolean | undefined;
|
|
10725
10732
|
followup?: {
|
|
10726
10733
|
message: string;
|
|
10727
10734
|
scheduled: number;
|
|
10728
|
-
cancelIf?: Record<string,
|
|
10735
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10729
10736
|
overrideLock?: boolean | undefined;
|
|
10730
10737
|
} | {
|
|
10731
10738
|
scheduled: number;
|
|
@@ -10746,7 +10753,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10746
10753
|
id?: string | undefined;
|
|
10747
10754
|
persist?: boolean | undefined;
|
|
10748
10755
|
})[] | undefined);
|
|
10749
|
-
cancelIf?: Record<string,
|
|
10756
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10750
10757
|
overrideLock?: boolean | undefined;
|
|
10751
10758
|
} | undefined;
|
|
10752
10759
|
};
|
|
@@ -10771,12 +10778,12 @@ declare module '@scout9/app/schemas' {
|
|
|
10771
10778
|
})[] | undefined;
|
|
10772
10779
|
removeInstructions?: string[] | undefined;
|
|
10773
10780
|
secondsDelay?: number | undefined;
|
|
10774
|
-
contextUpsert?: Record<string,
|
|
10781
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
10775
10782
|
resetIntent?: boolean | undefined;
|
|
10776
10783
|
followup?: {
|
|
10777
10784
|
message: string;
|
|
10778
10785
|
scheduled: number;
|
|
10779
|
-
cancelIf?: Record<string,
|
|
10786
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10780
10787
|
overrideLock?: boolean | undefined;
|
|
10781
10788
|
} | {
|
|
10782
10789
|
scheduled: number;
|
|
@@ -10797,7 +10804,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10797
10804
|
id?: string | undefined;
|
|
10798
10805
|
persist?: boolean | undefined;
|
|
10799
10806
|
})[] | undefined);
|
|
10800
|
-
cancelIf?: Record<string,
|
|
10807
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10801
10808
|
overrideLock?: boolean | undefined;
|
|
10802
10809
|
} | undefined;
|
|
10803
10810
|
}[] | undefined;
|
|
@@ -10845,26 +10852,26 @@ declare module '@scout9/app/schemas' {
|
|
|
10845
10852
|
}>]>, "many">]>>;
|
|
10846
10853
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10847
10854
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
10848
|
-
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">]>>>;
|
|
10855
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
10849
10856
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
10850
10857
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
10851
10858
|
scheduled: z.ZodNumber;
|
|
10852
|
-
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">]>>>;
|
|
10859
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
10853
10860
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
10854
10861
|
message: z.ZodString;
|
|
10855
10862
|
}, "strip", z.ZodTypeAny, {
|
|
10856
10863
|
message: string;
|
|
10857
10864
|
scheduled: number;
|
|
10858
|
-
cancelIf?: Record<string,
|
|
10865
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10859
10866
|
overrideLock?: boolean | undefined;
|
|
10860
10867
|
}, {
|
|
10861
10868
|
message: string;
|
|
10862
10869
|
scheduled: number;
|
|
10863
|
-
cancelIf?: Record<string,
|
|
10870
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10864
10871
|
overrideLock?: boolean | undefined;
|
|
10865
10872
|
}>, z.ZodObject<{
|
|
10866
10873
|
scheduled: z.ZodNumber;
|
|
10867
|
-
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">]>>>;
|
|
10874
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
10868
10875
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
10869
10876
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
10870
10877
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -10910,7 +10917,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10910
10917
|
id?: string | undefined;
|
|
10911
10918
|
persist?: boolean | undefined;
|
|
10912
10919
|
})[] | undefined);
|
|
10913
|
-
cancelIf?: Record<string,
|
|
10920
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10914
10921
|
overrideLock?: boolean | undefined;
|
|
10915
10922
|
}, {
|
|
10916
10923
|
scheduled: number;
|
|
@@ -10931,7 +10938,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10931
10938
|
id?: string | undefined;
|
|
10932
10939
|
persist?: boolean | undefined;
|
|
10933
10940
|
})[] | undefined);
|
|
10934
|
-
cancelIf?: Record<string,
|
|
10941
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10935
10942
|
overrideLock?: boolean | undefined;
|
|
10936
10943
|
}>]>>;
|
|
10937
10944
|
anticipate: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
@@ -10980,26 +10987,26 @@ declare module '@scout9/app/schemas' {
|
|
|
10980
10987
|
message: z.ZodOptional<z.ZodString>;
|
|
10981
10988
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
10982
10989
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
10983
|
-
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">]>>>;
|
|
10990
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
10984
10991
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
10985
10992
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
10986
10993
|
scheduled: z.ZodNumber;
|
|
10987
|
-
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">]>>>;
|
|
10994
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
10988
10995
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
10989
10996
|
message: z.ZodString;
|
|
10990
10997
|
}, "strip", z.ZodTypeAny, {
|
|
10991
10998
|
message: string;
|
|
10992
10999
|
scheduled: number;
|
|
10993
|
-
cancelIf?: Record<string,
|
|
11000
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10994
11001
|
overrideLock?: boolean | undefined;
|
|
10995
11002
|
}, {
|
|
10996
11003
|
message: string;
|
|
10997
11004
|
scheduled: number;
|
|
10998
|
-
cancelIf?: Record<string,
|
|
11005
|
+
cancelIf?: Record<string, any> | undefined;
|
|
10999
11006
|
overrideLock?: boolean | undefined;
|
|
11000
11007
|
}>, z.ZodObject<{
|
|
11001
11008
|
scheduled: z.ZodNumber;
|
|
11002
|
-
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">]>>>;
|
|
11009
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
11003
11010
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
11004
11011
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
11005
11012
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -11045,7 +11052,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11045
11052
|
id?: string | undefined;
|
|
11046
11053
|
persist?: boolean | undefined;
|
|
11047
11054
|
})[] | undefined);
|
|
11048
|
-
cancelIf?: Record<string,
|
|
11055
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11049
11056
|
overrideLock?: boolean | undefined;
|
|
11050
11057
|
}, {
|
|
11051
11058
|
scheduled: number;
|
|
@@ -11066,7 +11073,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11066
11073
|
id?: string | undefined;
|
|
11067
11074
|
persist?: boolean | undefined;
|
|
11068
11075
|
})[] | undefined);
|
|
11069
|
-
cancelIf?: Record<string,
|
|
11076
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11070
11077
|
overrideLock?: boolean | undefined;
|
|
11071
11078
|
}>]>>;
|
|
11072
11079
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11089,12 +11096,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11089
11096
|
message?: string | undefined;
|
|
11090
11097
|
secondsDelay?: number | undefined;
|
|
11091
11098
|
scheduled?: number | undefined;
|
|
11092
|
-
contextUpsert?: Record<string,
|
|
11099
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
11093
11100
|
resetIntent?: boolean | undefined;
|
|
11094
11101
|
followup?: {
|
|
11095
11102
|
message: string;
|
|
11096
11103
|
scheduled: number;
|
|
11097
|
-
cancelIf?: Record<string,
|
|
11104
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11098
11105
|
overrideLock?: boolean | undefined;
|
|
11099
11106
|
} | {
|
|
11100
11107
|
scheduled: number;
|
|
@@ -11115,7 +11122,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11115
11122
|
id?: string | undefined;
|
|
11116
11123
|
persist?: boolean | undefined;
|
|
11117
11124
|
})[] | undefined);
|
|
11118
|
-
cancelIf?: Record<string,
|
|
11125
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11119
11126
|
overrideLock?: boolean | undefined;
|
|
11120
11127
|
} | undefined;
|
|
11121
11128
|
}, {
|
|
@@ -11138,12 +11145,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11138
11145
|
message?: string | undefined;
|
|
11139
11146
|
secondsDelay?: number | undefined;
|
|
11140
11147
|
scheduled?: number | undefined;
|
|
11141
|
-
contextUpsert?: Record<string,
|
|
11148
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
11142
11149
|
resetIntent?: boolean | undefined;
|
|
11143
11150
|
followup?: {
|
|
11144
11151
|
message: string;
|
|
11145
11152
|
scheduled: number;
|
|
11146
|
-
cancelIf?: Record<string,
|
|
11153
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11147
11154
|
overrideLock?: boolean | undefined;
|
|
11148
11155
|
} | {
|
|
11149
11156
|
scheduled: number;
|
|
@@ -11164,7 +11171,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11164
11171
|
id?: string | undefined;
|
|
11165
11172
|
persist?: boolean | undefined;
|
|
11166
11173
|
})[] | undefined);
|
|
11167
|
-
cancelIf?: Record<string,
|
|
11174
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11168
11175
|
overrideLock?: boolean | undefined;
|
|
11169
11176
|
} | undefined;
|
|
11170
11177
|
}>;
|
|
@@ -11212,26 +11219,26 @@ declare module '@scout9/app/schemas' {
|
|
|
11212
11219
|
message: z.ZodOptional<z.ZodString>;
|
|
11213
11220
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
11214
11221
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
11215
|
-
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">]>>>;
|
|
11222
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
11216
11223
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
11217
11224
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
11218
11225
|
scheduled: z.ZodNumber;
|
|
11219
|
-
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">]>>>;
|
|
11226
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
11220
11227
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
11221
11228
|
message: z.ZodString;
|
|
11222
11229
|
}, "strip", z.ZodTypeAny, {
|
|
11223
11230
|
message: string;
|
|
11224
11231
|
scheduled: number;
|
|
11225
|
-
cancelIf?: Record<string,
|
|
11232
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11226
11233
|
overrideLock?: boolean | undefined;
|
|
11227
11234
|
}, {
|
|
11228
11235
|
message: string;
|
|
11229
11236
|
scheduled: number;
|
|
11230
|
-
cancelIf?: Record<string,
|
|
11237
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11231
11238
|
overrideLock?: boolean | undefined;
|
|
11232
11239
|
}>, z.ZodObject<{
|
|
11233
11240
|
scheduled: z.ZodNumber;
|
|
11234
|
-
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">]>>>;
|
|
11241
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
11235
11242
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
11236
11243
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
11237
11244
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -11277,7 +11284,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11277
11284
|
id?: string | undefined;
|
|
11278
11285
|
persist?: boolean | undefined;
|
|
11279
11286
|
})[] | undefined);
|
|
11280
|
-
cancelIf?: Record<string,
|
|
11287
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11281
11288
|
overrideLock?: boolean | undefined;
|
|
11282
11289
|
}, {
|
|
11283
11290
|
scheduled: number;
|
|
@@ -11298,7 +11305,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11298
11305
|
id?: string | undefined;
|
|
11299
11306
|
persist?: boolean | undefined;
|
|
11300
11307
|
})[] | undefined);
|
|
11301
|
-
cancelIf?: Record<string,
|
|
11308
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11302
11309
|
overrideLock?: boolean | undefined;
|
|
11303
11310
|
}>]>>;
|
|
11304
11311
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11321,12 +11328,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11321
11328
|
message?: string | undefined;
|
|
11322
11329
|
secondsDelay?: number | undefined;
|
|
11323
11330
|
scheduled?: number | undefined;
|
|
11324
|
-
contextUpsert?: Record<string,
|
|
11331
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
11325
11332
|
resetIntent?: boolean | undefined;
|
|
11326
11333
|
followup?: {
|
|
11327
11334
|
message: string;
|
|
11328
11335
|
scheduled: number;
|
|
11329
|
-
cancelIf?: Record<string,
|
|
11336
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11330
11337
|
overrideLock?: boolean | undefined;
|
|
11331
11338
|
} | {
|
|
11332
11339
|
scheduled: number;
|
|
@@ -11347,7 +11354,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11347
11354
|
id?: string | undefined;
|
|
11348
11355
|
persist?: boolean | undefined;
|
|
11349
11356
|
})[] | undefined);
|
|
11350
|
-
cancelIf?: Record<string,
|
|
11357
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11351
11358
|
overrideLock?: boolean | undefined;
|
|
11352
11359
|
} | undefined;
|
|
11353
11360
|
}, {
|
|
@@ -11370,12 +11377,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11370
11377
|
message?: string | undefined;
|
|
11371
11378
|
secondsDelay?: number | undefined;
|
|
11372
11379
|
scheduled?: number | undefined;
|
|
11373
|
-
contextUpsert?: Record<string,
|
|
11380
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
11374
11381
|
resetIntent?: boolean | undefined;
|
|
11375
11382
|
followup?: {
|
|
11376
11383
|
message: string;
|
|
11377
11384
|
scheduled: number;
|
|
11378
|
-
cancelIf?: Record<string,
|
|
11385
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11379
11386
|
overrideLock?: boolean | undefined;
|
|
11380
11387
|
} | {
|
|
11381
11388
|
scheduled: number;
|
|
@@ -11396,7 +11403,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11396
11403
|
id?: string | undefined;
|
|
11397
11404
|
persist?: boolean | undefined;
|
|
11398
11405
|
})[] | undefined);
|
|
11399
|
-
cancelIf?: Record<string,
|
|
11406
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11400
11407
|
overrideLock?: boolean | undefined;
|
|
11401
11408
|
} | undefined;
|
|
11402
11409
|
}>;
|
|
@@ -11422,12 +11429,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11422
11429
|
message?: string | undefined;
|
|
11423
11430
|
secondsDelay?: number | undefined;
|
|
11424
11431
|
scheduled?: number | undefined;
|
|
11425
|
-
contextUpsert?: Record<string,
|
|
11432
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
11426
11433
|
resetIntent?: boolean | undefined;
|
|
11427
11434
|
followup?: {
|
|
11428
11435
|
message: string;
|
|
11429
11436
|
scheduled: number;
|
|
11430
|
-
cancelIf?: Record<string,
|
|
11437
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11431
11438
|
overrideLock?: boolean | undefined;
|
|
11432
11439
|
} | {
|
|
11433
11440
|
scheduled: number;
|
|
@@ -11448,7 +11455,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11448
11455
|
id?: string | undefined;
|
|
11449
11456
|
persist?: boolean | undefined;
|
|
11450
11457
|
})[] | undefined);
|
|
11451
|
-
cancelIf?: Record<string,
|
|
11458
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11452
11459
|
overrideLock?: boolean | undefined;
|
|
11453
11460
|
} | undefined;
|
|
11454
11461
|
};
|
|
@@ -11472,12 +11479,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11472
11479
|
message?: string | undefined;
|
|
11473
11480
|
secondsDelay?: number | undefined;
|
|
11474
11481
|
scheduled?: number | undefined;
|
|
11475
|
-
contextUpsert?: Record<string,
|
|
11482
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
11476
11483
|
resetIntent?: boolean | undefined;
|
|
11477
11484
|
followup?: {
|
|
11478
11485
|
message: string;
|
|
11479
11486
|
scheduled: number;
|
|
11480
|
-
cancelIf?: Record<string,
|
|
11487
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11481
11488
|
overrideLock?: boolean | undefined;
|
|
11482
11489
|
} | {
|
|
11483
11490
|
scheduled: number;
|
|
@@ -11498,7 +11505,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11498
11505
|
id?: string | undefined;
|
|
11499
11506
|
persist?: boolean | undefined;
|
|
11500
11507
|
})[] | undefined);
|
|
11501
|
-
cancelIf?: Record<string,
|
|
11508
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11502
11509
|
overrideLock?: boolean | undefined;
|
|
11503
11510
|
} | undefined;
|
|
11504
11511
|
};
|
|
@@ -11524,12 +11531,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11524
11531
|
message?: string | undefined;
|
|
11525
11532
|
secondsDelay?: number | undefined;
|
|
11526
11533
|
scheduled?: number | undefined;
|
|
11527
|
-
contextUpsert?: Record<string,
|
|
11534
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
11528
11535
|
resetIntent?: boolean | undefined;
|
|
11529
11536
|
followup?: {
|
|
11530
11537
|
message: string;
|
|
11531
11538
|
scheduled: number;
|
|
11532
|
-
cancelIf?: Record<string,
|
|
11539
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11533
11540
|
overrideLock?: boolean | undefined;
|
|
11534
11541
|
} | {
|
|
11535
11542
|
scheduled: number;
|
|
@@ -11550,7 +11557,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11550
11557
|
id?: string | undefined;
|
|
11551
11558
|
persist?: boolean | undefined;
|
|
11552
11559
|
})[] | undefined);
|
|
11553
|
-
cancelIf?: Record<string,
|
|
11560
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11554
11561
|
overrideLock?: boolean | undefined;
|
|
11555
11562
|
} | undefined;
|
|
11556
11563
|
};
|
|
@@ -11574,12 +11581,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11574
11581
|
message?: string | undefined;
|
|
11575
11582
|
secondsDelay?: number | undefined;
|
|
11576
11583
|
scheduled?: number | undefined;
|
|
11577
|
-
contextUpsert?: Record<string,
|
|
11584
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
11578
11585
|
resetIntent?: boolean | undefined;
|
|
11579
11586
|
followup?: {
|
|
11580
11587
|
message: string;
|
|
11581
11588
|
scheduled: number;
|
|
11582
|
-
cancelIf?: Record<string,
|
|
11589
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11583
11590
|
overrideLock?: boolean | undefined;
|
|
11584
11591
|
} | {
|
|
11585
11592
|
scheduled: number;
|
|
@@ -11600,7 +11607,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11600
11607
|
id?: string | undefined;
|
|
11601
11608
|
persist?: boolean | undefined;
|
|
11602
11609
|
})[] | undefined);
|
|
11603
|
-
cancelIf?: Record<string,
|
|
11610
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11604
11611
|
overrideLock?: boolean | undefined;
|
|
11605
11612
|
} | undefined;
|
|
11606
11613
|
};
|
|
@@ -11648,26 +11655,26 @@ declare module '@scout9/app/schemas' {
|
|
|
11648
11655
|
}>]>, "many">]>>;
|
|
11649
11656
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11650
11657
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
11651
|
-
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">]>>>;
|
|
11658
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
11652
11659
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
11653
11660
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
11654
11661
|
scheduled: z.ZodNumber;
|
|
11655
|
-
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">]>>>;
|
|
11662
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
11656
11663
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
11657
11664
|
message: z.ZodString;
|
|
11658
11665
|
}, "strip", z.ZodTypeAny, {
|
|
11659
11666
|
message: string;
|
|
11660
11667
|
scheduled: number;
|
|
11661
|
-
cancelIf?: Record<string,
|
|
11668
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11662
11669
|
overrideLock?: boolean | undefined;
|
|
11663
11670
|
}, {
|
|
11664
11671
|
message: string;
|
|
11665
11672
|
scheduled: number;
|
|
11666
|
-
cancelIf?: Record<string,
|
|
11673
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11667
11674
|
overrideLock?: boolean | undefined;
|
|
11668
11675
|
}>, z.ZodObject<{
|
|
11669
11676
|
scheduled: z.ZodNumber;
|
|
11670
|
-
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">]>>>;
|
|
11677
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
11671
11678
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
11672
11679
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
11673
11680
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -11713,7 +11720,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11713
11720
|
id?: string | undefined;
|
|
11714
11721
|
persist?: boolean | undefined;
|
|
11715
11722
|
})[] | undefined);
|
|
11716
|
-
cancelIf?: Record<string,
|
|
11723
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11717
11724
|
overrideLock?: boolean | undefined;
|
|
11718
11725
|
}, {
|
|
11719
11726
|
scheduled: number;
|
|
@@ -11734,7 +11741,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11734
11741
|
id?: string | undefined;
|
|
11735
11742
|
persist?: boolean | undefined;
|
|
11736
11743
|
})[] | undefined);
|
|
11737
|
-
cancelIf?: Record<string,
|
|
11744
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11738
11745
|
overrideLock?: boolean | undefined;
|
|
11739
11746
|
}>]>>;
|
|
11740
11747
|
keywords: z.ZodArray<z.ZodString, "many">;
|
|
@@ -11759,12 +11766,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11759
11766
|
})[] | undefined;
|
|
11760
11767
|
removeInstructions?: string[] | undefined;
|
|
11761
11768
|
secondsDelay?: number | undefined;
|
|
11762
|
-
contextUpsert?: Record<string,
|
|
11769
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
11763
11770
|
resetIntent?: boolean | undefined;
|
|
11764
11771
|
followup?: {
|
|
11765
11772
|
message: string;
|
|
11766
11773
|
scheduled: number;
|
|
11767
|
-
cancelIf?: Record<string,
|
|
11774
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11768
11775
|
overrideLock?: boolean | undefined;
|
|
11769
11776
|
} | {
|
|
11770
11777
|
scheduled: number;
|
|
@@ -11785,7 +11792,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11785
11792
|
id?: string | undefined;
|
|
11786
11793
|
persist?: boolean | undefined;
|
|
11787
11794
|
})[] | undefined);
|
|
11788
|
-
cancelIf?: Record<string,
|
|
11795
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11789
11796
|
overrideLock?: boolean | undefined;
|
|
11790
11797
|
} | undefined;
|
|
11791
11798
|
}, {
|
|
@@ -11809,12 +11816,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11809
11816
|
})[] | undefined;
|
|
11810
11817
|
removeInstructions?: string[] | undefined;
|
|
11811
11818
|
secondsDelay?: number | undefined;
|
|
11812
|
-
contextUpsert?: Record<string,
|
|
11819
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
11813
11820
|
resetIntent?: boolean | undefined;
|
|
11814
11821
|
followup?: {
|
|
11815
11822
|
message: string;
|
|
11816
11823
|
scheduled: number;
|
|
11817
|
-
cancelIf?: Record<string,
|
|
11824
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11818
11825
|
overrideLock?: boolean | undefined;
|
|
11819
11826
|
} | {
|
|
11820
11827
|
scheduled: number;
|
|
@@ -11835,7 +11842,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11835
11842
|
id?: string | undefined;
|
|
11836
11843
|
persist?: boolean | undefined;
|
|
11837
11844
|
})[] | undefined);
|
|
11838
|
-
cancelIf?: Record<string,
|
|
11845
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11839
11846
|
overrideLock?: boolean | undefined;
|
|
11840
11847
|
} | undefined;
|
|
11841
11848
|
}>, "many">]>>;
|
|
@@ -11859,12 +11866,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11859
11866
|
})[] | undefined;
|
|
11860
11867
|
removeInstructions?: string[] | undefined;
|
|
11861
11868
|
secondsDelay?: number | undefined;
|
|
11862
|
-
contextUpsert?: Record<string,
|
|
11869
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
11863
11870
|
resetIntent?: boolean | undefined;
|
|
11864
11871
|
followup?: {
|
|
11865
11872
|
message: string;
|
|
11866
11873
|
scheduled: number;
|
|
11867
|
-
cancelIf?: Record<string,
|
|
11874
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11868
11875
|
overrideLock?: boolean | undefined;
|
|
11869
11876
|
} | {
|
|
11870
11877
|
scheduled: number;
|
|
@@ -11885,7 +11892,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11885
11892
|
id?: string | undefined;
|
|
11886
11893
|
persist?: boolean | undefined;
|
|
11887
11894
|
})[] | undefined);
|
|
11888
|
-
cancelIf?: Record<string,
|
|
11895
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11889
11896
|
overrideLock?: boolean | undefined;
|
|
11890
11897
|
} | undefined;
|
|
11891
11898
|
anticipate?: {
|
|
@@ -11910,12 +11917,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11910
11917
|
message?: string | undefined;
|
|
11911
11918
|
secondsDelay?: number | undefined;
|
|
11912
11919
|
scheduled?: number | undefined;
|
|
11913
|
-
contextUpsert?: Record<string,
|
|
11920
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
11914
11921
|
resetIntent?: boolean | undefined;
|
|
11915
11922
|
followup?: {
|
|
11916
11923
|
message: string;
|
|
11917
11924
|
scheduled: number;
|
|
11918
|
-
cancelIf?: Record<string,
|
|
11925
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11919
11926
|
overrideLock?: boolean | undefined;
|
|
11920
11927
|
} | {
|
|
11921
11928
|
scheduled: number;
|
|
@@ -11936,7 +11943,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11936
11943
|
id?: string | undefined;
|
|
11937
11944
|
persist?: boolean | undefined;
|
|
11938
11945
|
})[] | undefined);
|
|
11939
|
-
cancelIf?: Record<string,
|
|
11946
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11940
11947
|
overrideLock?: boolean | undefined;
|
|
11941
11948
|
} | undefined;
|
|
11942
11949
|
};
|
|
@@ -11960,12 +11967,12 @@ declare module '@scout9/app/schemas' {
|
|
|
11960
11967
|
message?: string | undefined;
|
|
11961
11968
|
secondsDelay?: number | undefined;
|
|
11962
11969
|
scheduled?: number | undefined;
|
|
11963
|
-
contextUpsert?: Record<string,
|
|
11970
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
11964
11971
|
resetIntent?: boolean | undefined;
|
|
11965
11972
|
followup?: {
|
|
11966
11973
|
message: string;
|
|
11967
11974
|
scheduled: number;
|
|
11968
|
-
cancelIf?: Record<string,
|
|
11975
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11969
11976
|
overrideLock?: boolean | undefined;
|
|
11970
11977
|
} | {
|
|
11971
11978
|
scheduled: number;
|
|
@@ -11986,7 +11993,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11986
11993
|
id?: string | undefined;
|
|
11987
11994
|
persist?: boolean | undefined;
|
|
11988
11995
|
})[] | undefined);
|
|
11989
|
-
cancelIf?: Record<string,
|
|
11996
|
+
cancelIf?: Record<string, any> | undefined;
|
|
11990
11997
|
overrideLock?: boolean | undefined;
|
|
11991
11998
|
} | undefined;
|
|
11992
11999
|
};
|
|
@@ -12011,12 +12018,12 @@ declare module '@scout9/app/schemas' {
|
|
|
12011
12018
|
})[] | undefined;
|
|
12012
12019
|
removeInstructions?: string[] | undefined;
|
|
12013
12020
|
secondsDelay?: number | undefined;
|
|
12014
|
-
contextUpsert?: Record<string,
|
|
12021
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
12015
12022
|
resetIntent?: boolean | undefined;
|
|
12016
12023
|
followup?: {
|
|
12017
12024
|
message: string;
|
|
12018
12025
|
scheduled: number;
|
|
12019
|
-
cancelIf?: Record<string,
|
|
12026
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12020
12027
|
overrideLock?: boolean | undefined;
|
|
12021
12028
|
} | {
|
|
12022
12029
|
scheduled: number;
|
|
@@ -12037,7 +12044,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12037
12044
|
id?: string | undefined;
|
|
12038
12045
|
persist?: boolean | undefined;
|
|
12039
12046
|
})[] | undefined);
|
|
12040
|
-
cancelIf?: Record<string,
|
|
12047
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12041
12048
|
overrideLock?: boolean | undefined;
|
|
12042
12049
|
} | undefined;
|
|
12043
12050
|
}[] | undefined;
|
|
@@ -12061,12 +12068,12 @@ declare module '@scout9/app/schemas' {
|
|
|
12061
12068
|
})[] | undefined;
|
|
12062
12069
|
removeInstructions?: string[] | undefined;
|
|
12063
12070
|
secondsDelay?: number | undefined;
|
|
12064
|
-
contextUpsert?: Record<string,
|
|
12071
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
12065
12072
|
resetIntent?: boolean | undefined;
|
|
12066
12073
|
followup?: {
|
|
12067
12074
|
message: string;
|
|
12068
12075
|
scheduled: number;
|
|
12069
|
-
cancelIf?: Record<string,
|
|
12076
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12070
12077
|
overrideLock?: boolean | undefined;
|
|
12071
12078
|
} | {
|
|
12072
12079
|
scheduled: number;
|
|
@@ -12087,7 +12094,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12087
12094
|
id?: string | undefined;
|
|
12088
12095
|
persist?: boolean | undefined;
|
|
12089
12096
|
})[] | undefined);
|
|
12090
|
-
cancelIf?: Record<string,
|
|
12097
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12091
12098
|
overrideLock?: boolean | undefined;
|
|
12092
12099
|
} | undefined;
|
|
12093
12100
|
anticipate?: {
|
|
@@ -12112,12 +12119,12 @@ declare module '@scout9/app/schemas' {
|
|
|
12112
12119
|
message?: string | undefined;
|
|
12113
12120
|
secondsDelay?: number | undefined;
|
|
12114
12121
|
scheduled?: number | undefined;
|
|
12115
|
-
contextUpsert?: Record<string,
|
|
12122
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
12116
12123
|
resetIntent?: boolean | undefined;
|
|
12117
12124
|
followup?: {
|
|
12118
12125
|
message: string;
|
|
12119
12126
|
scheduled: number;
|
|
12120
|
-
cancelIf?: Record<string,
|
|
12127
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12121
12128
|
overrideLock?: boolean | undefined;
|
|
12122
12129
|
} | {
|
|
12123
12130
|
scheduled: number;
|
|
@@ -12138,7 +12145,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12138
12145
|
id?: string | undefined;
|
|
12139
12146
|
persist?: boolean | undefined;
|
|
12140
12147
|
})[] | undefined);
|
|
12141
|
-
cancelIf?: Record<string,
|
|
12148
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12142
12149
|
overrideLock?: boolean | undefined;
|
|
12143
12150
|
} | undefined;
|
|
12144
12151
|
};
|
|
@@ -12162,12 +12169,12 @@ declare module '@scout9/app/schemas' {
|
|
|
12162
12169
|
message?: string | undefined;
|
|
12163
12170
|
secondsDelay?: number | undefined;
|
|
12164
12171
|
scheduled?: number | undefined;
|
|
12165
|
-
contextUpsert?: Record<string,
|
|
12172
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
12166
12173
|
resetIntent?: boolean | undefined;
|
|
12167
12174
|
followup?: {
|
|
12168
12175
|
message: string;
|
|
12169
12176
|
scheduled: number;
|
|
12170
|
-
cancelIf?: Record<string,
|
|
12177
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12171
12178
|
overrideLock?: boolean | undefined;
|
|
12172
12179
|
} | {
|
|
12173
12180
|
scheduled: number;
|
|
@@ -12188,7 +12195,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12188
12195
|
id?: string | undefined;
|
|
12189
12196
|
persist?: boolean | undefined;
|
|
12190
12197
|
})[] | undefined);
|
|
12191
|
-
cancelIf?: Record<string,
|
|
12198
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12192
12199
|
overrideLock?: boolean | undefined;
|
|
12193
12200
|
} | undefined;
|
|
12194
12201
|
};
|
|
@@ -12213,12 +12220,12 @@ declare module '@scout9/app/schemas' {
|
|
|
12213
12220
|
})[] | undefined;
|
|
12214
12221
|
removeInstructions?: string[] | undefined;
|
|
12215
12222
|
secondsDelay?: number | undefined;
|
|
12216
|
-
contextUpsert?: Record<string,
|
|
12223
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
12217
12224
|
resetIntent?: boolean | undefined;
|
|
12218
12225
|
followup?: {
|
|
12219
12226
|
message: string;
|
|
12220
12227
|
scheduled: number;
|
|
12221
|
-
cancelIf?: Record<string,
|
|
12228
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12222
12229
|
overrideLock?: boolean | undefined;
|
|
12223
12230
|
} | {
|
|
12224
12231
|
scheduled: number;
|
|
@@ -12239,7 +12246,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12239
12246
|
id?: string | undefined;
|
|
12240
12247
|
persist?: boolean | undefined;
|
|
12241
12248
|
})[] | undefined);
|
|
12242
|
-
cancelIf?: Record<string,
|
|
12249
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12243
12250
|
overrideLock?: boolean | undefined;
|
|
12244
12251
|
} | undefined;
|
|
12245
12252
|
}[] | undefined;
|
|
@@ -12287,26 +12294,26 @@ declare module '@scout9/app/schemas' {
|
|
|
12287
12294
|
}>]>, "many">]>>;
|
|
12288
12295
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12289
12296
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
12290
|
-
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">]>>>;
|
|
12297
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
12291
12298
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
12292
12299
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
12293
12300
|
scheduled: z.ZodNumber;
|
|
12294
|
-
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">]>>>;
|
|
12301
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
12295
12302
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
12296
12303
|
message: z.ZodString;
|
|
12297
12304
|
}, "strip", z.ZodTypeAny, {
|
|
12298
12305
|
message: string;
|
|
12299
12306
|
scheduled: number;
|
|
12300
|
-
cancelIf?: Record<string,
|
|
12307
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12301
12308
|
overrideLock?: boolean | undefined;
|
|
12302
12309
|
}, {
|
|
12303
12310
|
message: string;
|
|
12304
12311
|
scheduled: number;
|
|
12305
|
-
cancelIf?: Record<string,
|
|
12312
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12306
12313
|
overrideLock?: boolean | undefined;
|
|
12307
12314
|
}>, z.ZodObject<{
|
|
12308
12315
|
scheduled: z.ZodNumber;
|
|
12309
|
-
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">]>>>;
|
|
12316
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
12310
12317
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
12311
12318
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
12312
12319
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -12352,7 +12359,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12352
12359
|
id?: string | undefined;
|
|
12353
12360
|
persist?: boolean | undefined;
|
|
12354
12361
|
})[] | undefined);
|
|
12355
|
-
cancelIf?: Record<string,
|
|
12362
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12356
12363
|
overrideLock?: boolean | undefined;
|
|
12357
12364
|
}, {
|
|
12358
12365
|
scheduled: number;
|
|
@@ -12373,7 +12380,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12373
12380
|
id?: string | undefined;
|
|
12374
12381
|
persist?: boolean | undefined;
|
|
12375
12382
|
})[] | undefined);
|
|
12376
|
-
cancelIf?: Record<string,
|
|
12383
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12377
12384
|
overrideLock?: boolean | undefined;
|
|
12378
12385
|
}>]>>;
|
|
12379
12386
|
anticipate: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
@@ -12422,26 +12429,26 @@ declare module '@scout9/app/schemas' {
|
|
|
12422
12429
|
message: z.ZodOptional<z.ZodString>;
|
|
12423
12430
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
12424
12431
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
12425
|
-
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">]>>>;
|
|
12432
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
12426
12433
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
12427
12434
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
12428
12435
|
scheduled: z.ZodNumber;
|
|
12429
|
-
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">]>>>;
|
|
12436
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
12430
12437
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
12431
12438
|
message: z.ZodString;
|
|
12432
12439
|
}, "strip", z.ZodTypeAny, {
|
|
12433
12440
|
message: string;
|
|
12434
12441
|
scheduled: number;
|
|
12435
|
-
cancelIf?: Record<string,
|
|
12442
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12436
12443
|
overrideLock?: boolean | undefined;
|
|
12437
12444
|
}, {
|
|
12438
12445
|
message: string;
|
|
12439
12446
|
scheduled: number;
|
|
12440
|
-
cancelIf?: Record<string,
|
|
12447
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12441
12448
|
overrideLock?: boolean | undefined;
|
|
12442
12449
|
}>, z.ZodObject<{
|
|
12443
12450
|
scheduled: z.ZodNumber;
|
|
12444
|
-
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">]>>>;
|
|
12451
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
12445
12452
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
12446
12453
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
12447
12454
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -12487,7 +12494,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12487
12494
|
id?: string | undefined;
|
|
12488
12495
|
persist?: boolean | undefined;
|
|
12489
12496
|
})[] | undefined);
|
|
12490
|
-
cancelIf?: Record<string,
|
|
12497
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12491
12498
|
overrideLock?: boolean | undefined;
|
|
12492
12499
|
}, {
|
|
12493
12500
|
scheduled: number;
|
|
@@ -12508,7 +12515,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12508
12515
|
id?: string | undefined;
|
|
12509
12516
|
persist?: boolean | undefined;
|
|
12510
12517
|
})[] | undefined);
|
|
12511
|
-
cancelIf?: Record<string,
|
|
12518
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12512
12519
|
overrideLock?: boolean | undefined;
|
|
12513
12520
|
}>]>>;
|
|
12514
12521
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -12531,12 +12538,12 @@ declare module '@scout9/app/schemas' {
|
|
|
12531
12538
|
message?: string | undefined;
|
|
12532
12539
|
secondsDelay?: number | undefined;
|
|
12533
12540
|
scheduled?: number | undefined;
|
|
12534
|
-
contextUpsert?: Record<string,
|
|
12541
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
12535
12542
|
resetIntent?: boolean | undefined;
|
|
12536
12543
|
followup?: {
|
|
12537
12544
|
message: string;
|
|
12538
12545
|
scheduled: number;
|
|
12539
|
-
cancelIf?: Record<string,
|
|
12546
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12540
12547
|
overrideLock?: boolean | undefined;
|
|
12541
12548
|
} | {
|
|
12542
12549
|
scheduled: number;
|
|
@@ -12557,7 +12564,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12557
12564
|
id?: string | undefined;
|
|
12558
12565
|
persist?: boolean | undefined;
|
|
12559
12566
|
})[] | undefined);
|
|
12560
|
-
cancelIf?: Record<string,
|
|
12567
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12561
12568
|
overrideLock?: boolean | undefined;
|
|
12562
12569
|
} | undefined;
|
|
12563
12570
|
}, {
|
|
@@ -12580,12 +12587,12 @@ declare module '@scout9/app/schemas' {
|
|
|
12580
12587
|
message?: string | undefined;
|
|
12581
12588
|
secondsDelay?: number | undefined;
|
|
12582
12589
|
scheduled?: number | undefined;
|
|
12583
|
-
contextUpsert?: Record<string,
|
|
12590
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
12584
12591
|
resetIntent?: boolean | undefined;
|
|
12585
12592
|
followup?: {
|
|
12586
12593
|
message: string;
|
|
12587
12594
|
scheduled: number;
|
|
12588
|
-
cancelIf?: Record<string,
|
|
12595
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12589
12596
|
overrideLock?: boolean | undefined;
|
|
12590
12597
|
} | {
|
|
12591
12598
|
scheduled: number;
|
|
@@ -12606,7 +12613,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12606
12613
|
id?: string | undefined;
|
|
12607
12614
|
persist?: boolean | undefined;
|
|
12608
12615
|
})[] | undefined);
|
|
12609
|
-
cancelIf?: Record<string,
|
|
12616
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12610
12617
|
overrideLock?: boolean | undefined;
|
|
12611
12618
|
} | undefined;
|
|
12612
12619
|
}>;
|
|
@@ -12654,26 +12661,26 @@ declare module '@scout9/app/schemas' {
|
|
|
12654
12661
|
message: z.ZodOptional<z.ZodString>;
|
|
12655
12662
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
12656
12663
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
12657
|
-
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">]>>>;
|
|
12664
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
12658
12665
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
12659
12666
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
12660
12667
|
scheduled: z.ZodNumber;
|
|
12661
|
-
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">]>>>;
|
|
12668
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
12662
12669
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
12663
12670
|
message: z.ZodString;
|
|
12664
12671
|
}, "strip", z.ZodTypeAny, {
|
|
12665
12672
|
message: string;
|
|
12666
12673
|
scheduled: number;
|
|
12667
|
-
cancelIf?: Record<string,
|
|
12674
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12668
12675
|
overrideLock?: boolean | undefined;
|
|
12669
12676
|
}, {
|
|
12670
12677
|
message: string;
|
|
12671
12678
|
scheduled: number;
|
|
12672
|
-
cancelIf?: Record<string,
|
|
12679
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12673
12680
|
overrideLock?: boolean | undefined;
|
|
12674
12681
|
}>, z.ZodObject<{
|
|
12675
12682
|
scheduled: z.ZodNumber;
|
|
12676
|
-
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">]>>>;
|
|
12683
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
12677
12684
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
12678
12685
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
12679
12686
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -12719,7 +12726,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12719
12726
|
id?: string | undefined;
|
|
12720
12727
|
persist?: boolean | undefined;
|
|
12721
12728
|
})[] | undefined);
|
|
12722
|
-
cancelIf?: Record<string,
|
|
12729
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12723
12730
|
overrideLock?: boolean | undefined;
|
|
12724
12731
|
}, {
|
|
12725
12732
|
scheduled: number;
|
|
@@ -12740,7 +12747,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12740
12747
|
id?: string | undefined;
|
|
12741
12748
|
persist?: boolean | undefined;
|
|
12742
12749
|
})[] | undefined);
|
|
12743
|
-
cancelIf?: Record<string,
|
|
12750
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12744
12751
|
overrideLock?: boolean | undefined;
|
|
12745
12752
|
}>]>>;
|
|
12746
12753
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -12763,12 +12770,12 @@ declare module '@scout9/app/schemas' {
|
|
|
12763
12770
|
message?: string | undefined;
|
|
12764
12771
|
secondsDelay?: number | undefined;
|
|
12765
12772
|
scheduled?: number | undefined;
|
|
12766
|
-
contextUpsert?: Record<string,
|
|
12773
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
12767
12774
|
resetIntent?: boolean | undefined;
|
|
12768
12775
|
followup?: {
|
|
12769
12776
|
message: string;
|
|
12770
12777
|
scheduled: number;
|
|
12771
|
-
cancelIf?: Record<string,
|
|
12778
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12772
12779
|
overrideLock?: boolean | undefined;
|
|
12773
12780
|
} | {
|
|
12774
12781
|
scheduled: number;
|
|
@@ -12789,7 +12796,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12789
12796
|
id?: string | undefined;
|
|
12790
12797
|
persist?: boolean | undefined;
|
|
12791
12798
|
})[] | undefined);
|
|
12792
|
-
cancelIf?: Record<string,
|
|
12799
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12793
12800
|
overrideLock?: boolean | undefined;
|
|
12794
12801
|
} | undefined;
|
|
12795
12802
|
}, {
|
|
@@ -12812,12 +12819,12 @@ declare module '@scout9/app/schemas' {
|
|
|
12812
12819
|
message?: string | undefined;
|
|
12813
12820
|
secondsDelay?: number | undefined;
|
|
12814
12821
|
scheduled?: number | undefined;
|
|
12815
|
-
contextUpsert?: Record<string,
|
|
12822
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
12816
12823
|
resetIntent?: boolean | undefined;
|
|
12817
12824
|
followup?: {
|
|
12818
12825
|
message: string;
|
|
12819
12826
|
scheduled: number;
|
|
12820
|
-
cancelIf?: Record<string,
|
|
12827
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12821
12828
|
overrideLock?: boolean | undefined;
|
|
12822
12829
|
} | {
|
|
12823
12830
|
scheduled: number;
|
|
@@ -12838,7 +12845,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12838
12845
|
id?: string | undefined;
|
|
12839
12846
|
persist?: boolean | undefined;
|
|
12840
12847
|
})[] | undefined);
|
|
12841
|
-
cancelIf?: Record<string,
|
|
12848
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12842
12849
|
overrideLock?: boolean | undefined;
|
|
12843
12850
|
} | undefined;
|
|
12844
12851
|
}>;
|
|
@@ -12864,12 +12871,12 @@ declare module '@scout9/app/schemas' {
|
|
|
12864
12871
|
message?: string | undefined;
|
|
12865
12872
|
secondsDelay?: number | undefined;
|
|
12866
12873
|
scheduled?: number | undefined;
|
|
12867
|
-
contextUpsert?: Record<string,
|
|
12874
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
12868
12875
|
resetIntent?: boolean | undefined;
|
|
12869
12876
|
followup?: {
|
|
12870
12877
|
message: string;
|
|
12871
12878
|
scheduled: number;
|
|
12872
|
-
cancelIf?: Record<string,
|
|
12879
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12873
12880
|
overrideLock?: boolean | undefined;
|
|
12874
12881
|
} | {
|
|
12875
12882
|
scheduled: number;
|
|
@@ -12890,7 +12897,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12890
12897
|
id?: string | undefined;
|
|
12891
12898
|
persist?: boolean | undefined;
|
|
12892
12899
|
})[] | undefined);
|
|
12893
|
-
cancelIf?: Record<string,
|
|
12900
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12894
12901
|
overrideLock?: boolean | undefined;
|
|
12895
12902
|
} | undefined;
|
|
12896
12903
|
};
|
|
@@ -12914,12 +12921,12 @@ declare module '@scout9/app/schemas' {
|
|
|
12914
12921
|
message?: string | undefined;
|
|
12915
12922
|
secondsDelay?: number | undefined;
|
|
12916
12923
|
scheduled?: number | undefined;
|
|
12917
|
-
contextUpsert?: Record<string,
|
|
12924
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
12918
12925
|
resetIntent?: boolean | undefined;
|
|
12919
12926
|
followup?: {
|
|
12920
12927
|
message: string;
|
|
12921
12928
|
scheduled: number;
|
|
12922
|
-
cancelIf?: Record<string,
|
|
12929
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12923
12930
|
overrideLock?: boolean | undefined;
|
|
12924
12931
|
} | {
|
|
12925
12932
|
scheduled: number;
|
|
@@ -12940,7 +12947,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12940
12947
|
id?: string | undefined;
|
|
12941
12948
|
persist?: boolean | undefined;
|
|
12942
12949
|
})[] | undefined);
|
|
12943
|
-
cancelIf?: Record<string,
|
|
12950
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12944
12951
|
overrideLock?: boolean | undefined;
|
|
12945
12952
|
} | undefined;
|
|
12946
12953
|
};
|
|
@@ -12966,12 +12973,12 @@ declare module '@scout9/app/schemas' {
|
|
|
12966
12973
|
message?: string | undefined;
|
|
12967
12974
|
secondsDelay?: number | undefined;
|
|
12968
12975
|
scheduled?: number | undefined;
|
|
12969
|
-
contextUpsert?: Record<string,
|
|
12976
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
12970
12977
|
resetIntent?: boolean | undefined;
|
|
12971
12978
|
followup?: {
|
|
12972
12979
|
message: string;
|
|
12973
12980
|
scheduled: number;
|
|
12974
|
-
cancelIf?: Record<string,
|
|
12981
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12975
12982
|
overrideLock?: boolean | undefined;
|
|
12976
12983
|
} | {
|
|
12977
12984
|
scheduled: number;
|
|
@@ -12992,7 +12999,7 @@ declare module '@scout9/app/schemas' {
|
|
|
12992
12999
|
id?: string | undefined;
|
|
12993
13000
|
persist?: boolean | undefined;
|
|
12994
13001
|
})[] | undefined);
|
|
12995
|
-
cancelIf?: Record<string,
|
|
13002
|
+
cancelIf?: Record<string, any> | undefined;
|
|
12996
13003
|
overrideLock?: boolean | undefined;
|
|
12997
13004
|
} | undefined;
|
|
12998
13005
|
};
|
|
@@ -13016,12 +13023,12 @@ declare module '@scout9/app/schemas' {
|
|
|
13016
13023
|
message?: string | undefined;
|
|
13017
13024
|
secondsDelay?: number | undefined;
|
|
13018
13025
|
scheduled?: number | undefined;
|
|
13019
|
-
contextUpsert?: Record<string,
|
|
13026
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
13020
13027
|
resetIntent?: boolean | undefined;
|
|
13021
13028
|
followup?: {
|
|
13022
13029
|
message: string;
|
|
13023
13030
|
scheduled: number;
|
|
13024
|
-
cancelIf?: Record<string,
|
|
13031
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13025
13032
|
overrideLock?: boolean | undefined;
|
|
13026
13033
|
} | {
|
|
13027
13034
|
scheduled: number;
|
|
@@ -13042,7 +13049,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13042
13049
|
id?: string | undefined;
|
|
13043
13050
|
persist?: boolean | undefined;
|
|
13044
13051
|
})[] | undefined);
|
|
13045
|
-
cancelIf?: Record<string,
|
|
13052
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13046
13053
|
overrideLock?: boolean | undefined;
|
|
13047
13054
|
} | undefined;
|
|
13048
13055
|
};
|
|
@@ -13090,26 +13097,26 @@ declare module '@scout9/app/schemas' {
|
|
|
13090
13097
|
}>]>, "many">]>>;
|
|
13091
13098
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13092
13099
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
13093
|
-
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">]>>>;
|
|
13100
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
13094
13101
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
13095
13102
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
13096
13103
|
scheduled: z.ZodNumber;
|
|
13097
|
-
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">]>>>;
|
|
13104
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
13098
13105
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
13099
13106
|
message: z.ZodString;
|
|
13100
13107
|
}, "strip", z.ZodTypeAny, {
|
|
13101
13108
|
message: string;
|
|
13102
13109
|
scheduled: number;
|
|
13103
|
-
cancelIf?: Record<string,
|
|
13110
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13104
13111
|
overrideLock?: boolean | undefined;
|
|
13105
13112
|
}, {
|
|
13106
13113
|
message: string;
|
|
13107
13114
|
scheduled: number;
|
|
13108
|
-
cancelIf?: Record<string,
|
|
13115
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13109
13116
|
overrideLock?: boolean | undefined;
|
|
13110
13117
|
}>, z.ZodObject<{
|
|
13111
13118
|
scheduled: z.ZodNumber;
|
|
13112
|
-
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">]>>>;
|
|
13119
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
13113
13120
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
13114
13121
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
13115
13122
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -13155,7 +13162,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13155
13162
|
id?: string | undefined;
|
|
13156
13163
|
persist?: boolean | undefined;
|
|
13157
13164
|
})[] | undefined);
|
|
13158
|
-
cancelIf?: Record<string,
|
|
13165
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13159
13166
|
overrideLock?: boolean | undefined;
|
|
13160
13167
|
}, {
|
|
13161
13168
|
scheduled: number;
|
|
@@ -13176,7 +13183,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13176
13183
|
id?: string | undefined;
|
|
13177
13184
|
persist?: boolean | undefined;
|
|
13178
13185
|
})[] | undefined);
|
|
13179
|
-
cancelIf?: Record<string,
|
|
13186
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13180
13187
|
overrideLock?: boolean | undefined;
|
|
13181
13188
|
}>]>>;
|
|
13182
13189
|
keywords: z.ZodArray<z.ZodString, "many">;
|
|
@@ -13201,12 +13208,12 @@ declare module '@scout9/app/schemas' {
|
|
|
13201
13208
|
})[] | undefined;
|
|
13202
13209
|
removeInstructions?: string[] | undefined;
|
|
13203
13210
|
secondsDelay?: number | undefined;
|
|
13204
|
-
contextUpsert?: Record<string,
|
|
13211
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
13205
13212
|
resetIntent?: boolean | undefined;
|
|
13206
13213
|
followup?: {
|
|
13207
13214
|
message: string;
|
|
13208
13215
|
scheduled: number;
|
|
13209
|
-
cancelIf?: Record<string,
|
|
13216
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13210
13217
|
overrideLock?: boolean | undefined;
|
|
13211
13218
|
} | {
|
|
13212
13219
|
scheduled: number;
|
|
@@ -13227,7 +13234,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13227
13234
|
id?: string | undefined;
|
|
13228
13235
|
persist?: boolean | undefined;
|
|
13229
13236
|
})[] | undefined);
|
|
13230
|
-
cancelIf?: Record<string,
|
|
13237
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13231
13238
|
overrideLock?: boolean | undefined;
|
|
13232
13239
|
} | undefined;
|
|
13233
13240
|
}, {
|
|
@@ -13251,12 +13258,12 @@ declare module '@scout9/app/schemas' {
|
|
|
13251
13258
|
})[] | undefined;
|
|
13252
13259
|
removeInstructions?: string[] | undefined;
|
|
13253
13260
|
secondsDelay?: number | undefined;
|
|
13254
|
-
contextUpsert?: Record<string,
|
|
13261
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
13255
13262
|
resetIntent?: boolean | undefined;
|
|
13256
13263
|
followup?: {
|
|
13257
13264
|
message: string;
|
|
13258
13265
|
scheduled: number;
|
|
13259
|
-
cancelIf?: Record<string,
|
|
13266
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13260
13267
|
overrideLock?: boolean | undefined;
|
|
13261
13268
|
} | {
|
|
13262
13269
|
scheduled: number;
|
|
@@ -13277,7 +13284,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13277
13284
|
id?: string | undefined;
|
|
13278
13285
|
persist?: boolean | undefined;
|
|
13279
13286
|
})[] | undefined);
|
|
13280
|
-
cancelIf?: Record<string,
|
|
13287
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13281
13288
|
overrideLock?: boolean | undefined;
|
|
13282
13289
|
} | undefined;
|
|
13283
13290
|
}>, "many">]>>;
|
|
@@ -13301,12 +13308,12 @@ declare module '@scout9/app/schemas' {
|
|
|
13301
13308
|
})[] | undefined;
|
|
13302
13309
|
removeInstructions?: string[] | undefined;
|
|
13303
13310
|
secondsDelay?: number | undefined;
|
|
13304
|
-
contextUpsert?: Record<string,
|
|
13311
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
13305
13312
|
resetIntent?: boolean | undefined;
|
|
13306
13313
|
followup?: {
|
|
13307
13314
|
message: string;
|
|
13308
13315
|
scheduled: number;
|
|
13309
|
-
cancelIf?: Record<string,
|
|
13316
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13310
13317
|
overrideLock?: boolean | undefined;
|
|
13311
13318
|
} | {
|
|
13312
13319
|
scheduled: number;
|
|
@@ -13327,7 +13334,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13327
13334
|
id?: string | undefined;
|
|
13328
13335
|
persist?: boolean | undefined;
|
|
13329
13336
|
})[] | undefined);
|
|
13330
|
-
cancelIf?: Record<string,
|
|
13337
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13331
13338
|
overrideLock?: boolean | undefined;
|
|
13332
13339
|
} | undefined;
|
|
13333
13340
|
anticipate?: {
|
|
@@ -13352,12 +13359,12 @@ declare module '@scout9/app/schemas' {
|
|
|
13352
13359
|
message?: string | undefined;
|
|
13353
13360
|
secondsDelay?: number | undefined;
|
|
13354
13361
|
scheduled?: number | undefined;
|
|
13355
|
-
contextUpsert?: Record<string,
|
|
13362
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
13356
13363
|
resetIntent?: boolean | undefined;
|
|
13357
13364
|
followup?: {
|
|
13358
13365
|
message: string;
|
|
13359
13366
|
scheduled: number;
|
|
13360
|
-
cancelIf?: Record<string,
|
|
13367
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13361
13368
|
overrideLock?: boolean | undefined;
|
|
13362
13369
|
} | {
|
|
13363
13370
|
scheduled: number;
|
|
@@ -13378,7 +13385,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13378
13385
|
id?: string | undefined;
|
|
13379
13386
|
persist?: boolean | undefined;
|
|
13380
13387
|
})[] | undefined);
|
|
13381
|
-
cancelIf?: Record<string,
|
|
13388
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13382
13389
|
overrideLock?: boolean | undefined;
|
|
13383
13390
|
} | undefined;
|
|
13384
13391
|
};
|
|
@@ -13402,12 +13409,12 @@ declare module '@scout9/app/schemas' {
|
|
|
13402
13409
|
message?: string | undefined;
|
|
13403
13410
|
secondsDelay?: number | undefined;
|
|
13404
13411
|
scheduled?: number | undefined;
|
|
13405
|
-
contextUpsert?: Record<string,
|
|
13412
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
13406
13413
|
resetIntent?: boolean | undefined;
|
|
13407
13414
|
followup?: {
|
|
13408
13415
|
message: string;
|
|
13409
13416
|
scheduled: number;
|
|
13410
|
-
cancelIf?: Record<string,
|
|
13417
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13411
13418
|
overrideLock?: boolean | undefined;
|
|
13412
13419
|
} | {
|
|
13413
13420
|
scheduled: number;
|
|
@@ -13428,7 +13435,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13428
13435
|
id?: string | undefined;
|
|
13429
13436
|
persist?: boolean | undefined;
|
|
13430
13437
|
})[] | undefined);
|
|
13431
|
-
cancelIf?: Record<string,
|
|
13438
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13432
13439
|
overrideLock?: boolean | undefined;
|
|
13433
13440
|
} | undefined;
|
|
13434
13441
|
};
|
|
@@ -13453,12 +13460,12 @@ declare module '@scout9/app/schemas' {
|
|
|
13453
13460
|
})[] | undefined;
|
|
13454
13461
|
removeInstructions?: string[] | undefined;
|
|
13455
13462
|
secondsDelay?: number | undefined;
|
|
13456
|
-
contextUpsert?: Record<string,
|
|
13463
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
13457
13464
|
resetIntent?: boolean | undefined;
|
|
13458
13465
|
followup?: {
|
|
13459
13466
|
message: string;
|
|
13460
13467
|
scheduled: number;
|
|
13461
|
-
cancelIf?: Record<string,
|
|
13468
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13462
13469
|
overrideLock?: boolean | undefined;
|
|
13463
13470
|
} | {
|
|
13464
13471
|
scheduled: number;
|
|
@@ -13479,7 +13486,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13479
13486
|
id?: string | undefined;
|
|
13480
13487
|
persist?: boolean | undefined;
|
|
13481
13488
|
})[] | undefined);
|
|
13482
|
-
cancelIf?: Record<string,
|
|
13489
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13483
13490
|
overrideLock?: boolean | undefined;
|
|
13484
13491
|
} | undefined;
|
|
13485
13492
|
}[] | undefined;
|
|
@@ -13503,12 +13510,12 @@ declare module '@scout9/app/schemas' {
|
|
|
13503
13510
|
})[] | undefined;
|
|
13504
13511
|
removeInstructions?: string[] | undefined;
|
|
13505
13512
|
secondsDelay?: number | undefined;
|
|
13506
|
-
contextUpsert?: Record<string,
|
|
13513
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
13507
13514
|
resetIntent?: boolean | undefined;
|
|
13508
13515
|
followup?: {
|
|
13509
13516
|
message: string;
|
|
13510
13517
|
scheduled: number;
|
|
13511
|
-
cancelIf?: Record<string,
|
|
13518
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13512
13519
|
overrideLock?: boolean | undefined;
|
|
13513
13520
|
} | {
|
|
13514
13521
|
scheduled: number;
|
|
@@ -13529,7 +13536,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13529
13536
|
id?: string | undefined;
|
|
13530
13537
|
persist?: boolean | undefined;
|
|
13531
13538
|
})[] | undefined);
|
|
13532
|
-
cancelIf?: Record<string,
|
|
13539
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13533
13540
|
overrideLock?: boolean | undefined;
|
|
13534
13541
|
} | undefined;
|
|
13535
13542
|
anticipate?: {
|
|
@@ -13554,12 +13561,12 @@ declare module '@scout9/app/schemas' {
|
|
|
13554
13561
|
message?: string | undefined;
|
|
13555
13562
|
secondsDelay?: number | undefined;
|
|
13556
13563
|
scheduled?: number | undefined;
|
|
13557
|
-
contextUpsert?: Record<string,
|
|
13564
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
13558
13565
|
resetIntent?: boolean | undefined;
|
|
13559
13566
|
followup?: {
|
|
13560
13567
|
message: string;
|
|
13561
13568
|
scheduled: number;
|
|
13562
|
-
cancelIf?: Record<string,
|
|
13569
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13563
13570
|
overrideLock?: boolean | undefined;
|
|
13564
13571
|
} | {
|
|
13565
13572
|
scheduled: number;
|
|
@@ -13580,7 +13587,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13580
13587
|
id?: string | undefined;
|
|
13581
13588
|
persist?: boolean | undefined;
|
|
13582
13589
|
})[] | undefined);
|
|
13583
|
-
cancelIf?: Record<string,
|
|
13590
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13584
13591
|
overrideLock?: boolean | undefined;
|
|
13585
13592
|
} | undefined;
|
|
13586
13593
|
};
|
|
@@ -13604,12 +13611,12 @@ declare module '@scout9/app/schemas' {
|
|
|
13604
13611
|
message?: string | undefined;
|
|
13605
13612
|
secondsDelay?: number | undefined;
|
|
13606
13613
|
scheduled?: number | undefined;
|
|
13607
|
-
contextUpsert?: Record<string,
|
|
13614
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
13608
13615
|
resetIntent?: boolean | undefined;
|
|
13609
13616
|
followup?: {
|
|
13610
13617
|
message: string;
|
|
13611
13618
|
scheduled: number;
|
|
13612
|
-
cancelIf?: Record<string,
|
|
13619
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13613
13620
|
overrideLock?: boolean | undefined;
|
|
13614
13621
|
} | {
|
|
13615
13622
|
scheduled: number;
|
|
@@ -13630,7 +13637,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13630
13637
|
id?: string | undefined;
|
|
13631
13638
|
persist?: boolean | undefined;
|
|
13632
13639
|
})[] | undefined);
|
|
13633
|
-
cancelIf?: Record<string,
|
|
13640
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13634
13641
|
overrideLock?: boolean | undefined;
|
|
13635
13642
|
} | undefined;
|
|
13636
13643
|
};
|
|
@@ -13655,12 +13662,12 @@ declare module '@scout9/app/schemas' {
|
|
|
13655
13662
|
})[] | undefined;
|
|
13656
13663
|
removeInstructions?: string[] | undefined;
|
|
13657
13664
|
secondsDelay?: number | undefined;
|
|
13658
|
-
contextUpsert?: Record<string,
|
|
13665
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
13659
13666
|
resetIntent?: boolean | undefined;
|
|
13660
13667
|
followup?: {
|
|
13661
13668
|
message: string;
|
|
13662
13669
|
scheduled: number;
|
|
13663
|
-
cancelIf?: Record<string,
|
|
13670
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13664
13671
|
overrideLock?: boolean | undefined;
|
|
13665
13672
|
} | {
|
|
13666
13673
|
scheduled: number;
|
|
@@ -13681,7 +13688,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13681
13688
|
id?: string | undefined;
|
|
13682
13689
|
persist?: boolean | undefined;
|
|
13683
13690
|
})[] | undefined);
|
|
13684
|
-
cancelIf?: Record<string,
|
|
13691
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13685
13692
|
overrideLock?: boolean | undefined;
|
|
13686
13693
|
} | undefined;
|
|
13687
13694
|
}[] | undefined;
|
|
@@ -13729,26 +13736,26 @@ declare module '@scout9/app/schemas' {
|
|
|
13729
13736
|
}>]>, "many">]>>;
|
|
13730
13737
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13731
13738
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
13732
|
-
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">]>>>;
|
|
13739
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
13733
13740
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
13734
13741
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
13735
13742
|
scheduled: z.ZodNumber;
|
|
13736
|
-
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">]>>>;
|
|
13743
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
13737
13744
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
13738
13745
|
message: z.ZodString;
|
|
13739
13746
|
}, "strip", z.ZodTypeAny, {
|
|
13740
13747
|
message: string;
|
|
13741
13748
|
scheduled: number;
|
|
13742
|
-
cancelIf?: Record<string,
|
|
13749
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13743
13750
|
overrideLock?: boolean | undefined;
|
|
13744
13751
|
}, {
|
|
13745
13752
|
message: string;
|
|
13746
13753
|
scheduled: number;
|
|
13747
|
-
cancelIf?: Record<string,
|
|
13754
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13748
13755
|
overrideLock?: boolean | undefined;
|
|
13749
13756
|
}>, z.ZodObject<{
|
|
13750
13757
|
scheduled: z.ZodNumber;
|
|
13751
|
-
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">]>>>;
|
|
13758
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
13752
13759
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
13753
13760
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
13754
13761
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -13794,7 +13801,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13794
13801
|
id?: string | undefined;
|
|
13795
13802
|
persist?: boolean | undefined;
|
|
13796
13803
|
})[] | undefined);
|
|
13797
|
-
cancelIf?: Record<string,
|
|
13804
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13798
13805
|
overrideLock?: boolean | undefined;
|
|
13799
13806
|
}, {
|
|
13800
13807
|
scheduled: number;
|
|
@@ -13815,7 +13822,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13815
13822
|
id?: string | undefined;
|
|
13816
13823
|
persist?: boolean | undefined;
|
|
13817
13824
|
})[] | undefined);
|
|
13818
|
-
cancelIf?: Record<string,
|
|
13825
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13819
13826
|
overrideLock?: boolean | undefined;
|
|
13820
13827
|
}>]>>;
|
|
13821
13828
|
anticipate: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
@@ -13864,26 +13871,26 @@ declare module '@scout9/app/schemas' {
|
|
|
13864
13871
|
message: z.ZodOptional<z.ZodString>;
|
|
13865
13872
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
13866
13873
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
13867
|
-
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">]>>>;
|
|
13874
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
13868
13875
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
13869
13876
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
13870
13877
|
scheduled: z.ZodNumber;
|
|
13871
|
-
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">]>>>;
|
|
13878
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
13872
13879
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
13873
13880
|
message: z.ZodString;
|
|
13874
13881
|
}, "strip", z.ZodTypeAny, {
|
|
13875
13882
|
message: string;
|
|
13876
13883
|
scheduled: number;
|
|
13877
|
-
cancelIf?: Record<string,
|
|
13884
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13878
13885
|
overrideLock?: boolean | undefined;
|
|
13879
13886
|
}, {
|
|
13880
13887
|
message: string;
|
|
13881
13888
|
scheduled: number;
|
|
13882
|
-
cancelIf?: Record<string,
|
|
13889
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13883
13890
|
overrideLock?: boolean | undefined;
|
|
13884
13891
|
}>, z.ZodObject<{
|
|
13885
13892
|
scheduled: z.ZodNumber;
|
|
13886
|
-
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">]>>>;
|
|
13893
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
13887
13894
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
13888
13895
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
13889
13896
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -13929,7 +13936,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13929
13936
|
id?: string | undefined;
|
|
13930
13937
|
persist?: boolean | undefined;
|
|
13931
13938
|
})[] | undefined);
|
|
13932
|
-
cancelIf?: Record<string,
|
|
13939
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13933
13940
|
overrideLock?: boolean | undefined;
|
|
13934
13941
|
}, {
|
|
13935
13942
|
scheduled: number;
|
|
@@ -13950,7 +13957,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13950
13957
|
id?: string | undefined;
|
|
13951
13958
|
persist?: boolean | undefined;
|
|
13952
13959
|
})[] | undefined);
|
|
13953
|
-
cancelIf?: Record<string,
|
|
13960
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13954
13961
|
overrideLock?: boolean | undefined;
|
|
13955
13962
|
}>]>>;
|
|
13956
13963
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -13973,12 +13980,12 @@ declare module '@scout9/app/schemas' {
|
|
|
13973
13980
|
message?: string | undefined;
|
|
13974
13981
|
secondsDelay?: number | undefined;
|
|
13975
13982
|
scheduled?: number | undefined;
|
|
13976
|
-
contextUpsert?: Record<string,
|
|
13983
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
13977
13984
|
resetIntent?: boolean | undefined;
|
|
13978
13985
|
followup?: {
|
|
13979
13986
|
message: string;
|
|
13980
13987
|
scheduled: number;
|
|
13981
|
-
cancelIf?: Record<string,
|
|
13988
|
+
cancelIf?: Record<string, any> | undefined;
|
|
13982
13989
|
overrideLock?: boolean | undefined;
|
|
13983
13990
|
} | {
|
|
13984
13991
|
scheduled: number;
|
|
@@ -13999,7 +14006,7 @@ declare module '@scout9/app/schemas' {
|
|
|
13999
14006
|
id?: string | undefined;
|
|
14000
14007
|
persist?: boolean | undefined;
|
|
14001
14008
|
})[] | undefined);
|
|
14002
|
-
cancelIf?: Record<string,
|
|
14009
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14003
14010
|
overrideLock?: boolean | undefined;
|
|
14004
14011
|
} | undefined;
|
|
14005
14012
|
}, {
|
|
@@ -14022,12 +14029,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14022
14029
|
message?: string | undefined;
|
|
14023
14030
|
secondsDelay?: number | undefined;
|
|
14024
14031
|
scheduled?: number | undefined;
|
|
14025
|
-
contextUpsert?: Record<string,
|
|
14032
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
14026
14033
|
resetIntent?: boolean | undefined;
|
|
14027
14034
|
followup?: {
|
|
14028
14035
|
message: string;
|
|
14029
14036
|
scheduled: number;
|
|
14030
|
-
cancelIf?: Record<string,
|
|
14037
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14031
14038
|
overrideLock?: boolean | undefined;
|
|
14032
14039
|
} | {
|
|
14033
14040
|
scheduled: number;
|
|
@@ -14048,7 +14055,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14048
14055
|
id?: string | undefined;
|
|
14049
14056
|
persist?: boolean | undefined;
|
|
14050
14057
|
})[] | undefined);
|
|
14051
|
-
cancelIf?: Record<string,
|
|
14058
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14052
14059
|
overrideLock?: boolean | undefined;
|
|
14053
14060
|
} | undefined;
|
|
14054
14061
|
}>;
|
|
@@ -14096,26 +14103,26 @@ declare module '@scout9/app/schemas' {
|
|
|
14096
14103
|
message: z.ZodOptional<z.ZodString>;
|
|
14097
14104
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
14098
14105
|
scheduled: z.ZodOptional<z.ZodNumber>;
|
|
14099
|
-
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">]>>>;
|
|
14106
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
14100
14107
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
14101
14108
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
14102
14109
|
scheduled: z.ZodNumber;
|
|
14103
|
-
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">]>>>;
|
|
14110
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
14104
14111
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
14105
14112
|
message: z.ZodString;
|
|
14106
14113
|
}, "strip", z.ZodTypeAny, {
|
|
14107
14114
|
message: string;
|
|
14108
14115
|
scheduled: number;
|
|
14109
|
-
cancelIf?: Record<string,
|
|
14116
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14110
14117
|
overrideLock?: boolean | undefined;
|
|
14111
14118
|
}, {
|
|
14112
14119
|
message: string;
|
|
14113
14120
|
scheduled: number;
|
|
14114
|
-
cancelIf?: Record<string,
|
|
14121
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14115
14122
|
overrideLock?: boolean | undefined;
|
|
14116
14123
|
}>, z.ZodObject<{
|
|
14117
14124
|
scheduled: z.ZodNumber;
|
|
14118
|
-
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">]>>>;
|
|
14125
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
14119
14126
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
14120
14127
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
14121
14128
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -14161,7 +14168,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14161
14168
|
id?: string | undefined;
|
|
14162
14169
|
persist?: boolean | undefined;
|
|
14163
14170
|
})[] | undefined);
|
|
14164
|
-
cancelIf?: Record<string,
|
|
14171
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14165
14172
|
overrideLock?: boolean | undefined;
|
|
14166
14173
|
}, {
|
|
14167
14174
|
scheduled: number;
|
|
@@ -14182,7 +14189,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14182
14189
|
id?: string | undefined;
|
|
14183
14190
|
persist?: boolean | undefined;
|
|
14184
14191
|
})[] | undefined);
|
|
14185
|
-
cancelIf?: Record<string,
|
|
14192
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14186
14193
|
overrideLock?: boolean | undefined;
|
|
14187
14194
|
}>]>>;
|
|
14188
14195
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14205,12 +14212,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14205
14212
|
message?: string | undefined;
|
|
14206
14213
|
secondsDelay?: number | undefined;
|
|
14207
14214
|
scheduled?: number | undefined;
|
|
14208
|
-
contextUpsert?: Record<string,
|
|
14215
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
14209
14216
|
resetIntent?: boolean | undefined;
|
|
14210
14217
|
followup?: {
|
|
14211
14218
|
message: string;
|
|
14212
14219
|
scheduled: number;
|
|
14213
|
-
cancelIf?: Record<string,
|
|
14220
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14214
14221
|
overrideLock?: boolean | undefined;
|
|
14215
14222
|
} | {
|
|
14216
14223
|
scheduled: number;
|
|
@@ -14231,7 +14238,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14231
14238
|
id?: string | undefined;
|
|
14232
14239
|
persist?: boolean | undefined;
|
|
14233
14240
|
})[] | undefined);
|
|
14234
|
-
cancelIf?: Record<string,
|
|
14241
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14235
14242
|
overrideLock?: boolean | undefined;
|
|
14236
14243
|
} | undefined;
|
|
14237
14244
|
}, {
|
|
@@ -14254,12 +14261,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14254
14261
|
message?: string | undefined;
|
|
14255
14262
|
secondsDelay?: number | undefined;
|
|
14256
14263
|
scheduled?: number | undefined;
|
|
14257
|
-
contextUpsert?: Record<string,
|
|
14264
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
14258
14265
|
resetIntent?: boolean | undefined;
|
|
14259
14266
|
followup?: {
|
|
14260
14267
|
message: string;
|
|
14261
14268
|
scheduled: number;
|
|
14262
|
-
cancelIf?: Record<string,
|
|
14269
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14263
14270
|
overrideLock?: boolean | undefined;
|
|
14264
14271
|
} | {
|
|
14265
14272
|
scheduled: number;
|
|
@@ -14280,7 +14287,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14280
14287
|
id?: string | undefined;
|
|
14281
14288
|
persist?: boolean | undefined;
|
|
14282
14289
|
})[] | undefined);
|
|
14283
|
-
cancelIf?: Record<string,
|
|
14290
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14284
14291
|
overrideLock?: boolean | undefined;
|
|
14285
14292
|
} | undefined;
|
|
14286
14293
|
}>;
|
|
@@ -14306,12 +14313,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14306
14313
|
message?: string | undefined;
|
|
14307
14314
|
secondsDelay?: number | undefined;
|
|
14308
14315
|
scheduled?: number | undefined;
|
|
14309
|
-
contextUpsert?: Record<string,
|
|
14316
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
14310
14317
|
resetIntent?: boolean | undefined;
|
|
14311
14318
|
followup?: {
|
|
14312
14319
|
message: string;
|
|
14313
14320
|
scheduled: number;
|
|
14314
|
-
cancelIf?: Record<string,
|
|
14321
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14315
14322
|
overrideLock?: boolean | undefined;
|
|
14316
14323
|
} | {
|
|
14317
14324
|
scheduled: number;
|
|
@@ -14332,7 +14339,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14332
14339
|
id?: string | undefined;
|
|
14333
14340
|
persist?: boolean | undefined;
|
|
14334
14341
|
})[] | undefined);
|
|
14335
|
-
cancelIf?: Record<string,
|
|
14342
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14336
14343
|
overrideLock?: boolean | undefined;
|
|
14337
14344
|
} | undefined;
|
|
14338
14345
|
};
|
|
@@ -14356,12 +14363,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14356
14363
|
message?: string | undefined;
|
|
14357
14364
|
secondsDelay?: number | undefined;
|
|
14358
14365
|
scheduled?: number | undefined;
|
|
14359
|
-
contextUpsert?: Record<string,
|
|
14366
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
14360
14367
|
resetIntent?: boolean | undefined;
|
|
14361
14368
|
followup?: {
|
|
14362
14369
|
message: string;
|
|
14363
14370
|
scheduled: number;
|
|
14364
|
-
cancelIf?: Record<string,
|
|
14371
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14365
14372
|
overrideLock?: boolean | undefined;
|
|
14366
14373
|
} | {
|
|
14367
14374
|
scheduled: number;
|
|
@@ -14382,7 +14389,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14382
14389
|
id?: string | undefined;
|
|
14383
14390
|
persist?: boolean | undefined;
|
|
14384
14391
|
})[] | undefined);
|
|
14385
|
-
cancelIf?: Record<string,
|
|
14392
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14386
14393
|
overrideLock?: boolean | undefined;
|
|
14387
14394
|
} | undefined;
|
|
14388
14395
|
};
|
|
@@ -14408,12 +14415,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14408
14415
|
message?: string | undefined;
|
|
14409
14416
|
secondsDelay?: number | undefined;
|
|
14410
14417
|
scheduled?: number | undefined;
|
|
14411
|
-
contextUpsert?: Record<string,
|
|
14418
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
14412
14419
|
resetIntent?: boolean | undefined;
|
|
14413
14420
|
followup?: {
|
|
14414
14421
|
message: string;
|
|
14415
14422
|
scheduled: number;
|
|
14416
|
-
cancelIf?: Record<string,
|
|
14423
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14417
14424
|
overrideLock?: boolean | undefined;
|
|
14418
14425
|
} | {
|
|
14419
14426
|
scheduled: number;
|
|
@@ -14434,7 +14441,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14434
14441
|
id?: string | undefined;
|
|
14435
14442
|
persist?: boolean | undefined;
|
|
14436
14443
|
})[] | undefined);
|
|
14437
|
-
cancelIf?: Record<string,
|
|
14444
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14438
14445
|
overrideLock?: boolean | undefined;
|
|
14439
14446
|
} | undefined;
|
|
14440
14447
|
};
|
|
@@ -14458,12 +14465,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14458
14465
|
message?: string | undefined;
|
|
14459
14466
|
secondsDelay?: number | undefined;
|
|
14460
14467
|
scheduled?: number | undefined;
|
|
14461
|
-
contextUpsert?: Record<string,
|
|
14468
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
14462
14469
|
resetIntent?: boolean | undefined;
|
|
14463
14470
|
followup?: {
|
|
14464
14471
|
message: string;
|
|
14465
14472
|
scheduled: number;
|
|
14466
|
-
cancelIf?: Record<string,
|
|
14473
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14467
14474
|
overrideLock?: boolean | undefined;
|
|
14468
14475
|
} | {
|
|
14469
14476
|
scheduled: number;
|
|
@@ -14484,7 +14491,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14484
14491
|
id?: string | undefined;
|
|
14485
14492
|
persist?: boolean | undefined;
|
|
14486
14493
|
})[] | undefined);
|
|
14487
|
-
cancelIf?: Record<string,
|
|
14494
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14488
14495
|
overrideLock?: boolean | undefined;
|
|
14489
14496
|
} | undefined;
|
|
14490
14497
|
};
|
|
@@ -14532,26 +14539,26 @@ declare module '@scout9/app/schemas' {
|
|
|
14532
14539
|
}>]>, "many">]>>;
|
|
14533
14540
|
removeInstructions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
14534
14541
|
secondsDelay: z.ZodOptional<z.ZodNumber>;
|
|
14535
|
-
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">]>>>;
|
|
14542
|
+
contextUpsert: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
14536
14543
|
resetIntent: z.ZodOptional<z.ZodBoolean>;
|
|
14537
14544
|
followup: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
14538
14545
|
scheduled: z.ZodNumber;
|
|
14539
|
-
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">]>>>;
|
|
14546
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
14540
14547
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
14541
14548
|
message: z.ZodString;
|
|
14542
14549
|
}, "strip", z.ZodTypeAny, {
|
|
14543
14550
|
message: string;
|
|
14544
14551
|
scheduled: number;
|
|
14545
|
-
cancelIf?: Record<string,
|
|
14552
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14546
14553
|
overrideLock?: boolean | undefined;
|
|
14547
14554
|
}, {
|
|
14548
14555
|
message: string;
|
|
14549
14556
|
scheduled: number;
|
|
14550
|
-
cancelIf?: Record<string,
|
|
14557
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14551
14558
|
overrideLock?: boolean | undefined;
|
|
14552
14559
|
}>, z.ZodObject<{
|
|
14553
14560
|
scheduled: z.ZodNumber;
|
|
14554
|
-
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">]>>>;
|
|
14561
|
+
cancelIf: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
14555
14562
|
overrideLock: z.ZodOptional<z.ZodBoolean>;
|
|
14556
14563
|
instructions: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
14557
14564
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -14597,7 +14604,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14597
14604
|
id?: string | undefined;
|
|
14598
14605
|
persist?: boolean | undefined;
|
|
14599
14606
|
})[] | undefined);
|
|
14600
|
-
cancelIf?: Record<string,
|
|
14607
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14601
14608
|
overrideLock?: boolean | undefined;
|
|
14602
14609
|
}, {
|
|
14603
14610
|
scheduled: number;
|
|
@@ -14618,7 +14625,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14618
14625
|
id?: string | undefined;
|
|
14619
14626
|
persist?: boolean | undefined;
|
|
14620
14627
|
})[] | undefined);
|
|
14621
|
-
cancelIf?: Record<string,
|
|
14628
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14622
14629
|
overrideLock?: boolean | undefined;
|
|
14623
14630
|
}>]>>;
|
|
14624
14631
|
keywords: z.ZodArray<z.ZodString, "many">;
|
|
@@ -14643,12 +14650,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14643
14650
|
})[] | undefined;
|
|
14644
14651
|
removeInstructions?: string[] | undefined;
|
|
14645
14652
|
secondsDelay?: number | undefined;
|
|
14646
|
-
contextUpsert?: Record<string,
|
|
14653
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
14647
14654
|
resetIntent?: boolean | undefined;
|
|
14648
14655
|
followup?: {
|
|
14649
14656
|
message: string;
|
|
14650
14657
|
scheduled: number;
|
|
14651
|
-
cancelIf?: Record<string,
|
|
14658
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14652
14659
|
overrideLock?: boolean | undefined;
|
|
14653
14660
|
} | {
|
|
14654
14661
|
scheduled: number;
|
|
@@ -14669,7 +14676,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14669
14676
|
id?: string | undefined;
|
|
14670
14677
|
persist?: boolean | undefined;
|
|
14671
14678
|
})[] | undefined);
|
|
14672
|
-
cancelIf?: Record<string,
|
|
14679
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14673
14680
|
overrideLock?: boolean | undefined;
|
|
14674
14681
|
} | undefined;
|
|
14675
14682
|
}, {
|
|
@@ -14693,12 +14700,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14693
14700
|
})[] | undefined;
|
|
14694
14701
|
removeInstructions?: string[] | undefined;
|
|
14695
14702
|
secondsDelay?: number | undefined;
|
|
14696
|
-
contextUpsert?: Record<string,
|
|
14703
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
14697
14704
|
resetIntent?: boolean | undefined;
|
|
14698
14705
|
followup?: {
|
|
14699
14706
|
message: string;
|
|
14700
14707
|
scheduled: number;
|
|
14701
|
-
cancelIf?: Record<string,
|
|
14708
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14702
14709
|
overrideLock?: boolean | undefined;
|
|
14703
14710
|
} | {
|
|
14704
14711
|
scheduled: number;
|
|
@@ -14719,7 +14726,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14719
14726
|
id?: string | undefined;
|
|
14720
14727
|
persist?: boolean | undefined;
|
|
14721
14728
|
})[] | undefined);
|
|
14722
|
-
cancelIf?: Record<string,
|
|
14729
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14723
14730
|
overrideLock?: boolean | undefined;
|
|
14724
14731
|
} | undefined;
|
|
14725
14732
|
}>, "many">]>>;
|
|
@@ -14743,12 +14750,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14743
14750
|
})[] | undefined;
|
|
14744
14751
|
removeInstructions?: string[] | undefined;
|
|
14745
14752
|
secondsDelay?: number | undefined;
|
|
14746
|
-
contextUpsert?: Record<string,
|
|
14753
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
14747
14754
|
resetIntent?: boolean | undefined;
|
|
14748
14755
|
followup?: {
|
|
14749
14756
|
message: string;
|
|
14750
14757
|
scheduled: number;
|
|
14751
|
-
cancelIf?: Record<string,
|
|
14758
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14752
14759
|
overrideLock?: boolean | undefined;
|
|
14753
14760
|
} | {
|
|
14754
14761
|
scheduled: number;
|
|
@@ -14769,7 +14776,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14769
14776
|
id?: string | undefined;
|
|
14770
14777
|
persist?: boolean | undefined;
|
|
14771
14778
|
})[] | undefined);
|
|
14772
|
-
cancelIf?: Record<string,
|
|
14779
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14773
14780
|
overrideLock?: boolean | undefined;
|
|
14774
14781
|
} | undefined;
|
|
14775
14782
|
anticipate?: {
|
|
@@ -14794,12 +14801,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14794
14801
|
message?: string | undefined;
|
|
14795
14802
|
secondsDelay?: number | undefined;
|
|
14796
14803
|
scheduled?: number | undefined;
|
|
14797
|
-
contextUpsert?: Record<string,
|
|
14804
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
14798
14805
|
resetIntent?: boolean | undefined;
|
|
14799
14806
|
followup?: {
|
|
14800
14807
|
message: string;
|
|
14801
14808
|
scheduled: number;
|
|
14802
|
-
cancelIf?: Record<string,
|
|
14809
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14803
14810
|
overrideLock?: boolean | undefined;
|
|
14804
14811
|
} | {
|
|
14805
14812
|
scheduled: number;
|
|
@@ -14820,7 +14827,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14820
14827
|
id?: string | undefined;
|
|
14821
14828
|
persist?: boolean | undefined;
|
|
14822
14829
|
})[] | undefined);
|
|
14823
|
-
cancelIf?: Record<string,
|
|
14830
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14824
14831
|
overrideLock?: boolean | undefined;
|
|
14825
14832
|
} | undefined;
|
|
14826
14833
|
};
|
|
@@ -14844,12 +14851,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14844
14851
|
message?: string | undefined;
|
|
14845
14852
|
secondsDelay?: number | undefined;
|
|
14846
14853
|
scheduled?: number | undefined;
|
|
14847
|
-
contextUpsert?: Record<string,
|
|
14854
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
14848
14855
|
resetIntent?: boolean | undefined;
|
|
14849
14856
|
followup?: {
|
|
14850
14857
|
message: string;
|
|
14851
14858
|
scheduled: number;
|
|
14852
|
-
cancelIf?: Record<string,
|
|
14859
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14853
14860
|
overrideLock?: boolean | undefined;
|
|
14854
14861
|
} | {
|
|
14855
14862
|
scheduled: number;
|
|
@@ -14870,7 +14877,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14870
14877
|
id?: string | undefined;
|
|
14871
14878
|
persist?: boolean | undefined;
|
|
14872
14879
|
})[] | undefined);
|
|
14873
|
-
cancelIf?: Record<string,
|
|
14880
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14874
14881
|
overrideLock?: boolean | undefined;
|
|
14875
14882
|
} | undefined;
|
|
14876
14883
|
};
|
|
@@ -14895,12 +14902,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14895
14902
|
})[] | undefined;
|
|
14896
14903
|
removeInstructions?: string[] | undefined;
|
|
14897
14904
|
secondsDelay?: number | undefined;
|
|
14898
|
-
contextUpsert?: Record<string,
|
|
14905
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
14899
14906
|
resetIntent?: boolean | undefined;
|
|
14900
14907
|
followup?: {
|
|
14901
14908
|
message: string;
|
|
14902
14909
|
scheduled: number;
|
|
14903
|
-
cancelIf?: Record<string,
|
|
14910
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14904
14911
|
overrideLock?: boolean | undefined;
|
|
14905
14912
|
} | {
|
|
14906
14913
|
scheduled: number;
|
|
@@ -14921,7 +14928,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14921
14928
|
id?: string | undefined;
|
|
14922
14929
|
persist?: boolean | undefined;
|
|
14923
14930
|
})[] | undefined);
|
|
14924
|
-
cancelIf?: Record<string,
|
|
14931
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14925
14932
|
overrideLock?: boolean | undefined;
|
|
14926
14933
|
} | undefined;
|
|
14927
14934
|
}[] | undefined;
|
|
@@ -14945,12 +14952,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14945
14952
|
})[] | undefined;
|
|
14946
14953
|
removeInstructions?: string[] | undefined;
|
|
14947
14954
|
secondsDelay?: number | undefined;
|
|
14948
|
-
contextUpsert?: Record<string,
|
|
14955
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
14949
14956
|
resetIntent?: boolean | undefined;
|
|
14950
14957
|
followup?: {
|
|
14951
14958
|
message: string;
|
|
14952
14959
|
scheduled: number;
|
|
14953
|
-
cancelIf?: Record<string,
|
|
14960
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14954
14961
|
overrideLock?: boolean | undefined;
|
|
14955
14962
|
} | {
|
|
14956
14963
|
scheduled: number;
|
|
@@ -14971,7 +14978,7 @@ declare module '@scout9/app/schemas' {
|
|
|
14971
14978
|
id?: string | undefined;
|
|
14972
14979
|
persist?: boolean | undefined;
|
|
14973
14980
|
})[] | undefined);
|
|
14974
|
-
cancelIf?: Record<string,
|
|
14981
|
+
cancelIf?: Record<string, any> | undefined;
|
|
14975
14982
|
overrideLock?: boolean | undefined;
|
|
14976
14983
|
} | undefined;
|
|
14977
14984
|
anticipate?: {
|
|
@@ -14996,12 +15003,12 @@ declare module '@scout9/app/schemas' {
|
|
|
14996
15003
|
message?: string | undefined;
|
|
14997
15004
|
secondsDelay?: number | undefined;
|
|
14998
15005
|
scheduled?: number | undefined;
|
|
14999
|
-
contextUpsert?: Record<string,
|
|
15006
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
15000
15007
|
resetIntent?: boolean | undefined;
|
|
15001
15008
|
followup?: {
|
|
15002
15009
|
message: string;
|
|
15003
15010
|
scheduled: number;
|
|
15004
|
-
cancelIf?: Record<string,
|
|
15011
|
+
cancelIf?: Record<string, any> | undefined;
|
|
15005
15012
|
overrideLock?: boolean | undefined;
|
|
15006
15013
|
} | {
|
|
15007
15014
|
scheduled: number;
|
|
@@ -15022,7 +15029,7 @@ declare module '@scout9/app/schemas' {
|
|
|
15022
15029
|
id?: string | undefined;
|
|
15023
15030
|
persist?: boolean | undefined;
|
|
15024
15031
|
})[] | undefined);
|
|
15025
|
-
cancelIf?: Record<string,
|
|
15032
|
+
cancelIf?: Record<string, any> | undefined;
|
|
15026
15033
|
overrideLock?: boolean | undefined;
|
|
15027
15034
|
} | undefined;
|
|
15028
15035
|
};
|
|
@@ -15046,12 +15053,12 @@ declare module '@scout9/app/schemas' {
|
|
|
15046
15053
|
message?: string | undefined;
|
|
15047
15054
|
secondsDelay?: number | undefined;
|
|
15048
15055
|
scheduled?: number | undefined;
|
|
15049
|
-
contextUpsert?: Record<string,
|
|
15056
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
15050
15057
|
resetIntent?: boolean | undefined;
|
|
15051
15058
|
followup?: {
|
|
15052
15059
|
message: string;
|
|
15053
15060
|
scheduled: number;
|
|
15054
|
-
cancelIf?: Record<string,
|
|
15061
|
+
cancelIf?: Record<string, any> | undefined;
|
|
15055
15062
|
overrideLock?: boolean | undefined;
|
|
15056
15063
|
} | {
|
|
15057
15064
|
scheduled: number;
|
|
@@ -15072,7 +15079,7 @@ declare module '@scout9/app/schemas' {
|
|
|
15072
15079
|
id?: string | undefined;
|
|
15073
15080
|
persist?: boolean | undefined;
|
|
15074
15081
|
})[] | undefined);
|
|
15075
|
-
cancelIf?: Record<string,
|
|
15082
|
+
cancelIf?: Record<string, any> | undefined;
|
|
15076
15083
|
overrideLock?: boolean | undefined;
|
|
15077
15084
|
} | undefined;
|
|
15078
15085
|
};
|
|
@@ -15097,12 +15104,12 @@ declare module '@scout9/app/schemas' {
|
|
|
15097
15104
|
})[] | undefined;
|
|
15098
15105
|
removeInstructions?: string[] | undefined;
|
|
15099
15106
|
secondsDelay?: number | undefined;
|
|
15100
|
-
contextUpsert?: Record<string,
|
|
15107
|
+
contextUpsert?: Record<string, any> | undefined;
|
|
15101
15108
|
resetIntent?: boolean | undefined;
|
|
15102
15109
|
followup?: {
|
|
15103
15110
|
message: string;
|
|
15104
15111
|
scheduled: number;
|
|
15105
|
-
cancelIf?: Record<string,
|
|
15112
|
+
cancelIf?: Record<string, any> | undefined;
|
|
15106
15113
|
overrideLock?: boolean | undefined;
|
|
15107
15114
|
} | {
|
|
15108
15115
|
scheduled: number;
|
|
@@ -15123,7 +15130,7 @@ declare module '@scout9/app/schemas' {
|
|
|
15123
15130
|
id?: string | undefined;
|
|
15124
15131
|
persist?: boolean | undefined;
|
|
15125
15132
|
})[] | undefined);
|
|
15126
|
-
cancelIf?: Record<string,
|
|
15133
|
+
cancelIf?: Record<string, any> | undefined;
|
|
15127
15134
|
overrideLock?: boolean | undefined;
|
|
15128
15135
|
} | undefined;
|
|
15129
15136
|
}[] | undefined;
|
|
@@ -15410,7 +15417,7 @@ declare module '@scout9/app/schemas' {
|
|
|
15410
15417
|
headers?: any;
|
|
15411
15418
|
} | undefined;
|
|
15412
15419
|
}>>>;
|
|
15413
|
-
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">]>>;
|
|
15420
|
+
export const ConversationContext: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodAny, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>;
|
|
15414
15421
|
export const ConversationAnticipateSchema: z.ZodObject<{
|
|
15415
15422
|
type: z.ZodEnum<["did", "literal", "context"]>;
|
|
15416
15423
|
slots: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodAny, "many">>;
|