@channel.io/app-sdk-core 0.15.4 → 0.15.6
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/extensions/config.d.ts +920 -920
- package/dist/extensions/datasource.d.ts +61 -32
- package/dist/extensions/datasource.d.ts.map +1 -1
- package/dist/extensions/datasource.js +63 -0
- package/dist/extensions/datasource.js.map +1 -1
- package/dist/extensions/function-schemas.d.ts +781 -542
- package/dist/extensions/function-schemas.d.ts.map +1 -1
- package/dist/extensions/function-schemas.js +6 -0
- package/dist/extensions/function-schemas.js.map +1 -1
- package/dist/extensions/index.d.ts +2 -1
- package/dist/extensions/index.d.ts.map +1 -1
- package/dist/extensions/index.js +3 -1
- package/dist/extensions/index.js.map +1 -1
- package/dist/extensions/interfaces/index.d.ts +1 -0
- package/dist/extensions/interfaces/index.d.ts.map +1 -1
- package/dist/extensions/interfaces/index.js +1 -0
- package/dist/extensions/interfaces/index.js.map +1 -1
- package/dist/extensions/interfaces/mail-relay.d.ts +25 -0
- package/dist/extensions/interfaces/mail-relay.d.ts.map +1 -0
- package/dist/extensions/interfaces/mail-relay.js +9 -0
- package/dist/extensions/interfaces/mail-relay.js.map +1 -0
- package/dist/extensions/mail-relay.d.ts +425 -0
- package/dist/extensions/mail-relay.d.ts.map +1 -0
- package/dist/extensions/mail-relay.js +59 -0
- package/dist/extensions/mail-relay.js.map +1 -0
- package/dist/extensions/proto-contracts.d.ts +8 -1
- package/dist/extensions/proto-contracts.d.ts.map +1 -1
- package/dist/extensions/store.d.ts +74 -74
- package/dist/extensions/wms.d.ts +12 -12
- package/dist/gen/channel/app/sdk/v1/common.zod.d.ts +6 -6
- package/dist/gen/channel/app/sdk/v1/extension.d.ts +43 -0
- package/dist/gen/channel/app/sdk/v1/extension.d.ts.map +1 -1
- package/dist/gen/channel/app/sdk/v1/extension.zod.d.ts +619 -299
- package/dist/gen/channel/app/sdk/v1/extension.zod.d.ts.map +1 -1
- package/dist/gen/channel/app/sdk/v1/extension.zod.js +43 -0
- package/dist/gen/channel/app/sdk/v1/extension.zod.js.map +1 -1
- package/dist/gen/io/channel/datasource/v1/datasource.zod.d.ts +9 -9
- package/dist/schemas/index.d.ts +1 -0
- package/dist/schemas/index.d.ts.map +1 -1
- package/dist/schemas/index.js +1 -0
- package/dist/schemas/index.js.map +1 -1
- package/dist/schemas/native.d.ts +556 -0
- package/dist/schemas/native.d.ts.map +1 -0
- package/dist/schemas/native.js +101 -0
- package/dist/schemas/native.js.map +1 -0
- package/dist/types/native.d.ts +68 -0
- package/dist/types/native.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -203,12 +203,12 @@ export declare const ConfigInlineLinkProtoSchema: z.ZodObject<{
|
|
|
203
203
|
url: z.ZodOptional<z.ZodString>;
|
|
204
204
|
}, "strip", z.ZodTypeAny, {
|
|
205
205
|
url?: string | undefined;
|
|
206
|
-
label?: string | undefined;
|
|
207
206
|
key?: string | undefined;
|
|
207
|
+
label?: string | undefined;
|
|
208
208
|
}, {
|
|
209
209
|
url?: string | undefined;
|
|
210
|
-
label?: string | undefined;
|
|
211
210
|
key?: string | undefined;
|
|
211
|
+
label?: string | undefined;
|
|
212
212
|
}>;
|
|
213
213
|
export type ConfigInlineLinkProto = z.infer<typeof ConfigInlineLinkProtoSchema>;
|
|
214
214
|
export declare const ConfigValidationNoticeProtoSchema: z.ZodObject<{
|
|
@@ -286,17 +286,17 @@ export declare const ConfigChoicesSourceProtoSchema: z.ZodObject<{
|
|
|
286
286
|
}, "strip", z.ZodTypeAny, {
|
|
287
287
|
params?: Record<string, any> | undefined;
|
|
288
288
|
type?: string | undefined;
|
|
289
|
+
appId?: string | undefined;
|
|
289
290
|
functionName?: string | undefined;
|
|
290
291
|
triggerOnLoad?: boolean | undefined;
|
|
291
292
|
triggerFieldKeys?: string[] | undefined;
|
|
292
|
-
appId?: string | undefined;
|
|
293
293
|
}, {
|
|
294
294
|
params?: Record<string, any> | undefined;
|
|
295
295
|
type?: string | undefined;
|
|
296
|
+
appId?: string | undefined;
|
|
296
297
|
functionName?: string | undefined;
|
|
297
298
|
triggerOnLoad?: boolean | undefined;
|
|
298
299
|
triggerFieldKeys?: string[] | undefined;
|
|
299
|
-
appId?: string | undefined;
|
|
300
300
|
}>;
|
|
301
301
|
export type ConfigChoicesSourceProto = z.infer<typeof ConfigChoicesSourceProtoSchema>;
|
|
302
302
|
export declare const ConfigDraftResolutionParamsProtoSchema: z.ZodObject<{
|
|
@@ -336,14 +336,14 @@ export declare const ConfigResolvedValueTargetProtoSchema: z.ZodObject<{
|
|
|
336
336
|
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
337
337
|
maskType: z.ZodOptional<z.ZodString>;
|
|
338
338
|
}, "strip", z.ZodTypeAny, {
|
|
339
|
+
key?: string | undefined;
|
|
339
340
|
sensitive?: boolean | undefined;
|
|
340
341
|
maskType?: string | undefined;
|
|
341
|
-
key?: string | undefined;
|
|
342
342
|
storageClass?: string | undefined;
|
|
343
343
|
}, {
|
|
344
|
+
key?: string | undefined;
|
|
344
345
|
sensitive?: boolean | undefined;
|
|
345
346
|
maskType?: string | undefined;
|
|
346
|
-
key?: string | undefined;
|
|
347
347
|
storageClass?: string | undefined;
|
|
348
348
|
}>;
|
|
349
349
|
export type ConfigResolvedValueTargetProto = z.infer<typeof ConfigResolvedValueTargetProtoSchema>;
|
|
@@ -393,12 +393,12 @@ export declare const ConfigFieldProtoSchema: z.ZodObject<{
|
|
|
393
393
|
url: z.ZodOptional<z.ZodString>;
|
|
394
394
|
}, "strip", z.ZodTypeAny, {
|
|
395
395
|
url?: string | undefined;
|
|
396
|
-
label?: string | undefined;
|
|
397
396
|
key?: string | undefined;
|
|
397
|
+
label?: string | undefined;
|
|
398
398
|
}, {
|
|
399
399
|
url?: string | undefined;
|
|
400
|
-
label?: string | undefined;
|
|
401
400
|
key?: string | undefined;
|
|
401
|
+
label?: string | undefined;
|
|
402
402
|
}>>, "many">>;
|
|
403
403
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
404
404
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -417,14 +417,14 @@ export declare const ConfigFieldProtoSchema: z.ZodObject<{
|
|
|
417
417
|
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
418
418
|
maskType: z.ZodOptional<z.ZodString>;
|
|
419
419
|
}, "strip", z.ZodTypeAny, {
|
|
420
|
+
key?: string | undefined;
|
|
420
421
|
sensitive?: boolean | undefined;
|
|
421
422
|
maskType?: string | undefined;
|
|
422
|
-
key?: string | undefined;
|
|
423
423
|
storageClass?: string | undefined;
|
|
424
424
|
}, {
|
|
425
|
+
key?: string | undefined;
|
|
425
426
|
sensitive?: boolean | undefined;
|
|
426
427
|
maskType?: string | undefined;
|
|
427
|
-
key?: string | undefined;
|
|
428
428
|
storageClass?: string | undefined;
|
|
429
429
|
}>>>;
|
|
430
430
|
visibleWhen: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
@@ -464,17 +464,17 @@ export declare const ConfigFieldProtoSchema: z.ZodObject<{
|
|
|
464
464
|
}, "strip", z.ZodTypeAny, {
|
|
465
465
|
params?: Record<string, any> | undefined;
|
|
466
466
|
type?: string | undefined;
|
|
467
|
+
appId?: string | undefined;
|
|
467
468
|
functionName?: string | undefined;
|
|
468
469
|
triggerOnLoad?: boolean | undefined;
|
|
469
470
|
triggerFieldKeys?: string[] | undefined;
|
|
470
|
-
appId?: string | undefined;
|
|
471
471
|
}, {
|
|
472
472
|
params?: Record<string, any> | undefined;
|
|
473
473
|
type?: string | undefined;
|
|
474
|
+
appId?: string | undefined;
|
|
474
475
|
functionName?: string | undefined;
|
|
475
476
|
triggerOnLoad?: boolean | undefined;
|
|
476
477
|
triggerFieldKeys?: string[] | undefined;
|
|
477
|
-
appId?: string | undefined;
|
|
478
478
|
}>>>;
|
|
479
479
|
rows: z.ZodOptional<z.ZodNumber>;
|
|
480
480
|
maskType: z.ZodOptional<z.ZodString>;
|
|
@@ -532,6 +532,8 @@ export declare const ConfigFieldProtoSchema: z.ZodObject<{
|
|
|
532
532
|
}, "strip", z.ZodTypeAny, {
|
|
533
533
|
type?: string | undefined;
|
|
534
534
|
description?: string | undefined;
|
|
535
|
+
key?: string | undefined;
|
|
536
|
+
rows?: number | undefined;
|
|
535
537
|
required?: boolean | undefined;
|
|
536
538
|
maskType?: string | undefined;
|
|
537
539
|
placeholder?: string | undefined;
|
|
@@ -540,18 +542,17 @@ export declare const ConfigFieldProtoSchema: z.ZodObject<{
|
|
|
540
542
|
visibility?: string | undefined;
|
|
541
543
|
} | undefined;
|
|
542
544
|
label?: string | undefined;
|
|
543
|
-
key?: string | undefined;
|
|
544
545
|
storageClass?: string | undefined;
|
|
545
546
|
helperText?: string | undefined;
|
|
546
547
|
helperLinks?: {
|
|
547
548
|
url?: string | undefined;
|
|
548
|
-
label?: string | undefined;
|
|
549
549
|
key?: string | undefined;
|
|
550
|
+
label?: string | undefined;
|
|
550
551
|
}[] | undefined;
|
|
551
552
|
resolvesTo?: {
|
|
553
|
+
key?: string | undefined;
|
|
552
554
|
sensitive?: boolean | undefined;
|
|
553
555
|
maskType?: string | undefined;
|
|
554
|
-
key?: string | undefined;
|
|
555
556
|
storageClass?: string | undefined;
|
|
556
557
|
} | undefined;
|
|
557
558
|
visibleWhen?: {
|
|
@@ -568,12 +569,11 @@ export declare const ConfigFieldProtoSchema: z.ZodObject<{
|
|
|
568
569
|
choicesSource?: {
|
|
569
570
|
params?: Record<string, any> | undefined;
|
|
570
571
|
type?: string | undefined;
|
|
572
|
+
appId?: string | undefined;
|
|
571
573
|
functionName?: string | undefined;
|
|
572
574
|
triggerOnLoad?: boolean | undefined;
|
|
573
575
|
triggerFieldKeys?: string[] | undefined;
|
|
574
|
-
appId?: string | undefined;
|
|
575
576
|
} | undefined;
|
|
576
|
-
rows?: number | undefined;
|
|
577
577
|
min?: number | undefined;
|
|
578
578
|
max?: number | undefined;
|
|
579
579
|
step?: number | undefined;
|
|
@@ -608,6 +608,8 @@ export declare const ConfigFieldProtoSchema: z.ZodObject<{
|
|
|
608
608
|
}, {
|
|
609
609
|
type?: string | undefined;
|
|
610
610
|
description?: string | undefined;
|
|
611
|
+
key?: string | undefined;
|
|
612
|
+
rows?: number | undefined;
|
|
611
613
|
required?: boolean | undefined;
|
|
612
614
|
maskType?: string | undefined;
|
|
613
615
|
placeholder?: string | undefined;
|
|
@@ -616,18 +618,17 @@ export declare const ConfigFieldProtoSchema: z.ZodObject<{
|
|
|
616
618
|
visibility?: string | undefined;
|
|
617
619
|
} | undefined;
|
|
618
620
|
label?: string | undefined;
|
|
619
|
-
key?: string | undefined;
|
|
620
621
|
storageClass?: string | undefined;
|
|
621
622
|
helperText?: string | undefined;
|
|
622
623
|
helperLinks?: {
|
|
623
624
|
url?: string | undefined;
|
|
624
|
-
label?: string | undefined;
|
|
625
625
|
key?: string | undefined;
|
|
626
|
+
label?: string | undefined;
|
|
626
627
|
}[] | undefined;
|
|
627
628
|
resolvesTo?: {
|
|
629
|
+
key?: string | undefined;
|
|
628
630
|
sensitive?: boolean | undefined;
|
|
629
631
|
maskType?: string | undefined;
|
|
630
|
-
key?: string | undefined;
|
|
631
632
|
storageClass?: string | undefined;
|
|
632
633
|
} | undefined;
|
|
633
634
|
visibleWhen?: {
|
|
@@ -644,12 +645,11 @@ export declare const ConfigFieldProtoSchema: z.ZodObject<{
|
|
|
644
645
|
choicesSource?: {
|
|
645
646
|
params?: Record<string, any> | undefined;
|
|
646
647
|
type?: string | undefined;
|
|
648
|
+
appId?: string | undefined;
|
|
647
649
|
functionName?: string | undefined;
|
|
648
650
|
triggerOnLoad?: boolean | undefined;
|
|
649
651
|
triggerFieldKeys?: string[] | undefined;
|
|
650
|
-
appId?: string | undefined;
|
|
651
652
|
} | undefined;
|
|
652
|
-
rows?: number | undefined;
|
|
653
653
|
min?: number | undefined;
|
|
654
654
|
max?: number | undefined;
|
|
655
655
|
step?: number | undefined;
|
|
@@ -708,12 +708,12 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
708
708
|
url: z.ZodOptional<z.ZodString>;
|
|
709
709
|
}, "strip", z.ZodTypeAny, {
|
|
710
710
|
url?: string | undefined;
|
|
711
|
-
label?: string | undefined;
|
|
712
711
|
key?: string | undefined;
|
|
712
|
+
label?: string | undefined;
|
|
713
713
|
}, {
|
|
714
714
|
url?: string | undefined;
|
|
715
|
-
label?: string | undefined;
|
|
716
715
|
key?: string | undefined;
|
|
716
|
+
label?: string | undefined;
|
|
717
717
|
}>>, "many">>;
|
|
718
718
|
tone: z.ZodOptional<z.ZodString>;
|
|
719
719
|
layout: z.ZodOptional<z.ZodString>;
|
|
@@ -729,12 +729,12 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
729
729
|
url: z.ZodOptional<z.ZodString>;
|
|
730
730
|
}, "strip", z.ZodTypeAny, {
|
|
731
731
|
url?: string | undefined;
|
|
732
|
-
label?: string | undefined;
|
|
733
732
|
key?: string | undefined;
|
|
733
|
+
label?: string | undefined;
|
|
734
734
|
}, {
|
|
735
735
|
url?: string | undefined;
|
|
736
|
-
label?: string | undefined;
|
|
737
736
|
key?: string | undefined;
|
|
737
|
+
label?: string | undefined;
|
|
738
738
|
}>>, "many">>;
|
|
739
739
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
740
740
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -753,14 +753,14 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
753
753
|
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
754
754
|
maskType: z.ZodOptional<z.ZodString>;
|
|
755
755
|
}, "strip", z.ZodTypeAny, {
|
|
756
|
+
key?: string | undefined;
|
|
756
757
|
sensitive?: boolean | undefined;
|
|
757
758
|
maskType?: string | undefined;
|
|
758
|
-
key?: string | undefined;
|
|
759
759
|
storageClass?: string | undefined;
|
|
760
760
|
}, {
|
|
761
|
+
key?: string | undefined;
|
|
761
762
|
sensitive?: boolean | undefined;
|
|
762
763
|
maskType?: string | undefined;
|
|
763
|
-
key?: string | undefined;
|
|
764
764
|
storageClass?: string | undefined;
|
|
765
765
|
}>>>;
|
|
766
766
|
visibleWhen: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
@@ -800,17 +800,17 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
800
800
|
}, "strip", z.ZodTypeAny, {
|
|
801
801
|
params?: Record<string, any> | undefined;
|
|
802
802
|
type?: string | undefined;
|
|
803
|
+
appId?: string | undefined;
|
|
803
804
|
functionName?: string | undefined;
|
|
804
805
|
triggerOnLoad?: boolean | undefined;
|
|
805
806
|
triggerFieldKeys?: string[] | undefined;
|
|
806
|
-
appId?: string | undefined;
|
|
807
807
|
}, {
|
|
808
808
|
params?: Record<string, any> | undefined;
|
|
809
809
|
type?: string | undefined;
|
|
810
|
+
appId?: string | undefined;
|
|
810
811
|
functionName?: string | undefined;
|
|
811
812
|
triggerOnLoad?: boolean | undefined;
|
|
812
813
|
triggerFieldKeys?: string[] | undefined;
|
|
813
|
-
appId?: string | undefined;
|
|
814
814
|
}>>>;
|
|
815
815
|
rows: z.ZodOptional<z.ZodNumber>;
|
|
816
816
|
maskType: z.ZodOptional<z.ZodString>;
|
|
@@ -868,6 +868,8 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
868
868
|
}, "strip", z.ZodTypeAny, {
|
|
869
869
|
type?: string | undefined;
|
|
870
870
|
description?: string | undefined;
|
|
871
|
+
key?: string | undefined;
|
|
872
|
+
rows?: number | undefined;
|
|
871
873
|
required?: boolean | undefined;
|
|
872
874
|
maskType?: string | undefined;
|
|
873
875
|
placeholder?: string | undefined;
|
|
@@ -876,18 +878,17 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
876
878
|
visibility?: string | undefined;
|
|
877
879
|
} | undefined;
|
|
878
880
|
label?: string | undefined;
|
|
879
|
-
key?: string | undefined;
|
|
880
881
|
storageClass?: string | undefined;
|
|
881
882
|
helperText?: string | undefined;
|
|
882
883
|
helperLinks?: {
|
|
883
884
|
url?: string | undefined;
|
|
884
|
-
label?: string | undefined;
|
|
885
885
|
key?: string | undefined;
|
|
886
|
+
label?: string | undefined;
|
|
886
887
|
}[] | undefined;
|
|
887
888
|
resolvesTo?: {
|
|
889
|
+
key?: string | undefined;
|
|
888
890
|
sensitive?: boolean | undefined;
|
|
889
891
|
maskType?: string | undefined;
|
|
890
|
-
key?: string | undefined;
|
|
891
892
|
storageClass?: string | undefined;
|
|
892
893
|
} | undefined;
|
|
893
894
|
visibleWhen?: {
|
|
@@ -904,12 +905,11 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
904
905
|
choicesSource?: {
|
|
905
906
|
params?: Record<string, any> | undefined;
|
|
906
907
|
type?: string | undefined;
|
|
908
|
+
appId?: string | undefined;
|
|
907
909
|
functionName?: string | undefined;
|
|
908
910
|
triggerOnLoad?: boolean | undefined;
|
|
909
911
|
triggerFieldKeys?: string[] | undefined;
|
|
910
|
-
appId?: string | undefined;
|
|
911
912
|
} | undefined;
|
|
912
|
-
rows?: number | undefined;
|
|
913
913
|
min?: number | undefined;
|
|
914
914
|
max?: number | undefined;
|
|
915
915
|
step?: number | undefined;
|
|
@@ -944,6 +944,8 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
944
944
|
}, {
|
|
945
945
|
type?: string | undefined;
|
|
946
946
|
description?: string | undefined;
|
|
947
|
+
key?: string | undefined;
|
|
948
|
+
rows?: number | undefined;
|
|
947
949
|
required?: boolean | undefined;
|
|
948
950
|
maskType?: string | undefined;
|
|
949
951
|
placeholder?: string | undefined;
|
|
@@ -952,18 +954,17 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
952
954
|
visibility?: string | undefined;
|
|
953
955
|
} | undefined;
|
|
954
956
|
label?: string | undefined;
|
|
955
|
-
key?: string | undefined;
|
|
956
957
|
storageClass?: string | undefined;
|
|
957
958
|
helperText?: string | undefined;
|
|
958
959
|
helperLinks?: {
|
|
959
960
|
url?: string | undefined;
|
|
960
|
-
label?: string | undefined;
|
|
961
961
|
key?: string | undefined;
|
|
962
|
+
label?: string | undefined;
|
|
962
963
|
}[] | undefined;
|
|
963
964
|
resolvesTo?: {
|
|
965
|
+
key?: string | undefined;
|
|
964
966
|
sensitive?: boolean | undefined;
|
|
965
967
|
maskType?: string | undefined;
|
|
966
|
-
key?: string | undefined;
|
|
967
968
|
storageClass?: string | undefined;
|
|
968
969
|
} | undefined;
|
|
969
970
|
visibleWhen?: {
|
|
@@ -980,12 +981,11 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
980
981
|
choicesSource?: {
|
|
981
982
|
params?: Record<string, any> | undefined;
|
|
982
983
|
type?: string | undefined;
|
|
984
|
+
appId?: string | undefined;
|
|
983
985
|
functionName?: string | undefined;
|
|
984
986
|
triggerOnLoad?: boolean | undefined;
|
|
985
987
|
triggerFieldKeys?: string[] | undefined;
|
|
986
|
-
appId?: string | undefined;
|
|
987
988
|
} | undefined;
|
|
988
|
-
rows?: number | undefined;
|
|
989
989
|
min?: number | undefined;
|
|
990
990
|
max?: number | undefined;
|
|
991
991
|
step?: number | undefined;
|
|
@@ -1040,14 +1040,14 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
1040
1040
|
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
1041
1041
|
maskType: z.ZodOptional<z.ZodString>;
|
|
1042
1042
|
}, "strip", z.ZodTypeAny, {
|
|
1043
|
+
key?: string | undefined;
|
|
1043
1044
|
sensitive?: boolean | undefined;
|
|
1044
1045
|
maskType?: string | undefined;
|
|
1045
|
-
key?: string | undefined;
|
|
1046
1046
|
storageClass?: string | undefined;
|
|
1047
1047
|
}, {
|
|
1048
|
+
key?: string | undefined;
|
|
1048
1049
|
sensitive?: boolean | undefined;
|
|
1049
1050
|
maskType?: string | undefined;
|
|
1050
|
-
key?: string | undefined;
|
|
1051
1051
|
storageClass?: string | undefined;
|
|
1052
1052
|
}>>>;
|
|
1053
1053
|
enabledWhen: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
@@ -1074,17 +1074,17 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
1074
1074
|
}, "strip", z.ZodTypeAny, {
|
|
1075
1075
|
params?: Record<string, any> | undefined;
|
|
1076
1076
|
type?: string | undefined;
|
|
1077
|
+
appId?: string | undefined;
|
|
1077
1078
|
functionName?: string | undefined;
|
|
1078
1079
|
triggerOnLoad?: boolean | undefined;
|
|
1079
1080
|
triggerFieldKeys?: string[] | undefined;
|
|
1080
|
-
appId?: string | undefined;
|
|
1081
1081
|
}, {
|
|
1082
1082
|
params?: Record<string, any> | undefined;
|
|
1083
1083
|
type?: string | undefined;
|
|
1084
|
+
appId?: string | undefined;
|
|
1084
1085
|
functionName?: string | undefined;
|
|
1085
1086
|
triggerOnLoad?: boolean | undefined;
|
|
1086
1087
|
triggerFieldKeys?: string[] | undefined;
|
|
1087
|
-
appId?: string | undefined;
|
|
1088
1088
|
}>>>;
|
|
1089
1089
|
rows: z.ZodOptional<z.ZodNumber>;
|
|
1090
1090
|
maskType: z.ZodOptional<z.ZodString>;
|
|
@@ -1145,6 +1145,8 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
1145
1145
|
text?: string | undefined;
|
|
1146
1146
|
id?: string | undefined;
|
|
1147
1147
|
title?: string | undefined;
|
|
1148
|
+
key?: string | undefined;
|
|
1149
|
+
rows?: number | undefined;
|
|
1148
1150
|
required?: boolean | undefined;
|
|
1149
1151
|
maskType?: string | undefined;
|
|
1150
1152
|
placeholder?: string | undefined;
|
|
@@ -1152,6 +1154,8 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
1152
1154
|
fields?: {
|
|
1153
1155
|
type?: string | undefined;
|
|
1154
1156
|
description?: string | undefined;
|
|
1157
|
+
key?: string | undefined;
|
|
1158
|
+
rows?: number | undefined;
|
|
1155
1159
|
required?: boolean | undefined;
|
|
1156
1160
|
maskType?: string | undefined;
|
|
1157
1161
|
placeholder?: string | undefined;
|
|
@@ -1160,18 +1164,17 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
1160
1164
|
visibility?: string | undefined;
|
|
1161
1165
|
} | undefined;
|
|
1162
1166
|
label?: string | undefined;
|
|
1163
|
-
key?: string | undefined;
|
|
1164
1167
|
storageClass?: string | undefined;
|
|
1165
1168
|
helperText?: string | undefined;
|
|
1166
1169
|
helperLinks?: {
|
|
1167
1170
|
url?: string | undefined;
|
|
1168
|
-
label?: string | undefined;
|
|
1169
1171
|
key?: string | undefined;
|
|
1172
|
+
label?: string | undefined;
|
|
1170
1173
|
}[] | undefined;
|
|
1171
1174
|
resolvesTo?: {
|
|
1175
|
+
key?: string | undefined;
|
|
1172
1176
|
sensitive?: boolean | undefined;
|
|
1173
1177
|
maskType?: string | undefined;
|
|
1174
|
-
key?: string | undefined;
|
|
1175
1178
|
storageClass?: string | undefined;
|
|
1176
1179
|
} | undefined;
|
|
1177
1180
|
visibleWhen?: {
|
|
@@ -1188,12 +1191,11 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
1188
1191
|
choicesSource?: {
|
|
1189
1192
|
params?: Record<string, any> | undefined;
|
|
1190
1193
|
type?: string | undefined;
|
|
1194
|
+
appId?: string | undefined;
|
|
1191
1195
|
functionName?: string | undefined;
|
|
1192
1196
|
triggerOnLoad?: boolean | undefined;
|
|
1193
1197
|
triggerFieldKeys?: string[] | undefined;
|
|
1194
|
-
appId?: string | undefined;
|
|
1195
1198
|
} | undefined;
|
|
1196
|
-
rows?: number | undefined;
|
|
1197
1199
|
min?: number | undefined;
|
|
1198
1200
|
max?: number | undefined;
|
|
1199
1201
|
step?: number | undefined;
|
|
@@ -1230,19 +1232,18 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
1230
1232
|
visibility?: string | undefined;
|
|
1231
1233
|
} | undefined;
|
|
1232
1234
|
label?: string | undefined;
|
|
1233
|
-
key?: string | undefined;
|
|
1234
1235
|
tone?: string | undefined;
|
|
1235
1236
|
storageClass?: string | undefined;
|
|
1236
1237
|
helperText?: string | undefined;
|
|
1237
1238
|
helperLinks?: {
|
|
1238
1239
|
url?: string | undefined;
|
|
1239
|
-
label?: string | undefined;
|
|
1240
1240
|
key?: string | undefined;
|
|
1241
|
+
label?: string | undefined;
|
|
1241
1242
|
}[] | undefined;
|
|
1242
1243
|
resolvesTo?: {
|
|
1244
|
+
key?: string | undefined;
|
|
1243
1245
|
sensitive?: boolean | undefined;
|
|
1244
1246
|
maskType?: string | undefined;
|
|
1245
|
-
key?: string | undefined;
|
|
1246
1247
|
storageClass?: string | undefined;
|
|
1247
1248
|
} | undefined;
|
|
1248
1249
|
visibleWhen?: {
|
|
@@ -1259,12 +1260,11 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
1259
1260
|
choicesSource?: {
|
|
1260
1261
|
params?: Record<string, any> | undefined;
|
|
1261
1262
|
type?: string | undefined;
|
|
1263
|
+
appId?: string | undefined;
|
|
1262
1264
|
functionName?: string | undefined;
|
|
1263
1265
|
triggerOnLoad?: boolean | undefined;
|
|
1264
1266
|
triggerFieldKeys?: string[] | undefined;
|
|
1265
|
-
appId?: string | undefined;
|
|
1266
1267
|
} | undefined;
|
|
1267
|
-
rows?: number | undefined;
|
|
1268
1268
|
min?: number | undefined;
|
|
1269
1269
|
max?: number | undefined;
|
|
1270
1270
|
step?: number | undefined;
|
|
@@ -1305,6 +1305,8 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
1305
1305
|
text?: string | undefined;
|
|
1306
1306
|
id?: string | undefined;
|
|
1307
1307
|
title?: string | undefined;
|
|
1308
|
+
key?: string | undefined;
|
|
1309
|
+
rows?: number | undefined;
|
|
1308
1310
|
required?: boolean | undefined;
|
|
1309
1311
|
maskType?: string | undefined;
|
|
1310
1312
|
placeholder?: string | undefined;
|
|
@@ -1312,6 +1314,8 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
1312
1314
|
fields?: {
|
|
1313
1315
|
type?: string | undefined;
|
|
1314
1316
|
description?: string | undefined;
|
|
1317
|
+
key?: string | undefined;
|
|
1318
|
+
rows?: number | undefined;
|
|
1315
1319
|
required?: boolean | undefined;
|
|
1316
1320
|
maskType?: string | undefined;
|
|
1317
1321
|
placeholder?: string | undefined;
|
|
@@ -1320,18 +1324,17 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
1320
1324
|
visibility?: string | undefined;
|
|
1321
1325
|
} | undefined;
|
|
1322
1326
|
label?: string | undefined;
|
|
1323
|
-
key?: string | undefined;
|
|
1324
1327
|
storageClass?: string | undefined;
|
|
1325
1328
|
helperText?: string | undefined;
|
|
1326
1329
|
helperLinks?: {
|
|
1327
1330
|
url?: string | undefined;
|
|
1328
|
-
label?: string | undefined;
|
|
1329
1331
|
key?: string | undefined;
|
|
1332
|
+
label?: string | undefined;
|
|
1330
1333
|
}[] | undefined;
|
|
1331
1334
|
resolvesTo?: {
|
|
1335
|
+
key?: string | undefined;
|
|
1332
1336
|
sensitive?: boolean | undefined;
|
|
1333
1337
|
maskType?: string | undefined;
|
|
1334
|
-
key?: string | undefined;
|
|
1335
1338
|
storageClass?: string | undefined;
|
|
1336
1339
|
} | undefined;
|
|
1337
1340
|
visibleWhen?: {
|
|
@@ -1348,12 +1351,11 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
1348
1351
|
choicesSource?: {
|
|
1349
1352
|
params?: Record<string, any> | undefined;
|
|
1350
1353
|
type?: string | undefined;
|
|
1354
|
+
appId?: string | undefined;
|
|
1351
1355
|
functionName?: string | undefined;
|
|
1352
1356
|
triggerOnLoad?: boolean | undefined;
|
|
1353
1357
|
triggerFieldKeys?: string[] | undefined;
|
|
1354
|
-
appId?: string | undefined;
|
|
1355
1358
|
} | undefined;
|
|
1356
|
-
rows?: number | undefined;
|
|
1357
1359
|
min?: number | undefined;
|
|
1358
1360
|
max?: number | undefined;
|
|
1359
1361
|
step?: number | undefined;
|
|
@@ -1390,19 +1392,18 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
1390
1392
|
visibility?: string | undefined;
|
|
1391
1393
|
} | undefined;
|
|
1392
1394
|
label?: string | undefined;
|
|
1393
|
-
key?: string | undefined;
|
|
1394
1395
|
tone?: string | undefined;
|
|
1395
1396
|
storageClass?: string | undefined;
|
|
1396
1397
|
helperText?: string | undefined;
|
|
1397
1398
|
helperLinks?: {
|
|
1398
1399
|
url?: string | undefined;
|
|
1399
|
-
label?: string | undefined;
|
|
1400
1400
|
key?: string | undefined;
|
|
1401
|
+
label?: string | undefined;
|
|
1401
1402
|
}[] | undefined;
|
|
1402
1403
|
resolvesTo?: {
|
|
1404
|
+
key?: string | undefined;
|
|
1403
1405
|
sensitive?: boolean | undefined;
|
|
1404
1406
|
maskType?: string | undefined;
|
|
1405
|
-
key?: string | undefined;
|
|
1406
1407
|
storageClass?: string | undefined;
|
|
1407
1408
|
} | undefined;
|
|
1408
1409
|
visibleWhen?: {
|
|
@@ -1419,12 +1420,11 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
1419
1420
|
choicesSource?: {
|
|
1420
1421
|
params?: Record<string, any> | undefined;
|
|
1421
1422
|
type?: string | undefined;
|
|
1423
|
+
appId?: string | undefined;
|
|
1422
1424
|
functionName?: string | undefined;
|
|
1423
1425
|
triggerOnLoad?: boolean | undefined;
|
|
1424
1426
|
triggerFieldKeys?: string[] | undefined;
|
|
1425
|
-
appId?: string | undefined;
|
|
1426
1427
|
} | undefined;
|
|
1427
|
-
rows?: number | undefined;
|
|
1428
1428
|
min?: number | undefined;
|
|
1429
1429
|
max?: number | undefined;
|
|
1430
1430
|
step?: number | undefined;
|
|
@@ -1527,12 +1527,12 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
1527
1527
|
url: z.ZodOptional<z.ZodString>;
|
|
1528
1528
|
}, "strip", z.ZodTypeAny, {
|
|
1529
1529
|
url?: string | undefined;
|
|
1530
|
-
label?: string | undefined;
|
|
1531
1530
|
key?: string | undefined;
|
|
1531
|
+
label?: string | undefined;
|
|
1532
1532
|
}, {
|
|
1533
1533
|
url?: string | undefined;
|
|
1534
|
-
label?: string | undefined;
|
|
1535
1534
|
key?: string | undefined;
|
|
1535
|
+
label?: string | undefined;
|
|
1536
1536
|
}>>, "many">>;
|
|
1537
1537
|
tone: z.ZodOptional<z.ZodString>;
|
|
1538
1538
|
layout: z.ZodOptional<z.ZodString>;
|
|
@@ -1548,12 +1548,12 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
1548
1548
|
url: z.ZodOptional<z.ZodString>;
|
|
1549
1549
|
}, "strip", z.ZodTypeAny, {
|
|
1550
1550
|
url?: string | undefined;
|
|
1551
|
-
label?: string | undefined;
|
|
1552
1551
|
key?: string | undefined;
|
|
1552
|
+
label?: string | undefined;
|
|
1553
1553
|
}, {
|
|
1554
1554
|
url?: string | undefined;
|
|
1555
|
-
label?: string | undefined;
|
|
1556
1555
|
key?: string | undefined;
|
|
1556
|
+
label?: string | undefined;
|
|
1557
1557
|
}>>, "many">>;
|
|
1558
1558
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
1559
1559
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -1572,14 +1572,14 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
1572
1572
|
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
1573
1573
|
maskType: z.ZodOptional<z.ZodString>;
|
|
1574
1574
|
}, "strip", z.ZodTypeAny, {
|
|
1575
|
+
key?: string | undefined;
|
|
1575
1576
|
sensitive?: boolean | undefined;
|
|
1576
1577
|
maskType?: string | undefined;
|
|
1577
|
-
key?: string | undefined;
|
|
1578
1578
|
storageClass?: string | undefined;
|
|
1579
1579
|
}, {
|
|
1580
|
+
key?: string | undefined;
|
|
1580
1581
|
sensitive?: boolean | undefined;
|
|
1581
1582
|
maskType?: string | undefined;
|
|
1582
|
-
key?: string | undefined;
|
|
1583
1583
|
storageClass?: string | undefined;
|
|
1584
1584
|
}>>>;
|
|
1585
1585
|
visibleWhen: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
@@ -1619,17 +1619,17 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
1619
1619
|
}, "strip", z.ZodTypeAny, {
|
|
1620
1620
|
params?: Record<string, any> | undefined;
|
|
1621
1621
|
type?: string | undefined;
|
|
1622
|
+
appId?: string | undefined;
|
|
1622
1623
|
functionName?: string | undefined;
|
|
1623
1624
|
triggerOnLoad?: boolean | undefined;
|
|
1624
1625
|
triggerFieldKeys?: string[] | undefined;
|
|
1625
|
-
appId?: string | undefined;
|
|
1626
1626
|
}, {
|
|
1627
1627
|
params?: Record<string, any> | undefined;
|
|
1628
1628
|
type?: string | undefined;
|
|
1629
|
+
appId?: string | undefined;
|
|
1629
1630
|
functionName?: string | undefined;
|
|
1630
1631
|
triggerOnLoad?: boolean | undefined;
|
|
1631
1632
|
triggerFieldKeys?: string[] | undefined;
|
|
1632
|
-
appId?: string | undefined;
|
|
1633
1633
|
}>>>;
|
|
1634
1634
|
rows: z.ZodOptional<z.ZodNumber>;
|
|
1635
1635
|
maskType: z.ZodOptional<z.ZodString>;
|
|
@@ -1687,6 +1687,8 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
1687
1687
|
}, "strip", z.ZodTypeAny, {
|
|
1688
1688
|
type?: string | undefined;
|
|
1689
1689
|
description?: string | undefined;
|
|
1690
|
+
key?: string | undefined;
|
|
1691
|
+
rows?: number | undefined;
|
|
1690
1692
|
required?: boolean | undefined;
|
|
1691
1693
|
maskType?: string | undefined;
|
|
1692
1694
|
placeholder?: string | undefined;
|
|
@@ -1695,18 +1697,17 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
1695
1697
|
visibility?: string | undefined;
|
|
1696
1698
|
} | undefined;
|
|
1697
1699
|
label?: string | undefined;
|
|
1698
|
-
key?: string | undefined;
|
|
1699
1700
|
storageClass?: string | undefined;
|
|
1700
1701
|
helperText?: string | undefined;
|
|
1701
1702
|
helperLinks?: {
|
|
1702
1703
|
url?: string | undefined;
|
|
1703
|
-
label?: string | undefined;
|
|
1704
1704
|
key?: string | undefined;
|
|
1705
|
+
label?: string | undefined;
|
|
1705
1706
|
}[] | undefined;
|
|
1706
1707
|
resolvesTo?: {
|
|
1708
|
+
key?: string | undefined;
|
|
1707
1709
|
sensitive?: boolean | undefined;
|
|
1708
1710
|
maskType?: string | undefined;
|
|
1709
|
-
key?: string | undefined;
|
|
1710
1711
|
storageClass?: string | undefined;
|
|
1711
1712
|
} | undefined;
|
|
1712
1713
|
visibleWhen?: {
|
|
@@ -1723,12 +1724,11 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
1723
1724
|
choicesSource?: {
|
|
1724
1725
|
params?: Record<string, any> | undefined;
|
|
1725
1726
|
type?: string | undefined;
|
|
1727
|
+
appId?: string | undefined;
|
|
1726
1728
|
functionName?: string | undefined;
|
|
1727
1729
|
triggerOnLoad?: boolean | undefined;
|
|
1728
1730
|
triggerFieldKeys?: string[] | undefined;
|
|
1729
|
-
appId?: string | undefined;
|
|
1730
1731
|
} | undefined;
|
|
1731
|
-
rows?: number | undefined;
|
|
1732
1732
|
min?: number | undefined;
|
|
1733
1733
|
max?: number | undefined;
|
|
1734
1734
|
step?: number | undefined;
|
|
@@ -1763,6 +1763,8 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
1763
1763
|
}, {
|
|
1764
1764
|
type?: string | undefined;
|
|
1765
1765
|
description?: string | undefined;
|
|
1766
|
+
key?: string | undefined;
|
|
1767
|
+
rows?: number | undefined;
|
|
1766
1768
|
required?: boolean | undefined;
|
|
1767
1769
|
maskType?: string | undefined;
|
|
1768
1770
|
placeholder?: string | undefined;
|
|
@@ -1771,18 +1773,17 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
1771
1773
|
visibility?: string | undefined;
|
|
1772
1774
|
} | undefined;
|
|
1773
1775
|
label?: string | undefined;
|
|
1774
|
-
key?: string | undefined;
|
|
1775
1776
|
storageClass?: string | undefined;
|
|
1776
1777
|
helperText?: string | undefined;
|
|
1777
1778
|
helperLinks?: {
|
|
1778
1779
|
url?: string | undefined;
|
|
1779
|
-
label?: string | undefined;
|
|
1780
1780
|
key?: string | undefined;
|
|
1781
|
+
label?: string | undefined;
|
|
1781
1782
|
}[] | undefined;
|
|
1782
1783
|
resolvesTo?: {
|
|
1784
|
+
key?: string | undefined;
|
|
1783
1785
|
sensitive?: boolean | undefined;
|
|
1784
1786
|
maskType?: string | undefined;
|
|
1785
|
-
key?: string | undefined;
|
|
1786
1787
|
storageClass?: string | undefined;
|
|
1787
1788
|
} | undefined;
|
|
1788
1789
|
visibleWhen?: {
|
|
@@ -1799,12 +1800,11 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
1799
1800
|
choicesSource?: {
|
|
1800
1801
|
params?: Record<string, any> | undefined;
|
|
1801
1802
|
type?: string | undefined;
|
|
1803
|
+
appId?: string | undefined;
|
|
1802
1804
|
functionName?: string | undefined;
|
|
1803
1805
|
triggerOnLoad?: boolean | undefined;
|
|
1804
1806
|
triggerFieldKeys?: string[] | undefined;
|
|
1805
|
-
appId?: string | undefined;
|
|
1806
1807
|
} | undefined;
|
|
1807
|
-
rows?: number | undefined;
|
|
1808
1808
|
min?: number | undefined;
|
|
1809
1809
|
max?: number | undefined;
|
|
1810
1810
|
step?: number | undefined;
|
|
@@ -1859,14 +1859,14 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
1859
1859
|
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
1860
1860
|
maskType: z.ZodOptional<z.ZodString>;
|
|
1861
1861
|
}, "strip", z.ZodTypeAny, {
|
|
1862
|
+
key?: string | undefined;
|
|
1862
1863
|
sensitive?: boolean | undefined;
|
|
1863
1864
|
maskType?: string | undefined;
|
|
1864
|
-
key?: string | undefined;
|
|
1865
1865
|
storageClass?: string | undefined;
|
|
1866
1866
|
}, {
|
|
1867
|
+
key?: string | undefined;
|
|
1867
1868
|
sensitive?: boolean | undefined;
|
|
1868
1869
|
maskType?: string | undefined;
|
|
1869
|
-
key?: string | undefined;
|
|
1870
1870
|
storageClass?: string | undefined;
|
|
1871
1871
|
}>>>;
|
|
1872
1872
|
enabledWhen: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
@@ -1893,17 +1893,17 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
1893
1893
|
}, "strip", z.ZodTypeAny, {
|
|
1894
1894
|
params?: Record<string, any> | undefined;
|
|
1895
1895
|
type?: string | undefined;
|
|
1896
|
+
appId?: string | undefined;
|
|
1896
1897
|
functionName?: string | undefined;
|
|
1897
1898
|
triggerOnLoad?: boolean | undefined;
|
|
1898
1899
|
triggerFieldKeys?: string[] | undefined;
|
|
1899
|
-
appId?: string | undefined;
|
|
1900
1900
|
}, {
|
|
1901
1901
|
params?: Record<string, any> | undefined;
|
|
1902
1902
|
type?: string | undefined;
|
|
1903
|
+
appId?: string | undefined;
|
|
1903
1904
|
functionName?: string | undefined;
|
|
1904
1905
|
triggerOnLoad?: boolean | undefined;
|
|
1905
1906
|
triggerFieldKeys?: string[] | undefined;
|
|
1906
|
-
appId?: string | undefined;
|
|
1907
1907
|
}>>>;
|
|
1908
1908
|
rows: z.ZodOptional<z.ZodNumber>;
|
|
1909
1909
|
maskType: z.ZodOptional<z.ZodString>;
|
|
@@ -1964,6 +1964,8 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
1964
1964
|
text?: string | undefined;
|
|
1965
1965
|
id?: string | undefined;
|
|
1966
1966
|
title?: string | undefined;
|
|
1967
|
+
key?: string | undefined;
|
|
1968
|
+
rows?: number | undefined;
|
|
1967
1969
|
required?: boolean | undefined;
|
|
1968
1970
|
maskType?: string | undefined;
|
|
1969
1971
|
placeholder?: string | undefined;
|
|
@@ -1971,6 +1973,8 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
1971
1973
|
fields?: {
|
|
1972
1974
|
type?: string | undefined;
|
|
1973
1975
|
description?: string | undefined;
|
|
1976
|
+
key?: string | undefined;
|
|
1977
|
+
rows?: number | undefined;
|
|
1974
1978
|
required?: boolean | undefined;
|
|
1975
1979
|
maskType?: string | undefined;
|
|
1976
1980
|
placeholder?: string | undefined;
|
|
@@ -1979,18 +1983,17 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
1979
1983
|
visibility?: string | undefined;
|
|
1980
1984
|
} | undefined;
|
|
1981
1985
|
label?: string | undefined;
|
|
1982
|
-
key?: string | undefined;
|
|
1983
1986
|
storageClass?: string | undefined;
|
|
1984
1987
|
helperText?: string | undefined;
|
|
1985
1988
|
helperLinks?: {
|
|
1986
1989
|
url?: string | undefined;
|
|
1987
|
-
label?: string | undefined;
|
|
1988
1990
|
key?: string | undefined;
|
|
1991
|
+
label?: string | undefined;
|
|
1989
1992
|
}[] | undefined;
|
|
1990
1993
|
resolvesTo?: {
|
|
1994
|
+
key?: string | undefined;
|
|
1991
1995
|
sensitive?: boolean | undefined;
|
|
1992
1996
|
maskType?: string | undefined;
|
|
1993
|
-
key?: string | undefined;
|
|
1994
1997
|
storageClass?: string | undefined;
|
|
1995
1998
|
} | undefined;
|
|
1996
1999
|
visibleWhen?: {
|
|
@@ -2007,12 +2010,11 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
2007
2010
|
choicesSource?: {
|
|
2008
2011
|
params?: Record<string, any> | undefined;
|
|
2009
2012
|
type?: string | undefined;
|
|
2013
|
+
appId?: string | undefined;
|
|
2010
2014
|
functionName?: string | undefined;
|
|
2011
2015
|
triggerOnLoad?: boolean | undefined;
|
|
2012
2016
|
triggerFieldKeys?: string[] | undefined;
|
|
2013
|
-
appId?: string | undefined;
|
|
2014
2017
|
} | undefined;
|
|
2015
|
-
rows?: number | undefined;
|
|
2016
2018
|
min?: number | undefined;
|
|
2017
2019
|
max?: number | undefined;
|
|
2018
2020
|
step?: number | undefined;
|
|
@@ -2049,19 +2051,18 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
2049
2051
|
visibility?: string | undefined;
|
|
2050
2052
|
} | undefined;
|
|
2051
2053
|
label?: string | undefined;
|
|
2052
|
-
key?: string | undefined;
|
|
2053
2054
|
tone?: string | undefined;
|
|
2054
2055
|
storageClass?: string | undefined;
|
|
2055
2056
|
helperText?: string | undefined;
|
|
2056
2057
|
helperLinks?: {
|
|
2057
2058
|
url?: string | undefined;
|
|
2058
|
-
label?: string | undefined;
|
|
2059
2059
|
key?: string | undefined;
|
|
2060
|
+
label?: string | undefined;
|
|
2060
2061
|
}[] | undefined;
|
|
2061
2062
|
resolvesTo?: {
|
|
2063
|
+
key?: string | undefined;
|
|
2062
2064
|
sensitive?: boolean | undefined;
|
|
2063
2065
|
maskType?: string | undefined;
|
|
2064
|
-
key?: string | undefined;
|
|
2065
2066
|
storageClass?: string | undefined;
|
|
2066
2067
|
} | undefined;
|
|
2067
2068
|
visibleWhen?: {
|
|
@@ -2078,12 +2079,11 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
2078
2079
|
choicesSource?: {
|
|
2079
2080
|
params?: Record<string, any> | undefined;
|
|
2080
2081
|
type?: string | undefined;
|
|
2082
|
+
appId?: string | undefined;
|
|
2081
2083
|
functionName?: string | undefined;
|
|
2082
2084
|
triggerOnLoad?: boolean | undefined;
|
|
2083
2085
|
triggerFieldKeys?: string[] | undefined;
|
|
2084
|
-
appId?: string | undefined;
|
|
2085
2086
|
} | undefined;
|
|
2086
|
-
rows?: number | undefined;
|
|
2087
2087
|
min?: number | undefined;
|
|
2088
2088
|
max?: number | undefined;
|
|
2089
2089
|
step?: number | undefined;
|
|
@@ -2124,6 +2124,8 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
2124
2124
|
text?: string | undefined;
|
|
2125
2125
|
id?: string | undefined;
|
|
2126
2126
|
title?: string | undefined;
|
|
2127
|
+
key?: string | undefined;
|
|
2128
|
+
rows?: number | undefined;
|
|
2127
2129
|
required?: boolean | undefined;
|
|
2128
2130
|
maskType?: string | undefined;
|
|
2129
2131
|
placeholder?: string | undefined;
|
|
@@ -2131,6 +2133,8 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
2131
2133
|
fields?: {
|
|
2132
2134
|
type?: string | undefined;
|
|
2133
2135
|
description?: string | undefined;
|
|
2136
|
+
key?: string | undefined;
|
|
2137
|
+
rows?: number | undefined;
|
|
2134
2138
|
required?: boolean | undefined;
|
|
2135
2139
|
maskType?: string | undefined;
|
|
2136
2140
|
placeholder?: string | undefined;
|
|
@@ -2139,18 +2143,17 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
2139
2143
|
visibility?: string | undefined;
|
|
2140
2144
|
} | undefined;
|
|
2141
2145
|
label?: string | undefined;
|
|
2142
|
-
key?: string | undefined;
|
|
2143
2146
|
storageClass?: string | undefined;
|
|
2144
2147
|
helperText?: string | undefined;
|
|
2145
2148
|
helperLinks?: {
|
|
2146
2149
|
url?: string | undefined;
|
|
2147
|
-
label?: string | undefined;
|
|
2148
2150
|
key?: string | undefined;
|
|
2151
|
+
label?: string | undefined;
|
|
2149
2152
|
}[] | undefined;
|
|
2150
2153
|
resolvesTo?: {
|
|
2154
|
+
key?: string | undefined;
|
|
2151
2155
|
sensitive?: boolean | undefined;
|
|
2152
2156
|
maskType?: string | undefined;
|
|
2153
|
-
key?: string | undefined;
|
|
2154
2157
|
storageClass?: string | undefined;
|
|
2155
2158
|
} | undefined;
|
|
2156
2159
|
visibleWhen?: {
|
|
@@ -2167,12 +2170,11 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
2167
2170
|
choicesSource?: {
|
|
2168
2171
|
params?: Record<string, any> | undefined;
|
|
2169
2172
|
type?: string | undefined;
|
|
2173
|
+
appId?: string | undefined;
|
|
2170
2174
|
functionName?: string | undefined;
|
|
2171
2175
|
triggerOnLoad?: boolean | undefined;
|
|
2172
2176
|
triggerFieldKeys?: string[] | undefined;
|
|
2173
|
-
appId?: string | undefined;
|
|
2174
2177
|
} | undefined;
|
|
2175
|
-
rows?: number | undefined;
|
|
2176
2178
|
min?: number | undefined;
|
|
2177
2179
|
max?: number | undefined;
|
|
2178
2180
|
step?: number | undefined;
|
|
@@ -2209,19 +2211,18 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
2209
2211
|
visibility?: string | undefined;
|
|
2210
2212
|
} | undefined;
|
|
2211
2213
|
label?: string | undefined;
|
|
2212
|
-
key?: string | undefined;
|
|
2213
2214
|
tone?: string | undefined;
|
|
2214
2215
|
storageClass?: string | undefined;
|
|
2215
2216
|
helperText?: string | undefined;
|
|
2216
2217
|
helperLinks?: {
|
|
2217
2218
|
url?: string | undefined;
|
|
2218
|
-
label?: string | undefined;
|
|
2219
2219
|
key?: string | undefined;
|
|
2220
|
+
label?: string | undefined;
|
|
2220
2221
|
}[] | undefined;
|
|
2221
2222
|
resolvesTo?: {
|
|
2223
|
+
key?: string | undefined;
|
|
2222
2224
|
sensitive?: boolean | undefined;
|
|
2223
2225
|
maskType?: string | undefined;
|
|
2224
|
-
key?: string | undefined;
|
|
2225
2226
|
storageClass?: string | undefined;
|
|
2226
2227
|
} | undefined;
|
|
2227
2228
|
visibleWhen?: {
|
|
@@ -2238,12 +2239,11 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
2238
2239
|
choicesSource?: {
|
|
2239
2240
|
params?: Record<string, any> | undefined;
|
|
2240
2241
|
type?: string | undefined;
|
|
2242
|
+
appId?: string | undefined;
|
|
2241
2243
|
functionName?: string | undefined;
|
|
2242
2244
|
triggerOnLoad?: boolean | undefined;
|
|
2243
2245
|
triggerFieldKeys?: string[] | undefined;
|
|
2244
|
-
appId?: string | undefined;
|
|
2245
2246
|
} | undefined;
|
|
2246
|
-
rows?: number | undefined;
|
|
2247
2247
|
min?: number | undefined;
|
|
2248
2248
|
max?: number | undefined;
|
|
2249
2249
|
step?: number | undefined;
|
|
@@ -2302,6 +2302,8 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
2302
2302
|
text?: string | undefined;
|
|
2303
2303
|
id?: string | undefined;
|
|
2304
2304
|
title?: string | undefined;
|
|
2305
|
+
key?: string | undefined;
|
|
2306
|
+
rows?: number | undefined;
|
|
2305
2307
|
required?: boolean | undefined;
|
|
2306
2308
|
maskType?: string | undefined;
|
|
2307
2309
|
placeholder?: string | undefined;
|
|
@@ -2309,6 +2311,8 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
2309
2311
|
fields?: {
|
|
2310
2312
|
type?: string | undefined;
|
|
2311
2313
|
description?: string | undefined;
|
|
2314
|
+
key?: string | undefined;
|
|
2315
|
+
rows?: number | undefined;
|
|
2312
2316
|
required?: boolean | undefined;
|
|
2313
2317
|
maskType?: string | undefined;
|
|
2314
2318
|
placeholder?: string | undefined;
|
|
@@ -2317,18 +2321,17 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
2317
2321
|
visibility?: string | undefined;
|
|
2318
2322
|
} | undefined;
|
|
2319
2323
|
label?: string | undefined;
|
|
2320
|
-
key?: string | undefined;
|
|
2321
2324
|
storageClass?: string | undefined;
|
|
2322
2325
|
helperText?: string | undefined;
|
|
2323
2326
|
helperLinks?: {
|
|
2324
2327
|
url?: string | undefined;
|
|
2325
|
-
label?: string | undefined;
|
|
2326
2328
|
key?: string | undefined;
|
|
2329
|
+
label?: string | undefined;
|
|
2327
2330
|
}[] | undefined;
|
|
2328
2331
|
resolvesTo?: {
|
|
2332
|
+
key?: string | undefined;
|
|
2329
2333
|
sensitive?: boolean | undefined;
|
|
2330
2334
|
maskType?: string | undefined;
|
|
2331
|
-
key?: string | undefined;
|
|
2332
2335
|
storageClass?: string | undefined;
|
|
2333
2336
|
} | undefined;
|
|
2334
2337
|
visibleWhen?: {
|
|
@@ -2345,12 +2348,11 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
2345
2348
|
choicesSource?: {
|
|
2346
2349
|
params?: Record<string, any> | undefined;
|
|
2347
2350
|
type?: string | undefined;
|
|
2351
|
+
appId?: string | undefined;
|
|
2348
2352
|
functionName?: string | undefined;
|
|
2349
2353
|
triggerOnLoad?: boolean | undefined;
|
|
2350
2354
|
triggerFieldKeys?: string[] | undefined;
|
|
2351
|
-
appId?: string | undefined;
|
|
2352
2355
|
} | undefined;
|
|
2353
|
-
rows?: number | undefined;
|
|
2354
2356
|
min?: number | undefined;
|
|
2355
2357
|
max?: number | undefined;
|
|
2356
2358
|
step?: number | undefined;
|
|
@@ -2387,19 +2389,18 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
2387
2389
|
visibility?: string | undefined;
|
|
2388
2390
|
} | undefined;
|
|
2389
2391
|
label?: string | undefined;
|
|
2390
|
-
key?: string | undefined;
|
|
2391
2392
|
tone?: string | undefined;
|
|
2392
2393
|
storageClass?: string | undefined;
|
|
2393
2394
|
helperText?: string | undefined;
|
|
2394
2395
|
helperLinks?: {
|
|
2395
2396
|
url?: string | undefined;
|
|
2396
|
-
label?: string | undefined;
|
|
2397
2397
|
key?: string | undefined;
|
|
2398
|
+
label?: string | undefined;
|
|
2398
2399
|
}[] | undefined;
|
|
2399
2400
|
resolvesTo?: {
|
|
2401
|
+
key?: string | undefined;
|
|
2400
2402
|
sensitive?: boolean | undefined;
|
|
2401
2403
|
maskType?: string | undefined;
|
|
2402
|
-
key?: string | undefined;
|
|
2403
2404
|
storageClass?: string | undefined;
|
|
2404
2405
|
} | undefined;
|
|
2405
2406
|
visibleWhen?: {
|
|
@@ -2416,12 +2417,11 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
2416
2417
|
choicesSource?: {
|
|
2417
2418
|
params?: Record<string, any> | undefined;
|
|
2418
2419
|
type?: string | undefined;
|
|
2420
|
+
appId?: string | undefined;
|
|
2419
2421
|
functionName?: string | undefined;
|
|
2420
2422
|
triggerOnLoad?: boolean | undefined;
|
|
2421
2423
|
triggerFieldKeys?: string[] | undefined;
|
|
2422
|
-
appId?: string | undefined;
|
|
2423
2424
|
} | undefined;
|
|
2424
|
-
rows?: number | undefined;
|
|
2425
2425
|
min?: number | undefined;
|
|
2426
2426
|
max?: number | undefined;
|
|
2427
2427
|
step?: number | undefined;
|
|
@@ -2480,6 +2480,8 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
2480
2480
|
text?: string | undefined;
|
|
2481
2481
|
id?: string | undefined;
|
|
2482
2482
|
title?: string | undefined;
|
|
2483
|
+
key?: string | undefined;
|
|
2484
|
+
rows?: number | undefined;
|
|
2483
2485
|
required?: boolean | undefined;
|
|
2484
2486
|
maskType?: string | undefined;
|
|
2485
2487
|
placeholder?: string | undefined;
|
|
@@ -2487,6 +2489,8 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
2487
2489
|
fields?: {
|
|
2488
2490
|
type?: string | undefined;
|
|
2489
2491
|
description?: string | undefined;
|
|
2492
|
+
key?: string | undefined;
|
|
2493
|
+
rows?: number | undefined;
|
|
2490
2494
|
required?: boolean | undefined;
|
|
2491
2495
|
maskType?: string | undefined;
|
|
2492
2496
|
placeholder?: string | undefined;
|
|
@@ -2495,18 +2499,17 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
2495
2499
|
visibility?: string | undefined;
|
|
2496
2500
|
} | undefined;
|
|
2497
2501
|
label?: string | undefined;
|
|
2498
|
-
key?: string | undefined;
|
|
2499
2502
|
storageClass?: string | undefined;
|
|
2500
2503
|
helperText?: string | undefined;
|
|
2501
2504
|
helperLinks?: {
|
|
2502
2505
|
url?: string | undefined;
|
|
2503
|
-
label?: string | undefined;
|
|
2504
2506
|
key?: string | undefined;
|
|
2507
|
+
label?: string | undefined;
|
|
2505
2508
|
}[] | undefined;
|
|
2506
2509
|
resolvesTo?: {
|
|
2510
|
+
key?: string | undefined;
|
|
2507
2511
|
sensitive?: boolean | undefined;
|
|
2508
2512
|
maskType?: string | undefined;
|
|
2509
|
-
key?: string | undefined;
|
|
2510
2513
|
storageClass?: string | undefined;
|
|
2511
2514
|
} | undefined;
|
|
2512
2515
|
visibleWhen?: {
|
|
@@ -2523,12 +2526,11 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
2523
2526
|
choicesSource?: {
|
|
2524
2527
|
params?: Record<string, any> | undefined;
|
|
2525
2528
|
type?: string | undefined;
|
|
2529
|
+
appId?: string | undefined;
|
|
2526
2530
|
functionName?: string | undefined;
|
|
2527
2531
|
triggerOnLoad?: boolean | undefined;
|
|
2528
2532
|
triggerFieldKeys?: string[] | undefined;
|
|
2529
|
-
appId?: string | undefined;
|
|
2530
2533
|
} | undefined;
|
|
2531
|
-
rows?: number | undefined;
|
|
2532
2534
|
min?: number | undefined;
|
|
2533
2535
|
max?: number | undefined;
|
|
2534
2536
|
step?: number | undefined;
|
|
@@ -2565,19 +2567,18 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
2565
2567
|
visibility?: string | undefined;
|
|
2566
2568
|
} | undefined;
|
|
2567
2569
|
label?: string | undefined;
|
|
2568
|
-
key?: string | undefined;
|
|
2569
2570
|
tone?: string | undefined;
|
|
2570
2571
|
storageClass?: string | undefined;
|
|
2571
2572
|
helperText?: string | undefined;
|
|
2572
2573
|
helperLinks?: {
|
|
2573
2574
|
url?: string | undefined;
|
|
2574
|
-
label?: string | undefined;
|
|
2575
2575
|
key?: string | undefined;
|
|
2576
|
+
label?: string | undefined;
|
|
2576
2577
|
}[] | undefined;
|
|
2577
2578
|
resolvesTo?: {
|
|
2579
|
+
key?: string | undefined;
|
|
2578
2580
|
sensitive?: boolean | undefined;
|
|
2579
2581
|
maskType?: string | undefined;
|
|
2580
|
-
key?: string | undefined;
|
|
2581
2582
|
storageClass?: string | undefined;
|
|
2582
2583
|
} | undefined;
|
|
2583
2584
|
visibleWhen?: {
|
|
@@ -2594,12 +2595,11 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
2594
2595
|
choicesSource?: {
|
|
2595
2596
|
params?: Record<string, any> | undefined;
|
|
2596
2597
|
type?: string | undefined;
|
|
2598
|
+
appId?: string | undefined;
|
|
2597
2599
|
functionName?: string | undefined;
|
|
2598
2600
|
triggerOnLoad?: boolean | undefined;
|
|
2599
2601
|
triggerFieldKeys?: string[] | undefined;
|
|
2600
|
-
appId?: string | undefined;
|
|
2601
2602
|
} | undefined;
|
|
2602
|
-
rows?: number | undefined;
|
|
2603
2603
|
min?: number | undefined;
|
|
2604
2604
|
max?: number | undefined;
|
|
2605
2605
|
step?: number | undefined;
|
|
@@ -4517,6 +4517,326 @@ export declare const PollingGetTargetChannelsOutputProtoSchema: z.ZodObject<{
|
|
|
4517
4517
|
hasNextPage?: boolean | undefined;
|
|
4518
4518
|
}>;
|
|
4519
4519
|
export type PollingGetTargetChannelsOutputProto = z.infer<typeof PollingGetTargetChannelsOutputProtoSchema>;
|
|
4520
|
+
export declare const MailRelayHeaderProtoSchema: z.ZodObject<{
|
|
4521
|
+
name: z.ZodOptional<z.ZodString>;
|
|
4522
|
+
value: z.ZodOptional<z.ZodString>;
|
|
4523
|
+
}, "strip", z.ZodTypeAny, {
|
|
4524
|
+
value?: string | undefined;
|
|
4525
|
+
name?: string | undefined;
|
|
4526
|
+
}, {
|
|
4527
|
+
value?: string | undefined;
|
|
4528
|
+
name?: string | undefined;
|
|
4529
|
+
}>;
|
|
4530
|
+
export type MailRelayHeaderProto = z.infer<typeof MailRelayHeaderProtoSchema>;
|
|
4531
|
+
export declare const MailRelayCommonHeadersProtoSchema: z.ZodObject<{
|
|
4532
|
+
from: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4533
|
+
to: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4534
|
+
cc: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4535
|
+
bcc: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4536
|
+
subject: z.ZodOptional<z.ZodString>;
|
|
4537
|
+
messageId: z.ZodOptional<z.ZodString>;
|
|
4538
|
+
date: z.ZodOptional<z.ZodString>;
|
|
4539
|
+
}, "strip", z.ZodTypeAny, {
|
|
4540
|
+
messageId?: string | undefined;
|
|
4541
|
+
date?: string | undefined;
|
|
4542
|
+
from?: string[] | undefined;
|
|
4543
|
+
to?: string[] | undefined;
|
|
4544
|
+
cc?: string[] | undefined;
|
|
4545
|
+
bcc?: string[] | undefined;
|
|
4546
|
+
subject?: string | undefined;
|
|
4547
|
+
}, {
|
|
4548
|
+
messageId?: string | undefined;
|
|
4549
|
+
date?: string | undefined;
|
|
4550
|
+
from?: string[] | undefined;
|
|
4551
|
+
to?: string[] | undefined;
|
|
4552
|
+
cc?: string[] | undefined;
|
|
4553
|
+
bcc?: string[] | undefined;
|
|
4554
|
+
subject?: string | undefined;
|
|
4555
|
+
}>;
|
|
4556
|
+
export type MailRelayCommonHeadersProto = z.infer<typeof MailRelayCommonHeadersProtoSchema>;
|
|
4557
|
+
export declare const MailRelayMailProtoSchema: z.ZodObject<{
|
|
4558
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4559
|
+
destination: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4560
|
+
messageId: z.ZodOptional<z.ZodString>;
|
|
4561
|
+
commonHeaders: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
4562
|
+
from: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4563
|
+
to: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4564
|
+
cc: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4565
|
+
bcc: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4566
|
+
subject: z.ZodOptional<z.ZodString>;
|
|
4567
|
+
messageId: z.ZodOptional<z.ZodString>;
|
|
4568
|
+
date: z.ZodOptional<z.ZodString>;
|
|
4569
|
+
}, "strip", z.ZodTypeAny, {
|
|
4570
|
+
messageId?: string | undefined;
|
|
4571
|
+
date?: string | undefined;
|
|
4572
|
+
from?: string[] | undefined;
|
|
4573
|
+
to?: string[] | undefined;
|
|
4574
|
+
cc?: string[] | undefined;
|
|
4575
|
+
bcc?: string[] | undefined;
|
|
4576
|
+
subject?: string | undefined;
|
|
4577
|
+
}, {
|
|
4578
|
+
messageId?: string | undefined;
|
|
4579
|
+
date?: string | undefined;
|
|
4580
|
+
from?: string[] | undefined;
|
|
4581
|
+
to?: string[] | undefined;
|
|
4582
|
+
cc?: string[] | undefined;
|
|
4583
|
+
bcc?: string[] | undefined;
|
|
4584
|
+
subject?: string | undefined;
|
|
4585
|
+
}>>>;
|
|
4586
|
+
headers: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
4587
|
+
name: z.ZodOptional<z.ZodString>;
|
|
4588
|
+
value: z.ZodOptional<z.ZodString>;
|
|
4589
|
+
}, "strip", z.ZodTypeAny, {
|
|
4590
|
+
value?: string | undefined;
|
|
4591
|
+
name?: string | undefined;
|
|
4592
|
+
}, {
|
|
4593
|
+
value?: string | undefined;
|
|
4594
|
+
name?: string | undefined;
|
|
4595
|
+
}>>, "many">>;
|
|
4596
|
+
}, "strip", z.ZodTypeAny, {
|
|
4597
|
+
messageId?: string | undefined;
|
|
4598
|
+
source?: string | undefined;
|
|
4599
|
+
destination?: string[] | undefined;
|
|
4600
|
+
commonHeaders?: {
|
|
4601
|
+
messageId?: string | undefined;
|
|
4602
|
+
date?: string | undefined;
|
|
4603
|
+
from?: string[] | undefined;
|
|
4604
|
+
to?: string[] | undefined;
|
|
4605
|
+
cc?: string[] | undefined;
|
|
4606
|
+
bcc?: string[] | undefined;
|
|
4607
|
+
subject?: string | undefined;
|
|
4608
|
+
} | undefined;
|
|
4609
|
+
headers?: {
|
|
4610
|
+
value?: string | undefined;
|
|
4611
|
+
name?: string | undefined;
|
|
4612
|
+
}[] | undefined;
|
|
4613
|
+
}, {
|
|
4614
|
+
messageId?: string | undefined;
|
|
4615
|
+
source?: string | undefined;
|
|
4616
|
+
destination?: string[] | undefined;
|
|
4617
|
+
commonHeaders?: {
|
|
4618
|
+
messageId?: string | undefined;
|
|
4619
|
+
date?: string | undefined;
|
|
4620
|
+
from?: string[] | undefined;
|
|
4621
|
+
to?: string[] | undefined;
|
|
4622
|
+
cc?: string[] | undefined;
|
|
4623
|
+
bcc?: string[] | undefined;
|
|
4624
|
+
subject?: string | undefined;
|
|
4625
|
+
} | undefined;
|
|
4626
|
+
headers?: {
|
|
4627
|
+
value?: string | undefined;
|
|
4628
|
+
name?: string | undefined;
|
|
4629
|
+
}[] | undefined;
|
|
4630
|
+
}>;
|
|
4631
|
+
export type MailRelayMailProto = z.infer<typeof MailRelayMailProtoSchema>;
|
|
4632
|
+
export declare const MailRelayReceiptProtoSchema: z.ZodObject<{
|
|
4633
|
+
timestamp: z.ZodOptional<z.ZodString>;
|
|
4634
|
+
spamVerdict: z.ZodOptional<z.ZodString>;
|
|
4635
|
+
virusVerdict: z.ZodOptional<z.ZodString>;
|
|
4636
|
+
spfVerdict: z.ZodOptional<z.ZodString>;
|
|
4637
|
+
dkimVerdict: z.ZodOptional<z.ZodString>;
|
|
4638
|
+
dmarcVerdict: z.ZodOptional<z.ZodString>;
|
|
4639
|
+
}, "strip", z.ZodTypeAny, {
|
|
4640
|
+
timestamp?: string | undefined;
|
|
4641
|
+
spamVerdict?: string | undefined;
|
|
4642
|
+
virusVerdict?: string | undefined;
|
|
4643
|
+
spfVerdict?: string | undefined;
|
|
4644
|
+
dkimVerdict?: string | undefined;
|
|
4645
|
+
dmarcVerdict?: string | undefined;
|
|
4646
|
+
}, {
|
|
4647
|
+
timestamp?: string | undefined;
|
|
4648
|
+
spamVerdict?: string | undefined;
|
|
4649
|
+
virusVerdict?: string | undefined;
|
|
4650
|
+
spfVerdict?: string | undefined;
|
|
4651
|
+
dkimVerdict?: string | undefined;
|
|
4652
|
+
dmarcVerdict?: string | undefined;
|
|
4653
|
+
}>;
|
|
4654
|
+
export type MailRelayReceiptProto = z.infer<typeof MailRelayReceiptProtoSchema>;
|
|
4655
|
+
export declare const MailRelayInboundInputProtoSchema: z.ZodObject<{
|
|
4656
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
4657
|
+
recipient: z.ZodOptional<z.ZodString>;
|
|
4658
|
+
recipients: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4659
|
+
sesMessageId: z.ZodOptional<z.ZodString>;
|
|
4660
|
+
bucketName: z.ZodOptional<z.ZodString>;
|
|
4661
|
+
objectKey: z.ZodOptional<z.ZodString>;
|
|
4662
|
+
mail: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
4663
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4664
|
+
destination: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4665
|
+
messageId: z.ZodOptional<z.ZodString>;
|
|
4666
|
+
commonHeaders: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
4667
|
+
from: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4668
|
+
to: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4669
|
+
cc: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4670
|
+
bcc: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4671
|
+
subject: z.ZodOptional<z.ZodString>;
|
|
4672
|
+
messageId: z.ZodOptional<z.ZodString>;
|
|
4673
|
+
date: z.ZodOptional<z.ZodString>;
|
|
4674
|
+
}, "strip", z.ZodTypeAny, {
|
|
4675
|
+
messageId?: string | undefined;
|
|
4676
|
+
date?: string | undefined;
|
|
4677
|
+
from?: string[] | undefined;
|
|
4678
|
+
to?: string[] | undefined;
|
|
4679
|
+
cc?: string[] | undefined;
|
|
4680
|
+
bcc?: string[] | undefined;
|
|
4681
|
+
subject?: string | undefined;
|
|
4682
|
+
}, {
|
|
4683
|
+
messageId?: string | undefined;
|
|
4684
|
+
date?: string | undefined;
|
|
4685
|
+
from?: string[] | undefined;
|
|
4686
|
+
to?: string[] | undefined;
|
|
4687
|
+
cc?: string[] | undefined;
|
|
4688
|
+
bcc?: string[] | undefined;
|
|
4689
|
+
subject?: string | undefined;
|
|
4690
|
+
}>>>;
|
|
4691
|
+
headers: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
4692
|
+
name: z.ZodOptional<z.ZodString>;
|
|
4693
|
+
value: z.ZodOptional<z.ZodString>;
|
|
4694
|
+
}, "strip", z.ZodTypeAny, {
|
|
4695
|
+
value?: string | undefined;
|
|
4696
|
+
name?: string | undefined;
|
|
4697
|
+
}, {
|
|
4698
|
+
value?: string | undefined;
|
|
4699
|
+
name?: string | undefined;
|
|
4700
|
+
}>>, "many">>;
|
|
4701
|
+
}, "strip", z.ZodTypeAny, {
|
|
4702
|
+
messageId?: string | undefined;
|
|
4703
|
+
source?: string | undefined;
|
|
4704
|
+
destination?: string[] | undefined;
|
|
4705
|
+
commonHeaders?: {
|
|
4706
|
+
messageId?: string | undefined;
|
|
4707
|
+
date?: string | undefined;
|
|
4708
|
+
from?: string[] | undefined;
|
|
4709
|
+
to?: string[] | undefined;
|
|
4710
|
+
cc?: string[] | undefined;
|
|
4711
|
+
bcc?: string[] | undefined;
|
|
4712
|
+
subject?: string | undefined;
|
|
4713
|
+
} | undefined;
|
|
4714
|
+
headers?: {
|
|
4715
|
+
value?: string | undefined;
|
|
4716
|
+
name?: string | undefined;
|
|
4717
|
+
}[] | undefined;
|
|
4718
|
+
}, {
|
|
4719
|
+
messageId?: string | undefined;
|
|
4720
|
+
source?: string | undefined;
|
|
4721
|
+
destination?: string[] | undefined;
|
|
4722
|
+
commonHeaders?: {
|
|
4723
|
+
messageId?: string | undefined;
|
|
4724
|
+
date?: string | undefined;
|
|
4725
|
+
from?: string[] | undefined;
|
|
4726
|
+
to?: string[] | undefined;
|
|
4727
|
+
cc?: string[] | undefined;
|
|
4728
|
+
bcc?: string[] | undefined;
|
|
4729
|
+
subject?: string | undefined;
|
|
4730
|
+
} | undefined;
|
|
4731
|
+
headers?: {
|
|
4732
|
+
value?: string | undefined;
|
|
4733
|
+
name?: string | undefined;
|
|
4734
|
+
}[] | undefined;
|
|
4735
|
+
}>>>;
|
|
4736
|
+
receipt: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
4737
|
+
timestamp: z.ZodOptional<z.ZodString>;
|
|
4738
|
+
spamVerdict: z.ZodOptional<z.ZodString>;
|
|
4739
|
+
virusVerdict: z.ZodOptional<z.ZodString>;
|
|
4740
|
+
spfVerdict: z.ZodOptional<z.ZodString>;
|
|
4741
|
+
dkimVerdict: z.ZodOptional<z.ZodString>;
|
|
4742
|
+
dmarcVerdict: z.ZodOptional<z.ZodString>;
|
|
4743
|
+
}, "strip", z.ZodTypeAny, {
|
|
4744
|
+
timestamp?: string | undefined;
|
|
4745
|
+
spamVerdict?: string | undefined;
|
|
4746
|
+
virusVerdict?: string | undefined;
|
|
4747
|
+
spfVerdict?: string | undefined;
|
|
4748
|
+
dkimVerdict?: string | undefined;
|
|
4749
|
+
dmarcVerdict?: string | undefined;
|
|
4750
|
+
}, {
|
|
4751
|
+
timestamp?: string | undefined;
|
|
4752
|
+
spamVerdict?: string | undefined;
|
|
4753
|
+
virusVerdict?: string | undefined;
|
|
4754
|
+
spfVerdict?: string | undefined;
|
|
4755
|
+
dkimVerdict?: string | undefined;
|
|
4756
|
+
dmarcVerdict?: string | undefined;
|
|
4757
|
+
}>>>;
|
|
4758
|
+
}, "strip", z.ZodTypeAny, {
|
|
4759
|
+
recipient?: string | undefined;
|
|
4760
|
+
slug?: string | undefined;
|
|
4761
|
+
recipients?: string[] | undefined;
|
|
4762
|
+
sesMessageId?: string | undefined;
|
|
4763
|
+
bucketName?: string | undefined;
|
|
4764
|
+
objectKey?: string | undefined;
|
|
4765
|
+
mail?: {
|
|
4766
|
+
messageId?: string | undefined;
|
|
4767
|
+
source?: string | undefined;
|
|
4768
|
+
destination?: string[] | undefined;
|
|
4769
|
+
commonHeaders?: {
|
|
4770
|
+
messageId?: string | undefined;
|
|
4771
|
+
date?: string | undefined;
|
|
4772
|
+
from?: string[] | undefined;
|
|
4773
|
+
to?: string[] | undefined;
|
|
4774
|
+
cc?: string[] | undefined;
|
|
4775
|
+
bcc?: string[] | undefined;
|
|
4776
|
+
subject?: string | undefined;
|
|
4777
|
+
} | undefined;
|
|
4778
|
+
headers?: {
|
|
4779
|
+
value?: string | undefined;
|
|
4780
|
+
name?: string | undefined;
|
|
4781
|
+
}[] | undefined;
|
|
4782
|
+
} | undefined;
|
|
4783
|
+
receipt?: {
|
|
4784
|
+
timestamp?: string | undefined;
|
|
4785
|
+
spamVerdict?: string | undefined;
|
|
4786
|
+
virusVerdict?: string | undefined;
|
|
4787
|
+
spfVerdict?: string | undefined;
|
|
4788
|
+
dkimVerdict?: string | undefined;
|
|
4789
|
+
dmarcVerdict?: string | undefined;
|
|
4790
|
+
} | undefined;
|
|
4791
|
+
}, {
|
|
4792
|
+
recipient?: string | undefined;
|
|
4793
|
+
slug?: string | undefined;
|
|
4794
|
+
recipients?: string[] | undefined;
|
|
4795
|
+
sesMessageId?: string | undefined;
|
|
4796
|
+
bucketName?: string | undefined;
|
|
4797
|
+
objectKey?: string | undefined;
|
|
4798
|
+
mail?: {
|
|
4799
|
+
messageId?: string | undefined;
|
|
4800
|
+
source?: string | undefined;
|
|
4801
|
+
destination?: string[] | undefined;
|
|
4802
|
+
commonHeaders?: {
|
|
4803
|
+
messageId?: string | undefined;
|
|
4804
|
+
date?: string | undefined;
|
|
4805
|
+
from?: string[] | undefined;
|
|
4806
|
+
to?: string[] | undefined;
|
|
4807
|
+
cc?: string[] | undefined;
|
|
4808
|
+
bcc?: string[] | undefined;
|
|
4809
|
+
subject?: string | undefined;
|
|
4810
|
+
} | undefined;
|
|
4811
|
+
headers?: {
|
|
4812
|
+
value?: string | undefined;
|
|
4813
|
+
name?: string | undefined;
|
|
4814
|
+
}[] | undefined;
|
|
4815
|
+
} | undefined;
|
|
4816
|
+
receipt?: {
|
|
4817
|
+
timestamp?: string | undefined;
|
|
4818
|
+
spamVerdict?: string | undefined;
|
|
4819
|
+
virusVerdict?: string | undefined;
|
|
4820
|
+
spfVerdict?: string | undefined;
|
|
4821
|
+
dkimVerdict?: string | undefined;
|
|
4822
|
+
dmarcVerdict?: string | undefined;
|
|
4823
|
+
} | undefined;
|
|
4824
|
+
}>;
|
|
4825
|
+
export type MailRelayInboundInputProto = z.infer<typeof MailRelayInboundInputProtoSchema>;
|
|
4826
|
+
export declare const MailRelayInboundOutputProtoSchema: z.ZodObject<{
|
|
4827
|
+
status: z.ZodOptional<z.ZodString>;
|
|
4828
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
4829
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
4830
|
+
}, "strip", z.ZodTypeAny, {
|
|
4831
|
+
status?: string | undefined;
|
|
4832
|
+
idempotencyKey?: string | undefined;
|
|
4833
|
+
reason?: string | undefined;
|
|
4834
|
+
}, {
|
|
4835
|
+
status?: string | undefined;
|
|
4836
|
+
idempotencyKey?: string | undefined;
|
|
4837
|
+
reason?: string | undefined;
|
|
4838
|
+
}>;
|
|
4839
|
+
export type MailRelayInboundOutputProto = z.infer<typeof MailRelayInboundOutputProtoSchema>;
|
|
4520
4840
|
export declare const StoreMediaProtoSchema: z.ZodObject<{
|
|
4521
4841
|
type: z.ZodOptional<z.ZodString>;
|
|
4522
4842
|
url: z.ZodOptional<z.ZodString>;
|
|
@@ -4540,12 +4860,12 @@ export declare const StoreTargetUserProtoSchema: z.ZodObject<{
|
|
|
4540
4860
|
description: z.ZodOptional<z.ZodString>;
|
|
4541
4861
|
}, "strip", z.ZodTypeAny, {
|
|
4542
4862
|
description?: string | undefined;
|
|
4543
|
-
label?: string | undefined;
|
|
4544
4863
|
key?: string | undefined;
|
|
4864
|
+
label?: string | undefined;
|
|
4545
4865
|
}, {
|
|
4546
4866
|
description?: string | undefined;
|
|
4547
|
-
label?: string | undefined;
|
|
4548
4867
|
key?: string | undefined;
|
|
4868
|
+
label?: string | undefined;
|
|
4549
4869
|
}>;
|
|
4550
4870
|
export type StoreTargetUserProto = z.infer<typeof StoreTargetUserProtoSchema>;
|
|
4551
4871
|
export declare const StoreUseCaseProtoSchema: z.ZodObject<{
|
|
@@ -4574,12 +4894,12 @@ export declare const StoreCapabilityProtoSchema: z.ZodObject<{
|
|
|
4574
4894
|
description: z.ZodOptional<z.ZodString>;
|
|
4575
4895
|
}, "strip", z.ZodTypeAny, {
|
|
4576
4896
|
description?: string | undefined;
|
|
4577
|
-
label?: string | undefined;
|
|
4578
4897
|
key?: string | undefined;
|
|
4898
|
+
label?: string | undefined;
|
|
4579
4899
|
}, {
|
|
4580
4900
|
description?: string | undefined;
|
|
4581
|
-
label?: string | undefined;
|
|
4582
4901
|
key?: string | undefined;
|
|
4902
|
+
label?: string | undefined;
|
|
4583
4903
|
}>;
|
|
4584
4904
|
export type StoreCapabilityProto = z.infer<typeof StoreCapabilityProtoSchema>;
|
|
4585
4905
|
export declare const StoreSurfaceProtoSchema: z.ZodObject<{
|
|
@@ -4588,12 +4908,12 @@ export declare const StoreSurfaceProtoSchema: z.ZodObject<{
|
|
|
4588
4908
|
description: z.ZodOptional<z.ZodString>;
|
|
4589
4909
|
}, "strip", z.ZodTypeAny, {
|
|
4590
4910
|
description?: string | undefined;
|
|
4591
|
-
label?: string | undefined;
|
|
4592
4911
|
key?: string | undefined;
|
|
4912
|
+
label?: string | undefined;
|
|
4593
4913
|
}, {
|
|
4594
4914
|
description?: string | undefined;
|
|
4595
|
-
label?: string | undefined;
|
|
4596
4915
|
key?: string | undefined;
|
|
4916
|
+
label?: string | undefined;
|
|
4597
4917
|
}>;
|
|
4598
4918
|
export type StoreSurfaceProto = z.infer<typeof StoreSurfaceProtoSchema>;
|
|
4599
4919
|
export declare const StoreRelationshipProtoSchema: z.ZodObject<{
|
|
@@ -4604,13 +4924,13 @@ export declare const StoreRelationshipProtoSchema: z.ZodObject<{
|
|
|
4604
4924
|
}, "strip", z.ZodTypeAny, {
|
|
4605
4925
|
type?: string | undefined;
|
|
4606
4926
|
description?: string | undefined;
|
|
4607
|
-
label?: string | undefined;
|
|
4608
4927
|
appId?: string | undefined;
|
|
4928
|
+
label?: string | undefined;
|
|
4609
4929
|
}, {
|
|
4610
4930
|
type?: string | undefined;
|
|
4611
4931
|
description?: string | undefined;
|
|
4612
|
-
label?: string | undefined;
|
|
4613
4932
|
appId?: string | undefined;
|
|
4933
|
+
label?: string | undefined;
|
|
4614
4934
|
}>;
|
|
4615
4935
|
export type StoreRelationshipProto = z.infer<typeof StoreRelationshipProtoSchema>;
|
|
4616
4936
|
export declare const StoreSetupStepProtoSchema: z.ZodObject<{
|
|
@@ -4638,14 +4958,14 @@ export declare const StoreSetupFieldProtoSchema: z.ZodObject<{
|
|
|
4638
4958
|
helpUrl: z.ZodOptional<z.ZodString>;
|
|
4639
4959
|
}, "strip", z.ZodTypeAny, {
|
|
4640
4960
|
description?: string | undefined;
|
|
4641
|
-
label?: string | undefined;
|
|
4642
4961
|
key?: string | undefined;
|
|
4962
|
+
label?: string | undefined;
|
|
4643
4963
|
example?: string | undefined;
|
|
4644
4964
|
helpUrl?: string | undefined;
|
|
4645
4965
|
}, {
|
|
4646
4966
|
description?: string | undefined;
|
|
4647
|
-
label?: string | undefined;
|
|
4648
4967
|
key?: string | undefined;
|
|
4968
|
+
label?: string | undefined;
|
|
4649
4969
|
example?: string | undefined;
|
|
4650
4970
|
helpUrl?: string | undefined;
|
|
4651
4971
|
}>;
|
|
@@ -4675,14 +4995,14 @@ export declare const StoreSetupOverviewProtoSchema: z.ZodObject<{
|
|
|
4675
4995
|
helpUrl: z.ZodOptional<z.ZodString>;
|
|
4676
4996
|
}, "strip", z.ZodTypeAny, {
|
|
4677
4997
|
description?: string | undefined;
|
|
4678
|
-
label?: string | undefined;
|
|
4679
4998
|
key?: string | undefined;
|
|
4999
|
+
label?: string | undefined;
|
|
4680
5000
|
example?: string | undefined;
|
|
4681
5001
|
helpUrl?: string | undefined;
|
|
4682
5002
|
}, {
|
|
4683
5003
|
description?: string | undefined;
|
|
4684
|
-
label?: string | undefined;
|
|
4685
5004
|
key?: string | undefined;
|
|
5005
|
+
label?: string | undefined;
|
|
4686
5006
|
example?: string | undefined;
|
|
4687
5007
|
helpUrl?: string | undefined;
|
|
4688
5008
|
}>>, "many">>;
|
|
@@ -4690,8 +5010,8 @@ export declare const StoreSetupOverviewProtoSchema: z.ZodObject<{
|
|
|
4690
5010
|
}, "strip", z.ZodTypeAny, {
|
|
4691
5011
|
fields?: {
|
|
4692
5012
|
description?: string | undefined;
|
|
4693
|
-
label?: string | undefined;
|
|
4694
5013
|
key?: string | undefined;
|
|
5014
|
+
label?: string | undefined;
|
|
4695
5015
|
example?: string | undefined;
|
|
4696
5016
|
helpUrl?: string | undefined;
|
|
4697
5017
|
}[] | undefined;
|
|
@@ -4705,8 +5025,8 @@ export declare const StoreSetupOverviewProtoSchema: z.ZodObject<{
|
|
|
4705
5025
|
}, {
|
|
4706
5026
|
fields?: {
|
|
4707
5027
|
description?: string | undefined;
|
|
4708
|
-
label?: string | undefined;
|
|
4709
5028
|
key?: string | undefined;
|
|
5029
|
+
label?: string | undefined;
|
|
4710
5030
|
example?: string | undefined;
|
|
4711
5031
|
helpUrl?: string | undefined;
|
|
4712
5032
|
}[] | undefined;
|
|
@@ -4770,12 +5090,12 @@ export declare const StoreProfileI18nProtoSchema: z.ZodObject<{
|
|
|
4770
5090
|
description: z.ZodOptional<z.ZodString>;
|
|
4771
5091
|
}, "strip", z.ZodTypeAny, {
|
|
4772
5092
|
description?: string | undefined;
|
|
4773
|
-
label?: string | undefined;
|
|
4774
5093
|
key?: string | undefined;
|
|
5094
|
+
label?: string | undefined;
|
|
4775
5095
|
}, {
|
|
4776
5096
|
description?: string | undefined;
|
|
4777
|
-
label?: string | undefined;
|
|
4778
5097
|
key?: string | undefined;
|
|
5098
|
+
label?: string | undefined;
|
|
4779
5099
|
}>>, "many">>;
|
|
4780
5100
|
primaryUseCases: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
4781
5101
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -4841,8 +5161,8 @@ export declare const StoreProfileI18nProtoSchema: z.ZodObject<{
|
|
|
4841
5161
|
headline?: string | undefined;
|
|
4842
5162
|
targetUsers?: {
|
|
4843
5163
|
description?: string | undefined;
|
|
4844
|
-
label?: string | undefined;
|
|
4845
5164
|
key?: string | undefined;
|
|
5165
|
+
label?: string | undefined;
|
|
4846
5166
|
}[] | undefined;
|
|
4847
5167
|
primaryUseCases?: {
|
|
4848
5168
|
description?: string | undefined;
|
|
@@ -4872,8 +5192,8 @@ export declare const StoreProfileI18nProtoSchema: z.ZodObject<{
|
|
|
4872
5192
|
headline?: string | undefined;
|
|
4873
5193
|
targetUsers?: {
|
|
4874
5194
|
description?: string | undefined;
|
|
4875
|
-
label?: string | undefined;
|
|
4876
5195
|
key?: string | undefined;
|
|
5196
|
+
label?: string | undefined;
|
|
4877
5197
|
}[] | undefined;
|
|
4878
5198
|
primaryUseCases?: {
|
|
4879
5199
|
description?: string | undefined;
|
|
@@ -4912,12 +5232,12 @@ export declare const StoreProfileProtoSchema: z.ZodObject<{
|
|
|
4912
5232
|
description: z.ZodOptional<z.ZodString>;
|
|
4913
5233
|
}, "strip", z.ZodTypeAny, {
|
|
4914
5234
|
description?: string | undefined;
|
|
4915
|
-
label?: string | undefined;
|
|
4916
5235
|
key?: string | undefined;
|
|
5236
|
+
label?: string | undefined;
|
|
4917
5237
|
}, {
|
|
4918
5238
|
description?: string | undefined;
|
|
4919
|
-
label?: string | undefined;
|
|
4920
5239
|
key?: string | undefined;
|
|
5240
|
+
label?: string | undefined;
|
|
4921
5241
|
}>>, "many">>;
|
|
4922
5242
|
primaryUseCases: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
4923
5243
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -4960,12 +5280,12 @@ export declare const StoreProfileProtoSchema: z.ZodObject<{
|
|
|
4960
5280
|
description: z.ZodOptional<z.ZodString>;
|
|
4961
5281
|
}, "strip", z.ZodTypeAny, {
|
|
4962
5282
|
description?: string | undefined;
|
|
4963
|
-
label?: string | undefined;
|
|
4964
5283
|
key?: string | undefined;
|
|
5284
|
+
label?: string | undefined;
|
|
4965
5285
|
}, {
|
|
4966
5286
|
description?: string | undefined;
|
|
4967
|
-
label?: string | undefined;
|
|
4968
5287
|
key?: string | undefined;
|
|
5288
|
+
label?: string | undefined;
|
|
4969
5289
|
}>>, "many">>;
|
|
4970
5290
|
surfaces: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
4971
5291
|
key: z.ZodOptional<z.ZodString>;
|
|
@@ -4973,12 +5293,12 @@ export declare const StoreProfileProtoSchema: z.ZodObject<{
|
|
|
4973
5293
|
description: z.ZodOptional<z.ZodString>;
|
|
4974
5294
|
}, "strip", z.ZodTypeAny, {
|
|
4975
5295
|
description?: string | undefined;
|
|
4976
|
-
label?: string | undefined;
|
|
4977
5296
|
key?: string | undefined;
|
|
5297
|
+
label?: string | undefined;
|
|
4978
5298
|
}, {
|
|
4979
5299
|
description?: string | undefined;
|
|
4980
|
-
label?: string | undefined;
|
|
4981
5300
|
key?: string | undefined;
|
|
5301
|
+
label?: string | undefined;
|
|
4982
5302
|
}>>, "many">>;
|
|
4983
5303
|
relationships: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
4984
5304
|
type: z.ZodOptional<z.ZodString>;
|
|
@@ -4988,13 +5308,13 @@ export declare const StoreProfileProtoSchema: z.ZodObject<{
|
|
|
4988
5308
|
}, "strip", z.ZodTypeAny, {
|
|
4989
5309
|
type?: string | undefined;
|
|
4990
5310
|
description?: string | undefined;
|
|
4991
|
-
label?: string | undefined;
|
|
4992
5311
|
appId?: string | undefined;
|
|
5312
|
+
label?: string | undefined;
|
|
4993
5313
|
}, {
|
|
4994
5314
|
type?: string | undefined;
|
|
4995
5315
|
description?: string | undefined;
|
|
4996
|
-
label?: string | undefined;
|
|
4997
5316
|
appId?: string | undefined;
|
|
5317
|
+
label?: string | undefined;
|
|
4998
5318
|
}>>, "many">>;
|
|
4999
5319
|
setupOverview: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
5000
5320
|
steps: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
@@ -5021,14 +5341,14 @@ export declare const StoreProfileProtoSchema: z.ZodObject<{
|
|
|
5021
5341
|
helpUrl: z.ZodOptional<z.ZodString>;
|
|
5022
5342
|
}, "strip", z.ZodTypeAny, {
|
|
5023
5343
|
description?: string | undefined;
|
|
5024
|
-
label?: string | undefined;
|
|
5025
5344
|
key?: string | undefined;
|
|
5345
|
+
label?: string | undefined;
|
|
5026
5346
|
example?: string | undefined;
|
|
5027
5347
|
helpUrl?: string | undefined;
|
|
5028
5348
|
}, {
|
|
5029
5349
|
description?: string | undefined;
|
|
5030
|
-
label?: string | undefined;
|
|
5031
5350
|
key?: string | undefined;
|
|
5351
|
+
label?: string | undefined;
|
|
5032
5352
|
example?: string | undefined;
|
|
5033
5353
|
helpUrl?: string | undefined;
|
|
5034
5354
|
}>>, "many">>;
|
|
@@ -5036,8 +5356,8 @@ export declare const StoreProfileProtoSchema: z.ZodObject<{
|
|
|
5036
5356
|
}, "strip", z.ZodTypeAny, {
|
|
5037
5357
|
fields?: {
|
|
5038
5358
|
description?: string | undefined;
|
|
5039
|
-
label?: string | undefined;
|
|
5040
5359
|
key?: string | undefined;
|
|
5360
|
+
label?: string | undefined;
|
|
5041
5361
|
example?: string | undefined;
|
|
5042
5362
|
helpUrl?: string | undefined;
|
|
5043
5363
|
}[] | undefined;
|
|
@@ -5051,8 +5371,8 @@ export declare const StoreProfileProtoSchema: z.ZodObject<{
|
|
|
5051
5371
|
}, {
|
|
5052
5372
|
fields?: {
|
|
5053
5373
|
description?: string | undefined;
|
|
5054
|
-
label?: string | undefined;
|
|
5055
5374
|
key?: string | undefined;
|
|
5375
|
+
label?: string | undefined;
|
|
5056
5376
|
example?: string | undefined;
|
|
5057
5377
|
helpUrl?: string | undefined;
|
|
5058
5378
|
}[] | undefined;
|
|
@@ -5114,12 +5434,12 @@ export declare const StoreProfileProtoSchema: z.ZodObject<{
|
|
|
5114
5434
|
description: z.ZodOptional<z.ZodString>;
|
|
5115
5435
|
}, "strip", z.ZodTypeAny, {
|
|
5116
5436
|
description?: string | undefined;
|
|
5117
|
-
label?: string | undefined;
|
|
5118
5437
|
key?: string | undefined;
|
|
5438
|
+
label?: string | undefined;
|
|
5119
5439
|
}, {
|
|
5120
5440
|
description?: string | undefined;
|
|
5121
|
-
label?: string | undefined;
|
|
5122
5441
|
key?: string | undefined;
|
|
5442
|
+
label?: string | undefined;
|
|
5123
5443
|
}>>, "many">>;
|
|
5124
5444
|
primaryUseCases: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
5125
5445
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -5185,8 +5505,8 @@ export declare const StoreProfileProtoSchema: z.ZodObject<{
|
|
|
5185
5505
|
headline?: string | undefined;
|
|
5186
5506
|
targetUsers?: {
|
|
5187
5507
|
description?: string | undefined;
|
|
5188
|
-
label?: string | undefined;
|
|
5189
5508
|
key?: string | undefined;
|
|
5509
|
+
label?: string | undefined;
|
|
5190
5510
|
}[] | undefined;
|
|
5191
5511
|
primaryUseCases?: {
|
|
5192
5512
|
description?: string | undefined;
|
|
@@ -5216,8 +5536,8 @@ export declare const StoreProfileProtoSchema: z.ZodObject<{
|
|
|
5216
5536
|
headline?: string | undefined;
|
|
5217
5537
|
targetUsers?: {
|
|
5218
5538
|
description?: string | undefined;
|
|
5219
|
-
label?: string | undefined;
|
|
5220
5539
|
key?: string | undefined;
|
|
5540
|
+
label?: string | undefined;
|
|
5221
5541
|
}[] | undefined;
|
|
5222
5542
|
primaryUseCases?: {
|
|
5223
5543
|
description?: string | undefined;
|
|
@@ -5255,8 +5575,8 @@ export declare const StoreProfileProtoSchema: z.ZodObject<{
|
|
|
5255
5575
|
headline?: string | undefined;
|
|
5256
5576
|
targetUsers?: {
|
|
5257
5577
|
description?: string | undefined;
|
|
5258
|
-
label?: string | undefined;
|
|
5259
5578
|
key?: string | undefined;
|
|
5579
|
+
label?: string | undefined;
|
|
5260
5580
|
}[] | undefined;
|
|
5261
5581
|
primaryUseCases?: {
|
|
5262
5582
|
description?: string | undefined;
|
|
@@ -5285,25 +5605,25 @@ export declare const StoreProfileProtoSchema: z.ZodObject<{
|
|
|
5285
5605
|
primaryScreenshotUrl?: string | undefined;
|
|
5286
5606
|
capabilities?: {
|
|
5287
5607
|
description?: string | undefined;
|
|
5288
|
-
label?: string | undefined;
|
|
5289
5608
|
key?: string | undefined;
|
|
5609
|
+
label?: string | undefined;
|
|
5290
5610
|
}[] | undefined;
|
|
5291
5611
|
surfaces?: {
|
|
5292
5612
|
description?: string | undefined;
|
|
5293
|
-
label?: string | undefined;
|
|
5294
5613
|
key?: string | undefined;
|
|
5614
|
+
label?: string | undefined;
|
|
5295
5615
|
}[] | undefined;
|
|
5296
5616
|
relationships?: {
|
|
5297
5617
|
type?: string | undefined;
|
|
5298
5618
|
description?: string | undefined;
|
|
5299
|
-
label?: string | undefined;
|
|
5300
5619
|
appId?: string | undefined;
|
|
5620
|
+
label?: string | undefined;
|
|
5301
5621
|
}[] | undefined;
|
|
5302
5622
|
setupOverview?: {
|
|
5303
5623
|
fields?: {
|
|
5304
5624
|
description?: string | undefined;
|
|
5305
|
-
label?: string | undefined;
|
|
5306
5625
|
key?: string | undefined;
|
|
5626
|
+
label?: string | undefined;
|
|
5307
5627
|
example?: string | undefined;
|
|
5308
5628
|
helpUrl?: string | undefined;
|
|
5309
5629
|
}[] | undefined;
|
|
@@ -5321,8 +5641,8 @@ export declare const StoreProfileProtoSchema: z.ZodObject<{
|
|
|
5321
5641
|
headline?: string | undefined;
|
|
5322
5642
|
targetUsers?: {
|
|
5323
5643
|
description?: string | undefined;
|
|
5324
|
-
label?: string | undefined;
|
|
5325
5644
|
key?: string | undefined;
|
|
5645
|
+
label?: string | undefined;
|
|
5326
5646
|
}[] | undefined;
|
|
5327
5647
|
primaryUseCases?: {
|
|
5328
5648
|
description?: string | undefined;
|
|
@@ -5360,8 +5680,8 @@ export declare const StoreProfileProtoSchema: z.ZodObject<{
|
|
|
5360
5680
|
headline?: string | undefined;
|
|
5361
5681
|
targetUsers?: {
|
|
5362
5682
|
description?: string | undefined;
|
|
5363
|
-
label?: string | undefined;
|
|
5364
5683
|
key?: string | undefined;
|
|
5684
|
+
label?: string | undefined;
|
|
5365
5685
|
}[] | undefined;
|
|
5366
5686
|
primaryUseCases?: {
|
|
5367
5687
|
description?: string | undefined;
|
|
@@ -5390,25 +5710,25 @@ export declare const StoreProfileProtoSchema: z.ZodObject<{
|
|
|
5390
5710
|
primaryScreenshotUrl?: string | undefined;
|
|
5391
5711
|
capabilities?: {
|
|
5392
5712
|
description?: string | undefined;
|
|
5393
|
-
label?: string | undefined;
|
|
5394
5713
|
key?: string | undefined;
|
|
5714
|
+
label?: string | undefined;
|
|
5395
5715
|
}[] | undefined;
|
|
5396
5716
|
surfaces?: {
|
|
5397
5717
|
description?: string | undefined;
|
|
5398
|
-
label?: string | undefined;
|
|
5399
5718
|
key?: string | undefined;
|
|
5719
|
+
label?: string | undefined;
|
|
5400
5720
|
}[] | undefined;
|
|
5401
5721
|
relationships?: {
|
|
5402
5722
|
type?: string | undefined;
|
|
5403
5723
|
description?: string | undefined;
|
|
5404
|
-
label?: string | undefined;
|
|
5405
5724
|
appId?: string | undefined;
|
|
5725
|
+
label?: string | undefined;
|
|
5406
5726
|
}[] | undefined;
|
|
5407
5727
|
setupOverview?: {
|
|
5408
5728
|
fields?: {
|
|
5409
5729
|
description?: string | undefined;
|
|
5410
|
-
label?: string | undefined;
|
|
5411
5730
|
key?: string | undefined;
|
|
5731
|
+
label?: string | undefined;
|
|
5412
5732
|
example?: string | undefined;
|
|
5413
5733
|
helpUrl?: string | undefined;
|
|
5414
5734
|
}[] | undefined;
|
|
@@ -5426,8 +5746,8 @@ export declare const StoreProfileProtoSchema: z.ZodObject<{
|
|
|
5426
5746
|
headline?: string | undefined;
|
|
5427
5747
|
targetUsers?: {
|
|
5428
5748
|
description?: string | undefined;
|
|
5429
|
-
label?: string | undefined;
|
|
5430
5749
|
key?: string | undefined;
|
|
5750
|
+
label?: string | undefined;
|
|
5431
5751
|
}[] | undefined;
|
|
5432
5752
|
primaryUseCases?: {
|
|
5433
5753
|
description?: string | undefined;
|
|
@@ -5470,12 +5790,12 @@ export declare const StoreGetProfileOutputProtoSchema: z.ZodObject<{
|
|
|
5470
5790
|
description: z.ZodOptional<z.ZodString>;
|
|
5471
5791
|
}, "strip", z.ZodTypeAny, {
|
|
5472
5792
|
description?: string | undefined;
|
|
5473
|
-
label?: string | undefined;
|
|
5474
5793
|
key?: string | undefined;
|
|
5794
|
+
label?: string | undefined;
|
|
5475
5795
|
}, {
|
|
5476
5796
|
description?: string | undefined;
|
|
5477
|
-
label?: string | undefined;
|
|
5478
5797
|
key?: string | undefined;
|
|
5798
|
+
label?: string | undefined;
|
|
5479
5799
|
}>>, "many">>;
|
|
5480
5800
|
primaryUseCases: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
5481
5801
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -5518,12 +5838,12 @@ export declare const StoreGetProfileOutputProtoSchema: z.ZodObject<{
|
|
|
5518
5838
|
description: z.ZodOptional<z.ZodString>;
|
|
5519
5839
|
}, "strip", z.ZodTypeAny, {
|
|
5520
5840
|
description?: string | undefined;
|
|
5521
|
-
label?: string | undefined;
|
|
5522
5841
|
key?: string | undefined;
|
|
5842
|
+
label?: string | undefined;
|
|
5523
5843
|
}, {
|
|
5524
5844
|
description?: string | undefined;
|
|
5525
|
-
label?: string | undefined;
|
|
5526
5845
|
key?: string | undefined;
|
|
5846
|
+
label?: string | undefined;
|
|
5527
5847
|
}>>, "many">>;
|
|
5528
5848
|
surfaces: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
5529
5849
|
key: z.ZodOptional<z.ZodString>;
|
|
@@ -5531,12 +5851,12 @@ export declare const StoreGetProfileOutputProtoSchema: z.ZodObject<{
|
|
|
5531
5851
|
description: z.ZodOptional<z.ZodString>;
|
|
5532
5852
|
}, "strip", z.ZodTypeAny, {
|
|
5533
5853
|
description?: string | undefined;
|
|
5534
|
-
label?: string | undefined;
|
|
5535
5854
|
key?: string | undefined;
|
|
5855
|
+
label?: string | undefined;
|
|
5536
5856
|
}, {
|
|
5537
5857
|
description?: string | undefined;
|
|
5538
|
-
label?: string | undefined;
|
|
5539
5858
|
key?: string | undefined;
|
|
5859
|
+
label?: string | undefined;
|
|
5540
5860
|
}>>, "many">>;
|
|
5541
5861
|
relationships: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
5542
5862
|
type: z.ZodOptional<z.ZodString>;
|
|
@@ -5546,13 +5866,13 @@ export declare const StoreGetProfileOutputProtoSchema: z.ZodObject<{
|
|
|
5546
5866
|
}, "strip", z.ZodTypeAny, {
|
|
5547
5867
|
type?: string | undefined;
|
|
5548
5868
|
description?: string | undefined;
|
|
5549
|
-
label?: string | undefined;
|
|
5550
5869
|
appId?: string | undefined;
|
|
5870
|
+
label?: string | undefined;
|
|
5551
5871
|
}, {
|
|
5552
5872
|
type?: string | undefined;
|
|
5553
5873
|
description?: string | undefined;
|
|
5554
|
-
label?: string | undefined;
|
|
5555
5874
|
appId?: string | undefined;
|
|
5875
|
+
label?: string | undefined;
|
|
5556
5876
|
}>>, "many">>;
|
|
5557
5877
|
setupOverview: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
5558
5878
|
steps: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
@@ -5579,14 +5899,14 @@ export declare const StoreGetProfileOutputProtoSchema: z.ZodObject<{
|
|
|
5579
5899
|
helpUrl: z.ZodOptional<z.ZodString>;
|
|
5580
5900
|
}, "strip", z.ZodTypeAny, {
|
|
5581
5901
|
description?: string | undefined;
|
|
5582
|
-
label?: string | undefined;
|
|
5583
5902
|
key?: string | undefined;
|
|
5903
|
+
label?: string | undefined;
|
|
5584
5904
|
example?: string | undefined;
|
|
5585
5905
|
helpUrl?: string | undefined;
|
|
5586
5906
|
}, {
|
|
5587
5907
|
description?: string | undefined;
|
|
5588
|
-
label?: string | undefined;
|
|
5589
5908
|
key?: string | undefined;
|
|
5909
|
+
label?: string | undefined;
|
|
5590
5910
|
example?: string | undefined;
|
|
5591
5911
|
helpUrl?: string | undefined;
|
|
5592
5912
|
}>>, "many">>;
|
|
@@ -5594,8 +5914,8 @@ export declare const StoreGetProfileOutputProtoSchema: z.ZodObject<{
|
|
|
5594
5914
|
}, "strip", z.ZodTypeAny, {
|
|
5595
5915
|
fields?: {
|
|
5596
5916
|
description?: string | undefined;
|
|
5597
|
-
label?: string | undefined;
|
|
5598
5917
|
key?: string | undefined;
|
|
5918
|
+
label?: string | undefined;
|
|
5599
5919
|
example?: string | undefined;
|
|
5600
5920
|
helpUrl?: string | undefined;
|
|
5601
5921
|
}[] | undefined;
|
|
@@ -5609,8 +5929,8 @@ export declare const StoreGetProfileOutputProtoSchema: z.ZodObject<{
|
|
|
5609
5929
|
}, {
|
|
5610
5930
|
fields?: {
|
|
5611
5931
|
description?: string | undefined;
|
|
5612
|
-
label?: string | undefined;
|
|
5613
5932
|
key?: string | undefined;
|
|
5933
|
+
label?: string | undefined;
|
|
5614
5934
|
example?: string | undefined;
|
|
5615
5935
|
helpUrl?: string | undefined;
|
|
5616
5936
|
}[] | undefined;
|
|
@@ -5672,12 +5992,12 @@ export declare const StoreGetProfileOutputProtoSchema: z.ZodObject<{
|
|
|
5672
5992
|
description: z.ZodOptional<z.ZodString>;
|
|
5673
5993
|
}, "strip", z.ZodTypeAny, {
|
|
5674
5994
|
description?: string | undefined;
|
|
5675
|
-
label?: string | undefined;
|
|
5676
5995
|
key?: string | undefined;
|
|
5996
|
+
label?: string | undefined;
|
|
5677
5997
|
}, {
|
|
5678
5998
|
description?: string | undefined;
|
|
5679
|
-
label?: string | undefined;
|
|
5680
5999
|
key?: string | undefined;
|
|
6000
|
+
label?: string | undefined;
|
|
5681
6001
|
}>>, "many">>;
|
|
5682
6002
|
primaryUseCases: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
5683
6003
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -5743,8 +6063,8 @@ export declare const StoreGetProfileOutputProtoSchema: z.ZodObject<{
|
|
|
5743
6063
|
headline?: string | undefined;
|
|
5744
6064
|
targetUsers?: {
|
|
5745
6065
|
description?: string | undefined;
|
|
5746
|
-
label?: string | undefined;
|
|
5747
6066
|
key?: string | undefined;
|
|
6067
|
+
label?: string | undefined;
|
|
5748
6068
|
}[] | undefined;
|
|
5749
6069
|
primaryUseCases?: {
|
|
5750
6070
|
description?: string | undefined;
|
|
@@ -5774,8 +6094,8 @@ export declare const StoreGetProfileOutputProtoSchema: z.ZodObject<{
|
|
|
5774
6094
|
headline?: string | undefined;
|
|
5775
6095
|
targetUsers?: {
|
|
5776
6096
|
description?: string | undefined;
|
|
5777
|
-
label?: string | undefined;
|
|
5778
6097
|
key?: string | undefined;
|
|
6098
|
+
label?: string | undefined;
|
|
5779
6099
|
}[] | undefined;
|
|
5780
6100
|
primaryUseCases?: {
|
|
5781
6101
|
description?: string | undefined;
|
|
@@ -5813,8 +6133,8 @@ export declare const StoreGetProfileOutputProtoSchema: z.ZodObject<{
|
|
|
5813
6133
|
headline?: string | undefined;
|
|
5814
6134
|
targetUsers?: {
|
|
5815
6135
|
description?: string | undefined;
|
|
5816
|
-
label?: string | undefined;
|
|
5817
6136
|
key?: string | undefined;
|
|
6137
|
+
label?: string | undefined;
|
|
5818
6138
|
}[] | undefined;
|
|
5819
6139
|
primaryUseCases?: {
|
|
5820
6140
|
description?: string | undefined;
|
|
@@ -5843,25 +6163,25 @@ export declare const StoreGetProfileOutputProtoSchema: z.ZodObject<{
|
|
|
5843
6163
|
primaryScreenshotUrl?: string | undefined;
|
|
5844
6164
|
capabilities?: {
|
|
5845
6165
|
description?: string | undefined;
|
|
5846
|
-
label?: string | undefined;
|
|
5847
6166
|
key?: string | undefined;
|
|
6167
|
+
label?: string | undefined;
|
|
5848
6168
|
}[] | undefined;
|
|
5849
6169
|
surfaces?: {
|
|
5850
6170
|
description?: string | undefined;
|
|
5851
|
-
label?: string | undefined;
|
|
5852
6171
|
key?: string | undefined;
|
|
6172
|
+
label?: string | undefined;
|
|
5853
6173
|
}[] | undefined;
|
|
5854
6174
|
relationships?: {
|
|
5855
6175
|
type?: string | undefined;
|
|
5856
6176
|
description?: string | undefined;
|
|
5857
|
-
label?: string | undefined;
|
|
5858
6177
|
appId?: string | undefined;
|
|
6178
|
+
label?: string | undefined;
|
|
5859
6179
|
}[] | undefined;
|
|
5860
6180
|
setupOverview?: {
|
|
5861
6181
|
fields?: {
|
|
5862
6182
|
description?: string | undefined;
|
|
5863
|
-
label?: string | undefined;
|
|
5864
6183
|
key?: string | undefined;
|
|
6184
|
+
label?: string | undefined;
|
|
5865
6185
|
example?: string | undefined;
|
|
5866
6186
|
helpUrl?: string | undefined;
|
|
5867
6187
|
}[] | undefined;
|
|
@@ -5879,8 +6199,8 @@ export declare const StoreGetProfileOutputProtoSchema: z.ZodObject<{
|
|
|
5879
6199
|
headline?: string | undefined;
|
|
5880
6200
|
targetUsers?: {
|
|
5881
6201
|
description?: string | undefined;
|
|
5882
|
-
label?: string | undefined;
|
|
5883
6202
|
key?: string | undefined;
|
|
6203
|
+
label?: string | undefined;
|
|
5884
6204
|
}[] | undefined;
|
|
5885
6205
|
primaryUseCases?: {
|
|
5886
6206
|
description?: string | undefined;
|
|
@@ -5918,8 +6238,8 @@ export declare const StoreGetProfileOutputProtoSchema: z.ZodObject<{
|
|
|
5918
6238
|
headline?: string | undefined;
|
|
5919
6239
|
targetUsers?: {
|
|
5920
6240
|
description?: string | undefined;
|
|
5921
|
-
label?: string | undefined;
|
|
5922
6241
|
key?: string | undefined;
|
|
6242
|
+
label?: string | undefined;
|
|
5923
6243
|
}[] | undefined;
|
|
5924
6244
|
primaryUseCases?: {
|
|
5925
6245
|
description?: string | undefined;
|
|
@@ -5948,25 +6268,25 @@ export declare const StoreGetProfileOutputProtoSchema: z.ZodObject<{
|
|
|
5948
6268
|
primaryScreenshotUrl?: string | undefined;
|
|
5949
6269
|
capabilities?: {
|
|
5950
6270
|
description?: string | undefined;
|
|
5951
|
-
label?: string | undefined;
|
|
5952
6271
|
key?: string | undefined;
|
|
6272
|
+
label?: string | undefined;
|
|
5953
6273
|
}[] | undefined;
|
|
5954
6274
|
surfaces?: {
|
|
5955
6275
|
description?: string | undefined;
|
|
5956
|
-
label?: string | undefined;
|
|
5957
6276
|
key?: string | undefined;
|
|
6277
|
+
label?: string | undefined;
|
|
5958
6278
|
}[] | undefined;
|
|
5959
6279
|
relationships?: {
|
|
5960
6280
|
type?: string | undefined;
|
|
5961
6281
|
description?: string | undefined;
|
|
5962
|
-
label?: string | undefined;
|
|
5963
6282
|
appId?: string | undefined;
|
|
6283
|
+
label?: string | undefined;
|
|
5964
6284
|
}[] | undefined;
|
|
5965
6285
|
setupOverview?: {
|
|
5966
6286
|
fields?: {
|
|
5967
6287
|
description?: string | undefined;
|
|
5968
|
-
label?: string | undefined;
|
|
5969
6288
|
key?: string | undefined;
|
|
6289
|
+
label?: string | undefined;
|
|
5970
6290
|
example?: string | undefined;
|
|
5971
6291
|
helpUrl?: string | undefined;
|
|
5972
6292
|
}[] | undefined;
|
|
@@ -5984,8 +6304,8 @@ export declare const StoreGetProfileOutputProtoSchema: z.ZodObject<{
|
|
|
5984
6304
|
headline?: string | undefined;
|
|
5985
6305
|
targetUsers?: {
|
|
5986
6306
|
description?: string | undefined;
|
|
5987
|
-
label?: string | undefined;
|
|
5988
6307
|
key?: string | undefined;
|
|
6308
|
+
label?: string | undefined;
|
|
5989
6309
|
}[] | undefined;
|
|
5990
6310
|
primaryUseCases?: {
|
|
5991
6311
|
description?: string | undefined;
|
|
@@ -6025,8 +6345,8 @@ export declare const StoreGetProfileOutputProtoSchema: z.ZodObject<{
|
|
|
6025
6345
|
headline?: string | undefined;
|
|
6026
6346
|
targetUsers?: {
|
|
6027
6347
|
description?: string | undefined;
|
|
6028
|
-
label?: string | undefined;
|
|
6029
6348
|
key?: string | undefined;
|
|
6349
|
+
label?: string | undefined;
|
|
6030
6350
|
}[] | undefined;
|
|
6031
6351
|
primaryUseCases?: {
|
|
6032
6352
|
description?: string | undefined;
|
|
@@ -6055,25 +6375,25 @@ export declare const StoreGetProfileOutputProtoSchema: z.ZodObject<{
|
|
|
6055
6375
|
primaryScreenshotUrl?: string | undefined;
|
|
6056
6376
|
capabilities?: {
|
|
6057
6377
|
description?: string | undefined;
|
|
6058
|
-
label?: string | undefined;
|
|
6059
6378
|
key?: string | undefined;
|
|
6379
|
+
label?: string | undefined;
|
|
6060
6380
|
}[] | undefined;
|
|
6061
6381
|
surfaces?: {
|
|
6062
6382
|
description?: string | undefined;
|
|
6063
|
-
label?: string | undefined;
|
|
6064
6383
|
key?: string | undefined;
|
|
6384
|
+
label?: string | undefined;
|
|
6065
6385
|
}[] | undefined;
|
|
6066
6386
|
relationships?: {
|
|
6067
6387
|
type?: string | undefined;
|
|
6068
6388
|
description?: string | undefined;
|
|
6069
|
-
label?: string | undefined;
|
|
6070
6389
|
appId?: string | undefined;
|
|
6390
|
+
label?: string | undefined;
|
|
6071
6391
|
}[] | undefined;
|
|
6072
6392
|
setupOverview?: {
|
|
6073
6393
|
fields?: {
|
|
6074
6394
|
description?: string | undefined;
|
|
6075
|
-
label?: string | undefined;
|
|
6076
6395
|
key?: string | undefined;
|
|
6396
|
+
label?: string | undefined;
|
|
6077
6397
|
example?: string | undefined;
|
|
6078
6398
|
helpUrl?: string | undefined;
|
|
6079
6399
|
}[] | undefined;
|
|
@@ -6091,8 +6411,8 @@ export declare const StoreGetProfileOutputProtoSchema: z.ZodObject<{
|
|
|
6091
6411
|
headline?: string | undefined;
|
|
6092
6412
|
targetUsers?: {
|
|
6093
6413
|
description?: string | undefined;
|
|
6094
|
-
label?: string | undefined;
|
|
6095
6414
|
key?: string | undefined;
|
|
6415
|
+
label?: string | undefined;
|
|
6096
6416
|
}[] | undefined;
|
|
6097
6417
|
primaryUseCases?: {
|
|
6098
6418
|
description?: string | undefined;
|
|
@@ -6132,8 +6452,8 @@ export declare const StoreGetProfileOutputProtoSchema: z.ZodObject<{
|
|
|
6132
6452
|
headline?: string | undefined;
|
|
6133
6453
|
targetUsers?: {
|
|
6134
6454
|
description?: string | undefined;
|
|
6135
|
-
label?: string | undefined;
|
|
6136
6455
|
key?: string | undefined;
|
|
6456
|
+
label?: string | undefined;
|
|
6137
6457
|
}[] | undefined;
|
|
6138
6458
|
primaryUseCases?: {
|
|
6139
6459
|
description?: string | undefined;
|
|
@@ -6162,25 +6482,25 @@ export declare const StoreGetProfileOutputProtoSchema: z.ZodObject<{
|
|
|
6162
6482
|
primaryScreenshotUrl?: string | undefined;
|
|
6163
6483
|
capabilities?: {
|
|
6164
6484
|
description?: string | undefined;
|
|
6165
|
-
label?: string | undefined;
|
|
6166
6485
|
key?: string | undefined;
|
|
6486
|
+
label?: string | undefined;
|
|
6167
6487
|
}[] | undefined;
|
|
6168
6488
|
surfaces?: {
|
|
6169
6489
|
description?: string | undefined;
|
|
6170
|
-
label?: string | undefined;
|
|
6171
6490
|
key?: string | undefined;
|
|
6491
|
+
label?: string | undefined;
|
|
6172
6492
|
}[] | undefined;
|
|
6173
6493
|
relationships?: {
|
|
6174
6494
|
type?: string | undefined;
|
|
6175
6495
|
description?: string | undefined;
|
|
6176
|
-
label?: string | undefined;
|
|
6177
6496
|
appId?: string | undefined;
|
|
6497
|
+
label?: string | undefined;
|
|
6178
6498
|
}[] | undefined;
|
|
6179
6499
|
setupOverview?: {
|
|
6180
6500
|
fields?: {
|
|
6181
6501
|
description?: string | undefined;
|
|
6182
|
-
label?: string | undefined;
|
|
6183
6502
|
key?: string | undefined;
|
|
6503
|
+
label?: string | undefined;
|
|
6184
6504
|
example?: string | undefined;
|
|
6185
6505
|
helpUrl?: string | undefined;
|
|
6186
6506
|
}[] | undefined;
|
|
@@ -6198,8 +6518,8 @@ export declare const StoreGetProfileOutputProtoSchema: z.ZodObject<{
|
|
|
6198
6518
|
headline?: string | undefined;
|
|
6199
6519
|
targetUsers?: {
|
|
6200
6520
|
description?: string | undefined;
|
|
6201
|
-
label?: string | undefined;
|
|
6202
6521
|
key?: string | undefined;
|
|
6522
|
+
label?: string | undefined;
|
|
6203
6523
|
}[] | undefined;
|
|
6204
6524
|
primaryUseCases?: {
|
|
6205
6525
|
description?: string | undefined;
|
|
@@ -6344,14 +6664,6 @@ export declare const DataSourceTableDefinitionProtoSchema: z.ZodObject<{
|
|
|
6344
6664
|
}>>, "many">>;
|
|
6345
6665
|
primaryKey: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6346
6666
|
}, "strip", z.ZodTypeAny, {
|
|
6347
|
-
table?: {
|
|
6348
|
-
name?: string | undefined;
|
|
6349
|
-
description?: string | undefined;
|
|
6350
|
-
localCatalogAlias?: string | undefined;
|
|
6351
|
-
estimatedRowCount?: number | undefined;
|
|
6352
|
-
updatedAt?: number | undefined;
|
|
6353
|
-
tableType?: string | undefined;
|
|
6354
|
-
} | undefined;
|
|
6355
6667
|
columns?: {
|
|
6356
6668
|
type?: string | undefined;
|
|
6357
6669
|
name?: string | undefined;
|
|
@@ -6361,8 +6673,6 @@ export declare const DataSourceTableDefinitionProtoSchema: z.ZodObject<{
|
|
|
6361
6673
|
precision?: number | undefined;
|
|
6362
6674
|
scale?: number | undefined;
|
|
6363
6675
|
}[] | undefined;
|
|
6364
|
-
primaryKey?: string[] | undefined;
|
|
6365
|
-
}, {
|
|
6366
6676
|
table?: {
|
|
6367
6677
|
name?: string | undefined;
|
|
6368
6678
|
description?: string | undefined;
|
|
@@ -6371,6 +6681,8 @@ export declare const DataSourceTableDefinitionProtoSchema: z.ZodObject<{
|
|
|
6371
6681
|
updatedAt?: number | undefined;
|
|
6372
6682
|
tableType?: string | undefined;
|
|
6373
6683
|
} | undefined;
|
|
6684
|
+
primaryKey?: string[] | undefined;
|
|
6685
|
+
}, {
|
|
6374
6686
|
columns?: {
|
|
6375
6687
|
type?: string | undefined;
|
|
6376
6688
|
name?: string | undefined;
|
|
@@ -6380,6 +6692,14 @@ export declare const DataSourceTableDefinitionProtoSchema: z.ZodObject<{
|
|
|
6380
6692
|
precision?: number | undefined;
|
|
6381
6693
|
scale?: number | undefined;
|
|
6382
6694
|
}[] | undefined;
|
|
6695
|
+
table?: {
|
|
6696
|
+
name?: string | undefined;
|
|
6697
|
+
description?: string | undefined;
|
|
6698
|
+
localCatalogAlias?: string | undefined;
|
|
6699
|
+
estimatedRowCount?: number | undefined;
|
|
6700
|
+
updatedAt?: number | undefined;
|
|
6701
|
+
tableType?: string | undefined;
|
|
6702
|
+
} | undefined;
|
|
6383
6703
|
primaryKey?: string[] | undefined;
|
|
6384
6704
|
}>;
|
|
6385
6705
|
export type DataSourceTableDefinitionProto = z.infer<typeof DataSourceTableDefinitionProtoSchema>;
|
|
@@ -6572,12 +6892,12 @@ export declare const DataSourceDescribeTableInputProtoSchema: z.ZodObject<{
|
|
|
6572
6892
|
tableName: z.ZodOptional<z.ZodString>;
|
|
6573
6893
|
includeSample: z.ZodOptional<z.ZodBoolean>;
|
|
6574
6894
|
}, "strip", z.ZodTypeAny, {
|
|
6575
|
-
localCatalogAlias?: string | undefined;
|
|
6576
6895
|
tableName?: string | undefined;
|
|
6896
|
+
localCatalogAlias?: string | undefined;
|
|
6577
6897
|
includeSample?: boolean | undefined;
|
|
6578
6898
|
}, {
|
|
6579
|
-
localCatalogAlias?: string | undefined;
|
|
6580
6899
|
tableName?: string | undefined;
|
|
6900
|
+
localCatalogAlias?: string | undefined;
|
|
6581
6901
|
includeSample?: boolean | undefined;
|
|
6582
6902
|
}>;
|
|
6583
6903
|
export type DataSourceDescribeTableInputProto = z.infer<typeof DataSourceDescribeTableInputProtoSchema>;
|
|
@@ -6632,14 +6952,6 @@ export declare const DataSourceDescribeTableOutputProtoSchema: z.ZodObject<{
|
|
|
6632
6952
|
}>>, "many">>;
|
|
6633
6953
|
primaryKey: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6634
6954
|
}, "strip", z.ZodTypeAny, {
|
|
6635
|
-
table?: {
|
|
6636
|
-
name?: string | undefined;
|
|
6637
|
-
description?: string | undefined;
|
|
6638
|
-
localCatalogAlias?: string | undefined;
|
|
6639
|
-
estimatedRowCount?: number | undefined;
|
|
6640
|
-
updatedAt?: number | undefined;
|
|
6641
|
-
tableType?: string | undefined;
|
|
6642
|
-
} | undefined;
|
|
6643
6955
|
columns?: {
|
|
6644
6956
|
type?: string | undefined;
|
|
6645
6957
|
name?: string | undefined;
|
|
@@ -6649,8 +6961,6 @@ export declare const DataSourceDescribeTableOutputProtoSchema: z.ZodObject<{
|
|
|
6649
6961
|
precision?: number | undefined;
|
|
6650
6962
|
scale?: number | undefined;
|
|
6651
6963
|
}[] | undefined;
|
|
6652
|
-
primaryKey?: string[] | undefined;
|
|
6653
|
-
}, {
|
|
6654
6964
|
table?: {
|
|
6655
6965
|
name?: string | undefined;
|
|
6656
6966
|
description?: string | undefined;
|
|
@@ -6659,6 +6969,8 @@ export declare const DataSourceDescribeTableOutputProtoSchema: z.ZodObject<{
|
|
|
6659
6969
|
updatedAt?: number | undefined;
|
|
6660
6970
|
tableType?: string | undefined;
|
|
6661
6971
|
} | undefined;
|
|
6972
|
+
primaryKey?: string[] | undefined;
|
|
6973
|
+
}, {
|
|
6662
6974
|
columns?: {
|
|
6663
6975
|
type?: string | undefined;
|
|
6664
6976
|
name?: string | undefined;
|
|
@@ -6668,13 +6980,6 @@ export declare const DataSourceDescribeTableOutputProtoSchema: z.ZodObject<{
|
|
|
6668
6980
|
precision?: number | undefined;
|
|
6669
6981
|
scale?: number | undefined;
|
|
6670
6982
|
}[] | undefined;
|
|
6671
|
-
primaryKey?: string[] | undefined;
|
|
6672
|
-
}>>>;
|
|
6673
|
-
sample: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodAny>, "many">>;
|
|
6674
|
-
metadataVersion: z.ZodOptional<z.ZodString>;
|
|
6675
|
-
}, "strip", z.ZodTypeAny, {
|
|
6676
|
-
metadataVersion?: string | undefined;
|
|
6677
|
-
definition?: {
|
|
6678
6983
|
table?: {
|
|
6679
6984
|
name?: string | undefined;
|
|
6680
6985
|
description?: string | undefined;
|
|
@@ -6683,6 +6988,13 @@ export declare const DataSourceDescribeTableOutputProtoSchema: z.ZodObject<{
|
|
|
6683
6988
|
updatedAt?: number | undefined;
|
|
6684
6989
|
tableType?: string | undefined;
|
|
6685
6990
|
} | undefined;
|
|
6991
|
+
primaryKey?: string[] | undefined;
|
|
6992
|
+
}>>>;
|
|
6993
|
+
sample: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodAny>, "many">>;
|
|
6994
|
+
metadataVersion: z.ZodOptional<z.ZodString>;
|
|
6995
|
+
}, "strip", z.ZodTypeAny, {
|
|
6996
|
+
metadataVersion?: string | undefined;
|
|
6997
|
+
definition?: {
|
|
6686
6998
|
columns?: {
|
|
6687
6999
|
type?: string | undefined;
|
|
6688
7000
|
name?: string | undefined;
|
|
@@ -6692,12 +7004,6 @@ export declare const DataSourceDescribeTableOutputProtoSchema: z.ZodObject<{
|
|
|
6692
7004
|
precision?: number | undefined;
|
|
6693
7005
|
scale?: number | undefined;
|
|
6694
7006
|
}[] | undefined;
|
|
6695
|
-
primaryKey?: string[] | undefined;
|
|
6696
|
-
} | undefined;
|
|
6697
|
-
sample?: Record<string, any>[] | undefined;
|
|
6698
|
-
}, {
|
|
6699
|
-
metadataVersion?: string | undefined;
|
|
6700
|
-
definition?: {
|
|
6701
7007
|
table?: {
|
|
6702
7008
|
name?: string | undefined;
|
|
6703
7009
|
description?: string | undefined;
|
|
@@ -6706,6 +7012,12 @@ export declare const DataSourceDescribeTableOutputProtoSchema: z.ZodObject<{
|
|
|
6706
7012
|
updatedAt?: number | undefined;
|
|
6707
7013
|
tableType?: string | undefined;
|
|
6708
7014
|
} | undefined;
|
|
7015
|
+
primaryKey?: string[] | undefined;
|
|
7016
|
+
} | undefined;
|
|
7017
|
+
sample?: Record<string, any>[] | undefined;
|
|
7018
|
+
}, {
|
|
7019
|
+
metadataVersion?: string | undefined;
|
|
7020
|
+
definition?: {
|
|
6709
7021
|
columns?: {
|
|
6710
7022
|
type?: string | undefined;
|
|
6711
7023
|
name?: string | undefined;
|
|
@@ -6715,6 +7027,14 @@ export declare const DataSourceDescribeTableOutputProtoSchema: z.ZodObject<{
|
|
|
6715
7027
|
precision?: number | undefined;
|
|
6716
7028
|
scale?: number | undefined;
|
|
6717
7029
|
}[] | undefined;
|
|
7030
|
+
table?: {
|
|
7031
|
+
name?: string | undefined;
|
|
7032
|
+
description?: string | undefined;
|
|
7033
|
+
localCatalogAlias?: string | undefined;
|
|
7034
|
+
estimatedRowCount?: number | undefined;
|
|
7035
|
+
updatedAt?: number | undefined;
|
|
7036
|
+
tableType?: string | undefined;
|
|
7037
|
+
} | undefined;
|
|
6718
7038
|
primaryKey?: string[] | undefined;
|
|
6719
7039
|
} | undefined;
|
|
6720
7040
|
sample?: Record<string, any>[] | undefined;
|
|
@@ -8793,11 +9113,11 @@ export declare const OrderCancelOrderInputProtoSchema: z.ZodObject<{
|
|
|
8793
9113
|
accountHolder?: string | undefined;
|
|
8794
9114
|
}>>>;
|
|
8795
9115
|
}, "strip", z.ZodTypeAny, {
|
|
8796
|
-
orderId?: string | undefined;
|
|
8797
9116
|
reason?: {
|
|
8798
9117
|
type?: string | undefined;
|
|
8799
9118
|
description?: string | undefined;
|
|
8800
9119
|
} | undefined;
|
|
9120
|
+
orderId?: string | undefined;
|
|
8801
9121
|
cancelItems?: {
|
|
8802
9122
|
id?: string | undefined;
|
|
8803
9123
|
quantity?: number | undefined;
|
|
@@ -8808,11 +9128,11 @@ export declare const OrderCancelOrderInputProtoSchema: z.ZodObject<{
|
|
|
8808
9128
|
accountHolder?: string | undefined;
|
|
8809
9129
|
} | undefined;
|
|
8810
9130
|
}, {
|
|
8811
|
-
orderId?: string | undefined;
|
|
8812
9131
|
reason?: {
|
|
8813
9132
|
type?: string | undefined;
|
|
8814
9133
|
description?: string | undefined;
|
|
8815
9134
|
} | undefined;
|
|
9135
|
+
orderId?: string | undefined;
|
|
8816
9136
|
cancelItems?: {
|
|
8817
9137
|
id?: string | undefined;
|
|
8818
9138
|
quantity?: number | undefined;
|
|
@@ -8911,13 +9231,13 @@ export declare const OrderReturnOrderInputProtoSchema: z.ZodObject<{
|
|
|
8911
9231
|
}>>>;
|
|
8912
9232
|
shippingFeePaymentType: z.ZodOptional<z.ZodString>;
|
|
8913
9233
|
}, "strip", z.ZodTypeAny, {
|
|
8914
|
-
trackingNumber?: string | undefined;
|
|
8915
|
-
trackingCompany?: string | undefined;
|
|
8916
|
-
orderId?: string | undefined;
|
|
8917
9234
|
reason?: {
|
|
8918
9235
|
type?: string | undefined;
|
|
8919
9236
|
description?: string | undefined;
|
|
8920
9237
|
} | undefined;
|
|
9238
|
+
trackingNumber?: string | undefined;
|
|
9239
|
+
trackingCompany?: string | undefined;
|
|
9240
|
+
orderId?: string | undefined;
|
|
8921
9241
|
refundBankAccount?: {
|
|
8922
9242
|
bankName?: string | undefined;
|
|
8923
9243
|
accountNo?: string | undefined;
|
|
@@ -8947,13 +9267,13 @@ export declare const OrderReturnOrderInputProtoSchema: z.ZodObject<{
|
|
|
8947
9267
|
} | undefined;
|
|
8948
9268
|
shippingFeePaymentType?: string | undefined;
|
|
8949
9269
|
}, {
|
|
8950
|
-
trackingNumber?: string | undefined;
|
|
8951
|
-
trackingCompany?: string | undefined;
|
|
8952
|
-
orderId?: string | undefined;
|
|
8953
9270
|
reason?: {
|
|
8954
9271
|
type?: string | undefined;
|
|
8955
9272
|
description?: string | undefined;
|
|
8956
9273
|
} | undefined;
|
|
9274
|
+
trackingNumber?: string | undefined;
|
|
9275
|
+
trackingCompany?: string | undefined;
|
|
9276
|
+
orderId?: string | undefined;
|
|
8957
9277
|
refundBankAccount?: {
|
|
8958
9278
|
bankName?: string | undefined;
|
|
8959
9279
|
accountNo?: string | undefined;
|
|
@@ -9096,11 +9416,11 @@ export declare const OrderExchangeOrderInputProtoSchema: z.ZodObject<{
|
|
|
9096
9416
|
}>>>;
|
|
9097
9417
|
shippingFeePaymentType: z.ZodOptional<z.ZodString>;
|
|
9098
9418
|
}, "strip", z.ZodTypeAny, {
|
|
9099
|
-
orderId?: string | undefined;
|
|
9100
9419
|
reason?: {
|
|
9101
9420
|
type?: string | undefined;
|
|
9102
9421
|
description?: string | undefined;
|
|
9103
9422
|
} | undefined;
|
|
9423
|
+
orderId?: string | undefined;
|
|
9104
9424
|
refundBankAccount?: {
|
|
9105
9425
|
bankName?: string | undefined;
|
|
9106
9426
|
accountNo?: string | undefined;
|
|
@@ -9135,11 +9455,11 @@ export declare const OrderExchangeOrderInputProtoSchema: z.ZodObject<{
|
|
|
9135
9455
|
variantId?: string | undefined;
|
|
9136
9456
|
}[] | undefined;
|
|
9137
9457
|
}, {
|
|
9138
|
-
orderId?: string | undefined;
|
|
9139
9458
|
reason?: {
|
|
9140
9459
|
type?: string | undefined;
|
|
9141
9460
|
description?: string | undefined;
|
|
9142
9461
|
} | undefined;
|
|
9462
|
+
orderId?: string | undefined;
|
|
9143
9463
|
refundBankAccount?: {
|
|
9144
9464
|
bankName?: string | undefined;
|
|
9145
9465
|
accountNo?: string | undefined;
|
|
@@ -10258,14 +10578,14 @@ export declare const WmsOrderStateRequestProtoSchema: z.ZodObject<{
|
|
|
10258
10578
|
reason: z.ZodOptional<z.ZodString>;
|
|
10259
10579
|
memo: z.ZodOptional<z.ZodString>;
|
|
10260
10580
|
}, "strip", z.ZodTypeAny, {
|
|
10581
|
+
reason?: string | undefined;
|
|
10261
10582
|
orderIds?: string | undefined;
|
|
10262
10583
|
orderId?: string | undefined;
|
|
10263
|
-
reason?: string | undefined;
|
|
10264
10584
|
memo?: string | undefined;
|
|
10265
10585
|
}, {
|
|
10586
|
+
reason?: string | undefined;
|
|
10266
10587
|
orderIds?: string | undefined;
|
|
10267
10588
|
orderId?: string | undefined;
|
|
10268
|
-
reason?: string | undefined;
|
|
10269
10589
|
memo?: string | undefined;
|
|
10270
10590
|
}>;
|
|
10271
10591
|
export type WmsOrderStateRequestProto = z.infer<typeof WmsOrderStateRequestProtoSchema>;
|
|
@@ -10400,6 +10720,7 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
10400
10720
|
mediumType?: string | undefined;
|
|
10401
10721
|
title?: string | undefined;
|
|
10402
10722
|
expiresAt?: string | undefined;
|
|
10723
|
+
source?: Record<string, any> | undefined;
|
|
10403
10724
|
profile?: Record<string, any> | undefined;
|
|
10404
10725
|
updatedAt?: string | undefined;
|
|
10405
10726
|
tags?: string[] | undefined;
|
|
@@ -10410,7 +10731,6 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
10410
10731
|
replyCount?: number | undefined;
|
|
10411
10732
|
sync?: boolean | undefined;
|
|
10412
10733
|
xerId?: string | undefined;
|
|
10413
|
-
source?: Record<string, any> | undefined;
|
|
10414
10734
|
teamId?: string | undefined;
|
|
10415
10735
|
askedAt?: string | undefined;
|
|
10416
10736
|
managed?: boolean | undefined;
|
|
@@ -10461,6 +10781,7 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
10461
10781
|
mediumType?: string | undefined;
|
|
10462
10782
|
title?: string | undefined;
|
|
10463
10783
|
expiresAt?: string | undefined;
|
|
10784
|
+
source?: Record<string, any> | undefined;
|
|
10464
10785
|
profile?: Record<string, any> | undefined;
|
|
10465
10786
|
updatedAt?: string | undefined;
|
|
10466
10787
|
tags?: string[] | undefined;
|
|
@@ -10471,7 +10792,6 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
10471
10792
|
replyCount?: number | undefined;
|
|
10472
10793
|
sync?: boolean | undefined;
|
|
10473
10794
|
xerId?: string | undefined;
|
|
10474
|
-
source?: Record<string, any> | undefined;
|
|
10475
10795
|
teamId?: string | undefined;
|
|
10476
10796
|
askedAt?: string | undefined;
|
|
10477
10797
|
managed?: boolean | undefined;
|
|
@@ -10644,6 +10964,7 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
10644
10964
|
options?: ("MESSAGE_OPTION_UNSPECIFIED" | "MESSAGE_OPTION_ACT_AS_MANAGER" | "MESSAGE_OPTION_DISPLAY_AS_CHANNEL" | "MESSAGE_OPTION_DO_NOT_POST" | "MESSAGE_OPTION_DO_NOT_SEARCH" | "MESSAGE_OPTION_DO_NOT_SEND_APP" | "MESSAGE_OPTION_DO_NOT_UPDATE_DESK" | "MESSAGE_OPTION_IMMUTABLE" | "MESSAGE_OPTION_PRIVATE" | "MESSAGE_OPTION_SILENT_TO_MANAGER" | "MESSAGE_OPTION_SILENT_TO_USER")[] | undefined;
|
|
10645
10965
|
id?: string | undefined;
|
|
10646
10966
|
channelId?: string | undefined;
|
|
10967
|
+
requestId?: string | undefined;
|
|
10647
10968
|
form?: Record<string, any> | undefined;
|
|
10648
10969
|
blocks?: Record<string, any>[] | undefined;
|
|
10649
10970
|
updatedAt?: string | undefined;
|
|
@@ -10691,7 +11012,6 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
10691
11012
|
marketing?: Record<string, any> | undefined;
|
|
10692
11013
|
plainText?: string | undefined;
|
|
10693
11014
|
reactions?: Record<string, any>[] | undefined;
|
|
10694
|
-
requestId?: string | undefined;
|
|
10695
11015
|
alertLevel?: "MESSAGE_ALERT_LEVEL_UNSPECIFIED" | "MESSAGE_ALERT_LEVEL_ALERT" | "MESSAGE_ALERT_LEVEL_UNREAD" | "MESSAGE_ALERT_LEVEL_NONE" | undefined;
|
|
10696
11016
|
personType?: string | undefined;
|
|
10697
11017
|
supportBot?: Record<string, any> | undefined;
|
|
@@ -10707,6 +11027,7 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
10707
11027
|
options?: ("MESSAGE_OPTION_UNSPECIFIED" | "MESSAGE_OPTION_ACT_AS_MANAGER" | "MESSAGE_OPTION_DISPLAY_AS_CHANNEL" | "MESSAGE_OPTION_DO_NOT_POST" | "MESSAGE_OPTION_DO_NOT_SEARCH" | "MESSAGE_OPTION_DO_NOT_SEND_APP" | "MESSAGE_OPTION_DO_NOT_UPDATE_DESK" | "MESSAGE_OPTION_IMMUTABLE" | "MESSAGE_OPTION_PRIVATE" | "MESSAGE_OPTION_SILENT_TO_MANAGER" | "MESSAGE_OPTION_SILENT_TO_USER")[] | undefined;
|
|
10708
11028
|
id?: string | undefined;
|
|
10709
11029
|
channelId?: string | undefined;
|
|
11030
|
+
requestId?: string | undefined;
|
|
10710
11031
|
form?: Record<string, any> | undefined;
|
|
10711
11032
|
blocks?: Record<string, any>[] | undefined;
|
|
10712
11033
|
updatedAt?: string | undefined;
|
|
@@ -10754,7 +11075,6 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
10754
11075
|
marketing?: Record<string, any> | undefined;
|
|
10755
11076
|
plainText?: string | undefined;
|
|
10756
11077
|
reactions?: Record<string, any>[] | undefined;
|
|
10757
|
-
requestId?: string | undefined;
|
|
10758
11078
|
alertLevel?: "MESSAGE_ALERT_LEVEL_UNSPECIFIED" | "MESSAGE_ALERT_LEVEL_ALERT" | "MESSAGE_ALERT_LEVEL_UNREAD" | "MESSAGE_ALERT_LEVEL_NONE" | undefined;
|
|
10759
11079
|
personType?: string | undefined;
|
|
10760
11080
|
supportBot?: Record<string, any> | undefined;
|
|
@@ -10776,6 +11096,7 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
10776
11096
|
mediumType?: string | undefined;
|
|
10777
11097
|
title?: string | undefined;
|
|
10778
11098
|
expiresAt?: string | undefined;
|
|
11099
|
+
source?: Record<string, any> | undefined;
|
|
10779
11100
|
profile?: Record<string, any> | undefined;
|
|
10780
11101
|
updatedAt?: string | undefined;
|
|
10781
11102
|
tags?: string[] | undefined;
|
|
@@ -10786,7 +11107,6 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
10786
11107
|
replyCount?: number | undefined;
|
|
10787
11108
|
sync?: boolean | undefined;
|
|
10788
11109
|
xerId?: string | undefined;
|
|
10789
|
-
source?: Record<string, any> | undefined;
|
|
10790
11110
|
teamId?: string | undefined;
|
|
10791
11111
|
askedAt?: string | undefined;
|
|
10792
11112
|
managed?: boolean | undefined;
|
|
@@ -10834,6 +11154,7 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
10834
11154
|
options?: ("MESSAGE_OPTION_UNSPECIFIED" | "MESSAGE_OPTION_ACT_AS_MANAGER" | "MESSAGE_OPTION_DISPLAY_AS_CHANNEL" | "MESSAGE_OPTION_DO_NOT_POST" | "MESSAGE_OPTION_DO_NOT_SEARCH" | "MESSAGE_OPTION_DO_NOT_SEND_APP" | "MESSAGE_OPTION_DO_NOT_UPDATE_DESK" | "MESSAGE_OPTION_IMMUTABLE" | "MESSAGE_OPTION_PRIVATE" | "MESSAGE_OPTION_SILENT_TO_MANAGER" | "MESSAGE_OPTION_SILENT_TO_USER")[] | undefined;
|
|
10835
11155
|
id?: string | undefined;
|
|
10836
11156
|
channelId?: string | undefined;
|
|
11157
|
+
requestId?: string | undefined;
|
|
10837
11158
|
form?: Record<string, any> | undefined;
|
|
10838
11159
|
blocks?: Record<string, any>[] | undefined;
|
|
10839
11160
|
updatedAt?: string | undefined;
|
|
@@ -10881,7 +11202,6 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
10881
11202
|
marketing?: Record<string, any> | undefined;
|
|
10882
11203
|
plainText?: string | undefined;
|
|
10883
11204
|
reactions?: Record<string, any>[] | undefined;
|
|
10884
|
-
requestId?: string | undefined;
|
|
10885
11205
|
alertLevel?: "MESSAGE_ALERT_LEVEL_UNSPECIFIED" | "MESSAGE_ALERT_LEVEL_ALERT" | "MESSAGE_ALERT_LEVEL_UNREAD" | "MESSAGE_ALERT_LEVEL_NONE" | undefined;
|
|
10886
11206
|
personType?: string | undefined;
|
|
10887
11207
|
supportBot?: Record<string, any> | undefined;
|
|
@@ -10903,6 +11223,7 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
10903
11223
|
mediumType?: string | undefined;
|
|
10904
11224
|
title?: string | undefined;
|
|
10905
11225
|
expiresAt?: string | undefined;
|
|
11226
|
+
source?: Record<string, any> | undefined;
|
|
10906
11227
|
profile?: Record<string, any> | undefined;
|
|
10907
11228
|
updatedAt?: string | undefined;
|
|
10908
11229
|
tags?: string[] | undefined;
|
|
@@ -10913,7 +11234,6 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
10913
11234
|
replyCount?: number | undefined;
|
|
10914
11235
|
sync?: boolean | undefined;
|
|
10915
11236
|
xerId?: string | undefined;
|
|
10916
|
-
source?: Record<string, any> | undefined;
|
|
10917
11237
|
teamId?: string | undefined;
|
|
10918
11238
|
askedAt?: string | undefined;
|
|
10919
11239
|
managed?: boolean | undefined;
|
|
@@ -10961,6 +11281,7 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
10961
11281
|
options?: ("MESSAGE_OPTION_UNSPECIFIED" | "MESSAGE_OPTION_ACT_AS_MANAGER" | "MESSAGE_OPTION_DISPLAY_AS_CHANNEL" | "MESSAGE_OPTION_DO_NOT_POST" | "MESSAGE_OPTION_DO_NOT_SEARCH" | "MESSAGE_OPTION_DO_NOT_SEND_APP" | "MESSAGE_OPTION_DO_NOT_UPDATE_DESK" | "MESSAGE_OPTION_IMMUTABLE" | "MESSAGE_OPTION_PRIVATE" | "MESSAGE_OPTION_SILENT_TO_MANAGER" | "MESSAGE_OPTION_SILENT_TO_USER")[] | undefined;
|
|
10962
11282
|
id?: string | undefined;
|
|
10963
11283
|
channelId?: string | undefined;
|
|
11284
|
+
requestId?: string | undefined;
|
|
10964
11285
|
form?: Record<string, any> | undefined;
|
|
10965
11286
|
blocks?: Record<string, any>[] | undefined;
|
|
10966
11287
|
updatedAt?: string | undefined;
|
|
@@ -11008,7 +11329,6 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
11008
11329
|
marketing?: Record<string, any> | undefined;
|
|
11009
11330
|
plainText?: string | undefined;
|
|
11010
11331
|
reactions?: Record<string, any>[] | undefined;
|
|
11011
|
-
requestId?: string | undefined;
|
|
11012
11332
|
alertLevel?: "MESSAGE_ALERT_LEVEL_UNSPECIFIED" | "MESSAGE_ALERT_LEVEL_ALERT" | "MESSAGE_ALERT_LEVEL_UNREAD" | "MESSAGE_ALERT_LEVEL_NONE" | undefined;
|
|
11013
11333
|
personType?: string | undefined;
|
|
11014
11334
|
supportBot?: Record<string, any> | undefined;
|
|
@@ -11127,6 +11447,7 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
|
|
|
11127
11447
|
mediumType?: string | undefined;
|
|
11128
11448
|
title?: string | undefined;
|
|
11129
11449
|
expiresAt?: string | undefined;
|
|
11450
|
+
source?: Record<string, any> | undefined;
|
|
11130
11451
|
profile?: Record<string, any> | undefined;
|
|
11131
11452
|
updatedAt?: string | undefined;
|
|
11132
11453
|
tags?: string[] | undefined;
|
|
@@ -11137,7 +11458,6 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
|
|
|
11137
11458
|
replyCount?: number | undefined;
|
|
11138
11459
|
sync?: boolean | undefined;
|
|
11139
11460
|
xerId?: string | undefined;
|
|
11140
|
-
source?: Record<string, any> | undefined;
|
|
11141
11461
|
teamId?: string | undefined;
|
|
11142
11462
|
askedAt?: string | undefined;
|
|
11143
11463
|
managed?: boolean | undefined;
|
|
@@ -11188,6 +11508,7 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
|
|
|
11188
11508
|
mediumType?: string | undefined;
|
|
11189
11509
|
title?: string | undefined;
|
|
11190
11510
|
expiresAt?: string | undefined;
|
|
11511
|
+
source?: Record<string, any> | undefined;
|
|
11191
11512
|
profile?: Record<string, any> | undefined;
|
|
11192
11513
|
updatedAt?: string | undefined;
|
|
11193
11514
|
tags?: string[] | undefined;
|
|
@@ -11198,7 +11519,6 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
|
|
|
11198
11519
|
replyCount?: number | undefined;
|
|
11199
11520
|
sync?: boolean | undefined;
|
|
11200
11521
|
xerId?: string | undefined;
|
|
11201
|
-
source?: Record<string, any> | undefined;
|
|
11202
11522
|
teamId?: string | undefined;
|
|
11203
11523
|
askedAt?: string | undefined;
|
|
11204
11524
|
managed?: boolean | undefined;
|
|
@@ -11251,6 +11571,7 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
|
|
|
11251
11571
|
mediumType?: string | undefined;
|
|
11252
11572
|
title?: string | undefined;
|
|
11253
11573
|
expiresAt?: string | undefined;
|
|
11574
|
+
source?: Record<string, any> | undefined;
|
|
11254
11575
|
profile?: Record<string, any> | undefined;
|
|
11255
11576
|
updatedAt?: string | undefined;
|
|
11256
11577
|
tags?: string[] | undefined;
|
|
@@ -11261,7 +11582,6 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
|
|
|
11261
11582
|
replyCount?: number | undefined;
|
|
11262
11583
|
sync?: boolean | undefined;
|
|
11263
11584
|
xerId?: string | undefined;
|
|
11264
|
-
source?: Record<string, any> | undefined;
|
|
11265
11585
|
teamId?: string | undefined;
|
|
11266
11586
|
askedAt?: string | undefined;
|
|
11267
11587
|
managed?: boolean | undefined;
|
|
@@ -11314,6 +11634,7 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
|
|
|
11314
11634
|
mediumType?: string | undefined;
|
|
11315
11635
|
title?: string | undefined;
|
|
11316
11636
|
expiresAt?: string | undefined;
|
|
11637
|
+
source?: Record<string, any> | undefined;
|
|
11317
11638
|
profile?: Record<string, any> | undefined;
|
|
11318
11639
|
updatedAt?: string | undefined;
|
|
11319
11640
|
tags?: string[] | undefined;
|
|
@@ -11324,7 +11645,6 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
|
|
|
11324
11645
|
replyCount?: number | undefined;
|
|
11325
11646
|
sync?: boolean | undefined;
|
|
11326
11647
|
xerId?: string | undefined;
|
|
11327
|
-
source?: Record<string, any> | undefined;
|
|
11328
11648
|
teamId?: string | undefined;
|
|
11329
11649
|
askedAt?: string | undefined;
|
|
11330
11650
|
managed?: boolean | undefined;
|
|
@@ -11442,6 +11762,7 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
|
|
|
11442
11762
|
mediumType?: string | undefined;
|
|
11443
11763
|
title?: string | undefined;
|
|
11444
11764
|
expiresAt?: string | undefined;
|
|
11765
|
+
source?: Record<string, any> | undefined;
|
|
11445
11766
|
profile?: Record<string, any> | undefined;
|
|
11446
11767
|
updatedAt?: string | undefined;
|
|
11447
11768
|
tags?: string[] | undefined;
|
|
@@ -11452,7 +11773,6 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
|
|
|
11452
11773
|
replyCount?: number | undefined;
|
|
11453
11774
|
sync?: boolean | undefined;
|
|
11454
11775
|
xerId?: string | undefined;
|
|
11455
|
-
source?: Record<string, any> | undefined;
|
|
11456
11776
|
teamId?: string | undefined;
|
|
11457
11777
|
askedAt?: string | undefined;
|
|
11458
11778
|
managed?: boolean | undefined;
|
|
@@ -11503,6 +11823,7 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
|
|
|
11503
11823
|
mediumType?: string | undefined;
|
|
11504
11824
|
title?: string | undefined;
|
|
11505
11825
|
expiresAt?: string | undefined;
|
|
11826
|
+
source?: Record<string, any> | undefined;
|
|
11506
11827
|
profile?: Record<string, any> | undefined;
|
|
11507
11828
|
updatedAt?: string | undefined;
|
|
11508
11829
|
tags?: string[] | undefined;
|
|
@@ -11513,7 +11834,6 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
|
|
|
11513
11834
|
replyCount?: number | undefined;
|
|
11514
11835
|
sync?: boolean | undefined;
|
|
11515
11836
|
xerId?: string | undefined;
|
|
11516
|
-
source?: Record<string, any> | undefined;
|
|
11517
11837
|
teamId?: string | undefined;
|
|
11518
11838
|
askedAt?: string | undefined;
|
|
11519
11839
|
managed?: boolean | undefined;
|
|
@@ -11566,6 +11886,7 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
|
|
|
11566
11886
|
mediumType?: string | undefined;
|
|
11567
11887
|
title?: string | undefined;
|
|
11568
11888
|
expiresAt?: string | undefined;
|
|
11889
|
+
source?: Record<string, any> | undefined;
|
|
11569
11890
|
profile?: Record<string, any> | undefined;
|
|
11570
11891
|
updatedAt?: string | undefined;
|
|
11571
11892
|
tags?: string[] | undefined;
|
|
@@ -11576,7 +11897,6 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
|
|
|
11576
11897
|
replyCount?: number | undefined;
|
|
11577
11898
|
sync?: boolean | undefined;
|
|
11578
11899
|
xerId?: string | undefined;
|
|
11579
|
-
source?: Record<string, any> | undefined;
|
|
11580
11900
|
teamId?: string | undefined;
|
|
11581
11901
|
askedAt?: string | undefined;
|
|
11582
11902
|
managed?: boolean | undefined;
|
|
@@ -11629,6 +11949,7 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
|
|
|
11629
11949
|
mediumType?: string | undefined;
|
|
11630
11950
|
title?: string | undefined;
|
|
11631
11951
|
expiresAt?: string | undefined;
|
|
11952
|
+
source?: Record<string, any> | undefined;
|
|
11632
11953
|
profile?: Record<string, any> | undefined;
|
|
11633
11954
|
updatedAt?: string | undefined;
|
|
11634
11955
|
tags?: string[] | undefined;
|
|
@@ -11639,7 +11960,6 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
|
|
|
11639
11960
|
replyCount?: number | undefined;
|
|
11640
11961
|
sync?: boolean | undefined;
|
|
11641
11962
|
xerId?: string | undefined;
|
|
11642
|
-
source?: Record<string, any> | undefined;
|
|
11643
11963
|
teamId?: string | undefined;
|
|
11644
11964
|
askedAt?: string | undefined;
|
|
11645
11965
|
managed?: boolean | undefined;
|
|
@@ -11998,6 +12318,7 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
11998
12318
|
mediumType?: string | undefined;
|
|
11999
12319
|
title?: string | undefined;
|
|
12000
12320
|
expiresAt?: string | undefined;
|
|
12321
|
+
source?: Record<string, any> | undefined;
|
|
12001
12322
|
profile?: Record<string, any> | undefined;
|
|
12002
12323
|
updatedAt?: string | undefined;
|
|
12003
12324
|
tags?: string[] | undefined;
|
|
@@ -12008,7 +12329,6 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
12008
12329
|
replyCount?: number | undefined;
|
|
12009
12330
|
sync?: boolean | undefined;
|
|
12010
12331
|
xerId?: string | undefined;
|
|
12011
|
-
source?: Record<string, any> | undefined;
|
|
12012
12332
|
teamId?: string | undefined;
|
|
12013
12333
|
askedAt?: string | undefined;
|
|
12014
12334
|
managed?: boolean | undefined;
|
|
@@ -12059,6 +12379,7 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
12059
12379
|
mediumType?: string | undefined;
|
|
12060
12380
|
title?: string | undefined;
|
|
12061
12381
|
expiresAt?: string | undefined;
|
|
12382
|
+
source?: Record<string, any> | undefined;
|
|
12062
12383
|
profile?: Record<string, any> | undefined;
|
|
12063
12384
|
updatedAt?: string | undefined;
|
|
12064
12385
|
tags?: string[] | undefined;
|
|
@@ -12069,7 +12390,6 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
12069
12390
|
replyCount?: number | undefined;
|
|
12070
12391
|
sync?: boolean | undefined;
|
|
12071
12392
|
xerId?: string | undefined;
|
|
12072
|
-
source?: Record<string, any> | undefined;
|
|
12073
12393
|
teamId?: string | undefined;
|
|
12074
12394
|
askedAt?: string | undefined;
|
|
12075
12395
|
managed?: boolean | undefined;
|
|
@@ -12245,6 +12565,7 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
12245
12565
|
options?: ("MESSAGE_OPTION_UNSPECIFIED" | "MESSAGE_OPTION_ACT_AS_MANAGER" | "MESSAGE_OPTION_DISPLAY_AS_CHANNEL" | "MESSAGE_OPTION_DO_NOT_POST" | "MESSAGE_OPTION_DO_NOT_SEARCH" | "MESSAGE_OPTION_DO_NOT_SEND_APP" | "MESSAGE_OPTION_DO_NOT_UPDATE_DESK" | "MESSAGE_OPTION_IMMUTABLE" | "MESSAGE_OPTION_PRIVATE" | "MESSAGE_OPTION_SILENT_TO_MANAGER" | "MESSAGE_OPTION_SILENT_TO_USER")[] | undefined;
|
|
12246
12566
|
id?: string | undefined;
|
|
12247
12567
|
channelId?: string | undefined;
|
|
12568
|
+
requestId?: string | undefined;
|
|
12248
12569
|
form?: Record<string, any> | undefined;
|
|
12249
12570
|
blocks?: Record<string, any>[] | undefined;
|
|
12250
12571
|
updatedAt?: string | undefined;
|
|
@@ -12292,7 +12613,6 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
12292
12613
|
marketing?: Record<string, any> | undefined;
|
|
12293
12614
|
plainText?: string | undefined;
|
|
12294
12615
|
reactions?: Record<string, any>[] | undefined;
|
|
12295
|
-
requestId?: string | undefined;
|
|
12296
12616
|
alertLevel?: "MESSAGE_ALERT_LEVEL_UNSPECIFIED" | "MESSAGE_ALERT_LEVEL_ALERT" | "MESSAGE_ALERT_LEVEL_UNREAD" | "MESSAGE_ALERT_LEVEL_NONE" | undefined;
|
|
12297
12617
|
personType?: string | undefined;
|
|
12298
12618
|
supportBot?: Record<string, any> | undefined;
|
|
@@ -12308,6 +12628,7 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
12308
12628
|
options?: ("MESSAGE_OPTION_UNSPECIFIED" | "MESSAGE_OPTION_ACT_AS_MANAGER" | "MESSAGE_OPTION_DISPLAY_AS_CHANNEL" | "MESSAGE_OPTION_DO_NOT_POST" | "MESSAGE_OPTION_DO_NOT_SEARCH" | "MESSAGE_OPTION_DO_NOT_SEND_APP" | "MESSAGE_OPTION_DO_NOT_UPDATE_DESK" | "MESSAGE_OPTION_IMMUTABLE" | "MESSAGE_OPTION_PRIVATE" | "MESSAGE_OPTION_SILENT_TO_MANAGER" | "MESSAGE_OPTION_SILENT_TO_USER")[] | undefined;
|
|
12309
12629
|
id?: string | undefined;
|
|
12310
12630
|
channelId?: string | undefined;
|
|
12631
|
+
requestId?: string | undefined;
|
|
12311
12632
|
form?: Record<string, any> | undefined;
|
|
12312
12633
|
blocks?: Record<string, any>[] | undefined;
|
|
12313
12634
|
updatedAt?: string | undefined;
|
|
@@ -12355,7 +12676,6 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
12355
12676
|
marketing?: Record<string, any> | undefined;
|
|
12356
12677
|
plainText?: string | undefined;
|
|
12357
12678
|
reactions?: Record<string, any>[] | undefined;
|
|
12358
|
-
requestId?: string | undefined;
|
|
12359
12679
|
alertLevel?: "MESSAGE_ALERT_LEVEL_UNSPECIFIED" | "MESSAGE_ALERT_LEVEL_ALERT" | "MESSAGE_ALERT_LEVEL_UNREAD" | "MESSAGE_ALERT_LEVEL_NONE" | undefined;
|
|
12360
12680
|
personType?: string | undefined;
|
|
12361
12681
|
supportBot?: Record<string, any> | undefined;
|
|
@@ -12413,6 +12733,7 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
12413
12733
|
mediumType?: string | undefined;
|
|
12414
12734
|
title?: string | undefined;
|
|
12415
12735
|
expiresAt?: string | undefined;
|
|
12736
|
+
source?: Record<string, any> | undefined;
|
|
12416
12737
|
profile?: Record<string, any> | undefined;
|
|
12417
12738
|
updatedAt?: string | undefined;
|
|
12418
12739
|
tags?: string[] | undefined;
|
|
@@ -12423,7 +12744,6 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
12423
12744
|
replyCount?: number | undefined;
|
|
12424
12745
|
sync?: boolean | undefined;
|
|
12425
12746
|
xerId?: string | undefined;
|
|
12426
|
-
source?: Record<string, any> | undefined;
|
|
12427
12747
|
teamId?: string | undefined;
|
|
12428
12748
|
askedAt?: string | undefined;
|
|
12429
12749
|
managed?: boolean | undefined;
|
|
@@ -12471,6 +12791,7 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
12471
12791
|
options?: ("MESSAGE_OPTION_UNSPECIFIED" | "MESSAGE_OPTION_ACT_AS_MANAGER" | "MESSAGE_OPTION_DISPLAY_AS_CHANNEL" | "MESSAGE_OPTION_DO_NOT_POST" | "MESSAGE_OPTION_DO_NOT_SEARCH" | "MESSAGE_OPTION_DO_NOT_SEND_APP" | "MESSAGE_OPTION_DO_NOT_UPDATE_DESK" | "MESSAGE_OPTION_IMMUTABLE" | "MESSAGE_OPTION_PRIVATE" | "MESSAGE_OPTION_SILENT_TO_MANAGER" | "MESSAGE_OPTION_SILENT_TO_USER")[] | undefined;
|
|
12472
12792
|
id?: string | undefined;
|
|
12473
12793
|
channelId?: string | undefined;
|
|
12794
|
+
requestId?: string | undefined;
|
|
12474
12795
|
form?: Record<string, any> | undefined;
|
|
12475
12796
|
blocks?: Record<string, any>[] | undefined;
|
|
12476
12797
|
updatedAt?: string | undefined;
|
|
@@ -12518,7 +12839,6 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
12518
12839
|
marketing?: Record<string, any> | undefined;
|
|
12519
12840
|
plainText?: string | undefined;
|
|
12520
12841
|
reactions?: Record<string, any>[] | undefined;
|
|
12521
|
-
requestId?: string | undefined;
|
|
12522
12842
|
alertLevel?: "MESSAGE_ALERT_LEVEL_UNSPECIFIED" | "MESSAGE_ALERT_LEVEL_ALERT" | "MESSAGE_ALERT_LEVEL_UNREAD" | "MESSAGE_ALERT_LEVEL_NONE" | undefined;
|
|
12523
12843
|
personType?: string | undefined;
|
|
12524
12844
|
supportBot?: Record<string, any> | undefined;
|
|
@@ -12579,6 +12899,7 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
12579
12899
|
mediumType?: string | undefined;
|
|
12580
12900
|
title?: string | undefined;
|
|
12581
12901
|
expiresAt?: string | undefined;
|
|
12902
|
+
source?: Record<string, any> | undefined;
|
|
12582
12903
|
profile?: Record<string, any> | undefined;
|
|
12583
12904
|
updatedAt?: string | undefined;
|
|
12584
12905
|
tags?: string[] | undefined;
|
|
@@ -12589,7 +12910,6 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
12589
12910
|
replyCount?: number | undefined;
|
|
12590
12911
|
sync?: boolean | undefined;
|
|
12591
12912
|
xerId?: string | undefined;
|
|
12592
|
-
source?: Record<string, any> | undefined;
|
|
12593
12913
|
teamId?: string | undefined;
|
|
12594
12914
|
askedAt?: string | undefined;
|
|
12595
12915
|
managed?: boolean | undefined;
|
|
@@ -12637,6 +12957,7 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
12637
12957
|
options?: ("MESSAGE_OPTION_UNSPECIFIED" | "MESSAGE_OPTION_ACT_AS_MANAGER" | "MESSAGE_OPTION_DISPLAY_AS_CHANNEL" | "MESSAGE_OPTION_DO_NOT_POST" | "MESSAGE_OPTION_DO_NOT_SEARCH" | "MESSAGE_OPTION_DO_NOT_SEND_APP" | "MESSAGE_OPTION_DO_NOT_UPDATE_DESK" | "MESSAGE_OPTION_IMMUTABLE" | "MESSAGE_OPTION_PRIVATE" | "MESSAGE_OPTION_SILENT_TO_MANAGER" | "MESSAGE_OPTION_SILENT_TO_USER")[] | undefined;
|
|
12638
12958
|
id?: string | undefined;
|
|
12639
12959
|
channelId?: string | undefined;
|
|
12960
|
+
requestId?: string | undefined;
|
|
12640
12961
|
form?: Record<string, any> | undefined;
|
|
12641
12962
|
blocks?: Record<string, any>[] | undefined;
|
|
12642
12963
|
updatedAt?: string | undefined;
|
|
@@ -12684,7 +13005,6 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
12684
13005
|
marketing?: Record<string, any> | undefined;
|
|
12685
13006
|
plainText?: string | undefined;
|
|
12686
13007
|
reactions?: Record<string, any>[] | undefined;
|
|
12687
|
-
requestId?: string | undefined;
|
|
12688
13008
|
alertLevel?: "MESSAGE_ALERT_LEVEL_UNSPECIFIED" | "MESSAGE_ALERT_LEVEL_ALERT" | "MESSAGE_ALERT_LEVEL_UNREAD" | "MESSAGE_ALERT_LEVEL_NONE" | undefined;
|
|
12689
13009
|
personType?: string | undefined;
|
|
12690
13010
|
supportBot?: Record<string, any> | undefined;
|
|
@@ -12955,6 +13275,7 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
12955
13275
|
mediumType?: string | undefined;
|
|
12956
13276
|
title?: string | undefined;
|
|
12957
13277
|
expiresAt?: string | undefined;
|
|
13278
|
+
source?: Record<string, any> | undefined;
|
|
12958
13279
|
profile?: Record<string, any> | undefined;
|
|
12959
13280
|
updatedAt?: string | undefined;
|
|
12960
13281
|
tags?: string[] | undefined;
|
|
@@ -12965,7 +13286,6 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
12965
13286
|
replyCount?: number | undefined;
|
|
12966
13287
|
sync?: boolean | undefined;
|
|
12967
13288
|
xerId?: string | undefined;
|
|
12968
|
-
source?: Record<string, any> | undefined;
|
|
12969
13289
|
teamId?: string | undefined;
|
|
12970
13290
|
askedAt?: string | undefined;
|
|
12971
13291
|
managed?: boolean | undefined;
|
|
@@ -13016,6 +13336,7 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
13016
13336
|
mediumType?: string | undefined;
|
|
13017
13337
|
title?: string | undefined;
|
|
13018
13338
|
expiresAt?: string | undefined;
|
|
13339
|
+
source?: Record<string, any> | undefined;
|
|
13019
13340
|
profile?: Record<string, any> | undefined;
|
|
13020
13341
|
updatedAt?: string | undefined;
|
|
13021
13342
|
tags?: string[] | undefined;
|
|
@@ -13026,7 +13347,6 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
13026
13347
|
replyCount?: number | undefined;
|
|
13027
13348
|
sync?: boolean | undefined;
|
|
13028
13349
|
xerId?: string | undefined;
|
|
13029
|
-
source?: Record<string, any> | undefined;
|
|
13030
13350
|
teamId?: string | undefined;
|
|
13031
13351
|
askedAt?: string | undefined;
|
|
13032
13352
|
managed?: boolean | undefined;
|
|
@@ -13199,6 +13519,7 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
13199
13519
|
options?: ("MESSAGE_OPTION_UNSPECIFIED" | "MESSAGE_OPTION_ACT_AS_MANAGER" | "MESSAGE_OPTION_DISPLAY_AS_CHANNEL" | "MESSAGE_OPTION_DO_NOT_POST" | "MESSAGE_OPTION_DO_NOT_SEARCH" | "MESSAGE_OPTION_DO_NOT_SEND_APP" | "MESSAGE_OPTION_DO_NOT_UPDATE_DESK" | "MESSAGE_OPTION_IMMUTABLE" | "MESSAGE_OPTION_PRIVATE" | "MESSAGE_OPTION_SILENT_TO_MANAGER" | "MESSAGE_OPTION_SILENT_TO_USER")[] | undefined;
|
|
13200
13520
|
id?: string | undefined;
|
|
13201
13521
|
channelId?: string | undefined;
|
|
13522
|
+
requestId?: string | undefined;
|
|
13202
13523
|
form?: Record<string, any> | undefined;
|
|
13203
13524
|
blocks?: Record<string, any>[] | undefined;
|
|
13204
13525
|
updatedAt?: string | undefined;
|
|
@@ -13246,7 +13567,6 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
13246
13567
|
marketing?: Record<string, any> | undefined;
|
|
13247
13568
|
plainText?: string | undefined;
|
|
13248
13569
|
reactions?: Record<string, any>[] | undefined;
|
|
13249
|
-
requestId?: string | undefined;
|
|
13250
13570
|
alertLevel?: "MESSAGE_ALERT_LEVEL_UNSPECIFIED" | "MESSAGE_ALERT_LEVEL_ALERT" | "MESSAGE_ALERT_LEVEL_UNREAD" | "MESSAGE_ALERT_LEVEL_NONE" | undefined;
|
|
13251
13571
|
personType?: string | undefined;
|
|
13252
13572
|
supportBot?: Record<string, any> | undefined;
|
|
@@ -13262,6 +13582,7 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
13262
13582
|
options?: ("MESSAGE_OPTION_UNSPECIFIED" | "MESSAGE_OPTION_ACT_AS_MANAGER" | "MESSAGE_OPTION_DISPLAY_AS_CHANNEL" | "MESSAGE_OPTION_DO_NOT_POST" | "MESSAGE_OPTION_DO_NOT_SEARCH" | "MESSAGE_OPTION_DO_NOT_SEND_APP" | "MESSAGE_OPTION_DO_NOT_UPDATE_DESK" | "MESSAGE_OPTION_IMMUTABLE" | "MESSAGE_OPTION_PRIVATE" | "MESSAGE_OPTION_SILENT_TO_MANAGER" | "MESSAGE_OPTION_SILENT_TO_USER")[] | undefined;
|
|
13263
13583
|
id?: string | undefined;
|
|
13264
13584
|
channelId?: string | undefined;
|
|
13585
|
+
requestId?: string | undefined;
|
|
13265
13586
|
form?: Record<string, any> | undefined;
|
|
13266
13587
|
blocks?: Record<string, any>[] | undefined;
|
|
13267
13588
|
updatedAt?: string | undefined;
|
|
@@ -13309,7 +13630,6 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
13309
13630
|
marketing?: Record<string, any> | undefined;
|
|
13310
13631
|
plainText?: string | undefined;
|
|
13311
13632
|
reactions?: Record<string, any>[] | undefined;
|
|
13312
|
-
requestId?: string | undefined;
|
|
13313
13633
|
alertLevel?: "MESSAGE_ALERT_LEVEL_UNSPECIFIED" | "MESSAGE_ALERT_LEVEL_ALERT" | "MESSAGE_ALERT_LEVEL_UNREAD" | "MESSAGE_ALERT_LEVEL_NONE" | undefined;
|
|
13314
13634
|
personType?: string | undefined;
|
|
13315
13635
|
supportBot?: Record<string, any> | undefined;
|
|
@@ -13331,6 +13651,7 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
13331
13651
|
mediumType?: string | undefined;
|
|
13332
13652
|
title?: string | undefined;
|
|
13333
13653
|
expiresAt?: string | undefined;
|
|
13654
|
+
source?: Record<string, any> | undefined;
|
|
13334
13655
|
profile?: Record<string, any> | undefined;
|
|
13335
13656
|
updatedAt?: string | undefined;
|
|
13336
13657
|
tags?: string[] | undefined;
|
|
@@ -13341,7 +13662,6 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
13341
13662
|
replyCount?: number | undefined;
|
|
13342
13663
|
sync?: boolean | undefined;
|
|
13343
13664
|
xerId?: string | undefined;
|
|
13344
|
-
source?: Record<string, any> | undefined;
|
|
13345
13665
|
teamId?: string | undefined;
|
|
13346
13666
|
askedAt?: string | undefined;
|
|
13347
13667
|
managed?: boolean | undefined;
|
|
@@ -13389,6 +13709,7 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
13389
13709
|
options?: ("MESSAGE_OPTION_UNSPECIFIED" | "MESSAGE_OPTION_ACT_AS_MANAGER" | "MESSAGE_OPTION_DISPLAY_AS_CHANNEL" | "MESSAGE_OPTION_DO_NOT_POST" | "MESSAGE_OPTION_DO_NOT_SEARCH" | "MESSAGE_OPTION_DO_NOT_SEND_APP" | "MESSAGE_OPTION_DO_NOT_UPDATE_DESK" | "MESSAGE_OPTION_IMMUTABLE" | "MESSAGE_OPTION_PRIVATE" | "MESSAGE_OPTION_SILENT_TO_MANAGER" | "MESSAGE_OPTION_SILENT_TO_USER")[] | undefined;
|
|
13390
13710
|
id?: string | undefined;
|
|
13391
13711
|
channelId?: string | undefined;
|
|
13712
|
+
requestId?: string | undefined;
|
|
13392
13713
|
form?: Record<string, any> | undefined;
|
|
13393
13714
|
blocks?: Record<string, any>[] | undefined;
|
|
13394
13715
|
updatedAt?: string | undefined;
|
|
@@ -13436,7 +13757,6 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
13436
13757
|
marketing?: Record<string, any> | undefined;
|
|
13437
13758
|
plainText?: string | undefined;
|
|
13438
13759
|
reactions?: Record<string, any>[] | undefined;
|
|
13439
|
-
requestId?: string | undefined;
|
|
13440
13760
|
alertLevel?: "MESSAGE_ALERT_LEVEL_UNSPECIFIED" | "MESSAGE_ALERT_LEVEL_ALERT" | "MESSAGE_ALERT_LEVEL_UNREAD" | "MESSAGE_ALERT_LEVEL_NONE" | undefined;
|
|
13441
13761
|
personType?: string | undefined;
|
|
13442
13762
|
supportBot?: Record<string, any> | undefined;
|
|
@@ -13458,6 +13778,7 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
13458
13778
|
mediumType?: string | undefined;
|
|
13459
13779
|
title?: string | undefined;
|
|
13460
13780
|
expiresAt?: string | undefined;
|
|
13781
|
+
source?: Record<string, any> | undefined;
|
|
13461
13782
|
profile?: Record<string, any> | undefined;
|
|
13462
13783
|
updatedAt?: string | undefined;
|
|
13463
13784
|
tags?: string[] | undefined;
|
|
@@ -13468,7 +13789,6 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
13468
13789
|
replyCount?: number | undefined;
|
|
13469
13790
|
sync?: boolean | undefined;
|
|
13470
13791
|
xerId?: string | undefined;
|
|
13471
|
-
source?: Record<string, any> | undefined;
|
|
13472
13792
|
teamId?: string | undefined;
|
|
13473
13793
|
askedAt?: string | undefined;
|
|
13474
13794
|
managed?: boolean | undefined;
|
|
@@ -13516,6 +13836,7 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
13516
13836
|
options?: ("MESSAGE_OPTION_UNSPECIFIED" | "MESSAGE_OPTION_ACT_AS_MANAGER" | "MESSAGE_OPTION_DISPLAY_AS_CHANNEL" | "MESSAGE_OPTION_DO_NOT_POST" | "MESSAGE_OPTION_DO_NOT_SEARCH" | "MESSAGE_OPTION_DO_NOT_SEND_APP" | "MESSAGE_OPTION_DO_NOT_UPDATE_DESK" | "MESSAGE_OPTION_IMMUTABLE" | "MESSAGE_OPTION_PRIVATE" | "MESSAGE_OPTION_SILENT_TO_MANAGER" | "MESSAGE_OPTION_SILENT_TO_USER")[] | undefined;
|
|
13517
13837
|
id?: string | undefined;
|
|
13518
13838
|
channelId?: string | undefined;
|
|
13839
|
+
requestId?: string | undefined;
|
|
13519
13840
|
form?: Record<string, any> | undefined;
|
|
13520
13841
|
blocks?: Record<string, any>[] | undefined;
|
|
13521
13842
|
updatedAt?: string | undefined;
|
|
@@ -13563,7 +13884,6 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
13563
13884
|
marketing?: Record<string, any> | undefined;
|
|
13564
13885
|
plainText?: string | undefined;
|
|
13565
13886
|
reactions?: Record<string, any>[] | undefined;
|
|
13566
|
-
requestId?: string | undefined;
|
|
13567
13887
|
alertLevel?: "MESSAGE_ALERT_LEVEL_UNSPECIFIED" | "MESSAGE_ALERT_LEVEL_ALERT" | "MESSAGE_ALERT_LEVEL_UNREAD" | "MESSAGE_ALERT_LEVEL_NONE" | undefined;
|
|
13568
13888
|
personType?: string | undefined;
|
|
13569
13889
|
supportBot?: Record<string, any> | undefined;
|
|
@@ -13768,6 +14088,7 @@ export declare const MessagingPrebuiltValidateEntityInputProtoSchema: z.ZodObjec
|
|
|
13768
14088
|
language?: string | undefined;
|
|
13769
14089
|
id?: string | undefined;
|
|
13770
14090
|
channelId?: string | undefined;
|
|
14091
|
+
requestId?: string | undefined;
|
|
13771
14092
|
blocks?: Record<string, any>[] | undefined;
|
|
13772
14093
|
updatedAt?: string | undefined;
|
|
13773
14094
|
version?: string | undefined;
|
|
@@ -13782,7 +14103,6 @@ export declare const MessagingPrebuiltValidateEntityInputProtoSchema: z.ZodObjec
|
|
|
13782
14103
|
chatType?: string | undefined;
|
|
13783
14104
|
personId?: string | undefined;
|
|
13784
14105
|
plainText?: string | undefined;
|
|
13785
|
-
requestId?: string | undefined;
|
|
13786
14106
|
personType?: string | undefined;
|
|
13787
14107
|
writingType?: "WRITING_TYPE_UNSPECIFIED" | "WRITING_TYPE_STANDARD" | "WRITING_TYPE_CUSTOM" | "WRITING_TYPE_EMAIL" | undefined;
|
|
13788
14108
|
customPayload?: {
|
|
@@ -13793,6 +14113,7 @@ export declare const MessagingPrebuiltValidateEntityInputProtoSchema: z.ZodObjec
|
|
|
13793
14113
|
language?: string | undefined;
|
|
13794
14114
|
id?: string | undefined;
|
|
13795
14115
|
channelId?: string | undefined;
|
|
14116
|
+
requestId?: string | undefined;
|
|
13796
14117
|
blocks?: Record<string, any>[] | undefined;
|
|
13797
14118
|
updatedAt?: string | undefined;
|
|
13798
14119
|
version?: string | undefined;
|
|
@@ -13807,7 +14128,6 @@ export declare const MessagingPrebuiltValidateEntityInputProtoSchema: z.ZodObjec
|
|
|
13807
14128
|
chatType?: string | undefined;
|
|
13808
14129
|
personId?: string | undefined;
|
|
13809
14130
|
plainText?: string | undefined;
|
|
13810
|
-
requestId?: string | undefined;
|
|
13811
14131
|
personType?: string | undefined;
|
|
13812
14132
|
writingType?: "WRITING_TYPE_UNSPECIFIED" | "WRITING_TYPE_STANDARD" | "WRITING_TYPE_CUSTOM" | "WRITING_TYPE_EMAIL" | undefined;
|
|
13813
14133
|
customPayload?: {
|
|
@@ -13824,6 +14144,7 @@ export declare const MessagingPrebuiltValidateEntityInputProtoSchema: z.ZodObjec
|
|
|
13824
14144
|
language?: string | undefined;
|
|
13825
14145
|
id?: string | undefined;
|
|
13826
14146
|
channelId?: string | undefined;
|
|
14147
|
+
requestId?: string | undefined;
|
|
13827
14148
|
blocks?: Record<string, any>[] | undefined;
|
|
13828
14149
|
updatedAt?: string | undefined;
|
|
13829
14150
|
version?: string | undefined;
|
|
@@ -13838,7 +14159,6 @@ export declare const MessagingPrebuiltValidateEntityInputProtoSchema: z.ZodObjec
|
|
|
13838
14159
|
chatType?: string | undefined;
|
|
13839
14160
|
personId?: string | undefined;
|
|
13840
14161
|
plainText?: string | undefined;
|
|
13841
|
-
requestId?: string | undefined;
|
|
13842
14162
|
personType?: string | undefined;
|
|
13843
14163
|
writingType?: "WRITING_TYPE_UNSPECIFIED" | "WRITING_TYPE_STANDARD" | "WRITING_TYPE_CUSTOM" | "WRITING_TYPE_EMAIL" | undefined;
|
|
13844
14164
|
customPayload?: {
|
|
@@ -13855,6 +14175,7 @@ export declare const MessagingPrebuiltValidateEntityInputProtoSchema: z.ZodObjec
|
|
|
13855
14175
|
language?: string | undefined;
|
|
13856
14176
|
id?: string | undefined;
|
|
13857
14177
|
channelId?: string | undefined;
|
|
14178
|
+
requestId?: string | undefined;
|
|
13858
14179
|
blocks?: Record<string, any>[] | undefined;
|
|
13859
14180
|
updatedAt?: string | undefined;
|
|
13860
14181
|
version?: string | undefined;
|
|
@@ -13869,7 +14190,6 @@ export declare const MessagingPrebuiltValidateEntityInputProtoSchema: z.ZodObjec
|
|
|
13869
14190
|
chatType?: string | undefined;
|
|
13870
14191
|
personId?: string | undefined;
|
|
13871
14192
|
plainText?: string | undefined;
|
|
13872
|
-
requestId?: string | undefined;
|
|
13873
14193
|
personType?: string | undefined;
|
|
13874
14194
|
writingType?: "WRITING_TYPE_UNSPECIFIED" | "WRITING_TYPE_STANDARD" | "WRITING_TYPE_CUSTOM" | "WRITING_TYPE_EMAIL" | undefined;
|
|
13875
14195
|
customPayload?: {
|
|
@@ -13965,6 +14285,7 @@ export declare const MessagingPrebuiltGetCustomEditorWamInputProtoSchema: z.ZodO
|
|
|
13965
14285
|
language?: string | undefined;
|
|
13966
14286
|
id?: string | undefined;
|
|
13967
14287
|
channelId?: string | undefined;
|
|
14288
|
+
requestId?: string | undefined;
|
|
13968
14289
|
blocks?: Record<string, any>[] | undefined;
|
|
13969
14290
|
updatedAt?: string | undefined;
|
|
13970
14291
|
version?: string | undefined;
|
|
@@ -13979,7 +14300,6 @@ export declare const MessagingPrebuiltGetCustomEditorWamInputProtoSchema: z.ZodO
|
|
|
13979
14300
|
chatType?: string | undefined;
|
|
13980
14301
|
personId?: string | undefined;
|
|
13981
14302
|
plainText?: string | undefined;
|
|
13982
|
-
requestId?: string | undefined;
|
|
13983
14303
|
personType?: string | undefined;
|
|
13984
14304
|
writingType?: "WRITING_TYPE_UNSPECIFIED" | "WRITING_TYPE_STANDARD" | "WRITING_TYPE_CUSTOM" | "WRITING_TYPE_EMAIL" | undefined;
|
|
13985
14305
|
customPayload?: {
|
|
@@ -13990,6 +14310,7 @@ export declare const MessagingPrebuiltGetCustomEditorWamInputProtoSchema: z.ZodO
|
|
|
13990
14310
|
language?: string | undefined;
|
|
13991
14311
|
id?: string | undefined;
|
|
13992
14312
|
channelId?: string | undefined;
|
|
14313
|
+
requestId?: string | undefined;
|
|
13993
14314
|
blocks?: Record<string, any>[] | undefined;
|
|
13994
14315
|
updatedAt?: string | undefined;
|
|
13995
14316
|
version?: string | undefined;
|
|
@@ -14004,7 +14325,6 @@ export declare const MessagingPrebuiltGetCustomEditorWamInputProtoSchema: z.ZodO
|
|
|
14004
14325
|
chatType?: string | undefined;
|
|
14005
14326
|
personId?: string | undefined;
|
|
14006
14327
|
plainText?: string | undefined;
|
|
14007
|
-
requestId?: string | undefined;
|
|
14008
14328
|
personType?: string | undefined;
|
|
14009
14329
|
writingType?: "WRITING_TYPE_UNSPECIFIED" | "WRITING_TYPE_STANDARD" | "WRITING_TYPE_CUSTOM" | "WRITING_TYPE_EMAIL" | undefined;
|
|
14010
14330
|
customPayload?: {
|
|
@@ -14019,6 +14339,7 @@ export declare const MessagingPrebuiltGetCustomEditorWamInputProtoSchema: z.ZodO
|
|
|
14019
14339
|
language?: string | undefined;
|
|
14020
14340
|
id?: string | undefined;
|
|
14021
14341
|
channelId?: string | undefined;
|
|
14342
|
+
requestId?: string | undefined;
|
|
14022
14343
|
blocks?: Record<string, any>[] | undefined;
|
|
14023
14344
|
updatedAt?: string | undefined;
|
|
14024
14345
|
version?: string | undefined;
|
|
@@ -14033,7 +14354,6 @@ export declare const MessagingPrebuiltGetCustomEditorWamInputProtoSchema: z.ZodO
|
|
|
14033
14354
|
chatType?: string | undefined;
|
|
14034
14355
|
personId?: string | undefined;
|
|
14035
14356
|
plainText?: string | undefined;
|
|
14036
|
-
requestId?: string | undefined;
|
|
14037
14357
|
personType?: string | undefined;
|
|
14038
14358
|
writingType?: "WRITING_TYPE_UNSPECIFIED" | "WRITING_TYPE_STANDARD" | "WRITING_TYPE_CUSTOM" | "WRITING_TYPE_EMAIL" | undefined;
|
|
14039
14359
|
customPayload?: {
|
|
@@ -14052,6 +14372,7 @@ export declare const MessagingPrebuiltGetCustomEditorWamInputProtoSchema: z.ZodO
|
|
|
14052
14372
|
language?: string | undefined;
|
|
14053
14373
|
id?: string | undefined;
|
|
14054
14374
|
channelId?: string | undefined;
|
|
14375
|
+
requestId?: string | undefined;
|
|
14055
14376
|
blocks?: Record<string, any>[] | undefined;
|
|
14056
14377
|
updatedAt?: string | undefined;
|
|
14057
14378
|
version?: string | undefined;
|
|
@@ -14066,7 +14387,6 @@ export declare const MessagingPrebuiltGetCustomEditorWamInputProtoSchema: z.ZodO
|
|
|
14066
14387
|
chatType?: string | undefined;
|
|
14067
14388
|
personId?: string | undefined;
|
|
14068
14389
|
plainText?: string | undefined;
|
|
14069
|
-
requestId?: string | undefined;
|
|
14070
14390
|
personType?: string | undefined;
|
|
14071
14391
|
writingType?: "WRITING_TYPE_UNSPECIFIED" | "WRITING_TYPE_STANDARD" | "WRITING_TYPE_CUSTOM" | "WRITING_TYPE_EMAIL" | undefined;
|
|
14072
14392
|
customPayload?: {
|