@flowio/api-internal-sdk 0.0.124 → 0.0.126

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.
@@ -280,6 +280,18 @@ export interface CarrierAccountsGetValidateByIdParameters {
280
280
  organization: string;
281
281
  id: string;
282
282
  }
283
+ export interface CarrierChargeFilesPostParameters {
284
+ body: io.flow.internal.v0.models.CarrierChargeFileForm;
285
+ headers?: $HttpHeaders;
286
+ }
287
+ export interface CarrierChargeFilesGetByIdParameters {
288
+ headers?: $HttpHeaders;
289
+ id: string;
290
+ }
291
+ export interface CarrierChargeFilesDeleteByIdParameters {
292
+ headers?: $HttpHeaders;
293
+ id: string;
294
+ }
283
295
  export interface CatalogSettingsGetParameters {
284
296
  headers?: $HttpHeaders;
285
297
  organization: string;
@@ -307,53 +319,53 @@ export interface ChannelAccountsGetParameters {
307
319
  headers?: $HttpHeaders;
308
320
  channel_id: string;
309
321
  id?: string[];
310
- currency?: string[];
322
+ key?: string[];
311
323
  limit?: number;
312
324
  offset?: number;
313
325
  sort?: string;
314
326
  }
315
- export interface ChannelAccountsGetByCurrencyParameters {
327
+ export interface ChannelAccountsGetByKeyParameters {
316
328
  headers?: $HttpHeaders;
317
329
  channel_id: string;
318
- currency: string;
330
+ key: string;
319
331
  }
320
- export interface ChannelAccountsGetContactsByCurrencyParameters {
332
+ export interface ChannelAccountsGetContactsByKeyParameters {
321
333
  headers?: $HttpHeaders;
322
334
  channel_id: string;
323
- currency: string;
335
+ key: string;
324
336
  id?: string[];
325
337
  email?: string;
326
338
  limit?: number;
327
339
  offset?: number;
328
340
  sort?: string;
329
341
  }
330
- export interface ChannelAccountsPostContactsByCurrencyParameters {
342
+ export interface ChannelAccountsPostContactsByKeyParameters {
331
343
  body: io.flow.internal.v0.models.AccountContactForm;
332
344
  headers?: $HttpHeaders;
333
345
  channel_id: string;
334
- currency: string;
346
+ key: string;
335
347
  }
336
- export interface ChannelAccountsGetContactsByCurrencyAndIdParameters {
348
+ export interface ChannelAccountsGetContactsByKeyAndIdParameters {
337
349
  headers?: $HttpHeaders;
338
350
  channel_id: string;
339
- currency: string;
351
+ key: string;
340
352
  id: string;
341
353
  }
342
- export interface ChannelAccountsDeleteContactsByCurrencyAndIdParameters {
354
+ export interface ChannelAccountsDeleteContactsByKeyAndIdParameters {
343
355
  headers?: $HttpHeaders;
344
356
  channel_id: string;
345
- currency: string;
357
+ key: string;
346
358
  id: string;
347
359
  }
348
- export interface ChannelAccountsGetStatisticsByCurrencyParameters {
360
+ export interface ChannelAccountsGetStatisticsByKeyParameters {
349
361
  headers?: $HttpHeaders;
350
362
  channel_id: string;
351
- currency: string;
363
+ key: string;
352
364
  }
353
- export interface ChannelAccountsGetTransactionsByCurrencyParameters {
365
+ export interface ChannelAccountsGetTransactionsByKeyParameters {
354
366
  headers?: $HttpHeaders;
355
367
  channel_id: string;
356
- currency: string;
368
+ key: string;
357
369
  id?: string[];
358
370
  type?: io.flow.internal.v0.enums.BillingTransactionType;
359
371
  status?: io.flow.internal.v0.enums.BillingTransactionStatus;
@@ -402,7 +414,7 @@ export interface ChannelBillingStatementsGetParameters {
402
414
  channel_id: string;
403
415
  id?: string[];
404
416
  account_id?: string;
405
- currency?: string;
417
+ key?: string;
406
418
  limit?: number;
407
419
  offset?: number;
408
420
  sort?: string;
@@ -1190,73 +1202,66 @@ export interface FlowAccountsGetParameters {
1190
1202
  source_type: string;
1191
1203
  source_id: string;
1192
1204
  id?: string[];
1193
- currency?: string[];
1205
+ key?: string[];
1194
1206
  limit?: number;
1195
1207
  offset?: number;
1196
1208
  sort?: string;
1197
1209
  }
1198
- export interface FlowAccountsGetByCurrencyParameters {
1199
- headers?: $HttpHeaders;
1200
- source_type: string;
1201
- source_id: string;
1202
- currency: string;
1203
- }
1204
- export interface FlowAccountsPutByCurrencyParameters {
1205
- body: io.flow.internal.v0.models.AccountForm;
1210
+ export interface FlowAccountsGetByKeyParameters {
1206
1211
  headers?: $HttpHeaders;
1207
1212
  source_type: string;
1208
1213
  source_id: string;
1209
- currency: string;
1214
+ key: string;
1210
1215
  }
1211
- export interface FlowAccountsDeleteByCurrencyParameters {
1216
+ export interface FlowAccountsDeleteByKeyParameters {
1212
1217
  headers?: $HttpHeaders;
1213
1218
  source_type: string;
1214
1219
  source_id: string;
1215
- currency: string;
1220
+ key: string;
1216
1221
  }
1217
- export interface FlowAccountsGetContactsByCurrencyParameters {
1222
+ export interface FlowAccountsGetContactsByKeyParameters {
1218
1223
  headers?: $HttpHeaders;
1219
1224
  source_type: string;
1220
1225
  source_id: string;
1221
- currency: string;
1226
+ key: string;
1222
1227
  id?: string[];
1223
1228
  email?: string;
1224
1229
  limit?: number;
1225
1230
  offset?: number;
1226
1231
  sort?: string;
1227
1232
  }
1228
- export interface FlowAccountsPostContactsByCurrencyParameters {
1233
+ export interface FlowAccountsPostContactsByKeyParameters {
1229
1234
  body: io.flow.internal.v0.models.AccountContactForm;
1230
1235
  headers?: $HttpHeaders;
1231
1236
  source_type: string;
1232
1237
  source_id: string;
1233
- currency: string;
1238
+ key: string;
1234
1239
  }
1235
- export interface FlowAccountsGetContactsByCurrencyAndIdParameters {
1240
+ export interface FlowAccountsGetContactsByKeyAndIdParameters {
1236
1241
  headers?: $HttpHeaders;
1237
1242
  source_type: string;
1238
1243
  source_id: string;
1239
- currency: string;
1244
+ key: string;
1240
1245
  id: string;
1241
1246
  }
1242
- export interface FlowAccountsDeleteContactsByCurrencyAndIdParameters {
1247
+ export interface FlowAccountsDeleteContactsByKeyAndIdParameters {
1243
1248
  headers?: $HttpHeaders;
1244
1249
  source_type: string;
1245
1250
  source_id: string;
1246
- currency: string;
1251
+ key: string;
1247
1252
  id: string;
1248
1253
  }
1249
- export interface FlowAccountsGetStatisticsByCurrencyParameters {
1254
+ export interface FlowAccountsGetStatisticsByKeyParameters {
1250
1255
  headers?: $HttpHeaders;
1251
1256
  source_type: string;
1252
1257
  source_id: string;
1253
- currency: string;
1258
+ key: string;
1254
1259
  }
1255
- export interface FlowAccountsGetTransactionsByCurrencyParameters {
1260
+ export interface FlowAccountsGetTransactionsByKeyParameters {
1256
1261
  headers?: $HttpHeaders;
1257
1262
  source_type: string;
1258
1263
  source_id: string;
1259
- currency: string;
1264
+ key: string;
1260
1265
  id?: string[];
1261
1266
  type?: io.flow.internal.v0.enums.BillingTransactionType;
1262
1267
  status?: io.flow.internal.v0.enums.BillingTransactionStatus;
@@ -1277,18 +1282,18 @@ export interface FlowAccountsGetTransactionsByCurrencyParameters {
1277
1282
  offset?: number;
1278
1283
  sort?: string;
1279
1284
  }
1280
- export interface FlowAccountsPostTransactionsAndManualByCurrencyParameters {
1285
+ export interface FlowAccountsPostTransactionsAndManualByKeyParameters {
1281
1286
  body: io.flow.internal.v0.models.ManualTransactionForm;
1282
1287
  headers?: $HttpHeaders;
1283
1288
  source_type: string;
1284
1289
  source_id: string;
1285
- currency: string;
1290
+ key: string;
1286
1291
  }
1287
- export interface FlowAccountsDeleteTransactionsAndManualByCurrencyAndIdParameters {
1292
+ export interface FlowAccountsDeleteTransactionsAndManualByKeyAndIdParameters {
1288
1293
  headers?: $HttpHeaders;
1289
1294
  source_type: string;
1290
1295
  source_id: string;
1291
- currency: string;
1296
+ key: string;
1292
1297
  id: string;
1293
1298
  }
1294
1299
  export interface FlowChannelOrganizationsGetParameters {
@@ -1780,6 +1785,10 @@ export interface OnboardingStatesPutBlockParameters {
1780
1785
  headers?: $HttpHeaders;
1781
1786
  organization: string;
1782
1787
  }
1788
+ export interface OnboardingStatesPutRecalculateParameters {
1789
+ headers?: $HttpHeaders;
1790
+ organization: string;
1791
+ }
1783
1792
  export interface OnboardingStatesPutTransitionAndReplaceByIdParameters {
1784
1793
  body: io.flow.internal.v0.models.OnboardingStateForm;
1785
1794
  headers?: $HttpHeaders;
@@ -2635,6 +2644,30 @@ export interface OrderCancellationsDeleteByIdParameters {
2635
2644
  headers?: $HttpHeaders;
2636
2645
  id: string;
2637
2646
  }
2647
+ export interface OrderCombinedShipmentsGetParameters {
2648
+ headers?: $HttpHeaders;
2649
+ organization: string;
2650
+ id?: string[];
2651
+ order_number?: string[];
2652
+ limit?: number;
2653
+ offset?: number;
2654
+ sort?: string;
2655
+ }
2656
+ export interface OrderCombinedShipmentsPostParameters {
2657
+ body: io.flow.internal.v0.models.OrderCombinedShipmentForm;
2658
+ headers?: $HttpHeaders;
2659
+ organization: string;
2660
+ }
2661
+ export interface OrderCombinedShipmentsGetByIdParameters {
2662
+ headers?: $HttpHeaders;
2663
+ organization: string;
2664
+ id: string;
2665
+ }
2666
+ export interface OrderCombinedShipmentsDeleteByIdParameters {
2667
+ headers?: $HttpHeaders;
2668
+ organization: string;
2669
+ id: string;
2670
+ }
2638
2671
  export interface OrderDetailsGetParameters {
2639
2672
  headers?: $HttpHeaders;
2640
2673
  organization: string;
@@ -2712,53 +2745,53 @@ export interface OrganizationAccountsGetParameters {
2712
2745
  headers?: $HttpHeaders;
2713
2746
  organization: string;
2714
2747
  id?: string[];
2715
- currency?: string[];
2748
+ key?: string[];
2716
2749
  limit?: number;
2717
2750
  offset?: number;
2718
2751
  sort?: string;
2719
2752
  }
2720
- export interface OrganizationAccountsGetByCurrencyParameters {
2753
+ export interface OrganizationAccountsGetByKeyParameters {
2721
2754
  headers?: $HttpHeaders;
2722
2755
  organization: string;
2723
- currency: string;
2756
+ key: string;
2724
2757
  }
2725
- export interface OrganizationAccountsGetContactsByCurrencyParameters {
2758
+ export interface OrganizationAccountsGetContactsByKeyParameters {
2726
2759
  headers?: $HttpHeaders;
2727
2760
  organization: string;
2728
- currency: string;
2761
+ key: string;
2729
2762
  id?: string[];
2730
2763
  email?: string;
2731
2764
  limit?: number;
2732
2765
  offset?: number;
2733
2766
  sort?: string;
2734
2767
  }
2735
- export interface OrganizationAccountsPostContactsByCurrencyParameters {
2768
+ export interface OrganizationAccountsPostContactsByKeyParameters {
2736
2769
  body: io.flow.internal.v0.models.AccountContactForm;
2737
2770
  headers?: $HttpHeaders;
2738
2771
  organization: string;
2739
- currency: string;
2772
+ key: string;
2740
2773
  }
2741
- export interface OrganizationAccountsGetContactsByCurrencyAndIdParameters {
2774
+ export interface OrganizationAccountsGetContactsByKeyAndIdParameters {
2742
2775
  headers?: $HttpHeaders;
2743
2776
  organization: string;
2744
- currency: string;
2777
+ key: string;
2745
2778
  id: string;
2746
2779
  }
2747
- export interface OrganizationAccountsDeleteContactsByCurrencyAndIdParameters {
2780
+ export interface OrganizationAccountsDeleteContactsByKeyAndIdParameters {
2748
2781
  headers?: $HttpHeaders;
2749
2782
  organization: string;
2750
- currency: string;
2783
+ key: string;
2751
2784
  id: string;
2752
2785
  }
2753
- export interface OrganizationAccountsGetStatisticsByCurrencyParameters {
2786
+ export interface OrganizationAccountsGetStatisticsByKeyParameters {
2754
2787
  headers?: $HttpHeaders;
2755
2788
  organization: string;
2756
- currency: string;
2789
+ key: string;
2757
2790
  }
2758
- export interface OrganizationAccountsGetTransactionsByCurrencyParameters {
2791
+ export interface OrganizationAccountsGetTransactionsByKeyParameters {
2759
2792
  headers?: $HttpHeaders;
2760
2793
  organization: string;
2761
- currency: string;
2794
+ key: string;
2762
2795
  id?: string[];
2763
2796
  type?: io.flow.internal.v0.enums.BillingTransactionType;
2764
2797
  status?: io.flow.internal.v0.enums.BillingTransactionStatus;
@@ -2784,7 +2817,7 @@ export interface OrganizationBillingStatementsGetParameters {
2784
2817
  organization: string;
2785
2818
  id?: string[];
2786
2819
  account_id?: string;
2787
- currency?: string;
2820
+ key?: string;
2788
2821
  limit?: number;
2789
2822
  offset?: number;
2790
2823
  sort?: string;
@@ -4073,17 +4106,6 @@ export interface ViesResultsGetByNumberParameters {
4073
4106
  number: string;
4074
4107
  name?: string;
4075
4108
  }
4076
- export interface WashCarrierActualFilesPostParameters {
4077
- body: io.flow.internal.v0.models.WashCarrierActualFileForm;
4078
- headers?: $HttpHeaders;
4079
- }
4080
- export interface WashCarrierActualFilesGetByIdParameters {
4081
- headers?: $HttpHeaders;
4082
- id: string;
4083
- }
4084
- export interface WashExportRequestsPostParameters {
4085
- headers?: $HttpHeaders;
4086
- }
4087
4109
  export interface WebhooksPostParameters {
4088
4110
  body: any;
4089
4111
  headers?: $HttpHeaders;
@@ -4120,19 +4142,22 @@ export declare type CarrierAccountsGetByIdResponse = $HttpOk<io.flow.internal.v0
4120
4142
  export declare type CarrierAccountsPutByIdResponse = $HttpOk<io.flow.internal.v0.models.CarrierAccount> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4121
4143
  export declare type CarrierAccountsDeleteByIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4122
4144
  export declare type CarrierAccountsGetValidateByIdResponse = $HttpOk<io.flow.internal.v0.models.CarrierAccountValidation> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError> | $HttpTooManyRequests<io.flow.error.v0.models.GenericError>;
4145
+ export declare type CarrierChargeFilesPostResponse = $HttpCreated<io.flow.internal.v0.models.CarrierChargeFile> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4146
+ export declare type CarrierChargeFilesGetByIdResponse = $HttpOk<io.flow.internal.v0.models.CarrierChargeFile> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4147
+ export declare type CarrierChargeFilesDeleteByIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
4123
4148
  export declare type CatalogSettingsGetResponse = $HttpOk<io.flow.internal.v0.models.CatalogSettings> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
4124
4149
  export declare type CatalogSettingsPutResponse = $HttpOk<io.flow.internal.v0.models.CatalogSettings> | $HttpCreated<io.flow.internal.v0.models.CatalogSettings> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4125
4150
  export declare type CenterDefaultsGetResponse = $HttpOk<io.flow.internal.v0.models.CenterDefaults> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
4126
4151
  export declare type CenterDefaultsPutResponse = $HttpOk<io.flow.internal.v0.models.CenterDefaults> | $HttpCreated<io.flow.internal.v0.models.CenterDefaults> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4127
4152
  export declare type CenterQueryBuildersPostResponse = $HttpCreated<io.flow.query.builder.v0.models.QueryBuilder> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4128
4153
  export declare type ChannelAccountsGetResponse = $HttpOk<io.flow.internal.v0.models.ChannelAccount[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4129
- export declare type ChannelAccountsGetByCurrencyResponse = $HttpOk<io.flow.internal.v0.models.ChannelAccount> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4130
- export declare type ChannelAccountsGetContactsByCurrencyResponse = $HttpOk<io.flow.internal.v0.models.AccountContact[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4131
- export declare type ChannelAccountsPostContactsByCurrencyResponse = $HttpCreated<io.flow.internal.v0.models.AccountContact> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4132
- export declare type ChannelAccountsGetContactsByCurrencyAndIdResponse = $HttpOk<io.flow.internal.v0.models.AccountContact> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4133
- export declare type ChannelAccountsDeleteContactsByCurrencyAndIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4134
- export declare type ChannelAccountsGetStatisticsByCurrencyResponse = $HttpOk<io.flow.internal.v0.models.AccountStatistics> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4135
- export declare type ChannelAccountsGetTransactionsByCurrencyResponse = $HttpOk<io.flow.internal.v0.models.BillingTransaction[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4154
+ export declare type ChannelAccountsGetByKeyResponse = $HttpOk<io.flow.internal.v0.models.ChannelAccount> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4155
+ export declare type ChannelAccountsGetContactsByKeyResponse = $HttpOk<io.flow.internal.v0.models.AccountContact[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4156
+ export declare type ChannelAccountsPostContactsByKeyResponse = $HttpCreated<io.flow.internal.v0.models.AccountContact> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4157
+ export declare type ChannelAccountsGetContactsByKeyAndIdResponse = $HttpOk<io.flow.internal.v0.models.AccountContact> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4158
+ export declare type ChannelAccountsDeleteContactsByKeyAndIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4159
+ export declare type ChannelAccountsGetStatisticsByKeyResponse = $HttpOk<io.flow.internal.v0.models.AccountStatistics> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4160
+ export declare type ChannelAccountsGetTransactionsByKeyResponse = $HttpOk<io.flow.internal.v0.models.BillingTransaction[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4136
4161
  export declare type ChannelBilledTransactionPairsGetResponse = $HttpOk<io.flow.internal.v0.models.ChannelBilledTransactionPair[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4137
4162
  export declare type ChannelBilledTransactionPairsGetByKeyResponse = $HttpOk<io.flow.internal.v0.models.ChannelBilledTransactionPair> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
4138
4163
  export declare type ChannelBilledTransactionPairsPutByKeyResponse = $HttpNotFound<undefined> | $HttpCreated<io.flow.internal.v0.models.ChannelBilledTransactionPair> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError> | $HttpUnauthorized<undefined> | $HttpOk<io.flow.internal.v0.models.ChannelBilledTransactionPair>;
@@ -4271,17 +4296,16 @@ export declare type FinancialMerchantCategoriesGetResponse = $HttpOk<io.flow.int
4271
4296
  export declare type FinancialReportingStatementsGetByStatementNumberResponse = $HttpOk<io.flow.internal.v0.models.FinancialReportingStatement> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4272
4297
  export declare type FinancialReportingStatementsPostByStatementNumberResponse = $HttpOk<io.flow.internal.v0.models.FinancialReportingStatement> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4273
4298
  export declare type FlowAccountsGetResponse = $HttpOk<io.flow.internal.v0.models.FlowAccount[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4274
- export declare type FlowAccountsGetByCurrencyResponse = $HttpOk<io.flow.internal.v0.models.FlowAccount> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4275
- export declare type FlowAccountsPutByCurrencyResponse = $HttpNotFound<undefined> | $HttpCreated<io.flow.internal.v0.models.FlowAccount> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError> | $HttpUnauthorized<undefined> | $HttpOk<io.flow.internal.v0.models.FlowAccount>;
4276
- export declare type FlowAccountsDeleteByCurrencyResponse = $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError> | $HttpConflict<io.flow.error.v0.models.GenericError> | $HttpNoContent<undefined> | $HttpUnauthorized<undefined>;
4277
- export declare type FlowAccountsGetContactsByCurrencyResponse = $HttpOk<io.flow.internal.v0.models.AccountContact[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4278
- export declare type FlowAccountsPostContactsByCurrencyResponse = $HttpCreated<io.flow.internal.v0.models.AccountContact> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4279
- export declare type FlowAccountsGetContactsByCurrencyAndIdResponse = $HttpOk<io.flow.internal.v0.models.AccountContact> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4280
- export declare type FlowAccountsDeleteContactsByCurrencyAndIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4281
- export declare type FlowAccountsGetStatisticsByCurrencyResponse = $HttpOk<io.flow.internal.v0.models.AccountStatistics> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4282
- export declare type FlowAccountsGetTransactionsByCurrencyResponse = $HttpOk<io.flow.internal.v0.models.BillingTransaction[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4283
- export declare type FlowAccountsPostTransactionsAndManualByCurrencyResponse = $HttpCreated<io.flow.internal.v0.models.ManualTransaction> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4284
- export declare type FlowAccountsDeleteTransactionsAndManualByCurrencyAndIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4299
+ export declare type FlowAccountsGetByKeyResponse = $HttpOk<io.flow.internal.v0.models.FlowAccount> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4300
+ export declare type FlowAccountsDeleteByKeyResponse = $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError> | $HttpConflict<io.flow.error.v0.models.GenericError> | $HttpNoContent<undefined> | $HttpUnauthorized<undefined>;
4301
+ export declare type FlowAccountsGetContactsByKeyResponse = $HttpOk<io.flow.internal.v0.models.AccountContact[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4302
+ export declare type FlowAccountsPostContactsByKeyResponse = $HttpCreated<io.flow.internal.v0.models.AccountContact> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4303
+ export declare type FlowAccountsGetContactsByKeyAndIdResponse = $HttpOk<io.flow.internal.v0.models.AccountContact> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4304
+ export declare type FlowAccountsDeleteContactsByKeyAndIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4305
+ export declare type FlowAccountsGetStatisticsByKeyResponse = $HttpOk<io.flow.internal.v0.models.AccountStatistics> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4306
+ export declare type FlowAccountsGetTransactionsByKeyResponse = $HttpOk<io.flow.internal.v0.models.BillingTransaction[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4307
+ export declare type FlowAccountsPostTransactionsAndManualByKeyResponse = $HttpCreated<io.flow.internal.v0.models.ManualTransaction> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4308
+ export declare type FlowAccountsDeleteTransactionsAndManualByKeyAndIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4285
4309
  export declare type FlowChannelOrganizationsGetResponse = $HttpOk<io.flow.channel.v0.models.ChannelOrganization[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4286
4310
  export declare type FlowLabProjectsGetResponse = $HttpOk<io.flow.internal.v0.models.FlowLabProject[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4287
4311
  export declare type FlowLabProjectsPostResponse = $HttpCreated<io.flow.internal.v0.models.FlowLabProject> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
@@ -4368,6 +4392,7 @@ export declare type UltimateBeneficiaryOwnersPutResponse = $HttpOk<io.flow.merch
4368
4392
  export declare type OrderManagementEventsPostReplayByOrderLifecycleEventResponse = $HttpOk<io.flow.order.management.event.v0.unions.OrderManagementEvent> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4369
4393
  export declare type OnboardingStatesPutResponse = $HttpCreated<io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4370
4394
  export declare type OnboardingStatesPutBlockResponse = $HttpCreated<io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4395
+ export declare type OnboardingStatesPutRecalculateResponse = $HttpCreated<io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4371
4396
  export declare type OnboardingStatesPutTransitionAndReplaceByIdResponse = $HttpOk<io.flow.internal.v0.models.OrganizationOnboardingStateAdjustmentResult> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4372
4397
  export declare type OnboardingStatesDeleteTransitionByIdResponse = $HttpOk<io.flow.internal.v0.models.OrganizationOnboardingStateAdjustmentResult> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4373
4398
  export declare type OnboardingStatesPutTransitionsAndDeleteResponse = $HttpOk<io.flow.internal.v0.models.OrganizationOnboardingStateAdjustmentResult> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
@@ -4515,6 +4540,10 @@ export declare type OrderCancellationsGetResponse = $HttpOk<io.flow.internal.v0.
4515
4540
  export declare type OrderCancellationsPutOrganizationAndOrderByOrganizationIdAndNumberResponse = $HttpOk<io.flow.internal.v0.models.OrderCancellation> | $HttpCreated<io.flow.internal.v0.models.OrderCancellation> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4516
4541
  export declare type OrderCancellationsGetByIdResponse = $HttpOk<io.flow.internal.v0.models.OrderCancellation> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
4517
4542
  export declare type OrderCancellationsDeleteByIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
4543
+ export declare type OrderCombinedShipmentsGetResponse = $HttpOk<io.flow.internal.v0.models.OrderCombinedShipment[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4544
+ export declare type OrderCombinedShipmentsPostResponse = $HttpOk<io.flow.internal.v0.models.OrderCombinedShipment> | $HttpCreated<io.flow.internal.v0.models.OrderCombinedShipment> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4545
+ export declare type OrderCombinedShipmentsGetByIdResponse = $HttpOk<io.flow.internal.v0.models.OrderCombinedShipment> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
4546
+ export declare type OrderCombinedShipmentsDeleteByIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4518
4547
  export declare type OrderDetailsGetResponse = $HttpOk<io.flow.internal.v0.models.OrderDetail[]> | $HttpUnauthorized<undefined>;
4519
4548
  export declare type OrderDetailsGetByNumberResponse = $HttpOk<io.flow.internal.v0.models.OrderDetail> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
4520
4549
  export declare type OrderDetailsGetNotesByNumberResponse = $HttpOk<io.flow.internal.v0.models.OrderNote[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
@@ -4526,13 +4555,13 @@ export declare type OrderPaymentAuthorizationsPostResponse = $HttpCreated<io.flo
4526
4555
  export declare type OrderRevenueRegionChartsGetResponse = $HttpOk<io.flow.internal.v0.models.OrderRevenueRegionChart> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
4527
4556
  export declare type OrderRevenueTimelineChartsGetResponse = $HttpOk<io.flow.internal.v0.models.OrderRevenueTimelineChart> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
4528
4557
  export declare type OrganizationAccountsGetResponse = $HttpOk<io.flow.internal.v0.models.OrganizationAccount[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4529
- export declare type OrganizationAccountsGetByCurrencyResponse = $HttpOk<io.flow.internal.v0.models.OrganizationAccount> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4530
- export declare type OrganizationAccountsGetContactsByCurrencyResponse = $HttpOk<io.flow.internal.v0.models.AccountContact[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4531
- export declare type OrganizationAccountsPostContactsByCurrencyResponse = $HttpCreated<io.flow.internal.v0.models.AccountContact> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4532
- export declare type OrganizationAccountsGetContactsByCurrencyAndIdResponse = $HttpOk<io.flow.internal.v0.models.AccountContact> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4533
- export declare type OrganizationAccountsDeleteContactsByCurrencyAndIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4534
- export declare type OrganizationAccountsGetStatisticsByCurrencyResponse = $HttpOk<io.flow.internal.v0.models.AccountStatistics> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4535
- export declare type OrganizationAccountsGetTransactionsByCurrencyResponse = $HttpOk<io.flow.internal.v0.models.BillingTransaction[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4558
+ export declare type OrganizationAccountsGetByKeyResponse = $HttpOk<io.flow.internal.v0.models.OrganizationAccount> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4559
+ export declare type OrganizationAccountsGetContactsByKeyResponse = $HttpOk<io.flow.internal.v0.models.AccountContact[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4560
+ export declare type OrganizationAccountsPostContactsByKeyResponse = $HttpCreated<io.flow.internal.v0.models.AccountContact> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4561
+ export declare type OrganizationAccountsGetContactsByKeyAndIdResponse = $HttpOk<io.flow.internal.v0.models.AccountContact> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4562
+ export declare type OrganizationAccountsDeleteContactsByKeyAndIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4563
+ export declare type OrganizationAccountsGetStatisticsByKeyResponse = $HttpOk<io.flow.internal.v0.models.AccountStatistics> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4564
+ export declare type OrganizationAccountsGetTransactionsByKeyResponse = $HttpOk<io.flow.internal.v0.models.BillingTransaction[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4536
4565
  export declare type OrganizationBillingStatementsGetResponse = $HttpOk<io.flow.internal.v0.models.OrganizationBillingStatement[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4537
4566
  export declare type OrganizationBillingStatementsGetByIdResponse = $HttpOk<io.flow.internal.v0.models.OrganizationBillingStatement> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
4538
4567
  export declare type OrganizationBillingStatementsDeleteByIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
@@ -4763,9 +4792,6 @@ export declare type V2CheckoutsGetOrderAndViewsByIdResponse = $HttpOk<io.flow.in
4763
4792
  export declare type V2CheckoutsGetResponseByIdResponse = $HttpOk<io.flow.internal.v0.models.CheckoutGetResponseSuccess> | $HttpNotFound<undefined>;
4764
4793
  export declare type ViesResultsGetResponse = $HttpOk<io.flow.internal.v0.models.ViesResult[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4765
4794
  export declare type ViesResultsGetByNumberResponse = $HttpOk<io.flow.internal.v0.models.ViesResult> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4766
- export declare type WashCarrierActualFilesPostResponse = $HttpCreated<io.flow.internal.v0.models.WashCarrierActualFile> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4767
- export declare type WashCarrierActualFilesGetByIdResponse = $HttpOk<io.flow.internal.v0.models.WashCarrierActualFile> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
4768
- export declare type WashExportRequestsPostResponse = $HttpCreated<io.flow.internal.v0.models.WashExportRequest> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4769
4795
  export declare type WebhooksPostResponse = $HttpOk<string> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
4770
4796
  export declare class AddressConfigurationSettingsResource extends $Resource {
4771
4797
  get(params: AddressConfigurationSettingsGetParameters): Promise<AddressConfigurationSettingsGetResponse>;
@@ -4824,6 +4850,11 @@ export declare class CarrierAccountsResource extends $Resource {
4824
4850
  deleteById(params: CarrierAccountsDeleteByIdParameters): Promise<CarrierAccountsDeleteByIdResponse>;
4825
4851
  getValidateById(params: CarrierAccountsGetValidateByIdParameters): Promise<CarrierAccountsGetValidateByIdResponse>;
4826
4852
  }
4853
+ export declare class CarrierChargeFilesResource extends $Resource {
4854
+ post(params: CarrierChargeFilesPostParameters): Promise<CarrierChargeFilesPostResponse>;
4855
+ getById(params: CarrierChargeFilesGetByIdParameters): Promise<CarrierChargeFilesGetByIdResponse>;
4856
+ deleteById(params: CarrierChargeFilesDeleteByIdParameters): Promise<CarrierChargeFilesDeleteByIdResponse>;
4857
+ }
4827
4858
  export declare class CatalogSettingsResource extends $Resource {
4828
4859
  get(params: CatalogSettingsGetParameters): Promise<CatalogSettingsGetResponse>;
4829
4860
  put(params: CatalogSettingsPutParameters): Promise<CatalogSettingsPutResponse>;
@@ -4837,13 +4868,13 @@ export declare class CenterQueryBuildersResource extends $Resource {
4837
4868
  }
4838
4869
  export declare class ChannelAccountsResource extends $Resource {
4839
4870
  get(params: ChannelAccountsGetParameters): Promise<ChannelAccountsGetResponse>;
4840
- getByCurrency(params: ChannelAccountsGetByCurrencyParameters): Promise<ChannelAccountsGetByCurrencyResponse>;
4841
- getContactsByCurrency(params: ChannelAccountsGetContactsByCurrencyParameters): Promise<ChannelAccountsGetContactsByCurrencyResponse>;
4842
- postContactsByCurrency(params: ChannelAccountsPostContactsByCurrencyParameters): Promise<ChannelAccountsPostContactsByCurrencyResponse>;
4843
- getContactsByCurrencyAndId(params: ChannelAccountsGetContactsByCurrencyAndIdParameters): Promise<ChannelAccountsGetContactsByCurrencyAndIdResponse>;
4844
- deleteContactsByCurrencyAndId(params: ChannelAccountsDeleteContactsByCurrencyAndIdParameters): Promise<ChannelAccountsDeleteContactsByCurrencyAndIdResponse>;
4845
- getStatisticsByCurrency(params: ChannelAccountsGetStatisticsByCurrencyParameters): Promise<ChannelAccountsGetStatisticsByCurrencyResponse>;
4846
- getTransactionsByCurrency(params: ChannelAccountsGetTransactionsByCurrencyParameters): Promise<ChannelAccountsGetTransactionsByCurrencyResponse>;
4871
+ getByKey(params: ChannelAccountsGetByKeyParameters): Promise<ChannelAccountsGetByKeyResponse>;
4872
+ getContactsByKey(params: ChannelAccountsGetContactsByKeyParameters): Promise<ChannelAccountsGetContactsByKeyResponse>;
4873
+ postContactsByKey(params: ChannelAccountsPostContactsByKeyParameters): Promise<ChannelAccountsPostContactsByKeyResponse>;
4874
+ getContactsByKeyAndId(params: ChannelAccountsGetContactsByKeyAndIdParameters): Promise<ChannelAccountsGetContactsByKeyAndIdResponse>;
4875
+ deleteContactsByKeyAndId(params: ChannelAccountsDeleteContactsByKeyAndIdParameters): Promise<ChannelAccountsDeleteContactsByKeyAndIdResponse>;
4876
+ getStatisticsByKey(params: ChannelAccountsGetStatisticsByKeyParameters): Promise<ChannelAccountsGetStatisticsByKeyResponse>;
4877
+ getTransactionsByKey(params: ChannelAccountsGetTransactionsByKeyParameters): Promise<ChannelAccountsGetTransactionsByKeyResponse>;
4847
4878
  }
4848
4879
  export declare class ChannelBilledTransactionPairsResource extends $Resource {
4849
4880
  get(params: ChannelBilledTransactionPairsGetParameters): Promise<ChannelBilledTransactionPairsGetResponse>;
@@ -5092,17 +5123,16 @@ export declare class FinancialReportingStatementsResource extends $Resource {
5092
5123
  }
5093
5124
  export declare class FlowAccountsResource extends $Resource {
5094
5125
  get(params: FlowAccountsGetParameters): Promise<FlowAccountsGetResponse>;
5095
- getByCurrency(params: FlowAccountsGetByCurrencyParameters): Promise<FlowAccountsGetByCurrencyResponse>;
5096
- putByCurrency(params: FlowAccountsPutByCurrencyParameters): Promise<FlowAccountsPutByCurrencyResponse>;
5097
- deleteByCurrency(params: FlowAccountsDeleteByCurrencyParameters): Promise<FlowAccountsDeleteByCurrencyResponse>;
5098
- getContactsByCurrency(params: FlowAccountsGetContactsByCurrencyParameters): Promise<FlowAccountsGetContactsByCurrencyResponse>;
5099
- postContactsByCurrency(params: FlowAccountsPostContactsByCurrencyParameters): Promise<FlowAccountsPostContactsByCurrencyResponse>;
5100
- getContactsByCurrencyAndId(params: FlowAccountsGetContactsByCurrencyAndIdParameters): Promise<FlowAccountsGetContactsByCurrencyAndIdResponse>;
5101
- deleteContactsByCurrencyAndId(params: FlowAccountsDeleteContactsByCurrencyAndIdParameters): Promise<FlowAccountsDeleteContactsByCurrencyAndIdResponse>;
5102
- getStatisticsByCurrency(params: FlowAccountsGetStatisticsByCurrencyParameters): Promise<FlowAccountsGetStatisticsByCurrencyResponse>;
5103
- getTransactionsByCurrency(params: FlowAccountsGetTransactionsByCurrencyParameters): Promise<FlowAccountsGetTransactionsByCurrencyResponse>;
5104
- postTransactionsAndManualByCurrency(params: FlowAccountsPostTransactionsAndManualByCurrencyParameters): Promise<FlowAccountsPostTransactionsAndManualByCurrencyResponse>;
5105
- deleteTransactionsAndManualByCurrencyAndId(params: FlowAccountsDeleteTransactionsAndManualByCurrencyAndIdParameters): Promise<FlowAccountsDeleteTransactionsAndManualByCurrencyAndIdResponse>;
5126
+ getByKey(params: FlowAccountsGetByKeyParameters): Promise<FlowAccountsGetByKeyResponse>;
5127
+ deleteByKey(params: FlowAccountsDeleteByKeyParameters): Promise<FlowAccountsDeleteByKeyResponse>;
5128
+ getContactsByKey(params: FlowAccountsGetContactsByKeyParameters): Promise<FlowAccountsGetContactsByKeyResponse>;
5129
+ postContactsByKey(params: FlowAccountsPostContactsByKeyParameters): Promise<FlowAccountsPostContactsByKeyResponse>;
5130
+ getContactsByKeyAndId(params: FlowAccountsGetContactsByKeyAndIdParameters): Promise<FlowAccountsGetContactsByKeyAndIdResponse>;
5131
+ deleteContactsByKeyAndId(params: FlowAccountsDeleteContactsByKeyAndIdParameters): Promise<FlowAccountsDeleteContactsByKeyAndIdResponse>;
5132
+ getStatisticsByKey(params: FlowAccountsGetStatisticsByKeyParameters): Promise<FlowAccountsGetStatisticsByKeyResponse>;
5133
+ getTransactionsByKey(params: FlowAccountsGetTransactionsByKeyParameters): Promise<FlowAccountsGetTransactionsByKeyResponse>;
5134
+ postTransactionsAndManualByKey(params: FlowAccountsPostTransactionsAndManualByKeyParameters): Promise<FlowAccountsPostTransactionsAndManualByKeyResponse>;
5135
+ deleteTransactionsAndManualByKeyAndId(params: FlowAccountsDeleteTransactionsAndManualByKeyAndIdParameters): Promise<FlowAccountsDeleteTransactionsAndManualByKeyAndIdResponse>;
5106
5136
  }
5107
5137
  export declare class FlowChannelOrganizationsResource extends $Resource {
5108
5138
  get(params: FlowChannelOrganizationsGetParameters): Promise<FlowChannelOrganizationsGetResponse>;
@@ -5263,6 +5293,7 @@ export declare class OrderManagementEventsResource extends $Resource {
5263
5293
  export declare class OnboardingStatesResource extends $Resource {
5264
5294
  put(params: OnboardingStatesPutParameters): Promise<OnboardingStatesPutResponse>;
5265
5295
  putBlock(params: OnboardingStatesPutBlockParameters): Promise<OnboardingStatesPutBlockResponse>;
5296
+ putRecalculate(params: OnboardingStatesPutRecalculateParameters): Promise<OnboardingStatesPutRecalculateResponse>;
5266
5297
  putTransitionAndReplaceById(params: OnboardingStatesPutTransitionAndReplaceByIdParameters): Promise<OnboardingStatesPutTransitionAndReplaceByIdResponse>;
5267
5298
  deleteTransitionById(params: OnboardingStatesDeleteTransitionByIdParameters): Promise<OnboardingStatesDeleteTransitionByIdResponse>;
5268
5299
  putTransitionsAndDelete(params: OnboardingStatesPutTransitionsAndDeleteParameters): Promise<OnboardingStatesPutTransitionsAndDeleteResponse>;
@@ -5533,6 +5564,12 @@ export declare class OrderCancellationsResource extends $Resource {
5533
5564
  getById(params: OrderCancellationsGetByIdParameters): Promise<OrderCancellationsGetByIdResponse>;
5534
5565
  deleteById(params: OrderCancellationsDeleteByIdParameters): Promise<OrderCancellationsDeleteByIdResponse>;
5535
5566
  }
5567
+ export declare class OrderCombinedShipmentsResource extends $Resource {
5568
+ get(params: OrderCombinedShipmentsGetParameters): Promise<OrderCombinedShipmentsGetResponse>;
5569
+ post(params: OrderCombinedShipmentsPostParameters): Promise<OrderCombinedShipmentsPostResponse>;
5570
+ getById(params: OrderCombinedShipmentsGetByIdParameters): Promise<OrderCombinedShipmentsGetByIdResponse>;
5571
+ deleteById(params: OrderCombinedShipmentsDeleteByIdParameters): Promise<OrderCombinedShipmentsDeleteByIdResponse>;
5572
+ }
5536
5573
  export declare class OrderDetailsResource extends $Resource {
5537
5574
  get(params: OrderDetailsGetParameters): Promise<OrderDetailsGetResponse>;
5538
5575
  getByNumber(params: OrderDetailsGetByNumberParameters): Promise<OrderDetailsGetByNumberResponse>;
@@ -5553,13 +5590,13 @@ export declare class OrderRevenueTimelineChartsResource extends $Resource {
5553
5590
  }
5554
5591
  export declare class OrganizationAccountsResource extends $Resource {
5555
5592
  get(params: OrganizationAccountsGetParameters): Promise<OrganizationAccountsGetResponse>;
5556
- getByCurrency(params: OrganizationAccountsGetByCurrencyParameters): Promise<OrganizationAccountsGetByCurrencyResponse>;
5557
- getContactsByCurrency(params: OrganizationAccountsGetContactsByCurrencyParameters): Promise<OrganizationAccountsGetContactsByCurrencyResponse>;
5558
- postContactsByCurrency(params: OrganizationAccountsPostContactsByCurrencyParameters): Promise<OrganizationAccountsPostContactsByCurrencyResponse>;
5559
- getContactsByCurrencyAndId(params: OrganizationAccountsGetContactsByCurrencyAndIdParameters): Promise<OrganizationAccountsGetContactsByCurrencyAndIdResponse>;
5560
- deleteContactsByCurrencyAndId(params: OrganizationAccountsDeleteContactsByCurrencyAndIdParameters): Promise<OrganizationAccountsDeleteContactsByCurrencyAndIdResponse>;
5561
- getStatisticsByCurrency(params: OrganizationAccountsGetStatisticsByCurrencyParameters): Promise<OrganizationAccountsGetStatisticsByCurrencyResponse>;
5562
- getTransactionsByCurrency(params: OrganizationAccountsGetTransactionsByCurrencyParameters): Promise<OrganizationAccountsGetTransactionsByCurrencyResponse>;
5593
+ getByKey(params: OrganizationAccountsGetByKeyParameters): Promise<OrganizationAccountsGetByKeyResponse>;
5594
+ getContactsByKey(params: OrganizationAccountsGetContactsByKeyParameters): Promise<OrganizationAccountsGetContactsByKeyResponse>;
5595
+ postContactsByKey(params: OrganizationAccountsPostContactsByKeyParameters): Promise<OrganizationAccountsPostContactsByKeyResponse>;
5596
+ getContactsByKeyAndId(params: OrganizationAccountsGetContactsByKeyAndIdParameters): Promise<OrganizationAccountsGetContactsByKeyAndIdResponse>;
5597
+ deleteContactsByKeyAndId(params: OrganizationAccountsDeleteContactsByKeyAndIdParameters): Promise<OrganizationAccountsDeleteContactsByKeyAndIdResponse>;
5598
+ getStatisticsByKey(params: OrganizationAccountsGetStatisticsByKeyParameters): Promise<OrganizationAccountsGetStatisticsByKeyResponse>;
5599
+ getTransactionsByKey(params: OrganizationAccountsGetTransactionsByKeyParameters): Promise<OrganizationAccountsGetTransactionsByKeyResponse>;
5563
5600
  }
5564
5601
  export declare class OrganizationBillingStatementsResource extends $Resource {
5565
5602
  get(params: OrganizationBillingStatementsGetParameters): Promise<OrganizationBillingStatementsGetResponse>;
@@ -5975,13 +6012,6 @@ export declare class ViesResultsResource extends $Resource {
5975
6012
  get(params: ViesResultsGetParameters): Promise<ViesResultsGetResponse>;
5976
6013
  getByNumber(params: ViesResultsGetByNumberParameters): Promise<ViesResultsGetByNumberResponse>;
5977
6014
  }
5978
- export declare class WashCarrierActualFilesResource extends $Resource {
5979
- post(params: WashCarrierActualFilesPostParameters): Promise<WashCarrierActualFilesPostResponse>;
5980
- getById(params: WashCarrierActualFilesGetByIdParameters): Promise<WashCarrierActualFilesGetByIdResponse>;
5981
- }
5982
- export declare class WashExportRequestsResource extends $Resource {
5983
- post(params?: WashExportRequestsPostParameters): Promise<WashExportRequestsPostResponse>;
5984
- }
5985
6015
  export declare class WebhooksResource extends $Resource {
5986
6016
  post(params: WebhooksPostParameters): Promise<WebhooksPostResponse>;
5987
6017
  }
@@ -5999,6 +6029,7 @@ export interface ClientInstance {
5999
6029
  browserBundles: BrowserBundlesResource;
6000
6030
  calculatorOrganizationSettings: CalculatorOrganizationSettingsResource;
6001
6031
  carrierAccounts: CarrierAccountsResource;
6032
+ carrierChargeFiles: CarrierChargeFilesResource;
6002
6033
  catalogSettings: CatalogSettingsResource;
6003
6034
  centerDefaults: CenterDefaultsResource;
6004
6035
  centerQueryBuilders: CenterQueryBuildersResource;
@@ -6156,6 +6187,7 @@ export interface ClientInstance {
6156
6187
  optinPromptCopies: OptinPromptCopiesResource;
6157
6188
  orderActionabilities: OrderActionabilitiesResource;
6158
6189
  orderCancellations: OrderCancellationsResource;
6190
+ orderCombinedShipments: OrderCombinedShipmentsResource;
6159
6191
  orderDetails: OrderDetailsResource;
6160
6192
  orderPaymentAuthorizations: OrderPaymentAuthorizationsResource;
6161
6193
  orderRevenueRegionCharts: OrderRevenueRegionChartsResource;
@@ -6253,8 +6285,6 @@ export interface ClientInstance {
6253
6285
  v1Checkouts: V1CheckoutsResource;
6254
6286
  v2Checkouts: V2CheckoutsResource;
6255
6287
  viesResults: ViesResultsResource;
6256
- washCarrierActualFiles: WashCarrierActualFilesResource;
6257
- washExportRequests: WashExportRequestsResource;
6258
6288
  webhooks: WebhooksResource;
6259
6289
  }
6260
6290
  export declare function createClient(options: $HttpClientOptions): ClientInstance;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/api-internal-sdk",
3
- "version": "0.0.124",
3
+ "version": "0.0.126",
4
4
  "description": "Global TypeScript typings for Flow Commerce API",
5
5
  "repository": {
6
6
  "type": "git",
@@ -26,5 +26,5 @@
26
26
  "generate": "apibuilder update"
27
27
  },
28
28
  "sideEffects": false,
29
- "gitHead": "8fbab724c6c2213e0635284f23a62cd0996693eb"
29
+ "gitHead": "2eaa54ec47aea1e42dad859077feb3852172583c"
30
30
  }