@channel.io/app-sdk-core 0.21.1 → 0.23.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/commerce.d.ts +25 -0
- package/dist/extensions/commerce.d.ts.map +1 -1
- package/dist/extensions/config.d.ts +335 -0
- package/dist/extensions/config.d.ts.map +1 -1
- package/dist/extensions/config.js +8 -0
- package/dist/extensions/config.js.map +1 -1
- package/dist/extensions/datasource.d.ts +159 -10
- package/dist/extensions/datasource.d.ts.map +1 -1
- package/dist/extensions/datasource.js +8 -1
- package/dist/extensions/datasource.js.map +1 -1
- package/dist/extensions/hook.d.ts +149 -2
- package/dist/extensions/hook.d.ts.map +1 -1
- package/dist/extensions/hook.js +48 -0
- 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/interfaces/hook.d.ts +1 -0
- package/dist/extensions/interfaces/hook.d.ts.map +1 -1
- package/dist/extensions/interfaces/hook.js.map +1 -1
- package/dist/extensions/interfaces/index.d.ts +1 -1
- package/dist/extensions/interfaces/index.d.ts.map +1 -1
- package/dist/extensions/interfaces/index.js +1 -1
- package/dist/extensions/interfaces/index.js.map +1 -1
- package/dist/extensions/interfaces/oauth.d.ts +1 -1
- package/dist/extensions/notebook.d.ts +6 -6
- package/dist/extensions/oauth.d.ts +12 -4
- package/dist/extensions/oauth.d.ts.map +1 -1
- package/dist/extensions/oauth.js +9 -1
- package/dist/extensions/oauth.js.map +1 -1
- package/dist/extensions/order.d.ts +3 -0
- package/dist/extensions/order.d.ts.map +1 -1
- package/dist/extensions/order.js +1 -0
- package/dist/extensions/order.js.map +1 -1
- package/dist/gen/channel/app/sdk/v1/common.zod.d.ts +8 -8
- package/dist/gen/channel/app/sdk/v1/extension.d.ts +24 -0
- package/dist/gen/channel/app/sdk/v1/extension.d.ts.map +1 -1
- package/dist/gen/channel/app/sdk/v1/extension.zod.d.ts +326 -60
- package/dist/gen/channel/app/sdk/v1/extension.zod.d.ts.map +1 -1
- package/dist/gen/channel/app/sdk/v1/extension.zod.js +24 -0
- package/dist/gen/channel/app/sdk/v1/extension.zod.js.map +1 -1
- package/dist/types/native.d.ts +17 -0
- package/dist/types/native.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -2516,6 +2516,7 @@ export declare const ConfigFieldProtoSchema: z.ZodObject<{
|
|
|
2516
2516
|
overviewFeature: z.ZodOptional<z.ZodBoolean>;
|
|
2517
2517
|
overviewLabel: z.ZodOptional<z.ZodString>;
|
|
2518
2518
|
overviewDescription: z.ZodOptional<z.ZodString>;
|
|
2519
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2519
2520
|
}, "strip", z.ZodTypeAny, {
|
|
2520
2521
|
type?: string | undefined;
|
|
2521
2522
|
description?: string | undefined;
|
|
@@ -2608,6 +2609,7 @@ export declare const ConfigFieldProtoSchema: z.ZodObject<{
|
|
|
2608
2609
|
onChangeSuccessMessage?: string | undefined;
|
|
2609
2610
|
}> | undefined;
|
|
2610
2611
|
}[] | undefined;
|
|
2612
|
+
hidden?: boolean | undefined;
|
|
2611
2613
|
resolvesTo?: {
|
|
2612
2614
|
key?: string | undefined;
|
|
2613
2615
|
sensitive?: boolean | undefined;
|
|
@@ -2800,6 +2802,7 @@ export declare const ConfigFieldProtoSchema: z.ZodObject<{
|
|
|
2800
2802
|
onChangeSuccessMessage?: string | undefined;
|
|
2801
2803
|
}> | undefined;
|
|
2802
2804
|
}[] | undefined;
|
|
2805
|
+
hidden?: boolean | undefined;
|
|
2803
2806
|
resolvesTo?: {
|
|
2804
2807
|
key?: string | undefined;
|
|
2805
2808
|
sensitive?: boolean | undefined;
|
|
@@ -3722,6 +3725,7 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
3722
3725
|
overviewFeature: z.ZodOptional<z.ZodBoolean>;
|
|
3723
3726
|
overviewLabel: z.ZodOptional<z.ZodString>;
|
|
3724
3727
|
overviewDescription: z.ZodOptional<z.ZodString>;
|
|
3728
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3725
3729
|
}, "strip", z.ZodTypeAny, {
|
|
3726
3730
|
type?: string | undefined;
|
|
3727
3731
|
description?: string | undefined;
|
|
@@ -3814,6 +3818,7 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
3814
3818
|
onChangeSuccessMessage?: string | undefined;
|
|
3815
3819
|
}> | undefined;
|
|
3816
3820
|
}[] | undefined;
|
|
3821
|
+
hidden?: boolean | undefined;
|
|
3817
3822
|
resolvesTo?: {
|
|
3818
3823
|
key?: string | undefined;
|
|
3819
3824
|
sensitive?: boolean | undefined;
|
|
@@ -4006,6 +4011,7 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
4006
4011
|
onChangeSuccessMessage?: string | undefined;
|
|
4007
4012
|
}> | undefined;
|
|
4008
4013
|
}[] | undefined;
|
|
4014
|
+
hidden?: boolean | undefined;
|
|
4009
4015
|
resolvesTo?: {
|
|
4010
4016
|
key?: string | undefined;
|
|
4011
4017
|
sensitive?: boolean | undefined;
|
|
@@ -4602,6 +4608,7 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
4602
4608
|
afterSuccess: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4603
4609
|
successMessage: z.ZodOptional<z.ZodString>;
|
|
4604
4610
|
showInOverviewMenu: z.ZodOptional<z.ZodBoolean>;
|
|
4611
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
4605
4612
|
}, "strip", z.ZodTypeAny, {
|
|
4606
4613
|
params?: Record<string, any> | undefined;
|
|
4607
4614
|
type?: string | undefined;
|
|
@@ -4743,6 +4750,7 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
4743
4750
|
onChangeSuccessMessage?: string | undefined;
|
|
4744
4751
|
}> | undefined;
|
|
4745
4752
|
}[] | undefined;
|
|
4753
|
+
hidden?: boolean | undefined;
|
|
4746
4754
|
resolvesTo?: {
|
|
4747
4755
|
key?: string | undefined;
|
|
4748
4756
|
sensitive?: boolean | undefined;
|
|
@@ -4896,6 +4904,7 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
4896
4904
|
onChangeSuccessMessage?: string | undefined;
|
|
4897
4905
|
}> | undefined;
|
|
4898
4906
|
}[] | undefined;
|
|
4907
|
+
hidden?: boolean | undefined;
|
|
4899
4908
|
resolvesTo?: {
|
|
4900
4909
|
key?: string | undefined;
|
|
4901
4910
|
sensitive?: boolean | undefined;
|
|
@@ -5147,6 +5156,7 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
5147
5156
|
onChangeSuccessMessage?: string | undefined;
|
|
5148
5157
|
}> | undefined;
|
|
5149
5158
|
}[] | undefined;
|
|
5159
|
+
hidden?: boolean | undefined;
|
|
5150
5160
|
resolvesTo?: {
|
|
5151
5161
|
key?: string | undefined;
|
|
5152
5162
|
sensitive?: boolean | undefined;
|
|
@@ -5300,6 +5310,7 @@ export declare const ConfigBlockProtoSchema: z.ZodObject<{
|
|
|
5300
5310
|
onChangeSuccessMessage?: string | undefined;
|
|
5301
5311
|
}> | undefined;
|
|
5302
5312
|
}[] | undefined;
|
|
5313
|
+
hidden?: boolean | undefined;
|
|
5303
5314
|
resolvesTo?: {
|
|
5304
5315
|
key?: string | undefined;
|
|
5305
5316
|
sensitive?: boolean | undefined;
|
|
@@ -6294,6 +6305,7 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
6294
6305
|
overviewFeature: z.ZodOptional<z.ZodBoolean>;
|
|
6295
6306
|
overviewLabel: z.ZodOptional<z.ZodString>;
|
|
6296
6307
|
overviewDescription: z.ZodOptional<z.ZodString>;
|
|
6308
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
6297
6309
|
}, "strip", z.ZodTypeAny, {
|
|
6298
6310
|
type?: string | undefined;
|
|
6299
6311
|
description?: string | undefined;
|
|
@@ -6386,6 +6398,7 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
6386
6398
|
onChangeSuccessMessage?: string | undefined;
|
|
6387
6399
|
}> | undefined;
|
|
6388
6400
|
}[] | undefined;
|
|
6401
|
+
hidden?: boolean | undefined;
|
|
6389
6402
|
resolvesTo?: {
|
|
6390
6403
|
key?: string | undefined;
|
|
6391
6404
|
sensitive?: boolean | undefined;
|
|
@@ -6578,6 +6591,7 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
6578
6591
|
onChangeSuccessMessage?: string | undefined;
|
|
6579
6592
|
}> | undefined;
|
|
6580
6593
|
}[] | undefined;
|
|
6594
|
+
hidden?: boolean | undefined;
|
|
6581
6595
|
resolvesTo?: {
|
|
6582
6596
|
key?: string | undefined;
|
|
6583
6597
|
sensitive?: boolean | undefined;
|
|
@@ -7174,6 +7188,7 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
7174
7188
|
afterSuccess: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7175
7189
|
successMessage: z.ZodOptional<z.ZodString>;
|
|
7176
7190
|
showInOverviewMenu: z.ZodOptional<z.ZodBoolean>;
|
|
7191
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
7177
7192
|
}, "strip", z.ZodTypeAny, {
|
|
7178
7193
|
params?: Record<string, any> | undefined;
|
|
7179
7194
|
type?: string | undefined;
|
|
@@ -7315,6 +7330,7 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
7315
7330
|
onChangeSuccessMessage?: string | undefined;
|
|
7316
7331
|
}> | undefined;
|
|
7317
7332
|
}[] | undefined;
|
|
7333
|
+
hidden?: boolean | undefined;
|
|
7318
7334
|
resolvesTo?: {
|
|
7319
7335
|
key?: string | undefined;
|
|
7320
7336
|
sensitive?: boolean | undefined;
|
|
@@ -7468,6 +7484,7 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
7468
7484
|
onChangeSuccessMessage?: string | undefined;
|
|
7469
7485
|
}> | undefined;
|
|
7470
7486
|
}[] | undefined;
|
|
7487
|
+
hidden?: boolean | undefined;
|
|
7471
7488
|
resolvesTo?: {
|
|
7472
7489
|
key?: string | undefined;
|
|
7473
7490
|
sensitive?: boolean | undefined;
|
|
@@ -7719,6 +7736,7 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
7719
7736
|
onChangeSuccessMessage?: string | undefined;
|
|
7720
7737
|
}> | undefined;
|
|
7721
7738
|
}[] | undefined;
|
|
7739
|
+
hidden?: boolean | undefined;
|
|
7722
7740
|
resolvesTo?: {
|
|
7723
7741
|
key?: string | undefined;
|
|
7724
7742
|
sensitive?: boolean | undefined;
|
|
@@ -7872,6 +7890,7 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
7872
7890
|
onChangeSuccessMessage?: string | undefined;
|
|
7873
7891
|
}> | undefined;
|
|
7874
7892
|
}[] | undefined;
|
|
7893
|
+
hidden?: boolean | undefined;
|
|
7875
7894
|
resolvesTo?: {
|
|
7876
7895
|
key?: string | undefined;
|
|
7877
7896
|
sensitive?: boolean | undefined;
|
|
@@ -8905,6 +8924,7 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
8905
8924
|
onChangeSuccessMessage?: string | undefined;
|
|
8906
8925
|
}> | undefined;
|
|
8907
8926
|
}[] | undefined;
|
|
8927
|
+
hidden?: boolean | undefined;
|
|
8908
8928
|
resolvesTo?: {
|
|
8909
8929
|
key?: string | undefined;
|
|
8910
8930
|
sensitive?: boolean | undefined;
|
|
@@ -9058,6 +9078,7 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
9058
9078
|
onChangeSuccessMessage?: string | undefined;
|
|
9059
9079
|
}> | undefined;
|
|
9060
9080
|
}[] | undefined;
|
|
9081
|
+
hidden?: boolean | undefined;
|
|
9061
9082
|
resolvesTo?: {
|
|
9062
9083
|
key?: string | undefined;
|
|
9063
9084
|
sensitive?: boolean | undefined;
|
|
@@ -9474,6 +9495,7 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
9474
9495
|
onChangeSuccessMessage?: string | undefined;
|
|
9475
9496
|
}> | undefined;
|
|
9476
9497
|
}[] | undefined;
|
|
9498
|
+
hidden?: boolean | undefined;
|
|
9477
9499
|
resolvesTo?: {
|
|
9478
9500
|
key?: string | undefined;
|
|
9479
9501
|
sensitive?: boolean | undefined;
|
|
@@ -9627,6 +9649,7 @@ export declare const ConfigGetConfigSchemaOutputProtoSchema: z.ZodObject<{
|
|
|
9627
9649
|
onChangeSuccessMessage?: string | undefined;
|
|
9628
9650
|
}> | undefined;
|
|
9629
9651
|
}[] | undefined;
|
|
9652
|
+
hidden?: boolean | undefined;
|
|
9630
9653
|
resolvesTo?: {
|
|
9631
9654
|
key?: string | undefined;
|
|
9632
9655
|
sensitive?: boolean | undefined;
|
|
@@ -14170,6 +14193,16 @@ export declare const DataSourceTableProtoSchema: z.ZodObject<{
|
|
|
14170
14193
|
updatedAt: z.ZodOptional<z.ZodNumber>;
|
|
14171
14194
|
tableType: z.ZodOptional<z.ZodString>;
|
|
14172
14195
|
managerAccess: z.ZodOptional<z.ZodString>;
|
|
14196
|
+
permissions: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
14197
|
+
action: z.ZodOptional<z.ZodString>;
|
|
14198
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
14199
|
+
}, "strip", z.ZodTypeAny, {
|
|
14200
|
+
action?: string | undefined;
|
|
14201
|
+
scope?: string | undefined;
|
|
14202
|
+
}, {
|
|
14203
|
+
action?: string | undefined;
|
|
14204
|
+
scope?: string | undefined;
|
|
14205
|
+
}>>, "many">>;
|
|
14173
14206
|
}, "strip", z.ZodTypeAny, {
|
|
14174
14207
|
name?: string | undefined;
|
|
14175
14208
|
description?: string | undefined;
|
|
@@ -14178,6 +14211,10 @@ export declare const DataSourceTableProtoSchema: z.ZodObject<{
|
|
|
14178
14211
|
estimatedRowCount?: number | undefined;
|
|
14179
14212
|
tableType?: string | undefined;
|
|
14180
14213
|
managerAccess?: string | undefined;
|
|
14214
|
+
permissions?: {
|
|
14215
|
+
action?: string | undefined;
|
|
14216
|
+
scope?: string | undefined;
|
|
14217
|
+
}[] | undefined;
|
|
14181
14218
|
}, {
|
|
14182
14219
|
name?: string | undefined;
|
|
14183
14220
|
description?: string | undefined;
|
|
@@ -14186,6 +14223,10 @@ export declare const DataSourceTableProtoSchema: z.ZodObject<{
|
|
|
14186
14223
|
estimatedRowCount?: number | undefined;
|
|
14187
14224
|
tableType?: string | undefined;
|
|
14188
14225
|
managerAccess?: string | undefined;
|
|
14226
|
+
permissions?: {
|
|
14227
|
+
action?: string | undefined;
|
|
14228
|
+
scope?: string | undefined;
|
|
14229
|
+
}[] | undefined;
|
|
14189
14230
|
}>;
|
|
14190
14231
|
export type DataSourceTableProto = z.infer<typeof DataSourceTableProtoSchema>;
|
|
14191
14232
|
export declare const DataSourceColumnProtoSchema: z.ZodObject<{
|
|
@@ -14223,6 +14264,16 @@ export declare const DataSourceTableDefinitionProtoSchema: z.ZodObject<{
|
|
|
14223
14264
|
updatedAt: z.ZodOptional<z.ZodNumber>;
|
|
14224
14265
|
tableType: z.ZodOptional<z.ZodString>;
|
|
14225
14266
|
managerAccess: z.ZodOptional<z.ZodString>;
|
|
14267
|
+
permissions: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
14268
|
+
action: z.ZodOptional<z.ZodString>;
|
|
14269
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
14270
|
+
}, "strip", z.ZodTypeAny, {
|
|
14271
|
+
action?: string | undefined;
|
|
14272
|
+
scope?: string | undefined;
|
|
14273
|
+
}, {
|
|
14274
|
+
action?: string | undefined;
|
|
14275
|
+
scope?: string | undefined;
|
|
14276
|
+
}>>, "many">>;
|
|
14226
14277
|
}, "strip", z.ZodTypeAny, {
|
|
14227
14278
|
name?: string | undefined;
|
|
14228
14279
|
description?: string | undefined;
|
|
@@ -14231,6 +14282,10 @@ export declare const DataSourceTableDefinitionProtoSchema: z.ZodObject<{
|
|
|
14231
14282
|
estimatedRowCount?: number | undefined;
|
|
14232
14283
|
tableType?: string | undefined;
|
|
14233
14284
|
managerAccess?: string | undefined;
|
|
14285
|
+
permissions?: {
|
|
14286
|
+
action?: string | undefined;
|
|
14287
|
+
scope?: string | undefined;
|
|
14288
|
+
}[] | undefined;
|
|
14234
14289
|
}, {
|
|
14235
14290
|
name?: string | undefined;
|
|
14236
14291
|
description?: string | undefined;
|
|
@@ -14239,6 +14294,10 @@ export declare const DataSourceTableDefinitionProtoSchema: z.ZodObject<{
|
|
|
14239
14294
|
estimatedRowCount?: number | undefined;
|
|
14240
14295
|
tableType?: string | undefined;
|
|
14241
14296
|
managerAccess?: string | undefined;
|
|
14297
|
+
permissions?: {
|
|
14298
|
+
action?: string | undefined;
|
|
14299
|
+
scope?: string | undefined;
|
|
14300
|
+
}[] | undefined;
|
|
14242
14301
|
}>>>;
|
|
14243
14302
|
columns: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
14244
14303
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -14284,6 +14343,10 @@ export declare const DataSourceTableDefinitionProtoSchema: z.ZodObject<{
|
|
|
14284
14343
|
estimatedRowCount?: number | undefined;
|
|
14285
14344
|
tableType?: string | undefined;
|
|
14286
14345
|
managerAccess?: string | undefined;
|
|
14346
|
+
permissions?: {
|
|
14347
|
+
action?: string | undefined;
|
|
14348
|
+
scope?: string | undefined;
|
|
14349
|
+
}[] | undefined;
|
|
14287
14350
|
} | undefined;
|
|
14288
14351
|
primaryKey?: string[] | undefined;
|
|
14289
14352
|
}, {
|
|
@@ -14304,6 +14367,10 @@ export declare const DataSourceTableDefinitionProtoSchema: z.ZodObject<{
|
|
|
14304
14367
|
estimatedRowCount?: number | undefined;
|
|
14305
14368
|
tableType?: string | undefined;
|
|
14306
14369
|
managerAccess?: string | undefined;
|
|
14370
|
+
permissions?: {
|
|
14371
|
+
action?: string | undefined;
|
|
14372
|
+
scope?: string | undefined;
|
|
14373
|
+
}[] | undefined;
|
|
14307
14374
|
} | undefined;
|
|
14308
14375
|
primaryKey?: string[] | undefined;
|
|
14309
14376
|
}>;
|
|
@@ -14317,6 +14384,16 @@ export declare const DataSourceTableListingProtoSchema: z.ZodObject<{
|
|
|
14317
14384
|
updatedAt: z.ZodOptional<z.ZodNumber>;
|
|
14318
14385
|
tableType: z.ZodOptional<z.ZodString>;
|
|
14319
14386
|
managerAccess: z.ZodOptional<z.ZodString>;
|
|
14387
|
+
permissions: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
14388
|
+
action: z.ZodOptional<z.ZodString>;
|
|
14389
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
14390
|
+
}, "strip", z.ZodTypeAny, {
|
|
14391
|
+
action?: string | undefined;
|
|
14392
|
+
scope?: string | undefined;
|
|
14393
|
+
}, {
|
|
14394
|
+
action?: string | undefined;
|
|
14395
|
+
scope?: string | undefined;
|
|
14396
|
+
}>>, "many">>;
|
|
14320
14397
|
}, "strip", z.ZodTypeAny, {
|
|
14321
14398
|
name?: string | undefined;
|
|
14322
14399
|
description?: string | undefined;
|
|
@@ -14325,6 +14402,10 @@ export declare const DataSourceTableListingProtoSchema: z.ZodObject<{
|
|
|
14325
14402
|
estimatedRowCount?: number | undefined;
|
|
14326
14403
|
tableType?: string | undefined;
|
|
14327
14404
|
managerAccess?: string | undefined;
|
|
14405
|
+
permissions?: {
|
|
14406
|
+
action?: string | undefined;
|
|
14407
|
+
scope?: string | undefined;
|
|
14408
|
+
}[] | undefined;
|
|
14328
14409
|
}, {
|
|
14329
14410
|
name?: string | undefined;
|
|
14330
14411
|
description?: string | undefined;
|
|
@@ -14333,6 +14414,10 @@ export declare const DataSourceTableListingProtoSchema: z.ZodObject<{
|
|
|
14333
14414
|
estimatedRowCount?: number | undefined;
|
|
14334
14415
|
tableType?: string | undefined;
|
|
14335
14416
|
managerAccess?: string | undefined;
|
|
14417
|
+
permissions?: {
|
|
14418
|
+
action?: string | undefined;
|
|
14419
|
+
scope?: string | undefined;
|
|
14420
|
+
}[] | undefined;
|
|
14336
14421
|
}>>>;
|
|
14337
14422
|
searchText: z.ZodOptional<z.ZodString>;
|
|
14338
14423
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -14345,6 +14430,10 @@ export declare const DataSourceTableListingProtoSchema: z.ZodObject<{
|
|
|
14345
14430
|
estimatedRowCount?: number | undefined;
|
|
14346
14431
|
tableType?: string | undefined;
|
|
14347
14432
|
managerAccess?: string | undefined;
|
|
14433
|
+
permissions?: {
|
|
14434
|
+
action?: string | undefined;
|
|
14435
|
+
scope?: string | undefined;
|
|
14436
|
+
}[] | undefined;
|
|
14348
14437
|
} | undefined;
|
|
14349
14438
|
searchText?: string | undefined;
|
|
14350
14439
|
tags?: string[] | undefined;
|
|
@@ -14357,6 +14446,10 @@ export declare const DataSourceTableListingProtoSchema: z.ZodObject<{
|
|
|
14357
14446
|
estimatedRowCount?: number | undefined;
|
|
14358
14447
|
tableType?: string | undefined;
|
|
14359
14448
|
managerAccess?: string | undefined;
|
|
14449
|
+
permissions?: {
|
|
14450
|
+
action?: string | undefined;
|
|
14451
|
+
scope?: string | undefined;
|
|
14452
|
+
}[] | undefined;
|
|
14360
14453
|
} | undefined;
|
|
14361
14454
|
searchText?: string | undefined;
|
|
14362
14455
|
tags?: string[] | undefined;
|
|
@@ -14424,6 +14517,16 @@ export declare const DataSourceListTablesOutputProtoSchema: z.ZodObject<{
|
|
|
14424
14517
|
updatedAt: z.ZodOptional<z.ZodNumber>;
|
|
14425
14518
|
tableType: z.ZodOptional<z.ZodString>;
|
|
14426
14519
|
managerAccess: z.ZodOptional<z.ZodString>;
|
|
14520
|
+
permissions: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
14521
|
+
action: z.ZodOptional<z.ZodString>;
|
|
14522
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
14523
|
+
}, "strip", z.ZodTypeAny, {
|
|
14524
|
+
action?: string | undefined;
|
|
14525
|
+
scope?: string | undefined;
|
|
14526
|
+
}, {
|
|
14527
|
+
action?: string | undefined;
|
|
14528
|
+
scope?: string | undefined;
|
|
14529
|
+
}>>, "many">>;
|
|
14427
14530
|
}, "strip", z.ZodTypeAny, {
|
|
14428
14531
|
name?: string | undefined;
|
|
14429
14532
|
description?: string | undefined;
|
|
@@ -14432,6 +14535,10 @@ export declare const DataSourceListTablesOutputProtoSchema: z.ZodObject<{
|
|
|
14432
14535
|
estimatedRowCount?: number | undefined;
|
|
14433
14536
|
tableType?: string | undefined;
|
|
14434
14537
|
managerAccess?: string | undefined;
|
|
14538
|
+
permissions?: {
|
|
14539
|
+
action?: string | undefined;
|
|
14540
|
+
scope?: string | undefined;
|
|
14541
|
+
}[] | undefined;
|
|
14435
14542
|
}, {
|
|
14436
14543
|
name?: string | undefined;
|
|
14437
14544
|
description?: string | undefined;
|
|
@@ -14440,6 +14547,10 @@ export declare const DataSourceListTablesOutputProtoSchema: z.ZodObject<{
|
|
|
14440
14547
|
estimatedRowCount?: number | undefined;
|
|
14441
14548
|
tableType?: string | undefined;
|
|
14442
14549
|
managerAccess?: string | undefined;
|
|
14550
|
+
permissions?: {
|
|
14551
|
+
action?: string | undefined;
|
|
14552
|
+
scope?: string | undefined;
|
|
14553
|
+
}[] | undefined;
|
|
14443
14554
|
}>>>;
|
|
14444
14555
|
searchText: z.ZodOptional<z.ZodString>;
|
|
14445
14556
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -14452,6 +14563,10 @@ export declare const DataSourceListTablesOutputProtoSchema: z.ZodObject<{
|
|
|
14452
14563
|
estimatedRowCount?: number | undefined;
|
|
14453
14564
|
tableType?: string | undefined;
|
|
14454
14565
|
managerAccess?: string | undefined;
|
|
14566
|
+
permissions?: {
|
|
14567
|
+
action?: string | undefined;
|
|
14568
|
+
scope?: string | undefined;
|
|
14569
|
+
}[] | undefined;
|
|
14455
14570
|
} | undefined;
|
|
14456
14571
|
searchText?: string | undefined;
|
|
14457
14572
|
tags?: string[] | undefined;
|
|
@@ -14464,6 +14579,10 @@ export declare const DataSourceListTablesOutputProtoSchema: z.ZodObject<{
|
|
|
14464
14579
|
estimatedRowCount?: number | undefined;
|
|
14465
14580
|
tableType?: string | undefined;
|
|
14466
14581
|
managerAccess?: string | undefined;
|
|
14582
|
+
permissions?: {
|
|
14583
|
+
action?: string | undefined;
|
|
14584
|
+
scope?: string | undefined;
|
|
14585
|
+
}[] | undefined;
|
|
14467
14586
|
} | undefined;
|
|
14468
14587
|
searchText?: string | undefined;
|
|
14469
14588
|
tags?: string[] | undefined;
|
|
@@ -14480,6 +14599,10 @@ export declare const DataSourceListTablesOutputProtoSchema: z.ZodObject<{
|
|
|
14480
14599
|
estimatedRowCount?: number | undefined;
|
|
14481
14600
|
tableType?: string | undefined;
|
|
14482
14601
|
managerAccess?: string | undefined;
|
|
14602
|
+
permissions?: {
|
|
14603
|
+
action?: string | undefined;
|
|
14604
|
+
scope?: string | undefined;
|
|
14605
|
+
}[] | undefined;
|
|
14483
14606
|
} | undefined;
|
|
14484
14607
|
searchText?: string | undefined;
|
|
14485
14608
|
tags?: string[] | undefined;
|
|
@@ -14496,6 +14619,10 @@ export declare const DataSourceListTablesOutputProtoSchema: z.ZodObject<{
|
|
|
14496
14619
|
estimatedRowCount?: number | undefined;
|
|
14497
14620
|
tableType?: string | undefined;
|
|
14498
14621
|
managerAccess?: string | undefined;
|
|
14622
|
+
permissions?: {
|
|
14623
|
+
action?: string | undefined;
|
|
14624
|
+
scope?: string | undefined;
|
|
14625
|
+
}[] | undefined;
|
|
14499
14626
|
} | undefined;
|
|
14500
14627
|
searchText?: string | undefined;
|
|
14501
14628
|
tags?: string[] | undefined;
|
|
@@ -14528,6 +14655,16 @@ export declare const DataSourceDescribeTableOutputProtoSchema: z.ZodObject<{
|
|
|
14528
14655
|
updatedAt: z.ZodOptional<z.ZodNumber>;
|
|
14529
14656
|
tableType: z.ZodOptional<z.ZodString>;
|
|
14530
14657
|
managerAccess: z.ZodOptional<z.ZodString>;
|
|
14658
|
+
permissions: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
14659
|
+
action: z.ZodOptional<z.ZodString>;
|
|
14660
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
14661
|
+
}, "strip", z.ZodTypeAny, {
|
|
14662
|
+
action?: string | undefined;
|
|
14663
|
+
scope?: string | undefined;
|
|
14664
|
+
}, {
|
|
14665
|
+
action?: string | undefined;
|
|
14666
|
+
scope?: string | undefined;
|
|
14667
|
+
}>>, "many">>;
|
|
14531
14668
|
}, "strip", z.ZodTypeAny, {
|
|
14532
14669
|
name?: string | undefined;
|
|
14533
14670
|
description?: string | undefined;
|
|
@@ -14536,6 +14673,10 @@ export declare const DataSourceDescribeTableOutputProtoSchema: z.ZodObject<{
|
|
|
14536
14673
|
estimatedRowCount?: number | undefined;
|
|
14537
14674
|
tableType?: string | undefined;
|
|
14538
14675
|
managerAccess?: string | undefined;
|
|
14676
|
+
permissions?: {
|
|
14677
|
+
action?: string | undefined;
|
|
14678
|
+
scope?: string | undefined;
|
|
14679
|
+
}[] | undefined;
|
|
14539
14680
|
}, {
|
|
14540
14681
|
name?: string | undefined;
|
|
14541
14682
|
description?: string | undefined;
|
|
@@ -14544,6 +14685,10 @@ export declare const DataSourceDescribeTableOutputProtoSchema: z.ZodObject<{
|
|
|
14544
14685
|
estimatedRowCount?: number | undefined;
|
|
14545
14686
|
tableType?: string | undefined;
|
|
14546
14687
|
managerAccess?: string | undefined;
|
|
14688
|
+
permissions?: {
|
|
14689
|
+
action?: string | undefined;
|
|
14690
|
+
scope?: string | undefined;
|
|
14691
|
+
}[] | undefined;
|
|
14547
14692
|
}>>>;
|
|
14548
14693
|
columns: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
14549
14694
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -14589,6 +14734,10 @@ export declare const DataSourceDescribeTableOutputProtoSchema: z.ZodObject<{
|
|
|
14589
14734
|
estimatedRowCount?: number | undefined;
|
|
14590
14735
|
tableType?: string | undefined;
|
|
14591
14736
|
managerAccess?: string | undefined;
|
|
14737
|
+
permissions?: {
|
|
14738
|
+
action?: string | undefined;
|
|
14739
|
+
scope?: string | undefined;
|
|
14740
|
+
}[] | undefined;
|
|
14592
14741
|
} | undefined;
|
|
14593
14742
|
primaryKey?: string[] | undefined;
|
|
14594
14743
|
}, {
|
|
@@ -14609,6 +14758,10 @@ export declare const DataSourceDescribeTableOutputProtoSchema: z.ZodObject<{
|
|
|
14609
14758
|
estimatedRowCount?: number | undefined;
|
|
14610
14759
|
tableType?: string | undefined;
|
|
14611
14760
|
managerAccess?: string | undefined;
|
|
14761
|
+
permissions?: {
|
|
14762
|
+
action?: string | undefined;
|
|
14763
|
+
scope?: string | undefined;
|
|
14764
|
+
}[] | undefined;
|
|
14612
14765
|
} | undefined;
|
|
14613
14766
|
primaryKey?: string[] | undefined;
|
|
14614
14767
|
}>>>;
|
|
@@ -14634,6 +14787,10 @@ export declare const DataSourceDescribeTableOutputProtoSchema: z.ZodObject<{
|
|
|
14634
14787
|
estimatedRowCount?: number | undefined;
|
|
14635
14788
|
tableType?: string | undefined;
|
|
14636
14789
|
managerAccess?: string | undefined;
|
|
14790
|
+
permissions?: {
|
|
14791
|
+
action?: string | undefined;
|
|
14792
|
+
scope?: string | undefined;
|
|
14793
|
+
}[] | undefined;
|
|
14637
14794
|
} | undefined;
|
|
14638
14795
|
primaryKey?: string[] | undefined;
|
|
14639
14796
|
} | undefined;
|
|
@@ -14658,6 +14815,10 @@ export declare const DataSourceDescribeTableOutputProtoSchema: z.ZodObject<{
|
|
|
14658
14815
|
estimatedRowCount?: number | undefined;
|
|
14659
14816
|
tableType?: string | undefined;
|
|
14660
14817
|
managerAccess?: string | undefined;
|
|
14818
|
+
permissions?: {
|
|
14819
|
+
action?: string | undefined;
|
|
14820
|
+
scope?: string | undefined;
|
|
14821
|
+
}[] | undefined;
|
|
14661
14822
|
} | undefined;
|
|
14662
14823
|
primaryKey?: string[] | undefined;
|
|
14663
14824
|
} | undefined;
|
|
@@ -14768,15 +14929,15 @@ export declare const OrderClaimProtoSchema: z.ZodObject<{
|
|
|
14768
14929
|
}, "strip", z.ZodTypeAny, {
|
|
14769
14930
|
type?: string | undefined;
|
|
14770
14931
|
id?: string | undefined;
|
|
14771
|
-
extClaimId?: string | undefined;
|
|
14772
14932
|
state?: string | undefined;
|
|
14933
|
+
extClaimId?: string | undefined;
|
|
14773
14934
|
itemIds?: string[] | undefined;
|
|
14774
14935
|
createdAt?: number | undefined;
|
|
14775
14936
|
}, {
|
|
14776
14937
|
type?: string | undefined;
|
|
14777
14938
|
id?: string | undefined;
|
|
14778
|
-
extClaimId?: string | undefined;
|
|
14779
14939
|
state?: string | undefined;
|
|
14940
|
+
extClaimId?: string | undefined;
|
|
14780
14941
|
itemIds?: string[] | undefined;
|
|
14781
14942
|
createdAt?: number | undefined;
|
|
14782
14943
|
}>;
|
|
@@ -15080,15 +15241,15 @@ export declare const OrderProtoSchema: z.ZodObject<{
|
|
|
15080
15241
|
}, "strip", z.ZodTypeAny, {
|
|
15081
15242
|
type?: string | undefined;
|
|
15082
15243
|
id?: string | undefined;
|
|
15083
|
-
extClaimId?: string | undefined;
|
|
15084
15244
|
state?: string | undefined;
|
|
15245
|
+
extClaimId?: string | undefined;
|
|
15085
15246
|
itemIds?: string[] | undefined;
|
|
15086
15247
|
createdAt?: number | undefined;
|
|
15087
15248
|
}, {
|
|
15088
15249
|
type?: string | undefined;
|
|
15089
15250
|
id?: string | undefined;
|
|
15090
|
-
extClaimId?: string | undefined;
|
|
15091
15251
|
state?: string | undefined;
|
|
15252
|
+
extClaimId?: string | undefined;
|
|
15092
15253
|
itemIds?: string[] | undefined;
|
|
15093
15254
|
createdAt?: number | undefined;
|
|
15094
15255
|
}>>, "many">>;
|
|
@@ -15152,8 +15313,8 @@ export declare const OrderProtoSchema: z.ZodObject<{
|
|
|
15152
15313
|
claims?: {
|
|
15153
15314
|
type?: string | undefined;
|
|
15154
15315
|
id?: string | undefined;
|
|
15155
|
-
extClaimId?: string | undefined;
|
|
15156
15316
|
state?: string | undefined;
|
|
15317
|
+
extClaimId?: string | undefined;
|
|
15157
15318
|
itemIds?: string[] | undefined;
|
|
15158
15319
|
createdAt?: number | undefined;
|
|
15159
15320
|
}[] | undefined;
|
|
@@ -15217,8 +15378,8 @@ export declare const OrderProtoSchema: z.ZodObject<{
|
|
|
15217
15378
|
claims?: {
|
|
15218
15379
|
type?: string | undefined;
|
|
15219
15380
|
id?: string | undefined;
|
|
15220
|
-
extClaimId?: string | undefined;
|
|
15221
15381
|
state?: string | undefined;
|
|
15382
|
+
extClaimId?: string | undefined;
|
|
15222
15383
|
itemIds?: string[] | undefined;
|
|
15223
15384
|
createdAt?: number | undefined;
|
|
15224
15385
|
}[] | undefined;
|
|
@@ -15901,15 +16062,15 @@ export declare const OrderGetOrdersOutputProtoSchema: z.ZodObject<{
|
|
|
15901
16062
|
}, "strip", z.ZodTypeAny, {
|
|
15902
16063
|
type?: string | undefined;
|
|
15903
16064
|
id?: string | undefined;
|
|
15904
|
-
extClaimId?: string | undefined;
|
|
15905
16065
|
state?: string | undefined;
|
|
16066
|
+
extClaimId?: string | undefined;
|
|
15906
16067
|
itemIds?: string[] | undefined;
|
|
15907
16068
|
createdAt?: number | undefined;
|
|
15908
16069
|
}, {
|
|
15909
16070
|
type?: string | undefined;
|
|
15910
16071
|
id?: string | undefined;
|
|
15911
|
-
extClaimId?: string | undefined;
|
|
15912
16072
|
state?: string | undefined;
|
|
16073
|
+
extClaimId?: string | undefined;
|
|
15913
16074
|
itemIds?: string[] | undefined;
|
|
15914
16075
|
createdAt?: number | undefined;
|
|
15915
16076
|
}>>, "many">>;
|
|
@@ -15973,8 +16134,8 @@ export declare const OrderGetOrdersOutputProtoSchema: z.ZodObject<{
|
|
|
15973
16134
|
claims?: {
|
|
15974
16135
|
type?: string | undefined;
|
|
15975
16136
|
id?: string | undefined;
|
|
15976
|
-
extClaimId?: string | undefined;
|
|
15977
16137
|
state?: string | undefined;
|
|
16138
|
+
extClaimId?: string | undefined;
|
|
15978
16139
|
itemIds?: string[] | undefined;
|
|
15979
16140
|
createdAt?: number | undefined;
|
|
15980
16141
|
}[] | undefined;
|
|
@@ -16038,8 +16199,8 @@ export declare const OrderGetOrdersOutputProtoSchema: z.ZodObject<{
|
|
|
16038
16199
|
claims?: {
|
|
16039
16200
|
type?: string | undefined;
|
|
16040
16201
|
id?: string | undefined;
|
|
16041
|
-
extClaimId?: string | undefined;
|
|
16042
16202
|
state?: string | undefined;
|
|
16203
|
+
extClaimId?: string | undefined;
|
|
16043
16204
|
itemIds?: string[] | undefined;
|
|
16044
16205
|
createdAt?: number | undefined;
|
|
16045
16206
|
}[] | undefined;
|
|
@@ -16105,8 +16266,8 @@ export declare const OrderGetOrdersOutputProtoSchema: z.ZodObject<{
|
|
|
16105
16266
|
claims?: {
|
|
16106
16267
|
type?: string | undefined;
|
|
16107
16268
|
id?: string | undefined;
|
|
16108
|
-
extClaimId?: string | undefined;
|
|
16109
16269
|
state?: string | undefined;
|
|
16270
|
+
extClaimId?: string | undefined;
|
|
16110
16271
|
itemIds?: string[] | undefined;
|
|
16111
16272
|
createdAt?: number | undefined;
|
|
16112
16273
|
}[] | undefined;
|
|
@@ -16172,8 +16333,8 @@ export declare const OrderGetOrdersOutputProtoSchema: z.ZodObject<{
|
|
|
16172
16333
|
claims?: {
|
|
16173
16334
|
type?: string | undefined;
|
|
16174
16335
|
id?: string | undefined;
|
|
16175
|
-
extClaimId?: string | undefined;
|
|
16176
16336
|
state?: string | undefined;
|
|
16337
|
+
extClaimId?: string | undefined;
|
|
16177
16338
|
itemIds?: string[] | undefined;
|
|
16178
16339
|
createdAt?: number | undefined;
|
|
16179
16340
|
}[] | undefined;
|
|
@@ -16708,12 +16869,15 @@ export type OrderGetAppConfigsOutputProto = z.infer<typeof OrderGetAppConfigsOut
|
|
|
16708
16869
|
export declare const OrderClaimItemProtoSchema: z.ZodObject<{
|
|
16709
16870
|
id: z.ZodOptional<z.ZodString>;
|
|
16710
16871
|
quantity: z.ZodOptional<z.ZodNumber>;
|
|
16872
|
+
fulfillmentId: z.ZodOptional<z.ZodString>;
|
|
16711
16873
|
}, "strip", z.ZodTypeAny, {
|
|
16712
16874
|
id?: string | undefined;
|
|
16713
16875
|
quantity?: number | undefined;
|
|
16876
|
+
fulfillmentId?: string | undefined;
|
|
16714
16877
|
}, {
|
|
16715
16878
|
id?: string | undefined;
|
|
16716
16879
|
quantity?: number | undefined;
|
|
16880
|
+
fulfillmentId?: string | undefined;
|
|
16717
16881
|
}>;
|
|
16718
16882
|
export type OrderClaimItemProto = z.infer<typeof OrderClaimItemProtoSchema>;
|
|
16719
16883
|
export declare const OrderCancelOrderInputProtoSchema: z.ZodObject<{
|
|
@@ -16721,12 +16885,15 @@ export declare const OrderCancelOrderInputProtoSchema: z.ZodObject<{
|
|
|
16721
16885
|
cancelItems: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
16722
16886
|
id: z.ZodOptional<z.ZodString>;
|
|
16723
16887
|
quantity: z.ZodOptional<z.ZodNumber>;
|
|
16888
|
+
fulfillmentId: z.ZodOptional<z.ZodString>;
|
|
16724
16889
|
}, "strip", z.ZodTypeAny, {
|
|
16725
16890
|
id?: string | undefined;
|
|
16726
16891
|
quantity?: number | undefined;
|
|
16892
|
+
fulfillmentId?: string | undefined;
|
|
16727
16893
|
}, {
|
|
16728
16894
|
id?: string | undefined;
|
|
16729
16895
|
quantity?: number | undefined;
|
|
16896
|
+
fulfillmentId?: string | undefined;
|
|
16730
16897
|
}>>, "many">>;
|
|
16731
16898
|
reason: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
16732
16899
|
type: z.ZodOptional<z.ZodString>;
|
|
@@ -16760,6 +16927,7 @@ export declare const OrderCancelOrderInputProtoSchema: z.ZodObject<{
|
|
|
16760
16927
|
cancelItems?: {
|
|
16761
16928
|
id?: string | undefined;
|
|
16762
16929
|
quantity?: number | undefined;
|
|
16930
|
+
fulfillmentId?: string | undefined;
|
|
16763
16931
|
}[] | undefined;
|
|
16764
16932
|
refundBankAccount?: {
|
|
16765
16933
|
bankName?: string | undefined;
|
|
@@ -16775,6 +16943,7 @@ export declare const OrderCancelOrderInputProtoSchema: z.ZodObject<{
|
|
|
16775
16943
|
cancelItems?: {
|
|
16776
16944
|
id?: string | undefined;
|
|
16777
16945
|
quantity?: number | undefined;
|
|
16946
|
+
fulfillmentId?: string | undefined;
|
|
16778
16947
|
}[] | undefined;
|
|
16779
16948
|
refundBankAccount?: {
|
|
16780
16949
|
bankName?: string | undefined;
|
|
@@ -16788,12 +16957,15 @@ export declare const OrderReturnOrderInputProtoSchema: z.ZodObject<{
|
|
|
16788
16957
|
returnItems: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
16789
16958
|
id: z.ZodOptional<z.ZodString>;
|
|
16790
16959
|
quantity: z.ZodOptional<z.ZodNumber>;
|
|
16960
|
+
fulfillmentId: z.ZodOptional<z.ZodString>;
|
|
16791
16961
|
}, "strip", z.ZodTypeAny, {
|
|
16792
16962
|
id?: string | undefined;
|
|
16793
16963
|
quantity?: number | undefined;
|
|
16964
|
+
fulfillmentId?: string | undefined;
|
|
16794
16965
|
}, {
|
|
16795
16966
|
id?: string | undefined;
|
|
16796
16967
|
quantity?: number | undefined;
|
|
16968
|
+
fulfillmentId?: string | undefined;
|
|
16797
16969
|
}>>, "many">>;
|
|
16798
16970
|
reason: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
16799
16971
|
type: z.ZodOptional<z.ZodString>;
|
|
@@ -16888,6 +17060,7 @@ export declare const OrderReturnOrderInputProtoSchema: z.ZodObject<{
|
|
|
16888
17060
|
returnItems?: {
|
|
16889
17061
|
id?: string | undefined;
|
|
16890
17062
|
quantity?: number | undefined;
|
|
17063
|
+
fulfillmentId?: string | undefined;
|
|
16891
17064
|
}[] | undefined;
|
|
16892
17065
|
requestPickup?: boolean | undefined;
|
|
16893
17066
|
pickupAddress?: {
|
|
@@ -16925,6 +17098,7 @@ export declare const OrderReturnOrderInputProtoSchema: z.ZodObject<{
|
|
|
16925
17098
|
returnItems?: {
|
|
16926
17099
|
id?: string | undefined;
|
|
16927
17100
|
quantity?: number | undefined;
|
|
17101
|
+
fulfillmentId?: string | undefined;
|
|
16928
17102
|
}[] | undefined;
|
|
16929
17103
|
requestPickup?: boolean | undefined;
|
|
16930
17104
|
pickupAddress?: {
|
|
@@ -16967,12 +17141,15 @@ export declare const OrderExchangeOrderInputProtoSchema: z.ZodObject<{
|
|
|
16967
17141
|
beforeExchangeItems: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
16968
17142
|
id: z.ZodOptional<z.ZodString>;
|
|
16969
17143
|
quantity: z.ZodOptional<z.ZodNumber>;
|
|
17144
|
+
fulfillmentId: z.ZodOptional<z.ZodString>;
|
|
16970
17145
|
}, "strip", z.ZodTypeAny, {
|
|
16971
17146
|
id?: string | undefined;
|
|
16972
17147
|
quantity?: number | undefined;
|
|
17148
|
+
fulfillmentId?: string | undefined;
|
|
16973
17149
|
}, {
|
|
16974
17150
|
id?: string | undefined;
|
|
16975
17151
|
quantity?: number | undefined;
|
|
17152
|
+
fulfillmentId?: string | undefined;
|
|
16976
17153
|
}>>, "many">>;
|
|
16977
17154
|
afterExchangeItems: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
16978
17155
|
productId: z.ZodOptional<z.ZodString>;
|
|
@@ -17095,6 +17272,7 @@ export declare const OrderExchangeOrderInputProtoSchema: z.ZodObject<{
|
|
|
17095
17272
|
beforeExchangeItems?: {
|
|
17096
17273
|
id?: string | undefined;
|
|
17097
17274
|
quantity?: number | undefined;
|
|
17275
|
+
fulfillmentId?: string | undefined;
|
|
17098
17276
|
}[] | undefined;
|
|
17099
17277
|
afterExchangeItems?: {
|
|
17100
17278
|
quantity?: number | undefined;
|
|
@@ -17135,6 +17313,7 @@ export declare const OrderExchangeOrderInputProtoSchema: z.ZodObject<{
|
|
|
17135
17313
|
beforeExchangeItems?: {
|
|
17136
17314
|
id?: string | undefined;
|
|
17137
17315
|
quantity?: number | undefined;
|
|
17316
|
+
fulfillmentId?: string | undefined;
|
|
17138
17317
|
}[] | undefined;
|
|
17139
17318
|
afterExchangeItems?: {
|
|
17140
17319
|
quantity?: number | undefined;
|
|
@@ -17149,23 +17328,28 @@ export declare const OrderGetExchangeableItemsInputProtoSchema: z.ZodObject<{
|
|
|
17149
17328
|
items: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
17150
17329
|
id: z.ZodOptional<z.ZodString>;
|
|
17151
17330
|
quantity: z.ZodOptional<z.ZodNumber>;
|
|
17331
|
+
fulfillmentId: z.ZodOptional<z.ZodString>;
|
|
17152
17332
|
}, "strip", z.ZodTypeAny, {
|
|
17153
17333
|
id?: string | undefined;
|
|
17154
17334
|
quantity?: number | undefined;
|
|
17335
|
+
fulfillmentId?: string | undefined;
|
|
17155
17336
|
}, {
|
|
17156
17337
|
id?: string | undefined;
|
|
17157
17338
|
quantity?: number | undefined;
|
|
17339
|
+
fulfillmentId?: string | undefined;
|
|
17158
17340
|
}>>, "many">>;
|
|
17159
17341
|
}, "strip", z.ZodTypeAny, {
|
|
17160
17342
|
items?: {
|
|
17161
17343
|
id?: string | undefined;
|
|
17162
17344
|
quantity?: number | undefined;
|
|
17345
|
+
fulfillmentId?: string | undefined;
|
|
17163
17346
|
}[] | undefined;
|
|
17164
17347
|
orderId?: string | undefined;
|
|
17165
17348
|
}, {
|
|
17166
17349
|
items?: {
|
|
17167
17350
|
id?: string | undefined;
|
|
17168
17351
|
quantity?: number | undefined;
|
|
17352
|
+
fulfillmentId?: string | undefined;
|
|
17169
17353
|
}[] | undefined;
|
|
17170
17354
|
orderId?: string | undefined;
|
|
17171
17355
|
}>;
|
|
@@ -17638,15 +17822,15 @@ export declare const CommerceOrderProtoSchema: z.ZodObject<{
|
|
|
17638
17822
|
}, "strip", z.ZodTypeAny, {
|
|
17639
17823
|
type?: string | undefined;
|
|
17640
17824
|
id?: string | undefined;
|
|
17641
|
-
extClaimId?: string | undefined;
|
|
17642
17825
|
state?: string | undefined;
|
|
17826
|
+
extClaimId?: string | undefined;
|
|
17643
17827
|
itemIds?: string[] | undefined;
|
|
17644
17828
|
createdAt?: number | undefined;
|
|
17645
17829
|
}, {
|
|
17646
17830
|
type?: string | undefined;
|
|
17647
17831
|
id?: string | undefined;
|
|
17648
|
-
extClaimId?: string | undefined;
|
|
17649
17832
|
state?: string | undefined;
|
|
17833
|
+
extClaimId?: string | undefined;
|
|
17650
17834
|
itemIds?: string[] | undefined;
|
|
17651
17835
|
createdAt?: number | undefined;
|
|
17652
17836
|
}>>, "many">>;
|
|
@@ -17709,8 +17893,8 @@ export declare const CommerceOrderProtoSchema: z.ZodObject<{
|
|
|
17709
17893
|
claims?: {
|
|
17710
17894
|
type?: string | undefined;
|
|
17711
17895
|
id?: string | undefined;
|
|
17712
|
-
extClaimId?: string | undefined;
|
|
17713
17896
|
state?: string | undefined;
|
|
17897
|
+
extClaimId?: string | undefined;
|
|
17714
17898
|
itemIds?: string[] | undefined;
|
|
17715
17899
|
createdAt?: number | undefined;
|
|
17716
17900
|
}[] | undefined;
|
|
@@ -17780,8 +17964,8 @@ export declare const CommerceOrderProtoSchema: z.ZodObject<{
|
|
|
17780
17964
|
claims?: {
|
|
17781
17965
|
type?: string | undefined;
|
|
17782
17966
|
id?: string | undefined;
|
|
17783
|
-
extClaimId?: string | undefined;
|
|
17784
17967
|
state?: string | undefined;
|
|
17968
|
+
extClaimId?: string | undefined;
|
|
17785
17969
|
itemIds?: string[] | undefined;
|
|
17786
17970
|
createdAt?: number | undefined;
|
|
17787
17971
|
}[] | undefined;
|
|
@@ -18018,15 +18202,15 @@ export declare const CommerceGetOrdersOutputProtoSchema: z.ZodObject<{
|
|
|
18018
18202
|
}, "strip", z.ZodTypeAny, {
|
|
18019
18203
|
type?: string | undefined;
|
|
18020
18204
|
id?: string | undefined;
|
|
18021
|
-
extClaimId?: string | undefined;
|
|
18022
18205
|
state?: string | undefined;
|
|
18206
|
+
extClaimId?: string | undefined;
|
|
18023
18207
|
itemIds?: string[] | undefined;
|
|
18024
18208
|
createdAt?: number | undefined;
|
|
18025
18209
|
}, {
|
|
18026
18210
|
type?: string | undefined;
|
|
18027
18211
|
id?: string | undefined;
|
|
18028
|
-
extClaimId?: string | undefined;
|
|
18029
18212
|
state?: string | undefined;
|
|
18213
|
+
extClaimId?: string | undefined;
|
|
18030
18214
|
itemIds?: string[] | undefined;
|
|
18031
18215
|
createdAt?: number | undefined;
|
|
18032
18216
|
}>>, "many">>;
|
|
@@ -18089,8 +18273,8 @@ export declare const CommerceGetOrdersOutputProtoSchema: z.ZodObject<{
|
|
|
18089
18273
|
claims?: {
|
|
18090
18274
|
type?: string | undefined;
|
|
18091
18275
|
id?: string | undefined;
|
|
18092
|
-
extClaimId?: string | undefined;
|
|
18093
18276
|
state?: string | undefined;
|
|
18277
|
+
extClaimId?: string | undefined;
|
|
18094
18278
|
itemIds?: string[] | undefined;
|
|
18095
18279
|
createdAt?: number | undefined;
|
|
18096
18280
|
}[] | undefined;
|
|
@@ -18160,8 +18344,8 @@ export declare const CommerceGetOrdersOutputProtoSchema: z.ZodObject<{
|
|
|
18160
18344
|
claims?: {
|
|
18161
18345
|
type?: string | undefined;
|
|
18162
18346
|
id?: string | undefined;
|
|
18163
|
-
extClaimId?: string | undefined;
|
|
18164
18347
|
state?: string | undefined;
|
|
18348
|
+
extClaimId?: string | undefined;
|
|
18165
18349
|
itemIds?: string[] | undefined;
|
|
18166
18350
|
createdAt?: number | undefined;
|
|
18167
18351
|
}[] | undefined;
|
|
@@ -18235,8 +18419,8 @@ export declare const CommerceGetOrdersOutputProtoSchema: z.ZodObject<{
|
|
|
18235
18419
|
claims?: {
|
|
18236
18420
|
type?: string | undefined;
|
|
18237
18421
|
id?: string | undefined;
|
|
18238
|
-
extClaimId?: string | undefined;
|
|
18239
18422
|
state?: string | undefined;
|
|
18423
|
+
extClaimId?: string | undefined;
|
|
18240
18424
|
itemIds?: string[] | undefined;
|
|
18241
18425
|
createdAt?: number | undefined;
|
|
18242
18426
|
}[] | undefined;
|
|
@@ -18309,8 +18493,8 @@ export declare const CommerceGetOrdersOutputProtoSchema: z.ZodObject<{
|
|
|
18309
18493
|
claims?: {
|
|
18310
18494
|
type?: string | undefined;
|
|
18311
18495
|
id?: string | undefined;
|
|
18312
|
-
extClaimId?: string | undefined;
|
|
18313
18496
|
state?: string | undefined;
|
|
18497
|
+
extClaimId?: string | undefined;
|
|
18314
18498
|
itemIds?: string[] | undefined;
|
|
18315
18499
|
createdAt?: number | undefined;
|
|
18316
18500
|
}[] | undefined;
|
|
@@ -19473,12 +19657,15 @@ export declare const CommerceCancelOrderInputProtoSchema: z.ZodObject<{
|
|
|
19473
19657
|
cancelItems: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
19474
19658
|
id: z.ZodOptional<z.ZodString>;
|
|
19475
19659
|
quantity: z.ZodOptional<z.ZodNumber>;
|
|
19660
|
+
fulfillmentId: z.ZodOptional<z.ZodString>;
|
|
19476
19661
|
}, "strip", z.ZodTypeAny, {
|
|
19477
19662
|
id?: string | undefined;
|
|
19478
19663
|
quantity?: number | undefined;
|
|
19664
|
+
fulfillmentId?: string | undefined;
|
|
19479
19665
|
}, {
|
|
19480
19666
|
id?: string | undefined;
|
|
19481
19667
|
quantity?: number | undefined;
|
|
19668
|
+
fulfillmentId?: string | undefined;
|
|
19482
19669
|
}>>, "many">>;
|
|
19483
19670
|
reason: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
19484
19671
|
type: z.ZodOptional<z.ZodString>;
|
|
@@ -19516,6 +19703,7 @@ export declare const CommerceCancelOrderInputProtoSchema: z.ZodObject<{
|
|
|
19516
19703
|
cancelItems?: {
|
|
19517
19704
|
id?: string | undefined;
|
|
19518
19705
|
quantity?: number | undefined;
|
|
19706
|
+
fulfillmentId?: string | undefined;
|
|
19519
19707
|
}[] | undefined;
|
|
19520
19708
|
refundBankAccount?: {
|
|
19521
19709
|
bankName?: string | undefined;
|
|
@@ -19535,6 +19723,7 @@ export declare const CommerceCancelOrderInputProtoSchema: z.ZodObject<{
|
|
|
19535
19723
|
cancelItems?: {
|
|
19536
19724
|
id?: string | undefined;
|
|
19537
19725
|
quantity?: number | undefined;
|
|
19726
|
+
fulfillmentId?: string | undefined;
|
|
19538
19727
|
}[] | undefined;
|
|
19539
19728
|
refundBankAccount?: {
|
|
19540
19729
|
bankName?: string | undefined;
|
|
@@ -19558,12 +19747,15 @@ export declare const CommerceReturnOrderInputProtoSchema: z.ZodObject<{
|
|
|
19558
19747
|
returnItems: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
19559
19748
|
id: z.ZodOptional<z.ZodString>;
|
|
19560
19749
|
quantity: z.ZodOptional<z.ZodNumber>;
|
|
19750
|
+
fulfillmentId: z.ZodOptional<z.ZodString>;
|
|
19561
19751
|
}, "strip", z.ZodTypeAny, {
|
|
19562
19752
|
id?: string | undefined;
|
|
19563
19753
|
quantity?: number | undefined;
|
|
19754
|
+
fulfillmentId?: string | undefined;
|
|
19564
19755
|
}, {
|
|
19565
19756
|
id?: string | undefined;
|
|
19566
19757
|
quantity?: number | undefined;
|
|
19758
|
+
fulfillmentId?: string | undefined;
|
|
19567
19759
|
}>>, "many">>;
|
|
19568
19760
|
reason: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
19569
19761
|
type: z.ZodOptional<z.ZodString>;
|
|
@@ -19661,6 +19853,7 @@ export declare const CommerceReturnOrderInputProtoSchema: z.ZodObject<{
|
|
|
19661
19853
|
returnItems?: {
|
|
19662
19854
|
id?: string | undefined;
|
|
19663
19855
|
quantity?: number | undefined;
|
|
19856
|
+
fulfillmentId?: string | undefined;
|
|
19664
19857
|
}[] | undefined;
|
|
19665
19858
|
requestPickup?: boolean | undefined;
|
|
19666
19859
|
pickupAddress?: {
|
|
@@ -19701,6 +19894,7 @@ export declare const CommerceReturnOrderInputProtoSchema: z.ZodObject<{
|
|
|
19701
19894
|
returnItems?: {
|
|
19702
19895
|
id?: string | undefined;
|
|
19703
19896
|
quantity?: number | undefined;
|
|
19897
|
+
fulfillmentId?: string | undefined;
|
|
19704
19898
|
}[] | undefined;
|
|
19705
19899
|
requestPickup?: boolean | undefined;
|
|
19706
19900
|
pickupAddress?: {
|
|
@@ -19738,12 +19932,15 @@ export declare const CommerceAcceptReturnOrderInputProtoSchema: z.ZodObject<{
|
|
|
19738
19932
|
returnItems: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
19739
19933
|
id: z.ZodOptional<z.ZodString>;
|
|
19740
19934
|
quantity: z.ZodOptional<z.ZodNumber>;
|
|
19935
|
+
fulfillmentId: z.ZodOptional<z.ZodString>;
|
|
19741
19936
|
}, "strip", z.ZodTypeAny, {
|
|
19742
19937
|
id?: string | undefined;
|
|
19743
19938
|
quantity?: number | undefined;
|
|
19939
|
+
fulfillmentId?: string | undefined;
|
|
19744
19940
|
}, {
|
|
19745
19941
|
id?: string | undefined;
|
|
19746
19942
|
quantity?: number | undefined;
|
|
19943
|
+
fulfillmentId?: string | undefined;
|
|
19747
19944
|
}>>, "many">>;
|
|
19748
19945
|
reason: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
19749
19946
|
type: z.ZodOptional<z.ZodString>;
|
|
@@ -19788,6 +19985,7 @@ export declare const CommerceAcceptReturnOrderInputProtoSchema: z.ZodObject<{
|
|
|
19788
19985
|
returnItems?: {
|
|
19789
19986
|
id?: string | undefined;
|
|
19790
19987
|
quantity?: number | undefined;
|
|
19988
|
+
fulfillmentId?: string | undefined;
|
|
19791
19989
|
}[] | undefined;
|
|
19792
19990
|
requestPickup?: boolean | undefined;
|
|
19793
19991
|
pickupCompleted?: boolean | undefined;
|
|
@@ -19809,6 +20007,7 @@ export declare const CommerceAcceptReturnOrderInputProtoSchema: z.ZodObject<{
|
|
|
19809
20007
|
returnItems?: {
|
|
19810
20008
|
id?: string | undefined;
|
|
19811
20009
|
quantity?: number | undefined;
|
|
20010
|
+
fulfillmentId?: string | undefined;
|
|
19812
20011
|
}[] | undefined;
|
|
19813
20012
|
requestPickup?: boolean | undefined;
|
|
19814
20013
|
pickupCompleted?: boolean | undefined;
|
|
@@ -19829,12 +20028,15 @@ export declare const CommerceExchangeOrderInputProtoSchema: z.ZodObject<{
|
|
|
19829
20028
|
beforeExchangeItems: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
19830
20029
|
id: z.ZodOptional<z.ZodString>;
|
|
19831
20030
|
quantity: z.ZodOptional<z.ZodNumber>;
|
|
20031
|
+
fulfillmentId: z.ZodOptional<z.ZodString>;
|
|
19832
20032
|
}, "strip", z.ZodTypeAny, {
|
|
19833
20033
|
id?: string | undefined;
|
|
19834
20034
|
quantity?: number | undefined;
|
|
20035
|
+
fulfillmentId?: string | undefined;
|
|
19835
20036
|
}, {
|
|
19836
20037
|
id?: string | undefined;
|
|
19837
20038
|
quantity?: number | undefined;
|
|
20039
|
+
fulfillmentId?: string | undefined;
|
|
19838
20040
|
}>>, "many">>;
|
|
19839
20041
|
afterExchangeItems: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
19840
20042
|
productId: z.ZodOptional<z.ZodString>;
|
|
@@ -19960,6 +20162,7 @@ export declare const CommerceExchangeOrderInputProtoSchema: z.ZodObject<{
|
|
|
19960
20162
|
beforeExchangeItems?: {
|
|
19961
20163
|
id?: string | undefined;
|
|
19962
20164
|
quantity?: number | undefined;
|
|
20165
|
+
fulfillmentId?: string | undefined;
|
|
19963
20166
|
}[] | undefined;
|
|
19964
20167
|
afterExchangeItems?: {
|
|
19965
20168
|
quantity?: number | undefined;
|
|
@@ -20003,6 +20206,7 @@ export declare const CommerceExchangeOrderInputProtoSchema: z.ZodObject<{
|
|
|
20003
20206
|
beforeExchangeItems?: {
|
|
20004
20207
|
id?: string | undefined;
|
|
20005
20208
|
quantity?: number | undefined;
|
|
20209
|
+
fulfillmentId?: string | undefined;
|
|
20006
20210
|
}[] | undefined;
|
|
20007
20211
|
afterExchangeItems?: {
|
|
20008
20212
|
quantity?: number | undefined;
|
|
@@ -20026,17 +20230,21 @@ export declare const CommerceGetExchangeableItemsInputProtoSchema: z.ZodObject<{
|
|
|
20026
20230
|
items: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
20027
20231
|
id: z.ZodOptional<z.ZodString>;
|
|
20028
20232
|
quantity: z.ZodOptional<z.ZodNumber>;
|
|
20233
|
+
fulfillmentId: z.ZodOptional<z.ZodString>;
|
|
20029
20234
|
}, "strip", z.ZodTypeAny, {
|
|
20030
20235
|
id?: string | undefined;
|
|
20031
20236
|
quantity?: number | undefined;
|
|
20237
|
+
fulfillmentId?: string | undefined;
|
|
20032
20238
|
}, {
|
|
20033
20239
|
id?: string | undefined;
|
|
20034
20240
|
quantity?: number | undefined;
|
|
20241
|
+
fulfillmentId?: string | undefined;
|
|
20035
20242
|
}>>, "many">>;
|
|
20036
20243
|
}, "strip", z.ZodTypeAny, {
|
|
20037
20244
|
items?: {
|
|
20038
20245
|
id?: string | undefined;
|
|
20039
20246
|
quantity?: number | undefined;
|
|
20247
|
+
fulfillmentId?: string | undefined;
|
|
20040
20248
|
}[] | undefined;
|
|
20041
20249
|
orderId?: string | undefined;
|
|
20042
20250
|
identifier?: {
|
|
@@ -20047,6 +20255,7 @@ export declare const CommerceGetExchangeableItemsInputProtoSchema: z.ZodObject<{
|
|
|
20047
20255
|
items?: {
|
|
20048
20256
|
id?: string | undefined;
|
|
20049
20257
|
quantity?: number | undefined;
|
|
20258
|
+
fulfillmentId?: string | undefined;
|
|
20050
20259
|
}[] | undefined;
|
|
20051
20260
|
orderId?: string | undefined;
|
|
20052
20261
|
identifier?: {
|
|
@@ -23364,9 +23573,9 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
23364
23573
|
version?: string | undefined;
|
|
23365
23574
|
updatedAt?: string | undefined;
|
|
23366
23575
|
expiresAt?: string | undefined;
|
|
23576
|
+
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;
|
|
23367
23577
|
source?: Record<string, any> | undefined;
|
|
23368
23578
|
tags?: string[] | undefined;
|
|
23369
|
-
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;
|
|
23370
23579
|
createdAt?: string | undefined;
|
|
23371
23580
|
managerIds?: string[] | undefined;
|
|
23372
23581
|
replyCount?: number | undefined;
|
|
@@ -23425,9 +23634,9 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
23425
23634
|
version?: string | undefined;
|
|
23426
23635
|
updatedAt?: string | undefined;
|
|
23427
23636
|
expiresAt?: string | undefined;
|
|
23637
|
+
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;
|
|
23428
23638
|
source?: Record<string, any> | undefined;
|
|
23429
23639
|
tags?: string[] | undefined;
|
|
23430
|
-
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;
|
|
23431
23640
|
createdAt?: string | undefined;
|
|
23432
23641
|
managerIds?: string[] | undefined;
|
|
23433
23642
|
replyCount?: number | undefined;
|
|
@@ -23508,8 +23717,8 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
23508
23717
|
amassedPersons: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
23509
23718
|
}, "strip", z.ZodTypeAny, {
|
|
23510
23719
|
id?: string | undefined;
|
|
23511
|
-
country?: string | undefined;
|
|
23512
23720
|
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;
|
|
23721
|
+
country?: string | undefined;
|
|
23513
23722
|
call?: Record<string, any> | undefined;
|
|
23514
23723
|
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
23515
23724
|
recording?: Record<string, any> | undefined;
|
|
@@ -23518,8 +23727,8 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
23518
23727
|
amassedPersons?: string[] | undefined;
|
|
23519
23728
|
}, {
|
|
23520
23729
|
id?: string | undefined;
|
|
23521
|
-
country?: string | undefined;
|
|
23522
23730
|
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;
|
|
23731
|
+
country?: string | undefined;
|
|
23523
23732
|
call?: Record<string, any> | undefined;
|
|
23524
23733
|
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
23525
23734
|
recording?: Record<string, any> | undefined;
|
|
@@ -23622,8 +23831,8 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
23622
23831
|
log?: Record<string, any> | undefined;
|
|
23623
23832
|
meet?: {
|
|
23624
23833
|
id?: string | undefined;
|
|
23625
|
-
country?: string | undefined;
|
|
23626
23834
|
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;
|
|
23835
|
+
country?: string | undefined;
|
|
23627
23836
|
call?: Record<string, any> | undefined;
|
|
23628
23837
|
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
23629
23838
|
recording?: Record<string, any> | undefined;
|
|
@@ -23685,8 +23894,8 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
23685
23894
|
log?: Record<string, any> | undefined;
|
|
23686
23895
|
meet?: {
|
|
23687
23896
|
id?: string | undefined;
|
|
23688
|
-
country?: string | undefined;
|
|
23689
23897
|
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;
|
|
23898
|
+
country?: string | undefined;
|
|
23690
23899
|
call?: Record<string, any> | undefined;
|
|
23691
23900
|
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
23692
23901
|
recording?: Record<string, any> | undefined;
|
|
@@ -23740,9 +23949,9 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
23740
23949
|
version?: string | undefined;
|
|
23741
23950
|
updatedAt?: string | undefined;
|
|
23742
23951
|
expiresAt?: string | undefined;
|
|
23952
|
+
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;
|
|
23743
23953
|
source?: Record<string, any> | undefined;
|
|
23744
23954
|
tags?: string[] | undefined;
|
|
23745
|
-
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;
|
|
23746
23955
|
createdAt?: string | undefined;
|
|
23747
23956
|
managerIds?: string[] | undefined;
|
|
23748
23957
|
replyCount?: number | undefined;
|
|
@@ -23812,8 +24021,8 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
23812
24021
|
log?: Record<string, any> | undefined;
|
|
23813
24022
|
meet?: {
|
|
23814
24023
|
id?: string | undefined;
|
|
23815
|
-
country?: string | undefined;
|
|
23816
24024
|
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;
|
|
24025
|
+
country?: string | undefined;
|
|
23817
24026
|
call?: Record<string, any> | undefined;
|
|
23818
24027
|
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
23819
24028
|
recording?: Record<string, any> | undefined;
|
|
@@ -23867,9 +24076,9 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
23867
24076
|
version?: string | undefined;
|
|
23868
24077
|
updatedAt?: string | undefined;
|
|
23869
24078
|
expiresAt?: string | undefined;
|
|
24079
|
+
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;
|
|
23870
24080
|
source?: Record<string, any> | undefined;
|
|
23871
24081
|
tags?: string[] | undefined;
|
|
23872
|
-
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;
|
|
23873
24082
|
createdAt?: string | undefined;
|
|
23874
24083
|
managerIds?: string[] | undefined;
|
|
23875
24084
|
replyCount?: number | undefined;
|
|
@@ -23939,8 +24148,8 @@ export declare const MessagingOnMediumMessageCreatedInputProtoSchema: z.ZodObjec
|
|
|
23939
24148
|
log?: Record<string, any> | undefined;
|
|
23940
24149
|
meet?: {
|
|
23941
24150
|
id?: string | undefined;
|
|
23942
|
-
country?: string | undefined;
|
|
23943
24151
|
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;
|
|
24152
|
+
country?: string | undefined;
|
|
23944
24153
|
call?: Record<string, any> | undefined;
|
|
23945
24154
|
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
23946
24155
|
recording?: Record<string, any> | undefined;
|
|
@@ -24091,9 +24300,9 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
|
|
|
24091
24300
|
version?: string | undefined;
|
|
24092
24301
|
updatedAt?: string | undefined;
|
|
24093
24302
|
expiresAt?: string | undefined;
|
|
24303
|
+
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;
|
|
24094
24304
|
source?: Record<string, any> | undefined;
|
|
24095
24305
|
tags?: string[] | undefined;
|
|
24096
|
-
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;
|
|
24097
24306
|
createdAt?: string | undefined;
|
|
24098
24307
|
managerIds?: string[] | undefined;
|
|
24099
24308
|
replyCount?: number | undefined;
|
|
@@ -24152,9 +24361,9 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
|
|
|
24152
24361
|
version?: string | undefined;
|
|
24153
24362
|
updatedAt?: string | undefined;
|
|
24154
24363
|
expiresAt?: string | undefined;
|
|
24364
|
+
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;
|
|
24155
24365
|
source?: Record<string, any> | undefined;
|
|
24156
24366
|
tags?: string[] | undefined;
|
|
24157
|
-
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;
|
|
24158
24367
|
createdAt?: string | undefined;
|
|
24159
24368
|
managerIds?: string[] | undefined;
|
|
24160
24369
|
replyCount?: number | undefined;
|
|
@@ -24215,9 +24424,9 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
|
|
|
24215
24424
|
version?: string | undefined;
|
|
24216
24425
|
updatedAt?: string | undefined;
|
|
24217
24426
|
expiresAt?: string | undefined;
|
|
24427
|
+
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;
|
|
24218
24428
|
source?: Record<string, any> | undefined;
|
|
24219
24429
|
tags?: string[] | undefined;
|
|
24220
|
-
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;
|
|
24221
24430
|
createdAt?: string | undefined;
|
|
24222
24431
|
managerIds?: string[] | undefined;
|
|
24223
24432
|
replyCount?: number | undefined;
|
|
@@ -24278,9 +24487,9 @@ export declare const MessagingInboxOnMediumUserChatClosedInputProtoSchema: z.Zod
|
|
|
24278
24487
|
version?: string | undefined;
|
|
24279
24488
|
updatedAt?: string | undefined;
|
|
24280
24489
|
expiresAt?: string | undefined;
|
|
24490
|
+
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;
|
|
24281
24491
|
source?: Record<string, any> | undefined;
|
|
24282
24492
|
tags?: string[] | undefined;
|
|
24283
|
-
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;
|
|
24284
24493
|
createdAt?: string | undefined;
|
|
24285
24494
|
managerIds?: string[] | undefined;
|
|
24286
24495
|
replyCount?: number | undefined;
|
|
@@ -24406,9 +24615,9 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
|
|
|
24406
24615
|
version?: string | undefined;
|
|
24407
24616
|
updatedAt?: string | undefined;
|
|
24408
24617
|
expiresAt?: string | undefined;
|
|
24618
|
+
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;
|
|
24409
24619
|
source?: Record<string, any> | undefined;
|
|
24410
24620
|
tags?: string[] | undefined;
|
|
24411
|
-
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;
|
|
24412
24621
|
createdAt?: string | undefined;
|
|
24413
24622
|
managerIds?: string[] | undefined;
|
|
24414
24623
|
replyCount?: number | undefined;
|
|
@@ -24467,9 +24676,9 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
|
|
|
24467
24676
|
version?: string | undefined;
|
|
24468
24677
|
updatedAt?: string | undefined;
|
|
24469
24678
|
expiresAt?: string | undefined;
|
|
24679
|
+
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;
|
|
24470
24680
|
source?: Record<string, any> | undefined;
|
|
24471
24681
|
tags?: string[] | undefined;
|
|
24472
|
-
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;
|
|
24473
24682
|
createdAt?: string | undefined;
|
|
24474
24683
|
managerIds?: string[] | undefined;
|
|
24475
24684
|
replyCount?: number | undefined;
|
|
@@ -24530,9 +24739,9 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
|
|
|
24530
24739
|
version?: string | undefined;
|
|
24531
24740
|
updatedAt?: string | undefined;
|
|
24532
24741
|
expiresAt?: string | undefined;
|
|
24742
|
+
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;
|
|
24533
24743
|
source?: Record<string, any> | undefined;
|
|
24534
24744
|
tags?: string[] | undefined;
|
|
24535
|
-
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;
|
|
24536
24745
|
createdAt?: string | undefined;
|
|
24537
24746
|
managerIds?: string[] | undefined;
|
|
24538
24747
|
replyCount?: number | undefined;
|
|
@@ -24593,9 +24802,9 @@ export declare const MessagingInboxGetWritingTypesInputProtoSchema: z.ZodObject<
|
|
|
24593
24802
|
version?: string | undefined;
|
|
24594
24803
|
updatedAt?: string | undefined;
|
|
24595
24804
|
expiresAt?: string | undefined;
|
|
24805
|
+
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;
|
|
24596
24806
|
source?: Record<string, any> | undefined;
|
|
24597
24807
|
tags?: string[] | undefined;
|
|
24598
|
-
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;
|
|
24599
24808
|
createdAt?: string | undefined;
|
|
24600
24809
|
managerIds?: string[] | undefined;
|
|
24601
24810
|
replyCount?: number | undefined;
|
|
@@ -24962,9 +25171,9 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
24962
25171
|
version?: string | undefined;
|
|
24963
25172
|
updatedAt?: string | undefined;
|
|
24964
25173
|
expiresAt?: string | undefined;
|
|
25174
|
+
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;
|
|
24965
25175
|
source?: Record<string, any> | undefined;
|
|
24966
25176
|
tags?: string[] | undefined;
|
|
24967
|
-
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;
|
|
24968
25177
|
createdAt?: string | undefined;
|
|
24969
25178
|
managerIds?: string[] | undefined;
|
|
24970
25179
|
replyCount?: number | undefined;
|
|
@@ -25023,9 +25232,9 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
25023
25232
|
version?: string | undefined;
|
|
25024
25233
|
updatedAt?: string | undefined;
|
|
25025
25234
|
expiresAt?: string | undefined;
|
|
25235
|
+
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;
|
|
25026
25236
|
source?: Record<string, any> | undefined;
|
|
25027
25237
|
tags?: string[] | undefined;
|
|
25028
|
-
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;
|
|
25029
25238
|
createdAt?: string | undefined;
|
|
25030
25239
|
managerIds?: string[] | undefined;
|
|
25031
25240
|
replyCount?: number | undefined;
|
|
@@ -25109,8 +25318,8 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
25109
25318
|
amassedPersons: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
25110
25319
|
}, "strip", z.ZodTypeAny, {
|
|
25111
25320
|
id?: string | undefined;
|
|
25112
|
-
country?: string | undefined;
|
|
25113
25321
|
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;
|
|
25322
|
+
country?: string | undefined;
|
|
25114
25323
|
call?: Record<string, any> | undefined;
|
|
25115
25324
|
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
25116
25325
|
recording?: Record<string, any> | undefined;
|
|
@@ -25119,8 +25328,8 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
25119
25328
|
amassedPersons?: string[] | undefined;
|
|
25120
25329
|
}, {
|
|
25121
25330
|
id?: string | undefined;
|
|
25122
|
-
country?: string | undefined;
|
|
25123
25331
|
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;
|
|
25332
|
+
country?: string | undefined;
|
|
25124
25333
|
call?: Record<string, any> | undefined;
|
|
25125
25334
|
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
25126
25335
|
recording?: Record<string, any> | undefined;
|
|
@@ -25223,8 +25432,8 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
25223
25432
|
log?: Record<string, any> | undefined;
|
|
25224
25433
|
meet?: {
|
|
25225
25434
|
id?: string | undefined;
|
|
25226
|
-
country?: string | undefined;
|
|
25227
25435
|
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;
|
|
25436
|
+
country?: string | undefined;
|
|
25228
25437
|
call?: Record<string, any> | undefined;
|
|
25229
25438
|
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
25230
25439
|
recording?: Record<string, any> | undefined;
|
|
@@ -25286,8 +25495,8 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
25286
25495
|
log?: Record<string, any> | undefined;
|
|
25287
25496
|
meet?: {
|
|
25288
25497
|
id?: string | undefined;
|
|
25289
|
-
country?: string | undefined;
|
|
25290
25498
|
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;
|
|
25499
|
+
country?: string | undefined;
|
|
25291
25500
|
call?: Record<string, any> | undefined;
|
|
25292
25501
|
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
25293
25502
|
recording?: Record<string, any> | undefined;
|
|
@@ -25377,9 +25586,9 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
25377
25586
|
version?: string | undefined;
|
|
25378
25587
|
updatedAt?: string | undefined;
|
|
25379
25588
|
expiresAt?: string | undefined;
|
|
25589
|
+
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;
|
|
25380
25590
|
source?: Record<string, any> | undefined;
|
|
25381
25591
|
tags?: string[] | undefined;
|
|
25382
|
-
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;
|
|
25383
25592
|
createdAt?: string | undefined;
|
|
25384
25593
|
managerIds?: string[] | undefined;
|
|
25385
25594
|
replyCount?: number | undefined;
|
|
@@ -25449,8 +25658,8 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
25449
25658
|
log?: Record<string, any> | undefined;
|
|
25450
25659
|
meet?: {
|
|
25451
25660
|
id?: string | undefined;
|
|
25452
|
-
country?: string | undefined;
|
|
25453
25661
|
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;
|
|
25662
|
+
country?: string | undefined;
|
|
25454
25663
|
call?: Record<string, any> | undefined;
|
|
25455
25664
|
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
25456
25665
|
recording?: Record<string, any> | undefined;
|
|
@@ -25543,9 +25752,9 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
25543
25752
|
version?: string | undefined;
|
|
25544
25753
|
updatedAt?: string | undefined;
|
|
25545
25754
|
expiresAt?: string | undefined;
|
|
25755
|
+
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;
|
|
25546
25756
|
source?: Record<string, any> | undefined;
|
|
25547
25757
|
tags?: string[] | undefined;
|
|
25548
|
-
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;
|
|
25549
25758
|
createdAt?: string | undefined;
|
|
25550
25759
|
managerIds?: string[] | undefined;
|
|
25551
25760
|
replyCount?: number | undefined;
|
|
@@ -25615,8 +25824,8 @@ export declare const MessagingInboxGetCustomEditorWamInputProtoSchema: z.ZodObje
|
|
|
25615
25824
|
log?: Record<string, any> | undefined;
|
|
25616
25825
|
meet?: {
|
|
25617
25826
|
id?: string | undefined;
|
|
25618
|
-
country?: string | undefined;
|
|
25619
25827
|
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;
|
|
25828
|
+
country?: string | undefined;
|
|
25620
25829
|
call?: Record<string, any> | undefined;
|
|
25621
25830
|
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
25622
25831
|
recording?: Record<string, any> | undefined;
|
|
@@ -25919,9 +26128,9 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
25919
26128
|
version?: string | undefined;
|
|
25920
26129
|
updatedAt?: string | undefined;
|
|
25921
26130
|
expiresAt?: string | undefined;
|
|
26131
|
+
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;
|
|
25922
26132
|
source?: Record<string, any> | undefined;
|
|
25923
26133
|
tags?: string[] | undefined;
|
|
25924
|
-
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;
|
|
25925
26134
|
createdAt?: string | undefined;
|
|
25926
26135
|
managerIds?: string[] | undefined;
|
|
25927
26136
|
replyCount?: number | undefined;
|
|
@@ -25980,9 +26189,9 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
25980
26189
|
version?: string | undefined;
|
|
25981
26190
|
updatedAt?: string | undefined;
|
|
25982
26191
|
expiresAt?: string | undefined;
|
|
26192
|
+
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;
|
|
25983
26193
|
source?: Record<string, any> | undefined;
|
|
25984
26194
|
tags?: string[] | undefined;
|
|
25985
|
-
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;
|
|
25986
26195
|
createdAt?: string | undefined;
|
|
25987
26196
|
managerIds?: string[] | undefined;
|
|
25988
26197
|
replyCount?: number | undefined;
|
|
@@ -26063,8 +26272,8 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
26063
26272
|
amassedPersons: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
26064
26273
|
}, "strip", z.ZodTypeAny, {
|
|
26065
26274
|
id?: string | undefined;
|
|
26066
|
-
country?: string | undefined;
|
|
26067
26275
|
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;
|
|
26276
|
+
country?: string | undefined;
|
|
26068
26277
|
call?: Record<string, any> | undefined;
|
|
26069
26278
|
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
26070
26279
|
recording?: Record<string, any> | undefined;
|
|
@@ -26073,8 +26282,8 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
26073
26282
|
amassedPersons?: string[] | undefined;
|
|
26074
26283
|
}, {
|
|
26075
26284
|
id?: string | undefined;
|
|
26076
|
-
country?: string | undefined;
|
|
26077
26285
|
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;
|
|
26286
|
+
country?: string | undefined;
|
|
26078
26287
|
call?: Record<string, any> | undefined;
|
|
26079
26288
|
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
26080
26289
|
recording?: Record<string, any> | undefined;
|
|
@@ -26177,8 +26386,8 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
26177
26386
|
log?: Record<string, any> | undefined;
|
|
26178
26387
|
meet?: {
|
|
26179
26388
|
id?: string | undefined;
|
|
26180
|
-
country?: string | undefined;
|
|
26181
26389
|
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;
|
|
26390
|
+
country?: string | undefined;
|
|
26182
26391
|
call?: Record<string, any> | undefined;
|
|
26183
26392
|
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
26184
26393
|
recording?: Record<string, any> | undefined;
|
|
@@ -26240,8 +26449,8 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
26240
26449
|
log?: Record<string, any> | undefined;
|
|
26241
26450
|
meet?: {
|
|
26242
26451
|
id?: string | undefined;
|
|
26243
|
-
country?: string | undefined;
|
|
26244
26452
|
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;
|
|
26453
|
+
country?: string | undefined;
|
|
26245
26454
|
call?: Record<string, any> | undefined;
|
|
26246
26455
|
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
26247
26456
|
recording?: Record<string, any> | undefined;
|
|
@@ -26295,9 +26504,9 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
26295
26504
|
version?: string | undefined;
|
|
26296
26505
|
updatedAt?: string | undefined;
|
|
26297
26506
|
expiresAt?: string | undefined;
|
|
26507
|
+
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;
|
|
26298
26508
|
source?: Record<string, any> | undefined;
|
|
26299
26509
|
tags?: string[] | undefined;
|
|
26300
|
-
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;
|
|
26301
26510
|
createdAt?: string | undefined;
|
|
26302
26511
|
managerIds?: string[] | undefined;
|
|
26303
26512
|
replyCount?: number | undefined;
|
|
@@ -26367,8 +26576,8 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
26367
26576
|
log?: Record<string, any> | undefined;
|
|
26368
26577
|
meet?: {
|
|
26369
26578
|
id?: string | undefined;
|
|
26370
|
-
country?: string | undefined;
|
|
26371
26579
|
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;
|
|
26580
|
+
country?: string | undefined;
|
|
26372
26581
|
call?: Record<string, any> | undefined;
|
|
26373
26582
|
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
26374
26583
|
recording?: Record<string, any> | undefined;
|
|
@@ -26422,9 +26631,9 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
26422
26631
|
version?: string | undefined;
|
|
26423
26632
|
updatedAt?: string | undefined;
|
|
26424
26633
|
expiresAt?: string | undefined;
|
|
26634
|
+
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;
|
|
26425
26635
|
source?: Record<string, any> | undefined;
|
|
26426
26636
|
tags?: string[] | undefined;
|
|
26427
|
-
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;
|
|
26428
26637
|
createdAt?: string | undefined;
|
|
26429
26638
|
managerIds?: string[] | undefined;
|
|
26430
26639
|
replyCount?: number | undefined;
|
|
@@ -26494,8 +26703,8 @@ export declare const MessagingInboxGetMediumMessageErrorReasonInputProtoSchema:
|
|
|
26494
26703
|
log?: Record<string, any> | undefined;
|
|
26495
26704
|
meet?: {
|
|
26496
26705
|
id?: string | undefined;
|
|
26497
|
-
country?: string | undefined;
|
|
26498
26706
|
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;
|
|
26707
|
+
country?: string | undefined;
|
|
26499
26708
|
call?: Record<string, any> | undefined;
|
|
26500
26709
|
mode?: "MEET_MODE_UNSPECIFIED" | "MEET_MODE_AUDIO" | "MEET_MODE_VIDEO" | undefined;
|
|
26501
26710
|
recording?: Record<string, any> | undefined;
|
|
@@ -27715,4 +27924,61 @@ export declare const ConfigOAuthClientCredentialsProtoSchema: z.ZodObject<{
|
|
|
27715
27924
|
clientSecretFieldKey?: string | undefined;
|
|
27716
27925
|
}>;
|
|
27717
27926
|
export type ConfigOAuthClientCredentialsProto = z.infer<typeof ConfigOAuthClientCredentialsProtoSchema>;
|
|
27927
|
+
export declare const HookUserChatOpenedInputProtoSchema: z.ZodObject<{
|
|
27928
|
+
eventId: z.ZodOptional<z.ZodString>;
|
|
27929
|
+
channelId: z.ZodOptional<z.ZodString>;
|
|
27930
|
+
userChatId: z.ZodOptional<z.ZodString>;
|
|
27931
|
+
state: z.ZodOptional<z.ZodString>;
|
|
27932
|
+
previousState: z.ZodOptional<z.ZodString>;
|
|
27933
|
+
openKind: z.ZodOptional<z.ZodString>;
|
|
27934
|
+
actorKind: z.ZodOptional<z.ZodString>;
|
|
27935
|
+
triggerMessageId: z.ZodOptional<z.ZodString>;
|
|
27936
|
+
occurredAt: z.ZodOptional<z.ZodString>;
|
|
27937
|
+
version: z.ZodOptional<z.ZodString>;
|
|
27938
|
+
}, "strip", z.ZodTypeAny, {
|
|
27939
|
+
channelId?: string | undefined;
|
|
27940
|
+
userChatId?: string | undefined;
|
|
27941
|
+
version?: string | undefined;
|
|
27942
|
+
openKind?: string | undefined;
|
|
27943
|
+
actorKind?: string | undefined;
|
|
27944
|
+
eventId?: string | undefined;
|
|
27945
|
+
state?: string | undefined;
|
|
27946
|
+
previousState?: string | undefined;
|
|
27947
|
+
triggerMessageId?: string | undefined;
|
|
27948
|
+
occurredAt?: string | undefined;
|
|
27949
|
+
}, {
|
|
27950
|
+
channelId?: string | undefined;
|
|
27951
|
+
userChatId?: string | undefined;
|
|
27952
|
+
version?: string | undefined;
|
|
27953
|
+
openKind?: string | undefined;
|
|
27954
|
+
actorKind?: string | undefined;
|
|
27955
|
+
eventId?: string | undefined;
|
|
27956
|
+
state?: string | undefined;
|
|
27957
|
+
previousState?: string | undefined;
|
|
27958
|
+
triggerMessageId?: string | undefined;
|
|
27959
|
+
occurredAt?: string | undefined;
|
|
27960
|
+
}>;
|
|
27961
|
+
export type HookUserChatOpenedInputProto = z.infer<typeof HookUserChatOpenedInputProtoSchema>;
|
|
27962
|
+
export declare const HookUserChatOpenedResultProtoSchema: z.ZodObject<{
|
|
27963
|
+
hookHandlingResult: z.ZodOptional<z.ZodString>;
|
|
27964
|
+
terminal: z.ZodOptional<z.ZodBoolean>;
|
|
27965
|
+
}, "strip", z.ZodTypeAny, {
|
|
27966
|
+
hookHandlingResult?: string | undefined;
|
|
27967
|
+
terminal?: boolean | undefined;
|
|
27968
|
+
}, {
|
|
27969
|
+
hookHandlingResult?: string | undefined;
|
|
27970
|
+
terminal?: boolean | undefined;
|
|
27971
|
+
}>;
|
|
27972
|
+
export type HookUserChatOpenedResultProto = z.infer<typeof HookUserChatOpenedResultProtoSchema>;
|
|
27973
|
+
export declare const DataSourceManagerPermissionProtoSchema: z.ZodObject<{
|
|
27974
|
+
action: z.ZodOptional<z.ZodString>;
|
|
27975
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
27976
|
+
}, "strip", z.ZodTypeAny, {
|
|
27977
|
+
action?: string | undefined;
|
|
27978
|
+
scope?: string | undefined;
|
|
27979
|
+
}, {
|
|
27980
|
+
action?: string | undefined;
|
|
27981
|
+
scope?: string | undefined;
|
|
27982
|
+
}>;
|
|
27983
|
+
export type DataSourceManagerPermissionProto = z.infer<typeof DataSourceManagerPermissionProtoSchema>;
|
|
27718
27984
|
//# sourceMappingURL=extension.zod.d.ts.map
|