@flowio/api-internal-prop-types 9.24.87 → 9.24.89
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/lib/api-internal.d.ts +551 -30
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +551 -30
- package/src/api-internal.js +750 -185
package/lib/api-internal.d.ts
CHANGED
|
@@ -183,6 +183,218 @@ declare namespace io.flow.invoice.v0.models {
|
|
|
183
183
|
}
|
|
184
184
|
}
|
|
185
185
|
|
|
186
|
+
declare namespace io.flow.billing.accounting.v0.models {
|
|
187
|
+
interface Fulfillment {
|
|
188
|
+
readonly 'id': string;
|
|
189
|
+
readonly 'order': io.flow.billing.accounting.v0.models.OrderSummary;
|
|
190
|
+
readonly 'shopper': io.flow.billing.accounting.v0.models.ShopperSummary;
|
|
191
|
+
readonly 'remittance': io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
192
|
+
readonly 'merchant': io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
193
|
+
readonly 'sequence_number': number;
|
|
194
|
+
readonly 'posting_cutoff': string;
|
|
195
|
+
readonly 'trigger': io.flow.billing.accounting.v0.unions.FulfillmentTrigger;
|
|
196
|
+
readonly 'fulfilled_at': string;
|
|
197
|
+
readonly 'owner': io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
198
|
+
readonly 'origin'?: io.flow.billing.accounting.v0.models.FulfillmentOrigin;
|
|
199
|
+
readonly 'business'?: io.flow.billing.accounting.v0.models.FulfillmentBusiness;
|
|
200
|
+
readonly 'completes_order': boolean;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
interface FulfillmentBusiness {
|
|
204
|
+
readonly 'vat_registration_number': string;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
interface FulfillmentOrigin {
|
|
208
|
+
readonly 'country': string;
|
|
209
|
+
readonly 'province_code'?: string;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
interface FulfillmentProofExternalFulfillmentProofReference {
|
|
213
|
+
readonly 'discriminator': 'external_fulfillment';
|
|
214
|
+
readonly 'id': string;
|
|
215
|
+
readonly 'carrier_id'?: string;
|
|
216
|
+
readonly 'carrier_service_id'?: string;
|
|
217
|
+
readonly 'carrier_tracking_number'?: string;
|
|
218
|
+
readonly 'label_id'?: string;
|
|
219
|
+
readonly 'created_at'?: string;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
interface FulfillmentProofLabelTrackingReference {
|
|
223
|
+
readonly 'discriminator': 'label_tracking';
|
|
224
|
+
readonly 'id': string;
|
|
225
|
+
readonly 'carrier_id'?: string;
|
|
226
|
+
readonly 'carrier_service_id'?: string;
|
|
227
|
+
readonly 'carrier_tracking_number'?: string;
|
|
228
|
+
readonly 'label_id'?: string;
|
|
229
|
+
readonly 'created_at'?: string;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
interface FulfillmentProofOrderCombinedShipmentReference {
|
|
233
|
+
readonly 'discriminator': 'order_combined_shipment';
|
|
234
|
+
readonly 'id': string;
|
|
235
|
+
readonly 'carrier_id'?: string;
|
|
236
|
+
readonly 'carrier_service_id'?: string;
|
|
237
|
+
readonly 'carrier_tracking_number'?: string;
|
|
238
|
+
readonly 'label_id'?: string;
|
|
239
|
+
readonly 'created_at'?: string;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
interface FulfillmentProofShippingNotificationReference {
|
|
243
|
+
readonly 'discriminator': 'shipping_notification';
|
|
244
|
+
readonly 'id': string;
|
|
245
|
+
readonly 'carrier_id'?: string;
|
|
246
|
+
readonly 'carrier_service_id'?: string;
|
|
247
|
+
readonly 'carrier_tracking_number'?: string;
|
|
248
|
+
readonly 'label_id'?: string;
|
|
249
|
+
readonly 'created_at'?: string;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
interface FulfillmentReference {
|
|
253
|
+
readonly 'id': string;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
interface FulfillmentSubsidyBreakdown {
|
|
257
|
+
readonly 'tax': number;
|
|
258
|
+
readonly 'duty': number;
|
|
259
|
+
readonly 'total': number;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
interface FulfillmentTriggerProof {
|
|
263
|
+
readonly 'discriminator': 'by_proof';
|
|
264
|
+
readonly 'proof': io.flow.billing.accounting.v0.unions.FulfillmentProof;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
interface FulfillmentTriggerTime {
|
|
268
|
+
readonly 'discriminator': 'by_time';
|
|
269
|
+
readonly 'placeholder'?: string;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
interface ItemSummary {
|
|
273
|
+
readonly 'number': string;
|
|
274
|
+
readonly 'fulfillment_method': io.flow.catalog.v0.enums.FulfillmentMethodValue;
|
|
275
|
+
readonly 'country_of_origin'?: string;
|
|
276
|
+
readonly 'tarriff_code'?: string;
|
|
277
|
+
readonly 'inferred'?: boolean;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
interface MerchantFees {
|
|
281
|
+
readonly 'duty_guarantee': number;
|
|
282
|
+
readonly 'mor': number;
|
|
283
|
+
readonly 'fraud': number;
|
|
284
|
+
readonly 'fx': number;
|
|
285
|
+
readonly 'processing': number;
|
|
286
|
+
readonly 'rate_lock': number;
|
|
287
|
+
readonly 'transfer': number;
|
|
288
|
+
readonly 'total': number;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
interface MerchantSubsidies {
|
|
292
|
+
readonly 'fees': io.flow.billing.accounting.v0.models.ShopperFees;
|
|
293
|
+
readonly 'tax': number;
|
|
294
|
+
readonly 'duty': number;
|
|
295
|
+
readonly 'total': number;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
interface MerchantSummary {
|
|
299
|
+
readonly 'subsidies': io.flow.billing.accounting.v0.models.MerchantSubsidies;
|
|
300
|
+
readonly 'fees': io.flow.billing.accounting.v0.models.MerchantFees;
|
|
301
|
+
readonly 'transactions': io.flow.billing.accounting.v0.models.MerchantTransactions;
|
|
302
|
+
readonly 'total': number;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
interface MerchantTransactions {
|
|
306
|
+
readonly 'adjustment': number;
|
|
307
|
+
readonly 'reversal': number;
|
|
308
|
+
readonly 'tax': number;
|
|
309
|
+
readonly 'duty': number;
|
|
310
|
+
readonly 'freight': number;
|
|
311
|
+
readonly 'total': number;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
interface OrderSummary {
|
|
315
|
+
readonly 'id': string;
|
|
316
|
+
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
317
|
+
readonly 'number': string;
|
|
318
|
+
readonly 'type': io.flow.experience.v0.enums.OrderType;
|
|
319
|
+
readonly 'submitted_at': string;
|
|
320
|
+
readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
|
|
321
|
+
readonly 'currency': string;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
interface RemittanceResponsibility {
|
|
325
|
+
readonly 'tax': io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
326
|
+
readonly 'duty': io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
interface Return {
|
|
330
|
+
readonly 'id': string;
|
|
331
|
+
readonly 'order': io.flow.billing.accounting.v0.models.OrderSummary;
|
|
332
|
+
readonly 'shopper': io.flow.billing.accounting.v0.models.ShopperSummary;
|
|
333
|
+
readonly 'remittance': io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
334
|
+
readonly 'merchant': io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
335
|
+
readonly 'sequence_number': number;
|
|
336
|
+
readonly 'posting_cutoff': string;
|
|
337
|
+
readonly 'trigger': io.flow.billing.accounting.v0.unions.ReturnTrigger;
|
|
338
|
+
readonly 'returned_at': string;
|
|
339
|
+
readonly 'completes_order': boolean;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
interface ReturnTriggerRefund {
|
|
343
|
+
readonly 'discriminator': 'by_refund';
|
|
344
|
+
readonly 'refund': io.flow.payment.v0.models.RefundReference;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
interface ShopperFees {
|
|
348
|
+
readonly 'fuel': number;
|
|
349
|
+
readonly 'remote_area': number;
|
|
350
|
+
readonly 'oversize': number;
|
|
351
|
+
readonly 'ccf': number;
|
|
352
|
+
readonly 'emergency': number;
|
|
353
|
+
readonly 'peak': number;
|
|
354
|
+
readonly 'total': number;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
interface ShopperFreight {
|
|
358
|
+
readonly 'price': number;
|
|
359
|
+
readonly 'discount': number;
|
|
360
|
+
readonly 'tax': number;
|
|
361
|
+
readonly 'duty': number;
|
|
362
|
+
readonly 'subsidies': io.flow.billing.accounting.v0.models.FulfillmentSubsidyBreakdown;
|
|
363
|
+
readonly 'total': number;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
interface ShopperLine {
|
|
367
|
+
readonly 'item': io.flow.billing.accounting.v0.models.ItemSummary;
|
|
368
|
+
readonly 'quantity': number;
|
|
369
|
+
readonly 'unit_price': number;
|
|
370
|
+
readonly 'price': number;
|
|
371
|
+
readonly 'discount': number;
|
|
372
|
+
readonly 'tax': number;
|
|
373
|
+
readonly 'duty': number;
|
|
374
|
+
readonly 'subsidies': io.flow.billing.accounting.v0.models.FulfillmentSubsidyBreakdown;
|
|
375
|
+
readonly 'total': number;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
interface ShopperLines {
|
|
379
|
+
readonly 'lines': io.flow.billing.accounting.v0.models.ShopperLine[];
|
|
380
|
+
readonly 'total': number;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
interface ShopperSummary {
|
|
384
|
+
readonly 'product': io.flow.billing.accounting.v0.models.ShopperLines;
|
|
385
|
+
readonly 'fees': io.flow.billing.accounting.v0.models.ShopperFees;
|
|
386
|
+
readonly 'freight': io.flow.billing.accounting.v0.models.ShopperFreight;
|
|
387
|
+
readonly 'order_discount': number;
|
|
388
|
+
readonly 'total': number;
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
declare namespace io.flow.billing.accounting.v0.unions {
|
|
393
|
+
type FulfillmentProof = (io.flow.billing.accounting.v0.models.FulfillmentProofLabelTrackingReference | io.flow.billing.accounting.v0.models.FulfillmentProofShippingNotificationReference | io.flow.billing.accounting.v0.models.FulfillmentProofExternalFulfillmentProofReference | io.flow.billing.accounting.v0.models.FulfillmentProofOrderCombinedShipmentReference);
|
|
394
|
+
type FulfillmentTrigger = (io.flow.billing.accounting.v0.models.FulfillmentTriggerProof | io.flow.billing.accounting.v0.models.FulfillmentTriggerTime);
|
|
395
|
+
type ReturnTrigger = (io.flow.billing.accounting.v0.models.ReturnTriggerRefund);
|
|
396
|
+
}
|
|
397
|
+
|
|
186
398
|
declare namespace io.flow.RESERVED_WORD_export.v0.enums {
|
|
187
399
|
type ExportStatus = 'created' | 'processing' | 'completed' | 'failed';
|
|
188
400
|
type ItemIdentifier = 'item_number' | 'sku';
|
|
@@ -2205,6 +2417,7 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2205
2417
|
readonly 'processing': number;
|
|
2206
2418
|
readonly 'rate_lock': number;
|
|
2207
2419
|
readonly 'transfer': number;
|
|
2420
|
+
readonly 'negative_balance': number;
|
|
2208
2421
|
}
|
|
2209
2422
|
|
|
2210
2423
|
interface BillingCsvTransactionIdentifiers {
|
|
@@ -2225,6 +2438,7 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2225
2438
|
readonly 'label_created_at': string;
|
|
2226
2439
|
readonly 'carrier_id': string;
|
|
2227
2440
|
readonly 'carrier_tracking_number': string;
|
|
2441
|
+
readonly 'revenue_share_percentage': number;
|
|
2228
2442
|
readonly 'outbound_transaction_id'?: string;
|
|
2229
2443
|
}
|
|
2230
2444
|
|
|
@@ -2349,7 +2563,7 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
2349
2563
|
type OrderItemType = 'sku' | 'tax' | 'shipping' | 'discount';
|
|
2350
2564
|
type PaymentIntentStatus = 'canceled' | 'processing' | 'requires_action' | 'requires_capture' | 'requires_confirmation' | 'requires_payment_method' | 'succeeded';
|
|
2351
2565
|
type PaymentMethodCategoryKlarna = 'pay_later' | 'pay_now' | 'pay_with_financing' | 'pay_in_installments';
|
|
2352
|
-
type PaymentMethodType = 'card' | 'card_present';
|
|
2566
|
+
type PaymentMethodType = 'card' | 'card_present' | 'klarna';
|
|
2353
2567
|
type PaymentOutcomeType = 'authorized' | 'manual_review' | 'issuer_declined' | 'blocked' | 'invalid';
|
|
2354
2568
|
type PaymentStatus = 'succeeded' | 'pending' | 'failed';
|
|
2355
2569
|
type PreferredLocaleKlarna = 'de-AT' | 'en-AT' | 'nl-BE' | 'fr-BE' | 'en-BE' | 'de-DE' | 'en-DE' | 'da-DK' | 'en-DK' | 'es-ES' | 'en-ES' | 'fi-FI' | 'sv-FI' | 'en-FI' | 'en-GB' | 'en-IE' | 'it-IT' | 'en-IT' | 'nl-NL' | 'en-NL' | 'nb-NO' | 'en-NO' | 'sv-SE' | 'en-SE' | 'en-US' | 'es-US' | 'fr-FR' | 'en-FR' | 'cs-CZ' | 'en-CZ' | 'el-GR' | 'en-GR' | 'en-AU' | 'en-NZ' | 'en-CA' | 'fr-CA' | 'pl-PL' | 'en-PL' | 'pt-PT' | 'en-PT' | 'de-CH' | 'fr-CH' | 'it-CH' | 'en-CH';
|
|
@@ -2607,6 +2821,12 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2607
2821
|
readonly 'marketplace_seller_info'?: io.flow.stripe.v0.models.KlarnaMarketplaceSellerInfo[];
|
|
2608
2822
|
}
|
|
2609
2823
|
|
|
2824
|
+
interface KlarnaDobForm {
|
|
2825
|
+
readonly 'day': number;
|
|
2826
|
+
readonly 'month': number;
|
|
2827
|
+
readonly 'year': number;
|
|
2828
|
+
}
|
|
2829
|
+
|
|
2610
2830
|
interface KlarnaMarketplaceSellerInfo {
|
|
2611
2831
|
readonly 'sub_merchant_id'?: string;
|
|
2612
2832
|
readonly 'product_category'?: string;
|
|
@@ -2616,6 +2836,12 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2616
2836
|
readonly 'additional_owners'?: io.flow.stripe.v0.models.Owner[];
|
|
2617
2837
|
}
|
|
2618
2838
|
|
|
2839
|
+
interface MarketplaceSellerInfo {
|
|
2840
|
+
readonly 'name': string;
|
|
2841
|
+
readonly 'id'?: string;
|
|
2842
|
+
readonly 'product_category'?: string;
|
|
2843
|
+
}
|
|
2844
|
+
|
|
2619
2845
|
interface Masterpass {
|
|
2620
2846
|
readonly 'type': 'masterpass';
|
|
2621
2847
|
readonly 'masterpass': io.flow.stripe.v0.models.MasterpassInformation;
|
|
@@ -2704,6 +2930,10 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2704
2930
|
readonly 'verified_phone'?: string;
|
|
2705
2931
|
}
|
|
2706
2932
|
|
|
2933
|
+
interface PaymentDetails {
|
|
2934
|
+
readonly 'marketplace_seller_info'?: io.flow.stripe.v0.models.MarketplaceSellerInfo;
|
|
2935
|
+
}
|
|
2936
|
+
|
|
2707
2937
|
interface PaymentIntent {
|
|
2708
2938
|
readonly 'id': string;
|
|
2709
2939
|
readonly 'object': string;
|
|
@@ -2828,6 +3058,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2828
3058
|
readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
2829
3059
|
readonly 'card'?: io.flow.stripe.v0.models.PaymentMethodCardDetails;
|
|
2830
3060
|
readonly 'card_present'?: any/*object*/;
|
|
3061
|
+
readonly 'klarna'?: any/*object*/;
|
|
2831
3062
|
readonly 'created': number;
|
|
2832
3063
|
readonly 'customer'?: string;
|
|
2833
3064
|
readonly 'livemode': boolean;
|
|
@@ -2868,6 +3099,13 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2868
3099
|
readonly 'card': io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
2869
3100
|
}
|
|
2870
3101
|
|
|
3102
|
+
interface PaymentMethodDataKlarna {
|
|
3103
|
+
readonly 'type': 'klarna';
|
|
3104
|
+
readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
3105
|
+
readonly 'metadata'?: any/*object*/;
|
|
3106
|
+
readonly 'klarna': io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
3107
|
+
}
|
|
3108
|
+
|
|
2871
3109
|
interface PaymentMethodDetailsCard {
|
|
2872
3110
|
readonly 'type': 'card';
|
|
2873
3111
|
readonly 'card': io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation;
|
|
@@ -2916,8 +3154,20 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2916
3154
|
readonly 'card': io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
2917
3155
|
}
|
|
2918
3156
|
|
|
3157
|
+
interface PaymentMethodFormKlarna {
|
|
3158
|
+
readonly 'type': 'klarna';
|
|
3159
|
+
readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
3160
|
+
readonly 'metadata'?: any/*object*/;
|
|
3161
|
+
readonly 'klarna': io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
3162
|
+
}
|
|
3163
|
+
|
|
3164
|
+
interface PaymentMethodKlarnaForm {
|
|
3165
|
+
readonly 'dob'?: io.flow.stripe.v0.models.KlarnaDobForm;
|
|
3166
|
+
}
|
|
3167
|
+
|
|
2919
3168
|
interface PaymentMethodOptions {
|
|
2920
3169
|
readonly 'card'?: io.flow.stripe.v0.models.PaymentMethodOptionsCard;
|
|
3170
|
+
readonly 'klarna'?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarna;
|
|
2921
3171
|
}
|
|
2922
3172
|
|
|
2923
3173
|
interface PaymentMethodOptionsCard {
|
|
@@ -2937,6 +3187,21 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2937
3187
|
|
|
2938
3188
|
interface PaymentMethodOptionsForm {
|
|
2939
3189
|
readonly 'card'?: io.flow.stripe.v0.models.PaymentMethodOptionsCardForm;
|
|
3190
|
+
readonly 'klarna'?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarnaForm;
|
|
3191
|
+
}
|
|
3192
|
+
|
|
3193
|
+
interface PaymentMethodOptionsKlarna {
|
|
3194
|
+
readonly 'capture_method'?: io.flow.stripe.v0.enums.CaptureMethod;
|
|
3195
|
+
readonly 'preferred_locale'?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
3196
|
+
readonly 'setup_future_usage'?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
3197
|
+
readonly 'payment_details'?: io.flow.stripe.v0.models.PaymentDetails;
|
|
3198
|
+
}
|
|
3199
|
+
|
|
3200
|
+
interface PaymentMethodOptionsKlarnaForm {
|
|
3201
|
+
readonly 'capture_method'?: io.flow.stripe.v0.enums.CaptureMethod;
|
|
3202
|
+
readonly 'preferred_locale'?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
3203
|
+
readonly 'setup_future_usage'?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
3204
|
+
readonly 'payment_details'?: io.flow.stripe.v0.models.PaymentDetails;
|
|
2940
3205
|
}
|
|
2941
3206
|
|
|
2942
3207
|
interface PaymentOutcome {
|
|
@@ -3234,9 +3499,9 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3234
3499
|
|
|
3235
3500
|
declare namespace io.flow.stripe.v0.unions {
|
|
3236
3501
|
type CardWallet = (io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout);
|
|
3237
|
-
type PaymentMethodData = (io.flow.stripe.v0.models.PaymentMethodDataCard);
|
|
3502
|
+
type PaymentMethodData = (io.flow.stripe.v0.models.PaymentMethodDataCard | io.flow.stripe.v0.models.PaymentMethodDataKlarna);
|
|
3238
3503
|
type PaymentMethodDetails = (io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna);
|
|
3239
|
-
type PaymentMethodForm = (io.flow.stripe.v0.models.PaymentMethodFormCard);
|
|
3504
|
+
type PaymentMethodForm = (io.flow.stripe.v0.models.PaymentMethodFormCard | io.flow.stripe.v0.models.PaymentMethodFormKlarna);
|
|
3240
3505
|
}
|
|
3241
3506
|
|
|
3242
3507
|
declare namespace io.flow.customer.v0.enums {
|
|
@@ -7804,6 +8069,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
7804
8069
|
readonly 'channel_id': string;
|
|
7805
8070
|
readonly 'external_order_reference': string;
|
|
7806
8071
|
readonly 'payment_request_id'?: string;
|
|
8072
|
+
readonly 'order_edit_payment_request_ids'?: string[];
|
|
7807
8073
|
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
7808
8074
|
readonly 'reasons': io.flow.channel.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
7809
8075
|
readonly 'next_action_from'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
@@ -8678,6 +8944,7 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
8678
8944
|
}
|
|
8679
8945
|
|
|
8680
8946
|
interface ReportingShipment {
|
|
8947
|
+
readonly 'remittance'?: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
8681
8948
|
readonly 'carrier': string;
|
|
8682
8949
|
readonly 'tracking_number'?: string;
|
|
8683
8950
|
}
|
|
@@ -10945,6 +11212,17 @@ declare namespace io.flow.payment.request.bundle.v0.models {
|
|
|
10945
11212
|
}
|
|
10946
11213
|
|
|
10947
11214
|
declare namespace io.flow.ratecard.v0.models {
|
|
11215
|
+
interface AdditionalHandlingServiceFee {
|
|
11216
|
+
readonly 'discriminator': 'additional_handling_service_fee';
|
|
11217
|
+
readonly 'length_girth_threshold'?: number;
|
|
11218
|
+
readonly 'length_threshold'?: number;
|
|
11219
|
+
readonly 'width_threshold'?: number;
|
|
11220
|
+
readonly 'dimensional_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11221
|
+
readonly 'weight_threshold'?: number;
|
|
11222
|
+
readonly 'weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11223
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11224
|
+
}
|
|
11225
|
+
|
|
10948
11226
|
interface CrossdockRatecardFee {
|
|
10949
11227
|
readonly 'discriminator': 'crossdock_ratecard_fee';
|
|
10950
11228
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
@@ -10989,6 +11267,17 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
10989
11267
|
readonly 'ends_at'?: string;
|
|
10990
11268
|
}
|
|
10991
11269
|
|
|
11270
|
+
interface EeiFilingRatecardFee {
|
|
11271
|
+
readonly 'discriminator': 'eei_filing_ratecard_fee';
|
|
11272
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11273
|
+
}
|
|
11274
|
+
|
|
11275
|
+
interface EeiFilingServiceFee {
|
|
11276
|
+
readonly 'discriminator': 'eei_filing_service_fee';
|
|
11277
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11278
|
+
readonly 'value_threshold': io.flow.common.v0.models.Money;
|
|
11279
|
+
}
|
|
11280
|
+
|
|
10992
11281
|
interface EmergencySituationSurchargeRatecardFee {
|
|
10993
11282
|
readonly 'discriminator': 'emergency_situation_surcharge_ratecard_fee';
|
|
10994
11283
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
@@ -11014,6 +11303,31 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11014
11303
|
readonly 'unit': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11015
11304
|
}
|
|
11016
11305
|
|
|
11306
|
+
interface FixedCurrencyConversionRatecardFee {
|
|
11307
|
+
readonly 'discriminator': 'fixed_currency_conversion_ratecard_fee';
|
|
11308
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11309
|
+
}
|
|
11310
|
+
|
|
11311
|
+
interface FixedCurrencyConversionServiceFee {
|
|
11312
|
+
readonly 'discriminator': 'fixed_currency_conversion_service_fee';
|
|
11313
|
+
readonly 'conditions': io.flow.ratecard.v0.models.FixedFeeCondition[];
|
|
11314
|
+
}
|
|
11315
|
+
|
|
11316
|
+
interface FixedDdpRatecardFee {
|
|
11317
|
+
readonly 'discriminator': 'fixed_ddp_ratecard_fee';
|
|
11318
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11319
|
+
}
|
|
11320
|
+
|
|
11321
|
+
interface FixedDdpServiceFee {
|
|
11322
|
+
readonly 'discriminator': 'fixed_ddp_service_fee';
|
|
11323
|
+
readonly 'conditions': io.flow.ratecard.v0.models.FixedFeeCondition[];
|
|
11324
|
+
}
|
|
11325
|
+
|
|
11326
|
+
interface FixedFeeCondition {
|
|
11327
|
+
readonly 'countries': string[];
|
|
11328
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11329
|
+
}
|
|
11330
|
+
|
|
11017
11331
|
interface FuelSurchargeAmountByWeightServiceFee {
|
|
11018
11332
|
readonly 'discriminator': 'fuel_surcharge_amount_by_weight_service_fee';
|
|
11019
11333
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
@@ -11084,6 +11398,15 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11084
11398
|
readonly 'ratecard': io.flow.ratecard.v0.models.RatecardSummary;
|
|
11085
11399
|
}
|
|
11086
11400
|
|
|
11401
|
+
interface LargePackageServiceFee {
|
|
11402
|
+
readonly 'discriminator': 'large_package_service_fee';
|
|
11403
|
+
readonly 'length_girth_threshold'?: number;
|
|
11404
|
+
readonly 'dimensional_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11405
|
+
readonly 'weight_threshold'?: number;
|
|
11406
|
+
readonly 'weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11407
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11408
|
+
}
|
|
11409
|
+
|
|
11087
11410
|
interface OversizePieceSurchargeRatecardFee {
|
|
11088
11411
|
readonly 'discriminator': 'oversize_piece_surcharge_ratecard_fee';
|
|
11089
11412
|
readonly 'dimensional_threshold'?: number;
|
|
@@ -11335,6 +11658,12 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11335
11658
|
readonly 'ratecard': io.flow.ratecard.v0.models.Ratecard;
|
|
11336
11659
|
}
|
|
11337
11660
|
|
|
11661
|
+
interface RemoteAreaByWeightServiceFee {
|
|
11662
|
+
readonly 'discriminator': 'remote_area_by_weight_service_fee';
|
|
11663
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11664
|
+
readonly 'weight_unit': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11665
|
+
}
|
|
11666
|
+
|
|
11338
11667
|
interface RemoteAreaRatecardFee {
|
|
11339
11668
|
readonly 'discriminator': 'remote_area_ratecard_fee';
|
|
11340
11669
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
@@ -11350,6 +11679,17 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11350
11679
|
readonly 'amount': number;
|
|
11351
11680
|
}
|
|
11352
11681
|
|
|
11682
|
+
interface SecurityRatecardFee {
|
|
11683
|
+
readonly 'discriminator': 'security_ratecard_fee';
|
|
11684
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11685
|
+
}
|
|
11686
|
+
|
|
11687
|
+
interface SecurityServiceFee {
|
|
11688
|
+
readonly 'discriminator': 'security_service_fee';
|
|
11689
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11690
|
+
readonly 'countries': string[];
|
|
11691
|
+
}
|
|
11692
|
+
|
|
11353
11693
|
interface ShipmentWindow {
|
|
11354
11694
|
readonly 'from': number;
|
|
11355
11695
|
readonly 'to': number;
|
|
@@ -11359,8 +11699,8 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11359
11699
|
declare namespace io.flow.ratecard.v0.unions {
|
|
11360
11700
|
type FuelSurchargeRate = (io.flow.ratecard.v0.models.FuelSurchargePercent | io.flow.ratecard.v0.models.FuelSurchargeByWeight);
|
|
11361
11701
|
type RatecardEstimate = (io.flow.ratecard.v0.models.RatecardEstimateV1 | io.flow.ratecard.v0.models.RatecardEstimateV2 | io.flow.ratecard.v0.models.RatecardEstimateV3 | io.flow.ratecard.v0.models.RatecardEstimateV4);
|
|
11362
|
-
type RatecardFee = (io.flow.ratecard.v0.models.DdpRatecardFee | io.flow.ratecard.v0.models.FuelSurchargeRatecardFee | io.flow.ratecard.v0.models.OversizePieceSurchargeRatecardFee | io.flow.ratecard.v0.models.ReturnPackageRatecardFee | io.flow.ratecard.v0.models.CrossdockRatecardFee | io.flow.ratecard.v0.models.RemoteAreaRatecardFee | io.flow.ratecard.v0.models.EmergencySituationSurchargeRatecardFee | io.flow.ratecard.v0.models.PeakSurchargeRatecardFee | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeRatecardFee);
|
|
11363
|
-
type ServiceFee = (io.flow.ratecard.v0.models.FuelSurchargeServiceFee | io.flow.ratecard.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.ratecard.v0.models.RemoteAreaServiceFee | io.flow.ratecard.v0.models.EmergencySituationSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeByWeightServiceFee | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeServiceFee | io.flow.ratecard.v0.models.OversizePieceSurchargeServiceFee);
|
|
11702
|
+
type RatecardFee = (io.flow.ratecard.v0.models.DdpRatecardFee | io.flow.ratecard.v0.models.FuelSurchargeRatecardFee | io.flow.ratecard.v0.models.OversizePieceSurchargeRatecardFee | io.flow.ratecard.v0.models.ReturnPackageRatecardFee | io.flow.ratecard.v0.models.CrossdockRatecardFee | io.flow.ratecard.v0.models.RemoteAreaRatecardFee | io.flow.ratecard.v0.models.EmergencySituationSurchargeRatecardFee | io.flow.ratecard.v0.models.PeakSurchargeRatecardFee | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeRatecardFee | io.flow.ratecard.v0.models.SecurityRatecardFee | io.flow.ratecard.v0.models.EeiFilingRatecardFee | io.flow.ratecard.v0.models.FixedDdpRatecardFee | io.flow.ratecard.v0.models.FixedCurrencyConversionRatecardFee);
|
|
11703
|
+
type ServiceFee = (io.flow.ratecard.v0.models.FuelSurchargeServiceFee | io.flow.ratecard.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.ratecard.v0.models.RemoteAreaServiceFee | io.flow.ratecard.v0.models.EmergencySituationSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeByWeightServiceFee | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeServiceFee | io.flow.ratecard.v0.models.OversizePieceSurchargeServiceFee | io.flow.ratecard.v0.models.RemoteAreaByWeightServiceFee | io.flow.ratecard.v0.models.AdditionalHandlingServiceFee | io.flow.ratecard.v0.models.LargePackageServiceFee | io.flow.ratecard.v0.models.SecurityServiceFee | io.flow.ratecard.v0.models.FixedDdpServiceFee | io.flow.ratecard.v0.models.FixedCurrencyConversionServiceFee | io.flow.ratecard.v0.models.EeiFilingServiceFee);
|
|
11364
11704
|
}
|
|
11365
11705
|
|
|
11366
11706
|
declare namespace io.flow.token.v0.models {
|
|
@@ -11863,7 +12203,7 @@ declare namespace io.flow.price.v0.unions {
|
|
|
11863
12203
|
|
|
11864
12204
|
declare namespace io.flow.trueup.v0.enums {
|
|
11865
12205
|
type CarrierChargeReason = 'return_to_origin' | 'rejection' | 'other';
|
|
11866
|
-
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
12206
|
+
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security_ratecard_fee' | 'eei_filing_ratecard_fee' | 'fixed_ddp_ratecard_fee' | 'fixed_currency_conversion_ratecard_fee';
|
|
11867
12207
|
}
|
|
11868
12208
|
|
|
11869
12209
|
declare namespace io.flow.trueup.v0.models {
|
|
@@ -12814,7 +13154,7 @@ declare namespace io.flow.inventory.v0.unions {
|
|
|
12814
13154
|
declare namespace io.flow.permission.v0.enums {
|
|
12815
13155
|
type AuthenticationTechnique = 'anonymous' | 'session' | 'token' | 'partner_token' | 'user';
|
|
12816
13156
|
type FlowBehavior = 'view_consumer_data';
|
|
12817
|
-
type FlowRole = 'organization_admin' | 'organization_merchant' | 'organization_customer_service' | 'organization_fulfillment' | 'organization_marketing' | 'organization_finance' | 'flow_operations' | 'channel_admin' | 'channel_organization_admin';
|
|
13157
|
+
type FlowRole = 'organization_admin' | 'organization_merchant' | 'organization_customer_service' | 'organization_fulfillment' | 'organization_marketing' | 'organization_finance' | 'organization_classification' | 'flow_operations' | 'channel_admin' | 'channel_organization_admin';
|
|
12818
13158
|
type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
12819
13159
|
}
|
|
12820
13160
|
|
|
@@ -12958,6 +13298,7 @@ declare namespace io.flow.item.v0.models {
|
|
|
12958
13298
|
|
|
12959
13299
|
declare namespace io.flow.billing.internal.v0.enums {
|
|
12960
13300
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
13301
|
+
type AccountStatus = 'active' | 'inactive';
|
|
12961
13302
|
type AccountType = 'channel' | 'organization';
|
|
12962
13303
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
12963
13304
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
@@ -12967,7 +13308,7 @@ declare namespace io.flow.billing.internal.v0.enums {
|
|
|
12967
13308
|
type BillingStatementBatchFileKey = 'summary';
|
|
12968
13309
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
12969
13310
|
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge';
|
|
12970
|
-
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge';
|
|
13311
|
+
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
12971
13312
|
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
12972
13313
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
12973
13314
|
type DisputeTransactionType = 'adjustment' | 'dispute';
|
|
@@ -13058,7 +13399,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13058
13399
|
readonly 'merchant_of_record_fee'?: number;
|
|
13059
13400
|
readonly 'duty_guarantee_fee'?: number;
|
|
13060
13401
|
readonly 'transfer_fee'?: number;
|
|
13061
|
-
readonly '
|
|
13402
|
+
readonly 'negative_balance_fee'?: number;
|
|
13062
13403
|
readonly 'order_service_fee'?: io.flow.billing.internal.v0.models.TieredFee;
|
|
13063
13404
|
readonly 'label_fees'?: io.flow.billing.internal.v0.models.AccountSettingLabelFees;
|
|
13064
13405
|
readonly 'charge_label_cost_directly': boolean;
|
|
@@ -13243,6 +13584,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13243
13584
|
readonly 'b2b_tax_remittance_days'?: number;
|
|
13244
13585
|
readonly 'mor_fee'?: number;
|
|
13245
13586
|
readonly 'duty_guarantee_fee'?: number;
|
|
13587
|
+
readonly 'negative_balance_fee'?: number;
|
|
13246
13588
|
readonly 'order_service_fee'?: io.flow.billing.internal.v0.models.TieredFee;
|
|
13247
13589
|
readonly 'label_fee'?: io.flow.billing.internal.v0.models.TieredFee;
|
|
13248
13590
|
}
|
|
@@ -13340,6 +13682,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13340
13682
|
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
13341
13683
|
readonly 'id': string;
|
|
13342
13684
|
readonly 'key'?: string;
|
|
13685
|
+
readonly 'status': io.flow.billing.internal.v0.enums.AccountStatus;
|
|
13343
13686
|
readonly 'origin'?: io.flow.billing.internal.v0.models.AccountOrigin;
|
|
13344
13687
|
readonly 'currency': string;
|
|
13345
13688
|
readonly 'updated_at': string;
|
|
@@ -13556,6 +13899,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13556
13899
|
readonly 'source': io.flow.billing.internal.v0.models.AccountSource;
|
|
13557
13900
|
readonly 'id': string;
|
|
13558
13901
|
readonly 'key'?: string;
|
|
13902
|
+
readonly 'status': io.flow.billing.internal.v0.enums.AccountStatus;
|
|
13559
13903
|
readonly 'origin'?: io.flow.billing.internal.v0.models.AccountOrigin;
|
|
13560
13904
|
readonly 'currency': string;
|
|
13561
13905
|
readonly 'updated_at': string;
|
|
@@ -13570,6 +13914,18 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13570
13914
|
readonly 'created_at': string;
|
|
13571
13915
|
}
|
|
13572
13916
|
|
|
13917
|
+
interface FlowAccountStatusForm {
|
|
13918
|
+
readonly 'status': io.flow.billing.internal.v0.enums.AccountStatus;
|
|
13919
|
+
}
|
|
13920
|
+
|
|
13921
|
+
interface FlowBillingStatement {
|
|
13922
|
+
readonly 'id': string;
|
|
13923
|
+
readonly 'account': io.flow.billing.v0.models.AccountReference;
|
|
13924
|
+
readonly 'period': io.flow.common.v0.models.DatetimeRange;
|
|
13925
|
+
readonly 'totals': io.flow.billing.internal.v0.models.BillingStatementTotals;
|
|
13926
|
+
readonly 'attachments': io.flow.billing.internal.v0.models.BillingStatementAttachment[];
|
|
13927
|
+
}
|
|
13928
|
+
|
|
13573
13929
|
interface FxFee {
|
|
13574
13930
|
readonly 'base': io.flow.common.v0.models.Money;
|
|
13575
13931
|
readonly 'local': io.flow.common.v0.models.Money;
|
|
@@ -13740,6 +14096,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13740
14096
|
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
13741
14097
|
readonly 'id': string;
|
|
13742
14098
|
readonly 'key'?: string;
|
|
14099
|
+
readonly 'status': io.flow.billing.internal.v0.enums.AccountStatus;
|
|
13743
14100
|
readonly 'origin'?: io.flow.billing.internal.v0.models.AccountOrigin;
|
|
13744
14101
|
readonly 'currency': string;
|
|
13745
14102
|
readonly 'updated_at': string;
|
|
@@ -14051,12 +14408,16 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
14051
14408
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
14052
14409
|
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance';
|
|
14053
14410
|
type StatementAttachmentType = 'csv';
|
|
14054
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'trueup' | 'carrier_charge' | '
|
|
14411
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
14055
14412
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl';
|
|
14056
14413
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
14057
14414
|
}
|
|
14058
14415
|
|
|
14059
14416
|
declare namespace io.flow.billing.v0.models {
|
|
14417
|
+
interface AccountIdReference {
|
|
14418
|
+
readonly 'id': string;
|
|
14419
|
+
}
|
|
14420
|
+
|
|
14060
14421
|
interface AccountReference {
|
|
14061
14422
|
readonly 'id': string;
|
|
14062
14423
|
readonly 'currency': string;
|
|
@@ -14153,6 +14514,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
14153
14514
|
interface ChannelTransaction {
|
|
14154
14515
|
readonly 'statement'?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
14155
14516
|
readonly 'id': string;
|
|
14517
|
+
readonly 'account': io.flow.billing.v0.models.AccountIdReference;
|
|
14156
14518
|
readonly 'metadata'?: io.flow.billing.v0.unions.TransactionMetadata;
|
|
14157
14519
|
readonly 'order'?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
14158
14520
|
readonly 'payment_request'?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
@@ -14179,6 +14541,26 @@ declare namespace io.flow.billing.v0.models {
|
|
|
14179
14541
|
readonly 'description'?: string;
|
|
14180
14542
|
}
|
|
14181
14543
|
|
|
14544
|
+
interface FlowTransaction {
|
|
14545
|
+
readonly 'statement'?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
14546
|
+
readonly 'id': string;
|
|
14547
|
+
readonly 'account': io.flow.billing.v0.models.AccountIdReference;
|
|
14548
|
+
readonly 'metadata'?: io.flow.billing.v0.unions.TransactionMetadata;
|
|
14549
|
+
readonly 'order'?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
14550
|
+
readonly 'payment_request'?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
14551
|
+
readonly 'currency': string;
|
|
14552
|
+
readonly 'source': io.flow.billing.v0.enums.TransactionSource;
|
|
14553
|
+
readonly 'parent'?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
14554
|
+
readonly 'gross': number;
|
|
14555
|
+
readonly 'fees': io.flow.billing.v0.models.FeeDeduction[];
|
|
14556
|
+
readonly 'withholdings': io.flow.billing.v0.models.WithholdingDeduction[];
|
|
14557
|
+
readonly 'discounts': io.flow.billing.v0.models.BillingDiscount[];
|
|
14558
|
+
readonly 'net': number;
|
|
14559
|
+
readonly 'identifiers': Record<string, string>;
|
|
14560
|
+
readonly 'created_at': string;
|
|
14561
|
+
readonly 'updated_at': string;
|
|
14562
|
+
}
|
|
14563
|
+
|
|
14182
14564
|
interface OrganizationBankAccount {
|
|
14183
14565
|
readonly 'id': string;
|
|
14184
14566
|
readonly 'key': string;
|
|
@@ -14242,6 +14624,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
14242
14624
|
|
|
14243
14625
|
interface PayoutTransaction {
|
|
14244
14626
|
readonly 'id': string;
|
|
14627
|
+
readonly 'account': io.flow.billing.v0.models.AccountIdReference;
|
|
14245
14628
|
readonly 'metadata'?: io.flow.billing.v0.unions.TransactionMetadata;
|
|
14246
14629
|
readonly 'order'?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
14247
14630
|
readonly 'payment_request'?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
@@ -14291,6 +14674,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
14291
14674
|
interface Transaction {
|
|
14292
14675
|
readonly 'statement'?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
14293
14676
|
readonly 'id': string;
|
|
14677
|
+
readonly 'account': io.flow.billing.v0.models.AccountIdReference;
|
|
14294
14678
|
readonly 'metadata'?: io.flow.billing.v0.unions.TransactionMetadata;
|
|
14295
14679
|
readonly 'order'?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
14296
14680
|
readonly 'payment_request'?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
@@ -14313,6 +14697,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
14313
14697
|
readonly 'label_created_at': string;
|
|
14314
14698
|
readonly 'carrier_id': string;
|
|
14315
14699
|
readonly 'carrier_tracking_number': string;
|
|
14700
|
+
readonly 'revenue_share_percentage': number;
|
|
14316
14701
|
readonly 'outbound'?: io.flow.billing.v0.models.TransactionMetadataCarrierChargeOutbound;
|
|
14317
14702
|
}
|
|
14318
14703
|
|
|
@@ -15628,8 +16013,9 @@ declare namespace io.flow.checkout.v0.unions {
|
|
|
15628
16013
|
}
|
|
15629
16014
|
|
|
15630
16015
|
declare namespace io.flow.organization.onboarding.state.v0.enums {
|
|
16016
|
+
type MerchantDisabledReason = 'merchant_deactivated' | 'merchant_rejected';
|
|
15631
16017
|
type MerchantRejectedReason = 'merchant_ubo_is_pep' | 'merchant_catalog_is_unsupportable' | 'merchant_failed_kyb_review';
|
|
15632
|
-
type OnboardingBlockedReason = 'street_address_is_blank_3pl' | 'street_address_is_po_box_3pl' | 'business_street_address_is_blank' | 'business_street_address_is_po_box' | 'exception_merchant';
|
|
16018
|
+
type OnboardingBlockedReason = 'street_address_is_blank_3pl' | 'street_address_is_po_box_3pl' | 'business_street_address_is_blank' | 'business_street_address_is_po_box' | 'exception_merchant' | 'application_missing';
|
|
15633
16019
|
}
|
|
15634
16020
|
|
|
15635
16021
|
declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
@@ -15656,6 +16042,11 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
15656
16042
|
readonly 'reason': string;
|
|
15657
16043
|
}
|
|
15658
16044
|
|
|
16045
|
+
interface MerchantDisabled {
|
|
16046
|
+
readonly 'discriminator': 'merchant_disabled';
|
|
16047
|
+
readonly 'reason': io.flow.organization.onboarding.state.v0.enums.MerchantDisabledReason;
|
|
16048
|
+
}
|
|
16049
|
+
|
|
15659
16050
|
interface MerchantRejected {
|
|
15660
16051
|
readonly 'discriminator': 'merchant_rejected';
|
|
15661
16052
|
readonly 'reason': io.flow.organization.onboarding.state.v0.enums.MerchantRejectedReason;
|
|
@@ -15699,7 +16090,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
15699
16090
|
}
|
|
15700
16091
|
|
|
15701
16092
|
declare namespace io.flow.organization.onboarding.state.v0.unions {
|
|
15702
|
-
type OnboardingState = (io.flow.organization.onboarding.state.v0.models.InComplianceReview | io.flow.organization.onboarding.state.v0.models.SetupInProgress | io.flow.organization.onboarding.state.v0.models.MerchantRejected | io.flow.organization.onboarding.state.v0.models.SetupBlocked | io.flow.organization.onboarding.state.v0.models.SetupCompleted | io.flow.organization.onboarding.state.v0.models.MerchantActivated | io.flow.organization.onboarding.state.v0.models.MerchantDeactivated);
|
|
16093
|
+
type OnboardingState = (io.flow.organization.onboarding.state.v0.models.InComplianceReview | io.flow.organization.onboarding.state.v0.models.SetupInProgress | io.flow.organization.onboarding.state.v0.models.MerchantRejected | io.flow.organization.onboarding.state.v0.models.SetupBlocked | io.flow.organization.onboarding.state.v0.models.SetupCompleted | io.flow.organization.onboarding.state.v0.models.MerchantActivated | io.flow.organization.onboarding.state.v0.models.MerchantDeactivated | io.flow.organization.onboarding.state.v0.models.MerchantDisabled);
|
|
15703
16094
|
}
|
|
15704
16095
|
|
|
15705
16096
|
declare namespace io.flow.fraud.v0.enums {
|
|
@@ -16059,6 +16450,7 @@ declare namespace io.flow.billing.bank.account.v0.unions {
|
|
|
16059
16450
|
|
|
16060
16451
|
declare namespace io.flow.internal.v0.enums {
|
|
16061
16452
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
16453
|
+
type AccountStatus = 'active' | 'inactive';
|
|
16062
16454
|
type AccountType = 'channel' | 'organization';
|
|
16063
16455
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
16064
16456
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
@@ -16069,7 +16461,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16069
16461
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
16070
16462
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
16071
16463
|
type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
|
|
16072
|
-
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'queued_record_snooze_count' | 'queued_record_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_single_account_max';
|
|
16464
|
+
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'queued_record_snooze_count' | 'queued_record_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_single_account_max' | 'inactive_accounts_count' | 'inactive_account_pending_payment_promise_count' | 'inactive_account_pending_payment_promise_total';
|
|
16073
16465
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
|
|
16074
16466
|
type BillingStatementBatchFileKey = 'summary';
|
|
16075
16467
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
@@ -16078,7 +16470,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16078
16470
|
type BlazeCheckoutStep = 'customer_info' | 'delivery' | 'payment';
|
|
16079
16471
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
16080
16472
|
type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax' | 'dtce_with_inclusive_pricing';
|
|
16081
|
-
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge';
|
|
16473
|
+
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
16082
16474
|
type CarrierChargeType = 'label' | 'other';
|
|
16083
16475
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
16084
16476
|
type CarrierValidationStatus = 'success' | 'error';
|
|
@@ -16198,7 +16590,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16198
16590
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
16199
16591
|
type EmptyAttribute = 'irrelevant';
|
|
16200
16592
|
type ErpFileType = 'vendor';
|
|
16201
|
-
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_deleted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'sales_record_upserted' | 'sales_record_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
16593
|
+
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'sales_record_upserted' | 'sales_record_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'matias_item_upserted' | 'matias_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
16202
16594
|
type ExperienceImportType = 'experience_with_settings';
|
|
16203
16595
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
16204
16596
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -16246,6 +16638,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16246
16638
|
type MarketingGatewayPlatform = 'google' | 'facebook' | 'adroll' | 'aliexpress' | 'amazon' | 'bing' | 'criteo' | 'fruugo' | 'pinterest' | 'rakuten_japan' | 'wish' | 'snapchat' | 'stylight';
|
|
16247
16639
|
type MarketingGatewayProductStatus = 'approved' | 'not_approved' | 'pending' | 'not_found' | 'excluded';
|
|
16248
16640
|
type MarketingGatewaySchemaCompatibility = 'google' | 'facebook_primary' | 'facebook_country_override' | 'supplemental';
|
|
16641
|
+
type MatiasItemType = 'physical' | 'digital';
|
|
16249
16642
|
type MixedBagWeight = '0' | '1' | '2';
|
|
16250
16643
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
16251
16644
|
type NoLiabilityReasonCode = 'zero_basis' | 'zero_rate_on_goods' | 'zero_rate_on_sale' | 'goods_above_value_threshold' | 'goods_below_value_threshold' | 'order_below_de_minimis_threshold' | 'amount_below_de_minimis_threshold' | 'delivered_unpaid' | 'duty_free_domestic' | 'duty_free_intra_community' | 'duty_free_by_trade_agreement';
|
|
@@ -16262,7 +16655,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16262
16655
|
type OrderChargeTrigger = 'first_shipment' | 'last_shipment' | 'shipment_exhausted';
|
|
16263
16656
|
type OrderLifecycleEvent = 'order_placed' | 'ready_to_fulfill';
|
|
16264
16657
|
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
16265
|
-
type OrderValidationStatus = 'success' | 'failed' | 'unresolvable';
|
|
16658
|
+
type OrderValidationStatus = 'success' | 'failed' | 'label_created' | 'unresolvable';
|
|
16266
16659
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
16267
16660
|
type OrganizationMetricType = 'organization_restriction_snapshot' | 'organization_restriction_status';
|
|
16268
16661
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
@@ -16486,7 +16879,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16486
16879
|
readonly 'merchant_of_record_fee'?: number;
|
|
16487
16880
|
readonly 'duty_guarantee_fee'?: number;
|
|
16488
16881
|
readonly 'transfer_fee'?: number;
|
|
16489
|
-
readonly '
|
|
16882
|
+
readonly 'negative_balance_fee'?: number;
|
|
16490
16883
|
readonly 'order_service_fee'?: io.flow.internal.v0.models.TieredFee;
|
|
16491
16884
|
readonly 'label_fees'?: io.flow.internal.v0.models.AccountSettingLabelFees;
|
|
16492
16885
|
readonly 'charge_label_cost_directly': boolean;
|
|
@@ -16574,6 +16967,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16574
16967
|
readonly 'quantity': number;
|
|
16575
16968
|
}
|
|
16576
16969
|
|
|
16970
|
+
interface AdditionalImportTax {
|
|
16971
|
+
readonly 'name'?: string;
|
|
16972
|
+
readonly 'additional_import_tax_value'?: io.flow.common.v0.models.Money;
|
|
16973
|
+
readonly 'rate'?: number;
|
|
16974
|
+
}
|
|
16975
|
+
|
|
16577
16976
|
interface AddressConfigurationProvinceSetting {
|
|
16578
16977
|
readonly 'code': io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
16579
16978
|
}
|
|
@@ -17147,14 +17546,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17147
17546
|
readonly 'total': io.flow.common.v0.models.Price;
|
|
17148
17547
|
}
|
|
17149
17548
|
|
|
17150
|
-
interface BankPaymentDeleted {
|
|
17151
|
-
readonly 'discriminator': 'bank_payment_deleted';
|
|
17152
|
-
readonly 'event_id': string;
|
|
17153
|
-
readonly 'timestamp': string;
|
|
17154
|
-
readonly 'organization': string;
|
|
17155
|
-
readonly 'bank_payment': io.flow.internal.v0.models.BankPayment;
|
|
17156
|
-
}
|
|
17157
|
-
|
|
17158
17549
|
interface BankPaymentDeletedV2 {
|
|
17159
17550
|
readonly 'discriminator': 'bank_payment_deleted_v2';
|
|
17160
17551
|
readonly 'event_id': string;
|
|
@@ -17311,6 +17702,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17311
17702
|
readonly 'b2b_tax_remittance_days'?: number;
|
|
17312
17703
|
readonly 'mor_fee'?: number;
|
|
17313
17704
|
readonly 'duty_guarantee_fee'?: number;
|
|
17705
|
+
readonly 'negative_balance_fee'?: number;
|
|
17314
17706
|
readonly 'order_service_fee'?: io.flow.internal.v0.models.TieredFee;
|
|
17315
17707
|
readonly 'label_fee'?: io.flow.internal.v0.models.TieredFee;
|
|
17316
17708
|
}
|
|
@@ -17740,6 +18132,51 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17740
18132
|
readonly 'name': string;
|
|
17741
18133
|
}
|
|
17742
18134
|
|
|
18135
|
+
interface CalculationStampingLineItem {
|
|
18136
|
+
readonly 'id'?: string;
|
|
18137
|
+
readonly 'hs_code'?: string;
|
|
18138
|
+
readonly 'duty': io.flow.common.v0.models.Money;
|
|
18139
|
+
readonly 'duty_rate': number;
|
|
18140
|
+
readonly 'sales_tax': io.flow.common.v0.models.Money;
|
|
18141
|
+
readonly 'sales_tax_rate': number;
|
|
18142
|
+
readonly 'additional_tax'?: io.flow.common.v0.models.Money;
|
|
18143
|
+
readonly 'additional_tax_rate'?: number;
|
|
18144
|
+
readonly 'total': io.flow.common.v0.models.Money;
|
|
18145
|
+
}
|
|
18146
|
+
|
|
18147
|
+
interface CalculationStampingShippingLine {
|
|
18148
|
+
readonly 'first_ship_from'?: string;
|
|
18149
|
+
readonly 'duty'?: number;
|
|
18150
|
+
readonly 'duty_rate'?: number;
|
|
18151
|
+
readonly 'tax'?: number;
|
|
18152
|
+
readonly 'tax_rate'?: number;
|
|
18153
|
+
readonly 'price'?: number;
|
|
18154
|
+
readonly 'duty_rate_on_shipping'?: number;
|
|
18155
|
+
readonly 'tax_rate_on_shipping'?: number;
|
|
18156
|
+
readonly 'import_fee'?: number;
|
|
18157
|
+
}
|
|
18158
|
+
|
|
18159
|
+
interface CalculationStep {
|
|
18160
|
+
readonly 'discriminator': 'calculation_step';
|
|
18161
|
+
readonly 'primary_identifier': string;
|
|
18162
|
+
readonly 'line_item': io.flow.internal.v0.models.CalculationStampingLineItem[];
|
|
18163
|
+
readonly 'shipping_line_item': io.flow.internal.v0.models.CalculationStampingShippingLine;
|
|
18164
|
+
readonly 'total': io.flow.internal.v0.models.CalculationTotal;
|
|
18165
|
+
readonly 'explanation'?: string;
|
|
18166
|
+
}
|
|
18167
|
+
|
|
18168
|
+
interface CalculationTotal {
|
|
18169
|
+
readonly 'customs_value_name': string;
|
|
18170
|
+
readonly 'customs_value_amount': io.flow.common.v0.models.Money;
|
|
18171
|
+
readonly 'additional_import_included'?: boolean;
|
|
18172
|
+
readonly 'additional_import_value'?: io.flow.common.v0.models.Money;
|
|
18173
|
+
readonly 'duty': io.flow.common.v0.models.Money;
|
|
18174
|
+
readonly 'sales_tax': io.flow.common.v0.models.Money;
|
|
18175
|
+
readonly 'additional_tax_import_included': boolean;
|
|
18176
|
+
readonly 'additional_tax'?: io.flow.common.v0.models.Money;
|
|
18177
|
+
readonly 'additional_import_tax'?: io.flow.internal.v0.models.AdditionalImportTax[];
|
|
18178
|
+
}
|
|
18179
|
+
|
|
17743
18180
|
interface CalculatorDtcePostBody {
|
|
17744
18181
|
readonly 'products': io.flow.internal.v0.models.CalculatorDtceProduct[];
|
|
17745
18182
|
readonly 'countryCodeFrom': string;
|
|
@@ -18066,6 +18503,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18066
18503
|
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
18067
18504
|
readonly 'id': string;
|
|
18068
18505
|
readonly 'key'?: string;
|
|
18506
|
+
readonly 'status': io.flow.internal.v0.enums.AccountStatus;
|
|
18069
18507
|
readonly 'origin'?: io.flow.internal.v0.models.AccountOrigin;
|
|
18070
18508
|
readonly 'currency': string;
|
|
18071
18509
|
readonly 'updated_at': string;
|
|
@@ -18237,6 +18675,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18237
18675
|
readonly 'tracking_numbers'?: string[];
|
|
18238
18676
|
readonly 'carrier'?: io.flow.reference.v0.models.CarrierService;
|
|
18239
18677
|
readonly 'duty_paid': boolean;
|
|
18678
|
+
readonly 'shop_id'?: string;
|
|
18240
18679
|
}
|
|
18241
18680
|
|
|
18242
18681
|
interface ChannelOrderAcceptance {
|
|
@@ -18246,6 +18685,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18246
18685
|
readonly 'channel_id': string;
|
|
18247
18686
|
readonly 'external_order_reference': string;
|
|
18248
18687
|
readonly 'payment_request_id'?: string;
|
|
18688
|
+
readonly 'order_edit_payment_request_ids'?: string[];
|
|
18249
18689
|
readonly 'status': io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
18250
18690
|
readonly 'reasons': io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
18251
18691
|
readonly 'next_action_from'?: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
@@ -20747,7 +21187,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20747
21187
|
readonly 'invoice_reference': string;
|
|
20748
21188
|
readonly 'signature_url': string;
|
|
20749
21189
|
readonly 'signature_date': string;
|
|
20750
|
-
readonly 'signature_name'
|
|
21190
|
+
readonly 'signature_name'?: string;
|
|
20751
21191
|
readonly 'line_items': io.flow.internal.v0.models.InvoiceLineItem[];
|
|
20752
21192
|
readonly 'currency': string;
|
|
20753
21193
|
readonly 'delivered_duty': string;
|
|
@@ -20797,6 +21237,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20797
21237
|
readonly 'invoice': io.flow.internal.v0.models.CommercialInvoiceInternal;
|
|
20798
21238
|
}
|
|
20799
21239
|
|
|
21240
|
+
interface CommercialInvoiceSummary {
|
|
21241
|
+
readonly 'id': string;
|
|
21242
|
+
readonly 'label_id': string;
|
|
21243
|
+
readonly 'line_items': io.flow.internal.v0.models.InvoiceLineItem[];
|
|
21244
|
+
}
|
|
21245
|
+
|
|
20800
21246
|
interface CompanyReference {
|
|
20801
21247
|
readonly 'id': string;
|
|
20802
21248
|
}
|
|
@@ -21712,6 +22158,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21712
22158
|
readonly 'bank_code': string;
|
|
21713
22159
|
readonly 'id': string;
|
|
21714
22160
|
readonly 'tax_code'?: string;
|
|
22161
|
+
readonly 'tax_code_2'?: string;
|
|
22162
|
+
readonly 'debit_entry_code'?: string;
|
|
22163
|
+
readonly 'credit_entry_code'?: string;
|
|
21715
22164
|
readonly 'vat_flag'?: string;
|
|
21716
22165
|
readonly 'w_tax_percent'?: string;
|
|
21717
22166
|
readonly 'iban'?: string;
|
|
@@ -21759,6 +22208,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21759
22208
|
readonly 'id': string;
|
|
21760
22209
|
readonly 'acc_des'?: string;
|
|
21761
22210
|
readonly 'tax_code'?: string;
|
|
22211
|
+
readonly 'tax_code_2'?: string;
|
|
22212
|
+
readonly 'debit_entry_code'?: string;
|
|
22213
|
+
readonly 'credit_entry_code'?: string;
|
|
21762
22214
|
readonly 'vat_flag'?: string;
|
|
21763
22215
|
readonly 'country_name'?: string;
|
|
21764
22216
|
readonly 'w_tax_percent'?: string;
|
|
@@ -22375,6 +22827,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22375
22827
|
readonly 'fx'?: io.flow.internal.v0.models.Fee;
|
|
22376
22828
|
readonly 'duty_guarantee'?: io.flow.internal.v0.models.Fee;
|
|
22377
22829
|
readonly 'transfer'?: io.flow.internal.v0.models.Fee;
|
|
22830
|
+
readonly 'negative_balance'?: io.flow.internal.v0.models.Fee;
|
|
22378
22831
|
}
|
|
22379
22832
|
|
|
22380
22833
|
interface FinanceBankAccount {
|
|
@@ -22517,6 +22970,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22517
22970
|
readonly 'source': io.flow.internal.v0.models.AccountSource;
|
|
22518
22971
|
readonly 'id': string;
|
|
22519
22972
|
readonly 'key'?: string;
|
|
22973
|
+
readonly 'status': io.flow.internal.v0.enums.AccountStatus;
|
|
22520
22974
|
readonly 'origin'?: io.flow.internal.v0.models.AccountOrigin;
|
|
22521
22975
|
readonly 'currency': string;
|
|
22522
22976
|
readonly 'updated_at': string;
|
|
@@ -22531,6 +22985,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22531
22985
|
readonly 'created_at': string;
|
|
22532
22986
|
}
|
|
22533
22987
|
|
|
22988
|
+
interface FlowAccountStatusForm {
|
|
22989
|
+
readonly 'status': io.flow.internal.v0.enums.AccountStatus;
|
|
22990
|
+
}
|
|
22991
|
+
|
|
22992
|
+
interface FlowBillingStatement {
|
|
22993
|
+
readonly 'id': string;
|
|
22994
|
+
readonly 'account': io.flow.billing.v0.models.AccountReference;
|
|
22995
|
+
readonly 'period': io.flow.common.v0.models.DatetimeRange;
|
|
22996
|
+
readonly 'totals': io.flow.internal.v0.models.BillingStatementTotals;
|
|
22997
|
+
readonly 'attachments': io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
22998
|
+
}
|
|
22999
|
+
|
|
22534
23000
|
interface FlowChannelOrganization {
|
|
22535
23001
|
readonly 'placeholder'?: string;
|
|
22536
23002
|
}
|
|
@@ -22788,7 +23254,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22788
23254
|
readonly 'id': string;
|
|
22789
23255
|
readonly 'order': io.flow.internal.v0.models.OrderSummary;
|
|
22790
23256
|
readonly 'shopper': io.flow.internal.v0.models.ShopperSummary;
|
|
22791
|
-
readonly 'remittance'
|
|
23257
|
+
readonly 'remittance': io.flow.internal.v0.models.RemittanceResponsibility;
|
|
22792
23258
|
readonly 'merchant': io.flow.internal.v0.models.MerchantSummary;
|
|
22793
23259
|
readonly 'sequence_number': number;
|
|
22794
23260
|
readonly 'posting_cutoff': string;
|
|
@@ -24356,6 +24822,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24356
24822
|
readonly 'number': string;
|
|
24357
24823
|
readonly 'fulfillment_method': io.flow.catalog.v0.enums.FulfillmentMethodValue;
|
|
24358
24824
|
readonly 'country_of_origin'?: string;
|
|
24825
|
+
readonly 'tarriff_code'?: string;
|
|
24359
24826
|
readonly 'inferred'?: boolean;
|
|
24360
24827
|
}
|
|
24361
24828
|
|
|
@@ -25327,6 +25794,37 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25327
25794
|
readonly 'flow_authorization'?: io.flow.payment.v0.unions.Authorization;
|
|
25328
25795
|
}
|
|
25329
25796
|
|
|
25797
|
+
interface MatiasItem {
|
|
25798
|
+
readonly 'id': string;
|
|
25799
|
+
readonly 'number': string;
|
|
25800
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
25801
|
+
readonly 'description'?: string;
|
|
25802
|
+
readonly 'type': io.flow.internal.v0.enums.MatiasItemType;
|
|
25803
|
+
readonly 'added_on': string;
|
|
25804
|
+
}
|
|
25805
|
+
|
|
25806
|
+
interface MatiasItemDeleted {
|
|
25807
|
+
readonly 'discriminator': 'matias_item_deleted';
|
|
25808
|
+
readonly 'event_id': string;
|
|
25809
|
+
readonly 'timestamp': string;
|
|
25810
|
+
readonly 'id': string;
|
|
25811
|
+
}
|
|
25812
|
+
|
|
25813
|
+
interface MatiasItemForm {
|
|
25814
|
+
readonly 'number': string;
|
|
25815
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
25816
|
+
readonly 'description'?: string;
|
|
25817
|
+
readonly 'type': io.flow.internal.v0.enums.MatiasItemType;
|
|
25818
|
+
readonly 'added_on': string;
|
|
25819
|
+
}
|
|
25820
|
+
|
|
25821
|
+
interface MatiasItemUpserted {
|
|
25822
|
+
readonly 'discriminator': 'matias_item_upserted';
|
|
25823
|
+
readonly 'event_id': string;
|
|
25824
|
+
readonly 'timestamp': string;
|
|
25825
|
+
readonly 'item': io.flow.internal.v0.models.MatiasItem;
|
|
25826
|
+
}
|
|
25827
|
+
|
|
25330
25828
|
interface Merchant {
|
|
25331
25829
|
readonly 'id': string;
|
|
25332
25830
|
readonly 'account': io.flow.internal.v0.models.AccountReference;
|
|
@@ -25446,6 +25944,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25446
25944
|
readonly 'merchant': io.flow.internal.v0.models.Merchant;
|
|
25447
25945
|
}
|
|
25448
25946
|
|
|
25947
|
+
interface MessageStamp {
|
|
25948
|
+
readonly 'discriminator': 'message_stamp';
|
|
25949
|
+
readonly 'message': string;
|
|
25950
|
+
}
|
|
25951
|
+
|
|
25449
25952
|
interface MetadataProposition {
|
|
25450
25953
|
readonly 'shipping_method': io.flow.internal.v0.models.ShippingMethodReference;
|
|
25451
25954
|
readonly 'name': string;
|
|
@@ -25929,6 +26432,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25929
26432
|
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
25930
26433
|
readonly 'id': string;
|
|
25931
26434
|
readonly 'key'?: string;
|
|
26435
|
+
readonly 'status': io.flow.internal.v0.enums.AccountStatus;
|
|
25932
26436
|
readonly 'origin'?: io.flow.internal.v0.models.AccountOrigin;
|
|
25933
26437
|
readonly 'currency': string;
|
|
25934
26438
|
readonly 'updated_at': string;
|
|
@@ -27749,6 +28253,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27749
28253
|
}
|
|
27750
28254
|
|
|
27751
28255
|
interface ReportingShipment {
|
|
28256
|
+
readonly 'remittance'?: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
27752
28257
|
readonly 'carrier': string;
|
|
27753
28258
|
readonly 'tracking_number'?: string;
|
|
27754
28259
|
}
|
|
@@ -28048,7 +28553,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28048
28553
|
readonly 'id': string;
|
|
28049
28554
|
readonly 'order': io.flow.internal.v0.models.OrderSummary;
|
|
28050
28555
|
readonly 'shopper': io.flow.internal.v0.models.ShopperSummary;
|
|
28051
|
-
readonly 'remittance'
|
|
28556
|
+
readonly 'remittance': io.flow.internal.v0.models.RemittanceResponsibility;
|
|
28052
28557
|
readonly 'merchant': io.flow.internal.v0.models.MerchantSummary;
|
|
28053
28558
|
readonly 'sequence_number': number;
|
|
28054
28559
|
readonly 'posting_cutoff': string;
|
|
@@ -30213,6 +30718,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30213
30718
|
type AuthorizedOrderCharge = (io.flow.internal.v0.models.AuthorizedShippingCharge);
|
|
30214
30719
|
type BlazeConsumerMessage = (io.flow.internal.v0.models.BlazeAddOrderAttributesMessage | io.flow.internal.v0.models.BlazeAddToCartMessage | io.flow.internal.v0.models.BlazeCreateByCartToken | io.flow.internal.v0.models.BlazeInitializeByOrderQuoteMessage | io.flow.internal.v0.models.BlazeInitializeBySessionMessage | io.flow.internal.v0.models.BlazeInitializeMessage | io.flow.internal.v0.models.BlazeSetCartItemsMessage | io.flow.internal.v0.models.BlazeSetCheckoutIdMessage | io.flow.internal.v0.models.BlazeStartCheckoutMessage | io.flow.internal.v0.models.BlazeUpdateCartItemsMessage | io.flow.internal.v0.models.BlazeApplepayAvailabilityResponse | io.flow.internal.v0.models.BlazeSetPromotionCodeMessage);
|
|
30215
30720
|
type BlazeProviderMessage = (io.flow.internal.v0.models.BlazeCheckoutCompleteMessage | io.flow.internal.v0.models.BlazeCheckoutProgressMessage | io.flow.internal.v0.models.BlazeCheckoutEventMessage | io.flow.internal.v0.models.BlazeStartCheckoutMessage | io.flow.internal.v0.models.BlazeExitCheckoutMessage | io.flow.internal.v0.models.BlazeExitCheckoutConfirmationMessage | io.flow.internal.v0.models.BlazeRedirectConfirmationMessage | io.flow.internal.v0.models.BlazeSynInitializeMessage | io.flow.internal.v0.models.BlazeApplepayAvailabilityRequest | io.flow.internal.v0.models.BlazePaymentAuthStartMessage | io.flow.internal.v0.models.BlazePaymentAuthCompleteMessage);
|
|
30721
|
+
type CalculatorStamp = (io.flow.internal.v0.models.MessageStamp | io.flow.internal.v0.models.CalculationStep);
|
|
30216
30722
|
type CarrierChargeForm = (io.flow.internal.v0.models.CarrierChargeFormLabel | io.flow.internal.v0.models.CarrierChargeFormOther);
|
|
30217
30723
|
type CarrierCredentials = (io.flow.internal.v0.models.SfExpress | io.flow.internal.v0.models.DhlEcommerce | io.flow.internal.v0.models.Landmark | io.flow.internal.v0.models.Dhl | io.flow.internal.v0.models.FedexCrossborder | io.flow.internal.v0.models.Ups | io.flow.internal.v0.models.Fedex);
|
|
30218
30724
|
type ChannelRateMetadata = (io.flow.internal.v0.models.ChannelRateMetadataIdentity | io.flow.internal.v0.models.ChannelRateMetadataRate);
|
|
@@ -30311,7 +30817,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30311
30817
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
30312
30818
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal);
|
|
30313
30819
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
30314
|
-
type Event = (io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentDeleted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.SalesRecordUpserted | io.flow.internal.v0.models.SalesRecordDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
30820
|
+
type Event = (io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.SalesRecordUpserted | io.flow.internal.v0.models.SalesRecordDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
30315
30821
|
type Experiment = (io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment);
|
|
30316
30822
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
30317
30823
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -30375,6 +30881,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30375
30881
|
}
|
|
30376
30882
|
|
|
30377
30883
|
export const accountSettingLiabilitiesMethod: PropTypes.Requireable<io.flow.internal.v0.enums.AccountSettingLiabilitiesMethod>;
|
|
30884
|
+
export const accountStatus: PropTypes.Requireable<io.flow.internal.v0.enums.AccountStatus>;
|
|
30378
30885
|
export const accountType: PropTypes.Requireable<io.flow.internal.v0.enums.AccountType>;
|
|
30379
30886
|
export const addressConfigurationSettingProvinceCode: PropTypes.Requireable<io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode>;
|
|
30380
30887
|
export const adjustmentTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.AdjustmentTransactionType>;
|
|
@@ -30562,6 +31069,7 @@ export const marketingGatewayFeedState: PropTypes.Requireable<io.flow.internal.v
|
|
|
30562
31069
|
export const marketingGatewayPlatform: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewayPlatform>;
|
|
30563
31070
|
export const marketingGatewayProductStatus: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewayProductStatus>;
|
|
30564
31071
|
export const marketingGatewaySchemaCompatibility: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewaySchemaCompatibility>;
|
|
31072
|
+
export const matiasItemType: PropTypes.Requireable<io.flow.internal.v0.enums.MatiasItemType>;
|
|
30565
31073
|
export const mixedBagWeight: PropTypes.Requireable<io.flow.internal.v0.enums.MixedBagWeight>;
|
|
30566
31074
|
export const natureOfSale: PropTypes.Requireable<io.flow.internal.v0.enums.NatureOfSale>;
|
|
30567
31075
|
export const noLiabilityReasonCode: PropTypes.Requireable<io.flow.internal.v0.enums.NoLiabilityReasonCode>;
|
|
@@ -30690,6 +31198,7 @@ export const accountTransactionsExportRequest: PropTypes.Requireable<io.flow.int
|
|
|
30690
31198
|
export const accountUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AccountUpserted>;
|
|
30691
31199
|
export const accountUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.AccountUpsertedV2>;
|
|
30692
31200
|
export const actionQuantity: PropTypes.Requireable<io.flow.internal.v0.models.ActionQuantity>;
|
|
31201
|
+
export const additionalImportTax: PropTypes.Requireable<io.flow.internal.v0.models.AdditionalImportTax>;
|
|
30693
31202
|
export const addressConfigurationProvinceSetting: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationProvinceSetting>;
|
|
30694
31203
|
export const addressConfigurationSetting: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationSetting>;
|
|
30695
31204
|
export const addressConfigurationSettingForm: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationSettingForm>;
|
|
@@ -30770,7 +31279,6 @@ export const backfill: PropTypes.Requireable<io.flow.internal.v0.models.Backfill
|
|
|
30770
31279
|
export const backfillForm: PropTypes.Requireable<io.flow.internal.v0.models.BackfillForm>;
|
|
30771
31280
|
export const bankAccountReference: PropTypes.Requireable<io.flow.internal.v0.models.BankAccountReference>;
|
|
30772
31281
|
export const bankPayment: PropTypes.Requireable<io.flow.internal.v0.models.BankPayment>;
|
|
30773
|
-
export const bankPaymentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.BankPaymentDeleted>;
|
|
30774
31282
|
export const bankPaymentDeletedV2: PropTypes.Requireable<io.flow.internal.v0.models.BankPaymentDeletedV2>;
|
|
30775
31283
|
export const bankPaymentForm: PropTypes.Requireable<io.flow.internal.v0.models.BankPaymentForm>;
|
|
30776
31284
|
export const bankPaymentStatusForm: PropTypes.Requireable<io.flow.internal.v0.models.BankPaymentStatusForm>;
|
|
@@ -30858,6 +31366,10 @@ export const browserBundlePaymentMethods: PropTypes.Requireable<io.flow.internal
|
|
|
30858
31366
|
export const bulkClassificationAction: PropTypes.Requireable<io.flow.internal.v0.models.BulkClassificationAction>;
|
|
30859
31367
|
export const byRuleSnapshot: PropTypes.Requireable<io.flow.internal.v0.models.ByRuleSnapshot>;
|
|
30860
31368
|
export const calculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.CalculatedTaxAmount>;
|
|
31369
|
+
export const calculationStampingLineItem: PropTypes.Requireable<io.flow.internal.v0.models.CalculationStampingLineItem>;
|
|
31370
|
+
export const calculationStampingShippingLine: PropTypes.Requireable<io.flow.internal.v0.models.CalculationStampingShippingLine>;
|
|
31371
|
+
export const calculationStep: PropTypes.Requireable<io.flow.internal.v0.models.CalculationStep>;
|
|
31372
|
+
export const calculationTotal: PropTypes.Requireable<io.flow.internal.v0.models.CalculationTotal>;
|
|
30861
31373
|
export const calculatorDtcePostBody: PropTypes.Requireable<io.flow.internal.v0.models.CalculatorDtcePostBody>;
|
|
30862
31374
|
export const calculatorDtceProduct: PropTypes.Requireable<io.flow.internal.v0.models.CalculatorDtceProduct>;
|
|
30863
31375
|
export const calculatorOrganizationSettings: PropTypes.Requireable<io.flow.internal.v0.models.CalculatorOrganizationSettings>;
|
|
@@ -31356,6 +31868,7 @@ export const commercialInvoiceComparison: PropTypes.Requireable<io.flow.internal
|
|
|
31356
31868
|
export const commercialInvoiceInternal: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceInternal>;
|
|
31357
31869
|
export const commercialInvoiceInternalDeleted: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceInternalDeleted>;
|
|
31358
31870
|
export const commercialInvoiceInternalUpserted: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceInternalUpserted>;
|
|
31871
|
+
export const commercialInvoiceSummary: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceSummary>;
|
|
31359
31872
|
export const companyReference: PropTypes.Requireable<io.flow.internal.v0.models.CompanyReference>;
|
|
31360
31873
|
export const compliance: PropTypes.Requireable<io.flow.internal.v0.models.Compliance>;
|
|
31361
31874
|
export const components: PropTypes.Requireable<io.flow.internal.v0.models.Components>;
|
|
@@ -31578,6 +32091,8 @@ export const fiservMerchant: PropTypes.Requireable<io.flow.internal.v0.models.Fi
|
|
|
31578
32091
|
export const fiservMerchantModificationForm: PropTypes.Requireable<io.flow.internal.v0.models.FiservMerchantModificationForm>;
|
|
31579
32092
|
export const fiservMerchantPutForm: PropTypes.Requireable<io.flow.internal.v0.models.FiservMerchantPutForm>;
|
|
31580
32093
|
export const flowAccount: PropTypes.Requireable<io.flow.internal.v0.models.FlowAccount>;
|
|
32094
|
+
export const flowAccountStatusForm: PropTypes.Requireable<io.flow.internal.v0.models.FlowAccountStatusForm>;
|
|
32095
|
+
export const flowBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.FlowBillingStatement>;
|
|
31581
32096
|
export const flowChannelOrganization: PropTypes.Requireable<io.flow.internal.v0.models.FlowChannelOrganization>;
|
|
31582
32097
|
export const flowLabProject: PropTypes.Requireable<io.flow.internal.v0.models.FlowLabProject>;
|
|
31583
32098
|
export const flowLabProjectPostForm: PropTypes.Requireable<io.flow.internal.v0.models.FlowLabProjectPostForm>;
|
|
@@ -31915,6 +32430,10 @@ export const marketingGatewayProductDatasourceSummary: PropTypes.Requireable<io.
|
|
|
31915
32430
|
export const marketingGatewaySchemaSummary: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewaySchemaSummary>;
|
|
31916
32431
|
export const marketingGatewaySupportedChannelDetails: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails>;
|
|
31917
32432
|
export const marketsOrder: PropTypes.Requireable<io.flow.internal.v0.models.MarketsOrder>;
|
|
32433
|
+
export const matiasItem: PropTypes.Requireable<io.flow.internal.v0.models.MatiasItem>;
|
|
32434
|
+
export const matiasItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MatiasItemDeleted>;
|
|
32435
|
+
export const matiasItemForm: PropTypes.Requireable<io.flow.internal.v0.models.MatiasItemForm>;
|
|
32436
|
+
export const matiasItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MatiasItemUpserted>;
|
|
31918
32437
|
export const merchant: PropTypes.Requireable<io.flow.internal.v0.models.Merchant>;
|
|
31919
32438
|
export const merchantApplicationSummaries: PropTypes.Requireable<io.flow.internal.v0.models.MerchantApplicationSummaries>;
|
|
31920
32439
|
export const merchantApplicationSummary: PropTypes.Requireable<io.flow.internal.v0.models.MerchantApplicationSummary>;
|
|
@@ -31930,6 +32449,7 @@ export const merchantSubsidies: PropTypes.Requireable<io.flow.internal.v0.models
|
|
|
31930
32449
|
export const merchantSummary: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSummary>;
|
|
31931
32450
|
export const merchantTransactions: PropTypes.Requireable<io.flow.internal.v0.models.MerchantTransactions>;
|
|
31932
32451
|
export const merchantUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantUpserted>;
|
|
32452
|
+
export const messageStamp: PropTypes.Requireable<io.flow.internal.v0.models.MessageStamp>;
|
|
31933
32453
|
export const metadataProposition: PropTypes.Requireable<io.flow.internal.v0.models.MetadataProposition>;
|
|
31934
32454
|
export const metadataRatecard: PropTypes.Requireable<io.flow.internal.v0.models.MetadataRatecard>;
|
|
31935
32455
|
export const nextBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.NextBillingStatement>;
|
|
@@ -32583,6 +33103,7 @@ export const authorizationPayload: PropTypes.Requireable<io.flow.internal.v0.uni
|
|
|
32583
33103
|
export const authorizedOrderCharge: PropTypes.Requireable<io.flow.internal.v0.unions.AuthorizedOrderCharge>;
|
|
32584
33104
|
export const blazeConsumerMessage: PropTypes.Requireable<io.flow.internal.v0.unions.BlazeConsumerMessage>;
|
|
32585
33105
|
export const blazeProviderMessage: PropTypes.Requireable<io.flow.internal.v0.unions.BlazeProviderMessage>;
|
|
33106
|
+
export const calculatorStamp: PropTypes.Requireable<io.flow.internal.v0.unions.CalculatorStamp>;
|
|
32586
33107
|
export const carrierChargeForm: PropTypes.Requireable<io.flow.internal.v0.unions.CarrierChargeForm>;
|
|
32587
33108
|
export const carrierCredentials: PropTypes.Requireable<io.flow.internal.v0.unions.CarrierCredentials>;
|
|
32588
33109
|
export const channelRateMetadata: PropTypes.Requireable<io.flow.internal.v0.unions.ChannelRateMetadata>;
|