@scout9/app 1.0.0-alpha.0.6.3 → 1.0.0-alpha.0.6.5
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-ea47d904.cjs → dev-6e60a643.cjs} +3 -3
- package/dist/{index-c61b5075.cjs → index-bf3ce1b6.cjs} +7 -7
- package/dist/index.cjs +4 -4
- package/dist/{macros-621210f1.cjs → macros-1a4fd407.cjs} +10 -1
- package/dist/{multipart-parser-0a176f23.cjs → multipart-parser-13478cb7.cjs} +4 -4
- package/dist/schemas.cjs +1 -1
- package/dist/{spirits-e626085b.cjs → spirits-985e6711.cjs} +112 -106
- package/dist/spirits.cjs +1 -1
- package/dist/testing-tools.cjs +3 -3
- package/package.json +1 -1
- package/src/public.d.ts +77 -1
- package/src/runtime/schemas/message.js +3 -1
- package/src/runtime/schemas/users.js +1 -0
- package/src/testing-tools/spirits.js +9 -1
- package/types/index.d.ts +267 -6
- package/types/index.d.ts.map +3 -1
package/types/index.d.ts
CHANGED
|
@@ -1,9 +1,4 @@
|
|
|
1
1
|
declare module '@scout9/app' {
|
|
2
|
-
/**
|
|
3
|
-
* Scout9 App
|
|
4
|
-
* Application platform for managing auto reply workflows from personal communication methods
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
2
|
/**
|
|
8
3
|
* @param event - every workflow receives an event object
|
|
9
4
|
* */
|
|
@@ -480,6 +475,21 @@ declare module '@scout9/app' {
|
|
|
480
475
|
|
|
481
476
|
export type Followup = FollowupWithMessage | FollowupWithInstructions;
|
|
482
477
|
|
|
478
|
+
/**
|
|
479
|
+
* Metadata to provide a atomic transaction on a entity context record
|
|
480
|
+
* @ingress auto/manual only
|
|
481
|
+
*/
|
|
482
|
+
export type EntityContextUpsert = {
|
|
483
|
+
entityType: string;
|
|
484
|
+
entityRecordId: string;
|
|
485
|
+
method: 'mutate' | 'delete'
|
|
486
|
+
} & ({
|
|
487
|
+
method: 'delete'
|
|
488
|
+
} | {
|
|
489
|
+
method: 'mutate';
|
|
490
|
+
fields: Record<string, string | number | boolean | null | '#remove' | '#delete'>;
|
|
491
|
+
});
|
|
492
|
+
|
|
483
493
|
export type Forward = boolean | string | {
|
|
484
494
|
to?: string | undefined;
|
|
485
495
|
mode?: ("after-reply" | "immediately") | undefined;
|
|
@@ -504,6 +514,9 @@ declare module '@scout9/app' {
|
|
|
504
514
|
export type Message = {
|
|
505
515
|
/** Unique ID for the message */
|
|
506
516
|
id: string;
|
|
517
|
+
/**
|
|
518
|
+
* @TODO role:agent is inaccurate it should be "persona"
|
|
519
|
+
*/
|
|
507
520
|
role: "agent" | "customer" | "system";
|
|
508
521
|
content: string;
|
|
509
522
|
/** Datetime ISO 8601 timestamp */
|
|
@@ -521,6 +534,10 @@ declare module '@scout9/app' {
|
|
|
521
534
|
delayInSeconds?: (number | null) | undefined;
|
|
522
535
|
/** Entities related to the message */
|
|
523
536
|
entities?: EntityToken[] | null;
|
|
537
|
+
/** If set to true, the PMT will not transform, message will be sent as is */
|
|
538
|
+
ignoreTransform?: boolean;
|
|
539
|
+
/** Media urls to attach to the transported message */
|
|
540
|
+
mediaUrls?: string[];
|
|
524
541
|
};
|
|
525
542
|
|
|
526
543
|
export type PersonaConfiguration = AgentConfiguration;
|
|
@@ -616,27 +633,79 @@ declare module '@scout9/app' {
|
|
|
616
633
|
|
|
617
634
|
export type Anticipate = AnticipateDid | AnticipateKeywords[];
|
|
618
635
|
|
|
636
|
+
export type DirectMessagePayload = {
|
|
637
|
+
/**
|
|
638
|
+
* The content
|
|
639
|
+
*/
|
|
640
|
+
content: string;
|
|
641
|
+
|
|
642
|
+
/**
|
|
643
|
+
* If true, the PMT will transform the message into the owners own words. By default will send the message as is
|
|
644
|
+
*/
|
|
645
|
+
transform?: boolean;
|
|
646
|
+
|
|
647
|
+
mediaUrls?: string[];
|
|
648
|
+
};
|
|
649
|
+
|
|
650
|
+
/**
|
|
651
|
+
* Workflow Response Slot, can use for both PMT workflow event and event macro runtimes
|
|
652
|
+
*/
|
|
619
653
|
export type WorkflowResponseSlotBase = {
|
|
620
654
|
/** Forward input information of a conversation */
|
|
621
655
|
forward?: Forward | undefined;
|
|
622
656
|
/** Note to provide to the agent, recommend using forward object api instead */
|
|
623
657
|
forwardNote?: string | undefined;
|
|
658
|
+
|
|
659
|
+
/** Instructions to send to the PMT on how to steer the conversation */
|
|
624
660
|
instructions?: Instruction[] | undefined;
|
|
661
|
+
|
|
662
|
+
/** Remove instructions from memory (requires set instructions to have ids) */
|
|
625
663
|
removeInstructions?: string[] | undefined;
|
|
626
|
-
|
|
664
|
+
|
|
665
|
+
/** If provided, sends a direct message to the user */
|
|
666
|
+
message?: string | DirectMessagePayload | undefined;
|
|
667
|
+
|
|
668
|
+
/** Delays in seconds of instructions (if provided) to PMT and direct message (if provided) to user */
|
|
627
669
|
secondsDelay?: number | undefined;
|
|
670
|
+
|
|
671
|
+
/** unix time of when to send instructions or message */
|
|
628
672
|
scheduled?: number | undefined;
|
|
673
|
+
|
|
674
|
+
/** Context to upsert to the conversation */
|
|
629
675
|
contextUpsert?: {
|
|
630
676
|
[x: string]: any;
|
|
631
677
|
} | undefined;
|
|
678
|
+
|
|
679
|
+
/** If true, resets the conversations intent value to undefined or to its initial value */
|
|
632
680
|
resetIntent?: boolean | undefined;
|
|
681
|
+
|
|
682
|
+
/** Information to follow up to the client */
|
|
633
683
|
followup?: Followup | undefined;
|
|
634
684
|
};
|
|
635
685
|
|
|
686
|
+
/**
|
|
687
|
+
* Workflow Response Slot, only PMT workflow events
|
|
688
|
+
*/
|
|
636
689
|
export type WorkflowResponseSlot = WorkflowResponseSlotBase & {
|
|
690
|
+
/**
|
|
691
|
+
* The Anticipate API acts as a preflight to the users next response, for example:
|
|
692
|
+
* - did the user agree to accept the concert tickets? Then proceed with asking for their email
|
|
693
|
+
* - Did the user say any of these words: "cancel", "drop", or "remove"? Then cancel tickets
|
|
694
|
+
*/
|
|
637
695
|
anticipate?: Anticipate | undefined;
|
|
696
|
+
|
|
697
|
+
|
|
698
|
+
/**
|
|
699
|
+
* If provided, it will propagate entity context to your Scout9 entity context store
|
|
700
|
+
* @ingress auto/manual only
|
|
701
|
+
*/
|
|
702
|
+
entityContextUpsert?: Array<EntityContextUpsert> | undefined;
|
|
638
703
|
};
|
|
639
704
|
|
|
705
|
+
/**
|
|
706
|
+
* The JSON anticipated response for a given workflow to drive the PMT runtime
|
|
707
|
+
* Can either be an EventMacro or WorkflowResponseSlot
|
|
708
|
+
*/
|
|
640
709
|
export type WorkflowResponse = EventMacros | WorkflowResponseSlot | (WorkflowResponseSlot | EventMacros)[];
|
|
641
710
|
|
|
642
711
|
export type WorkflowFunction = (event: WorkflowEvent) => WorkflowResponse | Promise<WorkflowResponse>;
|
|
@@ -863,6 +932,7 @@ declare module '@scout9/app/spirits' {
|
|
|
863
932
|
context: Change<any>;
|
|
864
933
|
message: Change<any>;
|
|
865
934
|
followup: Array<any>;
|
|
935
|
+
entityContextUpsert: Array<any>;
|
|
866
936
|
};
|
|
867
937
|
}
|
|
868
938
|
|
|
@@ -1319,6 +1389,7 @@ declare module '@scout9/app/schemas' {
|
|
|
1319
1389
|
firstName: z.ZodOptional<z.ZodString>;
|
|
1320
1390
|
lastName: z.ZodOptional<z.ZodString>;
|
|
1321
1391
|
inactive: z.ZodOptional<z.ZodBoolean>;
|
|
1392
|
+
isFreeProgrammablePhoneNumber: z.ZodOptional<z.ZodBoolean>;
|
|
1322
1393
|
programmablePhoneNumber: z.ZodOptional<z.ZodString>;
|
|
1323
1394
|
programmablePhoneNumberSid: z.ZodOptional<z.ZodString>;
|
|
1324
1395
|
programmableEmail: z.ZodOptional<z.ZodString>;
|
|
@@ -1359,6 +1430,8 @@ declare module '@scout9/app/schemas' {
|
|
|
1359
1430
|
option?: string | null | undefined;
|
|
1360
1431
|
text?: string | null | undefined;
|
|
1361
1432
|
}>, "many">>>;
|
|
1433
|
+
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
1434
|
+
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1362
1435
|
}, "strip", z.ZodTypeAny, {
|
|
1363
1436
|
time: string;
|
|
1364
1437
|
id: string;
|
|
@@ -1377,6 +1450,8 @@ declare module '@scout9/app/schemas' {
|
|
|
1377
1450
|
option?: string | null | undefined;
|
|
1378
1451
|
text?: string | null | undefined;
|
|
1379
1452
|
}[] | null | undefined;
|
|
1453
|
+
ignoreTransform?: boolean | undefined;
|
|
1454
|
+
mediaUrls?: string[] | null | undefined;
|
|
1380
1455
|
}, {
|
|
1381
1456
|
time: string;
|
|
1382
1457
|
id: string;
|
|
@@ -1395,6 +1470,8 @@ declare module '@scout9/app/schemas' {
|
|
|
1395
1470
|
option?: string | null | undefined;
|
|
1396
1471
|
text?: string | null | undefined;
|
|
1397
1472
|
}[] | null | undefined;
|
|
1473
|
+
ignoreTransform?: boolean | undefined;
|
|
1474
|
+
mediaUrls?: string[] | null | undefined;
|
|
1398
1475
|
}>, "many">, "many">>;
|
|
1399
1476
|
audios: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
1400
1477
|
pmt: z.ZodOptional<z.ZodObject<{
|
|
@@ -1432,6 +1509,7 @@ declare module '@scout9/app/schemas' {
|
|
|
1432
1509
|
firstName?: string | undefined;
|
|
1433
1510
|
lastName?: string | undefined;
|
|
1434
1511
|
inactive?: boolean | undefined;
|
|
1512
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
1435
1513
|
programmablePhoneNumber?: string | undefined;
|
|
1436
1514
|
programmablePhoneNumberSid?: string | undefined;
|
|
1437
1515
|
programmableEmail?: string | undefined;
|
|
@@ -1457,6 +1535,8 @@ declare module '@scout9/app/schemas' {
|
|
|
1457
1535
|
option?: string | null | undefined;
|
|
1458
1536
|
text?: string | null | undefined;
|
|
1459
1537
|
}[] | null | undefined;
|
|
1538
|
+
ignoreTransform?: boolean | undefined;
|
|
1539
|
+
mediaUrls?: string[] | null | undefined;
|
|
1460
1540
|
}[][] | undefined;
|
|
1461
1541
|
audios?: any[] | undefined;
|
|
1462
1542
|
pmt?: {
|
|
@@ -1477,6 +1557,7 @@ declare module '@scout9/app/schemas' {
|
|
|
1477
1557
|
firstName?: string | undefined;
|
|
1478
1558
|
lastName?: string | undefined;
|
|
1479
1559
|
inactive?: boolean | undefined;
|
|
1560
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
1480
1561
|
programmablePhoneNumber?: string | undefined;
|
|
1481
1562
|
programmablePhoneNumberSid?: string | undefined;
|
|
1482
1563
|
programmableEmail?: string | undefined;
|
|
@@ -1505,6 +1586,8 @@ declare module '@scout9/app/schemas' {
|
|
|
1505
1586
|
option?: string | null | undefined;
|
|
1506
1587
|
text?: string | null | undefined;
|
|
1507
1588
|
}[] | null | undefined;
|
|
1589
|
+
ignoreTransform?: boolean | undefined;
|
|
1590
|
+
mediaUrls?: string[] | null | undefined;
|
|
1508
1591
|
}[][] | undefined;
|
|
1509
1592
|
audios?: any[] | undefined;
|
|
1510
1593
|
pmt?: {
|
|
@@ -1737,6 +1820,7 @@ declare module '@scout9/app/schemas' {
|
|
|
1737
1820
|
firstName?: string | undefined;
|
|
1738
1821
|
lastName?: string | undefined;
|
|
1739
1822
|
inactive?: boolean | undefined;
|
|
1823
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
1740
1824
|
programmablePhoneNumber?: string | undefined;
|
|
1741
1825
|
programmablePhoneNumberSid?: string | undefined;
|
|
1742
1826
|
programmableEmail?: string | undefined;
|
|
@@ -1762,6 +1846,8 @@ declare module '@scout9/app/schemas' {
|
|
|
1762
1846
|
option?: string | null | undefined;
|
|
1763
1847
|
text?: string | null | undefined;
|
|
1764
1848
|
}[] | null | undefined;
|
|
1849
|
+
ignoreTransform?: boolean | undefined;
|
|
1850
|
+
mediaUrls?: string[] | null | undefined;
|
|
1765
1851
|
}[][] | undefined;
|
|
1766
1852
|
audios?: any[] | undefined;
|
|
1767
1853
|
pmt?: {
|
|
@@ -1849,6 +1935,7 @@ declare module '@scout9/app/schemas' {
|
|
|
1849
1935
|
firstName?: string | undefined;
|
|
1850
1936
|
lastName?: string | undefined;
|
|
1851
1937
|
inactive?: boolean | undefined;
|
|
1938
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
1852
1939
|
programmablePhoneNumber?: string | undefined;
|
|
1853
1940
|
programmablePhoneNumberSid?: string | undefined;
|
|
1854
1941
|
programmableEmail?: string | undefined;
|
|
@@ -1877,6 +1964,8 @@ declare module '@scout9/app/schemas' {
|
|
|
1877
1964
|
option?: string | null | undefined;
|
|
1878
1965
|
text?: string | null | undefined;
|
|
1879
1966
|
}[] | null | undefined;
|
|
1967
|
+
ignoreTransform?: boolean | undefined;
|
|
1968
|
+
mediaUrls?: string[] | null | undefined;
|
|
1880
1969
|
}[][] | undefined;
|
|
1881
1970
|
audios?: any[] | undefined;
|
|
1882
1971
|
pmt?: {
|
|
@@ -2950,6 +3039,8 @@ declare module '@scout9/app/schemas' {
|
|
|
2950
3039
|
option?: string | null | undefined;
|
|
2951
3040
|
text?: string | null | undefined;
|
|
2952
3041
|
}>, "many">>>;
|
|
3042
|
+
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
3043
|
+
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
2953
3044
|
}, "strip", z.ZodTypeAny, {
|
|
2954
3045
|
time: string;
|
|
2955
3046
|
id: string;
|
|
@@ -2968,6 +3059,8 @@ declare module '@scout9/app/schemas' {
|
|
|
2968
3059
|
option?: string | null | undefined;
|
|
2969
3060
|
text?: string | null | undefined;
|
|
2970
3061
|
}[] | null | undefined;
|
|
3062
|
+
ignoreTransform?: boolean | undefined;
|
|
3063
|
+
mediaUrls?: string[] | null | undefined;
|
|
2971
3064
|
}, {
|
|
2972
3065
|
time: string;
|
|
2973
3066
|
id: string;
|
|
@@ -2986,6 +3079,8 @@ declare module '@scout9/app/schemas' {
|
|
|
2986
3079
|
option?: string | null | undefined;
|
|
2987
3080
|
text?: string | null | undefined;
|
|
2988
3081
|
}[] | null | undefined;
|
|
3082
|
+
ignoreTransform?: boolean | undefined;
|
|
3083
|
+
mediaUrls?: string[] | null | undefined;
|
|
2989
3084
|
}>;
|
|
2990
3085
|
export const CustomerValueSchema: z.ZodUnion<[z.ZodBoolean, z.ZodNumber, z.ZodString]>;
|
|
2991
3086
|
export const CustomerSchema: z.ZodObject<{
|
|
@@ -3061,6 +3156,7 @@ declare module '@scout9/app/schemas' {
|
|
|
3061
3156
|
firstName: z.ZodOptional<z.ZodString>;
|
|
3062
3157
|
lastName: z.ZodOptional<z.ZodString>;
|
|
3063
3158
|
inactive: z.ZodOptional<z.ZodBoolean>;
|
|
3159
|
+
isFreeProgrammablePhoneNumber: z.ZodOptional<z.ZodBoolean>;
|
|
3064
3160
|
programmablePhoneNumber: z.ZodOptional<z.ZodString>;
|
|
3065
3161
|
programmablePhoneNumberSid: z.ZodOptional<z.ZodString>;
|
|
3066
3162
|
programmableEmail: z.ZodOptional<z.ZodString>;
|
|
@@ -3101,6 +3197,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3101
3197
|
option?: string | null | undefined;
|
|
3102
3198
|
text?: string | null | undefined;
|
|
3103
3199
|
}>, "many">>>;
|
|
3200
|
+
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
3201
|
+
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
3104
3202
|
}, "strip", z.ZodTypeAny, {
|
|
3105
3203
|
time: string;
|
|
3106
3204
|
id: string;
|
|
@@ -3119,6 +3217,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3119
3217
|
option?: string | null | undefined;
|
|
3120
3218
|
text?: string | null | undefined;
|
|
3121
3219
|
}[] | null | undefined;
|
|
3220
|
+
ignoreTransform?: boolean | undefined;
|
|
3221
|
+
mediaUrls?: string[] | null | undefined;
|
|
3122
3222
|
}, {
|
|
3123
3223
|
time: string;
|
|
3124
3224
|
id: string;
|
|
@@ -3137,6 +3237,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3137
3237
|
option?: string | null | undefined;
|
|
3138
3238
|
text?: string | null | undefined;
|
|
3139
3239
|
}[] | null | undefined;
|
|
3240
|
+
ignoreTransform?: boolean | undefined;
|
|
3241
|
+
mediaUrls?: string[] | null | undefined;
|
|
3140
3242
|
}>, "many">, "many">>;
|
|
3141
3243
|
audios: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
3142
3244
|
pmt: z.ZodOptional<z.ZodObject<{
|
|
@@ -3174,6 +3276,7 @@ declare module '@scout9/app/schemas' {
|
|
|
3174
3276
|
firstName?: string | undefined;
|
|
3175
3277
|
lastName?: string | undefined;
|
|
3176
3278
|
inactive?: boolean | undefined;
|
|
3279
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
3177
3280
|
programmablePhoneNumber?: string | undefined;
|
|
3178
3281
|
programmablePhoneNumberSid?: string | undefined;
|
|
3179
3282
|
programmableEmail?: string | undefined;
|
|
@@ -3199,6 +3302,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3199
3302
|
option?: string | null | undefined;
|
|
3200
3303
|
text?: string | null | undefined;
|
|
3201
3304
|
}[] | null | undefined;
|
|
3305
|
+
ignoreTransform?: boolean | undefined;
|
|
3306
|
+
mediaUrls?: string[] | null | undefined;
|
|
3202
3307
|
}[][] | undefined;
|
|
3203
3308
|
audios?: any[] | undefined;
|
|
3204
3309
|
pmt?: {
|
|
@@ -3219,6 +3324,7 @@ declare module '@scout9/app/schemas' {
|
|
|
3219
3324
|
firstName?: string | undefined;
|
|
3220
3325
|
lastName?: string | undefined;
|
|
3221
3326
|
inactive?: boolean | undefined;
|
|
3327
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
3222
3328
|
programmablePhoneNumber?: string | undefined;
|
|
3223
3329
|
programmablePhoneNumberSid?: string | undefined;
|
|
3224
3330
|
programmableEmail?: string | undefined;
|
|
@@ -3247,6 +3353,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3247
3353
|
option?: string | null | undefined;
|
|
3248
3354
|
text?: string | null | undefined;
|
|
3249
3355
|
}[] | null | undefined;
|
|
3356
|
+
ignoreTransform?: boolean | undefined;
|
|
3357
|
+
mediaUrls?: string[] | null | undefined;
|
|
3250
3358
|
}[][] | undefined;
|
|
3251
3359
|
audios?: any[] | undefined;
|
|
3252
3360
|
pmt?: {
|
|
@@ -3276,6 +3384,7 @@ declare module '@scout9/app/schemas' {
|
|
|
3276
3384
|
firstName: z.ZodOptional<z.ZodString>;
|
|
3277
3385
|
lastName: z.ZodOptional<z.ZodString>;
|
|
3278
3386
|
inactive: z.ZodOptional<z.ZodBoolean>;
|
|
3387
|
+
isFreeProgrammablePhoneNumber: z.ZodOptional<z.ZodBoolean>;
|
|
3279
3388
|
programmablePhoneNumber: z.ZodOptional<z.ZodString>;
|
|
3280
3389
|
programmablePhoneNumberSid: z.ZodOptional<z.ZodString>;
|
|
3281
3390
|
programmableEmail: z.ZodOptional<z.ZodString>;
|
|
@@ -3316,6 +3425,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3316
3425
|
option?: string | null | undefined;
|
|
3317
3426
|
text?: string | null | undefined;
|
|
3318
3427
|
}>, "many">>>;
|
|
3428
|
+
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
3429
|
+
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
3319
3430
|
}, "strip", z.ZodTypeAny, {
|
|
3320
3431
|
time: string;
|
|
3321
3432
|
id: string;
|
|
@@ -3334,6 +3445,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3334
3445
|
option?: string | null | undefined;
|
|
3335
3446
|
text?: string | null | undefined;
|
|
3336
3447
|
}[] | null | undefined;
|
|
3448
|
+
ignoreTransform?: boolean | undefined;
|
|
3449
|
+
mediaUrls?: string[] | null | undefined;
|
|
3337
3450
|
}, {
|
|
3338
3451
|
time: string;
|
|
3339
3452
|
id: string;
|
|
@@ -3352,6 +3465,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3352
3465
|
option?: string | null | undefined;
|
|
3353
3466
|
text?: string | null | undefined;
|
|
3354
3467
|
}[] | null | undefined;
|
|
3468
|
+
ignoreTransform?: boolean | undefined;
|
|
3469
|
+
mediaUrls?: string[] | null | undefined;
|
|
3355
3470
|
}>, "many">, "many">>;
|
|
3356
3471
|
audios: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
3357
3472
|
pmt: z.ZodOptional<z.ZodObject<{
|
|
@@ -3389,6 +3504,7 @@ declare module '@scout9/app/schemas' {
|
|
|
3389
3504
|
firstName?: string | undefined;
|
|
3390
3505
|
lastName?: string | undefined;
|
|
3391
3506
|
inactive?: boolean | undefined;
|
|
3507
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
3392
3508
|
programmablePhoneNumber?: string | undefined;
|
|
3393
3509
|
programmablePhoneNumberSid?: string | undefined;
|
|
3394
3510
|
programmableEmail?: string | undefined;
|
|
@@ -3414,6 +3530,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3414
3530
|
option?: string | null | undefined;
|
|
3415
3531
|
text?: string | null | undefined;
|
|
3416
3532
|
}[] | null | undefined;
|
|
3533
|
+
ignoreTransform?: boolean | undefined;
|
|
3534
|
+
mediaUrls?: string[] | null | undefined;
|
|
3417
3535
|
}[][] | undefined;
|
|
3418
3536
|
audios?: any[] | undefined;
|
|
3419
3537
|
pmt?: {
|
|
@@ -3434,6 +3552,7 @@ declare module '@scout9/app/schemas' {
|
|
|
3434
3552
|
firstName?: string | undefined;
|
|
3435
3553
|
lastName?: string | undefined;
|
|
3436
3554
|
inactive?: boolean | undefined;
|
|
3555
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
3437
3556
|
programmablePhoneNumber?: string | undefined;
|
|
3438
3557
|
programmablePhoneNumberSid?: string | undefined;
|
|
3439
3558
|
programmableEmail?: string | undefined;
|
|
@@ -3462,6 +3581,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3462
3581
|
option?: string | null | undefined;
|
|
3463
3582
|
text?: string | null | undefined;
|
|
3464
3583
|
}[] | null | undefined;
|
|
3584
|
+
ignoreTransform?: boolean | undefined;
|
|
3585
|
+
mediaUrls?: string[] | null | undefined;
|
|
3465
3586
|
}[][] | undefined;
|
|
3466
3587
|
audios?: any[] | undefined;
|
|
3467
3588
|
pmt?: {
|
|
@@ -3493,6 +3614,7 @@ declare module '@scout9/app/schemas' {
|
|
|
3493
3614
|
phone?: string | undefined;
|
|
3494
3615
|
email?: string | undefined;
|
|
3495
3616
|
}>>;
|
|
3617
|
+
isFreeProgrammablePhoneNumber: z.ZodOptional<z.ZodBoolean>;
|
|
3496
3618
|
programmablePhoneNumber: z.ZodOptional<z.ZodString>;
|
|
3497
3619
|
programmablePhoneNumberSid: z.ZodOptional<z.ZodString>;
|
|
3498
3620
|
programmableEmail: z.ZodOptional<z.ZodString>;
|
|
@@ -3531,6 +3653,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3531
3653
|
option?: string | null | undefined;
|
|
3532
3654
|
text?: string | null | undefined;
|
|
3533
3655
|
}>, "many">>>;
|
|
3656
|
+
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
3657
|
+
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
3534
3658
|
}, "strip", z.ZodTypeAny, {
|
|
3535
3659
|
time: string;
|
|
3536
3660
|
id: string;
|
|
@@ -3549,6 +3673,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3549
3673
|
option?: string | null | undefined;
|
|
3550
3674
|
text?: string | null | undefined;
|
|
3551
3675
|
}[] | null | undefined;
|
|
3676
|
+
ignoreTransform?: boolean | undefined;
|
|
3677
|
+
mediaUrls?: string[] | null | undefined;
|
|
3552
3678
|
}, {
|
|
3553
3679
|
time: string;
|
|
3554
3680
|
id: string;
|
|
@@ -3567,6 +3693,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3567
3693
|
option?: string | null | undefined;
|
|
3568
3694
|
text?: string | null | undefined;
|
|
3569
3695
|
}[] | null | undefined;
|
|
3696
|
+
ignoreTransform?: boolean | undefined;
|
|
3697
|
+
mediaUrls?: string[] | null | undefined;
|
|
3570
3698
|
}>, "many">, "many">>;
|
|
3571
3699
|
audios: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
3572
3700
|
pmt: z.ZodOptional<z.ZodObject<{
|
|
@@ -3606,6 +3734,7 @@ declare module '@scout9/app/schemas' {
|
|
|
3606
3734
|
phone?: string | undefined;
|
|
3607
3735
|
email?: string | undefined;
|
|
3608
3736
|
} | undefined;
|
|
3737
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
3609
3738
|
programmablePhoneNumber?: string | undefined;
|
|
3610
3739
|
programmablePhoneNumberSid?: string | undefined;
|
|
3611
3740
|
programmableEmail?: string | undefined;
|
|
@@ -3631,6 +3760,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3631
3760
|
option?: string | null | undefined;
|
|
3632
3761
|
text?: string | null | undefined;
|
|
3633
3762
|
}[] | null | undefined;
|
|
3763
|
+
ignoreTransform?: boolean | undefined;
|
|
3764
|
+
mediaUrls?: string[] | null | undefined;
|
|
3634
3765
|
}[][] | undefined;
|
|
3635
3766
|
audios?: any[] | undefined;
|
|
3636
3767
|
pmt?: {
|
|
@@ -3654,6 +3785,7 @@ declare module '@scout9/app/schemas' {
|
|
|
3654
3785
|
phone?: string | undefined;
|
|
3655
3786
|
email?: string | undefined;
|
|
3656
3787
|
} | undefined;
|
|
3788
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
3657
3789
|
programmablePhoneNumber?: string | undefined;
|
|
3658
3790
|
programmablePhoneNumberSid?: string | undefined;
|
|
3659
3791
|
programmableEmail?: string | undefined;
|
|
@@ -3680,6 +3812,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3680
3812
|
option?: string | null | undefined;
|
|
3681
3813
|
text?: string | null | undefined;
|
|
3682
3814
|
}[] | null | undefined;
|
|
3815
|
+
ignoreTransform?: boolean | undefined;
|
|
3816
|
+
mediaUrls?: string[] | null | undefined;
|
|
3683
3817
|
}[][] | undefined;
|
|
3684
3818
|
audios?: any[] | undefined;
|
|
3685
3819
|
pmt?: {
|
|
@@ -3711,6 +3845,7 @@ declare module '@scout9/app/schemas' {
|
|
|
3711
3845
|
phone?: string | undefined;
|
|
3712
3846
|
email?: string | undefined;
|
|
3713
3847
|
}>>;
|
|
3848
|
+
isFreeProgrammablePhoneNumber: z.ZodOptional<z.ZodBoolean>;
|
|
3714
3849
|
programmablePhoneNumber: z.ZodOptional<z.ZodString>;
|
|
3715
3850
|
programmablePhoneNumberSid: z.ZodOptional<z.ZodString>;
|
|
3716
3851
|
programmableEmail: z.ZodOptional<z.ZodString>;
|
|
@@ -3749,6 +3884,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3749
3884
|
option?: string | null | undefined;
|
|
3750
3885
|
text?: string | null | undefined;
|
|
3751
3886
|
}>, "many">>>;
|
|
3887
|
+
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
3888
|
+
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
3752
3889
|
}, "strip", z.ZodTypeAny, {
|
|
3753
3890
|
time: string;
|
|
3754
3891
|
id: string;
|
|
@@ -3767,6 +3904,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3767
3904
|
option?: string | null | undefined;
|
|
3768
3905
|
text?: string | null | undefined;
|
|
3769
3906
|
}[] | null | undefined;
|
|
3907
|
+
ignoreTransform?: boolean | undefined;
|
|
3908
|
+
mediaUrls?: string[] | null | undefined;
|
|
3770
3909
|
}, {
|
|
3771
3910
|
time: string;
|
|
3772
3911
|
id: string;
|
|
@@ -3785,6 +3924,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3785
3924
|
option?: string | null | undefined;
|
|
3786
3925
|
text?: string | null | undefined;
|
|
3787
3926
|
}[] | null | undefined;
|
|
3927
|
+
ignoreTransform?: boolean | undefined;
|
|
3928
|
+
mediaUrls?: string[] | null | undefined;
|
|
3788
3929
|
}>, "many">, "many">>;
|
|
3789
3930
|
audios: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
3790
3931
|
pmt: z.ZodOptional<z.ZodObject<{
|
|
@@ -3824,6 +3965,7 @@ declare module '@scout9/app/schemas' {
|
|
|
3824
3965
|
phone?: string | undefined;
|
|
3825
3966
|
email?: string | undefined;
|
|
3826
3967
|
} | undefined;
|
|
3968
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
3827
3969
|
programmablePhoneNumber?: string | undefined;
|
|
3828
3970
|
programmablePhoneNumberSid?: string | undefined;
|
|
3829
3971
|
programmableEmail?: string | undefined;
|
|
@@ -3849,6 +3991,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3849
3991
|
option?: string | null | undefined;
|
|
3850
3992
|
text?: string | null | undefined;
|
|
3851
3993
|
}[] | null | undefined;
|
|
3994
|
+
ignoreTransform?: boolean | undefined;
|
|
3995
|
+
mediaUrls?: string[] | null | undefined;
|
|
3852
3996
|
}[][] | undefined;
|
|
3853
3997
|
audios?: any[] | undefined;
|
|
3854
3998
|
pmt?: {
|
|
@@ -3872,6 +4016,7 @@ declare module '@scout9/app/schemas' {
|
|
|
3872
4016
|
phone?: string | undefined;
|
|
3873
4017
|
email?: string | undefined;
|
|
3874
4018
|
} | undefined;
|
|
4019
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
3875
4020
|
programmablePhoneNumber?: string | undefined;
|
|
3876
4021
|
programmablePhoneNumberSid?: string | undefined;
|
|
3877
4022
|
programmableEmail?: string | undefined;
|
|
@@ -3898,6 +4043,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3898
4043
|
option?: string | null | undefined;
|
|
3899
4044
|
text?: string | null | undefined;
|
|
3900
4045
|
}[] | null | undefined;
|
|
4046
|
+
ignoreTransform?: boolean | undefined;
|
|
4047
|
+
mediaUrls?: string[] | null | undefined;
|
|
3901
4048
|
}[][] | undefined;
|
|
3902
4049
|
audios?: any[] | undefined;
|
|
3903
4050
|
pmt?: {
|
|
@@ -3929,6 +4076,7 @@ declare module '@scout9/app/schemas' {
|
|
|
3929
4076
|
phone?: string | undefined;
|
|
3930
4077
|
email?: string | undefined;
|
|
3931
4078
|
}>>;
|
|
4079
|
+
isFreeProgrammablePhoneNumber: z.ZodOptional<z.ZodBoolean>;
|
|
3932
4080
|
programmablePhoneNumber: z.ZodOptional<z.ZodString>;
|
|
3933
4081
|
programmablePhoneNumberSid: z.ZodOptional<z.ZodString>;
|
|
3934
4082
|
programmableEmail: z.ZodOptional<z.ZodString>;
|
|
@@ -3967,6 +4115,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3967
4115
|
option?: string | null | undefined;
|
|
3968
4116
|
text?: string | null | undefined;
|
|
3969
4117
|
}>, "many">>>;
|
|
4118
|
+
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
4119
|
+
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
3970
4120
|
}, "strip", z.ZodTypeAny, {
|
|
3971
4121
|
time: string;
|
|
3972
4122
|
id: string;
|
|
@@ -3985,6 +4135,8 @@ declare module '@scout9/app/schemas' {
|
|
|
3985
4135
|
option?: string | null | undefined;
|
|
3986
4136
|
text?: string | null | undefined;
|
|
3987
4137
|
}[] | null | undefined;
|
|
4138
|
+
ignoreTransform?: boolean | undefined;
|
|
4139
|
+
mediaUrls?: string[] | null | undefined;
|
|
3988
4140
|
}, {
|
|
3989
4141
|
time: string;
|
|
3990
4142
|
id: string;
|
|
@@ -4003,6 +4155,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4003
4155
|
option?: string | null | undefined;
|
|
4004
4156
|
text?: string | null | undefined;
|
|
4005
4157
|
}[] | null | undefined;
|
|
4158
|
+
ignoreTransform?: boolean | undefined;
|
|
4159
|
+
mediaUrls?: string[] | null | undefined;
|
|
4006
4160
|
}>, "many">, "many">>;
|
|
4007
4161
|
audios: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
4008
4162
|
pmt: z.ZodOptional<z.ZodObject<{
|
|
@@ -4042,6 +4196,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4042
4196
|
phone?: string | undefined;
|
|
4043
4197
|
email?: string | undefined;
|
|
4044
4198
|
} | undefined;
|
|
4199
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
4045
4200
|
programmablePhoneNumber?: string | undefined;
|
|
4046
4201
|
programmablePhoneNumberSid?: string | undefined;
|
|
4047
4202
|
programmableEmail?: string | undefined;
|
|
@@ -4067,6 +4222,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4067
4222
|
option?: string | null | undefined;
|
|
4068
4223
|
text?: string | null | undefined;
|
|
4069
4224
|
}[] | null | undefined;
|
|
4225
|
+
ignoreTransform?: boolean | undefined;
|
|
4226
|
+
mediaUrls?: string[] | null | undefined;
|
|
4070
4227
|
}[][] | undefined;
|
|
4071
4228
|
audios?: any[] | undefined;
|
|
4072
4229
|
pmt?: {
|
|
@@ -4090,6 +4247,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4090
4247
|
phone?: string | undefined;
|
|
4091
4248
|
email?: string | undefined;
|
|
4092
4249
|
} | undefined;
|
|
4250
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
4093
4251
|
programmablePhoneNumber?: string | undefined;
|
|
4094
4252
|
programmablePhoneNumberSid?: string | undefined;
|
|
4095
4253
|
programmableEmail?: string | undefined;
|
|
@@ -4116,6 +4274,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4116
4274
|
option?: string | null | undefined;
|
|
4117
4275
|
text?: string | null | undefined;
|
|
4118
4276
|
}[] | null | undefined;
|
|
4277
|
+
ignoreTransform?: boolean | undefined;
|
|
4278
|
+
mediaUrls?: string[] | null | undefined;
|
|
4119
4279
|
}[][] | undefined;
|
|
4120
4280
|
audios?: any[] | undefined;
|
|
4121
4281
|
pmt?: {
|
|
@@ -4147,6 +4307,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4147
4307
|
phone?: string | undefined;
|
|
4148
4308
|
email?: string | undefined;
|
|
4149
4309
|
}>>;
|
|
4310
|
+
isFreeProgrammablePhoneNumber: z.ZodOptional<z.ZodBoolean>;
|
|
4150
4311
|
programmablePhoneNumber: z.ZodOptional<z.ZodString>;
|
|
4151
4312
|
programmablePhoneNumberSid: z.ZodOptional<z.ZodString>;
|
|
4152
4313
|
programmableEmail: z.ZodOptional<z.ZodString>;
|
|
@@ -4185,6 +4346,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4185
4346
|
option?: string | null | undefined;
|
|
4186
4347
|
text?: string | null | undefined;
|
|
4187
4348
|
}>, "many">>>;
|
|
4349
|
+
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
4350
|
+
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
4188
4351
|
}, "strip", z.ZodTypeAny, {
|
|
4189
4352
|
time: string;
|
|
4190
4353
|
id: string;
|
|
@@ -4203,6 +4366,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4203
4366
|
option?: string | null | undefined;
|
|
4204
4367
|
text?: string | null | undefined;
|
|
4205
4368
|
}[] | null | undefined;
|
|
4369
|
+
ignoreTransform?: boolean | undefined;
|
|
4370
|
+
mediaUrls?: string[] | null | undefined;
|
|
4206
4371
|
}, {
|
|
4207
4372
|
time: string;
|
|
4208
4373
|
id: string;
|
|
@@ -4221,6 +4386,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4221
4386
|
option?: string | null | undefined;
|
|
4222
4387
|
text?: string | null | undefined;
|
|
4223
4388
|
}[] | null | undefined;
|
|
4389
|
+
ignoreTransform?: boolean | undefined;
|
|
4390
|
+
mediaUrls?: string[] | null | undefined;
|
|
4224
4391
|
}>, "many">, "many">>;
|
|
4225
4392
|
audios: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
4226
4393
|
pmt: z.ZodOptional<z.ZodObject<{
|
|
@@ -4260,6 +4427,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4260
4427
|
phone?: string | undefined;
|
|
4261
4428
|
email?: string | undefined;
|
|
4262
4429
|
} | undefined;
|
|
4430
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
4263
4431
|
programmablePhoneNumber?: string | undefined;
|
|
4264
4432
|
programmablePhoneNumberSid?: string | undefined;
|
|
4265
4433
|
programmableEmail?: string | undefined;
|
|
@@ -4285,6 +4453,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4285
4453
|
option?: string | null | undefined;
|
|
4286
4454
|
text?: string | null | undefined;
|
|
4287
4455
|
}[] | null | undefined;
|
|
4456
|
+
ignoreTransform?: boolean | undefined;
|
|
4457
|
+
mediaUrls?: string[] | null | undefined;
|
|
4288
4458
|
}[][] | undefined;
|
|
4289
4459
|
audios?: any[] | undefined;
|
|
4290
4460
|
pmt?: {
|
|
@@ -4308,6 +4478,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4308
4478
|
phone?: string | undefined;
|
|
4309
4479
|
email?: string | undefined;
|
|
4310
4480
|
} | undefined;
|
|
4481
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
4311
4482
|
programmablePhoneNumber?: string | undefined;
|
|
4312
4483
|
programmablePhoneNumberSid?: string | undefined;
|
|
4313
4484
|
programmableEmail?: string | undefined;
|
|
@@ -4334,6 +4505,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4334
4505
|
option?: string | null | undefined;
|
|
4335
4506
|
text?: string | null | undefined;
|
|
4336
4507
|
}[] | null | undefined;
|
|
4508
|
+
ignoreTransform?: boolean | undefined;
|
|
4509
|
+
mediaUrls?: string[] | null | undefined;
|
|
4337
4510
|
}[][] | undefined;
|
|
4338
4511
|
audios?: any[] | undefined;
|
|
4339
4512
|
pmt?: {
|
|
@@ -4363,6 +4536,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4363
4536
|
firstName: z.ZodOptional<z.ZodString>;
|
|
4364
4537
|
lastName: z.ZodOptional<z.ZodString>;
|
|
4365
4538
|
inactive: z.ZodOptional<z.ZodBoolean>;
|
|
4539
|
+
isFreeProgrammablePhoneNumber: z.ZodOptional<z.ZodBoolean>;
|
|
4366
4540
|
programmablePhoneNumber: z.ZodOptional<z.ZodString>;
|
|
4367
4541
|
programmablePhoneNumberSid: z.ZodOptional<z.ZodString>;
|
|
4368
4542
|
programmableEmail: z.ZodOptional<z.ZodString>;
|
|
@@ -4403,6 +4577,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4403
4577
|
option?: string | null | undefined;
|
|
4404
4578
|
text?: string | null | undefined;
|
|
4405
4579
|
}>, "many">>>;
|
|
4580
|
+
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
4581
|
+
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
4406
4582
|
}, "strip", z.ZodTypeAny, {
|
|
4407
4583
|
time: string;
|
|
4408
4584
|
id: string;
|
|
@@ -4421,6 +4597,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4421
4597
|
option?: string | null | undefined;
|
|
4422
4598
|
text?: string | null | undefined;
|
|
4423
4599
|
}[] | null | undefined;
|
|
4600
|
+
ignoreTransform?: boolean | undefined;
|
|
4601
|
+
mediaUrls?: string[] | null | undefined;
|
|
4424
4602
|
}, {
|
|
4425
4603
|
time: string;
|
|
4426
4604
|
id: string;
|
|
@@ -4439,6 +4617,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4439
4617
|
option?: string | null | undefined;
|
|
4440
4618
|
text?: string | null | undefined;
|
|
4441
4619
|
}[] | null | undefined;
|
|
4620
|
+
ignoreTransform?: boolean | undefined;
|
|
4621
|
+
mediaUrls?: string[] | null | undefined;
|
|
4442
4622
|
}>, "many">, "many">>;
|
|
4443
4623
|
audios: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
4444
4624
|
pmt: z.ZodOptional<z.ZodObject<{
|
|
@@ -4476,6 +4656,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4476
4656
|
firstName?: string | undefined;
|
|
4477
4657
|
lastName?: string | undefined;
|
|
4478
4658
|
inactive?: boolean | undefined;
|
|
4659
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
4479
4660
|
programmablePhoneNumber?: string | undefined;
|
|
4480
4661
|
programmablePhoneNumberSid?: string | undefined;
|
|
4481
4662
|
programmableEmail?: string | undefined;
|
|
@@ -4501,6 +4682,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4501
4682
|
option?: string | null | undefined;
|
|
4502
4683
|
text?: string | null | undefined;
|
|
4503
4684
|
}[] | null | undefined;
|
|
4685
|
+
ignoreTransform?: boolean | undefined;
|
|
4686
|
+
mediaUrls?: string[] | null | undefined;
|
|
4504
4687
|
}[][] | undefined;
|
|
4505
4688
|
audios?: any[] | undefined;
|
|
4506
4689
|
pmt?: {
|
|
@@ -4521,6 +4704,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4521
4704
|
firstName?: string | undefined;
|
|
4522
4705
|
lastName?: string | undefined;
|
|
4523
4706
|
inactive?: boolean | undefined;
|
|
4707
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
4524
4708
|
programmablePhoneNumber?: string | undefined;
|
|
4525
4709
|
programmablePhoneNumberSid?: string | undefined;
|
|
4526
4710
|
programmableEmail?: string | undefined;
|
|
@@ -4549,6 +4733,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4549
4733
|
option?: string | null | undefined;
|
|
4550
4734
|
text?: string | null | undefined;
|
|
4551
4735
|
}[] | null | undefined;
|
|
4736
|
+
ignoreTransform?: boolean | undefined;
|
|
4737
|
+
mediaUrls?: string[] | null | undefined;
|
|
4552
4738
|
}[][] | undefined;
|
|
4553
4739
|
audios?: any[] | undefined;
|
|
4554
4740
|
pmt?: {
|
|
@@ -4578,6 +4764,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4578
4764
|
firstName: z.ZodOptional<z.ZodString>;
|
|
4579
4765
|
lastName: z.ZodOptional<z.ZodString>;
|
|
4580
4766
|
inactive: z.ZodOptional<z.ZodBoolean>;
|
|
4767
|
+
isFreeProgrammablePhoneNumber: z.ZodOptional<z.ZodBoolean>;
|
|
4581
4768
|
programmablePhoneNumber: z.ZodOptional<z.ZodString>;
|
|
4582
4769
|
programmablePhoneNumberSid: z.ZodOptional<z.ZodString>;
|
|
4583
4770
|
programmableEmail: z.ZodOptional<z.ZodString>;
|
|
@@ -4618,6 +4805,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4618
4805
|
option?: string | null | undefined;
|
|
4619
4806
|
text?: string | null | undefined;
|
|
4620
4807
|
}>, "many">>>;
|
|
4808
|
+
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
4809
|
+
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
4621
4810
|
}, "strip", z.ZodTypeAny, {
|
|
4622
4811
|
time: string;
|
|
4623
4812
|
id: string;
|
|
@@ -4636,6 +4825,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4636
4825
|
option?: string | null | undefined;
|
|
4637
4826
|
text?: string | null | undefined;
|
|
4638
4827
|
}[] | null | undefined;
|
|
4828
|
+
ignoreTransform?: boolean | undefined;
|
|
4829
|
+
mediaUrls?: string[] | null | undefined;
|
|
4639
4830
|
}, {
|
|
4640
4831
|
time: string;
|
|
4641
4832
|
id: string;
|
|
@@ -4654,6 +4845,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4654
4845
|
option?: string | null | undefined;
|
|
4655
4846
|
text?: string | null | undefined;
|
|
4656
4847
|
}[] | null | undefined;
|
|
4848
|
+
ignoreTransform?: boolean | undefined;
|
|
4849
|
+
mediaUrls?: string[] | null | undefined;
|
|
4657
4850
|
}>, "many">, "many">>;
|
|
4658
4851
|
audios: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
4659
4852
|
pmt: z.ZodOptional<z.ZodObject<{
|
|
@@ -4691,6 +4884,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4691
4884
|
firstName?: string | undefined;
|
|
4692
4885
|
lastName?: string | undefined;
|
|
4693
4886
|
inactive?: boolean | undefined;
|
|
4887
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
4694
4888
|
programmablePhoneNumber?: string | undefined;
|
|
4695
4889
|
programmablePhoneNumberSid?: string | undefined;
|
|
4696
4890
|
programmableEmail?: string | undefined;
|
|
@@ -4716,6 +4910,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4716
4910
|
option?: string | null | undefined;
|
|
4717
4911
|
text?: string | null | undefined;
|
|
4718
4912
|
}[] | null | undefined;
|
|
4913
|
+
ignoreTransform?: boolean | undefined;
|
|
4914
|
+
mediaUrls?: string[] | null | undefined;
|
|
4719
4915
|
}[][] | undefined;
|
|
4720
4916
|
audios?: any[] | undefined;
|
|
4721
4917
|
pmt?: {
|
|
@@ -4736,6 +4932,7 @@ declare module '@scout9/app/schemas' {
|
|
|
4736
4932
|
firstName?: string | undefined;
|
|
4737
4933
|
lastName?: string | undefined;
|
|
4738
4934
|
inactive?: boolean | undefined;
|
|
4935
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
4739
4936
|
programmablePhoneNumber?: string | undefined;
|
|
4740
4937
|
programmablePhoneNumberSid?: string | undefined;
|
|
4741
4938
|
programmableEmail?: string | undefined;
|
|
@@ -4764,6 +4961,8 @@ declare module '@scout9/app/schemas' {
|
|
|
4764
4961
|
option?: string | null | undefined;
|
|
4765
4962
|
text?: string | null | undefined;
|
|
4766
4963
|
}[] | null | undefined;
|
|
4964
|
+
ignoreTransform?: boolean | undefined;
|
|
4965
|
+
mediaUrls?: string[] | null | undefined;
|
|
4767
4966
|
}[][] | undefined;
|
|
4768
4967
|
audios?: any[] | undefined;
|
|
4769
4968
|
pmt?: {
|
|
@@ -5083,6 +5282,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5083
5282
|
option?: string | null | undefined;
|
|
5084
5283
|
text?: string | null | undefined;
|
|
5085
5284
|
}>, "many">>>;
|
|
5285
|
+
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
5286
|
+
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
5086
5287
|
}, "strip", z.ZodTypeAny, {
|
|
5087
5288
|
time: string;
|
|
5088
5289
|
id: string;
|
|
@@ -5101,6 +5302,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5101
5302
|
option?: string | null | undefined;
|
|
5102
5303
|
text?: string | null | undefined;
|
|
5103
5304
|
}[] | null | undefined;
|
|
5305
|
+
ignoreTransform?: boolean | undefined;
|
|
5306
|
+
mediaUrls?: string[] | null | undefined;
|
|
5104
5307
|
}, {
|
|
5105
5308
|
time: string;
|
|
5106
5309
|
id: string;
|
|
@@ -5119,6 +5322,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5119
5322
|
option?: string | null | undefined;
|
|
5120
5323
|
text?: string | null | undefined;
|
|
5121
5324
|
}[] | null | undefined;
|
|
5325
|
+
ignoreTransform?: boolean | undefined;
|
|
5326
|
+
mediaUrls?: string[] | null | undefined;
|
|
5122
5327
|
}>, "many">;
|
|
5123
5328
|
conversation: z.ZodObject<{
|
|
5124
5329
|
$id: z.ZodString;
|
|
@@ -5281,6 +5486,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5281
5486
|
option?: string | null | undefined;
|
|
5282
5487
|
text?: string | null | undefined;
|
|
5283
5488
|
}>, "many">>>;
|
|
5489
|
+
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
5490
|
+
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
5284
5491
|
}, "strip", z.ZodTypeAny, {
|
|
5285
5492
|
time: string;
|
|
5286
5493
|
id: string;
|
|
@@ -5299,6 +5506,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5299
5506
|
option?: string | null | undefined;
|
|
5300
5507
|
text?: string | null | undefined;
|
|
5301
5508
|
}[] | null | undefined;
|
|
5509
|
+
ignoreTransform?: boolean | undefined;
|
|
5510
|
+
mediaUrls?: string[] | null | undefined;
|
|
5302
5511
|
}, {
|
|
5303
5512
|
time: string;
|
|
5304
5513
|
id: string;
|
|
@@ -5317,6 +5526,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5317
5526
|
option?: string | null | undefined;
|
|
5318
5527
|
text?: string | null | undefined;
|
|
5319
5528
|
}[] | null | undefined;
|
|
5529
|
+
ignoreTransform?: boolean | undefined;
|
|
5530
|
+
mediaUrls?: string[] | null | undefined;
|
|
5320
5531
|
}>;
|
|
5321
5532
|
agent: z.ZodObject<Omit<{
|
|
5322
5533
|
inactive: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5338,6 +5549,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5338
5549
|
phone?: string | undefined;
|
|
5339
5550
|
email?: string | undefined;
|
|
5340
5551
|
}>>;
|
|
5552
|
+
isFreeProgrammablePhoneNumber: z.ZodOptional<z.ZodBoolean>;
|
|
5341
5553
|
programmablePhoneNumber: z.ZodOptional<z.ZodString>;
|
|
5342
5554
|
programmablePhoneNumberSid: z.ZodOptional<z.ZodString>;
|
|
5343
5555
|
programmableEmail: z.ZodOptional<z.ZodString>;
|
|
@@ -5376,6 +5588,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5376
5588
|
option?: string | null | undefined;
|
|
5377
5589
|
text?: string | null | undefined;
|
|
5378
5590
|
}>, "many">>>;
|
|
5591
|
+
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
5592
|
+
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
5379
5593
|
}, "strip", z.ZodTypeAny, {
|
|
5380
5594
|
time: string;
|
|
5381
5595
|
id: string;
|
|
@@ -5394,6 +5608,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5394
5608
|
option?: string | null | undefined;
|
|
5395
5609
|
text?: string | null | undefined;
|
|
5396
5610
|
}[] | null | undefined;
|
|
5611
|
+
ignoreTransform?: boolean | undefined;
|
|
5612
|
+
mediaUrls?: string[] | null | undefined;
|
|
5397
5613
|
}, {
|
|
5398
5614
|
time: string;
|
|
5399
5615
|
id: string;
|
|
@@ -5412,6 +5628,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5412
5628
|
option?: string | null | undefined;
|
|
5413
5629
|
text?: string | null | undefined;
|
|
5414
5630
|
}[] | null | undefined;
|
|
5631
|
+
ignoreTransform?: boolean | undefined;
|
|
5632
|
+
mediaUrls?: string[] | null | undefined;
|
|
5415
5633
|
}>, "many">, "many">>;
|
|
5416
5634
|
audios: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
5417
5635
|
pmt: z.ZodOptional<z.ZodObject<{
|
|
@@ -5449,6 +5667,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5449
5667
|
phone?: string | undefined;
|
|
5450
5668
|
email?: string | undefined;
|
|
5451
5669
|
} | undefined;
|
|
5670
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
5452
5671
|
programmablePhoneNumber?: string | undefined;
|
|
5453
5672
|
programmablePhoneNumberSid?: string | undefined;
|
|
5454
5673
|
programmableEmail?: string | undefined;
|
|
@@ -5466,6 +5685,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5466
5685
|
phone?: string | undefined;
|
|
5467
5686
|
email?: string | undefined;
|
|
5468
5687
|
} | undefined;
|
|
5688
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
5469
5689
|
programmablePhoneNumber?: string | undefined;
|
|
5470
5690
|
programmablePhoneNumberSid?: string | undefined;
|
|
5471
5691
|
programmableEmail?: string | undefined;
|
|
@@ -5561,6 +5781,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5561
5781
|
option?: string | null | undefined;
|
|
5562
5782
|
text?: string | null | undefined;
|
|
5563
5783
|
}[] | null | undefined;
|
|
5784
|
+
ignoreTransform?: boolean | undefined;
|
|
5785
|
+
mediaUrls?: string[] | null | undefined;
|
|
5564
5786
|
};
|
|
5565
5787
|
agent: {
|
|
5566
5788
|
id: string;
|
|
@@ -5574,6 +5796,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5574
5796
|
phone?: string | undefined;
|
|
5575
5797
|
email?: string | undefined;
|
|
5576
5798
|
} | undefined;
|
|
5799
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
5577
5800
|
programmablePhoneNumber?: string | undefined;
|
|
5578
5801
|
programmablePhoneNumberSid?: string | undefined;
|
|
5579
5802
|
programmableEmail?: string | undefined;
|
|
@@ -5624,6 +5847,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5624
5847
|
option?: string | null | undefined;
|
|
5625
5848
|
text?: string | null | undefined;
|
|
5626
5849
|
}[] | null | undefined;
|
|
5850
|
+
ignoreTransform?: boolean | undefined;
|
|
5851
|
+
mediaUrls?: string[] | null | undefined;
|
|
5627
5852
|
}[];
|
|
5628
5853
|
conversation: {
|
|
5629
5854
|
environment: "email" | "phone" | "web";
|
|
@@ -5679,6 +5904,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5679
5904
|
option?: string | null | undefined;
|
|
5680
5905
|
text?: string | null | undefined;
|
|
5681
5906
|
}[] | null | undefined;
|
|
5907
|
+
ignoreTransform?: boolean | undefined;
|
|
5908
|
+
mediaUrls?: string[] | null | undefined;
|
|
5682
5909
|
};
|
|
5683
5910
|
agent: {
|
|
5684
5911
|
id: string;
|
|
@@ -5692,6 +5919,7 @@ declare module '@scout9/app/schemas' {
|
|
|
5692
5919
|
phone?: string | undefined;
|
|
5693
5920
|
email?: string | undefined;
|
|
5694
5921
|
} | undefined;
|
|
5922
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
5695
5923
|
programmablePhoneNumber?: string | undefined;
|
|
5696
5924
|
programmablePhoneNumberSid?: string | undefined;
|
|
5697
5925
|
programmableEmail?: string | undefined;
|
|
@@ -5742,6 +5970,8 @@ declare module '@scout9/app/schemas' {
|
|
|
5742
5970
|
option?: string | null | undefined;
|
|
5743
5971
|
text?: string | null | undefined;
|
|
5744
5972
|
}[] | null | undefined;
|
|
5973
|
+
ignoreTransform?: boolean | undefined;
|
|
5974
|
+
mediaUrls?: string[] | null | undefined;
|
|
5745
5975
|
}[];
|
|
5746
5976
|
conversation: {
|
|
5747
5977
|
environment: "email" | "phone" | "web";
|
|
@@ -10664,6 +10894,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10664
10894
|
option?: string | null | undefined;
|
|
10665
10895
|
text?: string | null | undefined;
|
|
10666
10896
|
}>, "many">>>;
|
|
10897
|
+
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
10898
|
+
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
10667
10899
|
}, "strip", z.ZodTypeAny, {
|
|
10668
10900
|
time: string;
|
|
10669
10901
|
id: string;
|
|
@@ -10682,6 +10914,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10682
10914
|
option?: string | null | undefined;
|
|
10683
10915
|
text?: string | null | undefined;
|
|
10684
10916
|
}[] | null | undefined;
|
|
10917
|
+
ignoreTransform?: boolean | undefined;
|
|
10918
|
+
mediaUrls?: string[] | null | undefined;
|
|
10685
10919
|
}, {
|
|
10686
10920
|
time: string;
|
|
10687
10921
|
id: string;
|
|
@@ -10700,6 +10934,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10700
10934
|
option?: string | null | undefined;
|
|
10701
10935
|
text?: string | null | undefined;
|
|
10702
10936
|
}[] | null | undefined;
|
|
10937
|
+
ignoreTransform?: boolean | undefined;
|
|
10938
|
+
mediaUrls?: string[] | null | undefined;
|
|
10703
10939
|
}>, "many">;
|
|
10704
10940
|
conversation: z.ZodObject<{
|
|
10705
10941
|
$id: z.ZodString;
|
|
@@ -10862,6 +11098,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10862
11098
|
option?: string | null | undefined;
|
|
10863
11099
|
text?: string | null | undefined;
|
|
10864
11100
|
}>, "many">>>;
|
|
11101
|
+
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
11102
|
+
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
10865
11103
|
}, "strip", z.ZodTypeAny, {
|
|
10866
11104
|
time: string;
|
|
10867
11105
|
id: string;
|
|
@@ -10880,6 +11118,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10880
11118
|
option?: string | null | undefined;
|
|
10881
11119
|
text?: string | null | undefined;
|
|
10882
11120
|
}[] | null | undefined;
|
|
11121
|
+
ignoreTransform?: boolean | undefined;
|
|
11122
|
+
mediaUrls?: string[] | null | undefined;
|
|
10883
11123
|
}, {
|
|
10884
11124
|
time: string;
|
|
10885
11125
|
id: string;
|
|
@@ -10898,6 +11138,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10898
11138
|
option?: string | null | undefined;
|
|
10899
11139
|
text?: string | null | undefined;
|
|
10900
11140
|
}[] | null | undefined;
|
|
11141
|
+
ignoreTransform?: boolean | undefined;
|
|
11142
|
+
mediaUrls?: string[] | null | undefined;
|
|
10901
11143
|
}>;
|
|
10902
11144
|
agent: z.ZodObject<Omit<{
|
|
10903
11145
|
inactive: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -10919,6 +11161,7 @@ declare module '@scout9/app/schemas' {
|
|
|
10919
11161
|
phone?: string | undefined;
|
|
10920
11162
|
email?: string | undefined;
|
|
10921
11163
|
}>>;
|
|
11164
|
+
isFreeProgrammablePhoneNumber: z.ZodOptional<z.ZodBoolean>;
|
|
10922
11165
|
programmablePhoneNumber: z.ZodOptional<z.ZodString>;
|
|
10923
11166
|
programmablePhoneNumberSid: z.ZodOptional<z.ZodString>;
|
|
10924
11167
|
programmableEmail: z.ZodOptional<z.ZodString>;
|
|
@@ -10957,6 +11200,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10957
11200
|
option?: string | null | undefined;
|
|
10958
11201
|
text?: string | null | undefined;
|
|
10959
11202
|
}>, "many">>>;
|
|
11203
|
+
ignoreTransform: z.ZodOptional<z.ZodBoolean>;
|
|
11204
|
+
mediaUrls: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
10960
11205
|
}, "strip", z.ZodTypeAny, {
|
|
10961
11206
|
time: string;
|
|
10962
11207
|
id: string;
|
|
@@ -10975,6 +11220,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10975
11220
|
option?: string | null | undefined;
|
|
10976
11221
|
text?: string | null | undefined;
|
|
10977
11222
|
}[] | null | undefined;
|
|
11223
|
+
ignoreTransform?: boolean | undefined;
|
|
11224
|
+
mediaUrls?: string[] | null | undefined;
|
|
10978
11225
|
}, {
|
|
10979
11226
|
time: string;
|
|
10980
11227
|
id: string;
|
|
@@ -10993,6 +11240,8 @@ declare module '@scout9/app/schemas' {
|
|
|
10993
11240
|
option?: string | null | undefined;
|
|
10994
11241
|
text?: string | null | undefined;
|
|
10995
11242
|
}[] | null | undefined;
|
|
11243
|
+
ignoreTransform?: boolean | undefined;
|
|
11244
|
+
mediaUrls?: string[] | null | undefined;
|
|
10996
11245
|
}>, "many">, "many">>;
|
|
10997
11246
|
audios: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
10998
11247
|
pmt: z.ZodOptional<z.ZodObject<{
|
|
@@ -11030,6 +11279,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11030
11279
|
phone?: string | undefined;
|
|
11031
11280
|
email?: string | undefined;
|
|
11032
11281
|
} | undefined;
|
|
11282
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
11033
11283
|
programmablePhoneNumber?: string | undefined;
|
|
11034
11284
|
programmablePhoneNumberSid?: string | undefined;
|
|
11035
11285
|
programmableEmail?: string | undefined;
|
|
@@ -11047,6 +11297,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11047
11297
|
phone?: string | undefined;
|
|
11048
11298
|
email?: string | undefined;
|
|
11049
11299
|
} | undefined;
|
|
11300
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
11050
11301
|
programmablePhoneNumber?: string | undefined;
|
|
11051
11302
|
programmablePhoneNumberSid?: string | undefined;
|
|
11052
11303
|
programmableEmail?: string | undefined;
|
|
@@ -11142,6 +11393,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11142
11393
|
option?: string | null | undefined;
|
|
11143
11394
|
text?: string | null | undefined;
|
|
11144
11395
|
}[] | null | undefined;
|
|
11396
|
+
ignoreTransform?: boolean | undefined;
|
|
11397
|
+
mediaUrls?: string[] | null | undefined;
|
|
11145
11398
|
};
|
|
11146
11399
|
agent: {
|
|
11147
11400
|
id: string;
|
|
@@ -11155,6 +11408,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11155
11408
|
phone?: string | undefined;
|
|
11156
11409
|
email?: string | undefined;
|
|
11157
11410
|
} | undefined;
|
|
11411
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
11158
11412
|
programmablePhoneNumber?: string | undefined;
|
|
11159
11413
|
programmablePhoneNumberSid?: string | undefined;
|
|
11160
11414
|
programmableEmail?: string | undefined;
|
|
@@ -11205,6 +11459,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11205
11459
|
option?: string | null | undefined;
|
|
11206
11460
|
text?: string | null | undefined;
|
|
11207
11461
|
}[] | null | undefined;
|
|
11462
|
+
ignoreTransform?: boolean | undefined;
|
|
11463
|
+
mediaUrls?: string[] | null | undefined;
|
|
11208
11464
|
}[];
|
|
11209
11465
|
conversation: {
|
|
11210
11466
|
environment: "email" | "phone" | "web";
|
|
@@ -11260,6 +11516,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11260
11516
|
option?: string | null | undefined;
|
|
11261
11517
|
text?: string | null | undefined;
|
|
11262
11518
|
}[] | null | undefined;
|
|
11519
|
+
ignoreTransform?: boolean | undefined;
|
|
11520
|
+
mediaUrls?: string[] | null | undefined;
|
|
11263
11521
|
};
|
|
11264
11522
|
agent: {
|
|
11265
11523
|
id: string;
|
|
@@ -11273,6 +11531,7 @@ declare module '@scout9/app/schemas' {
|
|
|
11273
11531
|
phone?: string | undefined;
|
|
11274
11532
|
email?: string | undefined;
|
|
11275
11533
|
} | undefined;
|
|
11534
|
+
isFreeProgrammablePhoneNumber?: boolean | undefined;
|
|
11276
11535
|
programmablePhoneNumber?: string | undefined;
|
|
11277
11536
|
programmablePhoneNumberSid?: string | undefined;
|
|
11278
11537
|
programmableEmail?: string | undefined;
|
|
@@ -11323,6 +11582,8 @@ declare module '@scout9/app/schemas' {
|
|
|
11323
11582
|
option?: string | null | undefined;
|
|
11324
11583
|
text?: string | null | undefined;
|
|
11325
11584
|
}[] | null | undefined;
|
|
11585
|
+
ignoreTransform?: boolean | undefined;
|
|
11586
|
+
mediaUrls?: string[] | null | undefined;
|
|
11326
11587
|
}[];
|
|
11327
11588
|
conversation: {
|
|
11328
11589
|
environment: "email" | "phone" | "web";
|