@flowio/types 11.24.88 → 11.24.90
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +487 -29
- package/dist/api.d.ts +161 -10
- package/package.json +2 -2
- package/src/api-internal.ts +604 -29
- package/src/api.ts +210 -9
package/dist/api-internal.d.ts
CHANGED
|
@@ -153,6 +153,192 @@ declare namespace io.flow.invoice.v0.models {
|
|
|
153
153
|
readonly value: io.flow.common.v0.models.Price;
|
|
154
154
|
}
|
|
155
155
|
}
|
|
156
|
+
declare namespace io.flow.billing.accounting.v0.models {
|
|
157
|
+
interface Fulfillment {
|
|
158
|
+
readonly id: string;
|
|
159
|
+
readonly order: io.flow.billing.accounting.v0.models.OrderSummary;
|
|
160
|
+
readonly shopper: io.flow.billing.accounting.v0.models.ShopperSummary;
|
|
161
|
+
readonly remittance: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
162
|
+
readonly merchant: io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
163
|
+
readonly sequence_number: number;
|
|
164
|
+
readonly posting_cutoff: string;
|
|
165
|
+
readonly trigger: io.flow.billing.accounting.v0.unions.FulfillmentTrigger;
|
|
166
|
+
readonly fulfilled_at: string;
|
|
167
|
+
readonly owner: io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
168
|
+
readonly origin?: io.flow.billing.accounting.v0.models.FulfillmentOrigin;
|
|
169
|
+
readonly business?: io.flow.billing.accounting.v0.models.FulfillmentBusiness;
|
|
170
|
+
readonly completes_order: boolean;
|
|
171
|
+
}
|
|
172
|
+
interface FulfillmentBusiness {
|
|
173
|
+
readonly vat_registration_number: string;
|
|
174
|
+
}
|
|
175
|
+
interface FulfillmentOrigin {
|
|
176
|
+
readonly country: string;
|
|
177
|
+
readonly province_code?: string;
|
|
178
|
+
}
|
|
179
|
+
interface FulfillmentProofExternalFulfillmentProofReference {
|
|
180
|
+
readonly discriminator: 'external_fulfillment';
|
|
181
|
+
readonly id: string;
|
|
182
|
+
readonly carrier_id?: string;
|
|
183
|
+
readonly carrier_service_id?: string;
|
|
184
|
+
readonly carrier_tracking_number?: string;
|
|
185
|
+
readonly label_id?: string;
|
|
186
|
+
readonly created_at?: string;
|
|
187
|
+
}
|
|
188
|
+
interface FulfillmentProofLabelTrackingReference {
|
|
189
|
+
readonly discriminator: 'label_tracking';
|
|
190
|
+
readonly id: string;
|
|
191
|
+
readonly carrier_id?: string;
|
|
192
|
+
readonly carrier_service_id?: string;
|
|
193
|
+
readonly carrier_tracking_number?: string;
|
|
194
|
+
readonly label_id?: string;
|
|
195
|
+
readonly created_at?: string;
|
|
196
|
+
}
|
|
197
|
+
interface FulfillmentProofOrderCombinedShipmentReference {
|
|
198
|
+
readonly discriminator: 'order_combined_shipment';
|
|
199
|
+
readonly id: string;
|
|
200
|
+
readonly carrier_id?: string;
|
|
201
|
+
readonly carrier_service_id?: string;
|
|
202
|
+
readonly carrier_tracking_number?: string;
|
|
203
|
+
readonly label_id?: string;
|
|
204
|
+
readonly created_at?: string;
|
|
205
|
+
}
|
|
206
|
+
interface FulfillmentProofShippingNotificationReference {
|
|
207
|
+
readonly discriminator: 'shipping_notification';
|
|
208
|
+
readonly id: string;
|
|
209
|
+
readonly carrier_id?: string;
|
|
210
|
+
readonly carrier_service_id?: string;
|
|
211
|
+
readonly carrier_tracking_number?: string;
|
|
212
|
+
readonly label_id?: string;
|
|
213
|
+
readonly created_at?: string;
|
|
214
|
+
}
|
|
215
|
+
interface FulfillmentReference {
|
|
216
|
+
readonly id: string;
|
|
217
|
+
}
|
|
218
|
+
interface FulfillmentSubsidyBreakdown {
|
|
219
|
+
readonly tax: number;
|
|
220
|
+
readonly duty: number;
|
|
221
|
+
readonly total: number;
|
|
222
|
+
}
|
|
223
|
+
interface FulfillmentTriggerProof {
|
|
224
|
+
readonly discriminator: 'by_proof';
|
|
225
|
+
readonly proof: io.flow.billing.accounting.v0.unions.FulfillmentProof;
|
|
226
|
+
}
|
|
227
|
+
interface FulfillmentTriggerTime {
|
|
228
|
+
readonly discriminator: 'by_time';
|
|
229
|
+
readonly placeholder?: string;
|
|
230
|
+
}
|
|
231
|
+
interface ItemSummary {
|
|
232
|
+
readonly number: string;
|
|
233
|
+
readonly fulfillment_method: io.flow.catalog.v0.enums.FulfillmentMethodValue;
|
|
234
|
+
readonly country_of_origin?: string;
|
|
235
|
+
readonly tarriff_code?: string;
|
|
236
|
+
readonly inferred?: boolean;
|
|
237
|
+
}
|
|
238
|
+
interface MerchantFees {
|
|
239
|
+
readonly duty_guarantee: number;
|
|
240
|
+
readonly mor: number;
|
|
241
|
+
readonly fraud: number;
|
|
242
|
+
readonly fx: number;
|
|
243
|
+
readonly processing: number;
|
|
244
|
+
readonly rate_lock: number;
|
|
245
|
+
readonly transfer: number;
|
|
246
|
+
readonly total: number;
|
|
247
|
+
}
|
|
248
|
+
interface MerchantSubsidies {
|
|
249
|
+
readonly fees: io.flow.billing.accounting.v0.models.ShopperFees;
|
|
250
|
+
readonly tax: number;
|
|
251
|
+
readonly duty: number;
|
|
252
|
+
readonly total: number;
|
|
253
|
+
}
|
|
254
|
+
interface MerchantSummary {
|
|
255
|
+
readonly subsidies: io.flow.billing.accounting.v0.models.MerchantSubsidies;
|
|
256
|
+
readonly fees: io.flow.billing.accounting.v0.models.MerchantFees;
|
|
257
|
+
readonly transactions: io.flow.billing.accounting.v0.models.MerchantTransactions;
|
|
258
|
+
readonly total: number;
|
|
259
|
+
}
|
|
260
|
+
interface MerchantTransactions {
|
|
261
|
+
readonly adjustment: number;
|
|
262
|
+
readonly reversal: number;
|
|
263
|
+
readonly tax: number;
|
|
264
|
+
readonly duty: number;
|
|
265
|
+
readonly freight: number;
|
|
266
|
+
readonly total: number;
|
|
267
|
+
}
|
|
268
|
+
interface OrderSummary {
|
|
269
|
+
readonly id: string;
|
|
270
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
271
|
+
readonly number: string;
|
|
272
|
+
readonly type: io.flow.experience.v0.enums.OrderType;
|
|
273
|
+
readonly submitted_at: string;
|
|
274
|
+
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
275
|
+
readonly currency: string;
|
|
276
|
+
}
|
|
277
|
+
interface RemittanceResponsibility {
|
|
278
|
+
readonly tax: io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
279
|
+
readonly duty: io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
280
|
+
}
|
|
281
|
+
interface Return {
|
|
282
|
+
readonly id: string;
|
|
283
|
+
readonly order: io.flow.billing.accounting.v0.models.OrderSummary;
|
|
284
|
+
readonly shopper: io.flow.billing.accounting.v0.models.ShopperSummary;
|
|
285
|
+
readonly remittance: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
286
|
+
readonly merchant: io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
287
|
+
readonly sequence_number: number;
|
|
288
|
+
readonly posting_cutoff: string;
|
|
289
|
+
readonly trigger: io.flow.billing.accounting.v0.unions.ReturnTrigger;
|
|
290
|
+
readonly returned_at: string;
|
|
291
|
+
readonly completes_order: boolean;
|
|
292
|
+
}
|
|
293
|
+
interface ReturnTriggerRefund {
|
|
294
|
+
readonly discriminator: 'by_refund';
|
|
295
|
+
readonly refund: io.flow.payment.v0.models.RefundReference;
|
|
296
|
+
}
|
|
297
|
+
interface ShopperFees {
|
|
298
|
+
readonly fuel: number;
|
|
299
|
+
readonly remote_area: number;
|
|
300
|
+
readonly oversize: number;
|
|
301
|
+
readonly ccf: number;
|
|
302
|
+
readonly emergency: number;
|
|
303
|
+
readonly peak: number;
|
|
304
|
+
readonly total: number;
|
|
305
|
+
}
|
|
306
|
+
interface ShopperFreight {
|
|
307
|
+
readonly price: number;
|
|
308
|
+
readonly discount: number;
|
|
309
|
+
readonly tax: number;
|
|
310
|
+
readonly duty: number;
|
|
311
|
+
readonly subsidies: io.flow.billing.accounting.v0.models.FulfillmentSubsidyBreakdown;
|
|
312
|
+
readonly total: number;
|
|
313
|
+
}
|
|
314
|
+
interface ShopperLine {
|
|
315
|
+
readonly item: io.flow.billing.accounting.v0.models.ItemSummary;
|
|
316
|
+
readonly quantity: number;
|
|
317
|
+
readonly unit_price: number;
|
|
318
|
+
readonly price: number;
|
|
319
|
+
readonly discount: number;
|
|
320
|
+
readonly tax: number;
|
|
321
|
+
readonly duty: number;
|
|
322
|
+
readonly subsidies: io.flow.billing.accounting.v0.models.FulfillmentSubsidyBreakdown;
|
|
323
|
+
readonly total: number;
|
|
324
|
+
}
|
|
325
|
+
interface ShopperLines {
|
|
326
|
+
readonly lines: io.flow.billing.accounting.v0.models.ShopperLine[];
|
|
327
|
+
readonly total: number;
|
|
328
|
+
}
|
|
329
|
+
interface ShopperSummary {
|
|
330
|
+
readonly product: io.flow.billing.accounting.v0.models.ShopperLines;
|
|
331
|
+
readonly fees: io.flow.billing.accounting.v0.models.ShopperFees;
|
|
332
|
+
readonly freight: io.flow.billing.accounting.v0.models.ShopperFreight;
|
|
333
|
+
readonly order_discount: number;
|
|
334
|
+
readonly total: number;
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
declare namespace io.flow.billing.accounting.v0.unions {
|
|
338
|
+
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;
|
|
339
|
+
type FulfillmentTrigger = io.flow.billing.accounting.v0.models.FulfillmentTriggerProof | io.flow.billing.accounting.v0.models.FulfillmentTriggerTime;
|
|
340
|
+
type ReturnTrigger = io.flow.billing.accounting.v0.models.ReturnTriggerRefund;
|
|
341
|
+
}
|
|
156
342
|
declare namespace io.flow.RESERVED_WORD_export.v0.enums {
|
|
157
343
|
type ExportStatus = 'created' | 'processing' | 'completed' | 'failed';
|
|
158
344
|
type ItemIdentifier = 'item_number' | 'sku';
|
|
@@ -1924,6 +2110,7 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
1924
2110
|
readonly processing: number;
|
|
1925
2111
|
readonly rate_lock: number;
|
|
1926
2112
|
readonly transfer: number;
|
|
2113
|
+
readonly negative_balance: number;
|
|
1927
2114
|
}
|
|
1928
2115
|
interface BillingCsvTransactionIdentifiers {
|
|
1929
2116
|
readonly reference_id?: string;
|
|
@@ -1941,6 +2128,7 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
1941
2128
|
readonly label_created_at: string;
|
|
1942
2129
|
readonly carrier_id: string;
|
|
1943
2130
|
readonly carrier_tracking_number: string;
|
|
2131
|
+
readonly revenue_share_percentage: number;
|
|
1944
2132
|
readonly outbound_transaction_id?: string;
|
|
1945
2133
|
}
|
|
1946
2134
|
interface BillingCsvTransactionMetadataChannel {
|
|
@@ -2048,7 +2236,7 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
2048
2236
|
type OrderItemType = 'sku' | 'tax' | 'shipping' | 'discount';
|
|
2049
2237
|
type PaymentIntentStatus = 'canceled' | 'processing' | 'requires_action' | 'requires_capture' | 'requires_confirmation' | 'requires_payment_method' | 'succeeded';
|
|
2050
2238
|
type PaymentMethodCategoryKlarna = 'pay_later' | 'pay_now' | 'pay_with_financing' | 'pay_in_installments';
|
|
2051
|
-
type PaymentMethodType = 'card' | 'card_present';
|
|
2239
|
+
type PaymentMethodType = 'card' | 'card_present' | 'klarna';
|
|
2052
2240
|
type PaymentOutcomeType = 'authorized' | 'manual_review' | 'issuer_declined' | 'blocked' | 'invalid';
|
|
2053
2241
|
type PaymentStatus = 'succeeded' | 'pending' | 'failed';
|
|
2054
2242
|
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';
|
|
@@ -2284,6 +2472,11 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2284
2472
|
interface KlarnaAttachment {
|
|
2285
2473
|
readonly marketplace_seller_info?: io.flow.stripe.v0.models.KlarnaMarketplaceSellerInfo[];
|
|
2286
2474
|
}
|
|
2475
|
+
interface KlarnaDobForm {
|
|
2476
|
+
readonly day: number;
|
|
2477
|
+
readonly month: number;
|
|
2478
|
+
readonly year: number;
|
|
2479
|
+
}
|
|
2287
2480
|
interface KlarnaMarketplaceSellerInfo {
|
|
2288
2481
|
readonly sub_merchant_id?: string;
|
|
2289
2482
|
readonly product_category?: string;
|
|
@@ -2291,6 +2484,11 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2291
2484
|
interface LegalEntity {
|
|
2292
2485
|
readonly additional_owners?: io.flow.stripe.v0.models.Owner[];
|
|
2293
2486
|
}
|
|
2487
|
+
interface MarketplaceSellerInfo {
|
|
2488
|
+
readonly name: string;
|
|
2489
|
+
readonly id?: string;
|
|
2490
|
+
readonly product_category?: string;
|
|
2491
|
+
}
|
|
2294
2492
|
interface Masterpass {
|
|
2295
2493
|
readonly type: 'masterpass';
|
|
2296
2494
|
readonly masterpass: io.flow.stripe.v0.models.MasterpassInformation;
|
|
@@ -2367,6 +2565,9 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2367
2565
|
readonly verified_name?: string;
|
|
2368
2566
|
readonly verified_phone?: string;
|
|
2369
2567
|
}
|
|
2568
|
+
interface PaymentDetails {
|
|
2569
|
+
readonly marketplace_seller_info?: io.flow.stripe.v0.models.MarketplaceSellerInfo;
|
|
2570
|
+
}
|
|
2370
2571
|
interface PaymentIntent {
|
|
2371
2572
|
readonly id: string;
|
|
2372
2573
|
readonly object: string;
|
|
@@ -2483,6 +2684,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2483
2684
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
2484
2685
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodCardDetails;
|
|
2485
2686
|
readonly card_present?: any;
|
|
2687
|
+
readonly klarna?: any;
|
|
2486
2688
|
readonly created: number;
|
|
2487
2689
|
readonly customer?: string;
|
|
2488
2690
|
readonly livemode: boolean;
|
|
@@ -2518,6 +2720,12 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2518
2720
|
readonly metadata?: any;
|
|
2519
2721
|
readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
2520
2722
|
}
|
|
2723
|
+
interface PaymentMethodDataKlarna {
|
|
2724
|
+
readonly type: 'klarna';
|
|
2725
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
2726
|
+
readonly metadata?: any;
|
|
2727
|
+
readonly klarna: io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
2728
|
+
}
|
|
2521
2729
|
interface PaymentMethodDetailsCard {
|
|
2522
2730
|
readonly type: 'card';
|
|
2523
2731
|
readonly card: io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation;
|
|
@@ -2561,8 +2769,18 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2561
2769
|
readonly metadata?: any;
|
|
2562
2770
|
readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
2563
2771
|
}
|
|
2772
|
+
interface PaymentMethodFormKlarna {
|
|
2773
|
+
readonly type: 'klarna';
|
|
2774
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
2775
|
+
readonly metadata?: any;
|
|
2776
|
+
readonly klarna: io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
2777
|
+
}
|
|
2778
|
+
interface PaymentMethodKlarnaForm {
|
|
2779
|
+
readonly dob?: io.flow.stripe.v0.models.KlarnaDobForm;
|
|
2780
|
+
}
|
|
2564
2781
|
interface PaymentMethodOptions {
|
|
2565
2782
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodOptionsCard;
|
|
2783
|
+
readonly klarna?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarna;
|
|
2566
2784
|
}
|
|
2567
2785
|
interface PaymentMethodOptionsCard {
|
|
2568
2786
|
readonly network?: string;
|
|
@@ -2579,6 +2797,19 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2579
2797
|
}
|
|
2580
2798
|
interface PaymentMethodOptionsForm {
|
|
2581
2799
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodOptionsCardForm;
|
|
2800
|
+
readonly klarna?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarnaForm;
|
|
2801
|
+
}
|
|
2802
|
+
interface PaymentMethodOptionsKlarna {
|
|
2803
|
+
readonly capture_method?: io.flow.stripe.v0.enums.CaptureMethod;
|
|
2804
|
+
readonly preferred_locale?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
2805
|
+
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
2806
|
+
readonly payment_details?: io.flow.stripe.v0.models.PaymentDetails;
|
|
2807
|
+
}
|
|
2808
|
+
interface PaymentMethodOptionsKlarnaForm {
|
|
2809
|
+
readonly capture_method?: io.flow.stripe.v0.enums.CaptureMethod;
|
|
2810
|
+
readonly preferred_locale?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
2811
|
+
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
2812
|
+
readonly payment_details?: io.flow.stripe.v0.models.PaymentDetails;
|
|
2582
2813
|
}
|
|
2583
2814
|
interface PaymentOutcome {
|
|
2584
2815
|
readonly network_status?: io.flow.stripe.v0.enums.NetworkStatus;
|
|
@@ -2844,9 +3075,9 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2844
3075
|
}
|
|
2845
3076
|
declare namespace io.flow.stripe.v0.unions {
|
|
2846
3077
|
type CardWallet = io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout;
|
|
2847
|
-
type PaymentMethodData = io.flow.stripe.v0.models.PaymentMethodDataCard;
|
|
3078
|
+
type PaymentMethodData = io.flow.stripe.v0.models.PaymentMethodDataCard | io.flow.stripe.v0.models.PaymentMethodDataKlarna;
|
|
2848
3079
|
type PaymentMethodDetails = io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna;
|
|
2849
|
-
type PaymentMethodForm = io.flow.stripe.v0.models.PaymentMethodFormCard;
|
|
3080
|
+
type PaymentMethodForm = io.flow.stripe.v0.models.PaymentMethodFormCard | io.flow.stripe.v0.models.PaymentMethodFormKlarna;
|
|
2850
3081
|
}
|
|
2851
3082
|
declare namespace io.flow.customer.v0.enums {
|
|
2852
3083
|
type CustomerAddressType = 'billing' | 'invoice' | 'shipping';
|
|
@@ -6858,6 +7089,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
6858
7089
|
readonly channel_id: string;
|
|
6859
7090
|
readonly external_order_reference: string;
|
|
6860
7091
|
readonly payment_request_id?: string;
|
|
7092
|
+
readonly order_edit_payment_request_ids?: string[];
|
|
6861
7093
|
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
6862
7094
|
readonly reasons: io.flow.channel.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
6863
7095
|
readonly next_action_from?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
@@ -7601,6 +7833,7 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7601
7833
|
readonly id: string;
|
|
7602
7834
|
}
|
|
7603
7835
|
interface ReportingShipment {
|
|
7836
|
+
readonly remittance?: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
7604
7837
|
readonly carrier: string;
|
|
7605
7838
|
readonly tracking_number?: string;
|
|
7606
7839
|
}
|
|
@@ -9563,6 +9796,16 @@ declare namespace io.flow.payment.request.bundle.v0.models {
|
|
|
9563
9796
|
}
|
|
9564
9797
|
}
|
|
9565
9798
|
declare namespace io.flow.ratecard.v0.models {
|
|
9799
|
+
interface AdditionalHandlingServiceFee {
|
|
9800
|
+
readonly discriminator: 'additional_handling_service_fee';
|
|
9801
|
+
readonly length_girth_threshold?: number;
|
|
9802
|
+
readonly length_threshold?: number;
|
|
9803
|
+
readonly width_threshold?: number;
|
|
9804
|
+
readonly dimensional_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9805
|
+
readonly weight_threshold?: number;
|
|
9806
|
+
readonly weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9807
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
9808
|
+
}
|
|
9566
9809
|
interface CrossdockRatecardFee {
|
|
9567
9810
|
readonly discriminator: 'crossdock_ratecard_fee';
|
|
9568
9811
|
readonly amount: io.flow.common.v0.models.Money;
|
|
@@ -9600,6 +9843,15 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9600
9843
|
readonly starts_at?: string;
|
|
9601
9844
|
readonly ends_at?: string;
|
|
9602
9845
|
}
|
|
9846
|
+
interface EeiFilingRatecardFee {
|
|
9847
|
+
readonly discriminator: 'eei_filing_ratecard_fee';
|
|
9848
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
9849
|
+
}
|
|
9850
|
+
interface EeiFilingServiceFee {
|
|
9851
|
+
readonly discriminator: 'eei_filing_service_fee';
|
|
9852
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
9853
|
+
readonly value_threshold: io.flow.common.v0.models.Money;
|
|
9854
|
+
}
|
|
9603
9855
|
interface EmergencySituationSurchargeRatecardFee {
|
|
9604
9856
|
readonly discriminator: 'emergency_situation_surcharge_ratecard_fee';
|
|
9605
9857
|
readonly amount: io.flow.common.v0.models.Money;
|
|
@@ -9621,6 +9873,26 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9621
9873
|
readonly weight: number;
|
|
9622
9874
|
readonly unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9623
9875
|
}
|
|
9876
|
+
interface FixedCurrencyConversionRatecardFee {
|
|
9877
|
+
readonly discriminator: 'fixed_currency_conversion_ratecard_fee';
|
|
9878
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
9879
|
+
}
|
|
9880
|
+
interface FixedCurrencyConversionServiceFee {
|
|
9881
|
+
readonly discriminator: 'fixed_currency_conversion_service_fee';
|
|
9882
|
+
readonly conditions: io.flow.ratecard.v0.models.FixedFeeCondition[];
|
|
9883
|
+
}
|
|
9884
|
+
interface FixedDdpRatecardFee {
|
|
9885
|
+
readonly discriminator: 'fixed_ddp_ratecard_fee';
|
|
9886
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
9887
|
+
}
|
|
9888
|
+
interface FixedDdpServiceFee {
|
|
9889
|
+
readonly discriminator: 'fixed_ddp_service_fee';
|
|
9890
|
+
readonly conditions: io.flow.ratecard.v0.models.FixedFeeCondition[];
|
|
9891
|
+
}
|
|
9892
|
+
interface FixedFeeCondition {
|
|
9893
|
+
readonly countries: string[];
|
|
9894
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
9895
|
+
}
|
|
9624
9896
|
interface FuelSurchargeAmountByWeightServiceFee {
|
|
9625
9897
|
readonly discriminator: 'fuel_surcharge_amount_by_weight_service_fee';
|
|
9626
9898
|
readonly amount: io.flow.common.v0.models.Money;
|
|
@@ -9681,6 +9953,14 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9681
9953
|
readonly id: string;
|
|
9682
9954
|
readonly ratecard: io.flow.ratecard.v0.models.RatecardSummary;
|
|
9683
9955
|
}
|
|
9956
|
+
interface LargePackageServiceFee {
|
|
9957
|
+
readonly discriminator: 'large_package_service_fee';
|
|
9958
|
+
readonly length_girth_threshold?: number;
|
|
9959
|
+
readonly dimensional_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9960
|
+
readonly weight_threshold?: number;
|
|
9961
|
+
readonly weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9962
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
9963
|
+
}
|
|
9684
9964
|
interface OversizePieceSurchargeRatecardFee {
|
|
9685
9965
|
readonly discriminator: 'oversize_piece_surcharge_ratecard_fee';
|
|
9686
9966
|
readonly dimensional_threshold?: number;
|
|
@@ -9905,6 +10185,11 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9905
10185
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
9906
10186
|
readonly ratecard: io.flow.ratecard.v0.models.Ratecard;
|
|
9907
10187
|
}
|
|
10188
|
+
interface RemoteAreaByWeightServiceFee {
|
|
10189
|
+
readonly discriminator: 'remote_area_by_weight_service_fee';
|
|
10190
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
10191
|
+
readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
10192
|
+
}
|
|
9908
10193
|
interface RemoteAreaRatecardFee {
|
|
9909
10194
|
readonly discriminator: 'remote_area_ratecard_fee';
|
|
9910
10195
|
readonly amount: io.flow.common.v0.models.Money;
|
|
@@ -9917,6 +10202,15 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9917
10202
|
readonly discriminator: 'return_package_ratecard_fee';
|
|
9918
10203
|
readonly amount: number;
|
|
9919
10204
|
}
|
|
10205
|
+
interface SecurityRatecardFee {
|
|
10206
|
+
readonly discriminator: 'security_ratecard_fee';
|
|
10207
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
10208
|
+
}
|
|
10209
|
+
interface SecurityServiceFee {
|
|
10210
|
+
readonly discriminator: 'security_service_fee';
|
|
10211
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
10212
|
+
readonly countries: string[];
|
|
10213
|
+
}
|
|
9920
10214
|
interface ShipmentWindow {
|
|
9921
10215
|
readonly from: number;
|
|
9922
10216
|
readonly to: number;
|
|
@@ -9925,8 +10219,8 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9925
10219
|
declare namespace io.flow.ratecard.v0.unions {
|
|
9926
10220
|
type FuelSurchargeRate = io.flow.ratecard.v0.models.FuelSurchargePercent | io.flow.ratecard.v0.models.FuelSurchargeByWeight;
|
|
9927
10221
|
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;
|
|
9928
|
-
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;
|
|
9929
|
-
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;
|
|
10222
|
+
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;
|
|
10223
|
+
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;
|
|
9930
10224
|
}
|
|
9931
10225
|
declare namespace io.flow.token.v0.models {
|
|
9932
10226
|
interface ChannelToken {
|
|
@@ -10358,7 +10652,7 @@ declare namespace io.flow.price.v0.unions {
|
|
|
10358
10652
|
}
|
|
10359
10653
|
declare namespace io.flow.trueup.v0.enums {
|
|
10360
10654
|
type CarrierChargeReason = 'return_to_origin' | 'rejection' | 'other';
|
|
10361
|
-
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
10655
|
+
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';
|
|
10362
10656
|
}
|
|
10363
10657
|
declare namespace io.flow.trueup.v0.models {
|
|
10364
10658
|
interface DeadWeight {
|
|
@@ -11175,7 +11469,7 @@ declare namespace io.flow.inventory.v0.unions {
|
|
|
11175
11469
|
declare namespace io.flow.permission.v0.enums {
|
|
11176
11470
|
type AuthenticationTechnique = 'anonymous' | 'session' | 'token' | 'partner_token' | 'user';
|
|
11177
11471
|
type FlowBehavior = 'view_consumer_data';
|
|
11178
|
-
type FlowRole = 'organization_admin' | 'organization_merchant' | 'organization_customer_service' | 'organization_fulfillment' | 'organization_marketing' | 'organization_finance' | 'flow_operations' | 'channel_admin' | 'channel_organization_admin';
|
|
11472
|
+
type FlowRole = 'organization_admin' | 'organization_merchant' | 'organization_customer_service' | 'organization_fulfillment' | 'organization_marketing' | 'organization_finance' | 'organization_classification' | 'flow_operations' | 'channel_admin' | 'channel_organization_admin';
|
|
11179
11473
|
type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
11180
11474
|
}
|
|
11181
11475
|
declare namespace io.flow.permission.v0.models {
|
|
@@ -11297,6 +11591,7 @@ declare namespace io.flow.item.v0.models {
|
|
|
11297
11591
|
}
|
|
11298
11592
|
declare namespace io.flow.billing.internal.v0.enums {
|
|
11299
11593
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
11594
|
+
type AccountStatus = 'active' | 'inactive';
|
|
11300
11595
|
type AccountType = 'channel' | 'organization';
|
|
11301
11596
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
11302
11597
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
@@ -11306,7 +11601,7 @@ declare namespace io.flow.billing.internal.v0.enums {
|
|
|
11306
11601
|
type BillingStatementBatchFileKey = 'summary';
|
|
11307
11602
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
11308
11603
|
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';
|
|
11309
|
-
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge';
|
|
11604
|
+
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
11310
11605
|
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
11311
11606
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
11312
11607
|
type DisputeTransactionType = 'adjustment' | 'dispute';
|
|
@@ -11387,7 +11682,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11387
11682
|
readonly merchant_of_record_fee?: number;
|
|
11388
11683
|
readonly duty_guarantee_fee?: number;
|
|
11389
11684
|
readonly transfer_fee?: number;
|
|
11390
|
-
readonly
|
|
11685
|
+
readonly negative_balance_fee?: number;
|
|
11391
11686
|
readonly order_service_fee?: io.flow.billing.internal.v0.models.TieredFee;
|
|
11392
11687
|
readonly label_fees?: io.flow.billing.internal.v0.models.AccountSettingLabelFees;
|
|
11393
11688
|
readonly charge_label_cost_directly: boolean;
|
|
@@ -11544,6 +11839,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11544
11839
|
readonly b2b_tax_remittance_days?: number;
|
|
11545
11840
|
readonly mor_fee?: number;
|
|
11546
11841
|
readonly duty_guarantee_fee?: number;
|
|
11842
|
+
readonly negative_balance_fee?: number;
|
|
11547
11843
|
readonly order_service_fee?: io.flow.billing.internal.v0.models.TieredFee;
|
|
11548
11844
|
readonly label_fee?: io.flow.billing.internal.v0.models.TieredFee;
|
|
11549
11845
|
}
|
|
@@ -11630,6 +11926,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11630
11926
|
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
11631
11927
|
readonly id: string;
|
|
11632
11928
|
readonly key?: string;
|
|
11929
|
+
readonly status: io.flow.billing.internal.v0.enums.AccountStatus;
|
|
11633
11930
|
readonly origin?: io.flow.billing.internal.v0.models.AccountOrigin;
|
|
11634
11931
|
readonly currency: string;
|
|
11635
11932
|
readonly updated_at: string;
|
|
@@ -11820,6 +12117,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11820
12117
|
readonly source: io.flow.billing.internal.v0.models.AccountSource;
|
|
11821
12118
|
readonly id: string;
|
|
11822
12119
|
readonly key?: string;
|
|
12120
|
+
readonly status: io.flow.billing.internal.v0.enums.AccountStatus;
|
|
11823
12121
|
readonly origin?: io.flow.billing.internal.v0.models.AccountOrigin;
|
|
11824
12122
|
readonly currency: string;
|
|
11825
12123
|
readonly updated_at: string;
|
|
@@ -11833,6 +12131,16 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11833
12131
|
readonly bank_account?: io.flow.billing.internal.v0.models.BankAccountReference;
|
|
11834
12132
|
readonly created_at: string;
|
|
11835
12133
|
}
|
|
12134
|
+
interface FlowAccountStatusForm {
|
|
12135
|
+
readonly status: io.flow.billing.internal.v0.enums.AccountStatus;
|
|
12136
|
+
}
|
|
12137
|
+
interface FlowBillingStatement {
|
|
12138
|
+
readonly id: string;
|
|
12139
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
12140
|
+
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
12141
|
+
readonly totals: io.flow.billing.internal.v0.models.BillingStatementTotals;
|
|
12142
|
+
readonly attachments: io.flow.billing.internal.v0.models.BillingStatementAttachment[];
|
|
12143
|
+
}
|
|
11836
12144
|
interface FxFee {
|
|
11837
12145
|
readonly base: io.flow.common.v0.models.Money;
|
|
11838
12146
|
readonly local: io.flow.common.v0.models.Money;
|
|
@@ -11982,6 +12290,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11982
12290
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
11983
12291
|
readonly id: string;
|
|
11984
12292
|
readonly key?: string;
|
|
12293
|
+
readonly status: io.flow.billing.internal.v0.enums.AccountStatus;
|
|
11985
12294
|
readonly origin?: io.flow.billing.internal.v0.models.AccountOrigin;
|
|
11986
12295
|
readonly currency: string;
|
|
11987
12296
|
readonly updated_at: string;
|
|
@@ -12256,11 +12565,14 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
12256
12565
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
12257
12566
|
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';
|
|
12258
12567
|
type StatementAttachmentType = 'csv';
|
|
12259
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'trueup' | 'carrier_charge' | '
|
|
12568
|
+
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';
|
|
12260
12569
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl';
|
|
12261
12570
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
12262
12571
|
}
|
|
12263
12572
|
declare namespace io.flow.billing.v0.models {
|
|
12573
|
+
interface AccountIdReference {
|
|
12574
|
+
readonly id: string;
|
|
12575
|
+
}
|
|
12264
12576
|
interface AccountReference {
|
|
12265
12577
|
readonly id: string;
|
|
12266
12578
|
readonly currency: string;
|
|
@@ -12341,6 +12653,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12341
12653
|
interface ChannelTransaction {
|
|
12342
12654
|
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
12343
12655
|
readonly id: string;
|
|
12656
|
+
readonly account: io.flow.billing.v0.models.AccountIdReference;
|
|
12344
12657
|
readonly metadata?: io.flow.billing.v0.unions.TransactionMetadata;
|
|
12345
12658
|
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
12346
12659
|
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
@@ -12364,6 +12677,25 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12364
12677
|
readonly amount: number;
|
|
12365
12678
|
readonly description?: string;
|
|
12366
12679
|
}
|
|
12680
|
+
interface FlowTransaction {
|
|
12681
|
+
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
12682
|
+
readonly id: string;
|
|
12683
|
+
readonly account: io.flow.billing.v0.models.AccountIdReference;
|
|
12684
|
+
readonly metadata?: io.flow.billing.v0.unions.TransactionMetadata;
|
|
12685
|
+
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
12686
|
+
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
12687
|
+
readonly currency: string;
|
|
12688
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
12689
|
+
readonly parent?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
12690
|
+
readonly gross: number;
|
|
12691
|
+
readonly fees: io.flow.billing.v0.models.FeeDeduction[];
|
|
12692
|
+
readonly withholdings: io.flow.billing.v0.models.WithholdingDeduction[];
|
|
12693
|
+
readonly discounts: io.flow.billing.v0.models.BillingDiscount[];
|
|
12694
|
+
readonly net: number;
|
|
12695
|
+
readonly identifiers: Record<string, string>;
|
|
12696
|
+
readonly created_at: string;
|
|
12697
|
+
readonly updated_at: string;
|
|
12698
|
+
}
|
|
12367
12699
|
interface OrganizationBankAccount {
|
|
12368
12700
|
readonly id: string;
|
|
12369
12701
|
readonly key: string;
|
|
@@ -12417,6 +12749,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12417
12749
|
}
|
|
12418
12750
|
interface PayoutTransaction {
|
|
12419
12751
|
readonly id: string;
|
|
12752
|
+
readonly account: io.flow.billing.v0.models.AccountIdReference;
|
|
12420
12753
|
readonly metadata?: io.flow.billing.v0.unions.TransactionMetadata;
|
|
12421
12754
|
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
12422
12755
|
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
@@ -12460,6 +12793,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12460
12793
|
interface Transaction {
|
|
12461
12794
|
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
12462
12795
|
readonly id: string;
|
|
12796
|
+
readonly account: io.flow.billing.v0.models.AccountIdReference;
|
|
12463
12797
|
readonly metadata?: io.flow.billing.v0.unions.TransactionMetadata;
|
|
12464
12798
|
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
12465
12799
|
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
@@ -12481,6 +12815,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12481
12815
|
readonly label_created_at: string;
|
|
12482
12816
|
readonly carrier_id: string;
|
|
12483
12817
|
readonly carrier_tracking_number: string;
|
|
12818
|
+
readonly revenue_share_percentage: number;
|
|
12484
12819
|
readonly outbound?: io.flow.billing.v0.models.TransactionMetadataCarrierChargeOutbound;
|
|
12485
12820
|
}
|
|
12486
12821
|
interface TransactionMetadataCarrierChargeOutbound {
|
|
@@ -13615,8 +13950,9 @@ declare namespace io.flow.checkout.v0.unions {
|
|
|
13615
13950
|
type CheckoutTokenForm = io.flow.checkout.v0.models.CheckoutTokenOrderForm | io.flow.checkout.v0.models.CheckoutTokenReferenceForm;
|
|
13616
13951
|
}
|
|
13617
13952
|
declare namespace io.flow.organization.onboarding.state.v0.enums {
|
|
13953
|
+
type MerchantDisabledReason = 'merchant_deactivated' | 'merchant_rejected';
|
|
13618
13954
|
type MerchantRejectedReason = 'merchant_ubo_is_pep' | 'merchant_catalog_is_unsupportable' | 'merchant_failed_kyb_review';
|
|
13619
|
-
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';
|
|
13955
|
+
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';
|
|
13620
13956
|
}
|
|
13621
13957
|
declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
13622
13958
|
interface ActivationPutForm {
|
|
@@ -13637,6 +13973,10 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
13637
13973
|
readonly discriminator: 'merchant_deactivated';
|
|
13638
13974
|
readonly reason: string;
|
|
13639
13975
|
}
|
|
13976
|
+
interface MerchantDisabled {
|
|
13977
|
+
readonly discriminator: 'merchant_disabled';
|
|
13978
|
+
readonly reason: io.flow.organization.onboarding.state.v0.enums.MerchantDisabledReason;
|
|
13979
|
+
}
|
|
13640
13980
|
interface MerchantRejected {
|
|
13641
13981
|
readonly discriminator: 'merchant_rejected';
|
|
13642
13982
|
readonly reason: io.flow.organization.onboarding.state.v0.enums.MerchantRejectedReason;
|
|
@@ -13674,7 +14014,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
13674
14014
|
}
|
|
13675
14015
|
}
|
|
13676
14016
|
declare namespace io.flow.organization.onboarding.state.v0.unions {
|
|
13677
|
-
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;
|
|
14017
|
+
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;
|
|
13678
14018
|
}
|
|
13679
14019
|
declare namespace io.flow.fraud.v0.enums {
|
|
13680
14020
|
type FraudEmailRuleDecision = 'approved' | 'declined';
|
|
@@ -13976,6 +14316,7 @@ declare namespace io.flow.billing.bank.account.v0.unions {
|
|
|
13976
14316
|
}
|
|
13977
14317
|
declare namespace io.flow.internal.v0.enums {
|
|
13978
14318
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
14319
|
+
type AccountStatus = 'active' | 'inactive';
|
|
13979
14320
|
type AccountType = 'channel' | 'organization';
|
|
13980
14321
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
13981
14322
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
@@ -13986,7 +14327,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13986
14327
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
13987
14328
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
13988
14329
|
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';
|
|
13989
|
-
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';
|
|
14330
|
+
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';
|
|
13990
14331
|
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';
|
|
13991
14332
|
type BillingStatementBatchFileKey = 'summary';
|
|
13992
14333
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
@@ -13995,7 +14336,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13995
14336
|
type BlazeCheckoutStep = 'customer_info' | 'delivery' | 'payment';
|
|
13996
14337
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
13997
14338
|
type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax' | 'dtce_with_inclusive_pricing';
|
|
13998
|
-
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge';
|
|
14339
|
+
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
13999
14340
|
type CarrierChargeType = 'label' | 'other';
|
|
14000
14341
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
14001
14342
|
type CarrierValidationStatus = 'success' | 'error';
|
|
@@ -14115,7 +14456,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14115
14456
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
14116
14457
|
type EmptyAttribute = 'irrelevant';
|
|
14117
14458
|
type ErpFileType = 'vendor';
|
|
14118
|
-
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';
|
|
14459
|
+
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';
|
|
14119
14460
|
type ExperienceImportType = 'experience_with_settings';
|
|
14120
14461
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
14121
14462
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -14163,6 +14504,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14163
14504
|
type MarketingGatewayPlatform = 'google' | 'facebook' | 'adroll' | 'aliexpress' | 'amazon' | 'bing' | 'criteo' | 'fruugo' | 'pinterest' | 'rakuten_japan' | 'wish' | 'snapchat' | 'stylight';
|
|
14164
14505
|
type MarketingGatewayProductStatus = 'approved' | 'not_approved' | 'pending' | 'not_found' | 'excluded';
|
|
14165
14506
|
type MarketingGatewaySchemaCompatibility = 'google' | 'facebook_primary' | 'facebook_country_override' | 'supplemental';
|
|
14507
|
+
type MatiasItemType = 'physical' | 'digital';
|
|
14166
14508
|
type MixedBagWeight = '0' | '1' | '2';
|
|
14167
14509
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
14168
14510
|
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';
|
|
@@ -14179,7 +14521,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14179
14521
|
type OrderChargeTrigger = 'first_shipment' | 'last_shipment' | 'shipment_exhausted';
|
|
14180
14522
|
type OrderLifecycleEvent = 'order_placed' | 'ready_to_fulfill';
|
|
14181
14523
|
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
14182
|
-
type OrderValidationStatus = 'success' | 'failed' | 'unresolvable';
|
|
14524
|
+
type OrderValidationStatus = 'success' | 'failed' | 'label_created' | 'unresolvable';
|
|
14183
14525
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
14184
14526
|
type OrganizationMetricType = 'organization_restriction_snapshot' | 'organization_restriction_status';
|
|
14185
14527
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
@@ -14385,7 +14727,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14385
14727
|
readonly merchant_of_record_fee?: number;
|
|
14386
14728
|
readonly duty_guarantee_fee?: number;
|
|
14387
14729
|
readonly transfer_fee?: number;
|
|
14388
|
-
readonly
|
|
14730
|
+
readonly negative_balance_fee?: number;
|
|
14389
14731
|
readonly order_service_fee?: io.flow.internal.v0.models.TieredFee;
|
|
14390
14732
|
readonly label_fees?: io.flow.internal.v0.models.AccountSettingLabelFees;
|
|
14391
14733
|
readonly charge_label_cost_directly: boolean;
|
|
@@ -14463,6 +14805,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14463
14805
|
readonly action: io.flow.internal.v0.enums.ItemQuantityAction;
|
|
14464
14806
|
readonly quantity: number;
|
|
14465
14807
|
}
|
|
14808
|
+
interface AdditionalImportTax {
|
|
14809
|
+
readonly name?: string;
|
|
14810
|
+
readonly additional_import_tax_value?: io.flow.common.v0.models.Money;
|
|
14811
|
+
readonly rate?: number;
|
|
14812
|
+
}
|
|
14466
14813
|
interface AddressConfigurationProvinceSetting {
|
|
14467
14814
|
readonly code: io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
14468
14815
|
}
|
|
@@ -14956,13 +15303,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14956
15303
|
readonly attributes?: Record<string, string>;
|
|
14957
15304
|
readonly total: io.flow.common.v0.models.Price;
|
|
14958
15305
|
}
|
|
14959
|
-
interface BankPaymentDeleted {
|
|
14960
|
-
readonly discriminator: 'bank_payment_deleted';
|
|
14961
|
-
readonly event_id: string;
|
|
14962
|
-
readonly timestamp: string;
|
|
14963
|
-
readonly organization: string;
|
|
14964
|
-
readonly bank_payment: io.flow.internal.v0.models.BankPayment;
|
|
14965
|
-
}
|
|
14966
15306
|
interface BankPaymentDeletedV2 {
|
|
14967
15307
|
readonly discriminator: 'bank_payment_deleted_v2';
|
|
14968
15308
|
readonly event_id: string;
|
|
@@ -15097,6 +15437,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15097
15437
|
readonly b2b_tax_remittance_days?: number;
|
|
15098
15438
|
readonly mor_fee?: number;
|
|
15099
15439
|
readonly duty_guarantee_fee?: number;
|
|
15440
|
+
readonly negative_balance_fee?: number;
|
|
15100
15441
|
readonly order_service_fee?: io.flow.internal.v0.models.TieredFee;
|
|
15101
15442
|
readonly label_fee?: io.flow.internal.v0.models.TieredFee;
|
|
15102
15443
|
}
|
|
@@ -15461,6 +15802,47 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15461
15802
|
readonly rate: number;
|
|
15462
15803
|
readonly name: string;
|
|
15463
15804
|
}
|
|
15805
|
+
interface CalculationStampingLineItem {
|
|
15806
|
+
readonly id?: string;
|
|
15807
|
+
readonly hs_code?: string;
|
|
15808
|
+
readonly duty: io.flow.common.v0.models.Money;
|
|
15809
|
+
readonly duty_rate: number;
|
|
15810
|
+
readonly sales_tax: io.flow.common.v0.models.Money;
|
|
15811
|
+
readonly sales_tax_rate: number;
|
|
15812
|
+
readonly additional_tax?: io.flow.common.v0.models.Money;
|
|
15813
|
+
readonly additional_tax_rate?: number;
|
|
15814
|
+
readonly total: io.flow.common.v0.models.Money;
|
|
15815
|
+
}
|
|
15816
|
+
interface CalculationStampingShippingLine {
|
|
15817
|
+
readonly first_ship_from?: string;
|
|
15818
|
+
readonly duty?: number;
|
|
15819
|
+
readonly duty_rate?: number;
|
|
15820
|
+
readonly tax?: number;
|
|
15821
|
+
readonly tax_rate?: number;
|
|
15822
|
+
readonly price?: number;
|
|
15823
|
+
readonly duty_rate_on_shipping?: number;
|
|
15824
|
+
readonly tax_rate_on_shipping?: number;
|
|
15825
|
+
readonly import_fee?: number;
|
|
15826
|
+
}
|
|
15827
|
+
interface CalculationStep {
|
|
15828
|
+
readonly discriminator: 'calculation_step';
|
|
15829
|
+
readonly primary_identifier: string;
|
|
15830
|
+
readonly line_item: io.flow.internal.v0.models.CalculationStampingLineItem[];
|
|
15831
|
+
readonly shipping_line_item: io.flow.internal.v0.models.CalculationStampingShippingLine;
|
|
15832
|
+
readonly total: io.flow.internal.v0.models.CalculationTotal;
|
|
15833
|
+
readonly explanation?: string;
|
|
15834
|
+
}
|
|
15835
|
+
interface CalculationTotal {
|
|
15836
|
+
readonly customs_value_name: string;
|
|
15837
|
+
readonly customs_value_amount: io.flow.common.v0.models.Money;
|
|
15838
|
+
readonly additional_import_included?: boolean;
|
|
15839
|
+
readonly additional_import_value?: io.flow.common.v0.models.Money;
|
|
15840
|
+
readonly duty: io.flow.common.v0.models.Money;
|
|
15841
|
+
readonly sales_tax: io.flow.common.v0.models.Money;
|
|
15842
|
+
readonly additional_tax_import_included: boolean;
|
|
15843
|
+
readonly additional_tax?: io.flow.common.v0.models.Money;
|
|
15844
|
+
readonly additional_import_tax?: io.flow.internal.v0.models.AdditionalImportTax[];
|
|
15845
|
+
}
|
|
15464
15846
|
interface CalculatorDtcePostBody {
|
|
15465
15847
|
readonly products: io.flow.internal.v0.models.CalculatorDtceProduct[];
|
|
15466
15848
|
readonly countryCodeFrom: string;
|
|
@@ -15746,6 +16128,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15746
16128
|
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
15747
16129
|
readonly id: string;
|
|
15748
16130
|
readonly key?: string;
|
|
16131
|
+
readonly status: io.flow.internal.v0.enums.AccountStatus;
|
|
15749
16132
|
readonly origin?: io.flow.internal.v0.models.AccountOrigin;
|
|
15750
16133
|
readonly currency: string;
|
|
15751
16134
|
readonly updated_at: string;
|
|
@@ -15896,6 +16279,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15896
16279
|
readonly tracking_numbers?: string[];
|
|
15897
16280
|
readonly carrier?: io.flow.reference.v0.models.CarrierService;
|
|
15898
16281
|
readonly duty_paid: boolean;
|
|
16282
|
+
readonly shop_id?: string;
|
|
15899
16283
|
}
|
|
15900
16284
|
interface ChannelOrderAcceptance {
|
|
15901
16285
|
readonly id: string;
|
|
@@ -15904,6 +16288,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15904
16288
|
readonly channel_id: string;
|
|
15905
16289
|
readonly external_order_reference: string;
|
|
15906
16290
|
readonly payment_request_id?: string;
|
|
16291
|
+
readonly order_edit_payment_request_ids?: string[];
|
|
15907
16292
|
readonly status: io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
15908
16293
|
readonly reasons: io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
15909
16294
|
readonly next_action_from?: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
@@ -17973,7 +18358,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17973
18358
|
readonly invoice_reference: string;
|
|
17974
18359
|
readonly signature_url: string;
|
|
17975
18360
|
readonly signature_date: string;
|
|
17976
|
-
readonly signature_name
|
|
18361
|
+
readonly signature_name?: string;
|
|
17977
18362
|
readonly line_items: io.flow.internal.v0.models.InvoiceLineItem[];
|
|
17978
18363
|
readonly currency: string;
|
|
17979
18364
|
readonly delivered_duty: string;
|
|
@@ -18020,6 +18405,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18020
18405
|
readonly timestamp: string;
|
|
18021
18406
|
readonly invoice: io.flow.internal.v0.models.CommercialInvoiceInternal;
|
|
18022
18407
|
}
|
|
18408
|
+
interface CommercialInvoiceSummary {
|
|
18409
|
+
readonly id: string;
|
|
18410
|
+
readonly label_id: string;
|
|
18411
|
+
readonly line_items: io.flow.internal.v0.models.InvoiceLineItem[];
|
|
18412
|
+
}
|
|
18023
18413
|
interface CompanyReference {
|
|
18024
18414
|
readonly id: string;
|
|
18025
18415
|
}
|
|
@@ -18809,6 +19199,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18809
19199
|
readonly bank_code: string;
|
|
18810
19200
|
readonly id: string;
|
|
18811
19201
|
readonly tax_code?: string;
|
|
19202
|
+
readonly tax_code_2?: string;
|
|
19203
|
+
readonly debit_entry_code?: string;
|
|
19204
|
+
readonly credit_entry_code?: string;
|
|
18812
19205
|
readonly vat_flag?: string;
|
|
18813
19206
|
readonly w_tax_percent?: string;
|
|
18814
19207
|
readonly iban?: string;
|
|
@@ -18853,6 +19246,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18853
19246
|
readonly id: string;
|
|
18854
19247
|
readonly acc_des?: string;
|
|
18855
19248
|
readonly tax_code?: string;
|
|
19249
|
+
readonly tax_code_2?: string;
|
|
19250
|
+
readonly debit_entry_code?: string;
|
|
19251
|
+
readonly credit_entry_code?: string;
|
|
18856
19252
|
readonly vat_flag?: string;
|
|
18857
19253
|
readonly country_name?: string;
|
|
18858
19254
|
readonly w_tax_percent?: string;
|
|
@@ -19393,6 +19789,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19393
19789
|
readonly fx?: io.flow.internal.v0.models.Fee;
|
|
19394
19790
|
readonly duty_guarantee?: io.flow.internal.v0.models.Fee;
|
|
19395
19791
|
readonly transfer?: io.flow.internal.v0.models.Fee;
|
|
19792
|
+
readonly negative_balance?: io.flow.internal.v0.models.Fee;
|
|
19396
19793
|
}
|
|
19397
19794
|
interface FinanceBankAccount {
|
|
19398
19795
|
readonly id: string;
|
|
@@ -19519,6 +19916,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19519
19916
|
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
19520
19917
|
readonly id: string;
|
|
19521
19918
|
readonly key?: string;
|
|
19919
|
+
readonly status: io.flow.internal.v0.enums.AccountStatus;
|
|
19522
19920
|
readonly origin?: io.flow.internal.v0.models.AccountOrigin;
|
|
19523
19921
|
readonly currency: string;
|
|
19524
19922
|
readonly updated_at: string;
|
|
@@ -19532,6 +19930,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19532
19930
|
readonly bank_account?: io.flow.internal.v0.models.BankAccountReference;
|
|
19533
19931
|
readonly created_at: string;
|
|
19534
19932
|
}
|
|
19933
|
+
interface FlowAccountStatusForm {
|
|
19934
|
+
readonly status: io.flow.internal.v0.enums.AccountStatus;
|
|
19935
|
+
}
|
|
19936
|
+
interface FlowBillingStatement {
|
|
19937
|
+
readonly id: string;
|
|
19938
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
19939
|
+
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
19940
|
+
readonly totals: io.flow.internal.v0.models.BillingStatementTotals;
|
|
19941
|
+
readonly attachments: io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
19942
|
+
}
|
|
19535
19943
|
interface FlowChannelOrganization {
|
|
19536
19944
|
readonly placeholder?: string;
|
|
19537
19945
|
}
|
|
@@ -19756,7 +20164,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19756
20164
|
readonly id: string;
|
|
19757
20165
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
19758
20166
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
19759
|
-
readonly remittance
|
|
20167
|
+
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
19760
20168
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
19761
20169
|
readonly sequence_number: number;
|
|
19762
20170
|
readonly posting_cutoff: string;
|
|
@@ -21151,6 +21559,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21151
21559
|
readonly number: string;
|
|
21152
21560
|
readonly fulfillment_method: io.flow.catalog.v0.enums.FulfillmentMethodValue;
|
|
21153
21561
|
readonly country_of_origin?: string;
|
|
21562
|
+
readonly tarriff_code?: string;
|
|
21154
21563
|
readonly inferred?: boolean;
|
|
21155
21564
|
}
|
|
21156
21565
|
interface ItemValuesForm {
|
|
@@ -21991,6 +22400,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21991
22400
|
readonly shopify_order: io.flow.shopify.markets.v0.models.ShopifyOrder;
|
|
21992
22401
|
readonly flow_authorization?: io.flow.payment.v0.unions.Authorization;
|
|
21993
22402
|
}
|
|
22403
|
+
interface MatiasItem {
|
|
22404
|
+
readonly id: string;
|
|
22405
|
+
readonly number: string;
|
|
22406
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
22407
|
+
readonly description?: string;
|
|
22408
|
+
readonly type: io.flow.internal.v0.enums.MatiasItemType;
|
|
22409
|
+
readonly added_on: string;
|
|
22410
|
+
}
|
|
22411
|
+
interface MatiasItemDeleted {
|
|
22412
|
+
readonly discriminator: 'matias_item_deleted';
|
|
22413
|
+
readonly event_id: string;
|
|
22414
|
+
readonly timestamp: string;
|
|
22415
|
+
readonly id: string;
|
|
22416
|
+
}
|
|
22417
|
+
interface MatiasItemForm {
|
|
22418
|
+
readonly number: string;
|
|
22419
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
22420
|
+
readonly description?: string;
|
|
22421
|
+
readonly type: io.flow.internal.v0.enums.MatiasItemType;
|
|
22422
|
+
readonly added_on: string;
|
|
22423
|
+
}
|
|
22424
|
+
interface MatiasItemUpserted {
|
|
22425
|
+
readonly discriminator: 'matias_item_upserted';
|
|
22426
|
+
readonly event_id: string;
|
|
22427
|
+
readonly timestamp: string;
|
|
22428
|
+
readonly item: io.flow.internal.v0.models.MatiasItem;
|
|
22429
|
+
}
|
|
21994
22430
|
interface Merchant {
|
|
21995
22431
|
readonly id: string;
|
|
21996
22432
|
readonly account: io.flow.internal.v0.models.AccountReference;
|
|
@@ -22095,6 +22531,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22095
22531
|
readonly timestamp: string;
|
|
22096
22532
|
readonly merchant: io.flow.internal.v0.models.Merchant;
|
|
22097
22533
|
}
|
|
22534
|
+
interface MessageStamp {
|
|
22535
|
+
readonly discriminator: 'message_stamp';
|
|
22536
|
+
readonly message: string;
|
|
22537
|
+
}
|
|
22098
22538
|
interface MetadataProposition {
|
|
22099
22539
|
readonly shipping_method: io.flow.internal.v0.models.ShippingMethodReference;
|
|
22100
22540
|
readonly name: string;
|
|
@@ -22514,6 +22954,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22514
22954
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
22515
22955
|
readonly id: string;
|
|
22516
22956
|
readonly key?: string;
|
|
22957
|
+
readonly status: io.flow.internal.v0.enums.AccountStatus;
|
|
22517
22958
|
readonly origin?: io.flow.internal.v0.models.AccountOrigin;
|
|
22518
22959
|
readonly currency: string;
|
|
22519
22960
|
readonly updated_at: string;
|
|
@@ -24092,6 +24533,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24092
24533
|
readonly id: string;
|
|
24093
24534
|
}
|
|
24094
24535
|
interface ReportingShipment {
|
|
24536
|
+
readonly remittance?: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
24095
24537
|
readonly carrier: string;
|
|
24096
24538
|
readonly tracking_number?: string;
|
|
24097
24539
|
}
|
|
@@ -24352,7 +24794,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24352
24794
|
readonly id: string;
|
|
24353
24795
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
24354
24796
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
24355
|
-
readonly remittance
|
|
24797
|
+
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
24356
24798
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
24357
24799
|
readonly sequence_number: number;
|
|
24358
24800
|
readonly posting_cutoff: string;
|
|
@@ -26215,6 +26657,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26215
26657
|
type AuthorizedOrderCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
26216
26658
|
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;
|
|
26217
26659
|
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;
|
|
26660
|
+
type CalculatorStamp = io.flow.internal.v0.models.MessageStamp | io.flow.internal.v0.models.CalculationStep;
|
|
26218
26661
|
type CarrierChargeForm = io.flow.internal.v0.models.CarrierChargeFormLabel | io.flow.internal.v0.models.CarrierChargeFormOther;
|
|
26219
26662
|
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;
|
|
26220
26663
|
type ChannelRateMetadata = io.flow.internal.v0.models.ChannelRateMetadataIdentity | io.flow.internal.v0.models.ChannelRateMetadataRate;
|
|
@@ -26311,7 +26754,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26311
26754
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
26312
26755
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
26313
26756
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
26314
|
-
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;
|
|
26757
|
+
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;
|
|
26315
26758
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
26316
26759
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
26317
26760
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -26396,12 +26839,14 @@ export declare type AccountSettingsDeleted = io.flow.internal.v0.models.AccountS
|
|
|
26396
26839
|
export declare type AccountSettingsUpserted = io.flow.internal.v0.models.AccountSettingsUpserted;
|
|
26397
26840
|
export declare type AccountSource = io.flow.internal.v0.models.AccountSource;
|
|
26398
26841
|
export declare type AccountStatistics = io.flow.internal.v0.models.AccountStatistics;
|
|
26842
|
+
export declare type AccountStatus = io.flow.internal.v0.enums.AccountStatus;
|
|
26399
26843
|
export declare type AccountSummary = io.flow.internal.v0.models.AccountSummary;
|
|
26400
26844
|
export declare type AccountTransactionsExportRequest = io.flow.internal.v0.models.AccountTransactionsExportRequest;
|
|
26401
26845
|
export declare type AccountType = io.flow.internal.v0.enums.AccountType;
|
|
26402
26846
|
export declare type AccountUpserted = io.flow.internal.v0.models.AccountUpserted;
|
|
26403
26847
|
export declare type AccountUpsertedV2 = io.flow.internal.v0.models.AccountUpsertedV2;
|
|
26404
26848
|
export declare type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
|
|
26849
|
+
export declare type AdditionalImportTax = io.flow.internal.v0.models.AdditionalImportTax;
|
|
26405
26850
|
export declare type AddressConfigurationProvinceSetting = io.flow.internal.v0.models.AddressConfigurationProvinceSetting;
|
|
26406
26851
|
export declare type AddressConfigurationSetting = io.flow.internal.v0.models.AddressConfigurationSetting;
|
|
26407
26852
|
export declare type AddressConfigurationSettingForm = io.flow.internal.v0.models.AddressConfigurationSettingForm;
|
|
@@ -26492,7 +26937,6 @@ export declare type Backfill = io.flow.internal.v0.models.Backfill;
|
|
|
26492
26937
|
export declare type BackfillForm = io.flow.internal.v0.models.BackfillForm;
|
|
26493
26938
|
export declare type BankAccountReference = io.flow.internal.v0.models.BankAccountReference;
|
|
26494
26939
|
export declare type BankPayment = io.flow.internal.v0.models.BankPayment;
|
|
26495
|
-
export declare type BankPaymentDeleted = io.flow.internal.v0.models.BankPaymentDeleted;
|
|
26496
26940
|
export declare type BankPaymentDeletedV2 = io.flow.internal.v0.models.BankPaymentDeletedV2;
|
|
26497
26941
|
export declare type BankPaymentForm = io.flow.internal.v0.models.BankPaymentForm;
|
|
26498
26942
|
export declare type BankPaymentPromiseCompletedMethod = io.flow.internal.v0.enums.BankPaymentPromiseCompletedMethod;
|
|
@@ -26593,6 +27037,10 @@ export declare type BrowserBundlePaymentMethods = io.flow.internal.v0.models.Bro
|
|
|
26593
27037
|
export declare type BulkClassificationAction = io.flow.internal.v0.models.BulkClassificationAction;
|
|
26594
27038
|
export declare type ByRuleSnapshot = io.flow.internal.v0.models.ByRuleSnapshot;
|
|
26595
27039
|
export declare type CalculatedTaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount;
|
|
27040
|
+
export declare type CalculationStampingLineItem = io.flow.internal.v0.models.CalculationStampingLineItem;
|
|
27041
|
+
export declare type CalculationStampingShippingLine = io.flow.internal.v0.models.CalculationStampingShippingLine;
|
|
27042
|
+
export declare type CalculationStep = io.flow.internal.v0.models.CalculationStep;
|
|
27043
|
+
export declare type CalculationTotal = io.flow.internal.v0.models.CalculationTotal;
|
|
26596
27044
|
export declare type CalculatorDtcePostBody = io.flow.internal.v0.models.CalculatorDtcePostBody;
|
|
26597
27045
|
export declare type CalculatorDtceProduct = io.flow.internal.v0.models.CalculatorDtceProduct;
|
|
26598
27046
|
export declare type CalculatorEngine = io.flow.internal.v0.enums.CalculatorEngine;
|
|
@@ -26600,6 +27048,7 @@ export declare type CalculatorOrganizationSettings = io.flow.internal.v0.models.
|
|
|
26600
27048
|
export declare type CalculatorOrganizationSettingsDeleted = io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted;
|
|
26601
27049
|
export declare type CalculatorOrganizationSettingsForm = io.flow.internal.v0.models.CalculatorOrganizationSettingsForm;
|
|
26602
27050
|
export declare type CalculatorOrganizationSettingsUpserted = io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted;
|
|
27051
|
+
export declare type CalculatorStamp = io.flow.internal.v0.unions.CalculatorStamp;
|
|
26603
27052
|
export declare type CarrierAccount = io.flow.internal.v0.models.CarrierAccount;
|
|
26604
27053
|
export declare type CarrierAccountDeleted = io.flow.internal.v0.models.CarrierAccountDeleted;
|
|
26605
27054
|
export declare type CarrierAccountForm = io.flow.internal.v0.models.CarrierAccountForm;
|
|
@@ -27268,6 +27717,7 @@ export declare type CommercialInvoiceComparison = io.flow.internal.v0.models.Com
|
|
|
27268
27717
|
export declare type CommercialInvoiceInternal = io.flow.internal.v0.models.CommercialInvoiceInternal;
|
|
27269
27718
|
export declare type CommercialInvoiceInternalDeleted = io.flow.internal.v0.models.CommercialInvoiceInternalDeleted;
|
|
27270
27719
|
export declare type CommercialInvoiceInternalUpserted = io.flow.internal.v0.models.CommercialInvoiceInternalUpserted;
|
|
27720
|
+
export declare type CommercialInvoiceSummary = io.flow.internal.v0.models.CommercialInvoiceSummary;
|
|
27271
27721
|
export declare type CompanyReference = io.flow.internal.v0.models.CompanyReference;
|
|
27272
27722
|
export declare type Compliance = io.flow.internal.v0.models.Compliance;
|
|
27273
27723
|
export declare type ComplianceData = io.flow.internal.v0.unions.ComplianceData;
|
|
@@ -27546,7 +27996,9 @@ export declare type FiservMerchant = io.flow.internal.v0.models.FiservMerchant;
|
|
|
27546
27996
|
export declare type FiservMerchantModificationForm = io.flow.internal.v0.models.FiservMerchantModificationForm;
|
|
27547
27997
|
export declare type FiservMerchantPutForm = io.flow.internal.v0.models.FiservMerchantPutForm;
|
|
27548
27998
|
export declare type FlowAccount = io.flow.internal.v0.models.FlowAccount;
|
|
27999
|
+
export declare type FlowAccountStatusForm = io.flow.internal.v0.models.FlowAccountStatusForm;
|
|
27549
28000
|
export declare type FlowApp = io.flow.internal.v0.enums.FlowApp;
|
|
28001
|
+
export declare type FlowBillingStatement = io.flow.internal.v0.models.FlowBillingStatement;
|
|
27550
28002
|
export declare type FlowChannelOrganization = io.flow.internal.v0.models.FlowChannelOrganization;
|
|
27551
28003
|
export declare type FlowLabProject = io.flow.internal.v0.models.FlowLabProject;
|
|
27552
28004
|
export declare type FlowLabProjectPostForm = io.flow.internal.v0.models.FlowLabProjectPostForm;
|
|
@@ -27940,6 +28392,11 @@ export declare type MarketingGatewaySchemaSummary = io.flow.internal.v0.models.M
|
|
|
27940
28392
|
export declare type MarketingGatewaySourceSummary = io.flow.internal.v0.unions.MarketingGatewaySourceSummary;
|
|
27941
28393
|
export declare type MarketingGatewaySupportedChannelDetails = io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails;
|
|
27942
28394
|
export declare type MarketsOrder = io.flow.internal.v0.models.MarketsOrder;
|
|
28395
|
+
export declare type MatiasItem = io.flow.internal.v0.models.MatiasItem;
|
|
28396
|
+
export declare type MatiasItemDeleted = io.flow.internal.v0.models.MatiasItemDeleted;
|
|
28397
|
+
export declare type MatiasItemForm = io.flow.internal.v0.models.MatiasItemForm;
|
|
28398
|
+
export declare type MatiasItemType = io.flow.internal.v0.enums.MatiasItemType;
|
|
28399
|
+
export declare type MatiasItemUpserted = io.flow.internal.v0.models.MatiasItemUpserted;
|
|
27943
28400
|
export declare type Merchant = io.flow.internal.v0.models.Merchant;
|
|
27944
28401
|
export declare type MerchantApplicationSummaries = io.flow.internal.v0.models.MerchantApplicationSummaries;
|
|
27945
28402
|
export declare type MerchantApplicationSummary = io.flow.internal.v0.models.MerchantApplicationSummary;
|
|
@@ -27955,6 +28412,7 @@ export declare type MerchantSubsidies = io.flow.internal.v0.models.MerchantSubsi
|
|
|
27955
28412
|
export declare type MerchantSummary = io.flow.internal.v0.models.MerchantSummary;
|
|
27956
28413
|
export declare type MerchantTransactions = io.flow.internal.v0.models.MerchantTransactions;
|
|
27957
28414
|
export declare type MerchantUpserted = io.flow.internal.v0.models.MerchantUpserted;
|
|
28415
|
+
export declare type MessageStamp = io.flow.internal.v0.models.MessageStamp;
|
|
27958
28416
|
export declare type MetadataProposition = io.flow.internal.v0.models.MetadataProposition;
|
|
27959
28417
|
export declare type MetadataRatecard = io.flow.internal.v0.models.MetadataRatecard;
|
|
27960
28418
|
export declare type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|