@flowio/api-internal-prop-types 9.24.72 → 9.24.73
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api-internal.d.ts +596 -489
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +596 -489
- package/src/api-internal.js +761 -622
package/src/api-internal.d.ts
CHANGED
|
@@ -122,6 +122,17 @@ declare namespace io.flow.order.price.v0.models {
|
|
|
122
122
|
}
|
|
123
123
|
}
|
|
124
124
|
|
|
125
|
+
declare namespace io.flow.error.v0.enums {
|
|
126
|
+
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
declare namespace io.flow.error.v0.models {
|
|
130
|
+
interface GenericError {
|
|
131
|
+
readonly 'code': io.flow.error.v0.enums.GenericErrorCode;
|
|
132
|
+
readonly 'messages': string[];
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
|
|
125
136
|
declare namespace io.flow.channel.v0.enums {
|
|
126
137
|
type ChannelCurrencyCapability = 'payment_authorizations' | 'settlement_currency';
|
|
127
138
|
}
|
|
@@ -185,121 +196,6 @@ declare namespace io.flow.channel.v0.models {
|
|
|
185
196
|
}
|
|
186
197
|
}
|
|
187
198
|
|
|
188
|
-
declare namespace io.flow.reference.v0.enums {
|
|
189
|
-
type PaymentMethodCapability = 'credit' | 'debit';
|
|
190
|
-
type PaymentMethodType = 'card' | 'online' | 'offline';
|
|
191
|
-
type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
|
|
192
|
-
type ProvinceType = 'area' | 'city' | 'county' | 'department' | 'dependency' | 'district' | 'do_si' | 'emirate' | 'entity' | 'island' | 'municipality' | 'oblast' | 'outlying_area' | 'parish' | 'prefecture' | 'province' | 'state' | 'territory' | 'other';
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
declare namespace io.flow.reference.v0.models {
|
|
196
|
-
interface Carrier {
|
|
197
|
-
readonly 'id': string;
|
|
198
|
-
readonly 'name': string;
|
|
199
|
-
readonly 'tracking_url': string;
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
interface CarrierService {
|
|
203
|
-
readonly 'id': string;
|
|
204
|
-
readonly 'carrier': io.flow.reference.v0.models.Carrier;
|
|
205
|
-
readonly 'name': string;
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
interface Country {
|
|
209
|
-
readonly 'name': string;
|
|
210
|
-
readonly 'iso_3166_2': string;
|
|
211
|
-
readonly 'iso_3166_3': string;
|
|
212
|
-
readonly 'languages': string[];
|
|
213
|
-
readonly 'measurement_system': string;
|
|
214
|
-
readonly 'default_currency'?: string;
|
|
215
|
-
readonly 'default_language'?: string;
|
|
216
|
-
readonly 'timezones': string[];
|
|
217
|
-
readonly 'default_delivered_duty'?: string;
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
interface Currency {
|
|
221
|
-
readonly 'name': string;
|
|
222
|
-
readonly 'iso_4217_3': string;
|
|
223
|
-
readonly 'number_decimals': number;
|
|
224
|
-
readonly 'symbols'?: io.flow.reference.v0.models.CurrencySymbols;
|
|
225
|
-
readonly 'default_locale'?: string;
|
|
226
|
-
}
|
|
227
|
-
|
|
228
|
-
interface CurrencySymbols {
|
|
229
|
-
readonly 'primary': string;
|
|
230
|
-
readonly 'narrow'?: string;
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
interface Language {
|
|
234
|
-
readonly 'name': string;
|
|
235
|
-
readonly 'iso_639_2': string;
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
interface Locale {
|
|
239
|
-
readonly 'id': string;
|
|
240
|
-
readonly 'name': string;
|
|
241
|
-
readonly 'country': string;
|
|
242
|
-
readonly 'language': string;
|
|
243
|
-
readonly 'numbers': io.flow.reference.v0.models.LocaleNumbers;
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
interface LocaleNumbers {
|
|
247
|
-
readonly 'decimal': string;
|
|
248
|
-
readonly 'group': string;
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
interface LocalizedTranslation {
|
|
252
|
-
readonly 'locale': io.flow.reference.v0.models.Locale;
|
|
253
|
-
readonly 'name': string;
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
interface PaymentMethod {
|
|
257
|
-
readonly 'id': string;
|
|
258
|
-
readonly 'type': io.flow.reference.v0.enums.PaymentMethodType;
|
|
259
|
-
readonly 'name': string;
|
|
260
|
-
readonly 'images': io.flow.reference.v0.models.PaymentMethodImages;
|
|
261
|
-
readonly 'regions': string[];
|
|
262
|
-
readonly 'capabilities'?: io.flow.reference.v0.enums.PaymentMethodCapability[];
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
interface PaymentMethodImage {
|
|
266
|
-
readonly 'url': string;
|
|
267
|
-
readonly 'width': number;
|
|
268
|
-
readonly 'height': number;
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
interface PaymentMethodImages {
|
|
272
|
-
readonly 'small': io.flow.reference.v0.models.PaymentMethodImage;
|
|
273
|
-
readonly 'medium': io.flow.reference.v0.models.PaymentMethodImage;
|
|
274
|
-
readonly 'large': io.flow.reference.v0.models.PaymentMethodImage;
|
|
275
|
-
}
|
|
276
|
-
|
|
277
|
-
interface Province {
|
|
278
|
-
readonly 'id': string;
|
|
279
|
-
readonly 'iso_3166_2': string;
|
|
280
|
-
readonly 'name': string;
|
|
281
|
-
readonly 'country': string;
|
|
282
|
-
readonly 'province_type': io.flow.reference.v0.enums.ProvinceType;
|
|
283
|
-
readonly 'translations'?: io.flow.reference.v0.models.LocalizedTranslation[];
|
|
284
|
-
}
|
|
285
|
-
|
|
286
|
-
interface Region {
|
|
287
|
-
readonly 'id': string;
|
|
288
|
-
readonly 'name': string;
|
|
289
|
-
readonly 'countries': string[];
|
|
290
|
-
readonly 'currencies': string[];
|
|
291
|
-
readonly 'languages': string[];
|
|
292
|
-
readonly 'measurement_systems': string[];
|
|
293
|
-
readonly 'timezones': string[];
|
|
294
|
-
}
|
|
295
|
-
|
|
296
|
-
interface Timezone {
|
|
297
|
-
readonly 'name': string;
|
|
298
|
-
readonly 'description': string;
|
|
299
|
-
readonly 'offset': number;
|
|
300
|
-
}
|
|
301
|
-
}
|
|
302
|
-
|
|
303
199
|
declare namespace io.flow.invoice.v0.enums {
|
|
304
200
|
type PaymentTerm = 'net7' | 'net15' | 'net30';
|
|
305
201
|
}
|
|
@@ -1464,6 +1360,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1464
1360
|
readonly 'processor': string;
|
|
1465
1361
|
readonly 'operation_identifier'?: io.flow.payment.v0.models.PaymentProcessorIdentifier;
|
|
1466
1362
|
readonly 'account'?: io.flow.payment.v0.models.PaymentProcessorAccount;
|
|
1363
|
+
readonly 'transaction_details'?: io.flow.payment.v0.unions.PaymentProcessorTransactionDetails;
|
|
1467
1364
|
}
|
|
1468
1365
|
|
|
1469
1366
|
interface PaymentProcessorAccount {
|
|
@@ -1488,6 +1385,17 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1488
1385
|
readonly 'processor': string;
|
|
1489
1386
|
}
|
|
1490
1387
|
|
|
1388
|
+
interface PaymentProcessorTransactionDetailsCard {
|
|
1389
|
+
readonly 'discriminator': 'card';
|
|
1390
|
+
readonly 'transaction_identifier'?: string;
|
|
1391
|
+
readonly 'method_type'?: string;
|
|
1392
|
+
readonly 'result_status'?: string;
|
|
1393
|
+
readonly 'reason_code'?: string;
|
|
1394
|
+
readonly 'avs_result_code'?: string;
|
|
1395
|
+
readonly 'cvv_result_code'?: string;
|
|
1396
|
+
readonly 'threeds_result_code'?: string;
|
|
1397
|
+
}
|
|
1398
|
+
|
|
1491
1399
|
interface PaymentReference {
|
|
1492
1400
|
readonly 'id': string;
|
|
1493
1401
|
}
|
|
@@ -1824,6 +1732,7 @@ declare namespace io.flow.payment.v0.unions {
|
|
|
1824
1732
|
type Payment = (io.flow.payment.v0.models.PaymentPaypal | io.flow.payment.v0.models.PaymentCryptopay);
|
|
1825
1733
|
type PaymentForm = (io.flow.payment.v0.models.MerchantOfRecordPaymentForm);
|
|
1826
1734
|
type PaymentOrderReference = (io.flow.payment.v0.models.AuthorizationOrderReference | io.flow.payment.v0.models.PaymentPaymentRequestReference);
|
|
1735
|
+
type PaymentProcessorTransactionDetails = (io.flow.payment.v0.models.PaymentProcessorTransactionDetailsCard);
|
|
1827
1736
|
type PaymentSource = (io.flow.payment.v0.models.CardPaymentSource);
|
|
1828
1737
|
type PaymentSourceForm = (io.flow.payment.v0.models.CardPaymentSourceForm);
|
|
1829
1738
|
type ThreedsChallengeAction = (io.flow.payment.v0.models.ThreedsTwoChallengeRequest);
|
|
@@ -2292,9 +2201,8 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2292
2201
|
readonly 'id': string;
|
|
2293
2202
|
readonly 'type': io.flow.billing.internal.v0.enums.BillingTransactionType;
|
|
2294
2203
|
readonly 'account': io.flow.billing.csv.v0.models.BillingCsvTransactionAccount;
|
|
2295
|
-
readonly 'metadata'?: io.flow.billing.v0.
|
|
2296
|
-
readonly 'order'?: io.flow.billing.v0.models.
|
|
2297
|
-
readonly 'payment_request'?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
2204
|
+
readonly 'metadata'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadata;
|
|
2205
|
+
readonly 'order'?: io.flow.billing.csv.v0.models.BillingCsvTransactionOrderSummary;
|
|
2298
2206
|
readonly 'currency': string;
|
|
2299
2207
|
readonly 'source': io.flow.billing.v0.enums.TransactionSource;
|
|
2300
2208
|
readonly 'parent'?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
@@ -2303,7 +2211,7 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2303
2211
|
readonly 'withholdings': io.flow.billing.csv.v0.models.BillingCsvTransactionWithholdings;
|
|
2304
2212
|
readonly 'discount': io.flow.billing.csv.v0.models.BillingCsvTransactionDiscount;
|
|
2305
2213
|
readonly 'net': number;
|
|
2306
|
-
readonly 'identifiers':
|
|
2214
|
+
readonly 'identifiers': io.flow.billing.csv.v0.models.BillingCsvTransactionIdentifiers;
|
|
2307
2215
|
readonly 'created_at': string;
|
|
2308
2216
|
readonly 'updated_at': string;
|
|
2309
2217
|
}
|
|
@@ -2334,6 +2242,44 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2334
2242
|
readonly 'transfer': number;
|
|
2335
2243
|
}
|
|
2336
2244
|
|
|
2245
|
+
interface BillingCsvTransactionIdentifiers {
|
|
2246
|
+
readonly 'reference_id'?: string;
|
|
2247
|
+
}
|
|
2248
|
+
|
|
2249
|
+
interface BillingCsvTransactionMetadata {
|
|
2250
|
+
readonly 'channel'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataChannel;
|
|
2251
|
+
readonly 'shipping_label'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataShippingLabel;
|
|
2252
|
+
readonly 'trueup'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataTrueup;
|
|
2253
|
+
readonly 'manual'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataManual;
|
|
2254
|
+
}
|
|
2255
|
+
|
|
2256
|
+
interface BillingCsvTransactionMetadataChannel {
|
|
2257
|
+
readonly 'method': string;
|
|
2258
|
+
readonly 'card'?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
|
|
2259
|
+
}
|
|
2260
|
+
|
|
2261
|
+
interface BillingCsvTransactionMetadataManual {
|
|
2262
|
+
readonly 'original': io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
2263
|
+
}
|
|
2264
|
+
|
|
2265
|
+
interface BillingCsvTransactionMetadataShippingLabel {
|
|
2266
|
+
readonly 'request_method'?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
2267
|
+
}
|
|
2268
|
+
|
|
2269
|
+
interface BillingCsvTransactionMetadataTrueup {
|
|
2270
|
+
readonly 'original': io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
2271
|
+
}
|
|
2272
|
+
|
|
2273
|
+
interface BillingCsvTransactionOrderSummary {
|
|
2274
|
+
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
2275
|
+
readonly 'number': string;
|
|
2276
|
+
readonly 'identifiers': io.flow.billing.csv.v0.models.BillingCsvTransactionOrderSummaryIdentifiers;
|
|
2277
|
+
}
|
|
2278
|
+
|
|
2279
|
+
interface BillingCsvTransactionOrderSummaryIdentifiers {
|
|
2280
|
+
readonly 'shopify_order_id'?: string;
|
|
2281
|
+
}
|
|
2282
|
+
|
|
2337
2283
|
interface BillingCsvTransactionWithholdings {
|
|
2338
2284
|
readonly 'tax': number;
|
|
2339
2285
|
readonly 'duty': number;
|
|
@@ -2969,6 +2915,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2969
2915
|
readonly 'network'?: string;
|
|
2970
2916
|
readonly 'request_three_d_secure'?: io.flow.stripe.v0.enums.RequestThreeDSecureType;
|
|
2971
2917
|
readonly 'stored_credential_transaction_type'?: io.flow.stripe.v0.enums.StoredCredentialTransactionType;
|
|
2918
|
+
readonly 'mcc'?: string;
|
|
2972
2919
|
}
|
|
2973
2920
|
|
|
2974
2921
|
interface PaymentOutcome {
|
|
@@ -3492,9 +3439,9 @@ declare namespace io.flow.label.v0.models {
|
|
|
3492
3439
|
}
|
|
3493
3440
|
|
|
3494
3441
|
interface ShippingLabelHopCostItemizedEstimate {
|
|
3495
|
-
readonly 'units': io.flow.
|
|
3496
|
-
readonly 'base': io.flow.
|
|
3497
|
-
readonly 'surcharges': io.flow.
|
|
3442
|
+
readonly 'units': io.flow.trueup.v0.models.LabelUnits;
|
|
3443
|
+
readonly 'base': io.flow.trueup.v0.models.LabelBase;
|
|
3444
|
+
readonly 'surcharges': io.flow.trueup.v0.models.LabelSurcharge[];
|
|
3498
3445
|
}
|
|
3499
3446
|
|
|
3500
3447
|
interface ShippingLabelHopSummary {
|
|
@@ -3506,6 +3453,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
3506
3453
|
interface ShippingLabelLaneSummary {
|
|
3507
3454
|
readonly 'id'?: string;
|
|
3508
3455
|
readonly 'ratecard': io.flow.label.v0.models.ShippingLabelRatecardSummary;
|
|
3456
|
+
readonly 'weight_break'?: number;
|
|
3509
3457
|
}
|
|
3510
3458
|
|
|
3511
3459
|
interface ShippingLabelPackage {
|
|
@@ -3609,6 +3557,7 @@ declare namespace io.flow.external.paypal.v1.enums {
|
|
|
3609
3557
|
type DisputeOutcomeCode = 'RESOLVED_BUYER_FAVOUR' | 'RESOLVED_SELLER_FAVOUR' | 'RESOLVED_WITH_PAYOUT' | 'CANCELED_BY_BUYER' | 'ACCEPTED' | 'DENIED' | 'NONE';
|
|
3610
3558
|
type DisputeReason = 'MERCHANDISE_OR_SERVICE_NOT_RECEIVED' | 'MERCHANDISE_OR_SERVICE_NOT_AS_DESCRIBED' | 'UNAUTHORISED' | 'CREDIT_NOT_PROCESSED' | 'DUPLICATE_TRANSACTION' | 'INCORRECT_AMOUNT' | 'PAYMENT_BY_OTHER_MEANS' | 'CANCELED_RECURRING_BILLING' | 'PROBLEM_WITH_REMITTANCE' | 'OTHER';
|
|
3611
3559
|
type DisputeStatus = 'OPEN' | 'WAITING_FOR_BUYER_RESPONSE' | 'WAITING_FOR_SELLER_RESPONSE' | 'UNDER_REVIEW' | 'RESOLVED' | 'OTHER';
|
|
3560
|
+
type EventType = 'PAYMENT.AUTHORIZATION.CREATED' | 'PAYMENT.AUTHORIZATION.VOIDED' | 'PAYMENT.CAPTURE.DECLINED' | 'PAYMENT.CAPTURE.COMPLETED' | 'PAYMENT.CAPTURE.PENDING' | 'PAYMENT.CAPTURE.REVERSED' | 'PAYMENT.CAPTURE.DENIED' | 'PAYMENT.ORDER.CANCELLED' | 'PAYMENT.ORDER.CREATED' | 'PAYMENT.SALE.COMPLETED' | 'PAYMENT.SALE.DENIED' | 'PAYMENT.SALE.PENDING' | 'PAYMENT.SALE.REFUNDED' | 'PAYMENT.SALE.REVERSED' | 'PAYMENTS.PAYMENT.CREATED' | 'CHECKOUT.ORDER.APPROVED' | 'CHECKOUT.CHECKOUT.BUYER-APPROVED' | 'CHECKOUT.ORDER.COMPLETED' | 'CUSTOMER.DISPUTE.CREATED' | 'CUSTOMER.DISPUTE.RESOLVED' | 'CUSTOMER.DISPUTE.UPDATED' | 'CHECKOUT.PAYMENT-APPROVAL.REVERSED';
|
|
3612
3561
|
type EvidenceType = 'PROOF_OF_FULFILLMENT' | 'PROOF_OF_REFUND' | 'PROOF_OF_DELIVERY_SIGNATURE' | 'PROOF_OF_RECEIPT_COPY' | 'RETURN_POLICY' | 'BILLING_AGREEMENT' | 'PROOF_OF_RESHIPMENT' | 'ITEM_DESCRIPTION' | 'POLICE_REPORT' | 'AFFIDAVIT' | 'PAID_WITH_OTHER_METHOD' | 'COPY_OF_CONTRACT' | 'TERMINAL_ATM_RECEIPT' | 'PRICE_DIFFERENCE_REASON' | 'SOURCE_CONVERSION_RATE' | 'BANK_STATEMENT' | 'CREDIT_DUE_REASON' | 'REQUEST_CREDIT_RECEIPT' | 'PROOF_OF_RETURN' | 'CREATE' | 'CHANGE_REASON' | 'PROOF_OF_REFUND_OUTSIDE_PAYPAL' | 'RECEIPT_OF_MERCHANDISE' | 'CUSTOMS_DOCUMENT' | 'CUSTOMS_FEE_RECEIPT' | 'INFORMATION_ON_RESOLUTION' | 'ADDITIONAL_INFORMATION_OF_ITEM' | 'DETAILS_OF_PURCHASE' | 'PROOF_OF_SIGNIFICANT_DIFFERENCE' | 'PROOF_OF_SOFTWARE_OR_SERVICE_NOT_AS_DESCRIBED' | 'PROOF_OF_CONFISCATION' | 'PROOF_OF_DAMAGE' | 'COPY_OF_LAW_ENFORCEMENT_AGENCY_REPORT' | 'ADDITIONAL_PROOF_OF_SHIPMENT' | 'PROOF_OF_DENIAL_BY_CARRIER' | 'THIRDPARTY_PROOF_FOR_DAMAGE_OR_SIGNIFICANT_DIFFERENCE' | 'VALID_SUPPORTING_DOCUMENT' | 'LEGIBLE_SUPPORTING_DOCUMENT' | 'RETURN_TRACKING_INFORMATION' | 'DELIVERY_RECEIPT' | 'PROOF_OF_INSTORE_RECEIPT' | 'ADDITIONAL_TRACKING_INFORMATION' | 'PROOF_OF_SHIPMENT_POSTAGE' | 'ONLINE_TRACKING_INFORMATION' | 'PROOF_OF_INSTORE_REFUND' | 'PROOF_FOR_SOFTWARE_OR_SERVICE_DELIVERED' | 'RETURN_ADDRESS_FOR_SHIPPING' | 'COPY_OF_THE_EPARCEL_MANIFEST' | 'COPY_OF_SHIPPING_MANIFEST' | 'APPEAL_AFFIDAVIT' | 'RECEIPT_OF_REPLACEMENT' | 'COPY_OF_DRIVERS_LICENSE' | 'ACCOUNT_CHANGE_INFORMATION' | 'DELIVERY_ADDRESS' | 'CONFIRMATION_OF_RESOLUTION' | 'MERCHANT_RESPONSE' | 'PERMISSION_DESCRIPTION' | 'STATUS_OF_MERCHANDISE' | 'LOST_CARD_DETAILS' | 'LAST_VALID_TRANSACTION_DETAILS' | 'ADDITIONAL_PROOF_OF_RETURN' | 'OTHER';
|
|
3613
3562
|
type FailureReason = 'UNABLE_TO_COMPLETE_TRANSACTION' | 'INVALID_PAYMENT_METHOD' | 'PAYER_CANNOT_PAY' | 'CANNOT_PAY_THIS_PAYEE' | 'REDIRECT_REQUIRED' | 'PAYEE_FILTER_RESTRICTIONS';
|
|
3614
3563
|
type GrantType = 'client_credentials';
|
|
@@ -3627,6 +3576,7 @@ declare namespace io.flow.external.paypal.v1.enums {
|
|
|
3627
3576
|
type RefundState = 'pending' | 'completed' | 'cancelled' | 'failed';
|
|
3628
3577
|
type ReturnAcknowledgementType = 'ITEM_RECEIVED' | 'ITEM_NOT_RECEIVED' | 'DAMAGED' | 'EMPTY_PACKAGE_OR_DIFFERENT' | 'MISSING_ITEMS';
|
|
3629
3578
|
type ReturnMode = 'SHIPPED' | 'IN_PERSON';
|
|
3579
|
+
type SaleState = 'pending' | 'completed' | 'denied' | 'partially_refunded' | 'refunded';
|
|
3630
3580
|
type ServiceStarted = 'YES' | 'NO' | 'RETURNED';
|
|
3631
3581
|
type ShippingDisplayPreference = 'NO_SHIPPING' | 'GET_FROM_FILE' | 'SET_PROVIDED_ADDRESS';
|
|
3632
3582
|
type State = 'created' | 'approved' | 'failed';
|
|
@@ -3973,24 +3923,24 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
3973
3923
|
|
|
3974
3924
|
interface Refund {
|
|
3975
3925
|
readonly 'id': string;
|
|
3976
|
-
readonly 'amount'
|
|
3926
|
+
readonly 'amount'?: io.flow.external.paypal.v1.models.SimpleAmount;
|
|
3977
3927
|
readonly 'state': io.flow.external.paypal.v1.enums.RefundState;
|
|
3978
3928
|
readonly 'sale_id': string;
|
|
3979
|
-
readonly 'invoice_number'
|
|
3929
|
+
readonly 'invoice_number'?: string;
|
|
3980
3930
|
readonly 'capture_id'?: string;
|
|
3981
3931
|
readonly 'parent_payment'?: string;
|
|
3982
3932
|
readonly 'reason_code'?: string;
|
|
3983
3933
|
readonly 'refund_reason_code'?: string;
|
|
3984
3934
|
readonly 'refund_funding_type'?: string;
|
|
3985
|
-
readonly '
|
|
3935
|
+
readonly 'refund_from_received_amount'?: io.flow.external.paypal.v1.models.Money;
|
|
3936
|
+
readonly 'refund_from_transaction_fee'?: io.flow.external.paypal.v1.models.Money;
|
|
3937
|
+
readonly 'total_refunded_amount'?: io.flow.external.paypal.v1.models.Money;
|
|
3938
|
+
readonly 'refund_to_payer'?: io.flow.external.paypal.v1.models.Money;
|
|
3939
|
+
readonly 'custom'?: string;
|
|
3940
|
+
readonly 'create_time'?: string;
|
|
3986
3941
|
readonly 'update_time'?: string;
|
|
3987
3942
|
}
|
|
3988
3943
|
|
|
3989
|
-
interface RefundAmount {
|
|
3990
|
-
readonly 'total': string;
|
|
3991
|
-
readonly 'currency': string;
|
|
3992
|
-
}
|
|
3993
|
-
|
|
3994
3944
|
interface RefundDetails {
|
|
3995
3945
|
readonly 'allowed_refund_amount'?: io.flow.external.paypal.v1.models.Money;
|
|
3996
3946
|
}
|
|
@@ -4000,7 +3950,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4000
3950
|
}
|
|
4001
3951
|
|
|
4002
3952
|
interface RefundRequest {
|
|
4003
|
-
readonly 'amount': io.flow.external.paypal.v1.models.
|
|
3953
|
+
readonly 'amount': io.flow.external.paypal.v1.models.SimpleAmount;
|
|
4004
3954
|
readonly 'invoice_number': string;
|
|
4005
3955
|
}
|
|
4006
3956
|
|
|
@@ -4012,6 +3962,28 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4012
3962
|
readonly 'returned'?: boolean;
|
|
4013
3963
|
}
|
|
4014
3964
|
|
|
3965
|
+
interface Sale {
|
|
3966
|
+
readonly 'id': string;
|
|
3967
|
+
readonly 'state': io.flow.external.paypal.v1.enums.SaleState;
|
|
3968
|
+
readonly 'parent_payment': string;
|
|
3969
|
+
readonly 'invoice_number'?: string;
|
|
3970
|
+
readonly 'amount'?: io.flow.external.paypal.v1.models.SimpleAmount;
|
|
3971
|
+
readonly 'payment_mode'?: string;
|
|
3972
|
+
readonly 'reason_code'?: string;
|
|
3973
|
+
readonly 'protection_eligibility'?: string;
|
|
3974
|
+
readonly 'protection_eligibility_type'?: string;
|
|
3975
|
+
readonly 'receipt_id'?: string;
|
|
3976
|
+
readonly 'soft_descriptor'?: string;
|
|
3977
|
+
readonly 'exchange_rate'?: string;
|
|
3978
|
+
readonly 'payment_hold_status'?: string;
|
|
3979
|
+
readonly 'payment_hold_reasons'?: string[];
|
|
3980
|
+
readonly 'transaction_fee'?: io.flow.external.paypal.v1.models.Money;
|
|
3981
|
+
readonly 'receivable_amount'?: io.flow.external.paypal.v1.models.Money;
|
|
3982
|
+
readonly 'custom'?: string;
|
|
3983
|
+
readonly 'create_time'?: string;
|
|
3984
|
+
readonly 'update_time'?: string;
|
|
3985
|
+
}
|
|
3986
|
+
|
|
4015
3987
|
interface Seller {
|
|
4016
3988
|
readonly 'email'?: string;
|
|
4017
3989
|
readonly 'merchant_id'?: string;
|
|
@@ -4037,6 +4009,11 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4037
4009
|
readonly 'state'?: string;
|
|
4038
4010
|
}
|
|
4039
4011
|
|
|
4012
|
+
interface SimpleAmount {
|
|
4013
|
+
readonly 'total': string;
|
|
4014
|
+
readonly 'currency': string;
|
|
4015
|
+
}
|
|
4016
|
+
|
|
4040
4017
|
interface SupportingInfo {
|
|
4041
4018
|
readonly 'notes'?: string;
|
|
4042
4019
|
readonly 'source'?: io.flow.external.paypal.v1.enums.SupportingInfoSource;
|
|
@@ -5988,7 +5965,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
5988
5965
|
type ShopifyOrderInventoryBehaviour = 'bypass' | 'decrement_ignoring_policy' | 'decrement_obeying_policy';
|
|
5989
5966
|
type ShopifyOrderKindType = 'authorization' | 'capture' | 'sale' | 'void' | 'refund';
|
|
5990
5967
|
type ShopifyOrderPaymentGatewayNames = 'flow_commerce' | 'gift_card' | 'manual' | 'shopify_payments';
|
|
5991
|
-
type ShopifyOrderProcessingMethodType = 'checkout' | 'direct' | 'manual' | 'offsite' | 'express';
|
|
5968
|
+
type ShopifyOrderProcessingMethodType = 'checkout' | 'direct' | 'manual' | 'offsite' | 'express' | 'deferred_payment';
|
|
5992
5969
|
type ShopifyOrderRestockType = 'no_restock' | 'cancel' | 'return';
|
|
5993
5970
|
type ShopifyOrderStatusType = 'open' | 'closed' | 'cancelled' | 'any';
|
|
5994
5971
|
type ShopifyOrderTransactionErrorCode = 'incorrect_number' | 'invalid_number' | 'invalid_expiry_date' | 'invalid_cvc' | 'expired_card' | 'incorrect_cvc' | 'incorrect_zip' | 'incorrect_address' | 'card_declined' | 'processing_error' | 'call_issuer' | 'pick_up_card';
|
|
@@ -9097,11 +9074,6 @@ declare namespace io.flow.billing.reporting.csv.v0.models {
|
|
|
9097
9074
|
readonly 'debug_console_order_link': string;
|
|
9098
9075
|
}
|
|
9099
9076
|
|
|
9100
|
-
interface ReportingAddenda {
|
|
9101
|
-
readonly 'allocation_order_totals_delta'?: number;
|
|
9102
|
-
readonly 'allocation_order_item_discount_delta'?: number;
|
|
9103
|
-
}
|
|
9104
|
-
|
|
9105
9077
|
interface ReportingAuthorizationReference {
|
|
9106
9078
|
readonly 'id': string;
|
|
9107
9079
|
}
|
|
@@ -9131,7 +9103,16 @@ declare namespace io.flow.billing.reporting.csv.v0.models {
|
|
|
9131
9103
|
|
|
9132
9104
|
interface ReportingDebug {
|
|
9133
9105
|
readonly 'console_order_link': string;
|
|
9134
|
-
readonly '
|
|
9106
|
+
readonly 'allocation_order_totals_delta'?: number;
|
|
9107
|
+
readonly 'allocation_order_item_discount_delta'?: number;
|
|
9108
|
+
readonly 'missing_item_subsidies'?: io.flow.billing.reporting.csv.v0.models.ReportingDebugMissingSubsidies;
|
|
9109
|
+
readonly 'missing_shipping_subsidies'?: io.flow.billing.reporting.csv.v0.models.ReportingDebugMissingSubsidies;
|
|
9110
|
+
}
|
|
9111
|
+
|
|
9112
|
+
interface ReportingDebugMissingSubsidies {
|
|
9113
|
+
readonly 'price'?: boolean;
|
|
9114
|
+
readonly 'tax'?: boolean;
|
|
9115
|
+
readonly 'duty'?: boolean;
|
|
9135
9116
|
}
|
|
9136
9117
|
|
|
9137
9118
|
interface ReportingDestination {
|
|
@@ -9218,6 +9199,14 @@ declare namespace io.flow.billing.reporting.csv.v0.models {
|
|
|
9218
9199
|
readonly 'ccf': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9219
9200
|
}
|
|
9220
9201
|
|
|
9202
|
+
interface ReportingMerchantTransactions {
|
|
9203
|
+
readonly 'adjustment': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9204
|
+
readonly 'reversal': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9205
|
+
readonly 'tax': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9206
|
+
readonly 'duty': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9207
|
+
readonly 'freight': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9208
|
+
}
|
|
9209
|
+
|
|
9221
9210
|
interface ReportingMonetaryValue {
|
|
9222
9211
|
readonly 'transaction': number;
|
|
9223
9212
|
readonly 'merchant': number;
|
|
@@ -9288,6 +9277,7 @@ declare namespace io.flow.billing.reporting.csv.v0.models {
|
|
|
9288
9277
|
readonly 'marked_as_final': io.flow.billing.reporting.csv.v0.models.MarkedAsFinal;
|
|
9289
9278
|
readonly 'merchant_subsidies': io.flow.billing.reporting.csv.v0.models.ReportingMerchantSubsidies;
|
|
9290
9279
|
readonly 'merchant_fees': io.flow.billing.reporting.csv.v0.models.ReportingMerchantFees;
|
|
9280
|
+
readonly 'merchant_transactions': io.flow.billing.reporting.csv.v0.models.ReportingMerchantTransactions;
|
|
9291
9281
|
readonly 'vat_remittance': io.flow.billing.reporting.csv.v0.models.ReportingVatRemittance;
|
|
9292
9282
|
readonly 'debug': io.flow.billing.reporting.csv.v0.models.ReportingDebug;
|
|
9293
9283
|
}
|
|
@@ -10514,9 +10504,21 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
10514
10504
|
readonly 'ends_at'?: string;
|
|
10515
10505
|
}
|
|
10516
10506
|
|
|
10507
|
+
interface FuelSurchargeByWeight {
|
|
10508
|
+
readonly 'discriminator': 'fuel_surcharge_by_weight';
|
|
10509
|
+
readonly 'amount': number;
|
|
10510
|
+
readonly 'weight_unit': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
10511
|
+
}
|
|
10512
|
+
|
|
10513
|
+
interface FuelSurchargePercent {
|
|
10514
|
+
readonly 'discriminator': 'fuel_surcharge_percent';
|
|
10515
|
+
readonly 'percent': number;
|
|
10516
|
+
}
|
|
10517
|
+
|
|
10517
10518
|
interface FuelSurchargeRatecardFee {
|
|
10518
10519
|
readonly 'discriminator': 'fuel_surcharge_ratecard_fee';
|
|
10519
10520
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
10521
|
+
readonly 'fuel_surcharge_rate'?: io.flow.ratecard.v0.unions.FuelSurchargeRate;
|
|
10520
10522
|
}
|
|
10521
10523
|
|
|
10522
10524
|
interface FuelSurchargeServiceFee {
|
|
@@ -10548,6 +10550,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
10548
10550
|
readonly 'currency': string;
|
|
10549
10551
|
readonly 'amount': number;
|
|
10550
10552
|
readonly 'fees': io.flow.ratecard.v0.unions.RatecardFee[];
|
|
10553
|
+
readonly 'weight_break'?: number;
|
|
10551
10554
|
readonly 'total': number;
|
|
10552
10555
|
readonly 'lane': io.flow.ratecard.v0.models.LaneSummary;
|
|
10553
10556
|
}
|
|
@@ -10833,6 +10836,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
10833
10836
|
}
|
|
10834
10837
|
|
|
10835
10838
|
declare namespace io.flow.ratecard.v0.unions {
|
|
10839
|
+
type FuelSurchargeRate = (io.flow.ratecard.v0.models.FuelSurchargePercent | io.flow.ratecard.v0.models.FuelSurchargeByWeight);
|
|
10836
10840
|
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);
|
|
10837
10841
|
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);
|
|
10838
10842
|
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);
|
|
@@ -11112,182 +11116,6 @@ declare namespace io.flow.crypto.v0.models {
|
|
|
11112
11116
|
}
|
|
11113
11117
|
}
|
|
11114
11118
|
|
|
11115
|
-
declare namespace io.flow.error.v0.enums {
|
|
11116
|
-
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
11117
|
-
}
|
|
11118
|
-
|
|
11119
|
-
declare namespace io.flow.error.v0.models {
|
|
11120
|
-
interface GenericError {
|
|
11121
|
-
readonly 'code': io.flow.error.v0.enums.GenericErrorCode;
|
|
11122
|
-
readonly 'messages': string[];
|
|
11123
|
-
}
|
|
11124
|
-
}
|
|
11125
|
-
|
|
11126
|
-
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.enums {
|
|
11127
|
-
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
11128
|
-
}
|
|
11129
|
-
|
|
11130
|
-
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
11131
|
-
interface CarrierChargeFile {
|
|
11132
|
-
readonly 'id': string;
|
|
11133
|
-
readonly 'url': string;
|
|
11134
|
-
readonly 'created_at': string;
|
|
11135
|
-
readonly 'result'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.CarrierChargeFileResult;
|
|
11136
|
-
}
|
|
11137
|
-
|
|
11138
|
-
interface CarrierChargeFileForm {
|
|
11139
|
-
readonly 'url': string;
|
|
11140
|
-
}
|
|
11141
|
-
|
|
11142
|
-
interface CarrierChargeFileResult {
|
|
11143
|
-
readonly 'processed_at': string;
|
|
11144
|
-
readonly 'number_lines_successful': number;
|
|
11145
|
-
readonly 'number_lines_with_errors': number;
|
|
11146
|
-
readonly 'errors_url'?: string;
|
|
11147
|
-
}
|
|
11148
|
-
|
|
11149
|
-
interface CarrierChargeFormLabel {
|
|
11150
|
-
readonly 'discriminator': 'label';
|
|
11151
|
-
readonly 'id': string;
|
|
11152
|
-
readonly 'label_invoice_request_id': string;
|
|
11153
|
-
readonly 'units': io.flow.billing.RESERVED_WORD_true.up.v0.models.CarrierChargeUnits;
|
|
11154
|
-
readonly 'base': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
11155
|
-
readonly 'surcharges': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeForm;
|
|
11156
|
-
readonly 'total': number;
|
|
11157
|
-
readonly 'attributes'?: Record<string, string>;
|
|
11158
|
-
}
|
|
11159
|
-
|
|
11160
|
-
interface CarrierChargeFormReturnToOrigin {
|
|
11161
|
-
readonly 'discriminator': 'return_to_origin';
|
|
11162
|
-
readonly 'id': string;
|
|
11163
|
-
readonly 'carrier_id': string;
|
|
11164
|
-
readonly 'carrier_tracking_number': string;
|
|
11165
|
-
readonly 'units': io.flow.billing.RESERVED_WORD_true.up.v0.models.CarrierChargeUnits;
|
|
11166
|
-
readonly 'base': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
11167
|
-
readonly 'surcharges': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeForm;
|
|
11168
|
-
readonly 'total': number;
|
|
11169
|
-
readonly 'attributes'?: Record<string, string>;
|
|
11170
|
-
}
|
|
11171
|
-
|
|
11172
|
-
interface CarrierChargeUnits {
|
|
11173
|
-
readonly 'currency': string;
|
|
11174
|
-
readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
|
|
11175
|
-
readonly 'length'?: io.flow.units.v0.enums.UnitOfLength;
|
|
11176
|
-
}
|
|
11177
|
-
|
|
11178
|
-
interface LabelBase {
|
|
11179
|
-
readonly 'amount': number;
|
|
11180
|
-
readonly 'weight': number;
|
|
11181
|
-
}
|
|
11182
|
-
|
|
11183
|
-
interface LabelDestination {
|
|
11184
|
-
readonly 'country': string;
|
|
11185
|
-
}
|
|
11186
|
-
|
|
11187
|
-
interface LabelInvoiceRequest {
|
|
11188
|
-
readonly 'id': string;
|
|
11189
|
-
readonly 'label': io.flow.billing.RESERVED_WORD_true.up.v0.models.TrueUpLabelSummary;
|
|
11190
|
-
readonly 'units': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
|
|
11191
|
-
readonly 'base': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
11192
|
-
readonly 'surcharges': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
|
|
11193
|
-
readonly 'total': number;
|
|
11194
|
-
readonly 'destination': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelDestination;
|
|
11195
|
-
readonly 'metadata': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelMetadata;
|
|
11196
|
-
}
|
|
11197
|
-
|
|
11198
|
-
interface LabelMetadata {
|
|
11199
|
-
readonly 'ratecard': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataRatecard;
|
|
11200
|
-
readonly 'weights': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataWeights;
|
|
11201
|
-
}
|
|
11202
|
-
|
|
11203
|
-
interface LabelSurcharge {
|
|
11204
|
-
readonly 'amount': number;
|
|
11205
|
-
readonly 'type': io.flow.billing.RESERVED_WORD_true.up.v0.enums.TrueUpSurchargeType;
|
|
11206
|
-
readonly 'detail': io.flow.billing.RESERVED_WORD_true.up.v0.unions.LabelSurchargeDetail;
|
|
11207
|
-
}
|
|
11208
|
-
|
|
11209
|
-
interface LabelSurchargeDetailFlat {
|
|
11210
|
-
readonly 'discriminator': 'flat';
|
|
11211
|
-
readonly 'placeholder'?: string;
|
|
11212
|
-
}
|
|
11213
|
-
|
|
11214
|
-
interface LabelSurchargeDetailPerWeightUnit {
|
|
11215
|
-
readonly 'discriminator': 'per_weight_unit';
|
|
11216
|
-
readonly 'fee': number;
|
|
11217
|
-
}
|
|
11218
|
-
|
|
11219
|
-
interface LabelSurchargeDetailPercentage {
|
|
11220
|
-
readonly 'discriminator': 'percentage';
|
|
11221
|
-
readonly 'percentage': number;
|
|
11222
|
-
}
|
|
11223
|
-
|
|
11224
|
-
interface LabelSurchargeForm {
|
|
11225
|
-
readonly 'fuel'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
11226
|
-
readonly 'remote_area'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
11227
|
-
readonly 'oversize'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
11228
|
-
readonly 'duties_paid'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
11229
|
-
readonly 'emergency'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
11230
|
-
readonly 'peak'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
11231
|
-
readonly 'address_correction'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
11232
|
-
}
|
|
11233
|
-
|
|
11234
|
-
interface LabelSurchargeSingleForm {
|
|
11235
|
-
readonly 'amount': number;
|
|
11236
|
-
readonly 'percentage'?: number;
|
|
11237
|
-
readonly 'fee_per_weight_unit'?: number;
|
|
11238
|
-
}
|
|
11239
|
-
|
|
11240
|
-
interface LabelUnits {
|
|
11241
|
-
readonly 'currency': string;
|
|
11242
|
-
readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
|
|
11243
|
-
readonly 'length': io.flow.units.v0.enums.UnitOfLength;
|
|
11244
|
-
}
|
|
11245
|
-
|
|
11246
|
-
interface MetadataProposition {
|
|
11247
|
-
readonly 'shipping_method': io.flow.billing.RESERVED_WORD_true.up.v0.models.ShippingMethodReference;
|
|
11248
|
-
readonly 'name': string;
|
|
11249
|
-
}
|
|
11250
|
-
|
|
11251
|
-
interface MetadataRatecard {
|
|
11252
|
-
readonly 'id': string;
|
|
11253
|
-
readonly 'proposition': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataProposition;
|
|
11254
|
-
}
|
|
11255
|
-
|
|
11256
|
-
interface MetadataWeights {
|
|
11257
|
-
readonly 'dead'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDead;
|
|
11258
|
-
readonly 'dimensional'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDimensional;
|
|
11259
|
-
}
|
|
11260
|
-
|
|
11261
|
-
interface ShippingMethodReference {
|
|
11262
|
-
readonly 'id': string;
|
|
11263
|
-
}
|
|
11264
|
-
|
|
11265
|
-
interface TrueUpLabelSummary {
|
|
11266
|
-
readonly 'id': string;
|
|
11267
|
-
readonly 'carrier_service_id': string;
|
|
11268
|
-
readonly 'carrier_tracking_number': string;
|
|
11269
|
-
readonly 'flow_tracking_number': string;
|
|
11270
|
-
readonly 'source': io.flow.label.v0.enums.CostEstimateSource;
|
|
11271
|
-
readonly 'created_at': string;
|
|
11272
|
-
}
|
|
11273
|
-
|
|
11274
|
-
interface WeightsDead {
|
|
11275
|
-
readonly 'weight': number;
|
|
11276
|
-
}
|
|
11277
|
-
|
|
11278
|
-
interface WeightsDimensional {
|
|
11279
|
-
readonly 'weight': number;
|
|
11280
|
-
readonly 'length': number;
|
|
11281
|
-
readonly 'width': number;
|
|
11282
|
-
readonly 'height': number;
|
|
11283
|
-
}
|
|
11284
|
-
}
|
|
11285
|
-
|
|
11286
|
-
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.unions {
|
|
11287
|
-
type CarrierChargeForm = (io.flow.billing.RESERVED_WORD_true.up.v0.models.CarrierChargeFormLabel | io.flow.billing.RESERVED_WORD_true.up.v0.models.CarrierChargeFormReturnToOrigin);
|
|
11288
|
-
type LabelSurchargeDetail = (io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailFlat | io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailPercentage | io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailPerWeightUnit);
|
|
11289
|
-
}
|
|
11290
|
-
|
|
11291
11119
|
declare namespace io.flow.shopify.merchant.config.v0.models {
|
|
11292
11120
|
interface Company {
|
|
11293
11121
|
readonly 'discriminator': 'company';
|
|
@@ -11479,39 +11307,207 @@ declare namespace io.flow.price.v0.models {
|
|
|
11479
11307
|
readonly 'adjustment'?: io.flow.price.v0.models.PriceDetail;
|
|
11480
11308
|
}
|
|
11481
11309
|
|
|
11482
|
-
interface PriceEquation {
|
|
11483
|
-
readonly 'contracted_rate': number;
|
|
11484
|
-
readonly 'rate': number;
|
|
11485
|
-
readonly 'pricing': io.flow.price.v0.models.Pricing;
|
|
11486
|
-
readonly 'base_price': number;
|
|
11487
|
-
readonly 'discount': number;
|
|
11488
|
-
readonly 'fixed_margin': number;
|
|
11489
|
-
readonly 'percent_margin': number;
|
|
11490
|
-
readonly 'insurance': number;
|
|
11491
|
-
readonly 'freight': number;
|
|
11492
|
-
readonly 'duty'?: io.flow.price.v0.models.Duty;
|
|
11493
|
-
readonly 'tax'?: io.flow.price.v0.models.Tax;
|
|
11494
|
-
readonly 'percent_sales_margin': number;
|
|
11310
|
+
interface PriceEquation {
|
|
11311
|
+
readonly 'contracted_rate': number;
|
|
11312
|
+
readonly 'rate': number;
|
|
11313
|
+
readonly 'pricing': io.flow.price.v0.models.Pricing;
|
|
11314
|
+
readonly 'base_price': number;
|
|
11315
|
+
readonly 'discount': number;
|
|
11316
|
+
readonly 'fixed_margin': number;
|
|
11317
|
+
readonly 'percent_margin': number;
|
|
11318
|
+
readonly 'insurance': number;
|
|
11319
|
+
readonly 'freight': number;
|
|
11320
|
+
readonly 'duty'?: io.flow.price.v0.models.Duty;
|
|
11321
|
+
readonly 'tax'?: io.flow.price.v0.models.Tax;
|
|
11322
|
+
readonly 'percent_sales_margin': number;
|
|
11323
|
+
}
|
|
11324
|
+
|
|
11325
|
+
interface Pricing {
|
|
11326
|
+
readonly 'vat': io.flow.price.v0.enums.PricingLevySetting;
|
|
11327
|
+
readonly 'duty': io.flow.price.v0.enums.PricingLevySetting;
|
|
11328
|
+
readonly 'rounding'?: io.flow.common.v0.models.Rounding;
|
|
11329
|
+
}
|
|
11330
|
+
|
|
11331
|
+
interface Tax {
|
|
11332
|
+
readonly 'name': string;
|
|
11333
|
+
readonly 'rate': number;
|
|
11334
|
+
readonly 'components': io.flow.price.v0.enums.LevyComponent[];
|
|
11335
|
+
readonly 'deminimis'?: io.flow.price.v0.unions.Deminimis;
|
|
11336
|
+
}
|
|
11337
|
+
}
|
|
11338
|
+
|
|
11339
|
+
declare namespace io.flow.price.v0.unions {
|
|
11340
|
+
type Deminimis = (io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem);
|
|
11341
|
+
}
|
|
11342
|
+
|
|
11343
|
+
declare namespace io.flow.trueup.v0.enums {
|
|
11344
|
+
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
11345
|
+
}
|
|
11346
|
+
|
|
11347
|
+
declare namespace io.flow.trueup.v0.models {
|
|
11348
|
+
interface DeadWeight {
|
|
11349
|
+
readonly 'weight': number;
|
|
11350
|
+
}
|
|
11351
|
+
|
|
11352
|
+
interface DimensionalWeight {
|
|
11353
|
+
readonly 'weight': number;
|
|
11354
|
+
readonly 'length'?: number;
|
|
11355
|
+
readonly 'width'?: number;
|
|
11356
|
+
readonly 'height'?: number;
|
|
11357
|
+
}
|
|
11358
|
+
|
|
11359
|
+
interface LabelBase {
|
|
11360
|
+
readonly 'amount': number;
|
|
11361
|
+
readonly 'weight': number;
|
|
11362
|
+
}
|
|
11363
|
+
|
|
11364
|
+
interface LabelSurcharge {
|
|
11365
|
+
readonly 'amount': number;
|
|
11366
|
+
readonly 'type': io.flow.trueup.v0.enums.TrueupSurchargeType;
|
|
11367
|
+
readonly 'detail': io.flow.trueup.v0.unions.LabelSurchargeDetail;
|
|
11368
|
+
}
|
|
11369
|
+
|
|
11370
|
+
interface LabelSurchargeDetailFlat {
|
|
11371
|
+
readonly 'discriminator': 'flat';
|
|
11372
|
+
readonly 'placeholder'?: string;
|
|
11373
|
+
}
|
|
11374
|
+
|
|
11375
|
+
interface LabelSurchargeDetailPerWeightUnit {
|
|
11376
|
+
readonly 'discriminator': 'per_weight_unit';
|
|
11377
|
+
readonly 'fee': number;
|
|
11378
|
+
}
|
|
11379
|
+
|
|
11380
|
+
interface LabelSurchargeDetailPercentage {
|
|
11381
|
+
readonly 'discriminator': 'percentage';
|
|
11382
|
+
readonly 'percentage': number;
|
|
11383
|
+
}
|
|
11384
|
+
|
|
11385
|
+
interface LabelUnits {
|
|
11386
|
+
readonly 'currency': string;
|
|
11387
|
+
readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
|
|
11388
|
+
readonly 'length': io.flow.units.v0.enums.UnitOfLength;
|
|
11389
|
+
}
|
|
11390
|
+
}
|
|
11391
|
+
|
|
11392
|
+
declare namespace io.flow.trueup.v0.unions {
|
|
11393
|
+
type LabelSurchargeDetail = (io.flow.trueup.v0.models.LabelSurchargeDetailFlat | io.flow.trueup.v0.models.LabelSurchargeDetailPercentage | io.flow.trueup.v0.models.LabelSurchargeDetailPerWeightUnit);
|
|
11394
|
+
}
|
|
11395
|
+
|
|
11396
|
+
declare namespace io.flow.reference.v0.enums {
|
|
11397
|
+
type PaymentMethodCapability = 'credit' | 'debit';
|
|
11398
|
+
type PaymentMethodType = 'card' | 'online' | 'offline';
|
|
11399
|
+
type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
|
|
11400
|
+
type ProvinceType = 'area' | 'city' | 'county' | 'department' | 'dependency' | 'district' | 'do_si' | 'emirate' | 'entity' | 'island' | 'municipality' | 'oblast' | 'outlying_area' | 'parish' | 'prefecture' | 'province' | 'state' | 'territory' | 'other';
|
|
11401
|
+
}
|
|
11402
|
+
|
|
11403
|
+
declare namespace io.flow.reference.v0.models {
|
|
11404
|
+
interface Carrier {
|
|
11405
|
+
readonly 'id': string;
|
|
11406
|
+
readonly 'name': string;
|
|
11407
|
+
readonly 'tracking_url': string;
|
|
11408
|
+
}
|
|
11409
|
+
|
|
11410
|
+
interface CarrierService {
|
|
11411
|
+
readonly 'id': string;
|
|
11412
|
+
readonly 'carrier': io.flow.reference.v0.models.Carrier;
|
|
11413
|
+
readonly 'name': string;
|
|
11414
|
+
}
|
|
11415
|
+
|
|
11416
|
+
interface Country {
|
|
11417
|
+
readonly 'name': string;
|
|
11418
|
+
readonly 'iso_3166_2': string;
|
|
11419
|
+
readonly 'iso_3166_3': string;
|
|
11420
|
+
readonly 'languages': string[];
|
|
11421
|
+
readonly 'measurement_system': string;
|
|
11422
|
+
readonly 'default_currency'?: string;
|
|
11423
|
+
readonly 'default_language'?: string;
|
|
11424
|
+
readonly 'timezones': string[];
|
|
11425
|
+
readonly 'default_delivered_duty'?: string;
|
|
11426
|
+
}
|
|
11427
|
+
|
|
11428
|
+
interface Currency {
|
|
11429
|
+
readonly 'name': string;
|
|
11430
|
+
readonly 'iso_4217_3': string;
|
|
11431
|
+
readonly 'number_decimals': number;
|
|
11432
|
+
readonly 'symbols'?: io.flow.reference.v0.models.CurrencySymbols;
|
|
11433
|
+
readonly 'default_locale'?: string;
|
|
11434
|
+
}
|
|
11435
|
+
|
|
11436
|
+
interface CurrencySymbols {
|
|
11437
|
+
readonly 'primary': string;
|
|
11438
|
+
readonly 'narrow'?: string;
|
|
11439
|
+
}
|
|
11440
|
+
|
|
11441
|
+
interface Language {
|
|
11442
|
+
readonly 'name': string;
|
|
11443
|
+
readonly 'iso_639_2': string;
|
|
11444
|
+
}
|
|
11445
|
+
|
|
11446
|
+
interface Locale {
|
|
11447
|
+
readonly 'id': string;
|
|
11448
|
+
readonly 'name': string;
|
|
11449
|
+
readonly 'country': string;
|
|
11450
|
+
readonly 'language': string;
|
|
11451
|
+
readonly 'numbers': io.flow.reference.v0.models.LocaleNumbers;
|
|
11452
|
+
}
|
|
11453
|
+
|
|
11454
|
+
interface LocaleNumbers {
|
|
11455
|
+
readonly 'decimal': string;
|
|
11456
|
+
readonly 'group': string;
|
|
11457
|
+
}
|
|
11458
|
+
|
|
11459
|
+
interface LocalizedTranslation {
|
|
11460
|
+
readonly 'locale': io.flow.reference.v0.models.Locale;
|
|
11461
|
+
readonly 'name': string;
|
|
11462
|
+
}
|
|
11463
|
+
|
|
11464
|
+
interface PaymentMethod {
|
|
11465
|
+
readonly 'id': string;
|
|
11466
|
+
readonly 'type': io.flow.reference.v0.enums.PaymentMethodType;
|
|
11467
|
+
readonly 'name': string;
|
|
11468
|
+
readonly 'images': io.flow.reference.v0.models.PaymentMethodImages;
|
|
11469
|
+
readonly 'regions': string[];
|
|
11470
|
+
readonly 'capabilities'?: io.flow.reference.v0.enums.PaymentMethodCapability[];
|
|
11471
|
+
}
|
|
11472
|
+
|
|
11473
|
+
interface PaymentMethodImage {
|
|
11474
|
+
readonly 'url': string;
|
|
11475
|
+
readonly 'width': number;
|
|
11476
|
+
readonly 'height': number;
|
|
11477
|
+
}
|
|
11478
|
+
|
|
11479
|
+
interface PaymentMethodImages {
|
|
11480
|
+
readonly 'small': io.flow.reference.v0.models.PaymentMethodImage;
|
|
11481
|
+
readonly 'medium': io.flow.reference.v0.models.PaymentMethodImage;
|
|
11482
|
+
readonly 'large': io.flow.reference.v0.models.PaymentMethodImage;
|
|
11483
|
+
}
|
|
11484
|
+
|
|
11485
|
+
interface Province {
|
|
11486
|
+
readonly 'id': string;
|
|
11487
|
+
readonly 'iso_3166_2': string;
|
|
11488
|
+
readonly 'name': string;
|
|
11489
|
+
readonly 'country': string;
|
|
11490
|
+
readonly 'province_type': io.flow.reference.v0.enums.ProvinceType;
|
|
11491
|
+
readonly 'translations'?: io.flow.reference.v0.models.LocalizedTranslation[];
|
|
11495
11492
|
}
|
|
11496
11493
|
|
|
11497
|
-
interface
|
|
11498
|
-
readonly '
|
|
11499
|
-
readonly '
|
|
11500
|
-
readonly '
|
|
11494
|
+
interface Region {
|
|
11495
|
+
readonly 'id': string;
|
|
11496
|
+
readonly 'name': string;
|
|
11497
|
+
readonly 'countries': string[];
|
|
11498
|
+
readonly 'currencies': string[];
|
|
11499
|
+
readonly 'languages': string[];
|
|
11500
|
+
readonly 'measurement_systems': string[];
|
|
11501
|
+
readonly 'timezones': string[];
|
|
11501
11502
|
}
|
|
11502
11503
|
|
|
11503
|
-
interface
|
|
11504
|
+
interface Timezone {
|
|
11504
11505
|
readonly 'name': string;
|
|
11505
|
-
readonly '
|
|
11506
|
-
readonly '
|
|
11507
|
-
readonly 'deminimis'?: io.flow.price.v0.unions.Deminimis;
|
|
11506
|
+
readonly 'description': string;
|
|
11507
|
+
readonly 'offset': number;
|
|
11508
11508
|
}
|
|
11509
11509
|
}
|
|
11510
11510
|
|
|
11511
|
-
declare namespace io.flow.price.v0.unions {
|
|
11512
|
-
type Deminimis = (io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem);
|
|
11513
|
-
}
|
|
11514
|
-
|
|
11515
11511
|
declare namespace io.flow.tracking.v0.enums {
|
|
11516
11512
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
|
|
11517
11513
|
}
|
|
@@ -12455,12 +12451,12 @@ declare namespace io.flow.billing.internal.v0.enums {
|
|
|
12455
12451
|
type FeesSource = 'settings' | 'authorization_bundle';
|
|
12456
12452
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
12457
12453
|
type MainTransactionStatus = 'scheduled' | 'pending_proof';
|
|
12458
|
-
type ManualTransactionCategory = 'cancelled_order_refund' | 'channel_partner_initiated' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'partial_refund' | 'platform_fee' | 'shipping_true_up' | 'tax_credit';
|
|
12454
|
+
type ManualTransactionCategory = 'cancelled_order_refund' | 'channel_partner_initiated' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'partial_refund' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit';
|
|
12459
12455
|
type OrderCancellationInitiatedBy = 'flow' | 'organization';
|
|
12460
12456
|
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
12461
12457
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
12462
12458
|
type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
|
|
12463
|
-
type QueuedRecordType = 'capture' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'fulfillment_order_cancellation' | 'label_tracking_summary' | 'label_invoice_request' | 'carrier_charge' | 'carrier_charge_file' | '
|
|
12459
|
+
type QueuedRecordType = 'capture' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'fulfillment_order_cancellation' | 'fulfillment_order_combined_shipment' | 'fulfillment_order_time' | 'label_tracking_summary' | 'label_invoice_request' | 'carrier_charge' | 'carrier_charge_file' | 'order' | 'order_identifier' | 'organization_onboarding_state' | 'posting_proof' | 'refund' | 'refund_over_capture' | 'sales_record' | 'statement_batch' | 'statement_email' | 'statement_summary_email' | 'pending_payout_transaction_event';
|
|
12464
12460
|
type ResponsibleParty = 'flow' | 'organization';
|
|
12465
12461
|
type StatementTransferTransactionLocation = 'transactions_file' | 'summary';
|
|
12466
12462
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
@@ -13094,6 +13090,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13094
13090
|
interface ManualTransaction {
|
|
13095
13091
|
readonly 'discriminator': 'manual_transaction';
|
|
13096
13092
|
readonly 'category'?: io.flow.billing.internal.v0.enums.ManualTransactionCategory;
|
|
13093
|
+
readonly 'original_transaction'?: io.flow.billing.internal.v0.models.TransactionReference;
|
|
13097
13094
|
readonly 'order'?: io.flow.billing.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
13098
13095
|
readonly 'attributes'?: Record<string, string>;
|
|
13099
13096
|
readonly 'id': string;
|
|
@@ -13113,6 +13110,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13113
13110
|
readonly 'category'?: io.flow.billing.internal.v0.enums.ManualTransactionCategory;
|
|
13114
13111
|
readonly 'posted_at'?: string;
|
|
13115
13112
|
readonly 'order'?: io.flow.billing.internal.v0.models.ManualTransactionFormOrder;
|
|
13113
|
+
readonly 'original_transaction_id'?: string;
|
|
13116
13114
|
readonly 'attributes'?: Record<string, string>;
|
|
13117
13115
|
}
|
|
13118
13116
|
|
|
@@ -13299,6 +13297,11 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13299
13297
|
readonly 'order_cancellation_id': string;
|
|
13300
13298
|
}
|
|
13301
13299
|
|
|
13300
|
+
interface ProofOfPostingOrderCombinedShipment {
|
|
13301
|
+
readonly 'discriminator': 'order_combined_shipment';
|
|
13302
|
+
readonly 'order_combined_shipment_id': string;
|
|
13303
|
+
}
|
|
13304
|
+
|
|
13302
13305
|
interface ProofOfPostingShippingNotification {
|
|
13303
13306
|
readonly 'discriminator': 'shipping_notification';
|
|
13304
13307
|
readonly 'shipping_notification_id': string;
|
|
@@ -13464,7 +13467,7 @@ declare namespace io.flow.billing.internal.v0.unions {
|
|
|
13464
13467
|
type ChannelRateMetadata = (io.flow.billing.internal.v0.models.ChannelRateMetadataIdentity | io.flow.billing.internal.v0.models.ChannelRateMetadataRate);
|
|
13465
13468
|
type OrderCancellationEvidence = (io.flow.billing.internal.v0.models.OrderCancellationEvidenceManual | io.flow.billing.internal.v0.models.OrderCancellationEvidenceFullyRefundedNotFulfilled | io.flow.billing.internal.v0.models.OrderCancellationEvidenceReturnToSender);
|
|
13466
13469
|
type PlatformFee = (io.flow.billing.internal.v0.models.PlatformFeePause | io.flow.billing.internal.v0.models.PlatformFeeFlat | io.flow.billing.internal.v0.models.PlatformFeePercentage | io.flow.billing.internal.v0.models.PlatformFeeDisabled);
|
|
13467
|
-
type ProofOfPosting = (io.flow.billing.internal.v0.models.ProofOfPostingFulfilled | io.flow.billing.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.billing.internal.v0.models.ProofOfPostingShippingNotification | io.flow.billing.internal.v0.models.ProofOfPostingOrderCancellation);
|
|
13470
|
+
type ProofOfPosting = (io.flow.billing.internal.v0.models.ProofOfPostingFulfilled | io.flow.billing.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.billing.internal.v0.models.ProofOfPostingShippingNotification | io.flow.billing.internal.v0.models.ProofOfPostingOrderCancellation | io.flow.billing.internal.v0.models.ProofOfPostingOrderCombinedShipment);
|
|
13468
13471
|
type SpotRateMetadata = (io.flow.billing.internal.v0.models.SpotRateMetadataIdentity | io.flow.billing.internal.v0.models.SpotRateMetadataRate);
|
|
13469
13472
|
type Transaction = (io.flow.billing.internal.v0.models.InvoiceTransaction | io.flow.billing.internal.v0.models.ManualTransaction | io.flow.billing.internal.v0.models.ProcessingTransaction | io.flow.billing.internal.v0.models.SubscriptionTransaction | io.flow.billing.internal.v0.models.TaxRemittanceTransaction | io.flow.billing.internal.v0.models.TransferTransaction | io.flow.billing.internal.v0.models.VirtualCardTransaction | io.flow.billing.internal.v0.models.DisputeTransaction | io.flow.billing.internal.v0.models.ChannelTransaction | io.flow.billing.internal.v0.models.LabelTransaction | io.flow.billing.internal.v0.models.OrderTransaction | io.flow.billing.internal.v0.models.ChannelBilledTransaction | io.flow.billing.internal.v0.models.TaxTransaction | io.flow.billing.internal.v0.models.DutyTransaction | io.flow.billing.internal.v0.models.TrueupTransaction);
|
|
13470
13473
|
}
|
|
@@ -13473,11 +13476,10 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
13473
13476
|
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer';
|
|
13474
13477
|
type PayoutAttachmentType = 'transactions';
|
|
13475
13478
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
13476
|
-
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | '
|
|
13479
|
+
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';
|
|
13477
13480
|
type StatementAttachmentType = 'csv';
|
|
13478
13481
|
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'trueup' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
13479
13482
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl';
|
|
13480
|
-
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
13481
13483
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
13482
13484
|
}
|
|
13483
13485
|
|
|
@@ -13561,6 +13563,9 @@ declare namespace io.flow.billing.v0.models {
|
|
|
13561
13563
|
readonly 'id': string;
|
|
13562
13564
|
readonly 'reason': io.flow.billing.v0.models.PendingPayoutTransactionReason;
|
|
13563
13565
|
readonly 'timeout'?: io.flow.billing.v0.models.PendingPayoutTransactionTimeout;
|
|
13566
|
+
readonly 'created_at': string;
|
|
13567
|
+
readonly 'updated_at': string;
|
|
13568
|
+
readonly 'deleted_at'?: string;
|
|
13564
13569
|
}
|
|
13565
13570
|
|
|
13566
13571
|
interface ChannelStatement {
|
|
@@ -13627,6 +13632,9 @@ declare namespace io.flow.billing.v0.models {
|
|
|
13627
13632
|
readonly 'id': string;
|
|
13628
13633
|
readonly 'reason': io.flow.billing.v0.models.PendingPayoutTransactionReason;
|
|
13629
13634
|
readonly 'timeout'?: io.flow.billing.v0.models.PendingPayoutTransactionTimeout;
|
|
13635
|
+
readonly 'created_at': string;
|
|
13636
|
+
readonly 'updated_at': string;
|
|
13637
|
+
readonly 'deleted_at'?: string;
|
|
13630
13638
|
}
|
|
13631
13639
|
|
|
13632
13640
|
interface ParentTransactionSummary {
|
|
@@ -13742,14 +13750,29 @@ declare namespace io.flow.billing.v0.models {
|
|
|
13742
13750
|
readonly 'country': string;
|
|
13743
13751
|
}
|
|
13744
13752
|
|
|
13753
|
+
interface TransactionMetadataManual {
|
|
13754
|
+
readonly 'discriminator': 'manual';
|
|
13755
|
+
readonly 'original': io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
13756
|
+
}
|
|
13757
|
+
|
|
13758
|
+
interface TransactionMetadataOriginalTransaction {
|
|
13759
|
+
readonly 'id': string;
|
|
13760
|
+
}
|
|
13761
|
+
|
|
13745
13762
|
interface TransactionMetadataShippingLabel {
|
|
13746
13763
|
readonly 'discriminator': 'shipping_label';
|
|
13747
13764
|
readonly 'request_method'?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
13765
|
+
readonly 'carrier': io.flow.billing.v0.models.TransactionMetadataShippingLabelCarrier;
|
|
13766
|
+
}
|
|
13767
|
+
|
|
13768
|
+
interface TransactionMetadataShippingLabelCarrier {
|
|
13769
|
+
readonly 'id': string;
|
|
13770
|
+
readonly 'tracking_number': string;
|
|
13748
13771
|
}
|
|
13749
13772
|
|
|
13750
13773
|
interface TransactionMetadataTrueup {
|
|
13751
13774
|
readonly 'discriminator': 'trueup';
|
|
13752
|
-
readonly 'original': io.flow.billing.v0.models.
|
|
13775
|
+
readonly 'original': io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
13753
13776
|
readonly 'estimate': io.flow.billing.v0.models.TransactionMetadataTrueupData;
|
|
13754
13777
|
readonly 'actual': io.flow.billing.v0.models.TransactionMetadataTrueupData;
|
|
13755
13778
|
}
|
|
@@ -13760,10 +13783,8 @@ declare namespace io.flow.billing.v0.models {
|
|
|
13760
13783
|
readonly 'base': io.flow.billing.v0.models.TrueupLabelBase;
|
|
13761
13784
|
readonly 'surcharges': io.flow.billing.v0.models.TrueupLabelSurcharge[];
|
|
13762
13785
|
readonly 'total': number;
|
|
13763
|
-
|
|
13764
|
-
|
|
13765
|
-
interface TransactionMetadataTrueupOriginalTransaction {
|
|
13766
|
-
readonly 'id': string;
|
|
13786
|
+
readonly 'dead'?: io.flow.trueup.v0.models.DeadWeight;
|
|
13787
|
+
readonly 'dimensional'?: io.flow.trueup.v0.models.DimensionalWeight;
|
|
13767
13788
|
}
|
|
13768
13789
|
|
|
13769
13790
|
interface TransactionReference {
|
|
@@ -13777,7 +13798,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
13777
13798
|
|
|
13778
13799
|
interface TrueupLabelSurcharge {
|
|
13779
13800
|
readonly 'amount': number;
|
|
13780
|
-
readonly 'type': io.flow.
|
|
13801
|
+
readonly 'type': io.flow.trueup.v0.enums.TrueupSurchargeType;
|
|
13781
13802
|
readonly 'percentage'?: number;
|
|
13782
13803
|
readonly 'per_weight_unit'?: number;
|
|
13783
13804
|
}
|
|
@@ -13798,7 +13819,7 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
13798
13819
|
type BankAccountForm = (io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple);
|
|
13799
13820
|
type PayoutStatus = (io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed);
|
|
13800
13821
|
type Settlement = (io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout);
|
|
13801
|
-
type TransactionMetadata = (io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataChannel | io.flow.billing.v0.models.TransactionMetadataTrueup);
|
|
13822
|
+
type TransactionMetadata = (io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataChannel | io.flow.billing.v0.models.TransactionMetadataTrueup | io.flow.billing.v0.models.TransactionMetadataManual);
|
|
13802
13823
|
}
|
|
13803
13824
|
|
|
13804
13825
|
declare namespace io.flow.harmonization.v0.enums {
|
|
@@ -15474,6 +15495,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
15474
15495
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
15475
15496
|
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies';
|
|
15476
15497
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
|
|
15498
|
+
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
15477
15499
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
15478
15500
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
15479
15501
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
@@ -15557,6 +15579,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
15557
15579
|
type ContentType = 'text' | 'html';
|
|
15558
15580
|
type ContentTypeCast = 'markdown_to_html' | 'markdown_to_text';
|
|
15559
15581
|
type CrossdockTrackingStatus = 'notified' | 'received' | 'shipped';
|
|
15582
|
+
type DebugAccountingTransactionType = 'fulfillment';
|
|
15560
15583
|
type DeliveredDutyOptionMessageType = 'warning' | 'notification';
|
|
15561
15584
|
type DeminimisAdjustmentType = 'none' | 'duty' | 'vat' | 'vat_and_duty';
|
|
15562
15585
|
type DiscountRequestOrderEntitlementKey = 'subtotal';
|
|
@@ -15579,7 +15602,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
15579
15602
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
15580
15603
|
type EmptyAttribute = 'irrelevant';
|
|
15581
15604
|
type ErpFileType = 'vendor';
|
|
15582
|
-
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' | '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' | 'label_invoice_request_upserted' | 'label_invoice_request_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' | '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' | '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' | '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' | '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' | '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' | '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';
|
|
15605
|
+
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' | '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' | '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' | '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' | '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' | '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' | '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';
|
|
15583
15606
|
type ExperienceImportType = 'experience_with_settings';
|
|
15584
15607
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
15585
15608
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -15617,7 +15640,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
15617
15640
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
15618
15641
|
type MainTransactionStatus = 'scheduled' | 'pending_proof';
|
|
15619
15642
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
15620
|
-
type ManualTransactionCategory = 'cancelled_order_refund' | 'channel_partner_initiated' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'partial_refund' | 'platform_fee' | 'shipping_true_up' | 'tax_credit';
|
|
15643
|
+
type ManualTransactionCategory = 'cancelled_order_refund' | 'channel_partner_initiated' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'partial_refund' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit';
|
|
15621
15644
|
type MarketingGatewayAccountConnectionStatus = 'not_connected' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected';
|
|
15622
15645
|
type MarketingGatewayChannelIntegrationType = 'automated' | 'manual';
|
|
15623
15646
|
type MarketingGatewayChannelStatus = 'not_connected' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected' | 'unavailable';
|
|
@@ -15636,7 +15659,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
15636
15659
|
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'miscellaneous';
|
|
15637
15660
|
type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
15638
15661
|
type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
15639
|
-
type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'api_sandbox_setup' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'api_internal_delete_transaction' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
|
|
15662
|
+
type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'audit_auto_activation' | 'api_deactivation' | 'api_sandbox_setup' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'api_internal_delete_transaction' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
|
|
15640
15663
|
type OrderAction = 'consumer_submit' | 'fraud_review_accept' | 'fraud_review_decline' | 'payment_fully_authorize' | 'payment_fully_capture';
|
|
15641
15664
|
type OrderAttributeIntent = 'discount_code';
|
|
15642
15665
|
type OrderCancellationInitiatedBy = 'flow' | 'organization';
|
|
@@ -15667,7 +15690,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
15667
15690
|
type PromptCheckoutDisplayPosition = 'email' | 'submission';
|
|
15668
15691
|
type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
|
|
15669
15692
|
type PromptTarget = 'browse' | 'checkout';
|
|
15670
|
-
type QueuedRecordType = 'capture' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'fulfillment_order_cancellation' | 'label_tracking_summary' | 'label_invoice_request' | 'carrier_charge' | 'carrier_charge_file' | '
|
|
15693
|
+
type QueuedRecordType = 'capture' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'fulfillment_order_cancellation' | 'fulfillment_order_combined_shipment' | 'fulfillment_order_time' | 'label_tracking_summary' | 'label_invoice_request' | 'carrier_charge' | 'carrier_charge_file' | 'order' | 'order_identifier' | 'organization_onboarding_state' | 'posting_proof' | 'refund' | 'refund_over_capture' | 'sales_record' | 'statement_batch' | 'statement_email' | 'statement_summary_email' | 'pending_payout_transaction_event';
|
|
15671
15694
|
type QuoteRequestType = 'generate' | 'delete' | 'update_currency_rate' | 'update_country';
|
|
15672
15695
|
type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
|
|
15673
15696
|
type RateSource = 'calculated' | 'market';
|
|
@@ -15676,6 +15699,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
15676
15699
|
type RejectionReason = 'merchant_policy' | 'previous_chargebacks' | 'restricted_party_screening' | 'risky_velocity' | 'suspicious_behavior' | 'suspicious_past_activity';
|
|
15677
15700
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
15678
15701
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
15702
|
+
type ReportType = 'sales_record' | 'trueup_overview';
|
|
15679
15703
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
15680
15704
|
type ResponsibleParty = 'flow' | 'organization';
|
|
15681
15705
|
type RestrictionAction = 'prohibited' | 'restricted';
|
|
@@ -15719,7 +15743,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
15719
15743
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
15720
15744
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
15721
15745
|
type TransferMethod = 'ach';
|
|
15722
|
-
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
15723
15746
|
type TrueupTransactionType = 'adjustment' | 'reversal' | 'trueup';
|
|
15724
15747
|
type UnclassifiedProductStatus = 'ignored' | 'escalated' | 'requeued' | 'unverified' | 'queued' | 'unconfident';
|
|
15725
15748
|
}
|
|
@@ -15839,6 +15862,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15839
15862
|
readonly 'rates': io.flow.internal.v0.models.AccountProcessingRates;
|
|
15840
15863
|
}
|
|
15841
15864
|
|
|
15865
|
+
interface AccountReference {
|
|
15866
|
+
readonly 'id': string;
|
|
15867
|
+
}
|
|
15868
|
+
|
|
15842
15869
|
interface AccountSettingLabelFees {
|
|
15843
15870
|
readonly 'flow'?: io.flow.internal.v0.models.TieredFee;
|
|
15844
15871
|
readonly 'organization'?: io.flow.internal.v0.models.TieredFee;
|
|
@@ -17189,21 +17216,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17189
17216
|
readonly 'id': string;
|
|
17190
17217
|
readonly 'label_invoice_request_id': string;
|
|
17191
17218
|
readonly 'units': io.flow.internal.v0.models.CarrierChargeUnits;
|
|
17192
|
-
readonly 'base': io.flow.
|
|
17219
|
+
readonly 'base': io.flow.trueup.v0.models.LabelBase;
|
|
17193
17220
|
readonly 'surcharges': io.flow.internal.v0.models.LabelSurchargeForm;
|
|
17194
17221
|
readonly 'total': number;
|
|
17222
|
+
readonly 'dead'?: io.flow.trueup.v0.models.DeadWeight;
|
|
17223
|
+
readonly 'dimensional'?: io.flow.trueup.v0.models.DimensionalWeight;
|
|
17195
17224
|
readonly 'attributes'?: Record<string, string>;
|
|
17196
17225
|
}
|
|
17197
17226
|
|
|
17198
17227
|
interface CarrierChargeFormReturnToOrigin {
|
|
17199
17228
|
readonly 'discriminator': 'return_to_origin';
|
|
17200
17229
|
readonly 'id': string;
|
|
17230
|
+
readonly 'organization_id': string;
|
|
17231
|
+
readonly 'order_number': string;
|
|
17201
17232
|
readonly 'carrier_id': string;
|
|
17202
17233
|
readonly 'carrier_tracking_number': string;
|
|
17234
|
+
readonly 'label_created_at': string;
|
|
17203
17235
|
readonly 'units': io.flow.internal.v0.models.CarrierChargeUnits;
|
|
17204
|
-
readonly 'base': io.flow.
|
|
17236
|
+
readonly 'base': io.flow.trueup.v0.models.LabelBase;
|
|
17205
17237
|
readonly 'surcharges': io.flow.internal.v0.models.LabelSurchargeForm;
|
|
17206
17238
|
readonly 'total': number;
|
|
17239
|
+
readonly 'dead'?: io.flow.trueup.v0.models.DeadWeight;
|
|
17240
|
+
readonly 'dimensional'?: io.flow.trueup.v0.models.DimensionalWeight;
|
|
17207
17241
|
readonly 'attributes'?: Record<string, string>;
|
|
17208
17242
|
}
|
|
17209
17243
|
|
|
@@ -17485,6 +17519,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17485
17519
|
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
17486
17520
|
}
|
|
17487
17521
|
|
|
17522
|
+
interface ChannelOrder {
|
|
17523
|
+
readonly 'org_id': string;
|
|
17524
|
+
readonly 'flow_order_number': string;
|
|
17525
|
+
readonly 'shopify_order_number': string;
|
|
17526
|
+
readonly 'order_submission_date'?: string;
|
|
17527
|
+
readonly 'order_item_count': number;
|
|
17528
|
+
readonly 'total': io.flow.catalog.v0.models.LocalizedTotal;
|
|
17529
|
+
readonly 'merchant_total': number;
|
|
17530
|
+
readonly 'tracking_numbers'?: string[];
|
|
17531
|
+
readonly 'carrier'?: io.flow.reference.v0.models.CarrierService;
|
|
17532
|
+
readonly 'duty_paid': boolean;
|
|
17533
|
+
}
|
|
17534
|
+
|
|
17488
17535
|
interface ChannelOrderAcceptance {
|
|
17489
17536
|
readonly 'id': string;
|
|
17490
17537
|
readonly 'organization_id': string;
|
|
@@ -17496,6 +17543,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17496
17543
|
readonly 'reasons': io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
17497
17544
|
readonly 'next_action_from'?: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
17498
17545
|
readonly 'order_created_at'?: string;
|
|
17546
|
+
readonly 'order_updated_at'?: string;
|
|
17499
17547
|
}
|
|
17500
17548
|
|
|
17501
17549
|
interface ChannelOrderAcceptanceDeleted {
|
|
@@ -17525,6 +17573,35 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17525
17573
|
readonly 'channel_order_acceptance': io.flow.internal.v0.models.ChannelOrderAcceptance;
|
|
17526
17574
|
}
|
|
17527
17575
|
|
|
17576
|
+
interface ChannelOrderSummary {
|
|
17577
|
+
readonly 'id': string;
|
|
17578
|
+
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
17579
|
+
readonly 'external_order_reference': string;
|
|
17580
|
+
readonly 'order_number': string;
|
|
17581
|
+
readonly 'fulfullment_details': io.flow.internal.v0.models.ChannelOrderSummaryFulfillmentDetails;
|
|
17582
|
+
}
|
|
17583
|
+
|
|
17584
|
+
interface ChannelOrderSummaryDeleted {
|
|
17585
|
+
readonly 'discriminator': 'channel_order_summary_deleted';
|
|
17586
|
+
readonly 'event_id': string;
|
|
17587
|
+
readonly 'timestamp': string;
|
|
17588
|
+
readonly 'channel_id': string;
|
|
17589
|
+
readonly 'id': string;
|
|
17590
|
+
}
|
|
17591
|
+
|
|
17592
|
+
interface ChannelOrderSummaryFulfillmentDetails {
|
|
17593
|
+
readonly 'fulfillment_status': io.flow.internal.v0.enums.ChannelOrderFulfillmentStatusCode;
|
|
17594
|
+
readonly 'timestamp': string;
|
|
17595
|
+
}
|
|
17596
|
+
|
|
17597
|
+
interface ChannelOrderSummaryUpserted {
|
|
17598
|
+
readonly 'discriminator': 'channel_order_summary_upserted';
|
|
17599
|
+
readonly 'event_id': string;
|
|
17600
|
+
readonly 'timestamp': string;
|
|
17601
|
+
readonly 'channel_id': string;
|
|
17602
|
+
readonly 'channel_order_summary': io.flow.internal.v0.models.ChannelOrderSummary;
|
|
17603
|
+
}
|
|
17604
|
+
|
|
17528
17605
|
interface ChannelOrganizationShopify {
|
|
17529
17606
|
readonly 'organization': io.flow.channel.v0.models.ChannelOrganization;
|
|
17530
17607
|
readonly 'tokens': io.flow.internal.v0.models.ShopifyChannelOrganizationTokens[];
|
|
@@ -20233,12 +20310,25 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20233
20310
|
readonly 'daily_value': io.flow.internal.v0.models.DailyValue;
|
|
20234
20311
|
}
|
|
20235
20312
|
|
|
20313
|
+
interface DebugAccountingTransaction {
|
|
20314
|
+
readonly 'type': io.flow.internal.v0.enums.DebugAccountingTransactionType;
|
|
20315
|
+
readonly 'type_id': string;
|
|
20316
|
+
readonly 'transaction_id': string;
|
|
20317
|
+
}
|
|
20318
|
+
|
|
20236
20319
|
interface DebugDetails {
|
|
20237
20320
|
readonly 'labels': io.flow.internal.v0.models.DebugLabel[];
|
|
20238
20321
|
readonly 'captures': io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
20239
20322
|
readonly 'refunds': io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
20240
20323
|
}
|
|
20241
20324
|
|
|
20325
|
+
interface DebugFulfillmentDelta {
|
|
20326
|
+
readonly 'posted_transactions_net': number;
|
|
20327
|
+
readonly 'fulfillments_net': number;
|
|
20328
|
+
readonly 'delta_amount': number;
|
|
20329
|
+
readonly 'delta_percent': number;
|
|
20330
|
+
}
|
|
20331
|
+
|
|
20242
20332
|
interface DebugLabel {
|
|
20243
20333
|
readonly 'carrier_id': string;
|
|
20244
20334
|
readonly 'carrier_tracking_number': string;
|
|
@@ -20279,6 +20369,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20279
20369
|
readonly 'label_tracking_summary_id'?: string;
|
|
20280
20370
|
readonly 'shipping_notification_id'?: string;
|
|
20281
20371
|
readonly 'external_fulfillment_proof_id'?: string;
|
|
20372
|
+
readonly 'order_cancellation_id'?: string;
|
|
20282
20373
|
}
|
|
20283
20374
|
|
|
20284
20375
|
interface DebugOrderTransactionFormOrderIdentifier {
|
|
@@ -21873,11 +21964,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21873
21964
|
readonly 'currency': string;
|
|
21874
21965
|
readonly 'order': io.flow.internal.v0.models.OrderSummary;
|
|
21875
21966
|
readonly 'origin'?: io.flow.internal.v0.models.FulfillmentOrigin;
|
|
21876
|
-
readonly 'lines': io.flow.internal.v0.models.FulfillmentLine[];
|
|
21877
21967
|
readonly 'shopper': io.flow.internal.v0.models.ShopperSummary;
|
|
21878
21968
|
readonly 'merchant': io.flow.internal.v0.models.MerchantSummary;
|
|
21879
|
-
readonly '
|
|
21880
|
-
readonly 'responsible_party': io.flow.internal.v0.enums.ResponsibleParty;
|
|
21969
|
+
readonly 'trigger': io.flow.internal.v0.unions.FulfillmentTrigger;
|
|
21881
21970
|
readonly 'completes_order': boolean;
|
|
21882
21971
|
readonly 'sequence_number': number;
|
|
21883
21972
|
readonly 'posting_cutoff': string;
|
|
@@ -21912,17 +22001,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21912
22001
|
readonly 'key': string;
|
|
21913
22002
|
}
|
|
21914
22003
|
|
|
21915
|
-
interface FulfillmentLine {
|
|
21916
|
-
readonly 'item': io.flow.internal.v0.models.ItemSummary;
|
|
21917
|
-
readonly 'quantity': number;
|
|
21918
|
-
readonly 'unit_price': number;
|
|
21919
|
-
readonly 'price': number;
|
|
21920
|
-
readonly 'discount': number;
|
|
21921
|
-
readonly 'tax': number;
|
|
21922
|
-
readonly 'duty': number;
|
|
21923
|
-
readonly 'subsidies': io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
|
|
21924
|
-
}
|
|
21925
|
-
|
|
21926
22004
|
interface FulfillmentOrigin {
|
|
21927
22005
|
readonly 'country': string;
|
|
21928
22006
|
readonly 'province_code'?: string;
|
|
@@ -21935,6 +22013,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21935
22013
|
readonly 'carrier_service_id'?: string;
|
|
21936
22014
|
readonly 'carrier_tracking_number'?: string;
|
|
21937
22015
|
readonly 'label_id'?: string;
|
|
22016
|
+
readonly 'created_at'?: string;
|
|
21938
22017
|
}
|
|
21939
22018
|
|
|
21940
22019
|
interface FulfillmentProofLabelTrackingReference {
|
|
@@ -21944,6 +22023,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21944
22023
|
readonly 'carrier_service_id'?: string;
|
|
21945
22024
|
readonly 'carrier_tracking_number'?: string;
|
|
21946
22025
|
readonly 'label_id'?: string;
|
|
22026
|
+
readonly 'created_at'?: string;
|
|
22027
|
+
}
|
|
22028
|
+
|
|
22029
|
+
interface FulfillmentProofOrderCombinedShipmentReference {
|
|
22030
|
+
readonly 'discriminator': 'order_combined_shipment';
|
|
22031
|
+
readonly 'id': string;
|
|
22032
|
+
readonly 'carrier_id'?: string;
|
|
22033
|
+
readonly 'carrier_service_id'?: string;
|
|
22034
|
+
readonly 'carrier_tracking_number'?: string;
|
|
22035
|
+
readonly 'label_id'?: string;
|
|
22036
|
+
readonly 'created_at'?: string;
|
|
21947
22037
|
}
|
|
21948
22038
|
|
|
21949
22039
|
interface FulfillmentProofShippingNotificationReference {
|
|
@@ -21953,6 +22043,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21953
22043
|
readonly 'carrier_service_id'?: string;
|
|
21954
22044
|
readonly 'carrier_tracking_number'?: string;
|
|
21955
22045
|
readonly 'label_id'?: string;
|
|
22046
|
+
readonly 'created_at'?: string;
|
|
21956
22047
|
}
|
|
21957
22048
|
|
|
21958
22049
|
interface FulfillmentReference {
|
|
@@ -21980,6 +22071,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21980
22071
|
interface FulfillmentSubsidyBreakdown {
|
|
21981
22072
|
readonly 'tax': number;
|
|
21982
22073
|
readonly 'duty': number;
|
|
22074
|
+
readonly 'total': number;
|
|
22075
|
+
}
|
|
22076
|
+
|
|
22077
|
+
interface FulfillmentTriggerProof {
|
|
22078
|
+
readonly 'discriminator': 'by_proof';
|
|
22079
|
+
readonly 'proof': io.flow.internal.v0.unions.FulfillmentProof;
|
|
22080
|
+
}
|
|
22081
|
+
|
|
22082
|
+
interface FulfillmentTriggerTime {
|
|
22083
|
+
readonly 'discriminator': 'by_time';
|
|
22084
|
+
readonly 'placeholder'?: string;
|
|
21983
22085
|
}
|
|
21984
22086
|
|
|
21985
22087
|
interface FxFee {
|
|
@@ -23465,11 +23567,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23465
23567
|
readonly 'constructions': Record<string, string[]>;
|
|
23466
23568
|
}
|
|
23467
23569
|
|
|
23468
|
-
interface LabelBase {
|
|
23469
|
-
readonly 'amount': number;
|
|
23470
|
-
readonly 'weight': number;
|
|
23471
|
-
}
|
|
23472
|
-
|
|
23473
23570
|
interface LabelCancellationError {
|
|
23474
23571
|
readonly 'code': io.flow.internal.v0.enums.LabelCancellationErrorCode;
|
|
23475
23572
|
readonly 'messages': string[];
|
|
@@ -23501,6 +23598,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23501
23598
|
|
|
23502
23599
|
interface LabelDestination {
|
|
23503
23600
|
readonly 'country': string;
|
|
23601
|
+
readonly 'postal'?: string;
|
|
23504
23602
|
}
|
|
23505
23603
|
|
|
23506
23604
|
interface LabelGenerationAddressFailureStatusUpdateForm {
|
|
@@ -23548,13 +23646,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23548
23646
|
|
|
23549
23647
|
interface LabelInvoiceRequest {
|
|
23550
23648
|
readonly 'id': string;
|
|
23551
|
-
readonly 'label': io.flow.internal.v0.models.
|
|
23552
|
-
readonly 'units': io.flow.
|
|
23553
|
-
readonly 'base': io.flow.
|
|
23554
|
-
readonly 'surcharges': io.flow.
|
|
23649
|
+
readonly 'label': io.flow.internal.v0.models.TrueupLabelSummary;
|
|
23650
|
+
readonly 'units': io.flow.trueup.v0.models.LabelUnits;
|
|
23651
|
+
readonly 'base': io.flow.trueup.v0.models.LabelBase;
|
|
23652
|
+
readonly 'surcharges': io.flow.trueup.v0.models.LabelSurcharge[];
|
|
23555
23653
|
readonly 'total': number;
|
|
23556
23654
|
readonly 'destination': io.flow.internal.v0.models.LabelDestination;
|
|
23557
23655
|
readonly 'metadata': io.flow.internal.v0.models.LabelMetadata;
|
|
23656
|
+
readonly 'created_at': string;
|
|
23558
23657
|
}
|
|
23559
23658
|
|
|
23560
23659
|
interface LabelInvoiceRequestDeleted {
|
|
@@ -23575,7 +23674,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23575
23674
|
|
|
23576
23675
|
interface LabelMetadata {
|
|
23577
23676
|
readonly 'ratecard': io.flow.internal.v0.models.MetadataRatecard;
|
|
23578
|
-
readonly '
|
|
23677
|
+
readonly 'dead'?: io.flow.trueup.v0.models.DeadWeight;
|
|
23678
|
+
readonly 'dimensional'?: io.flow.trueup.v0.models.DimensionalWeight;
|
|
23579
23679
|
}
|
|
23580
23680
|
|
|
23581
23681
|
interface LabelRequestError {
|
|
@@ -23622,27 +23722,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23622
23722
|
readonly 'service'?: io.flow.reference.v0.models.CarrierService;
|
|
23623
23723
|
}
|
|
23624
23724
|
|
|
23625
|
-
interface LabelSurcharge {
|
|
23626
|
-
readonly 'amount': number;
|
|
23627
|
-
readonly 'type': io.flow.internal.v0.enums.TrueUpSurchargeType;
|
|
23628
|
-
readonly 'detail': io.flow.internal.v0.unions.LabelSurchargeDetail;
|
|
23629
|
-
}
|
|
23630
|
-
|
|
23631
|
-
interface LabelSurchargeDetailFlat {
|
|
23632
|
-
readonly 'discriminator': 'flat';
|
|
23633
|
-
readonly 'placeholder'?: string;
|
|
23634
|
-
}
|
|
23635
|
-
|
|
23636
|
-
interface LabelSurchargeDetailPerWeightUnit {
|
|
23637
|
-
readonly 'discriminator': 'per_weight_unit';
|
|
23638
|
-
readonly 'fee': number;
|
|
23639
|
-
}
|
|
23640
|
-
|
|
23641
|
-
interface LabelSurchargeDetailPercentage {
|
|
23642
|
-
readonly 'discriminator': 'percentage';
|
|
23643
|
-
readonly 'percentage': number;
|
|
23644
|
-
}
|
|
23645
|
-
|
|
23646
23725
|
interface LabelSurchargeForm {
|
|
23647
23726
|
readonly 'fuel'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
23648
23727
|
readonly 'remote_area'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
@@ -23715,12 +23794,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23715
23794
|
readonly 'label_transaction': io.flow.internal.v0.models.LabelTransaction;
|
|
23716
23795
|
}
|
|
23717
23796
|
|
|
23718
|
-
interface LabelUnits {
|
|
23719
|
-
readonly 'currency': string;
|
|
23720
|
-
readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
|
|
23721
|
-
readonly 'length': io.flow.units.v0.enums.UnitOfLength;
|
|
23722
|
-
}
|
|
23723
|
-
|
|
23724
23797
|
interface LabeledContent {
|
|
23725
23798
|
readonly 'label': io.flow.internal.v0.models.ContentLabel;
|
|
23726
23799
|
readonly 'contents': io.flow.internal.v0.unions.ContentItem[];
|
|
@@ -24112,6 +24185,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24112
24185
|
interface ManualTransaction {
|
|
24113
24186
|
readonly 'discriminator': 'manual_transaction';
|
|
24114
24187
|
readonly 'category'?: io.flow.internal.v0.enums.ManualTransactionCategory;
|
|
24188
|
+
readonly 'original_transaction'?: io.flow.internal.v0.models.TransactionReference;
|
|
24115
24189
|
readonly 'order'?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
24116
24190
|
readonly 'attributes'?: Record<string, string>;
|
|
24117
24191
|
readonly 'id': string;
|
|
@@ -24131,6 +24205,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24131
24205
|
readonly 'category'?: io.flow.internal.v0.enums.ManualTransactionCategory;
|
|
24132
24206
|
readonly 'posted_at'?: string;
|
|
24133
24207
|
readonly 'order'?: io.flow.internal.v0.models.ManualTransactionFormOrder;
|
|
24208
|
+
readonly 'original_transaction_id'?: string;
|
|
24134
24209
|
readonly 'attributes'?: Record<string, string>;
|
|
24135
24210
|
}
|
|
24136
24211
|
|
|
@@ -24399,6 +24474,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24399
24474
|
readonly 'flow_authorization'?: io.flow.payment.v0.unions.Authorization;
|
|
24400
24475
|
}
|
|
24401
24476
|
|
|
24477
|
+
interface Merchant {
|
|
24478
|
+
readonly 'id': string;
|
|
24479
|
+
readonly 'account': io.flow.internal.v0.models.AccountReference;
|
|
24480
|
+
}
|
|
24481
|
+
|
|
24402
24482
|
interface MerchantApplicationSummaries {
|
|
24403
24483
|
readonly 'summaries': io.flow.internal.v0.models.MerchantApplicationSummary[];
|
|
24404
24484
|
readonly 'total': number;
|
|
@@ -24409,6 +24489,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24409
24489
|
readonly 'organization_reference': io.flow.common.v0.models.Organization;
|
|
24410
24490
|
}
|
|
24411
24491
|
|
|
24492
|
+
interface MerchantDeleted {
|
|
24493
|
+
readonly 'discriminator': 'merchant_deleted';
|
|
24494
|
+
readonly 'event_id': string;
|
|
24495
|
+
readonly 'timestamp': string;
|
|
24496
|
+
readonly 'id': string;
|
|
24497
|
+
}
|
|
24498
|
+
|
|
24412
24499
|
interface MerchantFees {
|
|
24413
24500
|
readonly 'duty_guarantee': number;
|
|
24414
24501
|
readonly 'mor': number;
|
|
@@ -24470,6 +24557,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24470
24557
|
interface MerchantSearchResult {
|
|
24471
24558
|
readonly 'organization_id': string;
|
|
24472
24559
|
readonly 'shop_name'?: string;
|
|
24560
|
+
readonly 'shop_id'?: string;
|
|
24473
24561
|
readonly 'legal_name': string;
|
|
24474
24562
|
readonly 'onboarding_current_state': io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
24475
24563
|
}
|
|
@@ -24478,7 +24566,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24478
24566
|
readonly 'fees': io.flow.internal.v0.models.ShopperFees;
|
|
24479
24567
|
readonly 'tax': number;
|
|
24480
24568
|
readonly 'duty': number;
|
|
24481
|
-
readonly 'freight': number;
|
|
24482
24569
|
readonly 'total': number;
|
|
24483
24570
|
}
|
|
24484
24571
|
|
|
@@ -24486,7 +24573,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24486
24573
|
readonly 'subsidies': io.flow.internal.v0.models.MerchantSubsidies;
|
|
24487
24574
|
readonly 'fees': io.flow.internal.v0.models.MerchantFees;
|
|
24488
24575
|
readonly 'transactions': io.flow.internal.v0.models.MerchantTransactions;
|
|
24489
|
-
readonly '
|
|
24576
|
+
readonly 'total': number;
|
|
24490
24577
|
}
|
|
24491
24578
|
|
|
24492
24579
|
interface MerchantTransactions {
|
|
@@ -24498,6 +24585,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24498
24585
|
readonly 'total': number;
|
|
24499
24586
|
}
|
|
24500
24587
|
|
|
24588
|
+
interface MerchantUpserted {
|
|
24589
|
+
readonly 'discriminator': 'merchant_upserted';
|
|
24590
|
+
readonly 'event_id': string;
|
|
24591
|
+
readonly 'timestamp': string;
|
|
24592
|
+
readonly 'merchant': io.flow.internal.v0.models.Merchant;
|
|
24593
|
+
}
|
|
24594
|
+
|
|
24501
24595
|
interface MetadataProposition {
|
|
24502
24596
|
readonly 'shipping_method': io.flow.internal.v0.models.ShippingMethodReference;
|
|
24503
24597
|
readonly 'name': string;
|
|
@@ -24508,11 +24602,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24508
24602
|
readonly 'proposition': io.flow.internal.v0.models.MetadataProposition;
|
|
24509
24603
|
}
|
|
24510
24604
|
|
|
24511
|
-
interface MetadataWeights {
|
|
24512
|
-
readonly 'dead'?: io.flow.internal.v0.models.WeightsDead;
|
|
24513
|
-
readonly 'dimensional'?: io.flow.internal.v0.models.WeightsDimensional;
|
|
24514
|
-
}
|
|
24515
|
-
|
|
24516
24605
|
interface NextBillingStatement {
|
|
24517
24606
|
readonly 'date': string;
|
|
24518
24607
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -25070,6 +25159,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25070
25159
|
readonly 'deactivate_at': string;
|
|
25071
25160
|
readonly 'created_at': string;
|
|
25072
25161
|
readonly 'reason'?: string;
|
|
25162
|
+
readonly 'processed_at'?: string;
|
|
25073
25163
|
}
|
|
25074
25164
|
|
|
25075
25165
|
interface OrganizationDeactivationDeleted {
|
|
@@ -26003,6 +26093,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26003
26093
|
readonly 'order_cancellation_id': string;
|
|
26004
26094
|
}
|
|
26005
26095
|
|
|
26096
|
+
interface ProofOfPostingOrderCombinedShipment {
|
|
26097
|
+
readonly 'discriminator': 'order_combined_shipment';
|
|
26098
|
+
readonly 'order_combined_shipment_id': string;
|
|
26099
|
+
}
|
|
26100
|
+
|
|
26006
26101
|
interface ProofOfPostingShippingNotification {
|
|
26007
26102
|
readonly 'discriminator': 'shipping_notification';
|
|
26008
26103
|
readonly 'shipping_notification_id': string;
|
|
@@ -26470,20 +26565,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26470
26565
|
}
|
|
26471
26566
|
|
|
26472
26567
|
interface Report {
|
|
26473
|
-
readonly '
|
|
26568
|
+
readonly 'id': string;
|
|
26474
26569
|
readonly 'status': io.flow.internal.v0.enums.ReportStatus;
|
|
26570
|
+
readonly 'type': io.flow.internal.v0.enums.ReportType;
|
|
26475
26571
|
readonly 'from': string;
|
|
26476
26572
|
readonly 'to': string;
|
|
26477
|
-
readonly '
|
|
26478
|
-
readonly '
|
|
26479
|
-
readonly 'refunds_url'?: string;
|
|
26573
|
+
readonly 'url'?: string;
|
|
26574
|
+
readonly 'processed_at'?: string;
|
|
26480
26575
|
}
|
|
26481
26576
|
|
|
26482
26577
|
interface ReportForm {
|
|
26483
|
-
readonly 'key'?: string;
|
|
26484
26578
|
readonly 'from': string;
|
|
26485
26579
|
readonly 'to': string;
|
|
26486
|
-
readonly '
|
|
26580
|
+
readonly 'type': io.flow.internal.v0.enums.ReportType;
|
|
26487
26581
|
}
|
|
26488
26582
|
|
|
26489
26583
|
interface ReportRuleDecision {
|
|
@@ -26498,6 +26592,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26498
26592
|
}
|
|
26499
26593
|
|
|
26500
26594
|
interface ReportingDetails {
|
|
26595
|
+
readonly 'accounting_transactions'?: any/*object*/[];
|
|
26596
|
+
readonly 'fulfillments'?: any/*object*/[];
|
|
26597
|
+
readonly 'fulfillment_delta'?: io.flow.internal.v0.models.DebugFulfillmentDelta;
|
|
26501
26598
|
readonly 'sales_records'?: any/*object*/[];
|
|
26502
26599
|
readonly 'refund_records'?: any/*object*/[];
|
|
26503
26600
|
}
|
|
@@ -26576,6 +26673,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26576
26673
|
readonly 'decision': io.flow.internal.v0.enums.RestrictionDecision;
|
|
26577
26674
|
}
|
|
26578
26675
|
|
|
26676
|
+
interface RestrictionItemReviewSummary {
|
|
26677
|
+
readonly 'rule': io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
26678
|
+
readonly 'status': io.flow.internal.v0.enums.RestrictionStatus;
|
|
26679
|
+
readonly 'updated_at': string;
|
|
26680
|
+
}
|
|
26681
|
+
|
|
26579
26682
|
interface RestrictionKeywordMetadata {
|
|
26580
26683
|
readonly 'keyword': string;
|
|
26581
26684
|
readonly 'type': io.flow.internal.v0.enums.KeywordType;
|
|
@@ -26652,6 +26755,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26652
26755
|
readonly 'name': string;
|
|
26653
26756
|
readonly 'price': io.flow.common.v0.models.Price;
|
|
26654
26757
|
readonly 'item_numbers': string[];
|
|
26758
|
+
readonly 'primary_item_number'?: string;
|
|
26655
26759
|
readonly 'description': string;
|
|
26656
26760
|
readonly 'categories': string[];
|
|
26657
26761
|
readonly 'images': io.flow.catalog.v0.models.Image[];
|
|
@@ -26676,6 +26780,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26676
26780
|
readonly 'product_name_query'?: string;
|
|
26677
26781
|
}
|
|
26678
26782
|
|
|
26783
|
+
interface RestrictionProductSummary {
|
|
26784
|
+
readonly 'name': string;
|
|
26785
|
+
readonly 'restrictions': io.flow.internal.v0.models.RestrictionItemReviewSummary[];
|
|
26786
|
+
}
|
|
26787
|
+
|
|
26679
26788
|
interface RestrictionRule {
|
|
26680
26789
|
readonly 'id': string;
|
|
26681
26790
|
readonly 'name': string;
|
|
@@ -27138,6 +27247,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27138
27247
|
readonly 'discrepancy_data': io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData;
|
|
27139
27248
|
}
|
|
27140
27249
|
|
|
27250
|
+
interface ShopifyMarketsQueuedRecord {
|
|
27251
|
+
readonly 'id': string;
|
|
27252
|
+
readonly 'type': string;
|
|
27253
|
+
readonly 'type_id': string;
|
|
27254
|
+
readonly 'organization_id': string;
|
|
27255
|
+
readonly 'environment'?: string;
|
|
27256
|
+
readonly 'num_attempts': number;
|
|
27257
|
+
readonly 'next_attempt_at': string;
|
|
27258
|
+
readonly 'errors'?: string[];
|
|
27259
|
+
readonly 'stacktrace'?: string;
|
|
27260
|
+
}
|
|
27261
|
+
|
|
27141
27262
|
interface ShopifyMarketsShop {
|
|
27142
27263
|
readonly 'id': string;
|
|
27143
27264
|
readonly 'shopify_shop_id'?: string;
|
|
@@ -27549,11 +27670,32 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27549
27670
|
readonly 'tax': number;
|
|
27550
27671
|
readonly 'duty': number;
|
|
27551
27672
|
readonly 'subsidies': io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
|
|
27673
|
+
readonly 'total': number;
|
|
27674
|
+
}
|
|
27675
|
+
|
|
27676
|
+
interface ShopperLine {
|
|
27677
|
+
readonly 'item': io.flow.internal.v0.models.ItemSummary;
|
|
27678
|
+
readonly 'quantity': number;
|
|
27679
|
+
readonly 'unit_price': number;
|
|
27680
|
+
readonly 'price': number;
|
|
27681
|
+
readonly 'discount': number;
|
|
27682
|
+
readonly 'tax': number;
|
|
27683
|
+
readonly 'duty': number;
|
|
27684
|
+
readonly 'subsidies': io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
|
|
27685
|
+
readonly 'total': number;
|
|
27686
|
+
}
|
|
27687
|
+
|
|
27688
|
+
interface ShopperLines {
|
|
27689
|
+
readonly 'lines': io.flow.internal.v0.models.ShopperLine[];
|
|
27690
|
+
readonly 'total': number;
|
|
27552
27691
|
}
|
|
27553
27692
|
|
|
27554
27693
|
interface ShopperSummary {
|
|
27694
|
+
readonly 'fulfilled': io.flow.internal.v0.models.ShopperLines;
|
|
27555
27695
|
readonly 'fees': io.flow.internal.v0.models.ShopperFees;
|
|
27556
27696
|
readonly 'freight': io.flow.internal.v0.models.ShopperFreight;
|
|
27697
|
+
readonly 'order_discount': number;
|
|
27698
|
+
readonly 'total': number;
|
|
27557
27699
|
}
|
|
27558
27700
|
|
|
27559
27701
|
interface SimpleAccountReference {
|
|
@@ -28427,8 +28569,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28427
28569
|
readonly 'description': string;
|
|
28428
28570
|
}
|
|
28429
28571
|
|
|
28430
|
-
interface
|
|
28572
|
+
interface TrueupLabelSummary {
|
|
28431
28573
|
readonly 'id': string;
|
|
28574
|
+
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
28575
|
+
readonly 'carrier_id': string;
|
|
28432
28576
|
readonly 'carrier_service_id': string;
|
|
28433
28577
|
readonly 'carrier_tracking_number': string;
|
|
28434
28578
|
readonly 'flow_tracking_number': string;
|
|
@@ -28504,40 +28648,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28504
28648
|
readonly 'direct_feed_location_code'?: string;
|
|
28505
28649
|
}
|
|
28506
28650
|
|
|
28507
|
-
interface UpsLicense {
|
|
28508
|
-
readonly 'access_license_number': string;
|
|
28509
|
-
readonly 'address': io.flow.common.v0.models.BillingAddress;
|
|
28510
|
-
readonly 'contact': io.flow.common.v0.models.Contact;
|
|
28511
|
-
readonly 'secondary_contact'?: io.flow.common.v0.models.Contact;
|
|
28512
|
-
readonly 'company_url': string;
|
|
28513
|
-
}
|
|
28514
|
-
|
|
28515
|
-
interface UpsLicenseForm {
|
|
28516
|
-
readonly 'address': io.flow.common.v0.models.BillingAddress;
|
|
28517
|
-
readonly 'contact': io.flow.common.v0.models.Contact;
|
|
28518
|
-
readonly 'secondary_contact'?: io.flow.common.v0.models.Contact;
|
|
28519
|
-
readonly 'developer_license_number': string;
|
|
28520
|
-
readonly 'company_url': string;
|
|
28521
|
-
}
|
|
28522
|
-
|
|
28523
|
-
interface UpsRegistration {
|
|
28524
|
-
readonly 'username': string;
|
|
28525
|
-
readonly 'address': io.flow.common.v0.models.BillingAddress;
|
|
28526
|
-
readonly 'contact': io.flow.common.v0.models.Contact;
|
|
28527
|
-
readonly 'suggest_username_indicator'?: string;
|
|
28528
|
-
readonly 'shipper_account_status'?: string;
|
|
28529
|
-
}
|
|
28530
|
-
|
|
28531
|
-
interface UpsRegistrationForm {
|
|
28532
|
-
readonly 'username': string;
|
|
28533
|
-
readonly 'password': string;
|
|
28534
|
-
readonly 'access_license_number': string;
|
|
28535
|
-
readonly 'account_number': string;
|
|
28536
|
-
readonly 'address': io.flow.common.v0.models.BillingAddress;
|
|
28537
|
-
readonly 'contact': io.flow.common.v0.models.Contact;
|
|
28538
|
-
readonly 'shipper_account'?: io.flow.internal.v0.models.ShipperAccountInfoForm;
|
|
28539
|
-
}
|
|
28540
|
-
|
|
28541
28651
|
interface UsdSpotRate {
|
|
28542
28652
|
readonly 'id': string;
|
|
28543
28653
|
readonly 'effective_at': string;
|
|
@@ -28706,17 +28816,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28706
28816
|
readonly 'placeholder'?: any/*json*/;
|
|
28707
28817
|
}
|
|
28708
28818
|
|
|
28709
|
-
interface WeightsDead {
|
|
28710
|
-
readonly 'weight': number;
|
|
28711
|
-
}
|
|
28712
|
-
|
|
28713
|
-
interface WeightsDimensional {
|
|
28714
|
-
readonly 'weight': number;
|
|
28715
|
-
readonly 'length': number;
|
|
28716
|
-
readonly 'width': number;
|
|
28717
|
-
readonly 'height': number;
|
|
28718
|
-
}
|
|
28719
|
-
|
|
28720
28819
|
interface WholeOrderActionForm {
|
|
28721
28820
|
readonly 'discriminator': 'whole_order_action_form';
|
|
28722
28821
|
readonly 'action': io.flow.internal.v0.enums.OrderAction;
|
|
@@ -28827,7 +28926,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
28827
28926
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
28828
28927
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal);
|
|
28829
28928
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
28830
|
-
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.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.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | 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.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.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.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.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.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.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);
|
|
28929
|
+
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.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.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.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.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.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.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);
|
|
28831
28930
|
type Experiment = (io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment);
|
|
28832
28931
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
28833
28932
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -28838,7 +28937,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
28838
28937
|
type FraudProviderConfiguration = (io.flow.internal.v0.models.FraudProviderConfigurationRiskified);
|
|
28839
28938
|
type FraudProviderConfigurationForm = (io.flow.internal.v0.models.FraudProviderConfigurationFormRiskified);
|
|
28840
28939
|
type FuelSurchargeServiceFeePutForm = (io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm | io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm);
|
|
28841
|
-
type FulfillmentProof = (io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference | io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference | io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference);
|
|
28940
|
+
type FulfillmentProof = (io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference | io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference | io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference | io.flow.internal.v0.models.FulfillmentProofOrderCombinedShipmentReference);
|
|
28941
|
+
type FulfillmentTrigger = (io.flow.internal.v0.models.FulfillmentTriggerProof | io.flow.internal.v0.models.FulfillmentTriggerTime);
|
|
28842
28942
|
type GenerateLoad = (io.flow.internal.v0.models.GenerateLoadSingleOrg | io.flow.internal.v0.models.GenerateLoadMultipleOrgs);
|
|
28843
28943
|
type GlobalSearchResult = (io.flow.internal.v0.models.SearchExperienceSummary | io.flow.internal.v0.models.SearchExperimentSummary | io.flow.internal.v0.models.SearchOrderSummary | io.flow.internal.v0.models.SearchItemSummary);
|
|
28844
28944
|
type HeapEvent = (io.flow.internal.v0.models.HeapAddressPredictionClick | io.flow.internal.v0.models.HeapAfterpayPopupOpened | io.flow.internal.v0.models.HeapAfterpayPopupClosed | io.flow.internal.v0.models.HeapAuthorizationDeclined | io.flow.internal.v0.models.HeapAuthorizationError | io.flow.internal.v0.models.HeapCardError | io.flow.internal.v0.models.HeapCheckoutEvent | io.flow.internal.v0.models.HeapCheckoutProgress | io.flow.internal.v0.models.HeapCheckoutStarted | io.flow.internal.v0.models.HeapContinueClick | io.flow.internal.v0.models.HeapDeliveryFormDataReceived | io.flow.internal.v0.models.HeapDeliveryFormDataTimeout | io.flow.internal.v0.models.HeapDeliveryOptionCount | io.flow.internal.v0.models.HeapDeliveryOptionSelected | io.flow.internal.v0.models.HeapExitCheckout | io.flow.internal.v0.models.HeapFieldBlur | io.flow.internal.v0.models.HeapFieldErrorTooltipShown | io.flow.internal.v0.models.HeapFieldFocus | io.flow.internal.v0.models.HeapFieldValidation | io.flow.internal.v0.models.HeapGiftCardApply | io.flow.internal.v0.models.HeapGiftCardOpen | io.flow.internal.v0.models.HeapGiftCardWithPin | io.flow.internal.v0.models.HeapOptinPromptDeselected | io.flow.internal.v0.models.HeapOptinPromptSelected | io.flow.internal.v0.models.HeapOrderSummaryClose | io.flow.internal.v0.models.HeapOrderSummaryOpen | io.flow.internal.v0.models.HeapPayClick | io.flow.internal.v0.models.HeapPaymentFormDataReceived | io.flow.internal.v0.models.HeapPaymentFormDataTimeout | io.flow.internal.v0.models.HeapPaymentMethodSelected | io.flow.internal.v0.models.HeapPerformance | io.flow.internal.v0.models.HeapPromoCodeApply | io.flow.internal.v0.models.HeapPromoCodeError | io.flow.internal.v0.models.HeapPromoCodeOpen | io.flow.internal.v0.models.HeapPurchase | io.flow.internal.v0.models.HeapRageClick | io.flow.internal.v0.models.HeapScriptError | io.flow.internal.v0.models.HeapSequencedError | io.flow.internal.v0.models.HeapSequencedTiming | io.flow.internal.v0.models.HeapSplitLoaded | io.flow.internal.v0.models.HeapSplitTimeout | io.flow.internal.v0.models.HeapStartCheckout | io.flow.internal.v0.models.HeapStreamError | io.flow.internal.v0.models.HeapSubmitError | io.flow.internal.v0.models.HeapWebsocketClose | io.flow.internal.v0.models.HeapWebsocketConnectionLost | io.flow.internal.v0.models.HeapWebsocketError | io.flow.internal.v0.models.HeapWebsocketGiveUp | io.flow.internal.v0.models.HeapWebsocketOpen | io.flow.internal.v0.models.HeapWebsocketRequest | io.flow.internal.v0.models.HeapWebsocketResponse | io.flow.internal.v0.models.HeapWebsocketRetry);
|
|
@@ -28848,7 +28948,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
28848
28948
|
type InternalHarmonizationStatistic = (io.flow.internal.v0.models.TimeToClassify | io.flow.internal.v0.models.TimeToClassifyAggregated | io.flow.internal.v0.models.RateSourceSummary | io.flow.internal.v0.models.RateFreshnessSummary);
|
|
28849
28949
|
type InternalRefundForm = (io.flow.internal.v0.models.AdyenRefundForm);
|
|
28850
28950
|
type InternalTransactionDetails = (io.flow.internal.v0.models.InternalTransactionDetailsCard);
|
|
28851
|
-
type LabelSurchargeDetail = (io.flow.internal.v0.models.LabelSurchargeDetailFlat | io.flow.internal.v0.models.LabelSurchargeDetailPercentage | io.flow.internal.v0.models.LabelSurchargeDetailPerWeightUnit);
|
|
28852
28951
|
type LocalizableContent = (io.flow.internal.v0.models.LocalizableContentReference | io.flow.internal.v0.models.Localization);
|
|
28853
28952
|
type MarketingGatewayChannelDetails = (io.flow.internal.v0.models.MarketingGatewayGoogleChannelDetails | io.flow.internal.v0.models.MarketingGatewayFacebookChannelDetails | io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails);
|
|
28854
28953
|
type MarketingGatewayDistributionChannel = (io.flow.internal.v0.models.MarketingGatewayDistributionChannelGoogle | io.flow.internal.v0.models.MarketingGatewayDistributionChannelFacebook);
|
|
@@ -28868,7 +28967,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
28868
28967
|
type ProcessorMerchantForm = (io.flow.internal.v0.models.StripeMerchantForm);
|
|
28869
28968
|
type ProcessorMerchantModificationForm = (io.flow.internal.v0.models.StripeMerchantModificationForm | io.flow.internal.v0.models.AdyenMerchantModificationForm | io.flow.internal.v0.models.FiservMerchantModificationForm | io.flow.internal.v0.models.PaypalMerchantModificationForm);
|
|
28870
28969
|
type ProcessorMerchantPutForm = (io.flow.internal.v0.models.StripeMerchantPutForm | io.flow.internal.v0.models.AdyenMerchantPutForm | io.flow.internal.v0.models.FiservMerchantPutForm | io.flow.internal.v0.models.PaypalMerchantPutForm);
|
|
28871
|
-
type ProofOfPosting = (io.flow.internal.v0.models.ProofOfPostingFulfilled | io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.internal.v0.models.ProofOfPostingShippingNotification | io.flow.internal.v0.models.ProofOfPostingOrderCancellation);
|
|
28970
|
+
type ProofOfPosting = (io.flow.internal.v0.models.ProofOfPostingFulfilled | io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.internal.v0.models.ProofOfPostingShippingNotification | io.flow.internal.v0.models.ProofOfPostingOrderCancellation | io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment);
|
|
28872
28971
|
type RoutingEntity = (io.flow.internal.v0.models.RoutingProcessor | io.flow.internal.v0.models.RoutingAccount | io.flow.internal.v0.models.RoutingMerchant);
|
|
28873
28972
|
type ShopifyMonitoringOrderMonitorType = (io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal | io.flow.internal.v0.models.ShopifyMonitoringFulfillmentMissingDetails);
|
|
28874
28973
|
type ShopifyPromotionOfferDiscount = (io.flow.internal.v0.models.ShopifyPromotionFixedAmount | io.flow.internal.v0.models.ShopifyPromotionPercent);
|
|
@@ -28916,6 +29015,7 @@ export const channelOrderAcceptanceErrorAction: PropTypes.Requireable<io.flow.in
|
|
|
28916
29015
|
export const channelOrderAcceptanceNextActionFrom: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom>;
|
|
28917
29016
|
export const channelOrderAcceptanceRejectionReason: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceRejectionReason>;
|
|
28918
29017
|
export const channelOrderAcceptanceStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus>;
|
|
29018
|
+
export const channelOrderFulfillmentStatusCode: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderFulfillmentStatusCode>;
|
|
28919
29019
|
export const channelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelTransactionType>;
|
|
28920
29020
|
export const chargebackPaymentStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ChargebackPaymentStatus>;
|
|
28921
29021
|
export const chargebackProcessStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ChargebackProcessStatus>;
|
|
@@ -28999,6 +29099,7 @@ export const contentStatus: PropTypes.Requireable<io.flow.internal.v0.enums.Cont
|
|
|
28999
29099
|
export const contentType: PropTypes.Requireable<io.flow.internal.v0.enums.ContentType>;
|
|
29000
29100
|
export const contentTypeCast: PropTypes.Requireable<io.flow.internal.v0.enums.ContentTypeCast>;
|
|
29001
29101
|
export const crossdockTrackingStatus: PropTypes.Requireable<io.flow.internal.v0.enums.CrossdockTrackingStatus>;
|
|
29102
|
+
export const debugAccountingTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.DebugAccountingTransactionType>;
|
|
29002
29103
|
export const deliveredDutyOptionMessageType: PropTypes.Requireable<io.flow.internal.v0.enums.DeliveredDutyOptionMessageType>;
|
|
29003
29104
|
export const deminimisAdjustmentType: PropTypes.Requireable<io.flow.internal.v0.enums.DeminimisAdjustmentType>;
|
|
29004
29105
|
export const discountRequestOrderEntitlementKey: PropTypes.Requireable<io.flow.internal.v0.enums.DiscountRequestOrderEntitlementKey>;
|
|
@@ -29118,6 +29219,7 @@ export const redirectReason: PropTypes.Requireable<io.flow.internal.v0.enums.Red
|
|
|
29118
29219
|
export const rejectionReason: PropTypes.Requireable<io.flow.internal.v0.enums.RejectionReason>;
|
|
29119
29220
|
export const reportInterval: PropTypes.Requireable<io.flow.internal.v0.enums.ReportInterval>;
|
|
29120
29221
|
export const reportStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ReportStatus>;
|
|
29222
|
+
export const reportType: PropTypes.Requireable<io.flow.internal.v0.enums.ReportType>;
|
|
29121
29223
|
export const reportingScheme: PropTypes.Requireable<io.flow.internal.v0.enums.ReportingScheme>;
|
|
29122
29224
|
export const responsibleParty: PropTypes.Requireable<io.flow.internal.v0.enums.ResponsibleParty>;
|
|
29123
29225
|
export const restrictionAction: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionAction>;
|
|
@@ -29161,7 +29263,6 @@ export const timeseriesType: PropTypes.Requireable<io.flow.internal.v0.enums.Tim
|
|
|
29161
29263
|
export const trackingIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingIntegrationType>;
|
|
29162
29264
|
export const transactionPostingMethod: PropTypes.Requireable<io.flow.internal.v0.enums.TransactionPostingMethod>;
|
|
29163
29265
|
export const transferMethod: PropTypes.Requireable<io.flow.internal.v0.enums.TransferMethod>;
|
|
29164
|
-
export const trueUpSurchargeType: PropTypes.Requireable<io.flow.internal.v0.enums.TrueUpSurchargeType>;
|
|
29165
29266
|
export const trueupTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.TrueupTransactionType>;
|
|
29166
29267
|
export const unclassifiedProductStatus: PropTypes.Requireable<io.flow.internal.v0.enums.UnclassifiedProductStatus>;
|
|
29167
29268
|
export const acceptance: PropTypes.Requireable<io.flow.internal.v0.models.Acceptance>;
|
|
@@ -29179,6 +29280,7 @@ export const accountProcessingRates: PropTypes.Requireable<io.flow.internal.v0.m
|
|
|
29179
29280
|
export const accountProcessingRatesDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AccountProcessingRatesDeleted>;
|
|
29180
29281
|
export const accountProcessingRatesForm: PropTypes.Requireable<io.flow.internal.v0.models.AccountProcessingRatesForm>;
|
|
29181
29282
|
export const accountProcessingRatesUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AccountProcessingRatesUpserted>;
|
|
29283
|
+
export const accountReference: PropTypes.Requireable<io.flow.internal.v0.models.AccountReference>;
|
|
29182
29284
|
export const accountSettingLabelFees: PropTypes.Requireable<io.flow.internal.v0.models.AccountSettingLabelFees>;
|
|
29183
29285
|
export const accountSettings: PropTypes.Requireable<io.flow.internal.v0.models.AccountSettings>;
|
|
29184
29286
|
export const accountSettingsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AccountSettingsDeleted>;
|
|
@@ -29408,11 +29510,16 @@ export const channelForm: PropTypes.Requireable<io.flow.internal.v0.models.Chann
|
|
|
29408
29510
|
export const channelMembership: PropTypes.Requireable<io.flow.internal.v0.models.ChannelMembership>;
|
|
29409
29511
|
export const channelMembershipForm: PropTypes.Requireable<io.flow.internal.v0.models.ChannelMembershipForm>;
|
|
29410
29512
|
export const channelMembershipPutForm: PropTypes.Requireable<io.flow.internal.v0.models.ChannelMembershipPutForm>;
|
|
29513
|
+
export const channelOrder: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrder>;
|
|
29411
29514
|
export const channelOrderAcceptance: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptance>;
|
|
29412
29515
|
export const channelOrderAcceptanceDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted>;
|
|
29413
29516
|
export const channelOrderAcceptanceForm: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceForm>;
|
|
29414
29517
|
export const channelOrderAcceptanceReason: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceReason>;
|
|
29415
29518
|
export const channelOrderAcceptanceUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted>;
|
|
29519
|
+
export const channelOrderSummary: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderSummary>;
|
|
29520
|
+
export const channelOrderSummaryDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderSummaryDeleted>;
|
|
29521
|
+
export const channelOrderSummaryFulfillmentDetails: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderSummaryFulfillmentDetails>;
|
|
29522
|
+
export const channelOrderSummaryUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderSummaryUpserted>;
|
|
29416
29523
|
export const channelOrganizationShopify: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationShopify>;
|
|
29417
29524
|
export const channelOrganizationShopifyForm: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationShopifyForm>;
|
|
29418
29525
|
export const channelOrganizationShopifyPostForm: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationShopifyPostForm>;
|
|
@@ -29872,7 +29979,9 @@ export const dailyExperimentResultsUpserted: PropTypes.Requireable<io.flow.inter
|
|
|
29872
29979
|
export const dailyValue: PropTypes.Requireable<io.flow.internal.v0.models.DailyValue>;
|
|
29873
29980
|
export const dailyValueDeleted: PropTypes.Requireable<io.flow.internal.v0.models.DailyValueDeleted>;
|
|
29874
29981
|
export const dailyValueUpserted: PropTypes.Requireable<io.flow.internal.v0.models.DailyValueUpserted>;
|
|
29982
|
+
export const debugAccountingTransaction: PropTypes.Requireable<io.flow.internal.v0.models.DebugAccountingTransaction>;
|
|
29875
29983
|
export const debugDetails: PropTypes.Requireable<io.flow.internal.v0.models.DebugDetails>;
|
|
29984
|
+
export const debugFulfillmentDelta: PropTypes.Requireable<io.flow.internal.v0.models.DebugFulfillmentDelta>;
|
|
29876
29985
|
export const debugLabel: PropTypes.Requireable<io.flow.internal.v0.models.DebugLabel>;
|
|
29877
29986
|
export const debugLabelTransactionSummary: PropTypes.Requireable<io.flow.internal.v0.models.DebugLabelTransactionSummary>;
|
|
29878
29987
|
export const debugOrder: PropTypes.Requireable<io.flow.internal.v0.models.DebugOrder>;
|
|
@@ -30086,15 +30195,17 @@ export const fulfillmentActionForm: PropTypes.Requireable<io.flow.internal.v0.mo
|
|
|
30086
30195
|
export const fulfillmentBusiness: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentBusiness>;
|
|
30087
30196
|
export const fulfillmentCancel: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentCancel>;
|
|
30088
30197
|
export const fulfillmentInternalExperienceReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentInternalExperienceReference>;
|
|
30089
|
-
export const fulfillmentLine: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentLine>;
|
|
30090
30198
|
export const fulfillmentOrigin: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentOrigin>;
|
|
30091
30199
|
export const fulfillmentProofExternalFulfillmentProofReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference>;
|
|
30092
30200
|
export const fulfillmentProofLabelTrackingReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference>;
|
|
30201
|
+
export const fulfillmentProofOrderCombinedShipmentReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofOrderCombinedShipmentReference>;
|
|
30093
30202
|
export const fulfillmentProofShippingNotificationReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference>;
|
|
30094
30203
|
export const fulfillmentReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentReference>;
|
|
30095
30204
|
export const fulfillmentShipmentTracking: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentShipmentTracking>;
|
|
30096
30205
|
export const fulfillmentSnapshot: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentSnapshot>;
|
|
30097
30206
|
export const fulfillmentSubsidyBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentSubsidyBreakdown>;
|
|
30207
|
+
export const fulfillmentTriggerProof: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentTriggerProof>;
|
|
30208
|
+
export const fulfillmentTriggerTime: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentTriggerTime>;
|
|
30098
30209
|
export const fxFee: PropTypes.Requireable<io.flow.internal.v0.models.FxFee>;
|
|
30099
30210
|
export const fxRevenueRecognition: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognition>;
|
|
30100
30211
|
export const fxRevenueRecognitionAccount: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognitionAccount>;
|
|
@@ -30261,7 +30372,6 @@ export const labProjectSettingsForm: PropTypes.Requireable<io.flow.internal.v0.m
|
|
|
30261
30372
|
export const labProjectSettingsFormAcceptance: PropTypes.Requireable<io.flow.internal.v0.models.LabProjectSettingsFormAcceptance>;
|
|
30262
30373
|
export const labelAliases: PropTypes.Requireable<io.flow.internal.v0.models.LabelAliases>;
|
|
30263
30374
|
export const labelAssociation: PropTypes.Requireable<io.flow.internal.v0.models.LabelAssociation>;
|
|
30264
|
-
export const labelBase: PropTypes.Requireable<io.flow.internal.v0.models.LabelBase>;
|
|
30265
30375
|
export const labelCancellationError: PropTypes.Requireable<io.flow.internal.v0.models.LabelCancellationError>;
|
|
30266
30376
|
export const labelCreationJob: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJob>;
|
|
30267
30377
|
export const labelCreationJobSummary: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJobSummary>;
|
|
@@ -30281,10 +30391,6 @@ export const labelRequestError: PropTypes.Requireable<io.flow.internal.v0.models
|
|
|
30281
30391
|
export const labelRequestErrorDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelRequestErrorDeleted>;
|
|
30282
30392
|
export const labelRequestErrorUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelRequestErrorUpserted>;
|
|
30283
30393
|
export const labelSummary: PropTypes.Requireable<io.flow.internal.v0.models.LabelSummary>;
|
|
30284
|
-
export const labelSurcharge: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurcharge>;
|
|
30285
|
-
export const labelSurchargeDetailFlat: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurchargeDetailFlat>;
|
|
30286
|
-
export const labelSurchargeDetailPerWeightUnit: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurchargeDetailPerWeightUnit>;
|
|
30287
|
-
export const labelSurchargeDetailPercentage: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurchargeDetailPercentage>;
|
|
30288
30394
|
export const labelSurchargeForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurchargeForm>;
|
|
30289
30395
|
export const labelSurchargeSingleForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurchargeSingleForm>;
|
|
30290
30396
|
export const labelTaxonomy: PropTypes.Requireable<io.flow.internal.v0.models.LabelTaxonomy>;
|
|
@@ -30293,7 +30399,6 @@ export const labelTrackingSummaryUpserted: PropTypes.Requireable<io.flow.interna
|
|
|
30293
30399
|
export const labelTransaction: PropTypes.Requireable<io.flow.internal.v0.models.LabelTransaction>;
|
|
30294
30400
|
export const labelTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelTransactionDeleted>;
|
|
30295
30401
|
export const labelTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelTransactionUpserted>;
|
|
30296
|
-
export const labelUnits: PropTypes.Requireable<io.flow.internal.v0.models.LabelUnits>;
|
|
30297
30402
|
export const labeledContent: PropTypes.Requireable<io.flow.internal.v0.models.LabeledContent>;
|
|
30298
30403
|
export const labelsPrediction: PropTypes.Requireable<io.flow.internal.v0.models.LabelsPrediction>;
|
|
30299
30404
|
export const landedCostItem: PropTypes.Requireable<io.flow.internal.v0.models.LandedCostItem>;
|
|
@@ -30386,8 +30491,10 @@ export const marketingGatewayProductDatasourceSummary: PropTypes.Requireable<io.
|
|
|
30386
30491
|
export const marketingGatewaySchemaSummary: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewaySchemaSummary>;
|
|
30387
30492
|
export const marketingGatewaySupportedChannelDetails: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails>;
|
|
30388
30493
|
export const marketsOrder: PropTypes.Requireable<io.flow.internal.v0.models.MarketsOrder>;
|
|
30494
|
+
export const merchant: PropTypes.Requireable<io.flow.internal.v0.models.Merchant>;
|
|
30389
30495
|
export const merchantApplicationSummaries: PropTypes.Requireable<io.flow.internal.v0.models.MerchantApplicationSummaries>;
|
|
30390
30496
|
export const merchantApplicationSummary: PropTypes.Requireable<io.flow.internal.v0.models.MerchantApplicationSummary>;
|
|
30497
|
+
export const merchantDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantDeleted>;
|
|
30391
30498
|
export const merchantFees: PropTypes.Requireable<io.flow.internal.v0.models.MerchantFees>;
|
|
30392
30499
|
export const merchantGuidAssignment: PropTypes.Requireable<io.flow.internal.v0.models.MerchantGuidAssignment>;
|
|
30393
30500
|
export const merchantGuidAssignmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantGuidAssignmentDeleted>;
|
|
@@ -30398,9 +30505,9 @@ export const merchantSearchResult: PropTypes.Requireable<io.flow.internal.v0.mod
|
|
|
30398
30505
|
export const merchantSubsidies: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSubsidies>;
|
|
30399
30506
|
export const merchantSummary: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSummary>;
|
|
30400
30507
|
export const merchantTransactions: PropTypes.Requireable<io.flow.internal.v0.models.MerchantTransactions>;
|
|
30508
|
+
export const merchantUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantUpserted>;
|
|
30401
30509
|
export const metadataProposition: PropTypes.Requireable<io.flow.internal.v0.models.MetadataProposition>;
|
|
30402
30510
|
export const metadataRatecard: PropTypes.Requireable<io.flow.internal.v0.models.MetadataRatecard>;
|
|
30403
|
-
export const metadataWeights: PropTypes.Requireable<io.flow.internal.v0.models.MetadataWeights>;
|
|
30404
30511
|
export const nextBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.NextBillingStatement>;
|
|
30405
30512
|
export const noCalculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.NoCalculatedTaxAmount>;
|
|
30406
30513
|
export const noClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.NoClassificationForm>;
|
|
@@ -30596,6 +30703,7 @@ export const productReviewHistory: PropTypes.Requireable<io.flow.internal.v0.mod
|
|
|
30596
30703
|
export const proofOfPostingExternallyFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled>;
|
|
30597
30704
|
export const proofOfPostingFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingFulfilled>;
|
|
30598
30705
|
export const proofOfPostingOrderCancellation: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingOrderCancellation>;
|
|
30706
|
+
export const proofOfPostingOrderCombinedShipment: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment>;
|
|
30599
30707
|
export const proofOfPostingShippingNotification: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingShippingNotification>;
|
|
30600
30708
|
export const queuedRecord: PropTypes.Requireable<io.flow.internal.v0.models.QueuedRecord>;
|
|
30601
30709
|
export const quoteRequest: PropTypes.Requireable<io.flow.internal.v0.models.QuoteRequest>;
|
|
@@ -30671,6 +30779,7 @@ export const restrictionItem: PropTypes.Requireable<io.flow.internal.v0.models.R
|
|
|
30671
30779
|
export const restrictionItemRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionItemRequestForm>;
|
|
30672
30780
|
export const restrictionItemReview: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionItemReview>;
|
|
30673
30781
|
export const restrictionItemReviewDecisionForm: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionItemReviewDecisionForm>;
|
|
30782
|
+
export const restrictionItemReviewSummary: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionItemReviewSummary>;
|
|
30674
30783
|
export const restrictionKeywordMetadata: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionKeywordMetadata>;
|
|
30675
30784
|
export const restrictionKeywords: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionKeywords>;
|
|
30676
30785
|
export const restrictionOrganization: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionOrganization>;
|
|
@@ -30682,6 +30791,7 @@ export const restrictionPending: PropTypes.Requireable<io.flow.internal.v0.model
|
|
|
30682
30791
|
export const restrictionProduct: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionProduct>;
|
|
30683
30792
|
export const restrictionProductDecisionForm: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionProductDecisionForm>;
|
|
30684
30793
|
export const restrictionProductRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionProductRequestForm>;
|
|
30794
|
+
export const restrictionProductSummary: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionProductSummary>;
|
|
30685
30795
|
export const restrictionRule: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRule>;
|
|
30686
30796
|
export const restrictionRuleDecisionForm: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleDecisionForm>;
|
|
30687
30797
|
export const restrictionRuleForm: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleForm>;
|
|
@@ -30756,6 +30866,7 @@ export const shopifyMarketsOrder: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
30756
30866
|
export const shopifyMarketsOrderDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderDeleted>;
|
|
30757
30867
|
export const shopifyMarketsOrderUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderUpserted>;
|
|
30758
30868
|
export const shopifyMarketsOrdersMetrics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics>;
|
|
30869
|
+
export const shopifyMarketsQueuedRecord: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsQueuedRecord>;
|
|
30759
30870
|
export const shopifyMarketsShop: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShop>;
|
|
30760
30871
|
export const shopifyMarketsShopDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopDeleted>;
|
|
30761
30872
|
export const shopifyMarketsShopForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopForm>;
|
|
@@ -30818,6 +30929,8 @@ export const shopifyWebhookEvent: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
30818
30929
|
export const shopifyWebhookForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyWebhookForm>;
|
|
30819
30930
|
export const shopperFees: PropTypes.Requireable<io.flow.internal.v0.models.ShopperFees>;
|
|
30820
30931
|
export const shopperFreight: PropTypes.Requireable<io.flow.internal.v0.models.ShopperFreight>;
|
|
30932
|
+
export const shopperLine: PropTypes.Requireable<io.flow.internal.v0.models.ShopperLine>;
|
|
30933
|
+
export const shopperLines: PropTypes.Requireable<io.flow.internal.v0.models.ShopperLines>;
|
|
30821
30934
|
export const shopperSummary: PropTypes.Requireable<io.flow.internal.v0.models.ShopperSummary>;
|
|
30822
30935
|
export const simpleAccountReference: PropTypes.Requireable<io.flow.internal.v0.models.SimpleAccountReference>;
|
|
30823
30936
|
export const simplifiedItemLabel: PropTypes.Requireable<io.flow.internal.v0.models.SimplifiedItemLabel>;
|
|
@@ -30932,7 +31045,7 @@ export const transferTransactionDeletedV2: PropTypes.Requireable<io.flow.interna
|
|
|
30932
31045
|
export const transferTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TransferTransactionUpserted>;
|
|
30933
31046
|
export const transferTransactionUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.TransferTransactionUpsertedV2>;
|
|
30934
31047
|
export const tribe: PropTypes.Requireable<io.flow.internal.v0.models.Tribe>;
|
|
30935
|
-
export const
|
|
31048
|
+
export const trueupLabelSummary: PropTypes.Requireable<io.flow.internal.v0.models.TrueupLabelSummary>;
|
|
30936
31049
|
export const trueupTransaction: PropTypes.Requireable<io.flow.internal.v0.models.TrueupTransaction>;
|
|
30937
31050
|
export const unassignedMerchantGuid: PropTypes.Requireable<io.flow.internal.v0.models.UnassignedMerchantGuid>;
|
|
30938
31051
|
export const unassignedMerchantGuidDeleted: PropTypes.Requireable<io.flow.internal.v0.models.UnassignedMerchantGuidDeleted>;
|
|
@@ -30943,10 +31056,6 @@ export const unclassifiedProductsSummary: PropTypes.Requireable<io.flow.internal
|
|
|
30943
31056
|
export const unharmonizedItemsExport: PropTypes.Requireable<io.flow.internal.v0.models.UnharmonizedItemsExport>;
|
|
30944
31057
|
export const unphrasedProductsExport: PropTypes.Requireable<io.flow.internal.v0.models.UnphrasedProductsExport>;
|
|
30945
31058
|
export const ups: PropTypes.Requireable<io.flow.internal.v0.models.Ups>;
|
|
30946
|
-
export const upsLicense: PropTypes.Requireable<io.flow.internal.v0.models.UpsLicense>;
|
|
30947
|
-
export const upsLicenseForm: PropTypes.Requireable<io.flow.internal.v0.models.UpsLicenseForm>;
|
|
30948
|
-
export const upsRegistration: PropTypes.Requireable<io.flow.internal.v0.models.UpsRegistration>;
|
|
30949
|
-
export const upsRegistrationForm: PropTypes.Requireable<io.flow.internal.v0.models.UpsRegistrationForm>;
|
|
30950
31059
|
export const usdSpotRate: PropTypes.Requireable<io.flow.internal.v0.models.UsdSpotRate>;
|
|
30951
31060
|
export const usdSpotRateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.UsdSpotRateDeleted>;
|
|
30952
31061
|
export const usdSpotRateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.UsdSpotRateUpserted>;
|
|
@@ -30970,8 +31079,6 @@ export const virtualCardTransaction: PropTypes.Requireable<io.flow.internal.v0.m
|
|
|
30970
31079
|
export const wasteElectricalAndElectronicEquipmentComplianceData: PropTypes.Requireable<io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceData>;
|
|
30971
31080
|
export const wasteElectricalAndElectronicEquipmentComplianceForm: PropTypes.Requireable<io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceForm>;
|
|
30972
31081
|
export const webhook: PropTypes.Requireable<io.flow.internal.v0.models.Webhook>;
|
|
30973
|
-
export const weightsDead: PropTypes.Requireable<io.flow.internal.v0.models.WeightsDead>;
|
|
30974
|
-
export const weightsDimensional: PropTypes.Requireable<io.flow.internal.v0.models.WeightsDimensional>;
|
|
30975
31082
|
export const wholeOrderActionForm: PropTypes.Requireable<io.flow.internal.v0.models.WholeOrderActionForm>;
|
|
30976
31083
|
export const adjustmentAmount: PropTypes.Requireable<io.flow.internal.v0.unions.AdjustmentAmount>;
|
|
30977
31084
|
export const adjustmentDetails: PropTypes.Requireable<io.flow.internal.v0.unions.AdjustmentDetails>;
|
|
@@ -31083,6 +31190,7 @@ export const fraudProviderConfiguration: PropTypes.Requireable<io.flow.internal.
|
|
|
31083
31190
|
export const fraudProviderConfigurationForm: PropTypes.Requireable<io.flow.internal.v0.unions.FraudProviderConfigurationForm>;
|
|
31084
31191
|
export const fuelSurchargeServiceFeePutForm: PropTypes.Requireable<io.flow.internal.v0.unions.FuelSurchargeServiceFeePutForm>;
|
|
31085
31192
|
export const fulfillmentProof: PropTypes.Requireable<io.flow.internal.v0.unions.FulfillmentProof>;
|
|
31193
|
+
export const fulfillmentTrigger: PropTypes.Requireable<io.flow.internal.v0.unions.FulfillmentTrigger>;
|
|
31086
31194
|
export const generateLoad: PropTypes.Requireable<io.flow.internal.v0.unions.GenerateLoad>;
|
|
31087
31195
|
export const globalSearchResult: PropTypes.Requireable<io.flow.internal.v0.unions.GlobalSearchResult>;
|
|
31088
31196
|
export const heapEvent: PropTypes.Requireable<io.flow.internal.v0.unions.HeapEvent>;
|
|
@@ -31092,7 +31200,6 @@ export const internalAuthorizationDetails: PropTypes.Requireable<io.flow.interna
|
|
|
31092
31200
|
export const internalHarmonizationStatistic: PropTypes.Requireable<io.flow.internal.v0.unions.InternalHarmonizationStatistic>;
|
|
31093
31201
|
export const internalRefundForm: PropTypes.Requireable<io.flow.internal.v0.unions.InternalRefundForm>;
|
|
31094
31202
|
export const internalTransactionDetails: PropTypes.Requireable<io.flow.internal.v0.unions.InternalTransactionDetails>;
|
|
31095
|
-
export const labelSurchargeDetail: PropTypes.Requireable<io.flow.internal.v0.unions.LabelSurchargeDetail>;
|
|
31096
31203
|
export const localizableContent: PropTypes.Requireable<io.flow.internal.v0.unions.LocalizableContent>;
|
|
31097
31204
|
export const marketingGatewayChannelDetails: PropTypes.Requireable<io.flow.internal.v0.unions.MarketingGatewayChannelDetails>;
|
|
31098
31205
|
export const marketingGatewayDistributionChannel: PropTypes.Requireable<io.flow.internal.v0.unions.MarketingGatewayDistributionChannel>;
|