@channel.io/app-sdk-core 0.17.2 → 0.18.1

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.
Files changed (36) hide show
  1. package/dist/extensions/commerce.d.ts +35 -35
  2. package/dist/extensions/commerce.js +5 -5
  3. package/dist/extensions/function-schemas.d.ts.map +1 -1
  4. package/dist/extensions/function-schemas.js +31 -26
  5. package/dist/extensions/function-schemas.js.map +1 -1
  6. package/dist/extensions/index.d.ts +3 -3
  7. package/dist/extensions/index.d.ts.map +1 -1
  8. package/dist/extensions/index.js +3 -3
  9. package/dist/extensions/index.js.map +1 -1
  10. package/dist/extensions/interfaces/polling.d.ts +23 -2
  11. package/dist/extensions/interfaces/polling.d.ts.map +1 -1
  12. package/dist/extensions/interfaces/polling.js +1 -0
  13. package/dist/extensions/interfaces/polling.js.map +1 -1
  14. package/dist/extensions/messaging.d.ts +33 -0
  15. package/dist/extensions/messaging.d.ts.map +1 -1
  16. package/dist/extensions/messaging.js +94 -0
  17. package/dist/extensions/messaging.js.map +1 -1
  18. package/dist/extensions/polling.d.ts +96 -1
  19. package/dist/extensions/polling.d.ts.map +1 -1
  20. package/dist/extensions/polling.js +41 -0
  21. package/dist/extensions/polling.js.map +1 -1
  22. package/dist/extensions/proto-contracts.d.ts +5 -2
  23. package/dist/extensions/proto-contracts.d.ts.map +1 -1
  24. package/dist/extensions/wms.d.ts +52 -49
  25. package/dist/extensions/wms.d.ts.map +1 -1
  26. package/dist/extensions/wms.js +10 -7
  27. package/dist/extensions/wms.js.map +1 -1
  28. package/dist/gen/channel/app/sdk/v1/extension.d.ts +27 -11
  29. package/dist/gen/channel/app/sdk/v1/extension.d.ts.map +1 -1
  30. package/dist/gen/channel/app/sdk/v1/extension.zod.d.ts +144 -82
  31. package/dist/gen/channel/app/sdk/v1/extension.zod.d.ts.map +1 -1
  32. package/dist/gen/channel/app/sdk/v1/extension.zod.js +26 -11
  33. package/dist/gen/channel/app/sdk/v1/extension.zod.js.map +1 -1
  34. package/dist/types/context.d.ts +3 -3
  35. package/dist/types/context.d.ts.map +1 -1
  36. package/package.json +2 -2
@@ -12761,18 +12761,21 @@ export declare const PollingPollerProtoSchema: z.ZodObject<{
12761
12761
  timeoutSeconds: z.ZodOptional<z.ZodNumber>;
12762
12762
  maxConcurrency: z.ZodOptional<z.ZodNumber>;
12763
12763
  rps: z.ZodOptional<z.ZodNumber>;
12764
+ executionScope: z.ZodOptional<z.ZodString>;
12764
12765
  }, "strip", z.ZodTypeAny, {
12765
12766
  functionName?: string | undefined;
12766
12767
  intervalSeconds?: number | undefined;
12767
12768
  timeoutSeconds?: number | undefined;
12768
12769
  maxConcurrency?: number | undefined;
12769
12770
  rps?: number | undefined;
12771
+ executionScope?: string | undefined;
12770
12772
  }, {
12771
12773
  functionName?: string | undefined;
12772
12774
  intervalSeconds?: number | undefined;
12773
12775
  timeoutSeconds?: number | undefined;
12774
12776
  maxConcurrency?: number | undefined;
12775
12777
  rps?: number | undefined;
12778
+ executionScope?: string | undefined;
12776
12779
  }>;
12777
12780
  export type PollingPollerProto = z.infer<typeof PollingPollerProtoSchema>;
12778
12781
  export declare const PollingGetPollersInputProtoSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
@@ -12784,18 +12787,21 @@ export declare const PollingGetPollersOutputProtoSchema: z.ZodObject<{
12784
12787
  timeoutSeconds: z.ZodOptional<z.ZodNumber>;
12785
12788
  maxConcurrency: z.ZodOptional<z.ZodNumber>;
12786
12789
  rps: z.ZodOptional<z.ZodNumber>;
12790
+ executionScope: z.ZodOptional<z.ZodString>;
12787
12791
  }, "strip", z.ZodTypeAny, {
12788
12792
  functionName?: string | undefined;
12789
12793
  intervalSeconds?: number | undefined;
12790
12794
  timeoutSeconds?: number | undefined;
12791
12795
  maxConcurrency?: number | undefined;
12792
12796
  rps?: number | undefined;
12797
+ executionScope?: string | undefined;
12793
12798
  }, {
12794
12799
  functionName?: string | undefined;
12795
12800
  intervalSeconds?: number | undefined;
12796
12801
  timeoutSeconds?: number | undefined;
12797
12802
  maxConcurrency?: number | undefined;
12798
12803
  rps?: number | undefined;
12804
+ executionScope?: string | undefined;
12799
12805
  }>>, "many">>;
12800
12806
  }, "strip", z.ZodTypeAny, {
12801
12807
  pollers?: {
@@ -12804,6 +12810,7 @@ export declare const PollingGetPollersOutputProtoSchema: z.ZodObject<{
12804
12810
  timeoutSeconds?: number | undefined;
12805
12811
  maxConcurrency?: number | undefined;
12806
12812
  rps?: number | undefined;
12813
+ executionScope?: string | undefined;
12807
12814
  }[] | undefined;
12808
12815
  }, {
12809
12816
  pollers?: {
@@ -12812,6 +12819,7 @@ export declare const PollingGetPollersOutputProtoSchema: z.ZodObject<{
12812
12819
  timeoutSeconds?: number | undefined;
12813
12820
  maxConcurrency?: number | undefined;
12814
12821
  rps?: number | undefined;
12822
+ executionScope?: string | undefined;
12815
12823
  }[] | undefined;
12816
12824
  }>;
12817
12825
  export type PollingGetPollersOutputProto = z.infer<typeof PollingGetPollersOutputProtoSchema>;
@@ -18312,7 +18320,7 @@ export declare const CommerceAppCapabilitiesProtoSchema: z.ZodObject<{
18312
18320
  }[] | undefined;
18313
18321
  }> | undefined;
18314
18322
  }>>>;
