@flowio/api-internal-sdk 0.0.123 → 0.0.125
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/api-internal.js +141 -106
- package/dist/esm/api-internal.js +137 -102
- package/dist/types/api-internal.d.ts +164 -133
- package/package.json +2 -2
|
@@ -307,53 +307,53 @@ export interface ChannelAccountsGetParameters {
|
|
|
307
307
|
headers?: $HttpHeaders;
|
|
308
308
|
channel_id: string;
|
|
309
309
|
id?: string[];
|
|
310
|
-
|
|
310
|
+
key?: string[];
|
|
311
311
|
limit?: number;
|
|
312
312
|
offset?: number;
|
|
313
313
|
sort?: string;
|
|
314
314
|
}
|
|
315
|
-
export interface
|
|
315
|
+
export interface ChannelAccountsGetByKeyParameters {
|
|
316
316
|
headers?: $HttpHeaders;
|
|
317
317
|
channel_id: string;
|
|
318
|
-
|
|
318
|
+
key: string;
|
|
319
319
|
}
|
|
320
|
-
export interface
|
|
320
|
+
export interface ChannelAccountsGetContactsByKeyParameters {
|
|
321
321
|
headers?: $HttpHeaders;
|
|
322
322
|
channel_id: string;
|
|
323
|
-
|
|
323
|
+
key: string;
|
|
324
324
|
id?: string[];
|
|
325
325
|
email?: string;
|
|
326
326
|
limit?: number;
|
|
327
327
|
offset?: number;
|
|
328
328
|
sort?: string;
|
|
329
329
|
}
|
|
330
|
-
export interface
|
|
330
|
+
export interface ChannelAccountsPostContactsByKeyParameters {
|
|
331
331
|
body: io.flow.internal.v0.models.AccountContactForm;
|
|
332
332
|
headers?: $HttpHeaders;
|
|
333
333
|
channel_id: string;
|
|
334
|
-
|
|
334
|
+
key: string;
|
|
335
335
|
}
|
|
336
|
-
export interface
|
|
336
|
+
export interface ChannelAccountsGetContactsByKeyAndIdParameters {
|
|
337
337
|
headers?: $HttpHeaders;
|
|
338
338
|
channel_id: string;
|
|
339
|
-
|
|
339
|
+
key: string;
|
|
340
340
|
id: string;
|
|
341
341
|
}
|
|
342
|
-
export interface
|
|
342
|
+
export interface ChannelAccountsDeleteContactsByKeyAndIdParameters {
|
|
343
343
|
headers?: $HttpHeaders;
|
|
344
344
|
channel_id: string;
|
|
345
|
-
|
|
345
|
+
key: string;
|
|
346
346
|
id: string;
|
|
347
347
|
}
|
|
348
|
-
export interface
|
|
348
|
+
export interface ChannelAccountsGetStatisticsByKeyParameters {
|
|
349
349
|
headers?: $HttpHeaders;
|
|
350
350
|
channel_id: string;
|
|
351
|
-
|
|
351
|
+
key: string;
|
|
352
352
|
}
|
|
353
|
-
export interface
|
|
353
|
+
export interface ChannelAccountsGetTransactionsByKeyParameters {
|
|
354
354
|
headers?: $HttpHeaders;
|
|
355
355
|
channel_id: string;
|
|
356
|
-
|
|
356
|
+
key: string;
|
|
357
357
|
id?: string[];
|
|
358
358
|
type?: io.flow.internal.v0.enums.BillingTransactionType;
|
|
359
359
|
status?: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
@@ -402,7 +402,7 @@ export interface ChannelBillingStatementsGetParameters {
|
|
|
402
402
|
channel_id: string;
|
|
403
403
|
id?: string[];
|
|
404
404
|
account_id?: string;
|
|
405
|
-
|
|
405
|
+
key?: string;
|
|
406
406
|
limit?: number;
|
|
407
407
|
offset?: number;
|
|
408
408
|
sort?: string;
|
|
@@ -1190,73 +1190,66 @@ export interface FlowAccountsGetParameters {
|
|
|
1190
1190
|
source_type: string;
|
|
1191
1191
|
source_id: string;
|
|
1192
1192
|
id?: string[];
|
|
1193
|
-
|
|
1193
|
+
key?: string[];
|
|
1194
1194
|
limit?: number;
|
|
1195
1195
|
offset?: number;
|
|
1196
1196
|
sort?: string;
|
|
1197
1197
|
}
|
|
1198
|
-
export interface
|
|
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;
|
|
1198
|
+
export interface FlowAccountsGetByKeyParameters {
|
|
1206
1199
|
headers?: $HttpHeaders;
|
|
1207
1200
|
source_type: string;
|
|
1208
1201
|
source_id: string;
|
|
1209
|
-
|
|
1202
|
+
key: string;
|
|
1210
1203
|
}
|
|
1211
|
-
export interface
|
|
1204
|
+
export interface FlowAccountsDeleteByKeyParameters {
|
|
1212
1205
|
headers?: $HttpHeaders;
|
|
1213
1206
|
source_type: string;
|
|
1214
1207
|
source_id: string;
|
|
1215
|
-
|
|
1208
|
+
key: string;
|
|
1216
1209
|
}
|
|
1217
|
-
export interface
|
|
1210
|
+
export interface FlowAccountsGetContactsByKeyParameters {
|
|
1218
1211
|
headers?: $HttpHeaders;
|
|
1219
1212
|
source_type: string;
|
|
1220
1213
|
source_id: string;
|
|
1221
|
-
|
|
1214
|
+
key: string;
|
|
1222
1215
|
id?: string[];
|
|
1223
1216
|
email?: string;
|
|
1224
1217
|
limit?: number;
|
|
1225
1218
|
offset?: number;
|
|
1226
1219
|
sort?: string;
|
|
1227
1220
|
}
|
|
1228
|
-
export interface
|
|
1221
|
+
export interface FlowAccountsPostContactsByKeyParameters {
|
|
1229
1222
|
body: io.flow.internal.v0.models.AccountContactForm;
|
|
1230
1223
|
headers?: $HttpHeaders;
|
|
1231
1224
|
source_type: string;
|
|
1232
1225
|
source_id: string;
|
|
1233
|
-
|
|
1226
|
+
key: string;
|
|
1234
1227
|
}
|
|
1235
|
-
export interface
|
|
1228
|
+
export interface FlowAccountsGetContactsByKeyAndIdParameters {
|
|
1236
1229
|
headers?: $HttpHeaders;
|
|
1237
1230
|
source_type: string;
|
|
1238
1231
|
source_id: string;
|
|
1239
|
-
|
|
1232
|
+
key: string;
|
|
1240
1233
|
id: string;
|
|
1241
1234
|
}
|
|
1242
|
-
export interface
|
|
1235
|
+
export interface FlowAccountsDeleteContactsByKeyAndIdParameters {
|
|
1243
1236
|
headers?: $HttpHeaders;
|
|
1244
1237
|
source_type: string;
|
|
1245
1238
|
source_id: string;
|
|
1246
|
-
|
|
1239
|
+
key: string;
|
|
1247
1240
|
id: string;
|
|
1248
1241
|
}
|
|
1249
|
-
export interface
|
|
1242
|
+
export interface FlowAccountsGetStatisticsByKeyParameters {
|
|
1250
1243
|
headers?: $HttpHeaders;
|
|
1251
1244
|
source_type: string;
|
|
1252
1245
|
source_id: string;
|
|
1253
|
-
|
|
1246
|
+
key: string;
|
|
1254
1247
|
}
|
|
1255
|
-
export interface
|
|
1248
|
+
export interface FlowAccountsGetTransactionsByKeyParameters {
|
|
1256
1249
|
headers?: $HttpHeaders;
|
|
1257
1250
|
source_type: string;
|
|
1258
1251
|
source_id: string;
|
|
1259
|
-
|
|
1252
|
+
key: string;
|
|
1260
1253
|
id?: string[];
|
|
1261
1254
|
type?: io.flow.internal.v0.enums.BillingTransactionType;
|
|
1262
1255
|
status?: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
@@ -1277,18 +1270,18 @@ export interface FlowAccountsGetTransactionsByCurrencyParameters {
|
|
|
1277
1270
|
offset?: number;
|
|
1278
1271
|
sort?: string;
|
|
1279
1272
|
}
|
|
1280
|
-
export interface
|
|
1273
|
+
export interface FlowAccountsPostTransactionsAndManualByKeyParameters {
|
|
1281
1274
|
body: io.flow.internal.v0.models.ManualTransactionForm;
|
|
1282
1275
|
headers?: $HttpHeaders;
|
|
1283
1276
|
source_type: string;
|
|
1284
1277
|
source_id: string;
|
|
1285
|
-
|
|
1278
|
+
key: string;
|
|
1286
1279
|
}
|
|
1287
|
-
export interface
|
|
1280
|
+
export interface FlowAccountsDeleteTransactionsAndManualByKeyAndIdParameters {
|
|
1288
1281
|
headers?: $HttpHeaders;
|
|
1289
1282
|
source_type: string;
|
|
1290
1283
|
source_id: string;
|
|
1291
|
-
|
|
1284
|
+
key: string;
|
|
1292
1285
|
id: string;
|
|
1293
1286
|
}
|
|
1294
1287
|
export interface FlowChannelOrganizationsGetParameters {
|
|
@@ -1780,6 +1773,10 @@ export interface OnboardingStatesPutBlockParameters {
|
|
|
1780
1773
|
headers?: $HttpHeaders;
|
|
1781
1774
|
organization: string;
|
|
1782
1775
|
}
|
|
1776
|
+
export interface OnboardingStatesPutRecalculateParameters {
|
|
1777
|
+
headers?: $HttpHeaders;
|
|
1778
|
+
organization: string;
|
|
1779
|
+
}
|
|
1783
1780
|
export interface OnboardingStatesPutTransitionAndReplaceByIdParameters {
|
|
1784
1781
|
body: io.flow.internal.v0.models.OnboardingStateForm;
|
|
1785
1782
|
headers?: $HttpHeaders;
|
|
@@ -2139,6 +2136,18 @@ export interface LabelGenerationSettingsDeleteParameters {
|
|
|
2139
2136
|
headers?: $HttpHeaders;
|
|
2140
2137
|
organization: string;
|
|
2141
2138
|
}
|
|
2139
|
+
export interface LabelInvoiceResponseFilesPostParameters {
|
|
2140
|
+
body: io.flow.internal.v0.models.LabelInvoiceResponseFileForm;
|
|
2141
|
+
headers?: $HttpHeaders;
|
|
2142
|
+
}
|
|
2143
|
+
export interface LabelInvoiceResponseFilesGetByIdParameters {
|
|
2144
|
+
headers?: $HttpHeaders;
|
|
2145
|
+
id: string;
|
|
2146
|
+
}
|
|
2147
|
+
export interface LabelInvoiceResponseFilesDeleteByIdParameters {
|
|
2148
|
+
headers?: $HttpHeaders;
|
|
2149
|
+
id: string;
|
|
2150
|
+
}
|
|
2142
2151
|
export interface LabelTaxonomyGetParameters {
|
|
2143
2152
|
headers?: $HttpHeaders;
|
|
2144
2153
|
}
|
|
@@ -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
|
-
|
|
2748
|
+
key?: string[];
|
|
2716
2749
|
limit?: number;
|
|
2717
2750
|
offset?: number;
|
|
2718
2751
|
sort?: string;
|
|
2719
2752
|
}
|
|
2720
|
-
export interface
|
|
2753
|
+
export interface OrganizationAccountsGetByKeyParameters {
|
|
2721
2754
|
headers?: $HttpHeaders;
|
|
2722
2755
|
organization: string;
|
|
2723
|
-
|
|
2756
|
+
key: string;
|
|
2724
2757
|
}
|
|
2725
|
-
export interface
|
|
2758
|
+
export interface OrganizationAccountsGetContactsByKeyParameters {
|
|
2726
2759
|
headers?: $HttpHeaders;
|
|
2727
2760
|
organization: string;
|
|
2728
|
-
|
|
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
|
|
2768
|
+
export interface OrganizationAccountsPostContactsByKeyParameters {
|
|
2736
2769
|
body: io.flow.internal.v0.models.AccountContactForm;
|
|
2737
2770
|
headers?: $HttpHeaders;
|
|
2738
2771
|
organization: string;
|
|
2739
|
-
|
|
2772
|
+
key: string;
|
|
2740
2773
|
}
|
|
2741
|
-
export interface
|
|
2774
|
+
export interface OrganizationAccountsGetContactsByKeyAndIdParameters {
|
|
2742
2775
|
headers?: $HttpHeaders;
|
|
2743
2776
|
organization: string;
|
|
2744
|
-
|
|
2777
|
+
key: string;
|
|
2745
2778
|
id: string;
|
|
2746
2779
|
}
|
|
2747
|
-
export interface
|
|
2780
|
+
export interface OrganizationAccountsDeleteContactsByKeyAndIdParameters {
|
|
2748
2781
|
headers?: $HttpHeaders;
|
|
2749
2782
|
organization: string;
|
|
2750
|
-
|
|
2783
|
+
key: string;
|
|
2751
2784
|
id: string;
|
|
2752
2785
|
}
|
|
2753
|
-
export interface
|
|
2786
|
+
export interface OrganizationAccountsGetStatisticsByKeyParameters {
|
|
2754
2787
|
headers?: $HttpHeaders;
|
|
2755
2788
|
organization: string;
|
|
2756
|
-
|
|
2789
|
+
key: string;
|
|
2757
2790
|
}
|
|
2758
|
-
export interface
|
|
2791
|
+
export interface OrganizationAccountsGetTransactionsByKeyParameters {
|
|
2759
2792
|
headers?: $HttpHeaders;
|
|
2760
2793
|
organization: string;
|
|
2761
|
-
|
|
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
|
-
|
|
2820
|
+
key?: string;
|
|
2788
2821
|
limit?: number;
|
|
2789
2822
|
offset?: number;
|
|
2790
2823
|
sort?: string;
|
|
@@ -3444,6 +3477,7 @@ export interface RestrictionOrganizationDecisionSummariesGetParameters {
|
|
|
3444
3477
|
earliest_pending_date_before?: string;
|
|
3445
3478
|
earliest_pending_date_after?: string;
|
|
3446
3479
|
approval_status?: io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
3480
|
+
filter_orgs_with_pending_verifications?: boolean;
|
|
3447
3481
|
limit?: number;
|
|
3448
3482
|
offset?: number;
|
|
3449
3483
|
sort?: string;
|
|
@@ -4072,17 +4106,6 @@ export interface ViesResultsGetByNumberParameters {
|
|
|
4072
4106
|
number: string;
|
|
4073
4107
|
name?: string;
|
|
4074
4108
|
}
|
|
4075
|
-
export interface WashCarrierActualFilesPostParameters {
|
|
4076
|
-
body: io.flow.internal.v0.models.WashCarrierActualFileForm;
|
|
4077
|
-
headers?: $HttpHeaders;
|
|
4078
|
-
}
|
|
4079
|
-
export interface WashCarrierActualFilesGetByIdParameters {
|
|
4080
|
-
headers?: $HttpHeaders;
|
|
4081
|
-
id: string;
|
|
4082
|
-
}
|
|
4083
|
-
export interface WashExportRequestsPostParameters {
|
|
4084
|
-
headers?: $HttpHeaders;
|
|
4085
|
-
}
|
|
4086
4109
|
export interface WebhooksPostParameters {
|
|
4087
4110
|
body: any;
|
|
4088
4111
|
headers?: $HttpHeaders;
|
|
@@ -4125,13 +4148,13 @@ export declare type CenterDefaultsGetResponse = $HttpOk<io.flow.internal.v0.mode
|
|
|
4125
4148
|
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>;
|
|
4126
4149
|
export declare type CenterQueryBuildersPostResponse = $HttpCreated<io.flow.query.builder.v0.models.QueryBuilder> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4127
4150
|
export declare type ChannelAccountsGetResponse = $HttpOk<io.flow.internal.v0.models.ChannelAccount[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4128
|
-
export declare type
|
|
4129
|
-
export declare type
|
|
4130
|
-
export declare type
|
|
4131
|
-
export declare type
|
|
4132
|
-
export declare type
|
|
4133
|
-
export declare type
|
|
4134
|
-
export declare type
|
|
4151
|
+
export declare type ChannelAccountsGetByKeyResponse = $HttpOk<io.flow.internal.v0.models.ChannelAccount> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4152
|
+
export declare type ChannelAccountsGetContactsByKeyResponse = $HttpOk<io.flow.internal.v0.models.AccountContact[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4153
|
+
export declare type ChannelAccountsPostContactsByKeyResponse = $HttpCreated<io.flow.internal.v0.models.AccountContact> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4154
|
+
export declare type ChannelAccountsGetContactsByKeyAndIdResponse = $HttpOk<io.flow.internal.v0.models.AccountContact> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4155
|
+
export declare type ChannelAccountsDeleteContactsByKeyAndIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4156
|
+
export declare type ChannelAccountsGetStatisticsByKeyResponse = $HttpOk<io.flow.internal.v0.models.AccountStatistics> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4157
|
+
export declare type ChannelAccountsGetTransactionsByKeyResponse = $HttpOk<io.flow.internal.v0.models.BillingTransaction[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4135
4158
|
export declare type ChannelBilledTransactionPairsGetResponse = $HttpOk<io.flow.internal.v0.models.ChannelBilledTransactionPair[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4136
4159
|
export declare type ChannelBilledTransactionPairsGetByKeyResponse = $HttpOk<io.flow.internal.v0.models.ChannelBilledTransactionPair> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4137
4160
|
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>;
|
|
@@ -4270,17 +4293,16 @@ export declare type FinancialMerchantCategoriesGetResponse = $HttpOk<io.flow.int
|
|
|
4270
4293
|
export declare type FinancialReportingStatementsGetByStatementNumberResponse = $HttpOk<io.flow.internal.v0.models.FinancialReportingStatement> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4271
4294
|
export declare type FinancialReportingStatementsPostByStatementNumberResponse = $HttpOk<io.flow.internal.v0.models.FinancialReportingStatement> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4272
4295
|
export declare type FlowAccountsGetResponse = $HttpOk<io.flow.internal.v0.models.FlowAccount[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4273
|
-
export declare type
|
|
4274
|
-
export declare type
|
|
4275
|
-
export declare type
|
|
4276
|
-
export declare type
|
|
4277
|
-
export declare type
|
|
4278
|
-
export declare type
|
|
4279
|
-
export declare type
|
|
4280
|
-
export declare type
|
|
4281
|
-
export declare type
|
|
4282
|
-
export declare type
|
|
4283
|
-
export declare type FlowAccountsDeleteTransactionsAndManualByCurrencyAndIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4296
|
+
export declare type FlowAccountsGetByKeyResponse = $HttpOk<io.flow.internal.v0.models.FlowAccount> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4297
|
+
export declare type FlowAccountsDeleteByKeyResponse = $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError> | $HttpConflict<io.flow.error.v0.models.GenericError> | $HttpNoContent<undefined> | $HttpUnauthorized<undefined>;
|
|
4298
|
+
export declare type FlowAccountsGetContactsByKeyResponse = $HttpOk<io.flow.internal.v0.models.AccountContact[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4299
|
+
export declare type FlowAccountsPostContactsByKeyResponse = $HttpCreated<io.flow.internal.v0.models.AccountContact> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4300
|
+
export declare type FlowAccountsGetContactsByKeyAndIdResponse = $HttpOk<io.flow.internal.v0.models.AccountContact> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4301
|
+
export declare type FlowAccountsDeleteContactsByKeyAndIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4302
|
+
export declare type FlowAccountsGetStatisticsByKeyResponse = $HttpOk<io.flow.internal.v0.models.AccountStatistics> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4303
|
+
export declare type FlowAccountsGetTransactionsByKeyResponse = $HttpOk<io.flow.internal.v0.models.BillingTransaction[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4304
|
+
export declare type FlowAccountsPostTransactionsAndManualByKeyResponse = $HttpCreated<io.flow.internal.v0.models.ManualTransaction> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4305
|
+
export declare type FlowAccountsDeleteTransactionsAndManualByKeyAndIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4284
4306
|
export declare type FlowChannelOrganizationsGetResponse = $HttpOk<io.flow.channel.v0.models.ChannelOrganization[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4285
4307
|
export declare type FlowLabProjectsGetResponse = $HttpOk<io.flow.internal.v0.models.FlowLabProject[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4286
4308
|
export declare type FlowLabProjectsPostResponse = $HttpCreated<io.flow.internal.v0.models.FlowLabProject> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
@@ -4367,6 +4389,7 @@ export declare type UltimateBeneficiaryOwnersPutResponse = $HttpOk<io.flow.merch
|
|
|
4367
4389
|
export declare type OrderManagementEventsPostReplayByOrderLifecycleEventResponse = $HttpOk<io.flow.order.management.event.v0.unions.OrderManagementEvent> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4368
4390
|
export declare type OnboardingStatesPutResponse = $HttpCreated<io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4369
4391
|
export declare type OnboardingStatesPutBlockResponse = $HttpCreated<io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4392
|
+
export declare type OnboardingStatesPutRecalculateResponse = $HttpCreated<io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4370
4393
|
export declare type OnboardingStatesPutTransitionAndReplaceByIdResponse = $HttpOk<io.flow.internal.v0.models.OrganizationOnboardingStateAdjustmentResult> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4371
4394
|
export declare type OnboardingStatesDeleteTransitionByIdResponse = $HttpOk<io.flow.internal.v0.models.OrganizationOnboardingStateAdjustmentResult> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4372
4395
|
export declare type OnboardingStatesPutTransitionsAndDeleteResponse = $HttpOk<io.flow.internal.v0.models.OrganizationOnboardingStateAdjustmentResult> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
@@ -4432,6 +4455,9 @@ export declare type LabelGenerationAddressFailuresPostStatusByIdResponse = $Http
|
|
|
4432
4455
|
export declare type LabelGenerationSettingsGetResponse = $HttpOk<io.flow.internal.v0.models.LabelGenerationSettings> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4433
4456
|
export declare type LabelGenerationSettingsPutResponse = $HttpOk<io.flow.internal.v0.models.LabelGenerationSettings> | $HttpCreated<io.flow.internal.v0.models.LabelGenerationSettings> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4434
4457
|
export declare type LabelGenerationSettingsDeleteResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4458
|
+
export declare type LabelInvoiceResponseFilesPostResponse = $HttpCreated<io.flow.internal.v0.models.LabelInvoiceResponseFile> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4459
|
+
export declare type LabelInvoiceResponseFilesGetByIdResponse = $HttpOk<io.flow.internal.v0.models.LabelInvoiceResponseFile> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4460
|
+
export declare type LabelInvoiceResponseFilesDeleteByIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4435
4461
|
export declare type LabelTaxonomyGetResponse = $HttpOk<io.flow.internal.v0.models.LabelTaxonomy[]> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4436
4462
|
export declare type LevyRateSummariesGetResponse = $HttpOk<io.flow.internal.v0.models.LevyRateSummary> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4437
4463
|
export declare type LiabilityRemittancePlansGetResponse = $HttpOk<io.flow.internal.v0.models.LiabilityRemittancePlan[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
@@ -4514,6 +4540,10 @@ export declare type OrderCancellationsGetResponse = $HttpOk<io.flow.internal.v0.
|
|
|
4514
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>;
|
|
4515
4541
|
export declare type OrderCancellationsGetByIdResponse = $HttpOk<io.flow.internal.v0.models.OrderCancellation> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4516
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>;
|
|
4517
4547
|
export declare type OrderDetailsGetResponse = $HttpOk<io.flow.internal.v0.models.OrderDetail[]> | $HttpUnauthorized<undefined>;
|
|
4518
4548
|
export declare type OrderDetailsGetByNumberResponse = $HttpOk<io.flow.internal.v0.models.OrderDetail> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4519
4549
|
export declare type OrderDetailsGetNotesByNumberResponse = $HttpOk<io.flow.internal.v0.models.OrderNote[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
@@ -4525,13 +4555,13 @@ export declare type OrderPaymentAuthorizationsPostResponse = $HttpCreated<io.flo
|
|
|
4525
4555
|
export declare type OrderRevenueRegionChartsGetResponse = $HttpOk<io.flow.internal.v0.models.OrderRevenueRegionChart> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4526
4556
|
export declare type OrderRevenueTimelineChartsGetResponse = $HttpOk<io.flow.internal.v0.models.OrderRevenueTimelineChart> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4527
4557
|
export declare type OrganizationAccountsGetResponse = $HttpOk<io.flow.internal.v0.models.OrganizationAccount[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4528
|
-
export declare type
|
|
4529
|
-
export declare type
|
|
4530
|
-
export declare type
|
|
4531
|
-
export declare type
|
|
4532
|
-
export declare type
|
|
4533
|
-
export declare type
|
|
4534
|
-
export declare type
|
|
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>;
|
|
4535
4565
|
export declare type OrganizationBillingStatementsGetResponse = $HttpOk<io.flow.internal.v0.models.OrganizationBillingStatement[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4536
4566
|
export declare type OrganizationBillingStatementsGetByIdResponse = $HttpOk<io.flow.internal.v0.models.OrganizationBillingStatement> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4537
4567
|
export declare type OrganizationBillingStatementsDeleteByIdResponse = $HttpNoContent<undefined> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
@@ -4762,9 +4792,6 @@ export declare type V2CheckoutsGetOrderAndViewsByIdResponse = $HttpOk<io.flow.in
|
|
|
4762
4792
|
export declare type V2CheckoutsGetResponseByIdResponse = $HttpOk<io.flow.internal.v0.models.CheckoutGetResponseSuccess> | $HttpNotFound<undefined>;
|
|
4763
4793
|
export declare type ViesResultsGetResponse = $HttpOk<io.flow.internal.v0.models.ViesResult[]> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4764
4794
|
export declare type ViesResultsGetByNumberResponse = $HttpOk<io.flow.internal.v0.models.ViesResult> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4765
|
-
export declare type WashCarrierActualFilesPostResponse = $HttpCreated<io.flow.internal.v0.models.WashCarrierActualFile> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4766
|
-
export declare type WashCarrierActualFilesGetByIdResponse = $HttpOk<io.flow.internal.v0.models.WashCarrierActualFile> | $HttpUnauthorized<undefined> | $HttpNotFound<undefined>;
|
|
4767
|
-
export declare type WashExportRequestsPostResponse = $HttpCreated<io.flow.internal.v0.models.WashExportRequest> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4768
4795
|
export declare type WebhooksPostResponse = $HttpOk<string> | $HttpUnauthorized<undefined> | $HttpUnprocessableEntity<io.flow.error.v0.models.GenericError>;
|
|
4769
4796
|
export declare class AddressConfigurationSettingsResource extends $Resource {
|
|
4770
4797
|
get(params: AddressConfigurationSettingsGetParameters): Promise<AddressConfigurationSettingsGetResponse>;
|
|
@@ -4836,13 +4863,13 @@ export declare class CenterQueryBuildersResource extends $Resource {
|
|
|
4836
4863
|
}
|
|
4837
4864
|
export declare class ChannelAccountsResource extends $Resource {
|
|
4838
4865
|
get(params: ChannelAccountsGetParameters): Promise<ChannelAccountsGetResponse>;
|
|
4839
|
-
|
|
4840
|
-
|
|
4841
|
-
|
|
4842
|
-
|
|
4843
|
-
|
|
4844
|
-
|
|
4845
|
-
|
|
4866
|
+
getByKey(params: ChannelAccountsGetByKeyParameters): Promise<ChannelAccountsGetByKeyResponse>;
|
|
4867
|
+
getContactsByKey(params: ChannelAccountsGetContactsByKeyParameters): Promise<ChannelAccountsGetContactsByKeyResponse>;
|
|
4868
|
+
postContactsByKey(params: ChannelAccountsPostContactsByKeyParameters): Promise<ChannelAccountsPostContactsByKeyResponse>;
|
|
4869
|
+
getContactsByKeyAndId(params: ChannelAccountsGetContactsByKeyAndIdParameters): Promise<ChannelAccountsGetContactsByKeyAndIdResponse>;
|
|
4870
|
+
deleteContactsByKeyAndId(params: ChannelAccountsDeleteContactsByKeyAndIdParameters): Promise<ChannelAccountsDeleteContactsByKeyAndIdResponse>;
|
|
4871
|
+
getStatisticsByKey(params: ChannelAccountsGetStatisticsByKeyParameters): Promise<ChannelAccountsGetStatisticsByKeyResponse>;
|
|
4872
|
+
getTransactionsByKey(params: ChannelAccountsGetTransactionsByKeyParameters): Promise<ChannelAccountsGetTransactionsByKeyResponse>;
|
|
4846
4873
|
}
|
|
4847
4874
|
export declare class ChannelBilledTransactionPairsResource extends $Resource {
|
|
4848
4875
|
get(params: ChannelBilledTransactionPairsGetParameters): Promise<ChannelBilledTransactionPairsGetResponse>;
|
|
@@ -5091,17 +5118,16 @@ export declare class FinancialReportingStatementsResource extends $Resource {
|
|
|
5091
5118
|
}
|
|
5092
5119
|
export declare class FlowAccountsResource extends $Resource {
|
|
5093
5120
|
get(params: FlowAccountsGetParameters): Promise<FlowAccountsGetResponse>;
|
|
5094
|
-
|
|
5095
|
-
|
|
5096
|
-
|
|
5097
|
-
|
|
5098
|
-
|
|
5099
|
-
|
|
5100
|
-
|
|
5101
|
-
|
|
5102
|
-
|
|
5103
|
-
|
|
5104
|
-
deleteTransactionsAndManualByCurrencyAndId(params: FlowAccountsDeleteTransactionsAndManualByCurrencyAndIdParameters): Promise<FlowAccountsDeleteTransactionsAndManualByCurrencyAndIdResponse>;
|
|
5121
|
+
getByKey(params: FlowAccountsGetByKeyParameters): Promise<FlowAccountsGetByKeyResponse>;
|
|
5122
|
+
deleteByKey(params: FlowAccountsDeleteByKeyParameters): Promise<FlowAccountsDeleteByKeyResponse>;
|
|
5123
|
+
getContactsByKey(params: FlowAccountsGetContactsByKeyParameters): Promise<FlowAccountsGetContactsByKeyResponse>;
|
|
5124
|
+
postContactsByKey(params: FlowAccountsPostContactsByKeyParameters): Promise<FlowAccountsPostContactsByKeyResponse>;
|
|
5125
|
+
getContactsByKeyAndId(params: FlowAccountsGetContactsByKeyAndIdParameters): Promise<FlowAccountsGetContactsByKeyAndIdResponse>;
|
|
5126
|
+
deleteContactsByKeyAndId(params: FlowAccountsDeleteContactsByKeyAndIdParameters): Promise<FlowAccountsDeleteContactsByKeyAndIdResponse>;
|
|
5127
|
+
getStatisticsByKey(params: FlowAccountsGetStatisticsByKeyParameters): Promise<FlowAccountsGetStatisticsByKeyResponse>;
|
|
5128
|
+
getTransactionsByKey(params: FlowAccountsGetTransactionsByKeyParameters): Promise<FlowAccountsGetTransactionsByKeyResponse>;
|
|
5129
|
+
postTransactionsAndManualByKey(params: FlowAccountsPostTransactionsAndManualByKeyParameters): Promise<FlowAccountsPostTransactionsAndManualByKeyResponse>;
|
|
5130
|
+
deleteTransactionsAndManualByKeyAndId(params: FlowAccountsDeleteTransactionsAndManualByKeyAndIdParameters): Promise<FlowAccountsDeleteTransactionsAndManualByKeyAndIdResponse>;
|
|
5105
5131
|
}
|
|
5106
5132
|
export declare class FlowChannelOrganizationsResource extends $Resource {
|
|
5107
5133
|
get(params: FlowChannelOrganizationsGetParameters): Promise<FlowChannelOrganizationsGetResponse>;
|
|
@@ -5262,6 +5288,7 @@ export declare class OrderManagementEventsResource extends $Resource {
|
|
|
5262
5288
|
export declare class OnboardingStatesResource extends $Resource {
|
|
5263
5289
|
put(params: OnboardingStatesPutParameters): Promise<OnboardingStatesPutResponse>;
|
|
5264
5290
|
putBlock(params: OnboardingStatesPutBlockParameters): Promise<OnboardingStatesPutBlockResponse>;
|
|
5291
|
+
putRecalculate(params: OnboardingStatesPutRecalculateParameters): Promise<OnboardingStatesPutRecalculateResponse>;
|
|
5265
5292
|
putTransitionAndReplaceById(params: OnboardingStatesPutTransitionAndReplaceByIdParameters): Promise<OnboardingStatesPutTransitionAndReplaceByIdResponse>;
|
|
5266
5293
|
deleteTransitionById(params: OnboardingStatesDeleteTransitionByIdParameters): Promise<OnboardingStatesDeleteTransitionByIdResponse>;
|
|
5267
5294
|
putTransitionsAndDelete(params: OnboardingStatesPutTransitionsAndDeleteParameters): Promise<OnboardingStatesPutTransitionsAndDeleteResponse>;
|
|
@@ -5386,6 +5413,11 @@ export declare class LabelGenerationSettingsResource extends $Resource {
|
|
|
5386
5413
|
put(params: LabelGenerationSettingsPutParameters): Promise<LabelGenerationSettingsPutResponse>;
|
|
5387
5414
|
delete(params: LabelGenerationSettingsDeleteParameters): Promise<LabelGenerationSettingsDeleteResponse>;
|
|
5388
5415
|
}
|
|
5416
|
+
export declare class LabelInvoiceResponseFilesResource extends $Resource {
|
|
5417
|
+
post(params: LabelInvoiceResponseFilesPostParameters): Promise<LabelInvoiceResponseFilesPostResponse>;
|
|
5418
|
+
getById(params: LabelInvoiceResponseFilesGetByIdParameters): Promise<LabelInvoiceResponseFilesGetByIdResponse>;
|
|
5419
|
+
deleteById(params: LabelInvoiceResponseFilesDeleteByIdParameters): Promise<LabelInvoiceResponseFilesDeleteByIdResponse>;
|
|
5420
|
+
}
|
|
5389
5421
|
export declare class LabelTaxonomyResource extends $Resource {
|
|
5390
5422
|
get(params?: LabelTaxonomyGetParameters): Promise<LabelTaxonomyGetResponse>;
|
|
5391
5423
|
}
|
|
@@ -5532,6 +5564,12 @@ export declare class OrderCancellationsResource extends $Resource {
|
|
|
5532
5564
|
getById(params: OrderCancellationsGetByIdParameters): Promise<OrderCancellationsGetByIdResponse>;
|
|
5533
5565
|
deleteById(params: OrderCancellationsDeleteByIdParameters): Promise<OrderCancellationsDeleteByIdResponse>;
|
|
5534
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
|
+
}
|
|
5535
5573
|
export declare class OrderDetailsResource extends $Resource {
|
|
5536
5574
|
get(params: OrderDetailsGetParameters): Promise<OrderDetailsGetResponse>;
|
|
5537
5575
|
getByNumber(params: OrderDetailsGetByNumberParameters): Promise<OrderDetailsGetByNumberResponse>;
|
|
@@ -5552,13 +5590,13 @@ export declare class OrderRevenueTimelineChartsResource extends $Resource {
|
|
|
5552
5590
|
}
|
|
5553
5591
|
export declare class OrganizationAccountsResource extends $Resource {
|
|
5554
5592
|
get(params: OrganizationAccountsGetParameters): Promise<OrganizationAccountsGetResponse>;
|
|
5555
|
-
|
|
5556
|
-
|
|
5557
|
-
|
|
5558
|
-
|
|
5559
|
-
|
|
5560
|
-
|
|
5561
|
-
|
|
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>;
|
|
5562
5600
|
}
|
|
5563
5601
|
export declare class OrganizationBillingStatementsResource extends $Resource {
|
|
5564
5602
|
get(params: OrganizationBillingStatementsGetParameters): Promise<OrganizationBillingStatementsGetResponse>;
|
|
@@ -5974,13 +6012,6 @@ export declare class ViesResultsResource extends $Resource {
|
|
|
5974
6012
|
get(params: ViesResultsGetParameters): Promise<ViesResultsGetResponse>;
|
|
5975
6013
|
getByNumber(params: ViesResultsGetByNumberParameters): Promise<ViesResultsGetByNumberResponse>;
|
|
5976
6014
|
}
|
|
5977
|
-
export declare class WashCarrierActualFilesResource extends $Resource {
|
|
5978
|
-
post(params: WashCarrierActualFilesPostParameters): Promise<WashCarrierActualFilesPostResponse>;
|
|
5979
|
-
getById(params: WashCarrierActualFilesGetByIdParameters): Promise<WashCarrierActualFilesGetByIdResponse>;
|
|
5980
|
-
}
|
|
5981
|
-
export declare class WashExportRequestsResource extends $Resource {
|
|
5982
|
-
post(params?: WashExportRequestsPostParameters): Promise<WashExportRequestsPostResponse>;
|
|
5983
|
-
}
|
|
5984
6015
|
export declare class WebhooksResource extends $Resource {
|
|
5985
6016
|
post(params: WebhooksPostParameters): Promise<WebhooksPostResponse>;
|
|
5986
6017
|
}
|
|
@@ -6123,6 +6154,7 @@ export interface ClientInstance {
|
|
|
6123
6154
|
labelCreationJobs: LabelCreationJobsResource;
|
|
6124
6155
|
labelGenerationAddressFailures: LabelGenerationAddressFailuresResource;
|
|
6125
6156
|
labelGenerationSettings: LabelGenerationSettingsResource;
|
|
6157
|
+
labelInvoiceResponseFiles: LabelInvoiceResponseFilesResource;
|
|
6126
6158
|
labelTaxonomy: LabelTaxonomyResource;
|
|
6127
6159
|
levyRateSummaries: LevyRateSummariesResource;
|
|
6128
6160
|
liabilityRemittancePlans: LiabilityRemittancePlansResource;
|
|
@@ -6155,6 +6187,7 @@ export interface ClientInstance {
|
|
|
6155
6187
|
optinPromptCopies: OptinPromptCopiesResource;
|
|
6156
6188
|
orderActionabilities: OrderActionabilitiesResource;
|
|
6157
6189
|
orderCancellations: OrderCancellationsResource;
|
|
6190
|
+
orderCombinedShipments: OrderCombinedShipmentsResource;
|
|
6158
6191
|
orderDetails: OrderDetailsResource;
|
|
6159
6192
|
orderPaymentAuthorizations: OrderPaymentAuthorizationsResource;
|
|
6160
6193
|
orderRevenueRegionCharts: OrderRevenueRegionChartsResource;
|
|
@@ -6252,8 +6285,6 @@ export interface ClientInstance {
|
|
|
6252
6285
|
v1Checkouts: V1CheckoutsResource;
|
|
6253
6286
|
v2Checkouts: V2CheckoutsResource;
|
|
6254
6287
|
viesResults: ViesResultsResource;
|
|
6255
|
-
washCarrierActualFiles: WashCarrierActualFilesResource;
|
|
6256
|
-
washExportRequests: WashExportRequestsResource;
|
|
6257
6288
|
webhooks: WebhooksResource;
|
|
6258
6289
|
}
|
|
6259
6290
|
export declare function createClient(options: $HttpClientOptions): ClientInstance;
|