@channel.io/app-sdk-core 0.25.0 → 0.26.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/commerce.d.ts +8 -0
- 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 +53 -1
- 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 +295 -4
- package/dist/extensions/hook.d.ts.map +1 -1
- package/dist/extensions/hook.js +48 -1
- package/dist/extensions/hook.js.map +1 -1
- package/dist/extensions/index.d.ts +2 -2
- package/dist/extensions/index.d.ts.map +1 -1
- package/dist/extensions/index.js +2 -2
- package/dist/extensions/index.js.map +1 -1
- package/dist/extensions/oauth.d.ts +2 -2
- 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 +6 -6
- 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 +64 -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 +119 -22
- package/dist/gen/channel/app/sdk/v1/extension.zod.d.ts.map +1 -1
- package/dist/gen/channel/app/sdk/v1/extension.zod.js +22 -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 +25 -0
- package/dist/gen/channel/app/sdk/v1/native.d.ts.map +1 -1
- package/dist/gen/channel/app/sdk/v1/native.zod.d.ts +167 -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 +22 -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 +153 -0
- package/dist/schemas/native.d.ts.map +1 -1
- package/dist/schemas/native.js +42 -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;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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>;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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>;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -11178,8 +11186,8 @@ export declare const OAuthConfigProtoSchema: z.ZodObject<{
|
|
|
11178
11186
|
} | undefined;
|
|
11179
11187
|
}>>>;
|
|
11180
11188
|
}, "strip", z.ZodTypeAny, {
|
|
11181
|
-
authType?: string | undefined;
|
|
11182
11189
|
authScope?: string | undefined;
|
|
11190
|
+
authType?: string | undefined;
|
|
11183
11191
|
oauthProvider?: {
|
|
11184
11192
|
providerName?: string | undefined;
|
|
11185
11193
|
providerDescription?: string | undefined;
|
|
@@ -11211,8 +11219,8 @@ export declare const OAuthConfigProtoSchema: z.ZodObject<{
|
|
|
11211
11219
|
} | undefined;
|
|
11212
11220
|
} | undefined;
|
|
11213
11221
|
}, {
|
|
11214
|
-
authType?: string | undefined;
|
|
11215
11222
|
authScope?: string | undefined;
|
|
11223
|
+
authType?: string | undefined;
|
|
11216
11224
|
oauthProvider?: {
|
|
11217
11225
|
providerName?: string | undefined;
|
|
11218
11226
|
providerDescription?: string | undefined;
|
|
@@ -12756,9 +12764,13 @@ export declare const HookConfigProtoSchema: z.ZodObject<{
|
|
|
12756
12764
|
endpointToken?: string | undefined;
|
|
12757
12765
|
executionScope?: string | undefined;
|
|
12758
12766
|
}>>>;
|
|
12767
|
+
redirectOrigins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12768
|
+
authScope: z.ZodOptional<z.ZodString>;
|
|
12759
12769
|
}, "strip", z.ZodTypeAny, {
|
|
12760
12770
|
systemVersion?: string | undefined;
|
|
12761
12771
|
type?: string | undefined;
|
|
12772
|
+
authScope?: string | undefined;
|
|
12773
|
+
redirectOrigins?: string[] | undefined;
|
|
12762
12774
|
actionFunctionName?: string | undefined;
|
|
12763
12775
|
targetId?: string | undefined;
|
|
12764
12776
|
webhook?: {
|
|
@@ -12768,6 +12780,8 @@ export declare const HookConfigProtoSchema: z.ZodObject<{
|
|
|
12768
12780
|
}, {
|
|
12769
12781
|
systemVersion?: string | undefined;
|
|
12770
12782
|
type?: string | undefined;
|
|
12783
|
+
authScope?: string | undefined;
|
|
12784
|
+
redirectOrigins?: string[] | undefined;
|
|
12771
12785
|
actionFunctionName?: string | undefined;
|
|
12772
12786
|
targetId?: string | undefined;
|
|
12773
12787
|
webhook?: {
|
|
@@ -12776,6 +12790,31 @@ export declare const HookConfigProtoSchema: z.ZodObject<{
|
|
|
12776
12790
|
} | undefined;
|
|
12777
12791
|
}>;
|
|
12778
12792
|
export type HookConfigProto = z.infer<typeof HookConfigProtoSchema>;
|
|
12793
|
+
export declare const OAuthFlowHookInputProtoSchema: z.ZodObject<{
|
|
12794
|
+
flowId: z.ZodOptional<z.ZodString>;
|
|
12795
|
+
resumeUrl: z.ZodOptional<z.ZodString>;
|
|
12796
|
+
expiresAt: z.ZodOptional<z.ZodString>;
|
|
12797
|
+
}, "strip", z.ZodTypeAny, {
|
|
12798
|
+
expiresAt?: string | undefined;
|
|
12799
|
+
flowId?: string | undefined;
|
|
12800
|
+
resumeUrl?: string | undefined;
|
|
12801
|
+
}, {
|
|
12802
|
+
expiresAt?: string | undefined;
|
|
12803
|
+
flowId?: string | undefined;
|
|
12804
|
+
resumeUrl?: string | undefined;
|
|
12805
|
+
}>;
|
|
12806
|
+
export type OAuthFlowHookInputProto = z.infer<typeof OAuthFlowHookInputProtoSchema>;
|
|
12807
|
+
export declare const OAuthFlowHookResultProtoSchema: z.ZodObject<{
|
|
12808
|
+
type: z.ZodOptional<z.ZodString>;
|
|
12809
|
+
url: z.ZodOptional<z.ZodString>;
|
|
12810
|
+
}, "strip", z.ZodTypeAny, {
|
|
12811
|
+
type?: string | undefined;
|
|
12812
|
+
url?: string | undefined;
|
|
12813
|
+
}, {
|
|
12814
|
+
type?: string | undefined;
|
|
12815
|
+
url?: string | undefined;
|
|
12816
|
+
}>;
|
|
12817
|
+
export type OAuthFlowHookResultProto = z.infer<typeof OAuthFlowHookResultProtoSchema>;
|
|
12779
12818
|
export declare const HookGetHooksInputProtoSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
12780
12819
|
export type HookGetHooksInputProto = z.infer<typeof HookGetHooksInputProtoSchema>;
|
|
12781
12820
|
export declare const HookGetHooksOutputProtoSchema: z.ZodObject<{
|
|
@@ -12794,9 +12833,13 @@ export declare const HookGetHooksOutputProtoSchema: z.ZodObject<{
|
|
|
12794
12833
|
endpointToken?: string | undefined;
|
|
12795
12834
|
executionScope?: string | undefined;
|
|
12796
12835
|
}>>>;
|
|
12836
|
+
redirectOrigins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12837
|
+
authScope: z.ZodOptional<z.ZodString>;
|
|
12797
12838
|
}, "strip", z.ZodTypeAny, {
|
|
12798
12839
|
systemVersion?: string | undefined;
|
|
12799
12840
|
type?: string | undefined;
|
|
12841
|
+
authScope?: string | undefined;
|
|
12842
|
+
redirectOrigins?: string[] | undefined;
|
|
12800
12843
|
actionFunctionName?: string | undefined;
|
|
12801
12844
|
targetId?: string | undefined;
|
|
12802
12845
|
webhook?: {
|
|
@@ -12806,6 +12849,8 @@ export declare const HookGetHooksOutputProtoSchema: z.ZodObject<{
|
|
|
12806
12849
|
}, {
|
|
12807
12850
|
systemVersion?: string | undefined;
|
|
12808
12851
|
type?: string | undefined;
|
|
12852
|
+
authScope?: string | undefined;
|
|
12853
|
+
redirectOrigins?: string[] | undefined;
|
|
12809
12854
|
actionFunctionName?: string | undefined;
|
|
12810
12855
|
targetId?: string | undefined;
|
|
12811
12856
|
webhook?: {
|
|
@@ -12817,6 +12862,8 @@ export declare const HookGetHooksOutputProtoSchema: z.ZodObject<{
|
|
|
12817
12862
|
hooks?: {
|
|
12818
12863
|
systemVersion?: string | undefined;
|
|
12819
12864
|
type?: string | undefined;
|
|
12865
|
+
authScope?: string | undefined;
|
|
12866
|
+
redirectOrigins?: string[] | undefined;
|
|
12820
12867
|
actionFunctionName?: string | undefined;
|
|
12821
12868
|
targetId?: string | undefined;
|
|
12822
12869
|
webhook?: {
|
|
@@ -12828,6 +12875,8 @@ export declare const HookGetHooksOutputProtoSchema: z.ZodObject<{
|
|
|
12828
12875
|
hooks?: {
|
|
12829
12876
|
systemVersion?: string | undefined;
|
|
12830
12877
|
type?: string | undefined;
|
|
12878
|
+
authScope?: string | undefined;
|
|
12879
|
+
redirectOrigins?: string[] | undefined;
|
|
12831
12880
|
actionFunctionName?: string | undefined;
|
|
12832
12881
|
targetId?: string | undefined;
|
|
12833
12882
|
webhook?: {
|
|
@@ -23075,6 +23124,7 @@ export declare const CommerceGetProductsOutputProtoSchema: z.ZodObject<{
|
|
|
23075
23124
|
price?: number | undefined;
|
|
23076
23125
|
}>>, "many">>;
|
|
23077
23126
|
productCode: z.ZodOptional<z.ZodString>;
|
|
23127
|
+
sellerProductCode: z.ZodOptional<z.ZodString>;
|
|
23078
23128
|
}, "strip", z.ZodTypeAny, {
|
|
23079
23129
|
name?: string | undefined;
|
|
23080
23130
|
description?: string | undefined;
|
|
@@ -23104,6 +23154,7 @@ export declare const CommerceGetProductsOutputProtoSchema: z.ZodObject<{
|
|
|
23104
23154
|
vendor?: string | undefined;
|
|
23105
23155
|
productType?: string | undefined;
|
|
23106
23156
|
categories?: string[] | undefined;
|
|
23157
|
+
sellerProductCode?: string | undefined;
|
|
23107
23158
|
}, {
|
|
23108
23159
|
name?: string | undefined;
|
|
23109
23160
|
description?: string | undefined;
|
|
@@ -23133,6 +23184,7 @@ export declare const CommerceGetProductsOutputProtoSchema: z.ZodObject<{
|
|
|
23133
23184
|
vendor?: string | undefined;
|
|
23134
23185
|
productType?: string | undefined;
|
|
23135
23186
|
categories?: string[] | undefined;
|
|
23187
|
+
sellerProductCode?: string | undefined;
|
|
23136
23188
|
}>>, "many">>;
|
|
23137
23189
|
next: z.ZodOptional<z.ZodString>;
|
|
23138
23190
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -23166,6 +23218,7 @@ export declare const CommerceGetProductsOutputProtoSchema: z.ZodObject<{
|
|
|
23166
23218
|
vendor?: string | undefined;
|
|
23167
23219
|
productType?: string | undefined;
|
|
23168
23220
|
categories?: string[] | undefined;
|
|
23221
|
+
sellerProductCode?: string | undefined;
|
|
23169
23222
|
}[] | undefined;
|
|
23170
23223
|
}, {
|
|
23171
23224
|
next?: string | undefined;
|
|
@@ -23198,6 +23251,7 @@ export declare const CommerceGetProductsOutputProtoSchema: z.ZodObject<{
|
|
|
23198
23251
|
vendor?: string | undefined;
|
|
23199
23252
|
productType?: string | undefined;
|
|
23200
23253
|
categories?: string[] | undefined;
|
|
23254
|
+
sellerProductCode?: string | undefined;
|
|
23201
23255
|
}[] | undefined;
|
|
23202
23256
|
}>;
|
|
23203
23257
|
export type CommerceGetProductsOutputProto = z.infer<typeof CommerceGetProductsOutputProtoSchema>;
|
|
@@ -23254,6 +23308,7 @@ export declare const CommerceProductProtoSchema: z.ZodObject<{
|
|
|
23254
23308
|
price?: number | undefined;
|
|
23255
23309
|
}>>, "many">>;
|
|
23256
23310
|
productCode: z.ZodOptional<z.ZodString>;
|
|
23311
|
+
sellerProductCode: z.ZodOptional<z.ZodString>;
|
|
23257
23312
|
}, "strip", z.ZodTypeAny, {
|
|
23258
23313
|
name?: string | undefined;
|
|
23259
23314
|
description?: string | undefined;
|
|
@@ -23283,6 +23338,7 @@ export declare const CommerceProductProtoSchema: z.ZodObject<{
|
|
|
23283
23338
|
vendor?: string | undefined;
|
|
23284
23339
|
productType?: string | undefined;
|
|
23285
23340
|
categories?: string[] | undefined;
|
|
23341
|
+
sellerProductCode?: string | undefined;
|
|
23286
23342
|
}, {
|
|
23287
23343
|
name?: string | undefined;
|
|
23288
23344
|
description?: string | undefined;
|
|
@@ -23312,6 +23368,7 @@ export declare const CommerceProductProtoSchema: z.ZodObject<{
|
|
|
23312
23368
|
vendor?: string | undefined;
|
|
23313
23369
|
productType?: string | undefined;
|
|
23314
23370
|
categories?: string[] | undefined;
|
|
23371
|
+
sellerProductCode?: string | undefined;
|
|
23315
23372
|
}>;
|
|
23316
23373
|
export type CommerceProductProto = z.infer<typeof CommerceProductProtoSchema>;
|
|
23317
23374
|
export declare const CommerceProductVariantProtoSchema: z.ZodObject<{
|
|
@@ -26600,20 +26657,20 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
26600
26657
|
amassedPersons: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
26601
26658
|
}, "strip", z.ZodTypeAny, {
|
|
26602
26659
|
id?: string | undefined;
|
|
26660
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
26603
26661
|
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
26662
|
country?: string | undefined;
|
|
26605
26663
|
call?: Record<string, any> | undefined;
|
|
26606
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
26607
26664
|
recording?: Record<string, any> | undefined;
|
|
26608
26665
|
managerIds?: string[] | undefined;
|
|
26609
26666
|
roomStartedAt?: string | undefined;
|
|
26610
26667
|
amassedPersons?: string[] | undefined;
|
|
26611
26668
|
}, {
|
|
26612
26669
|
id?: string | undefined;
|
|
26670
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
26613
26671
|
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
26672
|
country?: string | undefined;
|
|
26615
26673
|
call?: Record<string, any> | undefined;
|
|
26616
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
26617
26674
|
recording?: Record<string, any> | undefined;
|
|
26618
26675
|
managerIds?: string[] | undefined;
|
|
26619
26676
|
roomStartedAt?: string | undefined;
|
|
@@ -26714,10 +26771,10 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
26714
26771
|
log?: Record<string, any> | undefined;
|
|
26715
26772
|
meet?: {
|
|
26716
26773
|
id?: string | undefined;
|
|
26774
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
26717
26775
|
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
26776
|
country?: string | undefined;
|
|
26719
26777
|
call?: Record<string, any> | undefined;
|
|
26720
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
26721
26778
|
recording?: Record<string, any> | undefined;
|
|
26722
26779
|
managerIds?: string[] | undefined;
|
|
26723
26780
|
roomStartedAt?: string | undefined;
|
|
@@ -26777,10 +26834,10 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
26777
26834
|
log?: Record<string, any> | undefined;
|
|
26778
26835
|
meet?: {
|
|
26779
26836
|
id?: string | undefined;
|
|
26837
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
26780
26838
|
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
26839
|
country?: string | undefined;
|
|
26782
26840
|
call?: Record<string, any> | undefined;
|
|
26783
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
26784
26841
|
recording?: Record<string, any> | undefined;
|
|
26785
26842
|
managerIds?: string[] | undefined;
|
|
26786
26843
|
roomStartedAt?: string | undefined;
|
|
@@ -26904,10 +26961,10 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
26904
26961
|
log?: Record<string, any> | undefined;
|
|
26905
26962
|
meet?: {
|
|
26906
26963
|
id?: string | undefined;
|
|
26964
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
26907
26965
|
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
26966
|
country?: string | undefined;
|
|
26909
26967
|
call?: Record<string, any> | undefined;
|
|
26910
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
26911
26968
|
recording?: Record<string, any> | undefined;
|
|
26912
26969
|
managerIds?: string[] | undefined;
|
|
26913
26970
|
roomStartedAt?: string | undefined;
|
|
@@ -27031,10 +27088,10 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
27031
27088
|
log?: Record<string, any> | undefined;
|
|
27032
27089
|
meet?: {
|
|
27033
27090
|
id?: string | undefined;
|
|
27091
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
27034
27092
|
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
27093
|
country?: string | undefined;
|
|
27036
27094
|
call?: Record<string, any> | undefined;
|
|
27037
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
27038
27095
|
recording?: Record<string, any> | undefined;
|
|
27039
27096
|
managerIds?: string[] | undefined;
|
|
27040
27097
|
roomStartedAt?: string | undefined;
|
|
@@ -28209,20 +28266,20 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
28209
28266
|
amassedPersons: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
28210
28267
|
}, "strip", z.ZodTypeAny, {
|
|
28211
28268
|
id?: string | undefined;
|
|
28269
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
28212
28270
|
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
28271
|
country?: string | undefined;
|
|
28214
28272
|
call?: Record<string, any> | undefined;
|
|
28215
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
28216
28273
|
recording?: Record<string, any> | undefined;
|
|
28217
28274
|
managerIds?: string[] | undefined;
|
|
28218
28275
|
roomStartedAt?: string | undefined;
|
|
28219
28276
|
amassedPersons?: string[] | undefined;
|
|
28220
28277
|
}, {
|
|
28221
28278
|
id?: string | undefined;
|
|
28279
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
28222
28280
|
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
28281
|
country?: string | undefined;
|
|
28224
28282
|
call?: Record<string, any> | undefined;
|
|
28225
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
28226
28283
|
recording?: Record<string, any> | undefined;
|
|
28227
28284
|
managerIds?: string[] | undefined;
|
|
28228
28285
|
roomStartedAt?: string | undefined;
|
|
@@ -28323,10 +28380,10 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
28323
28380
|
log?: Record<string, any> | undefined;
|
|
28324
28381
|
meet?: {
|
|
28325
28382
|
id?: string | undefined;
|
|
28383
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
28326
28384
|
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
28385
|
country?: string | undefined;
|
|
28328
28386
|
call?: Record<string, any> | undefined;
|
|
28329
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
28330
28387
|
recording?: Record<string, any> | undefined;
|
|
28331
28388
|
managerIds?: string[] | undefined;
|
|
28332
28389
|
roomStartedAt?: string | undefined;
|
|
@@ -28386,10 +28443,10 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
28386
28443
|
log?: Record<string, any> | undefined;
|
|
28387
28444
|
meet?: {
|
|
28388
28445
|
id?: string | undefined;
|
|
28446
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
28389
28447
|
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
28448
|
country?: string | undefined;
|
|
28391
28449
|
call?: Record<string, any> | undefined;
|
|
28392
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
28393
28450
|
recording?: Record<string, any> | undefined;
|
|
28394
28451
|
managerIds?: string[] | undefined;
|
|
28395
28452
|
roomStartedAt?: string | undefined;
|
|
@@ -28549,10 +28606,10 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
28549
28606
|
log?: Record<string, any> | undefined;
|
|
28550
28607
|
meet?: {
|
|
28551
28608
|
id?: string | undefined;
|
|
28609
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
28552
28610
|
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
28611
|
country?: string | undefined;
|
|
28554
28612
|
call?: Record<string, any> | undefined;
|
|
28555
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
28556
28613
|
recording?: Record<string, any> | undefined;
|
|
28557
28614
|
managerIds?: string[] | undefined;
|
|
28558
28615
|
roomStartedAt?: string | undefined;
|
|
@@ -28715,10 +28772,10 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
28715
28772
|
log?: Record<string, any> | undefined;
|
|
28716
28773
|
meet?: {
|
|
28717
28774
|
id?: string | undefined;
|
|
28775
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
28718
28776
|
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
28777
|
country?: string | undefined;
|
|
28720
28778
|
call?: Record<string, any> | undefined;
|
|
28721
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
28722
28779
|
recording?: Record<string, any> | undefined;
|
|
28723
28780
|
managerIds?: string[] | undefined;
|
|
28724
28781
|
roomStartedAt?: string | undefined;
|
|
@@ -29163,20 +29220,20 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
29163
29220
|
amassedPersons: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
29164
29221
|
}, "strip", z.ZodTypeAny, {
|
|
29165
29222
|
id?: string | undefined;
|
|
29223
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
29166
29224
|
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
29225
|
country?: string | undefined;
|
|
29168
29226
|
call?: Record<string, any> | undefined;
|
|
29169
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
29170
29227
|
recording?: Record<string, any> | undefined;
|
|
29171
29228
|
managerIds?: string[] | undefined;
|
|
29172
29229
|
roomStartedAt?: string | undefined;
|
|
29173
29230
|
amassedPersons?: string[] | undefined;
|
|
29174
29231
|
}, {
|
|
29175
29232
|
id?: string | undefined;
|
|
29233
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
29176
29234
|
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
29235
|
country?: string | undefined;
|
|
29178
29236
|
call?: Record<string, any> | undefined;
|
|
29179
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
29180
29237
|
recording?: Record<string, any> | undefined;
|
|
29181
29238
|
managerIds?: string[] | undefined;
|
|
29182
29239
|
roomStartedAt?: string | undefined;
|
|
@@ -29277,10 +29334,10 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
29277
29334
|
log?: Record<string, any> | undefined;
|
|
29278
29335
|
meet?: {
|
|
29279
29336
|
id?: string | undefined;
|
|
29337
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
29280
29338
|
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
29339
|
country?: string | undefined;
|
|
29282
29340
|
call?: Record<string, any> | undefined;
|
|
29283
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
29284
29341
|
recording?: Record<string, any> | undefined;
|
|
29285
29342
|
managerIds?: string[] | undefined;
|
|
29286
29343
|
roomStartedAt?: string | undefined;
|
|
@@ -29340,10 +29397,10 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
29340
29397
|
log?: Record<string, any> | undefined;
|
|
29341
29398
|
meet?: {
|
|
29342
29399
|
id?: string | undefined;
|
|
29400
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
29343
29401
|
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
29402
|
country?: string | undefined;
|
|
29345
29403
|
call?: Record<string, any> | undefined;
|
|
29346
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
29347
29404
|
recording?: Record<string, any> | undefined;
|
|
29348
29405
|
managerIds?: string[] | undefined;
|
|
29349
29406
|
roomStartedAt?: string | undefined;
|
|
@@ -29467,10 +29524,10 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
29467
29524
|
log?: Record<string, any> | undefined;
|
|
29468
29525
|
meet?: {
|
|
29469
29526
|
id?: string | undefined;
|
|
29527
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
29470
29528
|
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
29529
|
country?: string | undefined;
|
|
29472
29530
|
call?: Record<string, any> | undefined;
|
|
29473
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
29474
29531
|
recording?: Record<string, any> | undefined;
|
|
29475
29532
|
managerIds?: string[] | undefined;
|
|
29476
29533
|
roomStartedAt?: string | undefined;
|
|
@@ -29594,10 +29651,10 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
29594
29651
|
log?: Record<string, any> | undefined;
|
|
29595
29652
|
meet?: {
|
|
29596
29653
|
id?: string | undefined;
|
|
29654
|
+
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
29597
29655
|
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
29656
|
country?: string | undefined;
|
|
29599
29657
|
call?: Record<string, any> | undefined;
|
|
29600
|
-
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
29601
29658
|
recording?: Record<string, any> | undefined;
|
|
29602
29659
|
managerIds?: string[] | undefined;
|
|
29603
29660
|
roomStartedAt?: string | undefined;
|
|
@@ -30909,4 +30966,44 @@ export declare const DataSourceManagerPermissionProtoSchema: z.ZodObject<{
|
|
|
30909
30966
|
scope?: string | undefined;
|
|
30910
30967
|
}>;
|
|
30911
30968
|
export type DataSourceManagerPermissionProto = z.infer<typeof DataSourceManagerPermissionProtoSchema>;
|
|
30969
|
+
export declare const ConfigActionRedirectProtoSchema: z.ZodObject<{
|
|
30970
|
+
url: z.ZodOptional<z.ZodString>;
|
|
30971
|
+
mode: z.ZodOptional<z.ZodString>;
|
|
30972
|
+
}, "strip", z.ZodTypeAny, {
|
|
30973
|
+
url?: string | undefined;
|
|
30974
|
+
mode?: string | undefined;
|
|
30975
|
+
}, {
|
|
30976
|
+
url?: string | undefined;
|
|
30977
|
+
mode?: string | undefined;
|
|
30978
|
+
}>;
|
|
30979
|
+
export type ConfigActionRedirectProto = z.infer<typeof ConfigActionRedirectProtoSchema>;
|
|
30980
|
+
export declare const ConfigActionResultProtoSchema: z.ZodObject<{
|
|
30981
|
+
valuesPatch: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
30982
|
+
message: z.ZodOptional<z.ZodString>;
|
|
30983
|
+
redirect: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
30984
|
+
url: z.ZodOptional<z.ZodString>;
|
|
30985
|
+
mode: z.ZodOptional<z.ZodString>;
|
|
30986
|
+
}, "strip", z.ZodTypeAny, {
|
|
30987
|
+
url?: string | undefined;
|
|
30988
|
+
mode?: string | undefined;
|
|
30989
|
+
}, {
|
|
30990
|
+
url?: string | undefined;
|
|
30991
|
+
mode?: string | undefined;
|
|
30992
|
+
}>>>;
|
|
30993
|
+
}, "strip", z.ZodTypeAny, {
|
|
30994
|
+
message?: string | undefined;
|
|
30995
|
+
valuesPatch?: Record<string, any> | undefined;
|
|
30996
|
+
redirect?: {
|
|
30997
|
+
url?: string | undefined;
|
|
30998
|
+
mode?: string | undefined;
|
|
30999
|
+
} | undefined;
|
|
31000
|
+
}, {
|
|
31001
|
+
message?: string | undefined;
|
|
31002
|
+
valuesPatch?: Record<string, any> | undefined;
|
|
31003
|
+
redirect?: {
|
|
31004
|
+
url?: string | undefined;
|
|
31005
|
+
mode?: string | undefined;
|
|
31006
|
+
} | undefined;
|
|
31007
|
+
}>;
|
|
31008
|
+
export type ConfigActionResultProto = z.infer<typeof ConfigActionResultProtoSchema>;
|
|
30912
31009
|
//# sourceMappingURL=extension.zod.d.ts.map
|