18315
- cancelRequestOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
18323
+ requestCancelOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
18316
18324
  required: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18317
18325
  optional: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18318
18326
  fieldConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodLazy<z.ZodObject<{
@@ -18366,7 +18374,7 @@ export declare const CommerceAppCapabilitiesProtoSchema: z.ZodObject<{
18366
18374
  }[] | undefined;
18367
18375
  }> | undefined;
18368
18376
  }>>>;
18369
- returnRequestOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
18377
+ requestReturnOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
18370
18378
  required: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18371
18379
  optional: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18372
18380
  fieldConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodLazy<z.ZodObject<{
@@ -18420,7 +18428,7 @@ export declare const CommerceAppCapabilitiesProtoSchema: z.ZodObject<{
18420
18428
  }[] | undefined;
18421
18429
  }> | undefined;
18422
18430
  }>>>;
18423
- returnAcceptOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
18431
+ acceptReturnOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
18424
18432
  required: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18425
18433
  optional: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18426
18434
  fieldConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodLazy<z.ZodObject<{
@@ -18474,7 +18482,7 @@ export declare const CommerceAppCapabilitiesProtoSchema: z.ZodObject<{
18474
18482
  }[] | undefined;
18475
18483
  }> | undefined;
18476
18484
  }>>>;
18477
- exchangeRequestOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
18485
+ requestExchangeOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
18478
18486
  required: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18479
18487
  optional: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18480
18488
  fieldConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodLazy<z.ZodObject<{
@@ -18595,7 +18603,7 @@ export declare const CommerceAppCapabilitiesProtoSchema: z.ZodObject<{
18595
18603
  }[] | undefined;
18596
18604
  }> | undefined;
18597
18605
  } | undefined;
