@channel.io/app-sdk-core 0.25.0 → 0.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/extensions/apikey.d.ts +2 -2
- package/dist/extensions/calendar.d.ts +2 -2
- package/dist/extensions/commerce.d.ts +20 -12
- package/dist/extensions/commerce.d.ts.map +1 -1
- package/dist/extensions/commerce.js +14 -3
- package/dist/extensions/commerce.js.map +1 -1
- package/dist/extensions/config.d.ts +133 -81
- package/dist/extensions/config.d.ts.map +1 -1
- package/dist/extensions/config.js +14 -0
- package/dist/extensions/config.js.map +1 -1
- package/dist/extensions/datasource.d.ts +22 -22
- package/dist/extensions/hook.d.ts +569 -4
- package/dist/extensions/hook.d.ts.map +1 -1
- package/dist/extensions/hook.js +57 -1
- package/dist/extensions/hook.js.map +1 -1
- package/dist/extensions/index.d.ts +3 -2
- package/dist/extensions/index.d.ts.map +1 -1
- package/dist/extensions/index.js +3 -2
- package/dist/extensions/index.js.map +1 -1
- package/dist/extensions/notebook.d.ts +6 -6
- package/dist/extensions/oauth.d.ts +206 -21
- package/dist/extensions/oauth.d.ts.map +1 -1
- package/dist/extensions/oauth.js +38 -0
- package/dist/extensions/oauth.js.map +1 -1
- package/dist/extensions/proto-contracts.d.ts +3 -1
- package/dist/extensions/proto-contracts.d.ts.map +1 -1
- package/dist/gen/channel/app/sdk/v1/common.zod.d.ts +10 -10
- package/dist/gen/channel/app/sdk/v1/context.d.ts +12 -0
- package/dist/gen/channel/app/sdk/v1/context.d.ts.map +1 -1
- package/dist/gen/channel/app/sdk/v1/context.zod.d.ts +67 -6
- package/dist/gen/channel/app/sdk/v1/context.zod.d.ts.map +1 -1
- package/dist/gen/channel/app/sdk/v1/context.zod.js +9 -0
- package/dist/gen/channel/app/sdk/v1/context.zod.js.map +1 -1
- package/dist/gen/channel/app/sdk/v1/extension.d.ts +94 -2
- package/dist/gen/channel/app/sdk/v1/extension.d.ts.map +1 -1
- package/dist/gen/channel/app/sdk/v1/extension.zod.d.ts +570 -172
- 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/channel/app/sdk/v1/function.zod.d.ts +66 -12
- package/dist/gen/channel/app/sdk/v1/function.zod.d.ts.map +1 -1
- package/dist/gen/channel/app/sdk/v1/native.d.ts +30 -0
- package/dist/gen/channel/app/sdk/v1/native.d.ts.map +1 -1
- package/dist/gen/channel/app/sdk/v1/native.js.map +1 -1
- package/dist/gen/channel/app/sdk/v1/native.zod.d.ts +268 -12
- package/dist/gen/channel/app/sdk/v1/native.zod.d.ts.map +1 -1
- package/dist/gen/channel/app/sdk/v1/native.zod.js +27 -0
- package/dist/gen/channel/app/sdk/v1/native.zod.js.map +1 -1
- package/dist/schemas/context.d.ts +25 -0
- package/dist/schemas/context.d.ts.map +1 -0
- package/dist/schemas/context.js +13 -0
- package/dist/schemas/context.js.map +1 -0
- 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 +311 -0
- package/dist/schemas/native.d.ts.map +1 -1
- package/dist/schemas/native.js +45 -0
- package/dist/schemas/native.js.map +1 -1
- package/dist/schemas/redirect.d.ts +4 -0
- package/dist/schemas/redirect.d.ts.map +1 -0
- package/dist/schemas/redirect.js +18 -0
- package/dist/schemas/redirect.js.map +1 -0
- package/dist/types/context.d.ts +11 -2
- package/dist/types/context.d.ts.map +1 -1
- package/dist/types/native.d.ts +34 -0
- package/dist/types/native.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -87,9 +87,9 @@ export declare const ApiKeyGetAuthConfigOutputProtoSchema: z.ZodObject<{
|
|
|
87
87
|
}>>, "many">>;
|
|
88
88
|
providerName: z.ZodOptional<z.ZodString>;
|
|
89
89
|
}, "strip", z.ZodTypeAny, {
|
|
90
|
+
authScope?: string | undefined;
|
|
90
91
|
providerName?: string | undefined;
|
|
91
92
|
authType?: string | undefined;
|
|
92
|
-
authScope?: string | undefined;
|
|
93
93
|
fields?: {
|
|
94
94
|
name?: string | undefined;
|
|
95
95
|
description?: string | undefined;
|
|
@@ -101,9 +101,9 @@ export declare const ApiKeyGetAuthConfigOutputProtoSchema: z.ZodObject<{
|
|
|
101
101
|
validationRegex?: string | undefined;
|
|
102
102
|
}[] | undefined;
|
|
103
103
|
}, {
|
|
104
|
+
authScope?: string | undefined;
|
|
104
105
|
providerName?: string | undefined;
|
|
105
106
|
authType?: string | undefined;
|
|
106
|
-
authScope?: string | undefined;
|
|
107
107
|
fields?: {
|
|
108
108
|
name?: string | undefined;
|
|
109
109
|
description?: string | undefined;
|
|
@@ -2530,7 +2530,6 @@ export declare const ConfigFieldProtoSchema: z.ZodObject<{
|
|
|
2530
2530
|
min?: number | undefined;
|
|
2531
2531
|
max?: number | undefined;
|
|
2532
2532
|
step?: number | undefined;
|
|
2533
|
-
rows?: number | undefined;
|
|
2534
2533
|
i18nMap?: Record<string, {
|
|
2535
2534
|
message?: string | undefined;
|
|
2536
2535
|
description?: string | undefined;
|
|
@@ -2559,6 +2558,7 @@ export declare const ConfigFieldProtoSchema: z.ZodObject<{
|
|
|
2559
2558
|
noneLabel?: string | undefined;
|
|
2560
2559
|
onChangeSuccessMessage?: string | undefined;
|
|
2561
2560
|
}> | undefined;
|
|
2561
|
+
rows?: number | undefined;
|
|
2562
2562
|
maskType?: string | undefined;
|
|
2563
2563
|
validationRegex?: string | undefined;
|
|
2564
2564
|
media?: {
|
|
@@ -2723,7 +2723,6 @@ export declare const ConfigFieldProtoSchema: z.ZodObject<{
|
|
|
2723
2723
|
min?: number | undefined;
|
|
2724
2724
|
max?: number | undefined;
|
|
2725
2725
|
step?: number | undefined;
|
|
2726
|
-
rows?: number | undefined;
|
|
2727
2726
|
i18nMap?: Record<string, {
|
|
2728
2727
|
message?: string | undefined;
|
|
2729
2728
|
description?: string | undefined;
|
|
@@ -2752,6 +2751,7 @@ export declare const ConfigFieldProtoSchema: z.ZodObject<{
|
|
|
2752
2751
|
noneLabel?: string | undefined;
|
|
2753
2752
|
onChangeSuccessMessage?: string | undefined;
|
|
2754
2753
|
}> | undefined;
|
|
2754
|
+
rows?: number | undefined;
|
|
2755
2755
|
maskType?: string | undefined;
|
|
2756
2756
|
validationRegex?: string | undefined;
|
|
2757
2757
|
media?: {
|
|
@@ -3739,7 +3739,6 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
3739
3739
|
min?: number | undefined;
|
|
3740
3740
|
max?: number | undefined;
|
|
3741
3741
|
step?: number | undefined;
|
|
3742
|
-
rows?: number | undefined;
|
|
3743
3742
|
i18nMap?: Record<string, {
|
|
3744
3743
|
message?: string | undefined;
|
|
3745
3744
|
description?: string | undefined;
|
|
@@ -3768,6 +3767,7 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
3768
3767
|
noneLabel?: string | undefined;
|
|
3769
3768
|
onChangeSuccessMessage?: string | undefined;
|
|
3770
3769
|
}> | undefined;
|
|
3770
|
+
rows?: number | undefined;
|
|
3771
3771
|
maskType?: string | undefined;
|
|
3772
3772
|
validationRegex?: string | undefined;
|
|
3773
3773
|
media?: {
|
|
@@ -3932,7 +3932,6 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
3932
3932
|
min?: number | undefined;
|
|
3933
3933
|
max?: number | undefined;
|
|
3934
3934
|
step?: number | undefined;
|
|
3935
|
-
rows?: number | undefined;
|
|
3936
3935
|
i18nMap?: Record<string, {
|
|
3937
3936
|
message?: string | undefined;
|
|
3938
3937
|
description?: string | undefined;
|
|
@@ -3961,6 +3960,7 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
3961
3960
|
noneLabel?: string | undefined;
|
|
3962
3961
|
onChangeSuccessMessage?: string | undefined;
|
|
3963
3962
|
}> | undefined;
|
|
3963
|
+
rows?: number | undefined;
|
|
3964
3964
|
maskType?: string | undefined;
|
|
3965
3965
|
validationRegex?: string | undefined;
|
|
3966
3966
|
media?: {
|
|
@@ -4609,6 +4609,7 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
4609
4609
|
successMessage: z.ZodOptional<z.ZodString>;
|
|
4610
4610
|
showInOverviewMenu: z.ZodOptional<z.ZodBoolean>;
|
|
4611
4611
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
4612
|
+
redirectOrigins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4612
4613
|
}, "strip", z.ZodTypeAny, {
|
|
4613
4614
|
params?: Record<string, any> | undefined;
|
|
4614
4615
|
type?: string | undefined;
|
|
@@ -4627,7 +4628,6 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
4627
4628
|
max?: number | undefined;
|
|
4628
4629
|
step?: number | undefined;
|
|
4629
4630
|
appId?: string | undefined;
|
|
4630
|
-
rows?: number | undefined;
|
|
4631
4631
|
i18nMap?: Record<string, {
|
|
4632
4632
|
message?: string | undefined;
|
|
4633
4633
|
description?: string | undefined;
|
|
@@ -4656,6 +4656,7 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
4656
4656
|
noneLabel?: string | undefined;
|
|
4657
4657
|
onChangeSuccessMessage?: string | undefined;
|
|
4658
4658
|
}> | undefined;
|
|
4659
|
+
rows?: number | undefined;
|
|
4659
4660
|
maskType?: string | undefined;
|
|
4660
4661
|
validationRegex?: string | undefined;
|
|
4661
4662
|
fields?: {
|
|
@@ -4671,7 +4672,6 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
4671
4672
|
min?: number | undefined;
|
|
4672
4673
|
max?: number | undefined;
|
|
4673
4674
|
step?: number | undefined;
|
|
4674
|
-
rows?: number | undefined;
|
|
4675
4675
|
i18nMap?: Record<string, {
|
|
4676
4676
|
message?: string | undefined;
|
|
4677
4677
|
description?: string | undefined;
|
|
@@ -4700,6 +4700,7 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
4700
4700
|
noneLabel?: string | undefined;
|
|
4701
4701
|
onChangeSuccessMessage?: string | undefined;
|
|
4702
4702
|
}> | undefined;
|
|
4703
|
+
rows?: number | undefined;
|
|
4703
4704
|
maskType?: string | undefined;
|
|
4704
4705
|
validationRegex?: string | undefined;
|
|
4705
4706
|
media?: {
|
|
@@ -5014,6 +5015,7 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
5014
5015
|
validationFieldKeys?: string[] | undefined;
|
|
5015
5016
|
saveBeforeRun?: boolean | undefined;
|
|
5016
5017
|
afterSuccess?: string[] | undefined;
|
|
5018
|
+
redirectOrigins?: string[] | undefined;
|
|
5017
5019
|
showInOverviewMenu?: boolean | undefined;
|
|
5018
5020
|
}, {
|
|
5019
5021
|
params?: Record<string, any> | undefined;
|
|
@@ -5033,7 +5035,6 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
5033
5035
|
max?: number | undefined;
|
|
5034
5036
|
step?: number | undefined;
|
|
5035
5037
|
appId?: string | undefined;
|
|
5036
|
-
rows?: number | undefined;
|
|
5037
5038
|
i18nMap?: Record<string, {
|
|
5038
5039
|
message?: string | undefined;
|
|
5039
5040
|
description?: string | undefined;
|
|
@@ -5062,6 +5063,7 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
5062
5063
|
noneLabel?: string | undefined;
|
|
5063
5064
|
onChangeSuccessMessage?: string | undefined;
|
|
5064
5065
|
}> | undefined;
|
|
5066
|
+
rows?: number | undefined;
|
|
5065
5067
|
maskType?: string | undefined;
|
|
5066
5068
|
validationRegex?: string | undefined;
|
|
5067
5069
|
fields?: {
|
|
@@ -5077,7 +5079,6 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
5077
5079
|
min?: number | undefined;
|
|
5078
5080
|
max?: number | undefined;
|
|
5079
5081
|
step?: number | undefined;
|
|
5080
|
-
rows?: number | undefined;
|
|
5081
5082
|
i18nMap?: Record<string, {
|
|
5082
5083
|
message?: string | undefined;
|
|
5083
5084
|
description?: string | undefined;
|
|
@@ -5106,6 +5107,7 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
5106
5107
|
noneLabel?: string | undefined;
|
|
5107
5108
|
onChangeSuccessMessage?: string | undefined;
|
|
5108
5109
|
}> | undefined;
|
|
5110
|
+
rows?: number | undefined;
|
|
5109
5111
|
maskType?: string | undefined;
|
|
5110
5112
|
validationRegex?: string | undefined;
|
|
5111
5113
|
media?: {
|
|
@@ -5420,6 +5422,7 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
5420
5422
|
validationFieldKeys?: string[] | undefined;
|
|
5421
5423
|
saveBeforeRun?: boolean | undefined;
|
|
5422
5424
|
afterSuccess?: string[] | undefined;
|
|
5425
|
+
redirectOrigins?: string[] | undefined;
|
|
5423
5426
|
showInOverviewMenu?: boolean | undefined;
|
|
5424
5427
|
}>;
|
|
5425
5428
|
export type ConfigBlockProto = z.infer<typeof ConfigBlockProtoSchema>;
|
|
@@ -6319,7 +6322,6 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
6319
6322
|
min?: number | undefined;
|
|
6320
6323
|
max?: number | undefined;
|
|
6321
6324
|
step?: number | undefined;
|
|
6322
|
-
rows?: number | undefined;
|
|
6323
6325
|
i18nMap?: Record<string, {
|
|
6324
6326
|
message?: string | undefined;
|
|
6325
6327
|
description?: string | undefined;
|
|
@@ -6348,6 +6350,7 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
6348
6350
|
noneLabel?: string | undefined;
|
|
6349
6351
|
onChangeSuccessMessage?: string | undefined;
|
|
6350
6352
|
}> | undefined;
|
|
6353
|
+
rows?: number | undefined;
|
|
6351
6354
|
maskType?: string | undefined;
|
|
6352
6355
|
validationRegex?: string | undefined;
|
|
6353
6356
|
media?: {
|
|
@@ -6512,7 +6515,6 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
6512
6515
|
min?: number | undefined;
|
|
6513
6516
|
max?: number | undefined;
|
|
6514
6517
|
step?: number | undefined;
|
|
6515
|
-
rows?: number | undefined;
|
|
6516
6518
|
i18nMap?: Record<string, {
|
|
6517
6519
|
message?: string | undefined;
|
|
6518
6520
|
description?: string | undefined;
|
|
@@ -6541,6 +6543,7 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
6541
6543
|
noneLabel?: string | undefined;
|
|
6542
6544
|
onChangeSuccessMessage?: string | undefined;
|
|
6543
6545
|
}> | undefined;
|
|
6546
|
+
rows?: number | undefined;
|
|
6544
6547
|
maskType?: string | undefined;
|
|
6545
6548
|
validationRegex?: string | undefined;
|
|
6546
6549
|
media?: {
|
|
@@ -7189,6 +7192,7 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
7189
7192
|
successMessage: z.ZodOptional<z.ZodString>;
|
|
7190
7193
|
showInOverviewMenu: z.ZodOptional<z.ZodBoolean>;
|
|
7191
7194
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
7195
|
+
redirectOrigins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7192
7196
|
}, "strip", z.ZodTypeAny, {
|
|
7193
7197
|
params?: Record<string, any> | undefined;
|
|
7194
7198
|
type?: string | undefined;
|
|
@@ -7207,7 +7211,6 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
7207
7211
|
max?: number | undefined;
|
|
7208
7212
|
step?: number | undefined;
|
|
7209
7213
|
appId?: string | undefined;
|
|
7210
|
-
rows?: number | undefined;
|
|
7211
7214
|
i18nMap?: Record<string, {
|
|
7212
7215
|
message?: string | undefined;
|
|
7213
7216
|
description?: string | undefined;
|
|
@@ -7236,6 +7239,7 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
7236
7239
|
noneLabel?: string | undefined;
|
|
7237
7240
|
onChangeSuccessMessage?: string | undefined;
|
|
7238
7241
|
}> | undefined;
|
|
7242
|
+
rows?: number | undefined;
|
|
7239
7243
|
maskType?: string | undefined;
|
|
7240
7244
|
validationRegex?: string | undefined;
|
|
7241
7245
|
fields?: {
|
|
@@ -7251,7 +7255,6 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
7251
7255
|
min?: number | undefined;
|
|
7252
7256
|
max?: number | undefined;
|
|
7253
7257
|
step?: number | undefined;
|
|
7254
|
-
rows?: number | undefined;
|
|
7255
7258
|
i18nMap?: Record<string, {
|
|
7256
7259
|
message?: string | undefined;
|
|
7257
7260
|
description?: string | undefined;
|
|
@@ -7280,6 +7283,7 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
7280
7283
|
noneLabel?: string | undefined;
|
|
7281
7284
|
onChangeSuccessMessage?: string | undefined;
|
|
7282
7285
|
}> | undefined;
|
|
7286
|
+
rows?: number | undefined;
|
|
7283
7287
|
maskType?: string | undefined;
|
|
7284
7288
|
validationRegex?: string | undefined;
|
|
7285
7289
|
media?: {
|
|
@@ -7594,6 +7598,7 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
7594
7598
|
validationFieldKeys?: string[] | undefined;
|
|
7595
7599
|
saveBeforeRun?: boolean | undefined;
|
|
7596
7600
|
afterSuccess?: string[] | undefined;
|
|
7601
|
+
redirectOrigins?: string[] | undefined;
|
|
7597
7602
|
showInOverviewMenu?: boolean | undefined;
|
|
7598
7603
|
}, {
|
|
7599
7604
|
params?: Record<string, any> | undefined;
|
|
@@ -7613,7 +7618,6 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
7613
7618
|
max?: number | undefined;
|
|
7614
7619
|
step?: number | undefined;
|
|
7615
7620
|
appId?: string | undefined;
|
|
7616
|
-
rows?: number | undefined;
|
|
7617
7621
|
i18nMap?: Record<string, {
|
|
7618
7622
|
message?: string | undefined;
|
|
7619
7623
|
description?: string | undefined;
|
|
@@ -7642,6 +7646,7 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
7642
7646
|
noneLabel?: string | undefined;
|
|
7643
7647
|
onChangeSuccessMessage?: string | undefined;
|
|
7644
7648
|
}> | undefined;
|
|
7649
|
+
rows?: number | undefined;
|
|
7645
7650
|
maskType?: string | undefined;
|
|
7646
7651
|
validationRegex?: string | undefined;
|
|
7647
7652
|
fields?: {
|
|
@@ -7657,7 +7662,6 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
7657
7662
|
min?: number | undefined;
|
|
7658
7663
|
max?: number | undefined;
|
|
7659
7664
|
step?: number | undefined;
|
|
7660
|
-
rows?: number | undefined;
|
|
7661
7665
|
i18nMap?: Record<string, {
|
|
7662
7666
|
message?: string | undefined;
|
|
7663
7667
|
description?: string | undefined;
|
|
@@ -7686,6 +7690,7 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
7686
7690
|
noneLabel?: string | undefined;
|
|
7687
7691
|
onChangeSuccessMessage?: string | undefined;
|
|
7688
7692
|
}> | undefined;
|
|
7693
|
+
rows?: number | undefined;
|
|
7689
7694
|
maskType?: string | undefined;
|
|
7690
7695
|
validationRegex?: string | undefined;
|
|
7691
7696
|
media?: {
|
|
@@ -8000,6 +8005,7 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
8000
8005
|
validationFieldKeys?: string[] | undefined;
|
|
8001
8006
|
saveBeforeRun?: boolean | undefined;
|
|
8002
8007
|
afterSuccess?: string[] | undefined;
|
|
8008
|
+
redirectOrigins?: string[] | undefined;
|
|
8003
8009
|
showInOverviewMenu?: boolean | undefined;
|
|
8004
8010
|
}>>, "many">>;
|
|
8005
8011
|
supportsMultiple: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8673,35 +8679,6 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
8673
8679
|
} | undefined;
|
|
8674
8680
|
} | undefined;
|
|
8675
8681
|
title?: string | undefined;
|
|
8676
|
-
providerName?: string | undefined;
|
|
8677
|
-
i18nMap?: Record<string, {
|
|
8678
|
-
message?: string | undefined;
|
|
8679
|
-
description?: string | undefined;
|
|
8680
|
-
text?: string | undefined;
|
|
8681
|
-
title?: string | undefined;
|
|
8682
|
-
url?: string | undefined;
|
|
8683
|
-
label?: string | undefined;
|
|
8684
|
-
placeholder?: string | undefined;
|
|
8685
|
-
providerName?: string | undefined;
|
|
8686
|
-
helperText?: string | undefined;
|
|
8687
|
-
fieldLabels?: Record<string, string> | undefined;
|
|
8688
|
-
countryCodePlaceholder?: string | undefined;
|
|
8689
|
-
numberPlaceholder?: string | undefined;
|
|
8690
|
-
recipientPlaceholder?: string | undefined;
|
|
8691
|
-
phonePlaceholder?: string | undefined;
|
|
8692
|
-
postcodePlaceholder?: string | undefined;
|
|
8693
|
-
address1Placeholder?: string | undefined;
|
|
8694
|
-
address2Placeholder?: string | undefined;
|
|
8695
|
-
menuLabel?: string | undefined;
|
|
8696
|
-
successMessage?: string | undefined;
|
|
8697
|
-
overviewLabel?: string | undefined;
|
|
8698
|
-
overviewDescription?: string | undefined;
|
|
8699
|
-
nameLabel?: string | undefined;
|
|
8700
|
-
addLabel?: string | undefined;
|
|
8701
|
-
statusLabel?: string | undefined;
|
|
8702
|
-
noneLabel?: string | undefined;
|
|
8703
|
-
onChangeSuccessMessage?: string | undefined;
|
|
8704
|
-
}> | undefined;
|
|
8705
8682
|
settings?: {
|
|
8706
8683
|
description?: string | undefined;
|
|
8707
8684
|
title?: string | undefined;
|
|
@@ -8775,6 +8752,35 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
8775
8752
|
defaultValueMetadataKey?: string | undefined;
|
|
8776
8753
|
}[] | undefined;
|
|
8777
8754
|
} | undefined;
|
|
8755
|
+
i18nMap?: Record<string, {
|
|
8756
|
+
message?: string | undefined;
|
|
8757
|
+
description?: string | undefined;
|
|
8758
|
+
text?: string | undefined;
|
|
8759
|
+
title?: string | undefined;
|
|
8760
|
+
url?: string | undefined;
|
|
8761
|
+
label?: string | undefined;
|
|
8762
|
+
placeholder?: string | undefined;
|
|
8763
|
+
providerName?: string | undefined;
|
|
8764
|
+
helperText?: string | undefined;
|
|
8765
|
+
fieldLabels?: Record<string, string> | undefined;
|
|
8766
|
+
countryCodePlaceholder?: string | undefined;
|
|
8767
|
+
numberPlaceholder?: string | undefined;
|
|
8768
|
+
recipientPlaceholder?: string | undefined;
|
|
8769
|
+
phonePlaceholder?: string | undefined;
|
|
8770
|
+
postcodePlaceholder?: string | undefined;
|
|
8771
|
+
address1Placeholder?: string | undefined;
|
|
8772
|
+
address2Placeholder?: string | undefined;
|
|
8773
|
+
menuLabel?: string | undefined;
|
|
8774
|
+
successMessage?: string | undefined;
|
|
8775
|
+
overviewLabel?: string | undefined;
|
|
8776
|
+
overviewDescription?: string | undefined;
|
|
8777
|
+
nameLabel?: string | undefined;
|
|
8778
|
+
addLabel?: string | undefined;
|
|
8779
|
+
statusLabel?: string | undefined;
|
|
8780
|
+
noneLabel?: string | undefined;
|
|
8781
|
+
onChangeSuccessMessage?: string | undefined;
|
|
8782
|
+
}> | undefined;
|
|
8783
|
+
providerName?: string | undefined;
|
|
8778
8784
|
schemaVersion?: string | undefined;
|
|
8779
8785
|
configScope?: string | undefined;
|
|
8780
8786
|
legacyCredentialFallback?: string | undefined;
|
|
@@ -8801,7 +8807,6 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
8801
8807
|
max?: number | undefined;
|
|
8802
8808
|
step?: number | undefined;
|
|
8803
8809
|
appId?: string | undefined;
|
|
8804
|
-
rows?: number | undefined;
|
|
8805
8810
|
i18nMap?: Record<string, {
|
|
8806
8811
|
message?: string | undefined;
|
|
8807
8812
|
description?: string | undefined;
|
|
@@ -8830,6 +8835,7 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
8830
8835
|
noneLabel?: string | undefined;
|
|
8831
8836
|
onChangeSuccessMessage?: string | undefined;
|
|
8832
8837
|
}> | undefined;
|
|
8838
|
+
rows?: number | undefined;
|
|
8833
8839
|
maskType?: string | undefined;
|
|
8834
8840
|
validationRegex?: string | undefined;
|
|
8835
8841
|
fields?: {
|
|
@@ -8845,7 +8851,6 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
8845
8851
|
min?: number | undefined;
|
|
8846
8852
|
max?: number | undefined;
|
|
8847
8853
|
step?: number | undefined;
|
|
8848
|
-
rows?: number | undefined;
|
|
8849
8854
|
i18nMap?: Record<string, {
|
|
8850
8855
|
message?: string | undefined;
|
|
8851
8856
|
description?: string | undefined;
|
|
@@ -8874,6 +8879,7 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
8874
8879
|
noneLabel?: string | undefined;
|
|
8875
8880
|
onChangeSuccessMessage?: string | undefined;
|
|
8876
8881
|
}> | undefined;
|
|
8882
|
+
rows?: number | undefined;
|
|
8877
8883
|
maskType?: string | undefined;
|
|
8878
8884
|
validationRegex?: string | undefined;
|
|
8879
8885
|
media?: {
|
|
@@ -9188,6 +9194,7 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
9188
9194
|
validationFieldKeys?: string[] | undefined;
|
|
9189
9195
|
saveBeforeRun?: boolean | undefined;
|
|
9190
9196
|
afterSuccess?: string[] | undefined;
|
|
9197
|
+
redirectOrigins?: string[] | undefined;
|
|
9191
9198
|
showInOverviewMenu?: boolean | undefined;
|
|
9192
9199
|
}[] | undefined;
|
|
9193
9200
|
supportsMultiple?: boolean | undefined;
|
|
@@ -9244,35 +9251,6 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
9244
9251
|
} | undefined;
|
|
9245
9252
|
} | undefined;
|
|
9246
9253
|
title?: string | undefined;
|
|
9247
|
-
providerName?: string | undefined;
|
|
9248
|
-
i18nMap?: Record<string, {
|
|
9249
|
-
message?: string | undefined;
|
|
9250
|
-
description?: string | undefined;
|
|
9251
|
-
text?: string | undefined;
|
|
9252
|
-
title?: string | undefined;
|
|
9253
|
-
url?: string | undefined;
|
|
9254
|
-
label?: string | undefined;
|
|
9255
|
-
placeholder?: string | undefined;
|
|
9256
|
-
providerName?: string | undefined;
|
|
9257
|
-
helperText?: string | undefined;
|
|
9258
|
-
fieldLabels?: Record<string, string> | undefined;
|
|
9259
|
-
countryCodePlaceholder?: string | undefined;
|
|
9260
|
-
numberPlaceholder?: string | undefined;
|
|
9261
|
-
recipientPlaceholder?: string | undefined;
|
|
9262
|
-
phonePlaceholder?: string | undefined;
|
|
9263
|
-
postcodePlaceholder?: string | undefined;
|
|
9264
|
-
address1Placeholder?: string | undefined;
|
|
9265
|
-
address2Placeholder?: string | undefined;
|
|
9266
|
-
menuLabel?: string | undefined;
|
|
9267
|
-
successMessage?: string | undefined;
|
|
9268
|
-
overviewLabel?: string | undefined;
|
|
9269
|
-
overviewDescription?: string | undefined;
|
|
9270
|
-
nameLabel?: string | undefined;
|
|
9271
|
-
addLabel?: string | undefined;
|
|
9272
|
-
statusLabel?: string | undefined;
|
|
9273
|
-
noneLabel?: string | undefined;
|
|
9274
|
-
onChangeSuccessMessage?: string | undefined;
|
|
9275
|
-
}> | undefined;
|
|
9276
9254
|
settings?: {
|
|
9277
9255
|
description?: string | undefined;
|
|
9278
9256
|
title?: string | undefined;
|
|
@@ -9346,6 +9324,35 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
9346
9324
|
defaultValueMetadataKey?: string | undefined;
|
|
9347
9325
|
}[] | undefined;
|
|
9348
9326
|
} | undefined;
|
|
9327
|
+
i18nMap?: Record<string, {
|
|
9328
|
+
message?: string | undefined;
|
|
9329
|
+
description?: string | undefined;
|
|
9330
|
+
text?: string | undefined;
|
|
9331
|
+
title?: string | undefined;
|
|
9332
|
+
url?: string | undefined;
|
|
9333
|
+
label?: string | undefined;
|
|
9334
|
+
placeholder?: string | undefined;
|
|
9335
|
+
providerName?: string | undefined;
|
|
9336
|
+
helperText?: string | undefined;
|
|
9337
|
+
fieldLabels?: Record<string, string> | undefined;
|
|
9338
|
+
countryCodePlaceholder?: string | undefined;
|
|
9339
|
+
numberPlaceholder?: string | undefined;
|
|
9340
|
+
recipientPlaceholder?: string | undefined;
|
|
9341
|
+
phonePlaceholder?: string | undefined;
|
|
9342
|
+
postcodePlaceholder?: string | undefined;
|
|
9343
|
+
address1Placeholder?: string | undefined;
|
|
9344
|
+
address2Placeholder?: string | undefined;
|
|
9345
|
+
menuLabel?: string | undefined;
|
|
9346
|
+
successMessage?: string | undefined;
|
|
9347
|
+
overviewLabel?: string | undefined;
|
|
9348
|
+
overviewDescription?: string | undefined;
|
|
9349
|
+
nameLabel?: string | undefined;
|
|
9350
|
+
addLabel?: string | undefined;
|
|
9351
|
+
statusLabel?: string | undefined;
|
|
9352
|
+
noneLabel?: string | undefined;
|
|
9353
|
+
onChangeSuccessMessage?: string | undefined;
|
|
9354
|
+
}> | undefined;
|
|
9355
|
+
providerName?: string | undefined;
|
|
9349
9356
|
schemaVersion?: string | undefined;
|
|
9350
9357
|
configScope?: string | undefined;
|
|
9351
9358
|
legacyCredentialFallback?: string | undefined;
|
|
@@ -9372,7 +9379,6 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
9372
9379
|
max?: number | undefined;
|
|
9373
9380
|
step?: number | undefined;
|
|
9374
9381
|
appId?: string | undefined;
|
|
9375
|
-
rows?: number | undefined;
|
|
9376
9382
|
i18nMap?: Record<string, {
|
|
9377
9383
|
message?: string | undefined;
|
|
9378
9384
|
description?: string | undefined;
|
|
@@ -9401,6 +9407,7 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
9401
9407
|
noneLabel?: string | undefined;
|
|
9402
9408
|
onChangeSuccessMessage?: string | undefined;
|
|
9403
9409
|
}> | undefined;
|
|
9410
|
+
rows?: number | undefined;
|
|
9404
9411
|
maskType?: string | undefined;
|
|
9405
9412
|
validationRegex?: string | undefined;
|
|
9406
9413
|
fields?: {
|
|
@@ -9416,7 +9423,6 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
9416
9423
|
min?: number | undefined;
|
|
9417
9424
|
max?: number | undefined;
|
|
9418
9425
|
step?: number | undefined;
|
|
9419
|
-
rows?: number | undefined;
|
|
9420
9426
|
i18nMap?: Record<string, {
|
|
9421
9427
|
message?: string | undefined;
|
|
9422
9428
|
description?: string | undefined;
|
|
@@ -9445,6 +9451,7 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
9445
9451
|
noneLabel?: string | undefined;
|
|
9446
9452
|
onChangeSuccessMessage?: string | undefined;
|
|
9447
9453
|
}> | undefined;
|
|
9454
|
+
rows?: number | undefined;
|
|
9448
9455
|
maskType?: string | undefined;
|
|
9449
9456
|
validationRegex?: string | undefined;
|
|
9450
9457
|
media?: {
|
|
@@ -9759,6 +9766,7 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
9759
9766
|
validationFieldKeys?: string[] | undefined;
|
|
9760
9767
|
saveBeforeRun?: boolean | undefined;
|
|
9761
9768
|
afterSuccess?: string[] | undefined;
|
|
9769
|
+
redirectOrigins?: string[] | undefined;
|
|
9762
9770
|
showInOverviewMenu?: boolean | undefined;
|
|
9763
9771
|
}[] | undefined;
|
|
9764
9772
|
supportsMultiple?: boolean | undefined;
|
|
@@ -10951,6 +10959,72 @@ export declare const OAuthProviderLocalizedTextProtoSchema: z.ZodObject<{
|
|
|
10951
10959
|
providerDescription?: string | undefined;
|
|
10952
10960
|
}>;
|
|
10953
10961
|
export type OAuthProviderLocalizedTextProto = z.infer<typeof OAuthProviderLocalizedTextProtoSchema>;
|
|
10962
|
+
export declare const OAuthStepDisplayProtoSchema: z.ZodObject<{
|
|
10963
|
+
title: z.ZodOptional<z.ZodString>;
|
|
10964
|
+
description: z.ZodOptional<z.ZodString>;
|
|
10965
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
10966
|
+
i18nMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodLazy<z.ZodObject<{
|
|
10967
|
+
title: z.ZodOptional<z.ZodString>;
|
|
10968
|
+
description: z.ZodOptional<z.ZodString>;
|
|
10969
|
+
}, "strip", z.ZodTypeAny, {
|
|
10970
|
+
description?: string | undefined;
|
|
10971
|
+
title?: string | undefined;
|
|
10972
|
+
}, {
|
|
10973
|
+
description?: string | undefined;
|
|
10974
|
+
title?: string | undefined;
|
|
10975
|
+
}>>>>;
|
|
10976
|
+
}, "strip", z.ZodTypeAny, {
|
|
10977
|
+
description?: string | undefined;
|
|
10978
|
+
title?: string | undefined;
|
|
10979
|
+
icon?: string | undefined;
|
|
10980
|
+
i18nMap?: Record<string, {
|
|
10981
|
+
description?: string | undefined;
|
|
10982
|
+
title?: string | undefined;
|
|
10983
|
+
}> | undefined;
|
|
10984
|
+
}, {
|
|
10985
|
+
description?: string | undefined;
|
|
10986
|
+
title?: string | undefined;
|
|
10987
|
+
icon?: string | undefined;
|
|
10988
|
+
i18nMap?: Record<string, {
|
|
10989
|
+
description?: string | undefined;
|
|
10990
|
+
title?: string | undefined;
|
|
10991
|
+
}> | undefined;
|
|
10992
|
+
}>;
|
|
10993
|
+
export type OAuthStepDisplayProto = z.infer<typeof OAuthStepDisplayProtoSchema>;
|
|
10994
|
+
export declare const OAuthStepLocalizedTextProtoSchema: z.ZodObject<{
|
|
10995
|
+
title: z.ZodOptional<z.ZodString>;
|
|
10996
|
+
description: z.ZodOptional<z.ZodString>;
|
|
10997
|
+
}, "strip", z.ZodTypeAny, {
|
|
10998
|
+
description?: string | undefined;
|
|
10999
|
+
title?: string | undefined;
|
|
11000
|
+
}, {
|
|
11001
|
+
description?: string | undefined;
|
|
11002
|
+
title?: string | undefined;
|
|
11003
|
+
}>;
|
|
11004
|
+
export type OAuthStepLocalizedTextProto = z.infer<typeof OAuthStepLocalizedTextProtoSchema>;
|
|
11005
|
+
export declare const OAuthFlowStepProtoSchema: z.ZodObject<{
|
|
11006
|
+
id: z.ZodOptional<z.ZodString>;
|
|
11007
|
+
title: z.ZodOptional<z.ZodString>;
|
|
11008
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11009
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
11010
|
+
status: z.ZodOptional<z.ZodString>;
|
|
11011
|
+
detail: z.ZodOptional<z.ZodString>;
|
|
11012
|
+
}, "strip", z.ZodTypeAny, {
|
|
11013
|
+
status?: string | undefined;
|
|
11014
|
+
description?: string | undefined;
|
|
11015
|
+
id?: string | undefined;
|
|
11016
|
+
title?: string | undefined;
|
|
11017
|
+
icon?: string | undefined;
|
|
11018
|
+
detail?: string | undefined;
|
|
11019
|
+
}, {
|
|
11020
|
+
status?: string | undefined;
|
|
11021
|
+
description?: string | undefined;
|
|
11022
|
+
id?: string | undefined;
|
|
11023
|
+
title?: string | undefined;
|
|
11024
|
+
icon?: string | undefined;
|
|
11025
|
+
detail?: string | undefined;
|
|
11026
|
+
}>;
|
|
11027
|
+
export type OAuthFlowStepProto = z.infer<typeof OAuthFlowStepProtoSchema>;
|
|
10954
11028
|
export declare const OAuthProviderProtoSchema: z.ZodObject<{
|
|
10955
11029
|
provider: z.ZodOptional<z.ZodString>;
|
|
10956
11030
|
authorizationUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -11002,19 +11076,59 @@ export declare const OAuthProviderProtoSchema: z.ZodObject<{
|
|
|
11002
11076
|
providerName?: string | undefined;
|
|
11003
11077
|
providerDescription?: string | undefined;
|
|
11004
11078
|
}>>>>;
|
|
11079
|
+
authorizationDisplay: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
11080
|
+
title: z.ZodOptional<z.ZodString>;
|
|
11081
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11082
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
11083
|
+
i18nMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodLazy<z.ZodObject<{
|
|
11084
|
+
title: z.ZodOptional<z.ZodString>;
|
|
11085
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11086
|
+
}, "strip", z.ZodTypeAny, {
|
|
11087
|
+
description?: string | undefined;
|
|
11088
|
+
title?: string | undefined;
|
|
11089
|
+
}, {
|
|
11090
|
+
description?: string | undefined;
|
|
11091
|
+
title?: string | undefined;
|
|
11092
|
+
}>>>>;
|
|
11093
|
+
}, "strip", z.ZodTypeAny, {
|
|
11094
|
+
description?: string | undefined;
|
|
11095
|
+
title?: string | undefined;
|
|
11096
|
+
icon?: string | undefined;
|
|
11097
|
+
i18nMap?: Record<string, {
|
|
11098
|
+
description?: string | undefined;
|
|
11099
|
+
title?: string | undefined;
|
|
11100
|
+
}> | undefined;
|
|
11101
|
+
}, {
|
|
11102
|
+
description?: string | undefined;
|
|
11103
|
+
title?: string | undefined;
|
|
11104
|
+
icon?: string | undefined;
|
|
11105
|
+
i18nMap?: Record<string, {
|
|
11106
|
+
description?: string | undefined;
|
|
11107
|
+
title?: string | undefined;
|
|
11108
|
+
}> | undefined;
|
|
11109
|
+
}>>>;
|
|
11005
11110
|
}, "strip", z.ZodTypeAny, {
|
|
11111
|
+
i18nMap?: Record<string, {
|
|
11112
|
+
providerName?: string | undefined;
|
|
11113
|
+
providerDescription?: string | undefined;
|
|
11114
|
+
}> | undefined;
|
|
11006
11115
|
providerName?: string | undefined;
|
|
11007
11116
|
providerDescription?: string | undefined;
|
|
11008
11117
|
authorizationCodeParamName?: string | undefined;
|
|
11118
|
+
authorizationDisplay?: {
|
|
11119
|
+
description?: string | undefined;
|
|
11120
|
+
title?: string | undefined;
|
|
11121
|
+
icon?: string | undefined;
|
|
11122
|
+
i18nMap?: Record<string, {
|
|
11123
|
+
description?: string | undefined;
|
|
11124
|
+
title?: string | undefined;
|
|
11125
|
+
}> | undefined;
|
|
11126
|
+
} | undefined;
|
|
11009
11127
|
provider?: string | undefined;
|
|
11010
11128
|
authorizationUrl?: string | undefined;
|
|
11011
11129
|
tokenUrl?: string | undefined;
|
|
11012
11130
|
refreshTokenUrl?: string | undefined;
|
|
11013
11131
|
scopes?: string[] | undefined;
|
|
11014
|
-
i18nMap?: Record<string, {
|
|
11015
|
-
providerName?: string | undefined;
|
|
11016
|
-
providerDescription?: string | undefined;
|
|
11017
|
-
}> | undefined;
|
|
11018
11132
|
providerIconUrl?: string | undefined;
|
|
11019
11133
|
pkceRequired?: boolean | undefined;
|
|
11020
11134
|
additionalParams?: Record<string, string> | undefined;
|
|
@@ -11032,18 +11146,27 @@ export declare const OAuthProviderProtoSchema: z.ZodObject<{
|
|
|
11032
11146
|
refreshTokenExpiresInPath?: string | undefined;
|
|
11033
11147
|
} | undefined;
|
|
11034
11148
|
}, {
|
|
11149
|
+
i18nMap?: Record<string, {
|
|
11150
|
+
providerName?: string | undefined;
|
|
11151
|
+
providerDescription?: string | undefined;
|
|
11152
|
+
}> | undefined;
|
|
11035
11153
|
providerName?: string | undefined;
|
|
11036
11154
|
providerDescription?: string | undefined;
|
|
11037
11155
|
authorizationCodeParamName?: string | undefined;
|
|
11156
|
+
authorizationDisplay?: {
|
|
11157
|
+
description?: string | undefined;
|
|
11158
|
+
title?: string | undefined;
|
|
11159
|
+
icon?: string | undefined;
|
|
11160
|
+
i18nMap?: Record<string, {
|
|
11161
|
+
description?: string | undefined;
|
|
11162
|
+
title?: string | undefined;
|
|
11163
|
+
}> | undefined;
|
|
11164
|
+
} | undefined;
|
|
11038
11165
|
provider?: string | undefined;
|
|
11039
11166
|
authorizationUrl?: string | undefined;
|
|
11040
11167
|
tokenUrl?: string | undefined;
|
|
11041
11168
|
refreshTokenUrl?: string | undefined;
|
|
11042
11169
|
scopes?: string[] | undefined;
|
|
11043
|
-
i18nMap?: Record<string, {
|
|
11044
|
-
providerName?: string | undefined;
|
|
11045
|
-
providerDescription?: string | undefined;
|
|
11046
|
-
}> | undefined;
|
|
11047
11170
|
providerIconUrl?: string | undefined;
|
|
11048
11171
|
pkceRequired?: boolean | undefined;
|
|
11049
11172
|
additionalParams?: Record<string, string> | undefined;
|
|
@@ -11118,19 +11241,59 @@ export declare const OAuthConfigProtoSchema: z.ZodObject<{
|
|
|
11118
11241
|
providerName?: string | undefined;
|
|
11119
11242
|
providerDescription?: string | undefined;
|
|
11120
11243
|
}>>>>;
|
|
11244
|
+
authorizationDisplay: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
11245
|
+
title: z.ZodOptional<z.ZodString>;
|
|
11246
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11247
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
11248
|
+
i18nMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodLazy<z.ZodObject<{
|
|
11249
|
+
title: z.ZodOptional<z.ZodString>;
|
|
11250
|
+
description: z.ZodOptional<z.ZodString>;
|
|
11251
|
+
}, "strip", z.ZodTypeAny, {
|
|
11252
|
+
description?: string | undefined;
|
|
11253
|
+
title?: string | undefined;
|
|
11254
|
+
}, {
|
|
11255
|
+
description?: string | undefined;
|
|
11256
|
+
title?: string | undefined;
|
|
11257
|
+
}>>>>;
|
|
11258
|
+
}, "strip", z.ZodTypeAny, {
|
|
11259
|
+
description?: string | undefined;
|
|
11260
|
+
title?: string | undefined;
|
|
11261
|
+
icon?: string | undefined;
|
|
11262
|
+
i18nMap?: Record<string, {
|
|
11263
|
+
description?: string | undefined;
|
|
11264
|
+
title?: string | undefined;
|
|
11265
|
+
}> | undefined;
|
|
11266
|
+
}, {
|
|
11267
|
+
description?: string | undefined;
|
|
11268
|
+
title?: string | undefined;
|
|
11269
|
+
icon?: string | undefined;
|
|
11270
|
+
i18nMap?: Record<string, {
|
|
11271
|
+
description?: string | undefined;
|
|
11272
|
+
title?: string | undefined;
|
|
11273
|
+
}> | undefined;
|
|
11274
|
+
}>>>;
|
|
11121
11275
|
}, "strip", z.ZodTypeAny, {
|
|
11276
|
+
i18nMap?: Record<string, {
|
|
11277
|
+
providerName?: string | undefined;
|
|
11278
|
+
providerDescription?: string | undefined;
|
|
11279
|
+
}> | undefined;
|
|
11122
11280
|
providerName?: string | undefined;
|
|
11123
11281
|
providerDescription?: string | undefined;
|
|
11124
11282
|
authorizationCodeParamName?: string | undefined;
|
|
11283
|
+
authorizationDisplay?: {
|
|
11284
|
+
description?: string | undefined;
|
|
11285
|
+
title?: string | undefined;
|
|
11286
|
+
icon?: string | undefined;
|
|
11287
|
+
i18nMap?: Record<string, {
|
|
11288
|
+
description?: string | undefined;
|
|
11289
|
+
title?: string | undefined;
|
|
11290
|
+
}> | undefined;
|
|
11291
|
+
} | undefined;
|
|
11125
11292
|
provider?: string | undefined;
|
|
11126
11293
|
authorizationUrl?: string | undefined;
|
|
11127
11294
|
tokenUrl?: string | undefined;
|
|
11128
11295
|
refreshTokenUrl?: string | undefined;
|
|
11129
11296
|
scopes?: string[] | undefined;
|
|
11130
|
-
i18nMap?: Record<string, {
|
|
11131
|
-
providerName?: string | undefined;
|
|
11132
|
-
providerDescription?: string | undefined;
|
|
11133
|
-
}> | undefined;
|
|
11134
11297
|
providerIconUrl?: string | undefined;
|
|
11135
11298
|
pkceRequired?: boolean | undefined;
|
|
11136
11299
|
additionalParams?: Record<string, string> | undefined;
|
|
@@ -11148,18 +11311,27 @@ export declare const OAuthConfigProtoSchema: z.ZodObject<{
|
|
|
11148
11311
|
refreshTokenExpiresInPath?: string | undefined;
|
|
11149
11312
|
} | undefined;
|
|
11150
11313
|
}, {
|
|
11314
|
+
i18nMap?: Record<string, {
|
|
11315
|
+
providerName?: string | undefined;
|
|
11316
|
+
providerDescription?: string | undefined;
|
|
11317
|
+
}> | undefined;
|
|
11151
11318
|
providerName?: string | undefined;
|
|
11152
11319
|
providerDescription?: string | undefined;
|
|
11153
11320
|
authorizationCodeParamName?: string | undefined;
|
|
11321
|
+
authorizationDisplay?: {
|
|
11322
|
+
description?: string | undefined;
|
|
11323
|
+
title?: string | undefined;
|
|
11324
|
+
icon?: string | undefined;
|
|
11325
|
+
i18nMap?: Record<string, {
|
|
11326
|
+
description?: string | undefined;
|
|
11327
|
+
title?: string | undefined;
|
|
11328
|
+
}> | undefined;
|
|
11329
|
+
} | undefined;
|
|
11154
11330
|
provider?: string | undefined;
|
|
11155
11331
|
authorizationUrl?: string | undefined;
|
|
11156
11332
|
tokenUrl?: string | undefined;
|
|
11157
11333
|
refreshTokenUrl?: string | undefined;
|
|
11158
11334
|
scopes?: string[] | undefined;
|
|
11159
|
-
i18nMap?: Record<string, {
|
|
11160
|
-
providerName?: string | undefined;
|
|
11161
|
-
providerDescription?: string | undefined;
|
|
11162
|
-
}> | undefined;
|
|
11163
11335
|
providerIconUrl?: string | undefined;
|
|
11164
11336
|
pkceRequired?: boolean | undefined;
|
|
11165
11337
|
additionalParams?: Record<string, string> | undefined;
|
|
@@ -11178,21 +11350,30 @@ export declare const OAuthConfigProtoSchema: z.ZodObject<{
|
|
|
11178
11350
|
} | undefined;
|
|
11179
11351
|
}>>>;
|
|
11180
11352
|
}, "strip", z.ZodTypeAny, {
|
|
11181
|
-
authType?: string | undefined;
|
|
11182
11353
|
authScope?: string | undefined;
|
|
11354
|
+
authType?: string | undefined;
|
|
11183
11355
|
oauthProvider?: {
|
|
11356
|
+
i18nMap?: Record<string, {
|
|
11357
|
+
providerName?: string | undefined;
|
|
11358
|
+
providerDescription?: string | undefined;
|
|
11359
|
+
}> | undefined;
|
|
11184
11360
|
providerName?: string | undefined;
|
|
11185
11361
|
providerDescription?: string | undefined;
|
|
11186
11362
|
authorizationCodeParamName?: string | undefined;
|
|
11363
|
+
authorizationDisplay?: {
|
|
11364
|
+
description?: string | undefined;
|
|
11365
|
+
title?: string | undefined;
|
|
11366
|
+
icon?: string | undefined;
|
|
11367
|
+
i18nMap?: Record<string, {
|
|
11368
|
+
description?: string | undefined;
|
|
11369
|
+
title?: string | undefined;
|
|
11370
|
+
}> | undefined;
|
|
11371
|
+
} | undefined;
|
|
11187
11372
|
provider?: string | undefined;
|
|
11188
11373
|
authorizationUrl?: string | undefined;
|
|
11189
11374
|
tokenUrl?: string | undefined;
|
|
11190
11375
|
refreshTokenUrl?: string | undefined;
|
|
11191
11376
|
scopes?: string[] | undefined;
|
|
11192
|
-
i18nMap?: Record<string, {
|
|
11193
|
-
providerName?: string | undefined;
|
|
11194
|
-
providerDescription?: string | undefined;
|
|
11195
|
-
}> | undefined;
|
|
11196
11377
|
providerIconUrl?: string | undefined;
|
|
11197
11378
|
pkceRequired?: boolean | undefined;
|
|
11198
11379
|
additionalParams?: Record<string, string> | undefined;
|
|
@@ -11211,21 +11392,30 @@ export declare const OAuthConfigProtoSchema: z.ZodObject<{
|
|
|
11211
11392
|
} | undefined;
|
|
11212
11393
|
} | undefined;
|
|
11213
11394
|
}, {
|
|
11214
|
-
authType?: string | undefined;
|
|
11215
11395
|
authScope?: string | undefined;
|
|
11396
|
+
authType?: string | undefined;
|
|
11216
11397
|
oauthProvider?: {
|
|
11398
|
+
i18nMap?: Record<string, {
|
|
11399
|
+
providerName?: string | undefined;
|
|
11400
|
+
providerDescription?: string | undefined;
|
|
11401
|
+
}> | undefined;
|
|
11217
11402
|
providerName?: string | undefined;
|
|
11218
11403
|
providerDescription?: string | undefined;
|
|
11219
11404
|
authorizationCodeParamName?: string | undefined;
|
|
11405
|
+
authorizationDisplay?: {
|
|
11406
|
+
description?: string | undefined;
|
|
11407
|
+
title?: string | undefined;
|
|
11408
|
+
icon?: string | undefined;
|
|
11409
|
+
i18nMap?: Record<string, {
|
|
11410
|
+
description?: string | undefined;
|
|
11411
|
+
title?: string | undefined;
|
|
11412
|
+
}> | undefined;
|
|
11413
|
+
} | undefined;
|
|
11220
11414
|
provider?: string | undefined;
|
|
11221
11415
|
authorizationUrl?: string | undefined;
|
|
11222
11416
|
tokenUrl?: string | undefined;
|
|
11223
11417
|
refreshTokenUrl?: string | undefined;
|
|
11224
11418
|
scopes?: string[] | undefined;
|
|
11225
|
-
i18nMap?: Record<string, {
|
|
11226
|
-
providerName?: string | undefined;
|
|
11227
|
-
providerDescription?: string | undefined;
|
|
11228
|
-
}> | undefined;
|
|
11229
11419
|
providerIconUrl?: string | undefined;
|
|
11230
11420
|
pkceRequired?: boolean | undefined;
|
|
11231
11421
|
additionalParams?: Record<string, string> | undefined;
|
|
@@ -12756,26 +12946,109 @@ export declare const HookConfigProtoSchema: z.ZodObject<{
|
|
|
12756
12946
|
endpointToken?: string | undefined;
|
|
12757
12947
|
executionScope?: string | undefined;
|
|
12758
12948
|
}>>>;
|
|
12949
|
+
redirectOrigins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12950
|
+
authScope: z.ZodOptional<z.ZodString>;
|
|
12951
|
+
display: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
12952
|
+
title: z.ZodOptional<z.ZodString>;
|
|
12953
|
+
description: z.ZodOptional<z.ZodString>;
|
|
12954
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
12955
|
+
i18nMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodLazy<z.ZodObject<{
|
|
12956
|
+
title: z.ZodOptional<z.ZodString>;
|
|
12957
|
+
description: z.ZodOptional<z.ZodString>;
|
|
12958
|
+
}, "strip", z.ZodTypeAny, {
|
|
12959
|
+
description?: string | undefined;
|
|
12960
|
+
title?: string | undefined;
|
|
12961
|
+
}, {
|
|
12962
|
+
description?: string | undefined;
|
|
12963
|
+
title?: string | undefined;
|
|
12964
|
+
}>>>>;
|
|
12965
|
+
}, "strip", z.ZodTypeAny, {
|
|
12966
|
+
description?: string | undefined;
|
|
12967
|
+
title?: string | undefined;
|
|
12968
|
+
icon?: string | undefined;
|
|
12969
|
+
i18nMap?: Record<string, {
|
|
12970
|
+
description?: string | undefined;
|
|
12971
|
+
title?: string | undefined;
|
|
12972
|
+
}> | undefined;
|
|
12973
|
+
}, {
|
|
12974
|
+
description?: string | undefined;
|
|
12975
|
+
title?: string | undefined;
|
|
12976
|
+
icon?: string | undefined;
|
|
12977
|
+
i18nMap?: Record<string, {
|
|
12978
|
+
description?: string | undefined;
|
|
12979
|
+
title?: string | undefined;
|
|
12980
|
+
}> | undefined;
|
|
12981
|
+
}>>>;
|
|
12759
12982
|
}, "strip", z.ZodTypeAny, {
|
|
12760
12983
|
systemVersion?: string | undefined;
|
|
12761
12984
|
type?: string | undefined;
|
|
12985
|
+
authScope?: string | undefined;
|
|
12986
|
+
redirectOrigins?: string[] | undefined;
|
|
12762
12987
|
actionFunctionName?: string | undefined;
|
|
12763
12988
|
targetId?: string | undefined;
|
|
12764
12989
|
webhook?: {
|
|
12765
12990
|
endpointToken?: string | undefined;
|
|
12766
12991
|
executionScope?: string | undefined;
|
|
12767
12992
|
} | undefined;
|
|
12993
|
+
display?: {
|
|
12994
|
+
description?: string | undefined;
|
|
12995
|
+
title?: string | undefined;
|
|
12996
|
+
icon?: string | undefined;
|
|
12997
|
+
i18nMap?: Record<string, {
|
|
12998
|
+
description?: string | undefined;
|
|
12999
|
+
title?: string | undefined;
|
|
13000
|
+
}> | undefined;
|
|
13001
|
+
} | undefined;
|
|
12768
13002
|
}, {
|
|
12769
13003
|
systemVersion?: string | undefined;
|
|
12770
13004
|
type?: string | undefined;
|
|
13005
|
+
authScope?: string | undefined;
|
|
13006
|
+
redirectOrigins?: string[] | undefined;
|
|
12771
13007
|
actionFunctionName?: string | undefined;
|
|
12772
13008
|
targetId?: string | undefined;
|
|
12773
13009
|
webhook?: {
|
|
12774
13010
|
endpointToken?: string | undefined;
|
|
12775
13011
|
executionScope?: string | undefined;
|
|
12776
13012
|
} | undefined;
|
|
13013
|
+
display?: {
|
|
13014
|
+
description?: string | undefined;
|
|
13015
|
+
title?: string | undefined;
|
|
13016
|
+
icon?: string | undefined;
|
|
13017
|
+
i18nMap?: Record<string, {
|
|
13018
|
+
description?: string | undefined;
|
|
13019
|
+
title?: string | undefined;
|
|
13020
|
+
}> | undefined;
|
|
13021
|
+
} | undefined;
|
|
12777
13022
|
}>;
|
|
12778
13023
|
export type HookConfigProto = z.infer<typeof HookConfigProtoSchema>;
|
|
13024
|
+
export declare const OAuthFlowHookInputProtoSchema: z.ZodObject<{
|
|
13025
|
+
flowId: z.ZodOptional<z.ZodString>;
|
|
13026
|
+
resumeUrl: z.ZodOptional<z.ZodString>;
|
|
13027
|
+
expiresAt: z.ZodOptional<z.ZodString>;
|
|
13028
|
+
}, "strip", z.ZodTypeAny, {
|
|
13029
|
+
expiresAt?: string | undefined;
|
|
13030
|
+
flowId?: string | undefined;
|
|
13031
|
+
resumeUrl?: string | undefined;
|
|
13032
|
+
}, {
|
|
13033
|
+
expiresAt?: string | undefined;
|
|
13034
|
+
flowId?: string | undefined;
|
|
13035
|
+
resumeUrl?: string | undefined;
|
|
13036
|
+
}>;
|
|
13037
|
+
export type OAuthFlowHookInputProto = z.infer<typeof OAuthFlowHookInputProtoSchema>;
|
|
13038
|
+
export declare const OAuthFlowHookResultProtoSchema: z.ZodObject<{
|
|
13039
|
+
type: z.ZodOptional<z.ZodString>;
|
|
13040
|
+
url: z.ZodOptional<z.ZodString>;
|
|
13041
|
+
detail: z.ZodOptional<z.ZodString>;
|
|
13042
|
+
}, "strip", z.ZodTypeAny, {
|
|
13043
|
+
type?: string | undefined;
|
|
13044
|
+
url?: string | undefined;
|
|
13045
|
+
detail?: string | undefined;
|
|
13046
|
+
}, {
|
|
13047
|
+
type?: string | undefined;
|
|
13048
|
+
url?: string | undefined;
|
|
13049
|
+
detail?: string | undefined;
|
|
13050
|
+
}>;
|
|
13051
|
+
export type OAuthFlowHookResultProto = z.infer<typeof OAuthFlowHookResultProtoSchema>;
|
|
12779
13052
|
export declare const HookGetHooksInputProtoSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
12780
13053
|
export type HookGetHooksInputProto = z.infer<typeof HookGetHooksInputProtoSchema>;
|
|
12781
13054
|
export declare const HookGetHooksOutputProtoSchema: z.ZodObject<{
|
|
@@ -12794,46 +13067,123 @@ export declare const HookGetHooksOutputProtoSchema: z.ZodObject<{
|
|
|
12794
13067
|
endpointToken?: string | undefined;
|
|
12795
13068
|
executionScope?: string | undefined;
|
|
12796
13069
|
}>>>;
|
|
13070
|
+
redirectOrigins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13071
|
+
authScope: z.ZodOptional<z.ZodString>;
|
|
13072
|
+
display: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
13073
|
+
title: z.ZodOptional<z.ZodString>;
|
|
13074
|
+
description: z.ZodOptional<z.ZodString>;
|
|
13075
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
13076
|
+
i18nMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodLazy<z.ZodObject<{
|
|
13077
|
+
title: z.ZodOptional<z.ZodString>;
|
|
13078
|
+
description: z.ZodOptional<z.ZodString>;
|
|
13079
|
+
}, "strip", z.ZodTypeAny, {
|
|
13080
|
+
description?: string | undefined;
|
|
13081
|
+
title?: string | undefined;
|
|
13082
|
+
}, {
|
|
13083
|
+
description?: string | undefined;
|
|
13084
|
+
title?: string | undefined;
|
|
13085
|
+
}>>>>;
|
|
13086
|
+
}, "strip", z.ZodTypeAny, {
|
|
13087
|
+
description?: string | undefined;
|
|
13088
|
+
title?: string | undefined;
|
|
13089
|
+
icon?: string | undefined;
|
|
13090
|
+
i18nMap?: Record<string, {
|
|
13091
|
+
description?: string | undefined;
|
|
13092
|
+
title?: string | undefined;
|
|
13093
|
+
}> | undefined;
|
|
13094
|
+
}, {
|
|
13095
|
+
description?: string | undefined;
|
|
13096
|
+
title?: string | undefined;
|
|
13097
|
+
icon?: string | undefined;
|
|
13098
|
+
i18nMap?: Record<string, {
|
|
13099
|
+
description?: string | undefined;
|
|
13100
|
+
title?: string | undefined;
|
|
13101
|
+
}> | undefined;
|
|
13102
|
+
}>>>;
|
|
12797
13103
|
}, "strip", z.ZodTypeAny, {
|
|
12798
13104
|
systemVersion?: string | undefined;
|
|
12799
13105
|
type?: string | undefined;
|
|
13106
|
+
authScope?: string | undefined;
|
|
13107
|
+
redirectOrigins?: string[] | undefined;
|
|
12800
13108
|
actionFunctionName?: string | undefined;
|
|
12801
13109
|
targetId?: string | undefined;
|
|
12802
13110
|
webhook?: {
|
|
12803
13111
|
endpointToken?: string | undefined;
|
|
12804
13112
|
executionScope?: string | undefined;
|
|
12805
13113
|
} | undefined;
|
|
13114
|
+
display?: {
|
|
13115
|
+
description?: string | undefined;
|
|
13116
|
+
title?: string | undefined;
|
|
13117
|
+
icon?: string | undefined;
|
|
13118
|
+
i18nMap?: Record<string, {
|
|
13119
|
+
description?: string | undefined;
|
|
13120
|
+
title?: string | undefined;
|
|
13121
|
+
}> | undefined;
|
|
13122
|
+
} | undefined;
|
|
12806
13123
|
}, {
|
|
12807
13124
|
systemVersion?: string | undefined;
|
|
12808
13125
|
type?: string | undefined;
|
|
13126
|
+
authScope?: string | undefined;
|
|
13127
|
+
redirectOrigins?: string[] | undefined;
|
|
12809
13128
|
actionFunctionName?: string | undefined;
|
|
12810
13129
|
targetId?: string | undefined;
|
|
12811
13130
|
webhook?: {
|
|
12812
13131
|
endpointToken?: string | undefined;
|
|
12813
13132
|
executionScope?: string | undefined;
|
|
12814
13133
|
} | undefined;
|
|
13134
|
+
display?: {
|
|
13135
|
+
description?: string | undefined;
|
|
13136
|
+
title?: string | undefined;
|
|
13137
|
+
icon?: string | undefined;
|
|
13138
|
+
i18nMap?: Record<string, {
|
|
13139
|
+
description?: string | undefined;
|
|
13140
|
+
title?: string | undefined;
|
|
13141
|
+
}> | undefined;
|
|
13142
|
+
} | undefined;
|
|
12815
13143
|
}>>, "many">>;
|
|
12816
13144
|
}, "strip", z.ZodTypeAny, {
|
|
12817
13145
|
hooks?: {
|
|
12818
13146
|
systemVersion?: string | undefined;
|
|
12819
13147
|
type?: string | undefined;
|
|
13148
|
+
authScope?: string | undefined;
|
|
13149
|
+
redirectOrigins?: string[] | undefined;
|
|
12820
13150
|
actionFunctionName?: string | undefined;
|
|
12821
13151
|
targetId?: string | undefined;
|
|
12822
13152
|
webhook?: {
|
|
12823
13153
|
endpointToken?: string | undefined;
|
|
12824
13154
|
executionScope?: string | undefined;
|
|
12825
13155
|
} | undefined;
|
|
13156
|
+
display?: {
|
|
13157
|
+
description?: string | undefined;
|
|
13158
|
+
title?: string | undefined;
|
|
13159
|
+
icon?: string | undefined;
|
|
13160
|
+
i18nMap?: Record<string, {
|
|
13161
|
+
description?: string | undefined;
|
|
13162
|
+
title?: string | undefined;
|
|
13163
|
+
}> | undefined;
|
|
13164
|
+
} | undefined;
|
|
12826
13165
|
}[] | undefined;
|
|
12827
13166
|
}, {
|
|
12828
13167
|
hooks?: {
|
|
12829
13168
|
systemVersion?: string | undefined;
|
|
12830
13169
|
type?: string | undefined;
|
|
13170
|
+
authScope?: string | undefined;
|
|
13171
|
+
redirectOrigins?: string[] | undefined;
|
|
12831
13172
|
actionFunctionName?: string | undefined;
|
|
12832
13173
|
targetId?: string | undefined;
|
|
12833
13174
|
webhook?: {
|
|
12834
13175
|
endpointToken?: string | undefined;
|
|
12835
13176
|
executionScope?: string | undefined;
|
|
12836
13177
|
} | undefined;
|
|
13178
|
+
display?: {
|
|
13179
|
+
description?: string | undefined;
|
|
13180
|
+
title?: string | undefined;
|
|
13181
|
+
icon?: string | undefined;
|
|
13182
|
+
i18nMap?: Record<string, {
|
|
13183
|
+
description?: string | undefined;
|
|
13184
|
+
title?: string | undefined;
|
|
13185
|
+
}> | undefined;
|
|
13186
|
+
} | undefined;
|
|
12837
13187
|
}[] | undefined;
|
|
12838
13188
|
}>;
|
|
12839
13189
|
export type HookGetHooksOutputProto = z.infer<typeof HookGetHooksOutputProtoSchema>;
|
|
@@ -13902,10 +14252,10 @@ export declare const AppNotebookProtoSchema: z.ZodObject<{
|
|
|
13902
14252
|
}[] | undefined;
|
|
13903
14253
|
} | undefined;
|
|
13904
14254
|
title?: string | undefined;
|
|
14255
|
+
icon?: string | undefined;
|
|
13905
14256
|
notebookKey?: string | undefined;
|
|
13906
14257
|
version?: number | undefined;
|
|
13907
14258
|
initialVisibility?: string | undefined;
|
|
13908
|
-
icon?: string | undefined;
|
|
13909
14259
|
}, {
|
|
13910
14260
|
description?: string | undefined;
|
|
13911
14261
|
notebook?: {
|
|
@@ -13932,10 +14282,10 @@ export declare const AppNotebookProtoSchema: z.ZodObject<{
|
|
|
13932
14282
|
}[] | undefined;
|
|
13933
14283
|
} | undefined;
|
|
13934
14284
|
title?: string | undefined;
|
|
14285
|
+
icon?: string | undefined;
|
|
13935
14286
|
notebookKey?: string | undefined;
|
|
13936
14287
|
version?: number | undefined;
|
|
13937
14288
|
initialVisibility?: string | undefined;
|
|
13938
|
-
icon?: string | undefined;
|
|
13939
14289
|
}>;
|
|
13940
14290
|
export type AppNotebookProto = z.infer<typeof AppNotebookProtoSchema>;
|
|
13941
14291
|
export declare const NotebookGetNotebooksInputProtoSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
@@ -14103,10 +14453,10 @@ export declare const NotebookGetNotebooksOutputProtoSchema: z.ZodObject<{
|
|
|
14103
14453
|
}[] | undefined;
|
|
14104
14454
|
} | undefined;
|
|
14105
14455
|
title?: string | undefined;
|
|
14456
|
+
icon?: string | undefined;
|
|
14106
14457
|
notebookKey?: string | undefined;
|
|
14107
14458
|
version?: number | undefined;
|
|
14108
14459
|
initialVisibility?: string | undefined;
|
|
14109
|
-
icon?: string | undefined;
|
|
14110
14460
|
}, {
|
|
14111
14461
|
description?: string | undefined;
|
|
14112
14462
|
notebook?: {
|
|
@@ -14133,10 +14483,10 @@ export declare const NotebookGetNotebooksOutputProtoSchema: z.ZodObject<{
|
|
|
14133
14483
|
}[] | undefined;
|
|
14134
14484
|
} | undefined;
|
|
14135
14485
|
title?: string | undefined;
|
|
14486
|
+
icon?: string | undefined;
|
|
14136
14487
|
notebookKey?: string | undefined;
|
|
14137
14488
|
version?: number | undefined;
|
|
14138
14489
|
initialVisibility?: string | undefined;
|
|
14139
|
-
icon?: string | undefined;
|
|
14140
14490
|
}>>, "many">>;
|
|
14141
14491
|
}, "strip", z.ZodTypeAny, {
|
|
14142
14492
|
notebooks?: {
|
|
@@ -14165,10 +14515,10 @@ export declare const NotebookGetNotebooksOutputProtoSchema: z.ZodObject<{
|
|
|
14165
14515
|
}[] | undefined;
|
|
14166
14516
|
} | undefined;
|
|
14167
14517
|
title?: string | undefined;
|
|
14518
|
+
icon?: string | undefined;
|
|
14168
14519
|
notebookKey?: string | undefined;
|
|
14169
14520
|
version?: number | undefined;
|
|
14170
14521
|
initialVisibility?: string | undefined;
|
|
14171
|
-
icon?: string | undefined;
|
|
14172
14522
|
}[] | undefined;
|
|
14173
14523
|
}, {
|
|
14174
14524
|
notebooks?: {
|
|
@@ -14197,10 +14547,10 @@ export declare const NotebookGetNotebooksOutputProtoSchema: z.ZodObject<{
|
|
|
14197
14547
|
}[] | undefined;
|
|
14198
14548
|
} | undefined;
|
|
14199
14549
|
title?: string | undefined;
|
|
14550
|
+
icon?: string | undefined;
|
|
14200
14551
|
notebookKey?: string | undefined;
|
|
14201
14552
|
version?: number | undefined;
|
|
14202
14553
|
initialVisibility?: string | undefined;
|
|
14203
|
-
icon?: string | undefined;
|
|
14204
14554
|
}[] | undefined;
|
|
14205
14555
|
}>;
|
|
14206
14556
|
export type NotebookGetNotebooksOutputProto = z.infer<typeof NotebookGetNotebooksOutputProtoSchema>;
|
|
@@ -22697,22 +23047,22 @@ export declare const CommerceGetExchangeableItemsOutputProtoSchema: z.ZodObject<
|
|
|
22697
23047
|
name?: string | undefined;
|
|
22698
23048
|
}[] | undefined;
|
|
22699
23049
|
id?: string | undefined;
|
|
23050
|
+
display?: boolean | undefined;
|
|
22700
23051
|
additionalAmount?: number | undefined;
|
|
22701
23052
|
stockQuantity?: number | undefined;
|
|
22702
23053
|
useInventory?: boolean | undefined;
|
|
22703
23054
|
selling?: boolean | undefined;
|
|
22704
|
-
display?: boolean | undefined;
|
|
22705
23055
|
}, {
|
|
22706
23056
|
options?: {
|
|
22707
23057
|
value?: string | undefined;
|
|
22708
23058
|
name?: string | undefined;
|
|
22709
23059
|
}[] | undefined;
|
|
22710
23060
|
id?: string | undefined;
|
|
23061
|
+
display?: boolean | undefined;
|
|
22711
23062
|
additionalAmount?: number | undefined;
|
|
22712
23063
|
stockQuantity?: number | undefined;
|
|
22713
23064
|
useInventory?: boolean | undefined;
|
|
22714
23065
|
selling?: boolean | undefined;
|
|
22715
|
-
display?: boolean | undefined;
|
|
22716
23066
|
}>>, "many">>;
|
|
22717
23067
|
}, "strip", z.ZodTypeAny, {
|
|
22718
23068
|
id?: string | undefined;
|
|
@@ -22723,11 +23073,11 @@ export declare const CommerceGetExchangeableItemsOutputProtoSchema: z.ZodObject<
|
|
|
22723
23073
|
name?: string | undefined;
|
|
22724
23074
|
}[] | undefined;
|
|
22725
23075
|
id?: string | undefined;
|
|
23076
|
+
display?: boolean | undefined;
|
|
22726
23077
|
additionalAmount?: number | undefined;
|
|
22727
23078
|
stockQuantity?: number | undefined;
|
|
22728
23079
|
useInventory?: boolean | undefined;
|
|
22729
23080
|
selling?: boolean | undefined;
|
|
22730
|
-
display?: boolean | undefined;
|
|
22731
23081
|
}[] | undefined;
|
|
22732
23082
|
}, {
|
|
22733
23083
|
id?: string | undefined;
|
|
@@ -22738,11 +23088,11 @@ export declare const CommerceGetExchangeableItemsOutputProtoSchema: z.ZodObject<
|
|
|
22738
23088
|
name?: string | undefined;
|
|
22739
23089
|
}[] | undefined;
|
|
22740
23090
|
id?: string | undefined;
|
|
23091
|
+
display?: boolean | undefined;
|
|
22741
23092
|
additionalAmount?: number | undefined;
|
|
22742
23093
|
stockQuantity?: number | undefined;
|
|
22743
23094
|
useInventory?: boolean | undefined;
|
|
22744
23095
|
selling?: boolean | undefined;
|
|
22745
|
-
display?: boolean | undefined;
|
|
22746
23096
|
}[] | undefined;
|
|
22747
23097
|
}>>, "many">>;
|
|
22748
23098
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -22755,11 +23105,11 @@ export declare const CommerceGetExchangeableItemsOutputProtoSchema: z.ZodObject<
|
|
|
22755
23105
|
name?: string | undefined;
|
|
22756
23106
|
}[] | undefined;
|
|
22757
23107
|
id?: string | undefined;
|
|
23108
|
+
display?: boolean | undefined;
|
|
22758
23109
|
additionalAmount?: number | undefined;
|
|
22759
23110
|
stockQuantity?: number | undefined;
|
|
22760
23111
|
useInventory?: boolean | undefined;
|
|
22761
23112
|
selling?: boolean | undefined;
|
|
22762
|
-
display?: boolean | undefined;
|
|
22763
23113
|
}[] | undefined;
|
|
22764
23114
|
}[] | undefined;
|
|
22765
23115
|
}, {
|
|
@@ -22772,11 +23122,11 @@ export declare const CommerceGetExchangeableItemsOutputProtoSchema: z.ZodObject<
|
|
|
22772
23122
|
name?: string | undefined;
|
|
22773
23123
|
}[] | undefined;
|
|
22774
23124
|
id?: string | undefined;
|
|
23125
|
+
display?: boolean | undefined;
|
|
22775
23126
|
additionalAmount?: number | undefined;
|
|
22776
23127
|
stockQuantity?: number | undefined;
|
|
22777
23128
|
useInventory?: boolean | undefined;
|
|
22778
23129
|
selling?: boolean | undefined;
|
|
22779
|
-
display?: boolean | undefined;
|
|
22780
23130
|
}[] | undefined;
|
|
22781
23131
|
}[] | undefined;
|
|
22782
23132
|
}>;
|
|
@@ -22807,22 +23157,22 @@ export declare const CommerceExchangeableItemProtoSchema: z.ZodObject<{
|
|
|
22807
23157
|
name?: string | undefined;
|
|
22808
23158
|
}[] | undefined;
|
|
22809
23159
|
id?: string | undefined;
|
|
23160
|
+
display?: boolean | undefined;
|
|
22810
23161
|
additionalAmount?: number | undefined;
|
|
22811
23162
|
stockQuantity?: number | undefined;
|
|
22812
23163
|
useInventory?: boolean | undefined;
|
|
22813
23164
|
selling?: boolean | undefined;
|
|
22814
|
-
display?: boolean | undefined;
|
|
22815
23165
|
}, {
|
|
22816
23166
|
options?: {
|
|
22817
23167
|
value?: string | undefined;
|
|
22818
23168
|
name?: string | undefined;
|
|
22819
23169
|
}[] | undefined;
|
|
22820
23170
|
id?: string | undefined;
|
|
23171
|
+
display?: boolean | undefined;
|
|
22821
23172
|
additionalAmount?: number | undefined;
|
|
22822
23173
|
stockQuantity?: number | undefined;
|
|
22823
23174
|
useInventory?: boolean | undefined;
|
|
22824
23175
|
selling?: boolean | undefined;
|
|
22825
|
-
display?: boolean | undefined;
|
|
22826
23176
|
}>>, "many">>;
|
|
22827
23177
|
}, "strip", z.ZodTypeAny, {
|
|
22828
23178
|
id?: string | undefined;
|
|
@@ -22833,11 +23183,11 @@ export declare const CommerceExchangeableItemProtoSchema: z.ZodObject<{
|
|
|
22833
23183
|
name?: string | undefined;
|
|
22834
23184
|
}[] | undefined;
|
|
22835
23185
|
id?: string | undefined;
|
|
23186
|
+
display?: boolean | undefined;
|
|
22836
23187
|
additionalAmount?: number | undefined;
|
|
22837
23188
|
stockQuantity?: number | undefined;
|
|
22838
23189
|
useInventory?: boolean | undefined;
|
|
22839
23190
|
selling?: boolean | undefined;
|
|
22840
|
-
display?: boolean | undefined;
|
|
22841
23191
|
}[] | undefined;
|
|
22842
23192
|
}, {
|
|
22843
23193
|
id?: string | undefined;
|
|
@@ -22848,11 +23198,11 @@ export declare const CommerceExchangeableItemProtoSchema: z.ZodObject<{
|
|
|
22848
23198
|
name?: string | undefined;
|
|
22849
23199
|
}[] | undefined;
|
|
22850
23200
|
id?: string | undefined;
|
|
23201
|
+
display?: boolean | undefined;
|
|
22851
23202
|
additionalAmount?: number | undefined;
|
|
22852
23203
|
stockQuantity?: number | undefined;
|
|
22853
23204
|
useInventory?: boolean | undefined;
|
|
22854
23205
|
selling?: boolean | undefined;
|
|
22855
|
-
display?: boolean | undefined;
|
|
22856
23206
|
}[] | undefined;
|
|
22857
23207
|
}>;
|
|
22858
23208
|
export type CommerceExchangeableItemProto = z.infer<typeof CommerceExchangeableItemProtoSchema>;
|
|
@@ -22879,22 +23229,22 @@ export declare const CommerceExchangeableVariantProtoSchema: z.ZodObject<{
|
|
|
22879
23229
|
name?: string | undefined;
|
|
22880
23230
|
}[] | undefined;
|
|
22881
23231
|
id?: string | undefined;
|
|
23232
|
+
display?: boolean | undefined;
|
|
22882
23233
|
additionalAmount?: number | undefined;
|
|
22883
23234
|
stockQuantity?: number | undefined;
|
|
22884
23235
|
useInventory?: boolean | undefined;
|
|
22885
23236
|
selling?: boolean | undefined;
|
|
22886
|
-
display?: boolean | undefined;
|
|
22887
23237
|
}, {
|
|
22888
23238
|
options?: {
|
|
22889
23239
|
value?: string | undefined;
|
|
22890
23240
|
name?: string | undefined;
|
|
22891
23241
|
}[] | undefined;
|
|
22892
23242
|
id?: string | undefined;
|
|
23243
|
+
display?: boolean | undefined;
|
|
22893
23244
|
additionalAmount?: number | undefined;
|
|
22894
23245
|
stockQuantity?: number | undefined;
|
|
22895
23246
|
useInventory?: boolean | undefined;
|
|
22896
23247
|
selling?: boolean | undefined;
|
|
22897
|
-
display?: boolean | undefined;
|
|
22898
23248
|
}>;
|
|
22899
23249
|
export type CommerceExchangeableVariantProto = z.infer<typeof CommerceExchangeableVariantProtoSchema>;
|
|
22900
23250
|
export declare const CommerceVariantOptionProtoSchema: z.ZodObject<{
|
|
@@ -23075,6 +23425,7 @@ export declare const CommerceGetProductsOutputProtoSchema: z.ZodObject<{
|
|
|
23075
23425
|
price?: number | undefined;
|
|
23076
23426
|
}>>, "many">>;
|
|
23077
23427
|
productCode: z.ZodOptional<z.ZodString>;
|
|
23428
|
+
sellerProductCode: z.ZodOptional<z.ZodString>;
|
|
23078
23429
|
}, "strip", z.ZodTypeAny, {
|
|
23079
23430
|
name?: string | undefined;
|
|
23080
23431
|
description?: string | undefined;
|
|
@@ -23104,6 +23455,7 @@ export declare const CommerceGetProductsOutputProtoSchema: z.ZodObject<{
|
|
|
23104
23455
|
vendor?: string | undefined;
|
|
23105
23456
|
productType?: string | undefined;
|
|
23106
23457
|
categories?: string[] | undefined;
|
|
23458
|
+
sellerProductCode?: string | undefined;
|
|
23107
23459
|
}, {
|
|
23108
23460
|
name?: string | undefined;
|
|
23109
23461
|
description?: string | undefined;
|
|
@@ -23133,6 +23485,7 @@ export declare const CommerceGetProductsOutputProtoSchema: z.ZodObject<{
|
|
|
23133
23485
|
vendor?: string | undefined;
|
|
23134
23486
|
productType?: string | undefined;
|
|
23135
23487
|
categories?: string[] | undefined;
|
|
23488
|
+
sellerProductCode?: string | undefined;
|
|
23136
23489
|
}>>, "many">>;
|
|
23137
23490
|
next: z.ZodOptional<z.ZodString>;
|
|
23138
23491
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -23166,6 +23519,7 @@ export declare const CommerceGetProductsOutputProtoSchema: z.ZodObject<{
|
|
|
23166
23519
|
vendor?: string | undefined;
|
|
23167
23520
|
productType?: string | undefined;
|
|
23168
23521
|
categories?: string[] | undefined;
|
|
23522
|
+
sellerProductCode?: string | undefined;
|
|
23169
23523
|
}[] | undefined;
|
|
23170
23524
|
}, {
|
|
23171
23525
|
next?: string | undefined;
|
|
@@ -23198,6 +23552,7 @@ export declare const CommerceGetProductsOutputProtoSchema: z.ZodObject<{
|
|
|
23198
23552
|
vendor?: string | undefined;
|
|
23199
23553
|
productType?: string | undefined;
|
|
23200
23554
|
categories?: string[] | undefined;
|
|
23555
|
+
sellerProductCode?: string | undefined;
|
|
23201
23556
|
}[] | undefined;
|
|
23202
23557
|
}>;
|
|
23203
23558
|
export type CommerceGetProductsOutputProto = z.infer<typeof CommerceGetProductsOutputProtoSchema>;
|
|
@@ -23254,6 +23609,7 @@ export declare const CommerceProductProtoSchema: z.ZodObject<{
|
|
|
23254
23609
|
price?: number | undefined;
|
|
23255
23610
|
}>>, "many">>;
|
|
23256
23611
|
productCode: z.ZodOptional<z.ZodString>;
|
|
23612
|
+
sellerProductCode: z.ZodOptional<z.ZodString>;
|
|
23257
23613
|
}, "strip", z.ZodTypeAny, {
|
|
23258
23614
|
name?: string | undefined;
|
|
23259
23615
|
description?: string | undefined;
|
|
@@ -23283,6 +23639,7 @@ export declare const CommerceProductProtoSchema: z.ZodObject<{
|
|
|
23283
23639
|
vendor?: string | undefined;
|
|
23284
23640
|
productType?: string | undefined;
|
|
23285
23641
|
categories?: string[] | undefined;
|
|
23642
|
+
sellerProductCode?: string | undefined;
|
|
23286
23643
|
}, {
|
|
23287
23644
|
name?: string | undefined;
|
|
23288
23645
|
description?: string | undefined;
|
|
@@ -23312,6 +23669,7 @@ export declare const CommerceProductProtoSchema: z.ZodObject<{
|
|
|
23312
23669
|
vendor?: string | undefined;
|
|
23313
23670
|
productType?: string | undefined;
|
|
23314
23671
|
categories?: string[] | undefined;
|
|
23672
|
+
sellerProductCode?: string | undefined;
|
|
23315
23673
|
}>;
|
|
23316
23674
|
export type CommerceProductProto = z.infer<typeof CommerceProductProtoSchema>;
|
|
23317
23675
|
export declare const CommerceProductVariantProtoSchema: z.ZodObject<{
|
|
@@ -26453,9 +26811,9 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
26453
26811
|
userId?: string | undefined;
|
|
26454
26812
|
mediumType?: string | undefined;
|
|
26455
26813
|
title?: string | undefined;
|
|
26814
|
+
expiresAt?: string | undefined;
|
|
26456
26815
|
version?: string | undefined;
|
|
26457
26816
|
updatedAt?: string | undefined;
|
|
26458
|
-
expiresAt?: string | undefined;
|
|
26459
26817
|
state?: "USER_CHAT_STATE_UNSPECIFIED" | "USER_CHAT_STATE_CLOSED" | "USER_CHAT_STATE_OPENED" | "USER_CHAT_STATE_SNOOZED" | "USER_CHAT_STATE_INITIAL" | "USER_CHAT_STATE_MISSED" | "USER_CHAT_STATE_QUEUED" | undefined;
|
|
26460
26818
|
source?: Record<string, any> | undefined;
|
|
26461
26819
|
tags?: string[] | undefined;
|
|
@@ -26514,9 +26872,9 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
26514
26872
|
userId?: string | undefined;
|
|
26515
26873
|
mediumType?: string | undefined;
|
|
26516
26874
|
title?: string | undefined;
|
|
26875
|
+
expiresAt?: string | undefined;
|
|
26517
26876
|
version?: string | undefined;
|
|
26518
26877
|
updatedAt?: string | undefined;
|
|
26519
|
-
expiresAt?: string | undefined;
|
|
26520
26878
|
state?: "USER_CHAT_STATE_UNSPECIFIED" | "USER_CHAT_STATE_CLOSED" | "USER_CHAT_STATE_OPENED" | "USER_CHAT_STATE_SNOOZED" | "USER_CHAT_STATE_INITIAL" | "USER_CHAT_STATE_MISSED" | "USER_CHAT_STATE_QUEUED" | undefined;
|
|
26521
26879
|
source?: Record<string, any> | undefined;
|
|
26522
26880
|
tags?: string[] | undefined;
|
|
@@ -26600,20 +26958,20 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
26600
26958
|
amassedPersons: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
26601
26959
|
}, "strip", z.ZodTypeAny, {
|
|
26602
26960
|
id?: string | undefined;
|
|
26961
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
26603
26962
|
state?: "MESSAGE_MEET_STATE_UNSPECIFIED" | "MESSAGE_MEET_STATE_LIVE" | "MESSAGE_MEET_STATE_ENDED" | "MESSAGE_MEET_STATE_TRANSCRIBING" | "MESSAGE_MEET_STATE_TRANSCRIBED" | "MESSAGE_MEET_STATE_TRANSCRIBE_FAILED" | undefined;
|
|
26604
26963
|
country?: string | undefined;
|
|
26605
26964
|
call?: Record<string, any> | undefined;
|
|
26606
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
26607
26965
|
recording?: Record<string, any> | undefined;
|
|
26608
26966
|
managerIds?: string[] | undefined;
|
|
26609
26967
|
roomStartedAt?: string | undefined;
|
|
26610
26968
|
amassedPersons?: string[] | undefined;
|
|
26611
26969
|
}, {
|
|
26612
26970
|
id?: string | undefined;
|
|
26971
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
26613
26972
|
state?: "MESSAGE_MEET_STATE_UNSPECIFIED" | "MESSAGE_MEET_STATE_LIVE" | "MESSAGE_MEET_STATE_ENDED" | "MESSAGE_MEET_STATE_TRANSCRIBING" | "MESSAGE_MEET_STATE_TRANSCRIBED" | "MESSAGE_MEET_STATE_TRANSCRIBE_FAILED" | undefined;
|
|
26614
26973
|
country?: string | undefined;
|
|
26615
26974
|
call?: Record<string, any> | undefined;
|
|
26616
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
26617
26975
|
recording?: Record<string, any> | undefined;
|
|
26618
26976
|
managerIds?: string[] | undefined;
|
|
26619
26977
|
roomStartedAt?: string | undefined;
|
|
@@ -26699,9 +27057,9 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
26699
27057
|
id?: string | undefined;
|
|
26700
27058
|
channelId?: string | undefined;
|
|
26701
27059
|
requestId?: string | undefined;
|
|
27060
|
+
form?: Record<string, any> | undefined;
|
|
26702
27061
|
version?: string | undefined;
|
|
26703
27062
|
updatedAt?: string | undefined;
|
|
26704
|
-
form?: Record<string, any> | undefined;
|
|
26705
27063
|
blocks?: Record<string, any>[] | undefined;
|
|
26706
27064
|
state?: "MESSAGE_STATE_UNSPECIFIED" | "MESSAGE_STATE_SENDING" | "MESSAGE_STATE_SENT" | "MESSAGE_STATE_FAILED" | "MESSAGE_STATE_REMOVED" | undefined;
|
|
26707
27065
|
createdAt?: string | undefined;
|
|
@@ -26714,10 +27072,10 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
26714
27072
|
log?: Record<string, any> | undefined;
|
|
26715
27073
|
meet?: {
|
|
26716
27074
|
id?: string | undefined;
|
|
27075
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
26717
27076
|
state?: "MESSAGE_MEET_STATE_UNSPECIFIED" | "MESSAGE_MEET_STATE_LIVE" | "MESSAGE_MEET_STATE_ENDED" | "MESSAGE_MEET_STATE_TRANSCRIBING" | "MESSAGE_MEET_STATE_TRANSCRIBED" | "MESSAGE_MEET_STATE_TRANSCRIBE_FAILED" | undefined;
|
|
26718
27077
|
country?: string | undefined;
|
|
26719
27078
|
call?: Record<string, any> | undefined;
|
|
26720
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
26721
27079
|
recording?: Record<string, any> | undefined;
|
|
26722
27080
|
managerIds?: string[] | undefined;
|
|
26723
27081
|
roomStartedAt?: string | undefined;
|
|
@@ -26762,9 +27120,9 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
26762
27120
|
id?: string | undefined;
|
|
26763
27121
|
channelId?: string | undefined;
|
|
26764
27122
|
requestId?: string | undefined;
|
|
27123
|
+
form?: Record<string, any> | undefined;
|
|
26765
27124
|
version?: string | undefined;
|
|
26766
27125
|
updatedAt?: string | undefined;
|
|
26767
|
-
form?: Record<string, any> | undefined;
|
|
26768
27126
|
blocks?: Record<string, any>[] | undefined;
|
|
26769
27127
|
state?: "MESSAGE_STATE_UNSPECIFIED" | "MESSAGE_STATE_SENDING" | "MESSAGE_STATE_SENT" | "MESSAGE_STATE_FAILED" | "MESSAGE_STATE_REMOVED" | undefined;
|
|
26770
27128
|
createdAt?: string | undefined;
|
|
@@ -26777,10 +27135,10 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
26777
27135
|
log?: Record<string, any> | undefined;
|
|
26778
27136
|
meet?: {
|
|
26779
27137
|
id?: string | undefined;
|
|
27138
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
26780
27139
|
state?: "MESSAGE_MEET_STATE_UNSPECIFIED" | "MESSAGE_MEET_STATE_LIVE" | "MESSAGE_MEET_STATE_ENDED" | "MESSAGE_MEET_STATE_TRANSCRIBING" | "MESSAGE_MEET_STATE_TRANSCRIBED" | "MESSAGE_MEET_STATE_TRANSCRIBE_FAILED" | undefined;
|
|
26781
27140
|
country?: string | undefined;
|
|
26782
27141
|
call?: Record<string, any> | undefined;
|
|
26783
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
26784
27142
|
recording?: Record<string, any> | undefined;
|
|
26785
27143
|
managerIds?: string[] | undefined;
|
|
26786
27144
|
roomStartedAt?: string | undefined;
|
|
@@ -26829,9 +27187,9 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
26829
27187
|
userId?: string | undefined;
|
|
26830
27188
|
mediumType?: string | undefined;
|
|
26831
27189
|
title?: string | undefined;
|
|
27190
|
+
expiresAt?: string | undefined;
|
|
26832
27191
|
version?: string | undefined;
|
|
26833
27192
|
updatedAt?: string | undefined;
|
|
26834
|
-
expiresAt?: string | undefined;
|
|
26835
27193
|
state?: "USER_CHAT_STATE_UNSPECIFIED" | "USER_CHAT_STATE_CLOSED" | "USER_CHAT_STATE_OPENED" | "USER_CHAT_STATE_SNOOZED" | "USER_CHAT_STATE_INITIAL" | "USER_CHAT_STATE_MISSED" | "USER_CHAT_STATE_QUEUED" | undefined;
|
|
26836
27194
|
source?: Record<string, any> | undefined;
|
|
26837
27195
|
tags?: string[] | undefined;
|
|
@@ -26889,9 +27247,9 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
26889
27247
|
id?: string | undefined;
|
|
26890
27248
|
channelId?: string | undefined;
|
|
26891
27249
|
requestId?: string | undefined;
|
|
27250
|
+
form?: Record<string, any> | undefined;
|
|
26892
27251
|
version?: string | undefined;
|
|
26893
27252
|
updatedAt?: string | undefined;
|
|
26894
|
-
form?: Record<string, any> | undefined;
|
|
26895
27253
|
blocks?: Record<string, any>[] | undefined;
|
|
26896
27254
|
state?: "MESSAGE_STATE_UNSPECIFIED" | "MESSAGE_STATE_SENDING" | "MESSAGE_STATE_SENT" | "MESSAGE_STATE_FAILED" | "MESSAGE_STATE_REMOVED" | undefined;
|
|
26897
27255
|
createdAt?: string | undefined;
|
|
@@ -26904,10 +27262,10 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
26904
27262
|
log?: Record<string, any> | undefined;
|
|
26905
27263
|
meet?: {
|
|
26906
27264
|
id?: string | undefined;
|
|
27265
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
26907
27266
|
state?: "MESSAGE_MEET_STATE_UNSPECIFIED" | "MESSAGE_MEET_STATE_LIVE" | "MESSAGE_MEET_STATE_ENDED" | "MESSAGE_MEET_STATE_TRANSCRIBING" | "MESSAGE_MEET_STATE_TRANSCRIBED" | "MESSAGE_MEET_STATE_TRANSCRIBE_FAILED" | undefined;
|
|
26908
27267
|
country?: string | undefined;
|
|
26909
27268
|
call?: Record<string, any> | undefined;
|
|
26910
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
26911
27269
|
recording?: Record<string, any> | undefined;
|
|
26912
27270
|
managerIds?: string[] | undefined;
|
|
26913
27271
|
roomStartedAt?: string | undefined;
|
|
@@ -26956,9 +27314,9 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
26956
27314
|
userId?: string | undefined;
|
|
26957
27315
|
mediumType?: string | undefined;
|
|
26958
27316
|
title?: string | undefined;
|
|
27317
|
+
expiresAt?: string | undefined;
|
|
26959
27318
|
version?: string | undefined;
|
|
26960
27319
|
updatedAt?: string | undefined;
|
|
26961
|
-
expiresAt?: string | undefined;
|
|
26962
27320
|
state?: "USER_CHAT_STATE_UNSPECIFIED" | "USER_CHAT_STATE_CLOSED" | "USER_CHAT_STATE_OPENED" | "USER_CHAT_STATE_SNOOZED" | "USER_CHAT_STATE_INITIAL" | "USER_CHAT_STATE_MISSED" | "USER_CHAT_STATE_QUEUED" | undefined;
|
|
26963
27321
|
source?: Record<string, any> | undefined;
|
|
26964
27322
|
tags?: string[] | undefined;
|
|
@@ -27016,9 +27374,9 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
27016
27374
|
id?: string | undefined;
|
|
27017
27375
|
channelId?: string | undefined;
|
|
27018
27376
|
requestId?: string | undefined;
|
|
27377
|
+
form?: Record<string, any> | undefined;
|
|
27019
27378
|
version?: string | undefined;
|
|
27020
27379
|
updatedAt?: string | undefined;
|
|
27021
|
-
form?: Record<string, any> | undefined;
|
|
27022
27380
|
blocks?: Record<string, any>[] | undefined;
|
|
27023
27381
|
state?: "MESSAGE_STATE_UNSPECIFIED" | "MESSAGE_STATE_SENDING" | "MESSAGE_STATE_SENT" | "MESSAGE_STATE_FAILED" | "MESSAGE_STATE_REMOVED" | undefined;
|
|
27024
27382
|
createdAt?: string | undefined;
|
|
@@ -27031,10 +27389,10 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
27031
27389
|
log?: Record<string, any> | undefined;
|
|
27032
27390
|
meet?: {
|
|
27033
27391
|
id?: string | undefined;
|
|
27392
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
27034
27393
|
state?: "MESSAGE_MEET_STATE_UNSPECIFIED" | "MESSAGE_MEET_STATE_LIVE" | "MESSAGE_MEET_STATE_ENDED" | "MESSAGE_MEET_STATE_TRANSCRIBING" | "MESSAGE_MEET_STATE_TRANSCRIBED" | "MESSAGE_MEET_STATE_TRANSCRIBE_FAILED" | undefined;
|
|
27035
27394
|
country?: string | undefined;
|
|
27036
27395
|
call?: Record<string, any> | undefined;
|
|
27037
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
27038
27396
|
recording?: Record<string, any> | undefined;
|
|
27039
27397
|
managerIds?: string[] | undefined;
|
|
27040
27398
|
roomStartedAt?: string | undefined;
|
|
@@ -27188,9 +27546,9 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
|
|
|
27188
27546
|
userId?: string | undefined;
|
|
27189
27547
|
mediumType?: string | undefined;
|
|
27190
27548
|
title?: string | undefined;
|
|
27549
|
+
expiresAt?: string | undefined;
|
|
27191
27550
|
version?: string | undefined;
|
|
27192
27551
|
updatedAt?: string | undefined;
|
|
27193
|
-
expiresAt?: string | undefined;
|
|
27194
27552
|
state?: "USER_CHAT_STATE_UNSPECIFIED" | "USER_CHAT_STATE_CLOSED" | "USER_CHAT_STATE_OPENED" | "USER_CHAT_STATE_SNOOZED" | "USER_CHAT_STATE_INITIAL" | "USER_CHAT_STATE_MISSED" | "USER_CHAT_STATE_QUEUED" | undefined;
|
|
27195
27553
|
source?: Record<string, any> | undefined;
|
|
27196
27554
|
tags?: string[] | undefined;
|
|
@@ -27249,9 +27607,9 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
|
|
|
27249
27607
|
userId?: string | undefined;
|
|
27250
27608
|
mediumType?: string | undefined;
|
|
27251
27609
|
title?: string | undefined;
|
|
27610
|
+
expiresAt?: string | undefined;
|
|
27252
27611
|
version?: string | undefined;
|
|
27253
27612
|
updatedAt?: string | undefined;
|
|
27254
|
-
expiresAt?: string | undefined;
|
|
27255
27613
|
state?: "USER_CHAT_STATE_UNSPECIFIED" | "USER_CHAT_STATE_CLOSED" | "USER_CHAT_STATE_OPENED" | "USER_CHAT_STATE_SNOOZED" | "USER_CHAT_STATE_INITIAL" | "USER_CHAT_STATE_MISSED" | "USER_CHAT_STATE_QUEUED" | undefined;
|
|
27256
27614
|
source?: Record<string, any> | undefined;
|
|
27257
27615
|
tags?: string[] | undefined;
|
|
@@ -27312,9 +27670,9 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
|
|
|
27312
27670
|
userId?: string | undefined;
|
|
27313
27671
|
mediumType?: string | undefined;
|
|
27314
27672
|
title?: string | undefined;
|
|
27673
|
+
expiresAt?: string | undefined;
|
|
27315
27674
|
version?: string | undefined;
|
|
27316
27675
|
updatedAt?: string | undefined;
|
|
27317
|
-
expiresAt?: string | undefined;
|
|
27318
27676
|
state?: "USER_CHAT_STATE_UNSPECIFIED" | "USER_CHAT_STATE_CLOSED" | "USER_CHAT_STATE_OPENED" | "USER_CHAT_STATE_SNOOZED" | "USER_CHAT_STATE_INITIAL" | "USER_CHAT_STATE_MISSED" | "USER_CHAT_STATE_QUEUED" | undefined;
|
|
27319
27677
|
source?: Record<string, any> | undefined;
|
|
27320
27678
|
tags?: string[] | undefined;
|
|
@@ -27375,9 +27733,9 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
|
|
|
27375
27733
|
userId?: string | undefined;
|
|
27376
27734
|
mediumType?: string | undefined;
|
|
27377
27735
|
title?: string | undefined;
|
|
27736
|
+
expiresAt?: string | undefined;
|
|
27378
27737
|
version?: string | undefined;
|
|
27379
27738
|
updatedAt?: string | undefined;
|
|
27380
|
-
expiresAt?: string | undefined;
|
|
27381
27739
|
state?: "USER_CHAT_STATE_UNSPECIFIED" | "USER_CHAT_STATE_CLOSED" | "USER_CHAT_STATE_OPENED" | "USER_CHAT_STATE_SNOOZED" | "USER_CHAT_STATE_INITIAL" | "USER_CHAT_STATE_MISSED" | "USER_CHAT_STATE_QUEUED" | undefined;
|
|
27382
27740
|
source?: Record<string, any> | undefined;
|
|
27383
27741
|
tags?: string[] | undefined;
|
|
@@ -27503,9 +27861,9 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
|
|
|
27503
27861
|
userId?: string | undefined;
|
|
27504
27862
|
mediumType?: string | undefined;
|
|
27505
27863
|
title?: string | undefined;
|
|
27864
|
+
expiresAt?: string | undefined;
|
|
27506
27865
|
version?: string | undefined;
|
|
27507
27866
|
updatedAt?: string | undefined;
|
|
27508
|
-
expiresAt?: string | undefined;
|
|
27509
27867
|
state?: "USER_CHAT_STATE_UNSPECIFIED" | "USER_CHAT_STATE_CLOSED" | "USER_CHAT_STATE_OPENED" | "USER_CHAT_STATE_SNOOZED" | "USER_CHAT_STATE_INITIAL" | "USER_CHAT_STATE_MISSED" | "USER_CHAT_STATE_QUEUED" | undefined;
|
|
27510
27868
|
source?: Record<string, any> | undefined;
|
|
27511
27869
|
tags?: string[] | undefined;
|
|
@@ -27564,9 +27922,9 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
|
|
|
27564
27922
|
userId?: string | undefined;
|
|
27565
27923
|
mediumType?: string | undefined;
|
|
27566
27924
|
title?: string | undefined;
|
|
27925
|
+
expiresAt?: string | undefined;
|
|
27567
27926
|
version?: string | undefined;
|
|
27568
27927
|
updatedAt?: string | undefined;
|
|
27569
|
-
expiresAt?: string | undefined;
|
|
27570
27928
|
state?: "USER_CHAT_STATE_UNSPECIFIED" | "USER_CHAT_STATE_CLOSED" | "USER_CHAT_STATE_OPENED" | "USER_CHAT_STATE_SNOOZED" | "USER_CHAT_STATE_INITIAL" | "USER_CHAT_STATE_MISSED" | "USER_CHAT_STATE_QUEUED" | undefined;
|
|
27571
27929
|
source?: Record<string, any> | undefined;
|
|
27572
27930
|
tags?: string[] | undefined;
|
|
@@ -27627,9 +27985,9 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
|
|
|
27627
27985
|
userId?: string | undefined;
|
|
27628
27986
|
mediumType?: string | undefined;
|
|
27629
27987
|
title?: string | undefined;
|
|
27988
|
+
expiresAt?: string | undefined;
|
|
27630
27989
|
version?: string | undefined;
|
|
27631
27990
|
updatedAt?: string | undefined;
|
|
27632
|
-
expiresAt?: string | undefined;
|
|
27633
27991
|
state?: "USER_CHAT_STATE_UNSPECIFIED" | "USER_CHAT_STATE_CLOSED" | "USER_CHAT_STATE_OPENED" | "USER_CHAT_STATE_SNOOZED" | "USER_CHAT_STATE_INITIAL" | "USER_CHAT_STATE_MISSED" | "USER_CHAT_STATE_QUEUED" | undefined;
|
|
27634
27992
|
source?: Record<string, any> | undefined;
|
|
27635
27993
|
tags?: string[] | undefined;
|
|
@@ -27690,9 +28048,9 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
|
|
|
27690
28048
|
userId?: string | undefined;
|
|
27691
28049
|
mediumType?: string | undefined;
|
|
27692
28050
|
title?: string | undefined;
|
|
28051
|
+
expiresAt?: string | undefined;
|
|
27693
28052
|
version?: string | undefined;
|
|
27694
28053
|
updatedAt?: string | undefined;
|
|
27695
|
-
expiresAt?: string | undefined;
|
|
27696
28054
|
state?: "USER_CHAT_STATE_UNSPECIFIED" | "USER_CHAT_STATE_CLOSED" | "USER_CHAT_STATE_OPENED" | "USER_CHAT_STATE_SNOOZED" | "USER_CHAT_STATE_INITIAL" | "USER_CHAT_STATE_MISSED" | "USER_CHAT_STATE_QUEUED" | undefined;
|
|
27697
28055
|
source?: Record<string, any> | undefined;
|
|
27698
28056
|
tags?: string[] | undefined;
|
|
@@ -28059,9 +28417,9 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
28059
28417
|
userId?: string | undefined;
|
|
28060
28418
|
mediumType?: string | undefined;
|
|
28061
28419
|
title?: string | undefined;
|
|
28420
|
+
expiresAt?: string | undefined;
|
|
28062
28421
|
version?: string | undefined;
|
|
28063
28422
|
updatedAt?: string | undefined;
|
|
28064
|
-
expiresAt?: string | undefined;
|
|
28065
28423
|
state?: "USER_CHAT_STATE_UNSPECIFIED" | "USER_CHAT_STATE_CLOSED" | "USER_CHAT_STATE_OPENED" | "USER_CHAT_STATE_SNOOZED" | "USER_CHAT_STATE_INITIAL" | "USER_CHAT_STATE_MISSED" | "USER_CHAT_STATE_QUEUED" | undefined;
|
|
28066
28424
|
source?: Record<string, any> | undefined;
|
|
28067
28425
|
tags?: string[] | undefined;
|
|
@@ -28120,9 +28478,9 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
28120
28478
|
userId?: string | undefined;
|
|
28121
28479
|
mediumType?: string | undefined;
|
|
28122
28480
|
title?: string | undefined;
|
|
28481
|
+
expiresAt?: string | undefined;
|
|
28123
28482
|
version?: string | undefined;
|
|
28124
28483
|
updatedAt?: string | undefined;
|
|
28125
|
-
expiresAt?: string | undefined;
|
|
28126
28484
|
state?: "USER_CHAT_STATE_UNSPECIFIED" | "USER_CHAT_STATE_CLOSED" | "USER_CHAT_STATE_OPENED" | "USER_CHAT_STATE_SNOOZED" | "USER_CHAT_STATE_INITIAL" | "USER_CHAT_STATE_MISSED" | "USER_CHAT_STATE_QUEUED" | undefined;
|
|
28127
28485
|
source?: Record<string, any> | undefined;
|
|
28128
28486
|
tags?: string[] | undefined;
|
|
@@ -28209,20 +28567,20 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
28209
28567
|
amassedPersons: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
28210
28568
|
}, "strip", z.ZodTypeAny, {
|
|
28211
28569
|
id?: string | undefined;
|
|
28570
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
28212
28571
|
state?: "MESSAGE_MEET_STATE_UNSPECIFIED" | "MESSAGE_MEET_STATE_LIVE" | "MESSAGE_MEET_STATE_ENDED" | "MESSAGE_MEET_STATE_TRANSCRIBING" | "MESSAGE_MEET_STATE_TRANSCRIBED" | "MESSAGE_MEET_STATE_TRANSCRIBE_FAILED" | undefined;
|
|
28213
28572
|
country?: string | undefined;
|
|
28214
28573
|
call?: Record<string, any> | undefined;
|
|
28215
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
28216
28574
|
recording?: Record<string, any> | undefined;
|
|
28217
28575
|
managerIds?: string[] | undefined;
|
|
28218
28576
|
roomStartedAt?: string | undefined;
|
|
28219
28577
|
amassedPersons?: string[] | undefined;
|
|
28220
28578
|
}, {
|
|
28221
28579
|
id?: string | undefined;
|
|
28580
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
28222
28581
|
state?: "MESSAGE_MEET_STATE_UNSPECIFIED" | "MESSAGE_MEET_STATE_LIVE" | "MESSAGE_MEET_STATE_ENDED" | "MESSAGE_MEET_STATE_TRANSCRIBING" | "MESSAGE_MEET_STATE_TRANSCRIBED" | "MESSAGE_MEET_STATE_TRANSCRIBE_FAILED" | undefined;
|
|
28223
28582
|
country?: string | undefined;
|
|
28224
28583
|
call?: Record<string, any> | undefined;
|
|
28225
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
28226
28584
|
recording?: Record<string, any> | undefined;
|
|
28227
28585
|
managerIds?: string[] | undefined;
|
|
28228
28586
|
roomStartedAt?: string | undefined;
|
|
@@ -28308,9 +28666,9 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
28308
28666
|
id?: string | undefined;
|
|
28309
28667
|
channelId?: string | undefined;
|
|
28310
28668
|
requestId?: string | undefined;
|
|
28669
|
+
form?: Record<string, any> | undefined;
|
|
28311
28670
|
version?: string | undefined;
|
|
28312
28671
|
updatedAt?: string | undefined;
|
|
28313
|
-
form?: Record<string, any> | undefined;
|
|
28314
28672
|
blocks?: Record<string, any>[] | undefined;
|
|
28315
28673
|
state?: "MESSAGE_STATE_UNSPECIFIED" | "MESSAGE_STATE_SENDING" | "MESSAGE_STATE_SENT" | "MESSAGE_STATE_FAILED" | "MESSAGE_STATE_REMOVED" | undefined;
|
|
28316
28674
|
createdAt?: string | undefined;
|
|
@@ -28323,10 +28681,10 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
28323
28681
|
log?: Record<string, any> | undefined;
|
|
28324
28682
|
meet?: {
|
|
28325
28683
|
id?: string | undefined;
|
|
28684
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
28326
28685
|
state?: "MESSAGE_MEET_STATE_UNSPECIFIED" | "MESSAGE_MEET_STATE_LIVE" | "MESSAGE_MEET_STATE_ENDED" | "MESSAGE_MEET_STATE_TRANSCRIBING" | "MESSAGE_MEET_STATE_TRANSCRIBED" | "MESSAGE_MEET_STATE_TRANSCRIBE_FAILED" | undefined;
|
|
28327
28686
|
country?: string | undefined;
|
|
28328
28687
|
call?: Record<string, any> | undefined;
|
|
28329
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
28330
28688
|
recording?: Record<string, any> | undefined;
|
|
28331
28689
|
managerIds?: string[] | undefined;
|
|
28332
28690
|
roomStartedAt?: string | undefined;
|
|
@@ -28371,9 +28729,9 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
28371
28729
|
id?: string | undefined;
|
|
28372
28730
|
channelId?: string | undefined;
|
|
28373
28731
|
requestId?: string | undefined;
|
|
28732
|
+
form?: Record<string, any> | undefined;
|
|
28374
28733
|
version?: string | undefined;
|
|
28375
28734
|
updatedAt?: string | undefined;
|
|
28376
|
-
form?: Record<string, any> | undefined;
|
|
28377
28735
|
blocks?: Record<string, any>[] | undefined;
|
|
28378
28736
|
state?: "MESSAGE_STATE_UNSPECIFIED" | "MESSAGE_STATE_SENDING" | "MESSAGE_STATE_SENT" | "MESSAGE_STATE_FAILED" | "MESSAGE_STATE_REMOVED" | undefined;
|
|
28379
28737
|
createdAt?: string | undefined;
|
|
@@ -28386,10 +28744,10 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
28386
28744
|
log?: Record<string, any> | undefined;
|
|
28387
28745
|
meet?: {
|
|
28388
28746
|
id?: string | undefined;
|
|
28747
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
28389
28748
|
state?: "MESSAGE_MEET_STATE_UNSPECIFIED" | "MESSAGE_MEET_STATE_LIVE" | "MESSAGE_MEET_STATE_ENDED" | "MESSAGE_MEET_STATE_TRANSCRIBING" | "MESSAGE_MEET_STATE_TRANSCRIBED" | "MESSAGE_MEET_STATE_TRANSCRIBE_FAILED" | undefined;
|
|
28390
28749
|
country?: string | undefined;
|
|
28391
28750
|
call?: Record<string, any> | undefined;
|
|
28392
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
28393
28751
|
recording?: Record<string, any> | undefined;
|
|
28394
28752
|
managerIds?: string[] | undefined;
|
|
28395
28753
|
roomStartedAt?: string | undefined;
|
|
@@ -28474,9 +28832,9 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
28474
28832
|
userId?: string | undefined;
|
|
28475
28833
|
mediumType?: string | undefined;
|
|
28476
28834
|
title?: string | undefined;
|
|
28835
|
+
expiresAt?: string | undefined;
|
|
28477
28836
|
version?: string | undefined;
|
|
28478
28837
|
updatedAt?: string | undefined;
|
|
28479
|
-
expiresAt?: string | undefined;
|
|
28480
28838
|
state?: "USER_CHAT_STATE_UNSPECIFIED" | "USER_CHAT_STATE_CLOSED" | "USER_CHAT_STATE_OPENED" | "USER_CHAT_STATE_SNOOZED" | "USER_CHAT_STATE_INITIAL" | "USER_CHAT_STATE_MISSED" | "USER_CHAT_STATE_QUEUED" | undefined;
|
|
28481
28839
|
source?: Record<string, any> | undefined;
|
|
28482
28840
|
tags?: string[] | undefined;
|
|
@@ -28534,9 +28892,9 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
28534
28892
|
id?: string | undefined;
|
|
28535
28893
|
channelId?: string | undefined;
|
|
28536
28894
|
requestId?: string | undefined;
|
|
28895
|
+
form?: Record<string, any> | undefined;
|
|
28537
28896
|
version?: string | undefined;
|
|
28538
28897
|
updatedAt?: string | undefined;
|
|
28539
|
-
form?: Record<string, any> | undefined;
|
|
28540
28898
|
blocks?: Record<string, any>[] | undefined;
|
|
28541
28899
|
state?: "MESSAGE_STATE_UNSPECIFIED" | "MESSAGE_STATE_SENDING" | "MESSAGE_STATE_SENT" | "MESSAGE_STATE_FAILED" | "MESSAGE_STATE_REMOVED" | undefined;
|
|
28542
28900
|
createdAt?: string | undefined;
|
|
@@ -28549,10 +28907,10 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
28549
28907
|
log?: Record<string, any> | undefined;
|
|
28550
28908
|
meet?: {
|
|
28551
28909
|
id?: string | undefined;
|
|
28910
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
28552
28911
|
state?: "MESSAGE_MEET_STATE_UNSPECIFIED" | "MESSAGE_MEET_STATE_LIVE" | "MESSAGE_MEET_STATE_ENDED" | "MESSAGE_MEET_STATE_TRANSCRIBING" | "MESSAGE_MEET_STATE_TRANSCRIBED" | "MESSAGE_MEET_STATE_TRANSCRIBE_FAILED" | undefined;
|
|
28553
28912
|
country?: string | undefined;
|
|
28554
28913
|
call?: Record<string, any> | undefined;
|
|
28555
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
28556
28914
|
recording?: Record<string, any> | undefined;
|
|
28557
28915
|
managerIds?: string[] | undefined;
|
|
28558
28916
|
roomStartedAt?: string | undefined;
|
|
@@ -28640,9 +28998,9 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
28640
28998
|
userId?: string | undefined;
|
|
28641
28999
|
mediumType?: string | undefined;
|
|
28642
29000
|
title?: string | undefined;
|
|
29001
|
+
expiresAt?: string | undefined;
|
|
28643
29002
|
version?: string | undefined;
|
|
28644
29003
|
updatedAt?: string | undefined;
|
|
28645
|
-
expiresAt?: string | undefined;
|
|
28646
29004
|
state?: "USER_CHAT_STATE_UNSPECIFIED" | "USER_CHAT_STATE_CLOSED" | "USER_CHAT_STATE_OPENED" | "USER_CHAT_STATE_SNOOZED" | "USER_CHAT_STATE_INITIAL" | "USER_CHAT_STATE_MISSED" | "USER_CHAT_STATE_QUEUED" | undefined;
|
|
28647
29005
|
source?: Record<string, any> | undefined;
|
|
28648
29006
|
tags?: string[] | undefined;
|
|
@@ -28700,9 +29058,9 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
28700
29058
|
id?: string | undefined;
|
|
28701
29059
|
channelId?: string | undefined;
|
|
28702
29060
|
requestId?: string | undefined;
|
|
29061
|
+
form?: Record<string, any> | undefined;
|
|
28703
29062
|
version?: string | undefined;
|
|
28704
29063
|
updatedAt?: string | undefined;
|
|
28705
|
-
form?: Record<string, any> | undefined;
|
|
28706
29064
|
blocks?: Record<string, any>[] | undefined;
|
|
28707
29065
|
state?: "MESSAGE_STATE_UNSPECIFIED" | "MESSAGE_STATE_SENDING" | "MESSAGE_STATE_SENT" | "MESSAGE_STATE_FAILED" | "MESSAGE_STATE_REMOVED" | undefined;
|
|
28708
29066
|
createdAt?: string | undefined;
|
|
@@ -28715,10 +29073,10 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
28715
29073
|
log?: Record<string, any> | undefined;
|
|
28716
29074
|
meet?: {
|
|
28717
29075
|
id?: string | undefined;
|
|
29076
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
28718
29077
|
state?: "MESSAGE_MEET_STATE_UNSPECIFIED" | "MESSAGE_MEET_STATE_LIVE" | "MESSAGE_MEET_STATE_ENDED" | "MESSAGE_MEET_STATE_TRANSCRIBING" | "MESSAGE_MEET_STATE_TRANSCRIBED" | "MESSAGE_MEET_STATE_TRANSCRIBE_FAILED" | undefined;
|
|
28719
29078
|
country?: string | undefined;
|
|
28720
29079
|
call?: Record<string, any> | undefined;
|
|
28721
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
28722
29080
|
recording?: Record<string, any> | undefined;
|
|
28723
29081
|
managerIds?: string[] | undefined;
|
|
28724
29082
|
roomStartedAt?: string | undefined;
|
|
@@ -29016,9 +29374,9 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
29016
29374
|
userId?: string | undefined;
|
|
29017
29375
|
mediumType?: string | undefined;
|
|
29018
29376
|
title?: string | undefined;
|
|
29377
|
+
expiresAt?: string | undefined;
|
|
29019
29378
|
version?: string | undefined;
|
|
29020
29379
|
updatedAt?: string | undefined;
|
|
29021
|
-
expiresAt?: string | undefined;
|
|
29022
29380
|
state?: "USER_CHAT_STATE_UNSPECIFIED" | "USER_CHAT_STATE_CLOSED" | "USER_CHAT_STATE_OPENED" | "USER_CHAT_STATE_SNOOZED" | "USER_CHAT_STATE_INITIAL" | "USER_CHAT_STATE_MISSED" | "USER_CHAT_STATE_QUEUED" | undefined;
|
|
29023
29381
|
source?: Record<string, any> | undefined;
|
|
29024
29382
|
tags?: string[] | undefined;
|
|
@@ -29077,9 +29435,9 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
29077
29435
|
userId?: string | undefined;
|
|
29078
29436
|
mediumType?: string | undefined;
|
|
29079
29437
|
title?: string | undefined;
|
|
29438
|
+
expiresAt?: string | undefined;
|
|
29080
29439
|
version?: string | undefined;
|
|
29081
29440
|
updatedAt?: string | undefined;
|
|
29082
|
-
expiresAt?: string | undefined;
|
|
29083
29441
|
state?: "USER_CHAT_STATE_UNSPECIFIED" | "USER_CHAT_STATE_CLOSED" | "USER_CHAT_STATE_OPENED" | "USER_CHAT_STATE_SNOOZED" | "USER_CHAT_STATE_INITIAL" | "USER_CHAT_STATE_MISSED" | "USER_CHAT_STATE_QUEUED" | undefined;
|
|
29084
29442
|
source?: Record<string, any> | undefined;
|
|
29085
29443
|
tags?: string[] | undefined;
|
|
@@ -29163,20 +29521,20 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
29163
29521
|
amassedPersons: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
29164
29522
|
}, "strip", z.ZodTypeAny, {
|
|
29165
29523
|
id?: string | undefined;
|
|
29524
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
29166
29525
|
state?: "MESSAGE_MEET_STATE_UNSPECIFIED" | "MESSAGE_MEET_STATE_LIVE" | "MESSAGE_MEET_STATE_ENDED" | "MESSAGE_MEET_STATE_TRANSCRIBING" | "MESSAGE_MEET_STATE_TRANSCRIBED" | "MESSAGE_MEET_STATE_TRANSCRIBE_FAILED" | undefined;
|
|
29167
29526
|
country?: string | undefined;
|
|
29168
29527
|
call?: Record<string, any> | undefined;
|
|
29169
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
29170
29528
|
recording?: Record<string, any> | undefined;
|
|
29171
29529
|
managerIds?: string[] | undefined;
|
|
29172
29530
|
roomStartedAt?: string | undefined;
|
|
29173
29531
|
amassedPersons?: string[] | undefined;
|
|
29174
29532
|
}, {
|
|
29175
29533
|
id?: string | undefined;
|
|
29534
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
29176
29535
|
state?: "MESSAGE_MEET_STATE_UNSPECIFIED" | "MESSAGE_MEET_STATE_LIVE" | "MESSAGE_MEET_STATE_ENDED" | "MESSAGE_MEET_STATE_TRANSCRIBING" | "MESSAGE_MEET_STATE_TRANSCRIBED" | "MESSAGE_MEET_STATE_TRANSCRIBE_FAILED" | undefined;
|
|
29177
29536
|
country?: string | undefined;
|
|
29178
29537
|
call?: Record<string, any> | undefined;
|
|
29179
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
29180
29538
|
recording?: Record<string, any> | undefined;
|
|
29181
29539
|
managerIds?: string[] | undefined;
|
|
29182
29540
|
roomStartedAt?: string | undefined;
|
|
@@ -29262,9 +29620,9 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
29262
29620
|
id?: string | undefined;
|
|
29263
29621
|
channelId?: string | undefined;
|
|
29264
29622
|
requestId?: string | undefined;
|
|
29623
|
+
form?: Record<string, any> | undefined;
|
|
29265
29624
|
version?: string | undefined;
|
|
29266
29625
|
updatedAt?: string | undefined;
|
|
29267
|
-
form?: Record<string, any> | undefined;
|
|
29268
29626
|
blocks?: Record<string, any>[] | undefined;
|
|
29269
29627
|
state?: "MESSAGE_STATE_UNSPECIFIED" | "MESSAGE_STATE_SENDING" | "MESSAGE_STATE_SENT" | "MESSAGE_STATE_FAILED" | "MESSAGE_STATE_REMOVED" | undefined;
|
|
29270
29628
|
createdAt?: string | undefined;
|
|
@@ -29277,10 +29635,10 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
29277
29635
|
log?: Record<string, any> | undefined;
|
|
29278
29636
|
meet?: {
|
|
29279
29637
|
id?: string | undefined;
|
|
29638
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
29280
29639
|
state?: "MESSAGE_MEET_STATE_UNSPECIFIED" | "MESSAGE_MEET_STATE_LIVE" | "MESSAGE_MEET_STATE_ENDED" | "MESSAGE_MEET_STATE_TRANSCRIBING" | "MESSAGE_MEET_STATE_TRANSCRIBED" | "MESSAGE_MEET_STATE_TRANSCRIBE_FAILED" | undefined;
|
|
29281
29640
|
country?: string | undefined;
|
|
29282
29641
|
call?: Record<string, any> | undefined;
|
|
29283
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
29284
29642
|
recording?: Record<string, any> | undefined;
|
|
29285
29643
|
managerIds?: string[] | undefined;
|
|
29286
29644
|
roomStartedAt?: string | undefined;
|
|
@@ -29325,9 +29683,9 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
29325
29683
|
id?: string | undefined;
|
|
29326
29684
|
channelId?: string | undefined;
|
|
29327
29685
|
requestId?: string | undefined;
|
|
29686
|
+
form?: Record<string, any> | undefined;
|
|
29328
29687
|
version?: string | undefined;
|
|
29329
29688
|
updatedAt?: string | undefined;
|
|
29330
|
-
form?: Record<string, any> | undefined;
|
|
29331
29689
|
blocks?: Record<string, any>[] | undefined;
|
|
29332
29690
|
state?: "MESSAGE_STATE_UNSPECIFIED" | "MESSAGE_STATE_SENDING" | "MESSAGE_STATE_SENT" | "MESSAGE_STATE_FAILED" | "MESSAGE_STATE_REMOVED" | undefined;
|
|
29333
29691
|
createdAt?: string | undefined;
|
|
@@ -29340,10 +29698,10 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
29340
29698
|
log?: Record<string, any> | undefined;
|
|
29341
29699
|
meet?: {
|
|
29342
29700
|
id?: string | undefined;
|
|
29701
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
29343
29702
|
state?: "MESSAGE_MEET_STATE_UNSPECIFIED" | "MESSAGE_MEET_STATE_LIVE" | "MESSAGE_MEET_STATE_ENDED" | "MESSAGE_MEET_STATE_TRANSCRIBING" | "MESSAGE_MEET_STATE_TRANSCRIBED" | "MESSAGE_MEET_STATE_TRANSCRIBE_FAILED" | undefined;
|
|
29344
29703
|
country?: string | undefined;
|
|
29345
29704
|
call?: Record<string, any> | undefined;
|
|
29346
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
29347
29705
|
recording?: Record<string, any> | undefined;
|
|
29348
29706
|
managerIds?: string[] | undefined;
|
|
29349
29707
|
roomStartedAt?: string | undefined;
|
|
@@ -29392,9 +29750,9 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
29392
29750
|
userId?: string | undefined;
|
|
29393
29751
|
mediumType?: string | undefined;
|
|
29394
29752
|
title?: string | undefined;
|
|
29753
|
+
expiresAt?: string | undefined;
|
|
29395
29754
|
version?: string | undefined;
|
|
29396
29755
|
updatedAt?: string | undefined;
|
|
29397
|
-
expiresAt?: string | undefined;
|
|
29398
29756
|
state?: "USER_CHAT_STATE_UNSPECIFIED" | "USER_CHAT_STATE_CLOSED" | "USER_CHAT_STATE_OPENED" | "USER_CHAT_STATE_SNOOZED" | "USER_CHAT_STATE_INITIAL" | "USER_CHAT_STATE_MISSED" | "USER_CHAT_STATE_QUEUED" | undefined;
|
|
29399
29757
|
source?: Record<string, any> | undefined;
|
|
29400
29758
|
tags?: string[] | undefined;
|
|
@@ -29452,9 +29810,9 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
29452
29810
|
id?: string | undefined;
|
|
29453
29811
|
channelId?: string | undefined;
|
|
29454
29812
|
requestId?: string | undefined;
|
|
29813
|
+
form?: Record<string, any> | undefined;
|
|
29455
29814
|
version?: string | undefined;
|
|
29456
29815
|
updatedAt?: string | undefined;
|
|
29457
|
-
form?: Record<string, any> | undefined;
|
|
29458
29816
|
blocks?: Record<string, any>[] | undefined;
|
|
29459
29817
|
state?: "MESSAGE_STATE_UNSPECIFIED" | "MESSAGE_STATE_SENDING" | "MESSAGE_STATE_SENT" | "MESSAGE_STATE_FAILED" | "MESSAGE_STATE_REMOVED" | undefined;
|
|
29460
29818
|
createdAt?: string | undefined;
|
|
@@ -29467,10 +29825,10 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
29467
29825
|
log?: Record<string, any> | undefined;
|
|
29468
29826
|
meet?: {
|
|
29469
29827
|
id?: string | undefined;
|
|
29828
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
29470
29829
|
state?: "MESSAGE_MEET_STATE_UNSPECIFIED" | "MESSAGE_MEET_STATE_LIVE" | "MESSAGE_MEET_STATE_ENDED" | "MESSAGE_MEET_STATE_TRANSCRIBING" | "MESSAGE_MEET_STATE_TRANSCRIBED" | "MESSAGE_MEET_STATE_TRANSCRIBE_FAILED" | undefined;
|
|
29471
29830
|
country?: string | undefined;
|
|
29472
29831
|
call?: Record<string, any> | undefined;
|
|
29473
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
29474
29832
|
recording?: Record<string, any> | undefined;
|
|
29475
29833
|
managerIds?: string[] | undefined;
|
|
29476
29834
|
roomStartedAt?: string | undefined;
|
|
@@ -29519,9 +29877,9 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
29519
29877
|
userId?: string | undefined;
|
|
29520
29878
|
mediumType?: string | undefined;
|
|
29521
29879
|
title?: string | undefined;
|
|
29880
|
+
expiresAt?: string | undefined;
|
|
29522
29881
|
version?: string | undefined;
|
|
29523
29882
|
updatedAt?: string | undefined;
|
|
29524
|
-
expiresAt?: string | undefined;
|
|
29525
29883
|
state?: "USER_CHAT_STATE_UNSPECIFIED" | "USER_CHAT_STATE_CLOSED" | "USER_CHAT_STATE_OPENED" | "USER_CHAT_STATE_SNOOZED" | "USER_CHAT_STATE_INITIAL" | "USER_CHAT_STATE_MISSED" | "USER_CHAT_STATE_QUEUED" | undefined;
|
|
29526
29884
|
source?: Record<string, any> | undefined;
|
|
29527
29885
|
tags?: string[] | undefined;
|
|
@@ -29579,9 +29937,9 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
29579
29937
|
id?: string | undefined;
|
|
29580
29938
|
channelId?: string | undefined;
|
|
29581
29939
|
requestId?: string | undefined;
|
|
29940
|
+
form?: Record<string, any> | undefined;
|
|
29582
29941
|
version?: string | undefined;
|
|
29583
29942
|
updatedAt?: string | undefined;
|
|
29584
|
-
form?: Record<string, any> | undefined;
|
|
29585
29943
|
blocks?: Record<string, any>[] | undefined;
|
|
29586
29944
|
state?: "MESSAGE_STATE_UNSPECIFIED" | "MESSAGE_STATE_SENDING" | "MESSAGE_STATE_SENT" | "MESSAGE_STATE_FAILED" | "MESSAGE_STATE_REMOVED" | undefined;
|
|
29587
29945
|
createdAt?: string | undefined;
|
|
@@ -29594,10 +29952,10 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
29594
29952
|
log?: Record<string, any> | undefined;
|
|
29595
29953
|
meet?: {
|
|
29596
29954
|
id?: string | undefined;
|
|
29955
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
29597
29956
|
state?: "MESSAGE_MEET_STATE_UNSPECIFIED" | "MESSAGE_MEET_STATE_LIVE" | "MESSAGE_MEET_STATE_ENDED" | "MESSAGE_MEET_STATE_TRANSCRIBING" | "MESSAGE_MEET_STATE_TRANSCRIBED" | "MESSAGE_MEET_STATE_TRANSCRIBE_FAILED" | undefined;
|
|
29598
29957
|
country?: string | undefined;
|
|
29599
29958
|
call?: Record<string, any> | undefined;
|
|
29600
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
29601
29959
|
recording?: Record<string, any> | undefined;
|
|
29602
29960
|
managerIds?: string[] | undefined;
|
|
29603
29961
|
roomStartedAt?: string | undefined;
|
|
@@ -30909,4 +31267,44 @@ export declare const DataSourceManagerPermissionProtoSchema: z.ZodObject<{
|
|
|
30909
31267
|
scope?: string | undefined;
|
|
30910
31268
|
}>;
|
|
30911
31269
|
export type DataSourceManagerPermissionProto = z.infer<typeof DataSourceManagerPermissionProtoSchema>;
|
|
31270
|
+
export declare const ConfigActionRedirectProtoSchema: z.ZodObject<{
|
|
31271
|
+
url: z.ZodOptional<z.ZodString>;
|
|
31272
|
+
mode: z.ZodOptional<z.ZodString>;
|
|
31273
|
+
}, "strip", z.ZodTypeAny, {
|
|
31274
|
+
url?: string | undefined;
|
|
31275
|
+
mode?: string | undefined;
|
|
31276
|
+
}, {
|
|
31277
|
+
url?: string | undefined;
|
|
31278
|
+
mode?: string | undefined;
|
|
31279
|
+
}>;
|
|
31280
|
+
export type ConfigActionRedirectProto = z.infer<typeof ConfigActionRedirectProtoSchema>;
|
|
31281
|
+
export declare const ConfigActionResultProtoSchema: z.ZodObject<{
|
|
31282
|
+
valuesPatch: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
31283
|
+
message: z.ZodOptional<z.ZodString>;
|
|
31284
|
+
redirect: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
31285
|
+
url: z.ZodOptional<z.ZodString>;
|
|
31286
|
+
mode: z.ZodOptional<z.ZodString>;
|
|
31287
|
+
}, "strip", z.ZodTypeAny, {
|
|
31288
|
+
url?: string | undefined;
|
|
31289
|
+
mode?: string | undefined;
|
|
31290
|
+
}, {
|
|
31291
|
+
url?: string | undefined;
|
|
31292
|
+
mode?: string | undefined;
|
|
31293
|
+
}>>>;
|
|
31294
|
+
}, "strip", z.ZodTypeAny, {
|
|
31295
|
+
message?: string | undefined;
|
|
31296
|
+
valuesPatch?: Record<string, any> | undefined;
|
|
31297
|
+
redirect?: {
|
|
31298
|
+
url?: string | undefined;
|
|
31299
|
+
mode?: string | undefined;
|
|
31300
|
+
} | undefined;
|
|
31301
|
+
}, {
|
|
31302
|
+
message?: string | undefined;
|
|
31303
|
+
valuesPatch?: Record<string, any> | undefined;
|
|
31304
|
+
redirect?: {
|
|
31305
|
+
url?: string | undefined;
|
|
31306
|
+
mode?: string | undefined;
|
|
31307
|
+
} | undefined;
|
|
31308
|
+
}>;
|
|
31309
|
+
export type ConfigActionResultProto = z.infer<typeof ConfigActionResultProtoSchema>;
|
|
30912
31310
|
//# sourceMappingURL=extension.zod.d.ts.map
|