18598
- cancelRequestOrderOptions?: {
18606
+ requestCancelOrderOptions?: {
18599
18607
  required?: string[] | undefined;
18600
18608
  optional?: string[] | undefined;
18601
18609
  fieldConfigs?: Record<string, {
@@ -18607,7 +18615,7 @@ export declare const CommerceAppCapabilitiesProtoSchema: z.ZodObject<{
18607
18615
  }[] | undefined;
18608
18616
  }> | undefined;
18609
18617
  } | undefined;
18610
- returnRequestOrderOptions?: {
18618
+ requestReturnOrderOptions?: {
18611
18619
  required?: string[] | undefined;
18612
18620
  optional?: string[] | undefined;
18613
18621
  fieldConfigs?: Record<string, {
@@ -18619,7 +18627,7 @@ export declare const CommerceAppCapabilitiesProtoSchema: z.ZodObject<{
18619
18627
  }[] | undefined;
18620
18628
  }> | undefined;
18621
18629
  } | undefined;
18622
- exchangeRequestOrderOptions?: {
18630
+ requestExchangeOrderOptions?: {
18623
18631
  required?: string[] | undefined;
18624
18632
  optional?: string[] | undefined;
18625
18633
  fieldConfigs?: Record<string, {
@@ -18643,7 +18651,7 @@ export declare const CommerceAppCapabilitiesProtoSchema: z.ZodObject<{
18643
18651
  }[] | undefined;
18644
18652
  }> | undefined;
18645
18653
  } | undefined;
18646
- returnAcceptOrderOptions?: {
18654
+ acceptReturnOrderOptions?: {
18647
18655
  required?: string[] | undefined;
18648
18656
  optional?: string[] | undefined;
18649
18657
  fieldConfigs?: Record<string, {
@@ -18668,7 +18676,7 @@ export declare const CommerceAppCapabilitiesProtoSchema: z.ZodObject<{
18668
18676
  }[] | undefined;
18669
18677
  }> | undefined;
18670
18678
  } | undefined;
18671
- cancelRequestOrderOptions?: {
18679
+ requestCancelOrderOptions?: {
18672
18680
  required?: string[] | undefined;
18673
18681
  optional?: string[] | undefined;
18674
18682
  fieldConfigs?: Record<string, {
@@ -18680,7 +18688,7 @@ export declare const CommerceAppCapabilitiesProtoSchema: z.ZodObject<{
18680
18688
  }[] | undefined;
18681
18689
  }> | undefined;
18682
18690
  } | undefined;
18683
- returnRequestOrderOptions?: {
18691
+ requestReturnOrderOptions?: {
18684
18692
  required?: string[] | undefined;
18685
18693
  optional?: string[] | undefined;
18686
18694
  fieldConfigs?: Record<string, {
@@ -18692,7 +18700,7 @@ export declare const CommerceAppCapabilitiesProtoSchema: z.ZodObject<{
18692
18700
  }[] | undefined;
18693
18701
  }> | undefined;
18694
18702
  } | undefined;
18695
- exchangeRequestOrderOptions?: {
18703
+ requestExchangeOrderOptions?: {
18696
18704
  required?: string[] | undefined;
18697
18705
  optional?: string[] | undefined;
18698
18706
  fieldConfigs?: Record<string, {
@@ -18716,7 +18724,7 @@ export declare const CommerceAppCapabilitiesProtoSchema: z.ZodObject<{
18716
18724
  }[] | undefined;
18717
18725
  }> | undefined;
18718
18726
  } | undefined;
18719
- returnAcceptOrderOptions?: {
18727
+ acceptReturnOrderOptions?: {
18720
18728
  required?: string[] | undefined;
18721
18729
  optional?: string[] | undefined;
18722
18730
  fieldConfigs?: Record<string, {
@@ -18788,7 +18796,7 @@ export declare const CommerceGetAppConfigsOutputProtoSchema: z.ZodObject<{
18788
18796
  }[] | undefined;
18789
18797
  }> | undefined;
18790
18798
  }>>>;
18791
- cancelRequestOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
18799
+ requestCancelOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
18792
18800
  required: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18793
18801
  optional: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18794
18802
  fieldConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodLazy<z.ZodObject<{
@@ -18842,7 +18850,7 @@ export declare const CommerceGetAppConfigsOutputProtoSchema: z.ZodObject<{
18842
18850
  }[] | undefined;
18843
18851
  }> | undefined;
18844
18852
  }>>>;
18845
- returnRequestOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
18853
+ requestReturnOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
18846
18854
  required: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18847
18855
  optional: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18848
18856
  fieldConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodLazy<z.ZodObject<{
@@ -18896,7 +18904,7 @@ export declare const CommerceGetAppConfigsOutputProtoSchema: z.ZodObject<{
18896
18904
  }[] | undefined;
18897
18905
  }> | undefined;
18898
18906
  }>>>;
18899
- returnAcceptOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
18907
+ acceptReturnOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
18900
18908
  required: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18901
18909
  optional: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18902
18910
  fieldConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodLazy<z.ZodObject<{
@@ -18950,7 +18958,7 @@ export declare const CommerceGetAppConfigsOutputProtoSchema: z.ZodObject<{
18950
18958
  }[] | undefined;
18951
18959
  }> | undefined;
18952
18960
  }>>>;
18953
- exchangeRequestOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
18961
+ requestExchangeOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
18954
18962
  required: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18955
18963
  optional: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18956
18964
  fieldConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodLazy<z.ZodObject<{
@@ -19071,7 +19079,7 @@ export declare const CommerceGetAppConfigsOutputProtoSchema: z.ZodObject<{
19071
19079
  }[] | undefined;
19072
19080
  }> | undefined;
19073
19081
  } | undefined;
19074
- cancelRequestOrderOptions?: {
19082
+ requestCancelOrderOptions?: {
19075
19083
  required?: string[] | undefined;
19076
19084
  optional?: string[] | undefined;
19077
19085
  fieldConfigs?: Record<string, {
@@ -19083,7 +19091,7 @@ export declare const CommerceGetAppConfigsOutputProtoSchema: z.ZodObject<{
19083
19091
  }[] | undefined;
19084
19092
  }> | undefined;
19085
19093
  } | undefined;
19086
- returnRequestOrderOptions?: {
19094
+ requestReturnOrderOptions?: {
19087
19095
  required?: string[] | undefined;
19088
19096
  optional?: string[] | undefined;
19089
19097
  fieldConfigs?: Record<string, {
@@ -19095,7 +19103,7 @@ export declare const CommerceGetAppConfigsOutputProtoSchema: z.ZodObject<{
19095
19103
  }[] | undefined;
19096
19104
  }> | undefined;
19097
19105
  } | undefined;
19098
- exchangeRequestOrderOptions?: {
19106
+ requestExchangeOrderOptions?: {
19099
19107
  required?: string[] | undefined;
19100
19108
  optional?: string[] | undefined;
19101
19109
  fieldConfigs?: Record<string, {
@@ -19119,7 +19127,7 @@ export declare const CommerceGetAppConfigsOutputProtoSchema: z.ZodObject<{
19119
19127
  }[] | undefined;
19120
19128
  }> | undefined;
19121
19129
  } | undefined;
19122
- returnAcceptOrderOptions?: {
19130
+ acceptReturnOrderOptions?: {
19123
19131
  required?: string[] | undefined;
19124
19132
  optional?: string[] | undefined;
19125
19133
  fieldConfigs?: Record<string, {
@@ -19144,7 +19152,7 @@ export declare const CommerceGetAppConfigsOutputProtoSchema: z.ZodObject<{
19144
19152
  }[] | undefined;
19145
19153
  }> | undefined;
19146
19154
  } | undefined;
19147
- cancelRequestOrderOptions?: {
19155
+ requestCancelOrderOptions?: {
19148
19156
  required?: string[] | undefined;
19149
19157
  optional?: string[] | undefined;
19150
19158
  fieldConfigs?: Record<string, {
@@ -19156,7 +19164,7 @@ export declare const CommerceGetAppConfigsOutputProtoSchema: z.ZodObject<{
19156
19164
  }[] | undefined;
19157
19165
  }> | undefined;
19158
19166
  } | undefined;
19159
- returnRequestOrderOptions?: {
19167
+ requestReturnOrderOptions?: {
19160
19168
  required?: string[] | undefined;
19161
19169
  optional?: string[] | undefined;
19162
19170
  fieldConfigs?: Record<string, {
@@ -19168,7 +19176,7 @@ export declare const CommerceGetAppConfigsOutputProtoSchema: z.ZodObject<{
19168
19176
  }[] | undefined;
19169
19177
  }> | undefined;
19170
19178
  } | undefined;
19171
- exchangeRequestOrderOptions?: {
19179
+ requestExchangeOrderOptions?: {
19172
19180
  required?: string[] | undefined;
19173
19181
  optional?: string[] | undefined;
19174
19182
  fieldConfigs?: Record<string, {
@@ -19192,7 +19200,7 @@ export declare const CommerceGetAppConfigsOutputProtoSchema: z.ZodObject<{
19192
19200
  }[] | undefined;
19193
19201
  }> | undefined;
19194
19202
  } | undefined;
19195
- returnAcceptOrderOptions?: {
19203
+ acceptReturnOrderOptions?: {
19196
19204
  required?: string[] | undefined;
19197
19205
  optional?: string[] | undefined;
19198
19206
  fieldConfigs?: Record<string, {
@@ -19219,7 +19227,7 @@ export declare const CommerceGetAppConfigsOutputProtoSchema: z.ZodObject<{
19219
19227
  }[] | undefined;
19220
19228
  }> | undefined;
19221
19229
  } | undefined;
19222
- cancelRequestOrderOptions?: {
19230
+ requestCancelOrderOptions?: {
19223
19231
  required?: string[] | undefined;
19224
19232
  optional?: string[] | undefined;
19225
19233
  fieldConfigs?: Record<string, {
@@ -19231,7 +19239,7 @@ export declare const CommerceGetAppConfigsOutputProtoSchema: z.ZodObject<{
19231
19239
  }[] | undefined;
19232
19240
  }> | undefined;
19233
19241
  } | undefined;
19234
- returnRequestOrderOptions?: {
19242
+ requestReturnOrderOptions?: {
19235
19243
  required?: string[] | undefined;
19236
19244
  optional?: string[] | undefined;
19237
19245
  fieldConfigs?: Record<string, {
@@ -19243,7 +19251,7 @@ export declare const CommerceGetAppConfigsOutputProtoSchema: z.ZodObject<{
19243
19251
  }[] | undefined;
19244
19252
  }> | undefined;
19245
19253
  } | undefined;
19246
- exchangeRequestOrderOptions?: {
19254
+ requestExchangeOrderOptions?: {
19247
19255
  required?: string[] | undefined;
19248
19256
  optional?: string[] | undefined;
19249
19257
  fieldConfigs?: Record<string, {
@@ -19267,7 +19275,7 @@ export declare const CommerceGetAppConfigsOutputProtoSchema: z.ZodObject<{
19267
19275
  }[] | undefined;
19268
19276
  }> | undefined;
19269
19277
  } | undefined;
19270
- returnAcceptOrderOptions?: {
19278
+ acceptReturnOrderOptions?: {
19271
19279
  required?: string[] | undefined;
19272
19280
  optional?: string[] | undefined;
19273
19281
  fieldConfigs?: Record<string, {
@@ -19294,7 +19302,7 @@ export declare const CommerceGetAppConfigsOutputProtoSchema: z.ZodObject<{
19294
19302
  }[] | undefined;
19295
19303
  }> | undefined;
19296
19304
  } | undefined;
19297
- cancelRequestOrderOptions?: {
19305
+ requestCancelOrderOptions?: {
19298
19306
  required?: string[] | undefined;
19299
19307
  optional?: string[] | undefined;
19300
19308
  fieldConfigs?: Record<string, {
@@ -19306,7 +19314,7 @@ export declare const CommerceGetAppConfigsOutputProtoSchema: z.ZodObject<{
19306
19314
  }[] | undefined;
19307
19315
  }> | undefined;
19308
19316
  } | undefined;
19309
- returnRequestOrderOptions?: {
19317
+ requestReturnOrderOptions?: {
19310
19318
  required?: string[] | undefined;
19311
19319
  optional?: string[] | undefined;
19312
19320
  fieldConfigs?: Record<string, {
@@ -19318,7 +19326,7 @@ export declare const CommerceGetAppConfigsOutputProtoSchema: z.ZodObject<{
19318
19326
  }[] | undefined;
19319
19327
  }> | undefined;
19320
19328
  } | undefined;
19321
- exchangeRequestOrderOptions?: {
19329
+ requestExchangeOrderOptions?: {
19322
19330
  required?: string[] | undefined;
19323
19331
  optional?: string[] | undefined;
19324
19332
  fieldConfigs?: Record<string, {
@@ -19342,7 +19350,7 @@ export declare const CommerceGetAppConfigsOutputProtoSchema: z.ZodObject<{
19342
19350
  }[] | undefined;
19343
19351
  }> | undefined;
19344
19352
  } | undefined;
19345
- returnAcceptOrderOptions?: {
19353
+ acceptReturnOrderOptions?: {
19346
19354
  required?: string[] | undefined;
19347
19355
  optional?: string[] | undefined;
19348
19356
  fieldConfigs?: Record<string, {
@@ -19656,7 +19664,7 @@ export declare const CommerceReturnOrderInputProtoSchema: z.ZodObject<{
19656
19664
  } | undefined;
19657
19665
  }>;
19658
19666
  export type CommerceReturnOrderInputProto = z.infer<typeof CommerceReturnOrderInputProtoSchema>;
19659
- export declare const CommerceReturnAcceptOrderInputProtoSchema: z.ZodObject<{
19667
+ export declare const CommerceAcceptReturnOrderInputProtoSchema: z.ZodObject<{
19660
19668
  identifier: z.ZodOptional<z.ZodLazy<z.ZodObject<{
19661
19669
  type: z.ZodOptional<z.ZodString>;
19662
19670
  value: z.ZodOptional<z.ZodString>;
@@ -19746,7 +19754,7 @@ export declare const CommerceReturnAcceptOrderInputProtoSchema: z.ZodObject<{
19746
19754
  requestPickup?: boolean | undefined;
19747
19755
  pickupCompleted?: boolean | undefined;
19748
19756
  }>;
19749
- export type CommerceReturnAcceptOrderInputProto = z.infer<typeof CommerceReturnAcceptOrderInputProtoSchema>;
19757
+ export type CommerceAcceptReturnOrderInputProto = z.infer<typeof CommerceAcceptReturnOrderInputProtoSchema>;
19750
19758
  export declare const CommerceExchangeOrderInputProtoSchema: z.ZodObject<{
19751
19759
  identifier: z.ZodOptional<z.ZodLazy<z.ZodObject<{
19752
19760
  type: z.ZodOptional<z.ZodString>;
@@ -21819,7 +21827,7 @@ export declare const WmsAppCapabilitiesProtoSchema: z.ZodObject<{
21819
21827
  }[] | undefined;
21820
21828
  }> | undefined;
21821
21829
  }>>>;
21822
- cancelRequestOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
21830
+ requestCancelOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
21823
21831
  required: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
21824
21832
  optional: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
21825
21833
  fieldConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodLazy<z.ZodObject<{
@@ -21873,7 +21881,7 @@ export declare const WmsAppCapabilitiesProtoSchema: z.ZodObject<{
21873
21881
  }[] | undefined;
21874
21882
  }> | undefined;
21875
21883
  }>>>;
21876
- cancelRestoreOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
21884
+ restoreCanceledOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
21877
21885
  required: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
21878
21886
  optional: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
21879
21887
  fieldConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodLazy<z.ZodObject<{
@@ -21927,7 +21935,7 @@ export declare const WmsAppCapabilitiesProtoSchema: z.ZodObject<{
21927
21935
  }[] | undefined;
21928
21936
  }> | undefined;
21929
21937
  }>>>;
21930
- returnRequestOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
21938
+ requestReturnOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
21931
21939
  required: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
21932
21940
  optional: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
21933
21941
  fieldConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodLazy<z.ZodObject<{
@@ -21981,7 +21989,7 @@ export declare const WmsAppCapabilitiesProtoSchema: z.ZodObject<{
21981
21989
  }[] | undefined;
21982
21990
  }> | undefined;
21983
21991
  }>>>;
21984
- returnRestoreOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
21992
+ restoreReturnedOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
21985
21993
  required: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
21986
21994
  optional: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
21987
21995
  fieldConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodLazy<z.ZodObject<{
@@ -22035,7 +22043,7 @@ export declare const WmsAppCapabilitiesProtoSchema: z.ZodObject<{
22035
22043
  }[] | undefined;
22036
22044
  }> | undefined;
22037
22045
  }>>>;
22038
- exchangeRequestOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
22046
+ requestExchangeOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
22039
22047
  required: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22040
22048
  optional: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22041
22049
  fieldConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodLazy<z.ZodObject<{
@@ -22089,7 +22097,7 @@ export declare const WmsAppCapabilitiesProtoSchema: z.ZodObject<{
22089
22097
  }[] | undefined;
22090
22098
  }> | undefined;
22091
22099
  }>>>;
22092
- exchangeRestoreOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
22100
+ restoreExchangedOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
22093
22101
  required: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22094
22102
  optional: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22095
22103
  fieldConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodLazy<z.ZodObject<{
@@ -22210,7 +22218,7 @@ export declare const WmsAppCapabilitiesProtoSchema: z.ZodObject<{
22210
22218
  }[] | undefined;
22211
22219
  }> | undefined;
22212
22220
  } | undefined;
22213
- cancelRequestOrderOptions?: {
22221
+ requestCancelOrderOptions?: {
22214
22222
  required?: string[] | undefined;
22215
22223
  optional?: string[] | undefined;
22216
22224
  fieldConfigs?: Record<string, {
@@ -22222,7 +22230,7 @@ export declare const WmsAppCapabilitiesProtoSchema: z.ZodObject<{
22222
22230
  }[] | undefined;
22223
22231
  }> | undefined;
22224
22232
  } | undefined;
22225
- cancelRestoreOrderOptions?: {
22233
+ restoreCanceledOrderOptions?: {
22226
22234
  required?: string[] | undefined;
22227
22235
  optional?: string[] | undefined;
22228
22236
  fieldConfigs?: Record<string, {
@@ -22234,7 +22242,7 @@ export declare const WmsAppCapabilitiesProtoSchema: z.ZodObject<{
22234
22242
  }[] | undefined;
22235
22243
  }> | undefined;
22236
22244
  } | undefined;
22237
- returnRequestOrderOptions?: {
22245
+ requestReturnOrderOptions?: {
22238
22246
  required?: string[] | undefined;
22239
22247
  optional?: string[] | undefined;
22240
22248
  fieldConfigs?: Record<string, {
@@ -22246,7 +22254,7 @@ export declare const WmsAppCapabilitiesProtoSchema: z.ZodObject<{
22246
22254
  }[] | undefined;
22247
22255
  }> | undefined;
22248
22256
  } | undefined;
22249
- returnRestoreOrderOptions?: {
22257
+ restoreReturnedOrderOptions?: {
22250
22258
  required?: string[] | undefined;
22251
22259
  optional?: string[] | undefined;
22252
22260
  fieldConfigs?: Record<string, {
@@ -22258,7 +22266,7 @@ export declare const WmsAppCapabilitiesProtoSchema: z.ZodObject<{
22258
22266
  }[] | undefined;
22259
22267
  }> | undefined;
22260
22268
  } | undefined;
22261
- exchangeRequestOrderOptions?: {
22269
+ requestExchangeOrderOptions?: {
22262
22270
  required?: string[] | undefined;
22263
22271
  optional?: string[] | undefined;
22264
22272
  fieldConfigs?: Record<string, {
@@ -22270,7 +22278,7 @@ export declare const WmsAppCapabilitiesProtoSchema: z.ZodObject<{
22270
22278
  }[] | undefined;
22271
22279
  }> | undefined;
22272
22280
  } | undefined;
22273
- exchangeRestoreOrderOptions?: {
22281
+ restoreExchangedOrderOptions?: {
22274
22282
  required?: string[] | undefined;
22275
22283
  optional?: string[] | undefined;
22276
22284
  fieldConfigs?: Record<string, {
@@ -22307,7 +22315,7 @@ export declare const WmsAppCapabilitiesProtoSchema: z.ZodObject<{
22307
22315
  }[] | undefined;
22308
22316
  }> | undefined;
22309
22317
  } | undefined;
22310
- cancelRequestOrderOptions?: {
22318
+ requestCancelOrderOptions?: {
22311
22319
  required?: string[] | undefined;
22312
22320
  optional?: string[] | undefined;
22313
22321
  fieldConfigs?: Record<string, {
@@ -22319,7 +22327,7 @@ export declare const WmsAppCapabilitiesProtoSchema: z.ZodObject<{
22319
22327
  }[] | undefined;
22320
22328
  }> | undefined;
22321
22329
  } | undefined;
22322
- cancelRestoreOrderOptions?: {
22330
+ restoreCanceledOrderOptions?: {
22323
22331
  required?: string[] | undefined;
22324
22332
  optional?: string[] | undefined;
22325
22333
  fieldConfigs?: Record<string, {
@@ -22331,7 +22339,7 @@ export declare const WmsAppCapabilitiesProtoSchema: z.ZodObject<{
22331
22339
  }[] | undefined;
22332
22340
  }> | undefined;
22333
22341
  } | undefined;
22334
- returnRequestOrderOptions?: {
22342
+ requestReturnOrderOptions?: {
22335
22343
  required?: string[] | undefined;
22336
22344
  optional?: string[] | undefined;
22337
22345
  fieldConfigs?: Record<string, {
@@ -22343,7 +22351,7 @@ export declare const WmsAppCapabilitiesProtoSchema: z.ZodObject<{
22343
22351
  }[] | undefined;
22344
22352
  }> | undefined;
22345
22353
  } | undefined;
22346
- returnRestoreOrderOptions?: {
22354
+ restoreReturnedOrderOptions?: {
22347
22355
  required?: string[] | undefined;
22348
22356
  optional?: string[] | undefined;
22349
22357
  fieldConfigs?: Record<string, {
@@ -22355,7 +22363,7 @@ export declare const WmsAppCapabilitiesProtoSchema: z.ZodObject<{
22355
22363
  }[] | undefined;
22356
22364
  }> | undefined;
22357
22365
  } | undefined;
22358
- exchangeRequestOrderOptions?: {
22366
+ requestExchangeOrderOptions?: {
22359
22367
  required?: string[] | undefined;
22360
22368
  optional?: string[] | undefined;
22361
22369
  fieldConfigs?: Record<string, {
@@ -22367,7 +22375,7 @@ export declare const WmsAppCapabilitiesProtoSchema: z.ZodObject<{
22367
22375
  }[] | undefined;
22368
22376
  }> | undefined;
22369
22377
  } | undefined;
22370
- exchangeRestoreOrderOptions?: {
22378
+ restoreExchangedOrderOptions?: {
22371
22379
  required?: string[] | undefined;
22372
22380
  optional?: string[] | undefined;
22373
22381
  fieldConfigs?: Record<string, {
@@ -22451,7 +22459,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
22451
22459
  }[] | undefined;
22452
22460
  }> | undefined;
22453
22461
  }>>>;
22454
- cancelRequestOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
22462
+ requestCancelOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
22455
22463
  required: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22456
22464
  optional: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22457
22465
  fieldConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodLazy<z.ZodObject<{
@@ -22505,7 +22513,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
22505
22513
  }[] | undefined;
22506
22514
  }> | undefined;
22507
22515
  }>>>;
22508
- cancelRestoreOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
22516
+ restoreCanceledOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
22509
22517
  required: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22510
22518
  optional: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22511
22519
  fieldConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodLazy<z.ZodObject<{
@@ -22559,7 +22567,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
22559
22567
  }[] | undefined;
22560
22568
  }> | undefined;
22561
22569
  }>>>;
22562
- returnRequestOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
22570
+ requestReturnOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
22563
22571
  required: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22564
22572
  optional: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22565
22573
  fieldConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodLazy<z.ZodObject<{
@@ -22613,7 +22621,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
22613
22621
  }[] | undefined;
22614
22622
  }> | undefined;
22615
22623
  }>>>;
22616
- returnRestoreOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
22624
+ restoreReturnedOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
22617
22625
  required: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22618
22626
  optional: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22619
22627
  fieldConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodLazy<z.ZodObject<{
@@ -22667,7 +22675,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
22667
22675
  }[] | undefined;
22668
22676
  }> | undefined;
22669
22677
  }>>>;
22670
- exchangeRequestOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
22678
+ requestExchangeOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
22671
22679
  required: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22672
22680
  optional: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22673
22681
  fieldConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodLazy<z.ZodObject<{
@@ -22721,7 +22729,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
22721
22729
  }[] | undefined;
22722
22730
  }> | undefined;
22723
22731
  }>>>;
22724
- exchangeRestoreOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
22732
+ restoreExchangedOrderOptions: z.ZodOptional<z.ZodLazy<z.ZodObject<{
22725
22733
  required: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22726
22734
  optional: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22727
22735
  fieldConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodLazy<z.ZodObject<{
@@ -22842,7 +22850,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
22842
22850
  }[] | undefined;
22843
22851
  }> | undefined;
22844
22852
  } | undefined;
22845
- cancelRequestOrderOptions?: {
22853
+ requestCancelOrderOptions?: {
22846
22854
  required?: string[] | undefined;
22847
22855
  optional?: string[] | undefined;
22848
22856
  fieldConfigs?: Record<string, {
@@ -22854,7 +22862,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
22854
22862
  }[] | undefined;
22855
22863
  }> | undefined;
22856
22864
  } | undefined;
22857
- cancelRestoreOrderOptions?: {
22865
+ restoreCanceledOrderOptions?: {
22858
22866
  required?: string[] | undefined;
22859
22867
  optional?: string[] | undefined;
22860
22868
  fieldConfigs?: Record<string, {
@@ -22866,7 +22874,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
22866
22874
  }[] | undefined;
22867
22875
  }> | undefined;
22868
22876
  } | undefined;
22869
- returnRequestOrderOptions?: {
22877
+ requestReturnOrderOptions?: {
22870
22878
  required?: string[] | undefined;
22871
22879
  optional?: string[] | undefined;
22872
22880
  fieldConfigs?: Record<string, {
@@ -22878,7 +22886,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
22878
22886
  }[] | undefined;
22879
22887
  }> | undefined;
22880
22888
  } | undefined;
22881
- returnRestoreOrderOptions?: {
22889
+ restoreReturnedOrderOptions?: {
22882
22890
  required?: string[] | undefined;
22883
22891
  optional?: string[] | undefined;
22884
22892
  fieldConfigs?: Record<string, {
@@ -22890,7 +22898,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
22890
22898
  }[] | undefined;
22891
22899
  }> | undefined;
22892
22900
  } | undefined;
22893
- exchangeRequestOrderOptions?: {
22901
+ requestExchangeOrderOptions?: {
22894
22902
  required?: string[] | undefined;
22895
22903
  optional?: string[] | undefined;
22896
22904
  fieldConfigs?: Record<string, {
@@ -22902,7 +22910,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
22902
22910
  }[] | undefined;
22903
22911
  }> | undefined;
22904
22912
  } | undefined;
22905
- exchangeRestoreOrderOptions?: {
22913
+ restoreExchangedOrderOptions?: {
22906
22914
  required?: string[] | undefined;
22907
22915
  optional?: string[] | undefined;
22908
22916
  fieldConfigs?: Record<string, {
@@ -22939,7 +22947,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
22939
22947
  }[] | undefined;
22940
22948
  }> | undefined;
22941
22949
  } | undefined;
22942
- cancelRequestOrderOptions?: {
22950
+ requestCancelOrderOptions?: {
22943
22951
  required?: string[] | undefined;
22944
22952
  optional?: string[] | undefined;
22945
22953
  fieldConfigs?: Record<string, {
@@ -22951,7 +22959,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
22951
22959
  }[] | undefined;
22952
22960
  }> | undefined;
22953
22961
  } | undefined;
22954
- cancelRestoreOrderOptions?: {
22962
+ restoreCanceledOrderOptions?: {
22955
22963
  required?: string[] | undefined;
22956
22964
  optional?: string[] | undefined;
22957
22965
  fieldConfigs?: Record<string, {
@@ -22963,7 +22971,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
22963
22971
  }[] | undefined;
22964
22972
  }> | undefined;
22965
22973
  } | undefined;
22966
- returnRequestOrderOptions?: {
22974
+ requestReturnOrderOptions?: {
22967
22975
  required?: string[] | undefined;
22968
22976
  optional?: string[] | undefined;
22969
22977
  fieldConfigs?: Record<string, {
@@ -22975,7 +22983,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
22975
22983
  }[] | undefined;
22976
22984
  }> | undefined;
22977
22985
  } | undefined;
22978
- returnRestoreOrderOptions?: {
22986
+ restoreReturnedOrderOptions?: {
22979
22987
  required?: string[] | undefined;
22980
22988
  optional?: string[] | undefined;
22981
22989
  fieldConfigs?: Record<string, {
@@ -22987,7 +22995,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
22987
22995
  }[] | undefined;
22988
22996
  }> | undefined;
22989
22997
  } | undefined;
22990
- exchangeRequestOrderOptions?: {
22998
+ requestExchangeOrderOptions?: {
22991
22999
  required?: string[] | undefined;
22992
23000
  optional?: string[] | undefined;
22993
23001
  fieldConfigs?: Record<string, {
@@ -22999,7 +23007,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
22999
23007
  }[] | undefined;
23000
23008
  }> | undefined;
23001
23009
  } | undefined;
23002
- exchangeRestoreOrderOptions?: {
23010
+ restoreExchangedOrderOptions?: {
23003
23011
  required?: string[] | undefined;
23004
23012
  optional?: string[] | undefined;
23005
23013
  fieldConfigs?: Record<string, {
@@ -23038,7 +23046,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
23038
23046
  }[] | undefined;
23039
23047
  }> | undefined;
23040
23048
  } | undefined;
23041
- cancelRequestOrderOptions?: {
23049
+ requestCancelOrderOptions?: {
23042
23050
  required?: string[] | undefined;
23043
23051
  optional?: string[] | undefined;
23044
23052
  fieldConfigs?: Record<string, {
@@ -23050,7 +23058,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
23050
23058
  }[] | undefined;
23051
23059
  }> | undefined;
23052
23060
  } | undefined;
23053
- cancelRestoreOrderOptions?: {
23061
+ restoreCanceledOrderOptions?: {
23054
23062
  required?: string[] | undefined;
23055
23063
  optional?: string[] | undefined;
23056
23064
  fieldConfigs?: Record<string, {
@@ -23062,7 +23070,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
23062
23070
  }[] | undefined;
23063
23071
  }> | undefined;
23064
23072
  } | undefined;
23065
- returnRequestOrderOptions?: {
23073
+ requestReturnOrderOptions?: {
23066
23074
  required?: string[] | undefined;
23067
23075
  optional?: string[] | undefined;
23068
23076
  fieldConfigs?: Record<string, {
@@ -23074,7 +23082,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
23074
23082
  }[] | undefined;
23075
23083
  }> | undefined;
23076
23084
  } | undefined;
23077
- returnRestoreOrderOptions?: {
23085
+ restoreReturnedOrderOptions?: {
23078
23086
  required?: string[] | undefined;
23079
23087
  optional?: string[] | undefined;
23080
23088
  fieldConfigs?: Record<string, {
@@ -23086,7 +23094,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
23086
23094
  }[] | undefined;
23087
23095
  }> | undefined;
23088
23096
  } | undefined;
23089
- exchangeRequestOrderOptions?: {
23097
+ requestExchangeOrderOptions?: {
23090
23098
  required?: string[] | undefined;
23091
23099
  optional?: string[] | undefined;
23092
23100
  fieldConfigs?: Record<string, {
@@ -23098,7 +23106,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
23098
23106
  }[] | undefined;
23099
23107
  }> | undefined;
23100
23108
  } | undefined;
23101
- exchangeRestoreOrderOptions?: {
23109
+ restoreExchangedOrderOptions?: {
23102
23110
  required?: string[] | undefined;
23103
23111
  optional?: string[] | undefined;
23104
23112
  fieldConfigs?: Record<string, {
@@ -23137,7 +23145,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
23137
23145
  }[] | undefined;
23138
23146
  }> | undefined;
23139
23147
  } | undefined;
23140
- cancelRequestOrderOptions?: {
23148
+ requestCancelOrderOptions?: {
23141
23149
  required?: string[] | undefined;
23142
23150
  optional?: string[] | undefined;
23143
23151
  fieldConfigs?: Record<string, {
@@ -23149,7 +23157,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
23149
23157
  }[] | undefined;
23150
23158
  }> | undefined;
23151
23159
  } | undefined;
23152
- cancelRestoreOrderOptions?: {
23160
+ restoreCanceledOrderOptions?: {
23153
23161
  required?: string[] | undefined;
23154
23162
  optional?: string[] | undefined;
23155
23163
  fieldConfigs?: Record<string, {
@@ -23161,7 +23169,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
23161
23169
  }[] | undefined;
23162
23170
  }> | undefined;
23163
23171
  } | undefined;
23164
- returnRequestOrderOptions?: {
23172
+ requestReturnOrderOptions?: {
23165
23173
  required?: string[] | undefined;
23166
23174
  optional?: string[] | undefined;
23167
23175
  fieldConfigs?: Record<string, {
@@ -23173,7 +23181,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
23173
23181
  }[] | undefined;
23174
23182
  }> | undefined;
23175
23183
  } | undefined;
23176
- returnRestoreOrderOptions?: {
23184
+ restoreReturnedOrderOptions?: {
23177
23185
  required?: string[] | undefined;
23178
23186
  optional?: string[] | undefined;
23179
23187
  fieldConfigs?: Record<string, {
@@ -23185,7 +23193,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
23185
23193
  }[] | undefined;
23186
23194
  }> | undefined;
23187
23195
  } | undefined;
23188
- exchangeRequestOrderOptions?: {
23196
+ requestExchangeOrderOptions?: {
23189
23197
  required?: string[] | undefined;
23190
23198
  optional?: string[] | undefined;
23191
23199
  fieldConfigs?: Record<string, {
@@ -23197,7 +23205,7 @@ export declare const WmsGetAppConfigsOutputProtoSchema: z.ZodObject<{
23197
23205
  }[] | undefined;
23198
23206
  }> | undefined;
23199
23207
  } | undefined;
23200
- exchangeRestoreOrderOptions?: {
23208
+ restoreExchangedOrderOptions?: {
23201
23209
  required?: string[] | undefined;
23202
23210
  optional?: string[] | undefined;
23203
23211
  fieldConfigs?: Record<string, {
@@ -27501,4 +27509,58 @@ export declare const OAuthTokenResponseMappingProtoSchema: z.ZodObject<{
27501
27509
  refreshTokenExpiresInPath?: string | undefined;
27502
27510
  }>;
27503
27511
  export type OAuthTokenResponseMappingProto = z.infer<typeof OAuthTokenResponseMappingProtoSchema>;
27512
+ export declare const PollingManagerTargetProtoSchema: z.ZodObject<{
27513
+ channelId: z.ZodOptional<z.ZodString>;
27514
+ managerId: z.ZodOptional<z.ZodString>;
27515
+ }, "strip", z.ZodTypeAny, {
27516
+ channelId?: string | undefined;
27517
+ managerId?: string | undefined;
27518
+ }, {
27519
+ channelId?: string | undefined;
27520
+ managerId?: string | undefined;
27521
+ }>;
27522
+ export type PollingManagerTargetProto = z.infer<typeof PollingManagerTargetProtoSchema>;
27523
+ export declare const PollingGetTargetManagersInputProtoSchema: z.ZodObject<{
27524
+ functionName: z.ZodOptional<z.ZodString>;
27525
+ cursor: z.ZodOptional<z.ZodString>;
27526
+ limit: z.ZodOptional<z.ZodNumber>;
27527
+ }, "strip", z.ZodTypeAny, {
27528
+ functionName?: string | undefined;
27529
+ cursor?: string | undefined;
27530
+ limit?: number | undefined;
27531
+ }, {
27532
+ functionName?: string | undefined;
27533
+ cursor?: string | undefined;
27534
+ limit?: number | undefined;
27535
+ }>;
27536
+ export type PollingGetTargetManagersInputProto = z.infer<typeof PollingGetTargetManagersInputProtoSchema>;
27537
+ export declare const PollingGetTargetManagersOutputProtoSchema: z.ZodObject<{
27538
+ targets: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
27539
+ channelId: z.ZodOptional<z.ZodString>;
27540
+ managerId: z.ZodOptional<z.ZodString>;
27541
+ }, "strip", z.ZodTypeAny, {
27542
+ channelId?: string | undefined;
27543
+ managerId?: string | undefined;
27544
+ }, {
27545
+ channelId?: string | undefined;
27546
+ managerId?: string | undefined;
27547
+ }>>, "many">>;
27548
+ nextCursor: z.ZodOptional<z.ZodString>;
27549
+ hasNextPage: z.ZodOptional<z.ZodBoolean>;
27550
+ }, "strip", z.ZodTypeAny, {
27551
+ nextCursor?: string | undefined;
27552
+ hasNextPage?: boolean | undefined;
27553
+ targets?: {
27554
+ channelId?: string | undefined;
27555
+ managerId?: string | undefined;
27556
+ }[] | undefined;
27557
+ }, {
27558
+ nextCursor?: string | undefined;
27559
+ hasNextPage?: boolean | undefined;
27560
+ targets?: {
27561
+ channelId?: string | undefined;
27562
+ managerId?: string | undefined;
27563
+ }[] | undefined;
27564
+ }>;
27565
+ export type PollingGetTargetManagersOutputProto = z.infer<typeof PollingGetTargetManagersOutputProtoSchema>;
27504
27566
  //# sourceMappingURL=extension.zod.d.ts.map