@flowio/types 11.24.67 → 11.24.69
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +1319 -249
- package/dist/api.d.ts +371 -33
- package/package.json +2 -2
- package/src/api-internal.ts +1796 -320
- package/src/api.ts +536 -33
package/dist/api.d.ts
CHANGED
|
@@ -128,11 +128,13 @@ declare namespace io.flow.google.pay.v0.unions {
|
|
|
128
128
|
}
|
|
129
129
|
declare namespace io.flow.stripe.v0.enums {
|
|
130
130
|
type AccountType = 'platform' | 'custom' | 'standard' | 'express';
|
|
131
|
+
type ApplePayType = 'apple_pay' | 'apple_pay_later';
|
|
131
132
|
type CancellationReason = 'abandoned' | 'automatic' | 'duplicate' | 'failed_invoice' | 'fraudulent' | 'requested_by_customer' | 'void_invoice';
|
|
132
133
|
type CaptureMethod = 'automatic' | 'manual';
|
|
133
134
|
type CardBrand = 'American Express' | 'MasterCard' | 'Discover' | 'JCB' | 'Diners Club' | 'Unknown';
|
|
134
135
|
type CardErrorCode = 'invalid_number' | 'invalid_expiry_month' | 'invalid_expiry_year' | 'invalid_cvc' | 'invalid_swipe_data' | 'incorrect_number' | 'expired_card' | 'incorrect_cvc' | 'incorrect_zip' | 'card_declined' | 'missing' | 'processing_error';
|
|
135
136
|
type CardFundingType = 'credit' | 'debit' | 'prepaid' | 'unknown';
|
|
137
|
+
type CardNetwork = 'amex' | 'cartes_bancaires' | 'diners' | 'discover' | 'eftpos_au' | 'interac' | 'jcb' | 'mastercard' | 'unionpay' | 'visa' | 'unknown';
|
|
136
138
|
type CheckOutcome = 'pass' | 'fail' | 'unavailable' | 'unchecked';
|
|
137
139
|
type CodeVerificationStatus = 'pending' | 'succeeded' | 'failed';
|
|
138
140
|
type ConfirmationMethod = 'automatic' | 'manual';
|
|
@@ -145,9 +147,11 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
145
147
|
type NextActionType = 'redirect_to_url' | 'use_stripe_sdk';
|
|
146
148
|
type OrderItemType = 'sku' | 'tax' | 'shipping' | 'discount';
|
|
147
149
|
type PaymentIntentStatus = 'canceled' | 'processing' | 'requires_action' | 'requires_capture' | 'requires_confirmation' | 'requires_payment_method' | 'succeeded';
|
|
150
|
+
type PaymentMethodCategoryKlarna = 'pay_later' | 'pay_now' | 'pay_with_financing' | 'pay_in_installments';
|
|
148
151
|
type PaymentMethodType = 'card' | 'card_present';
|
|
149
152
|
type PaymentOutcomeType = 'authorized' | 'manual_review' | 'issuer_declined' | 'blocked' | 'invalid';
|
|
150
153
|
type PaymentStatus = 'succeeded' | 'pending' | 'failed';
|
|
154
|
+
type PreferredLocaleKlarna = 'de-AT' | 'en-AT' | 'nl-BE' | 'fr-BE' | 'en-BE' | 'de-DE' | 'en-DE' | 'da-DK' | 'en-DK' | 'es-ES' | 'en-ES' | 'fi-FI' | 'sv-FI' | 'en-FI' | 'en-GB' | 'en-IE' | 'it-IT' | 'en-IT' | 'nl-NL' | 'en-NL' | 'nb-NO' | 'en-NO' | 'sv-SE' | 'en-SE' | 'en-US' | 'es-US' | 'fr-FR' | 'en-FR' | 'cs-CZ' | 'en-CZ' | 'el-GR' | 'en-GR' | 'en-AU' | 'en-NZ' | 'en-CA' | 'fr-CA' | 'pl-PL' | 'en-PL' | 'pt-PT' | 'en-PT' | 'de-CH' | 'fr-CH' | 'it-CH' | 'en-CH';
|
|
151
155
|
type RefundFailureReason = 'lost_or_stolen_card' | 'expired_or_canceled_card' | 'unknown';
|
|
152
156
|
type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
|
|
153
157
|
type RefundStatus = 'succeeded' | 'failed' | 'pending' | 'canceled';
|
|
@@ -159,6 +163,9 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
159
163
|
type SourceType = 'ach_credit_transfer' | 'ach_debit' | 'alipay' | 'bancontact' | 'bitcoin' | 'card' | 'eps' | 'giropay' | 'ideal' | 'klarna' | 'multibanco' | 'p24' | 'sepa_debit' | 'sofort' | 'three_d_secure';
|
|
160
164
|
type SourceUsageType = 'reusable' | 'single_use';
|
|
161
165
|
type ThreeDSecureSupport = 'required' | 'recommended' | 'optional' | 'not_supported';
|
|
166
|
+
type ThreeDsAuthenticationFlow = 'challenge' | 'frictionless';
|
|
167
|
+
type ThreeDsResult = 'authenticated' | 'attempt_acknowledged' | 'exempted' | 'not_supported' | 'failed' | 'processing_error';
|
|
168
|
+
type ThreeDsResultReason = 'card_not_enrolled' | 'network_not_supported' | 'abandoned' | 'canceled' | 'rejected' | 'bypassed' | 'protocol_error';
|
|
162
169
|
type TokenType = 'account' | 'bank_account' | 'card' | 'pii';
|
|
163
170
|
type UseStripeSdkType = 'three_d_secure_redirect' | 'stripe_3ds2_fingerprint';
|
|
164
171
|
}
|
|
@@ -204,6 +211,14 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
204
211
|
readonly postal_code?: string;
|
|
205
212
|
readonly state?: string;
|
|
206
213
|
}
|
|
214
|
+
interface ApplePay {
|
|
215
|
+
readonly type: 'apple_pay';
|
|
216
|
+
readonly apple_pay: io.flow.stripe.v0.models.ApplePayInformation;
|
|
217
|
+
readonly dynamic_last4?: string;
|
|
218
|
+
}
|
|
219
|
+
interface ApplePayInformation {
|
|
220
|
+
readonly type: io.flow.stripe.v0.enums.ApplePayType;
|
|
221
|
+
}
|
|
207
222
|
interface Card {
|
|
208
223
|
readonly id: string;
|
|
209
224
|
readonly object: string;
|
|
@@ -228,6 +243,11 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
228
243
|
readonly name?: string;
|
|
229
244
|
readonly tokenization_method?: string;
|
|
230
245
|
}
|
|
246
|
+
interface CardChecks {
|
|
247
|
+
readonly address_line1_check?: io.flow.stripe.v0.enums.CheckOutcome;
|
|
248
|
+
readonly address_postal_code_check?: io.flow.stripe.v0.enums.CheckOutcome;
|
|
249
|
+
readonly cvc_check?: io.flow.stripe.v0.enums.CheckOutcome;
|
|
250
|
+
}
|
|
231
251
|
interface CardRequest {
|
|
232
252
|
readonly object: string;
|
|
233
253
|
readonly exp_month: string;
|
|
@@ -270,7 +290,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
270
290
|
readonly payment_intent?: string;
|
|
271
291
|
readonly calculated_statement_descriptor?: string;
|
|
272
292
|
readonly statement_descriptor?: string;
|
|
273
|
-
readonly payment_method_details?:
|
|
293
|
+
readonly payment_method_details?: io.flow.stripe.v0.unions.PaymentMethodDetails;
|
|
274
294
|
}
|
|
275
295
|
interface ChargeDestination {
|
|
276
296
|
readonly account: string;
|
|
@@ -317,7 +337,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
317
337
|
readonly payment_intent?: string;
|
|
318
338
|
readonly calculated_statement_descriptor?: string;
|
|
319
339
|
readonly statement_descriptor?: string;
|
|
320
|
-
readonly payment_method_details?:
|
|
340
|
+
readonly payment_method_details?: io.flow.stripe.v0.unions.PaymentMethodDetails;
|
|
321
341
|
}
|
|
322
342
|
interface CodeVerification {
|
|
323
343
|
readonly attempts_remaining: number;
|
|
@@ -364,11 +384,25 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
364
384
|
interface LegalEntity {
|
|
365
385
|
readonly additional_owners?: io.flow.stripe.v0.models.Owner[];
|
|
366
386
|
}
|
|
387
|
+
interface Masterpass {
|
|
388
|
+
readonly type: 'masterpass';
|
|
389
|
+
readonly masterpass: io.flow.stripe.v0.models.MasterpassInformation;
|
|
390
|
+
readonly dynamic_last4?: string;
|
|
391
|
+
}
|
|
392
|
+
interface MasterpassInformation {
|
|
393
|
+
readonly billing_address?: io.flow.stripe.v0.models.Address;
|
|
394
|
+
readonly email?: string;
|
|
395
|
+
readonly name?: string;
|
|
396
|
+
readonly shipping_address?: io.flow.stripe.v0.models.Address;
|
|
397
|
+
}
|
|
367
398
|
interface Metadata {
|
|
368
399
|
readonly order_number?: string;
|
|
369
400
|
readonly authorization_id?: string;
|
|
370
401
|
readonly organization_id?: string;
|
|
371
402
|
}
|
|
403
|
+
interface NetworkTokenUsed {
|
|
404
|
+
readonly used?: boolean;
|
|
405
|
+
}
|
|
372
406
|
interface NextAction {
|
|
373
407
|
readonly type: io.flow.stripe.v0.enums.NextActionType;
|
|
374
408
|
readonly use_stripe_sdk?: any;
|
|
@@ -535,6 +569,39 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
535
569
|
readonly name?: string;
|
|
536
570
|
readonly phone?: string;
|
|
537
571
|
}
|
|
572
|
+
interface PaymentMethodDetailsCard {
|
|
573
|
+
readonly type: 'card';
|
|
574
|
+
readonly card: io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation;
|
|
575
|
+
}
|
|
576
|
+
interface PaymentMethodDetailsCardInformation {
|
|
577
|
+
readonly brand?: string;
|
|
578
|
+
readonly checks?: io.flow.stripe.v0.models.CardChecks;
|
|
579
|
+
readonly country?: string;
|
|
580
|
+
readonly exp_month?: number;
|
|
581
|
+
readonly exp_year?: number;
|
|
582
|
+
readonly fingerprint?: string;
|
|
583
|
+
readonly funding?: io.flow.stripe.v0.enums.CardFundingType;
|
|
584
|
+
readonly installments?: io.flow.stripe.v0.models.Plan;
|
|
585
|
+
readonly last4?: string;
|
|
586
|
+
readonly mandate?: string;
|
|
587
|
+
readonly network?: io.flow.stripe.v0.enums.CardNetwork;
|
|
588
|
+
readonly network_token?: io.flow.stripe.v0.models.NetworkTokenUsed;
|
|
589
|
+
readonly three_d_secure?: io.flow.stripe.v0.models.ThreeDSecureCharge;
|
|
590
|
+
readonly capture_before?: number;
|
|
591
|
+
readonly description?: string;
|
|
592
|
+
readonly iin?: string;
|
|
593
|
+
readonly issuer?: string;
|
|
594
|
+
readonly wallet?: io.flow.stripe.v0.unions.CardWallet;
|
|
595
|
+
readonly network_transaction_id?: string;
|
|
596
|
+
}
|
|
597
|
+
interface PaymentMethodDetailsKlarna {
|
|
598
|
+
readonly type: 'klarna';
|
|
599
|
+
readonly klarna: io.flow.stripe.v0.models.PaymentMethodDetailsKlarnaInformation;
|
|
600
|
+
}
|
|
601
|
+
interface PaymentMethodDetailsKlarnaInformation {
|
|
602
|
+
readonly payment_method_category?: io.flow.stripe.v0.enums.PaymentMethodCategoryKlarna;
|
|
603
|
+
readonly preferred_locale?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
604
|
+
}
|
|
538
605
|
interface PaymentMethodForm {
|
|
539
606
|
readonly type: io.flow.stripe.v0.enums.PaymentMethodType;
|
|
540
607
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
@@ -553,6 +620,11 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
553
620
|
readonly reason?: string;
|
|
554
621
|
readonly type?: io.flow.stripe.v0.enums.PaymentOutcomeType;
|
|
555
622
|
}
|
|
623
|
+
interface Plan {
|
|
624
|
+
readonly count?: number;
|
|
625
|
+
readonly interval?: string;
|
|
626
|
+
readonly type?: string;
|
|
627
|
+
}
|
|
556
628
|
interface Receiver {
|
|
557
629
|
readonly address?: string;
|
|
558
630
|
readonly amount_charged?: number;
|
|
@@ -753,6 +825,14 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
753
825
|
readonly card: string;
|
|
754
826
|
readonly customer?: string;
|
|
755
827
|
}
|
|
828
|
+
interface ThreeDSecureCharge {
|
|
829
|
+
readonly authenticated?: boolean;
|
|
830
|
+
readonly authentication_flow?: io.flow.stripe.v0.enums.ThreeDsAuthenticationFlow;
|
|
831
|
+
readonly result?: io.flow.stripe.v0.enums.ThreeDsResult;
|
|
832
|
+
readonly result_reason?: io.flow.stripe.v0.enums.ThreeDsResultReason;
|
|
833
|
+
readonly succeeded?: boolean;
|
|
834
|
+
readonly version?: string;
|
|
835
|
+
}
|
|
756
836
|
interface ThreeDSecureRedirect {
|
|
757
837
|
readonly type: io.flow.stripe.v0.enums.UseStripeSdkType;
|
|
758
838
|
readonly stripe_js: string;
|
|
@@ -776,6 +856,26 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
776
856
|
readonly amount?: number;
|
|
777
857
|
readonly destination?: string;
|
|
778
858
|
}
|
|
859
|
+
interface VisaCheckout {
|
|
860
|
+
readonly type: 'visa_checkout';
|
|
861
|
+
readonly visa_checkout: io.flow.stripe.v0.models.VisaCheckoutInformation;
|
|
862
|
+
readonly dynamic_last4?: string;
|
|
863
|
+
}
|
|
864
|
+
interface VisaCheckoutInformation {
|
|
865
|
+
readonly billing_address?: io.flow.stripe.v0.models.Address;
|
|
866
|
+
readonly email?: string;
|
|
867
|
+
readonly name?: string;
|
|
868
|
+
readonly shipping_address?: io.flow.stripe.v0.models.Address;
|
|
869
|
+
}
|
|
870
|
+
}
|
|
871
|
+
declare namespace io.flow.stripe.v0.unions {
|
|
872
|
+
type CardWallet = io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout;
|
|
873
|
+
type PaymentMethodDetails = io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna;
|
|
874
|
+
}
|
|
875
|
+
declare namespace io.flow.units.v0.enums {
|
|
876
|
+
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
877
|
+
type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
|
|
878
|
+
type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
|
|
779
879
|
}
|
|
780
880
|
declare namespace io.flow.shopify.external.v0.enums {
|
|
781
881
|
type CancelReason = 'customer' | 'fraud' | 'inventory' | 'declined' | 'other';
|
|
@@ -861,7 +961,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
861
961
|
readonly starts_at: string;
|
|
862
962
|
readonly ends_at?: string;
|
|
863
963
|
readonly prerequisite_subtotal_range?: io.flow.shopify.external.v0.models.PriceRuleGreaterThanRange;
|
|
864
|
-
readonly
|
|
964
|
+
readonly prerequisite_shipping_price_range?: io.flow.shopify.external.v0.models.PriceRuleLessThanRange;
|
|
865
965
|
readonly usage_limit?: number;
|
|
866
966
|
readonly entitled_product_ids: number[];
|
|
867
967
|
readonly entitled_variant_ids: number[];
|
|
@@ -871,7 +971,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
871
971
|
readonly once_per_customer: boolean;
|
|
872
972
|
readonly target_selection: io.flow.shopify.external.v0.enums.PriceRuleTargetSelection;
|
|
873
973
|
readonly customer_selection: io.flow.shopify.external.v0.enums.PriceRuleCustomerSelection;
|
|
874
|
-
readonly
|
|
974
|
+
readonly customer_segment_prerequisite_ids?: number[];
|
|
875
975
|
readonly prerequisite_customer_ids?: number[];
|
|
876
976
|
readonly prerequisite_quantity_range?: io.flow.shopify.external.v0.models.PriceRuleGreaterThanRange;
|
|
877
977
|
readonly prerequisite_product_ids?: number[];
|
|
@@ -1580,6 +1680,28 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1580
1680
|
readonly webhook: io.flow.shopify.external.v0.models.Webhook;
|
|
1581
1681
|
}
|
|
1582
1682
|
}
|
|
1683
|
+
declare namespace io.flow.ben.test.internal.v0.models {
|
|
1684
|
+
interface GenerateLoadMultipleOrgs {
|
|
1685
|
+
readonly discriminator: 'generate_load_multiple_orgs';
|
|
1686
|
+
readonly organization_ids: string[];
|
|
1687
|
+
readonly num_events: number;
|
|
1688
|
+
}
|
|
1689
|
+
interface GenerateLoadSingleOrg {
|
|
1690
|
+
readonly discriminator: 'generate_load_single_org';
|
|
1691
|
+
readonly organization_id: string;
|
|
1692
|
+
readonly num_events: number;
|
|
1693
|
+
}
|
|
1694
|
+
interface Test {
|
|
1695
|
+
readonly id: string;
|
|
1696
|
+
readonly name: string;
|
|
1697
|
+
}
|
|
1698
|
+
interface TestForm {
|
|
1699
|
+
readonly name: string;
|
|
1700
|
+
}
|
|
1701
|
+
}
|
|
1702
|
+
declare namespace io.flow.ben.test.internal.v0.unions {
|
|
1703
|
+
type GenerateLoad = io.flow.ben.test.internal.v0.models.GenerateLoadSingleOrg | io.flow.ben.test.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
1704
|
+
}
|
|
1583
1705
|
declare namespace io.flow.apple.pay.v0.enums {
|
|
1584
1706
|
type ApplePayContactField = 'email' | 'name' | 'phone' | 'postalAddress' | 'phoneticName';
|
|
1585
1707
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
@@ -1642,6 +1764,99 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
1642
1764
|
readonly identifier: string;
|
|
1643
1765
|
}
|
|
1644
1766
|
}
|
|
1767
|
+
declare namespace io.flow.error.v0.enums {
|
|
1768
|
+
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
1769
|
+
}
|
|
1770
|
+
declare namespace io.flow.error.v0.models {
|
|
1771
|
+
interface GenericError {
|
|
1772
|
+
readonly code: io.flow.error.v0.enums.GenericErrorCode;
|
|
1773
|
+
readonly messages: string[];
|
|
1774
|
+
}
|
|
1775
|
+
}
|
|
1776
|
+
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.enums {
|
|
1777
|
+
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak';
|
|
1778
|
+
type WeightSelection = 'dead' | 'dimensional';
|
|
1779
|
+
}
|
|
1780
|
+
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
1781
|
+
interface LabelBase {
|
|
1782
|
+
readonly amount: number;
|
|
1783
|
+
readonly weight: number;
|
|
1784
|
+
}
|
|
1785
|
+
interface LabelDestination {
|
|
1786
|
+
readonly country: string;
|
|
1787
|
+
}
|
|
1788
|
+
interface LabelInvoiceRequest {
|
|
1789
|
+
readonly id: string;
|
|
1790
|
+
readonly label: io.flow.billing.RESERVED_WORD_true.up.v0.models.TrueUpLabelSummary;
|
|
1791
|
+
readonly units: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
|
|
1792
|
+
readonly base: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
1793
|
+
readonly surcharges: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
|
|
1794
|
+
readonly total: number;
|
|
1795
|
+
readonly destination: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelDestination;
|
|
1796
|
+
readonly metadata: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelMetadata;
|
|
1797
|
+
}
|
|
1798
|
+
interface LabelMetadata {
|
|
1799
|
+
readonly ratecard: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataRatecard;
|
|
1800
|
+
readonly weights: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataWeights;
|
|
1801
|
+
}
|
|
1802
|
+
interface LabelSurcharge {
|
|
1803
|
+
readonly amount: number;
|
|
1804
|
+
readonly type: io.flow.billing.RESERVED_WORD_true.up.v0.enums.TrueUpSurchargeType;
|
|
1805
|
+
readonly detail: io.flow.billing.RESERVED_WORD_true.up.v0.unions.LabelSurchargeDetail;
|
|
1806
|
+
}
|
|
1807
|
+
interface LabelSurchargeDetailFlat {
|
|
1808
|
+
readonly discriminator: 'flat';
|
|
1809
|
+
readonly placeholder?: string;
|
|
1810
|
+
}
|
|
1811
|
+
interface LabelSurchargeDetailPerWeightUnit {
|
|
1812
|
+
readonly discriminator: 'per_weight_unit';
|
|
1813
|
+
readonly fee: number;
|
|
1814
|
+
}
|
|
1815
|
+
interface LabelSurchargeDetailPercentage {
|
|
1816
|
+
readonly discriminator: 'percentage';
|
|
1817
|
+
readonly percentage: number;
|
|
1818
|
+
}
|
|
1819
|
+
interface LabelUnits {
|
|
1820
|
+
readonly currency: string;
|
|
1821
|
+
readonly weight: io.flow.units.v0.enums.UnitOfWeight;
|
|
1822
|
+
readonly length: io.flow.units.v0.enums.UnitOfLength;
|
|
1823
|
+
}
|
|
1824
|
+
interface MetadataProposition {
|
|
1825
|
+
readonly shipping_method: io.flow.billing.RESERVED_WORD_true.up.v0.models.ShippingMethodReference;
|
|
1826
|
+
readonly name: string;
|
|
1827
|
+
}
|
|
1828
|
+
interface MetadataRatecard {
|
|
1829
|
+
readonly id: string;
|
|
1830
|
+
readonly proposition: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataProposition;
|
|
1831
|
+
}
|
|
1832
|
+
interface MetadataWeights {
|
|
1833
|
+
readonly selected: io.flow.billing.RESERVED_WORD_true.up.v0.enums.WeightSelection;
|
|
1834
|
+
readonly dead?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDead;
|
|
1835
|
+
readonly dimensional?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDimensional;
|
|
1836
|
+
}
|
|
1837
|
+
interface ShippingMethodReference {
|
|
1838
|
+
readonly id: string;
|
|
1839
|
+
}
|
|
1840
|
+
interface TrueUpLabelSummary {
|
|
1841
|
+
readonly id: string;
|
|
1842
|
+
readonly carrier_service_id: string;
|
|
1843
|
+
readonly carrier_tracking_number: string;
|
|
1844
|
+
readonly flow_tracking_number: string;
|
|
1845
|
+
readonly created_at: string;
|
|
1846
|
+
}
|
|
1847
|
+
interface WeightsDead {
|
|
1848
|
+
readonly weight: number;
|
|
1849
|
+
}
|
|
1850
|
+
interface WeightsDimensional {
|
|
1851
|
+
readonly weight: number;
|
|
1852
|
+
readonly length: number;
|
|
1853
|
+
readonly width: number;
|
|
1854
|
+
readonly height: number;
|
|
1855
|
+
}
|
|
1856
|
+
}
|
|
1857
|
+
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.unions {
|
|
1858
|
+
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;
|
|
1859
|
+
}
|
|
1645
1860
|
declare namespace io.flow.v0.enums {
|
|
1646
1861
|
type AbandonedOrderPromotionStatus = 'active' | 'inactive';
|
|
1647
1862
|
type AbandonedOrderSettingStatus = 'active' | 'inactive';
|
|
@@ -1697,7 +1912,7 @@ declare namespace io.flow.v0.enums {
|
|
|
1697
1912
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
1698
1913
|
type EntityIdentifierType = 'ioss' | 'voec';
|
|
1699
1914
|
type Environment = 'sandbox' | 'production';
|
|
1700
|
-
type EventType = 'test_upserted' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'catalog_item_upserted' | 'catalog_item_deleted' | 'catalog_item_upserted_v2' | 'catalog_item_deleted_v2' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | 'email_notification_upserted' | 'email_notification_deleted' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | 'fraud_status_changed' | 'center_upserted' | 'center_deleted' | 'shipping_configuration_upserted' | 'shipping_configuration_deleted' | 'tier_upserted_v2' | 'tier_deleted_v2' | 'shipping_lane_upserted' | 'shipping_lane_deleted' | 'shipping_configuration_item_availability_upserted' | 'shipping_configuration_item_availability_deleted' | 'shipping_configuration_item_shipping_pricing_upserted' | 'shipping_configuration_item_shipping_pricing_deleted' | 'hs6_code_upserted' | 'hs6_code_deleted' | 'hs10_code_upserted' | 'hs10_code_deleted' | 'item_origin_upserted' | 'item_origin_deleted' | 'harmonized_landed_cost_upserted' | 'fully_harmonized_item_upserted' | 'import_completed_v2' | 'import_failed_v2' | 'rule_upserted' | 'rule_deleted' | 'snapshot_upserted' | 'snapshot_deleted' | 'label_upserted' | 'label_deleted_v2' | 'label_upserted_v2' | 'notification_upserted_v2' | 'notification_deleted_v2' | 'manifested_label_upserted' | 'manifested_label_deleted' | 'local_item_upserted' | 'local_item_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'checkout_optin_responses_upserted' | 'checkout_optin_responses_deleted' | 'browse_optin_responses_upserted' | 'browse_optin_responses_deleted' | 'order_placed' | 'order_placed_v2' | 'ready_to_fulfill' | 'ready_to_fulfill_v2' | 'membership_upserted_v2' | 'membership_deleted_v2' | 'organization_upserted' | 'organization_deleted' | 'organization_upserted_v2' | 'organization_deleted_v2' | 'organization_default_configurations_upserted' | 'organization_default_configurations_deleted' | 'ecommerce_platform_upserted' | 'ecommerce_platform_deleted' | 'organization_onboarding_state_upserted' | 'organization_onboarding_state_deleted' | 'authorization_deleted_v2' | 'authorization_status_changed' | 'card_authorization_upserted_v2' | 'card_authorization_deleted_v2' | 'online_authorization_upserted_v2' | 'online_authorization_deleted_v2' | 'capture_upserted_v2' | 'capture_deleted' | 'card_upserted_v2' | 'card_deleted' | 'payment_upserted' | 'payment_deleted' | 'refund_upserted_v2' | 'refund_deleted_v2' | 'refund_capture_upserted_v2' | 'reversal_upserted' | 'reversal_deleted' | 'capture_identifier_upserted' | 'capture_identifier_deleted' | 'refund_identifier_upserted' | 'refund_identifier_deleted' | 'virtual_card_capture_upserted' | 'virtual_card_capture_deleted' | 'virtual_card_refund_upserted' | 'virtual_card_refund_deleted' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'return_upserted' | 'return_deleted' | 'return_upserted_v2' | 'return_deleted_v2' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
|
|
1915
|
+
type EventType = 'test_upserted' | 'generate_load' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'catalog_item_upserted' | 'catalog_item_deleted' | 'catalog_item_upserted_v2' | 'catalog_item_deleted_v2' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | 'email_notification_upserted' | 'email_notification_deleted' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | 'fraud_status_changed' | 'center_upserted' | 'center_deleted' | 'shipping_configuration_upserted' | 'shipping_configuration_deleted' | 'tier_upserted_v2' | 'tier_deleted_v2' | 'shipping_lane_upserted' | 'shipping_lane_deleted' | 'shipping_configuration_item_availability_upserted' | 'shipping_configuration_item_availability_deleted' | 'shipping_configuration_item_shipping_pricing_upserted' | 'shipping_configuration_item_shipping_pricing_deleted' | 'hs6_code_upserted' | 'hs6_code_deleted' | 'hs10_code_upserted' | 'hs10_code_deleted' | 'item_origin_upserted' | 'item_origin_deleted' | 'harmonized_landed_cost_upserted' | 'fully_harmonized_item_upserted' | 'import_completed_v2' | 'import_failed_v2' | 'rule_upserted' | 'rule_deleted' | 'snapshot_upserted' | 'snapshot_deleted' | 'label_upserted' | 'label_deleted_v2' | 'label_upserted_v2' | 'notification_upserted_v2' | 'notification_deleted_v2' | 'manifested_label_upserted' | 'manifested_label_deleted' | 'local_item_upserted' | 'local_item_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'checkout_optin_responses_upserted' | 'checkout_optin_responses_deleted' | 'browse_optin_responses_upserted' | 'browse_optin_responses_deleted' | 'order_placed' | 'order_placed_v2' | 'ready_to_fulfill' | 'ready_to_fulfill_v2' | 'membership_upserted_v2' | 'membership_deleted_v2' | 'organization_upserted' | 'organization_deleted' | 'organization_upserted_v2' | 'organization_deleted_v2' | 'organization_default_configurations_upserted' | 'organization_default_configurations_deleted' | 'ecommerce_platform_upserted' | 'ecommerce_platform_deleted' | 'organization_onboarding_state_upserted' | 'organization_onboarding_state_deleted' | 'authorization_deleted_v2' | 'authorization_status_changed' | 'card_authorization_upserted_v2' | 'card_authorization_deleted_v2' | 'online_authorization_upserted_v2' | 'online_authorization_deleted_v2' | 'capture_upserted_v2' | 'capture_deleted' | 'card_upserted_v2' | 'card_deleted' | 'payment_upserted' | 'payment_deleted' | 'refund_upserted_v2' | 'refund_deleted_v2' | 'refund_capture_upserted_v2' | 'reversal_upserted' | 'reversal_deleted' | 'capture_identifier_upserted' | 'capture_identifier_deleted' | 'refund_identifier_upserted' | 'refund_identifier_deleted' | 'virtual_card_capture_upserted' | 'virtual_card_capture_deleted' | 'virtual_card_refund_upserted' | 'virtual_card_refund_deleted' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'return_upserted' | 'return_deleted' | 'return_upserted_v2' | 'return_deleted_v2' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
|
|
1701
1916
|
type ExceptionType = 'open' | 'closed';
|
|
1702
1917
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
1703
1918
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -1768,6 +1983,7 @@ declare namespace io.flow.v0.enums {
|
|
|
1768
1983
|
type OrganizationPaymentMethodTag = 'deny';
|
|
1769
1984
|
type OrganizationStatus = 'active' | 'inactive' | 'deactivated' | 'provisioned';
|
|
1770
1985
|
type OrganizationType = 'standalone' | 'channel';
|
|
1986
|
+
type PackageDimensionsSource = 'provided' | 'dimensions_estimated';
|
|
1771
1987
|
type PaymentActionType = 'redirect' | 'redirect_get' | 'redirect_post' | 'select_payment_option' | 'use_sdk_klarna_v1' | 'use_sdk_applepay_js' | 'use_sdk_googlepay' | 'use_sdk_paypal' | 'use_sdk_stripe_v3' | 'use_sdk_adyen_v3' | 'use_sdk_adyen_v4' | 'execute_script' | 'display_inline_window';
|
|
1772
1988
|
type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
|
|
1773
1989
|
type PaymentFailureCode = 'action_expired' | 'action_cancelled' | 'action_failed' | 'authorization_declined' | 'not_supported' | 'fraudulent' | 'error' | 'payment_checks_declined';
|
|
@@ -1776,7 +1992,7 @@ declare namespace io.flow.v0.enums {
|
|
|
1776
1992
|
type PaymentMethodRuleContentKey = 'description';
|
|
1777
1993
|
type PaymentMethodType = 'card' | 'online' | 'offline';
|
|
1778
1994
|
type PaymentRequestReviewCheckStatus = 'passed' | 'failed';
|
|
1779
|
-
type PaymentRequestReviewCheckType = 'restricted_party_screening' | 'fraud_suspicious_behavior' | 'fraud_suspicious_past_activity' | 'fraud_risky_velocity' | 'fraud_previous_chargebacks' | 'order_restricted_goods' | 'order_unsupported_destination' | 'order_missing_information' | 'order_domestic';
|
|
1995
|
+
type PaymentRequestReviewCheckType = 'restricted_party_screening' | 'fraud_suspicious_behavior' | 'fraud_suspicious_past_activity' | 'fraud_risky_velocity' | 'fraud_previous_chargebacks' | 'order_restricted_goods' | 'order_unsupported_destination' | 'order_missing_information' | 'order_domestic' | 'order_mismatched_currencies';
|
|
1780
1996
|
type PaymentRequestReviewStatus = 'pending' | 'approved' | 'rejected';
|
|
1781
1997
|
type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
|
|
1782
1998
|
type PaymentStatus = 'requires_payment_method' | 'requires_action' | 'processing' | 'cancelled' | 'expired' | 'authorized' | 'reversed' | 'captured' | 'refunded' | 'in_dispute' | 'charged_back';
|
|
@@ -1786,6 +2002,7 @@ declare namespace io.flow.v0.enums {
|
|
|
1786
2002
|
type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
1787
2003
|
type PhysicalDeliverySpecialSerivce = 'cold_storage' | 'hazardous' | 'perishable';
|
|
1788
2004
|
type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
|
|
2005
|
+
type PreferredServiceSelectionStrategy = 'calculated_rate' | 'flat_rate' | 'custom_rate';
|
|
1789
2006
|
type PriceAccuracy = 'calculated' | 'estimated_from_partial_destination';
|
|
1790
2007
|
type PriceBookStatus = 'draft' | 'published' | 'archived';
|
|
1791
2008
|
type PriceDetailComponentKey = 'base_price' | 'discount' | 'currency_margin' | 'percent_item_margin' | 'fixed_item_margin' | 'duties_item_price' | 'duties_added_margin' | 'duties_rounding' | 'duties_deminimis' | 'vat_item_price' | 'vat_added_margin' | 'vat_rounding' | 'vat_duties_item_price' | 'vat_duties_added_margin' | 'vat_duties_rounding' | 'vat_deminimis' | 'item_price_percent_sales_margin' | 'margins_percent_sales_margin' | 'rounding_percent_sales_margin' | 'vat_percent_sales_margin' | 'vat_duty_percent_sales_margin' | 'duty_percent_sales_margin';
|
|
@@ -1817,6 +2034,7 @@ declare namespace io.flow.v0.enums {
|
|
|
1817
2034
|
type ShopifySyncCheck = 'localized_variants' | 'flow_variant_metafields';
|
|
1818
2035
|
type SortDirection = 'ascending' | 'descending';
|
|
1819
2036
|
type StatementAttachmentType = 'csv';
|
|
2037
|
+
type StoredMethodUsageStep = 'initial' | 'subsequent';
|
|
1820
2038
|
type Strategy = 'range' | 'from' | 'to';
|
|
1821
2039
|
type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
|
|
1822
2040
|
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
@@ -1839,15 +2057,19 @@ declare namespace io.flow.v0.enums {
|
|
|
1839
2057
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
|
|
1840
2058
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
1841
2059
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
2060
|
+
type TransactionPayoutPendingReason = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'external_fulfillment_missing_tracking_info' | 'waiting_for_positive_account_balance';
|
|
1842
2061
|
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
2062
|
+
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
1843
2063
|
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
1844
2064
|
type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
|
|
2065
|
+
type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
|
|
2066
|
+
type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
|
|
1845
2067
|
type UpdatePolicy = 'auto' | 'queue' | 'discard';
|
|
1846
2068
|
type UpdateType = 'change' | 'set';
|
|
1847
2069
|
type UserStatus = 'pending' | 'active' | 'inactive';
|
|
1848
2070
|
type ValueAddedService = 'Hazardous Material';
|
|
1849
2071
|
type Visibility = 'public' | 'private';
|
|
1850
|
-
type WebhookStatus = 'pending' | 'success' | 'failure';
|
|
2072
|
+
type WebhookStatus = 'pending' | 'success' | 'failure' | 'ignored';
|
|
1851
2073
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
1852
2074
|
type ZeroAmountIndicator = 'zero' | 'free';
|
|
1853
2075
|
type ZeroLevyReasonCode = 'zero_basis' | 'zero_rate_on_goods' | 'value_rounds_to_zero' | 'order_below_de_minimis_threshold' | 'amount_below_de_minimis_threshold' | 'delivered_unpaid' | 'duty_free_domestic' | 'duty_free_intra_community' | 'duty_free_reimport' | 'duty_free_by_trade_agreement';
|
|
@@ -2749,6 +2971,8 @@ declare namespace io.flow.v0.models {
|
|
|
2749
2971
|
readonly expires_at?: string;
|
|
2750
2972
|
readonly base?: io.flow.v0.models.Money;
|
|
2751
2973
|
readonly processor?: io.flow.v0.unions.ExpandablePaymentProcessor;
|
|
2974
|
+
readonly stored_method_usage_step?: io.flow.v0.enums.StoredMethodUsageStep;
|
|
2975
|
+
readonly authorized_at?: string;
|
|
2752
2976
|
}
|
|
2753
2977
|
interface CardAuthorizationDeletedV2 {
|
|
2754
2978
|
readonly discriminator: 'card_authorization_deleted_v2';
|
|
@@ -3231,6 +3455,7 @@ declare namespace io.flow.v0.models {
|
|
|
3231
3455
|
interface ChannelTransaction {
|
|
3232
3456
|
readonly statement?: io.flow.v0.models.BillingChannelStatementReference;
|
|
3233
3457
|
readonly id: string;
|
|
3458
|
+
readonly metadata?: io.flow.v0.unions.TransactionMetadata;
|
|
3234
3459
|
readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
3235
3460
|
readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
3236
3461
|
readonly currency: string;
|
|
@@ -3259,6 +3484,11 @@ declare namespace io.flow.v0.models {
|
|
|
3259
3484
|
readonly channel_id: string;
|
|
3260
3485
|
readonly id: string;
|
|
3261
3486
|
}
|
|
3487
|
+
interface ChannelTransactionPayout {
|
|
3488
|
+
readonly transaction: io.flow.v0.models.TransactionReference;
|
|
3489
|
+
readonly waiting_for?: io.flow.v0.enums.TransactionPayoutPendingReason;
|
|
3490
|
+
readonly payout?: io.flow.v0.models.PayoutReference;
|
|
3491
|
+
}
|
|
3262
3492
|
interface ChannelTransactionUpserted {
|
|
3263
3493
|
readonly discriminator: 'channel_transaction_upserted';
|
|
3264
3494
|
readonly event_id: string;
|
|
@@ -3539,6 +3769,12 @@ declare namespace io.flow.v0.models {
|
|
|
3539
3769
|
readonly currency: string;
|
|
3540
3770
|
readonly language: string;
|
|
3541
3771
|
}
|
|
3772
|
+
interface CountryOfOrigin {
|
|
3773
|
+
readonly country: io.flow.v0.models.Country;
|
|
3774
|
+
}
|
|
3775
|
+
interface CountryOfOriginForm {
|
|
3776
|
+
readonly country: string;
|
|
3777
|
+
}
|
|
3542
3778
|
interface CountryPicker {
|
|
3543
3779
|
readonly id: string;
|
|
3544
3780
|
readonly source: io.flow.v0.enums.CountryPickerSource;
|
|
@@ -3833,6 +4069,9 @@ declare namespace io.flow.v0.models {
|
|
|
3833
4069
|
readonly discriminator: 'ddp_ratecard_fee';
|
|
3834
4070
|
readonly amount: number;
|
|
3835
4071
|
}
|
|
4072
|
+
interface DeactivationPutForm {
|
|
4073
|
+
readonly reason: string;
|
|
4074
|
+
}
|
|
3836
4075
|
interface DefaultBankAccountForm {
|
|
3837
4076
|
readonly bank_account_id: string;
|
|
3838
4077
|
}
|
|
@@ -3963,6 +4202,7 @@ declare namespace io.flow.v0.models {
|
|
|
3963
4202
|
readonly order_number: string;
|
|
3964
4203
|
readonly service?: string;
|
|
3965
4204
|
readonly shipment_recipient?: io.flow.v0.enums.ShipmentRecipient;
|
|
4205
|
+
readonly package_dimensions_source?: io.flow.v0.enums.PackageDimensionsSource;
|
|
3966
4206
|
}
|
|
3967
4207
|
interface DetailedShippingNotificationForm {
|
|
3968
4208
|
readonly discriminator: 'detailed_shipping_notification_form';
|
|
@@ -4823,6 +5063,14 @@ declare namespace io.flow.v0.models {
|
|
|
4823
5063
|
readonly hs6_code: string;
|
|
4824
5064
|
readonly landed_costs: io.flow.v0.models.LaneLandedCost[];
|
|
4825
5065
|
}
|
|
5066
|
+
interface GenerateLoad {
|
|
5067
|
+
readonly discriminator: 'generate_load';
|
|
5068
|
+
readonly event_id: string;
|
|
5069
|
+
readonly timestamp: string;
|
|
5070
|
+
readonly organization: string;
|
|
5071
|
+
readonly test_name: string;
|
|
5072
|
+
readonly num_tests: number;
|
|
5073
|
+
}
|
|
4826
5074
|
interface GenericError {
|
|
4827
5075
|
readonly code: io.flow.v0.enums.GenericErrorCode;
|
|
4828
5076
|
readonly messages: string[];
|
|
@@ -5516,6 +5764,8 @@ declare namespace io.flow.v0.models {
|
|
|
5516
5764
|
interface KnowYourBusinessUsa {
|
|
5517
5765
|
readonly discriminator: 'know_your_business_usa';
|
|
5518
5766
|
readonly id: string;
|
|
5767
|
+
readonly organization_id: string;
|
|
5768
|
+
readonly shop?: io.flow.v0.models.Shop;
|
|
5519
5769
|
readonly primary_entity: io.flow.v0.unions.Entity;
|
|
5520
5770
|
readonly parent_company?: io.flow.v0.models.Company;
|
|
5521
5771
|
readonly ultimate_parent_company?: io.flow.v0.models.Company;
|
|
@@ -5576,6 +5826,7 @@ declare namespace io.flow.v0.models {
|
|
|
5576
5826
|
readonly label?: io.flow.v0.models.LabelReference;
|
|
5577
5827
|
readonly in_transit: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
5578
5828
|
readonly delivered?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
5829
|
+
readonly rejected?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
5579
5830
|
}
|
|
5580
5831
|
interface LabelTrackingSummaryUpdate {
|
|
5581
5832
|
readonly timestamp: string;
|
|
@@ -5931,6 +6182,10 @@ declare namespace io.flow.v0.models {
|
|
|
5931
6182
|
readonly timestamp: string;
|
|
5932
6183
|
readonly merchant_application: io.flow.v0.unions.MerchantApplication;
|
|
5933
6184
|
}
|
|
6185
|
+
interface MerchantDeactivated {
|
|
6186
|
+
readonly discriminator: 'merchant_deactivated';
|
|
6187
|
+
readonly reason: string;
|
|
6188
|
+
}
|
|
5934
6189
|
interface MerchantGiftCardBalance {
|
|
5935
6190
|
readonly amount: number;
|
|
5936
6191
|
readonly currency: string;
|
|
@@ -6122,6 +6377,7 @@ declare namespace io.flow.v0.models {
|
|
|
6122
6377
|
readonly base?: io.flow.v0.models.Money;
|
|
6123
6378
|
readonly processor?: io.flow.v0.unions.ExpandablePaymentProcessor;
|
|
6124
6379
|
readonly confirmation_details?: io.flow.v0.unions.ConfirmationDetails;
|
|
6380
|
+
readonly authorized_at?: string;
|
|
6125
6381
|
}
|
|
6126
6382
|
interface OnlineAuthorizationDeletedV2 {
|
|
6127
6383
|
readonly discriminator: 'online_authorization_deleted_v2';
|
|
@@ -6144,7 +6400,6 @@ declare namespace io.flow.v0.models {
|
|
|
6144
6400
|
readonly key?: string;
|
|
6145
6401
|
}
|
|
6146
6402
|
interface OperationsContact {
|
|
6147
|
-
readonly full_name?: string;
|
|
6148
6403
|
readonly company?: string;
|
|
6149
6404
|
readonly email?: string;
|
|
6150
6405
|
readonly phone?: string;
|
|
@@ -6903,6 +7158,7 @@ declare namespace io.flow.v0.models {
|
|
|
6903
7158
|
readonly time_blocked?: number;
|
|
6904
7159
|
readonly blocked_since?: string;
|
|
6905
7160
|
readonly completed_at?: string;
|
|
7161
|
+
readonly onboarding_started_at?: string;
|
|
6906
7162
|
}
|
|
6907
7163
|
interface OrganizationOnboardingStateDeleted {
|
|
6908
7164
|
readonly discriminator: 'organization_onboarding_state_deleted';
|
|
@@ -7037,6 +7293,11 @@ declare namespace io.flow.v0.models {
|
|
|
7037
7293
|
readonly organization: string;
|
|
7038
7294
|
readonly id: string;
|
|
7039
7295
|
}
|
|
7296
|
+
interface OrganizationTransactionPayout {
|
|
7297
|
+
readonly transaction: io.flow.v0.models.TransactionReference;
|
|
7298
|
+
readonly waiting_for?: io.flow.v0.enums.TransactionPayoutPendingReason;
|
|
7299
|
+
readonly payout?: io.flow.v0.models.PayoutReference;
|
|
7300
|
+
}
|
|
7040
7301
|
interface OrganizationTransactionUpserted {
|
|
7041
7302
|
readonly discriminator: 'organization_transaction_upserted';
|
|
7042
7303
|
readonly event_id: string;
|
|
@@ -7079,12 +7340,27 @@ declare namespace io.flow.v0.models {
|
|
|
7079
7340
|
readonly discriminator: 'outbound_carton_fee';
|
|
7080
7341
|
readonly amount: io.flow.v0.models.Money;
|
|
7081
7342
|
}
|
|
7082
|
-
interface
|
|
7083
|
-
readonly discriminator: '
|
|
7084
|
-
readonly
|
|
7085
|
-
readonly
|
|
7086
|
-
readonly
|
|
7087
|
-
readonly
|
|
7343
|
+
interface OversizePieceSurchargeRatecardFee {
|
|
7344
|
+
readonly discriminator: 'oversize_piece_surcharge_ratecard_fee';
|
|
7345
|
+
readonly dimensional_threshold?: number;
|
|
7346
|
+
readonly dimensional_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
7347
|
+
readonly weight_threshold?: number;
|
|
7348
|
+
readonly weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
7349
|
+
readonly amount: io.flow.v0.models.Money;
|
|
7350
|
+
}
|
|
7351
|
+
interface OversizePieceSurchargeServiceFee {
|
|
7352
|
+
readonly discriminator: 'oversize_piece_surcharge_service_fee';
|
|
7353
|
+
readonly dimensional_threshold?: number;
|
|
7354
|
+
readonly dimensional_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
7355
|
+
readonly weight_threshold?: number;
|
|
7356
|
+
readonly weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
7357
|
+
readonly amount: io.flow.v0.models.Money;
|
|
7358
|
+
}
|
|
7359
|
+
interface PackageDimensions {
|
|
7360
|
+
readonly dimensions: io.flow.v0.models.Dimension[];
|
|
7361
|
+
}
|
|
7362
|
+
interface PackageDimensionsForm {
|
|
7363
|
+
readonly dimensions: io.flow.v0.models.Dimension[];
|
|
7088
7364
|
}
|
|
7089
7365
|
interface Packaging {
|
|
7090
7366
|
readonly dimensions: io.flow.v0.models.Dimensions;
|
|
@@ -7654,6 +7930,9 @@ declare namespace io.flow.v0.models {
|
|
|
7654
7930
|
readonly type: io.flow.v0.enums.PayoutAttachmentType;
|
|
7655
7931
|
readonly url: string;
|
|
7656
7932
|
}
|
|
7933
|
+
interface PayoutReference {
|
|
7934
|
+
readonly id: string;
|
|
7935
|
+
}
|
|
7657
7936
|
interface PayoutStatusFailed {
|
|
7658
7937
|
readonly code: 'failed';
|
|
7659
7938
|
readonly timestamp: string;
|
|
@@ -7669,6 +7948,7 @@ declare namespace io.flow.v0.models {
|
|
|
7669
7948
|
}
|
|
7670
7949
|
interface PayoutTransaction {
|
|
7671
7950
|
readonly id: string;
|
|
7951
|
+
readonly metadata?: io.flow.v0.unions.TransactionMetadata;
|
|
7672
7952
|
readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
7673
7953
|
readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
7674
7954
|
readonly currency: string;
|
|
@@ -7765,6 +8045,11 @@ declare namespace io.flow.v0.models {
|
|
|
7765
8045
|
readonly total?: io.flow.v0.models.LocalizedTotal;
|
|
7766
8046
|
readonly goods_supply?: io.flow.v0.enums.GoodsSupply;
|
|
7767
8047
|
readonly merchant_of_record_flow_entity?: io.flow.v0.enums.FlowEntity;
|
|
8048
|
+
readonly preferred_service?: io.flow.v0.models.PhysicalDeliveryPreferredService;
|
|
8049
|
+
}
|
|
8050
|
+
interface PhysicalDeliveryPreferredService {
|
|
8051
|
+
readonly id: string;
|
|
8052
|
+
readonly selection_stratey: io.flow.v0.enums.PreferredServiceSelectionStrategy;
|
|
7768
8053
|
}
|
|
7769
8054
|
interface PostPaymentRedirectUrls {
|
|
7770
8055
|
readonly success: string;
|
|
@@ -8151,12 +8436,16 @@ declare namespace io.flow.v0.models {
|
|
|
8151
8436
|
interface Ratecard {
|
|
8152
8437
|
readonly id: string;
|
|
8153
8438
|
readonly number: string;
|
|
8439
|
+
readonly rate_level_key?: string;
|
|
8154
8440
|
readonly direction: io.flow.v0.enums.Direction;
|
|
8155
8441
|
readonly effective_at: string;
|
|
8156
8442
|
readonly origination_zones: io.flow.v0.models.Zone[];
|
|
8157
8443
|
readonly service: io.flow.v0.models.RatecardServiceSummary;
|
|
8158
8444
|
readonly published_at?: string;
|
|
8159
8445
|
readonly ratecard_owner: io.flow.v0.enums.RatecardOwner;
|
|
8446
|
+
readonly glbe_shipping_method_id?: string;
|
|
8447
|
+
readonly glbe_proposition_name?: string;
|
|
8448
|
+
readonly channel_revenue_share_percentage?: number;
|
|
8160
8449
|
}
|
|
8161
8450
|
interface RatecardCarrierSummary {
|
|
8162
8451
|
readonly id: string;
|
|
@@ -8227,6 +8516,10 @@ declare namespace io.flow.v0.models {
|
|
|
8227
8516
|
readonly dimensional_weight?: io.flow.v0.models.Measurement;
|
|
8228
8517
|
readonly gravitational_weight?: io.flow.v0.models.Measurement;
|
|
8229
8518
|
readonly ratecard_id?: string;
|
|
8519
|
+
readonly glbe_shipping_method_id?: string;
|
|
8520
|
+
readonly glbe_proposition_name?: string;
|
|
8521
|
+
readonly channel_revenue_share_percentage?: number;
|
|
8522
|
+
readonly rate_level_key?: string;
|
|
8230
8523
|
readonly line_items?: io.flow.v0.models.LineItemForm[];
|
|
8231
8524
|
}
|
|
8232
8525
|
interface RatecardForm {
|
|
@@ -8235,7 +8528,12 @@ declare namespace io.flow.v0.models {
|
|
|
8235
8528
|
readonly origination_zones: io.flow.v0.models.Zone[];
|
|
8236
8529
|
readonly service: string;
|
|
8237
8530
|
readonly number?: string;
|
|
8531
|
+
readonly rate_level_key?: string;
|
|
8238
8532
|
readonly ratecard_owner?: io.flow.v0.enums.RatecardOwner;
|
|
8533
|
+
readonly glbe_shipping_method_id?: string;
|
|
8534
|
+
readonly glbe_proposition_name?: string;
|
|
8535
|
+
readonly channel_revenue_share_percentage?: number;
|
|
8536
|
+
readonly data?: Record<string, string>;
|
|
8239
8537
|
}
|
|
8240
8538
|
interface RatecardLane {
|
|
8241
8539
|
readonly id: string;
|
|
@@ -9033,6 +9331,9 @@ declare namespace io.flow.v0.models {
|
|
|
9033
9331
|
readonly carrier_tracking_number_url: string;
|
|
9034
9332
|
readonly cost_estimate_source?: io.flow.v0.enums.CostEstimateSource;
|
|
9035
9333
|
readonly cost?: io.flow.v0.models.Price;
|
|
9334
|
+
readonly delivered_duty?: io.flow.v0.enums.DeliveredDuty;
|
|
9335
|
+
readonly taxes_owed?: io.flow.v0.models.Money;
|
|
9336
|
+
readonly duties_owed?: io.flow.v0.models.Money;
|
|
9036
9337
|
readonly destination: io.flow.v0.models.ShippingAddress;
|
|
9037
9338
|
readonly flow_tracking_number: string;
|
|
9038
9339
|
readonly flow_tracking_number_url: string;
|
|
@@ -9044,6 +9345,7 @@ declare namespace io.flow.v0.models {
|
|
|
9044
9345
|
readonly return?: io.flow.v0.models.ShippingLabelDocument;
|
|
9045
9346
|
readonly order?: io.flow.v0.models.LabelOrderSummary;
|
|
9046
9347
|
readonly package?: io.flow.v0.models.ShippingLabelPackage;
|
|
9348
|
+
readonly package_dimension_source?: io.flow.v0.enums.PackageDimensionsSource;
|
|
9047
9349
|
readonly order_identifier?: string;
|
|
9048
9350
|
readonly fulfillment_key?: string;
|
|
9049
9351
|
readonly shipment_recipient: io.flow.v0.enums.ShipmentRecipient;
|
|
@@ -9061,9 +9363,15 @@ declare namespace io.flow.v0.models {
|
|
|
9061
9363
|
readonly html?: string;
|
|
9062
9364
|
readonly required: boolean;
|
|
9063
9365
|
}
|
|
9366
|
+
interface ShippingLabelHopCostItemizedEstimate {
|
|
9367
|
+
readonly units: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
|
|
9368
|
+
readonly base: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
9369
|
+
readonly surcharges: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
|
|
9370
|
+
}
|
|
9064
9371
|
interface ShippingLabelHopSummary {
|
|
9065
9372
|
readonly lane: io.flow.v0.models.ShippingLabelLaneSummary;
|
|
9066
9373
|
readonly cost: io.flow.v0.models.Money;
|
|
9374
|
+
readonly itemized_estimate?: io.flow.v0.models.ShippingLabelHopCostItemizedEstimate;
|
|
9067
9375
|
}
|
|
9068
9376
|
interface ShippingLabelLaneSummary {
|
|
9069
9377
|
readonly id?: string;
|
|
@@ -9071,12 +9379,18 @@ declare namespace io.flow.v0.models {
|
|
|
9071
9379
|
}
|
|
9072
9380
|
interface ShippingLabelPackage {
|
|
9073
9381
|
readonly dimensions: io.flow.v0.models.Dimension;
|
|
9382
|
+
readonly volumetric_weight?: number;
|
|
9074
9383
|
readonly items: io.flow.v0.models.LineItemForm[];
|
|
9075
9384
|
readonly reference_number?: string;
|
|
9076
9385
|
}
|
|
9077
9386
|
interface ShippingLabelRatecardSummary {
|
|
9078
9387
|
readonly id?: string;
|
|
9079
9388
|
readonly ratecard_owner: io.flow.v0.enums.RatecardOwner;
|
|
9389
|
+
readonly rate_level_key?: string;
|
|
9390
|
+
readonly glbe_shipping_method_id?: string;
|
|
9391
|
+
readonly glbe_proposition_name?: string;
|
|
9392
|
+
readonly channel_revenue_share_percentage?: number;
|
|
9393
|
+
readonly shopify_grc_gid?: string;
|
|
9080
9394
|
}
|
|
9081
9395
|
interface ShippingLabelSummary {
|
|
9082
9396
|
readonly id: string;
|
|
@@ -9335,7 +9649,6 @@ declare namespace io.flow.v0.models {
|
|
|
9335
9649
|
readonly status: io.flow.v0.enums.OnboardingApplicationStatus;
|
|
9336
9650
|
readonly company?: io.flow.v0.models.MerchantInfo;
|
|
9337
9651
|
readonly indirect_tax?: io.flow.v0.models.IndirectTax;
|
|
9338
|
-
readonly parent_company?: io.flow.v0.models.MerchantInfo;
|
|
9339
9652
|
readonly beneficiary?: string;
|
|
9340
9653
|
readonly ultimate_beneficiary_owner?: io.flow.v0.models.UltimateBeneficiaryOwner;
|
|
9341
9654
|
readonly business_url?: string;
|
|
@@ -9345,30 +9658,29 @@ declare namespace io.flow.v0.models {
|
|
|
9345
9658
|
readonly chargeback_percentage?: number;
|
|
9346
9659
|
readonly bank_account_number?: string;
|
|
9347
9660
|
readonly aba_routing_transit_number?: string;
|
|
9348
|
-
readonly trade_sectors?: io.flow.v0.enums.OnboardingTradeSector[];
|
|
9349
9661
|
readonly other_trade_sector?: string;
|
|
9350
9662
|
readonly third_party_logistics_partners?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
|
|
9663
|
+
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
9351
9664
|
readonly average_order_weight?: number;
|
|
9352
9665
|
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
9353
9666
|
readonly monthly_average?: io.flow.v0.models.MonthlyAverage;
|
|
9354
|
-
readonly dangerous_goods?: boolean;
|
|
9355
9667
|
readonly default_country_of_origin?: string;
|
|
9356
9668
|
readonly ratecard?: io.flow.v0.models.RatecardReference;
|
|
9357
9669
|
readonly rate_card: string;
|
|
9358
9670
|
readonly created_at: string;
|
|
9359
9671
|
readonly activated_at?: string;
|
|
9360
9672
|
readonly status_updated_at?: string;
|
|
9361
|
-
readonly logistics_format?: io.flow.v0.models.LogisticsFormat;
|
|
9362
9673
|
readonly shop?: io.flow.v0.models.Shop;
|
|
9363
9674
|
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
9364
9675
|
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
9365
9676
|
readonly average_order_value?: io.flow.v0.models.Money;
|
|
9677
|
+
readonly glbe_merchant_guid?: string;
|
|
9678
|
+
readonly mcc_codes?: number[];
|
|
9366
9679
|
}
|
|
9367
9680
|
interface ShopifyMerchantApplicationForm {
|
|
9368
9681
|
readonly discriminator: 'shopify_merchant_application_form';
|
|
9369
9682
|
readonly company?: io.flow.v0.models.MerchantInfo;
|
|
9370
9683
|
readonly indirect_tax?: io.flow.v0.models.IndirectTax;
|
|
9371
|
-
readonly parent_company?: io.flow.v0.models.MerchantInfo;
|
|
9372
9684
|
readonly beneficiary?: string;
|
|
9373
9685
|
readonly ultimate_beneficiary_owner?: io.flow.v0.models.UltimateBeneficiaryOwner;
|
|
9374
9686
|
readonly business_url?: string;
|
|
@@ -9378,23 +9690,22 @@ declare namespace io.flow.v0.models {
|
|
|
9378
9690
|
readonly chargeback_percentage?: number;
|
|
9379
9691
|
readonly bank_account_number?: string;
|
|
9380
9692
|
readonly aba_routing_transit_number?: string;
|
|
9381
|
-
readonly trade_sectors?: io.flow.v0.enums.OnboardingTradeSector[];
|
|
9382
9693
|
readonly other_trade_sector?: string;
|
|
9383
9694
|
readonly third_party_logistics_partners?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
|
|
9695
|
+
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
9384
9696
|
readonly average_order_weight?: number;
|
|
9385
9697
|
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
9386
9698
|
readonly monthly_average_volume_amount?: number;
|
|
9387
9699
|
readonly monthly_average_volume_currency?: string;
|
|
9388
9700
|
readonly monthly_average_number_transactions?: number;
|
|
9389
|
-
readonly dangerous_goods?: boolean;
|
|
9390
9701
|
readonly default_country_of_origin?: string;
|
|
9391
9702
|
readonly ratecard_id?: string;
|
|
9392
9703
|
readonly rate_card: string;
|
|
9393
|
-
readonly logistics_format?: io.flow.v0.models.LogisticsFormat;
|
|
9394
9704
|
readonly shop?: io.flow.v0.models.Shop;
|
|
9395
9705
|
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
9396
9706
|
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
9397
9707
|
readonly average_order_value?: io.flow.v0.models.Money;
|
|
9708
|
+
readonly mcc_codes?: number[];
|
|
9398
9709
|
}
|
|
9399
9710
|
interface ShopifyMerchantApplicationPutForm {
|
|
9400
9711
|
readonly discriminator: 'shopify_merchant_application_put_form';
|
|
@@ -9824,15 +10135,11 @@ declare namespace io.flow.v0.models {
|
|
|
9824
10135
|
readonly types: io.flow.v0.enums.TaxReportType[];
|
|
9825
10136
|
readonly email_recipients?: string[];
|
|
9826
10137
|
}
|
|
9827
|
-
interface Test {
|
|
9828
|
-
readonly id: string;
|
|
9829
|
-
}
|
|
9830
10138
|
interface TestUpserted {
|
|
9831
10139
|
readonly discriminator: 'test_upserted';
|
|
9832
10140
|
readonly event_id: string;
|
|
9833
10141
|
readonly timestamp: string;
|
|
9834
|
-
readonly
|
|
9835
|
-
readonly test: io.flow.v0.models.Test;
|
|
10142
|
+
readonly test: io.flow.ben.test.internal.v0.models.Test;
|
|
9836
10143
|
}
|
|
9837
10144
|
interface ThirdPartyLogisticsPartner {
|
|
9838
10145
|
readonly warehouse_address: io.flow.v0.models.MerchantOnboardingAddress;
|
|
@@ -10117,6 +10424,7 @@ declare namespace io.flow.v0.models {
|
|
|
10117
10424
|
interface Transaction {
|
|
10118
10425
|
readonly statement?: io.flow.v0.models.BillingChannelStatementReference;
|
|
10119
10426
|
readonly id: string;
|
|
10427
|
+
readonly metadata?: io.flow.v0.unions.TransactionMetadata;
|
|
10120
10428
|
readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
10121
10429
|
readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
10122
10430
|
readonly currency: string;
|
|
@@ -10137,10 +10445,17 @@ declare namespace io.flow.v0.models {
|
|
|
10137
10445
|
readonly cvv_result?: io.flow.v0.models.CvvResult;
|
|
10138
10446
|
readonly network_details?: io.flow.v0.models.TransactionNetworkDetailsCard;
|
|
10139
10447
|
}
|
|
10448
|
+
interface TransactionMetadataShippingLabel {
|
|
10449
|
+
readonly discriminator: 'shipping_label';
|
|
10450
|
+
readonly request_method?: io.flow.v0.enums.LabelRequestMethod;
|
|
10451
|
+
}
|
|
10140
10452
|
interface TransactionNetworkDetailsCard {
|
|
10141
10453
|
readonly network_transaction_id?: string;
|
|
10142
10454
|
readonly network?: io.flow.v0.enums.CardType;
|
|
10143
10455
|
}
|
|
10456
|
+
interface TransactionReference {
|
|
10457
|
+
readonly id: string;
|
|
10458
|
+
}
|
|
10144
10459
|
interface TransactionUpserted {
|
|
10145
10460
|
readonly discriminator: 'transaction_upserted';
|
|
10146
10461
|
readonly event_id: string;
|
|
@@ -10381,7 +10696,7 @@ declare namespace io.flow.v0.unions {
|
|
|
10381
10696
|
type Document = io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument;
|
|
10382
10697
|
type EmailNotificationData = io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder;
|
|
10383
10698
|
type Entity = io.flow.v0.models.Company | io.flow.v0.models.Individual;
|
|
10384
|
-
type Event = io.flow.v0.models.TestUpserted | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.CatalogItemUpserted | io.flow.v0.models.CatalogItemDeleted | io.flow.v0.models.CatalogItemUpsertedV2 | io.flow.v0.models.CatalogItemDeletedV2 | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.EmailNotificationUpserted | io.flow.v0.models.EmailNotificationDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.RuleUpserted | io.flow.v0.models.RuleDeleted | io.flow.v0.models.SnapshotUpserted | io.flow.v0.models.SnapshotDeleted | io.flow.v0.models.LabelUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LocalItemUpserted | io.flow.v0.models.LocalItemDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.CheckoutOptinResponsesUpserted | io.flow.v0.models.CheckoutOptinResponsesDeleted | io.flow.v0.models.BrowseOptinResponsesUpserted | io.flow.v0.models.BrowseOptinResponsesDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.OrganizationDefaultConfigurationsUpserted | io.flow.v0.models.OrganizationDefaultConfigurationsDeleted | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ReturnUpserted | io.flow.v0.models.ReturnDeleted | io.flow.v0.models.ReturnUpsertedV2 | io.flow.v0.models.ReturnDeletedV2 | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted;
|
|
10699
|
+
type Event = io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.CatalogItemUpserted | io.flow.v0.models.CatalogItemDeleted | io.flow.v0.models.CatalogItemUpsertedV2 | io.flow.v0.models.CatalogItemDeletedV2 | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.EmailNotificationUpserted | io.flow.v0.models.EmailNotificationDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.RuleUpserted | io.flow.v0.models.RuleDeleted | io.flow.v0.models.SnapshotUpserted | io.flow.v0.models.SnapshotDeleted | io.flow.v0.models.LabelUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LocalItemUpserted | io.flow.v0.models.LocalItemDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.CheckoutOptinResponsesUpserted | io.flow.v0.models.CheckoutOptinResponsesDeleted | io.flow.v0.models.BrowseOptinResponsesUpserted | io.flow.v0.models.BrowseOptinResponsesDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.OrganizationDefaultConfigurationsUpserted | io.flow.v0.models.OrganizationDefaultConfigurationsDeleted | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ReturnUpserted | io.flow.v0.models.ReturnDeleted | io.flow.v0.models.ReturnUpsertedV2 | io.flow.v0.models.ReturnDeletedV2 | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted;
|
|
10385
10700
|
type ExpandableCard = io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary;
|
|
10386
10701
|
type ExpandableCenter = io.flow.v0.models.Center | io.flow.v0.models.CenterReference;
|
|
10387
10702
|
type ExpandableExperience = io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference;
|
|
@@ -10407,7 +10722,7 @@ declare namespace io.flow.v0.unions {
|
|
|
10407
10722
|
type MerchantApplicationForm = io.flow.v0.models.ShopifyMerchantApplicationForm;
|
|
10408
10723
|
type MerchantApplicationPutForm = io.flow.v0.models.ShopifyMerchantApplicationPutForm;
|
|
10409
10724
|
type MerchantApplicationsSummary = io.flow.v0.models.ShopifyMerchantApplicationsSummary;
|
|
10410
|
-
type OnboardingState = io.flow.v0.models.InComplianceReview | io.flow.v0.models.SetupInProgress | io.flow.v0.models.MerchantRejected | io.flow.v0.models.SetupBlocked | io.flow.v0.models.SetupCompleted | io.flow.v0.models.MerchantActivated;
|
|
10725
|
+
type OnboardingState = io.flow.v0.models.InComplianceReview | io.flow.v0.models.SetupInProgress | io.flow.v0.models.MerchantRejected | io.flow.v0.models.SetupBlocked | io.flow.v0.models.SetupCompleted | io.flow.v0.models.MerchantActivated | io.flow.v0.models.MerchantDeactivated;
|
|
10411
10726
|
type OnlineAuthorizationDetails = io.flow.v0.models.CryptopayAuthorizationDetails | io.flow.v0.models.PaypalAuthorizationDetails | io.flow.v0.models.RedirectAuthorizationDetails | io.flow.v0.models.InlineAuthorizationDetails;
|
|
10412
10727
|
type OrderInformation = io.flow.v0.models.OrderInformationFlow | io.flow.v0.models.OrderInformationDetails;
|
|
10413
10728
|
type OrderNumberGenerator = io.flow.v0.models.OrderNumberGeneratorUuid | io.flow.v0.models.OrderNumberGeneratorHexadecimal | io.flow.v0.models.OrderNumberGeneratorPrefixSuffix;
|
|
@@ -10443,13 +10758,13 @@ declare namespace io.flow.v0.unions {
|
|
|
10443
10758
|
type QueryFilter = io.flow.v0.models.QueryFilterStructured | io.flow.v0.models.QueryFilterUnstructured;
|
|
10444
10759
|
type QueryFilterForm = io.flow.v0.models.QueryFilterStructuredForm | io.flow.v0.models.QueryFilterUnstructuredForm;
|
|
10445
10760
|
type RatecardEstimate = io.flow.v0.models.RatecardEstimateV1 | io.flow.v0.models.RatecardEstimateV2 | io.flow.v0.models.RatecardEstimateV3 | io.flow.v0.models.RatecardEstimateV4;
|
|
10446
|
-
type RatecardFee = io.flow.v0.models.DdpRatecardFee | io.flow.v0.models.FuelSurchargeRatecardFee | io.flow.v0.models.
|
|
10761
|
+
type RatecardFee = io.flow.v0.models.DdpRatecardFee | io.flow.v0.models.FuelSurchargeRatecardFee | io.flow.v0.models.OversizePieceSurchargeRatecardFee | io.flow.v0.models.ReturnPackageRatecardFee | io.flow.v0.models.CrossdockRatecardFee | io.flow.v0.models.RemoteAreaRatecardFee | io.flow.v0.models.EmergencySituationSurchargeRatecardFee | io.flow.v0.models.PeakSurchargeRatecardFee | io.flow.v0.models.DutiesTaxesPaidSurchargeRatecardFee;
|
|
10447
10762
|
type RepeatSchedule = io.flow.v0.models.RepeatHourly | io.flow.v0.models.RepeatDaily | io.flow.v0.models.RepeatWeekly | io.flow.v0.models.RepeatMonthly;
|
|
10448
10763
|
type ReservationError = io.flow.v0.models.NoInventoryReservationError | io.flow.v0.models.ExternalApiTimeoutReservationError | io.flow.v0.models.GenericReservationError;
|
|
10449
10764
|
type ReturnSource = io.flow.v0.models.ReturnSourceFlow | io.flow.v0.models.ReturnSourceExternalVendor;
|
|
10450
10765
|
type SdkAdyenV3AuthenticationToken = io.flow.v0.models.AdyenV3FingerprintToken | io.flow.v0.models.AdyenV3ChallengeToken;
|
|
10451
10766
|
type ServiceDescription = io.flow.v0.models.ServiceSummary | io.flow.v0.models.ServiceUnknown;
|
|
10452
|
-
type ServiceFee = io.flow.v0.models.FuelSurchargeServiceFee | io.flow.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.v0.models.RemoteAreaServiceFee | io.flow.v0.models.EmergencySituationSurchargeServiceFee | io.flow.v0.models.PeakSurchargeServiceFee | io.flow.v0.models.PeakSurchargeByWeightServiceFee | io.flow.v0.models.DutiesTaxesPaidSurchargeServiceFee;
|
|
10767
|
+
type ServiceFee = io.flow.v0.models.FuelSurchargeServiceFee | io.flow.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.v0.models.RemoteAreaServiceFee | io.flow.v0.models.EmergencySituationSurchargeServiceFee | io.flow.v0.models.PeakSurchargeServiceFee | io.flow.v0.models.PeakSurchargeByWeightServiceFee | io.flow.v0.models.DutiesTaxesPaidSurchargeServiceFee | io.flow.v0.models.OversizePieceSurchargeServiceFee;
|
|
10453
10768
|
type Session = io.flow.v0.models.OrganizationSession;
|
|
10454
10769
|
type SessionAuthorization = io.flow.v0.models.OrganizationSessionAuthorization;
|
|
10455
10770
|
type Settlement = io.flow.v0.models.SettlementNoPayout | io.flow.v0.models.SettlementPayout;
|
|
@@ -10466,6 +10781,7 @@ declare namespace io.flow.v0.unions {
|
|
|
10466
10781
|
type Token = io.flow.v0.models.ChannelToken | io.flow.v0.models.OrganizationToken | io.flow.v0.models.OrganizationTokenV2 | io.flow.v0.models.PartnerToken;
|
|
10467
10782
|
type TokenReference = io.flow.v0.models.ChannelTokenReference | io.flow.v0.models.OrganizationTokenReference | io.flow.v0.models.OrganizationTokenV2Reference | io.flow.v0.models.PartnerTokenReference;
|
|
10468
10783
|
type TransactionDetails = io.flow.v0.models.TransactionDetailsCard;
|
|
10784
|
+
type TransactionMetadata = io.flow.v0.models.TransactionMetadataShippingLabel;
|
|
10469
10785
|
}
|
|
10470
10786
|
export declare type AbandonedOrderEmailSettings = io.flow.v0.models.AbandonedOrderEmailSettings;
|
|
10471
10787
|
export declare type AbandonedOrderPromotion = io.flow.v0.models.AbandonedOrderPromotion;
|
|
@@ -10729,6 +11045,7 @@ export declare type ChannelTokenReference = io.flow.v0.models.ChannelTokenRefere
|
|
|
10729
11045
|
export declare type ChannelTransaction = io.flow.v0.models.ChannelTransaction;
|
|
10730
11046
|
export declare type ChannelTransactionDeleted = io.flow.v0.models.ChannelTransactionDeleted;
|
|
10731
11047
|
export declare type ChannelTransactionDeletedV2 = io.flow.v0.models.ChannelTransactionDeletedV2;
|
|
11048
|
+
export declare type ChannelTransactionPayout = io.flow.v0.models.ChannelTransactionPayout;
|
|
10732
11049
|
export declare type ChannelTransactionUpserted = io.flow.v0.models.ChannelTransactionUpserted;
|
|
10733
11050
|
export declare type ChannelUpserted = io.flow.v0.models.ChannelUpserted;
|
|
10734
11051
|
export declare type ChannelViesRegistration = io.flow.v0.models.ChannelViesRegistration;
|
|
@@ -10782,6 +11099,8 @@ export declare type CostEstimateSource = io.flow.v0.enums.CostEstimateSource;
|
|
|
10782
11099
|
export declare type Country = io.flow.v0.models.Country;
|
|
10783
11100
|
export declare type CountryAvailability = io.flow.v0.models.CountryAvailability;
|
|
10784
11101
|
export declare type CountryDefaults = io.flow.v0.models.CountryDefaults;
|
|
11102
|
+
export declare type CountryOfOrigin = io.flow.v0.models.CountryOfOrigin;
|
|
11103
|
+
export declare type CountryOfOriginForm = io.flow.v0.models.CountryOfOriginForm;
|
|
10785
11104
|
export declare type CountryPicker = io.flow.v0.models.CountryPicker;
|
|
10786
11105
|
export declare type CountryPickerForm = io.flow.v0.models.CountryPickerForm;
|
|
10787
11106
|
export declare type CountryPickerSource = io.flow.v0.enums.CountryPickerSource;
|
|
@@ -10843,6 +11162,7 @@ export declare type DatetimeRange = io.flow.v0.models.DatetimeRange;
|
|
|
10843
11162
|
export declare type DatetimeWithTimezone = io.flow.v0.models.DatetimeWithTimezone;
|
|
10844
11163
|
export declare type DayOfWeek = io.flow.v0.enums.DayOfWeek;
|
|
10845
11164
|
export declare type DdpRatecardFee = io.flow.v0.models.DdpRatecardFee;
|
|
11165
|
+
export declare type DeactivationPutForm = io.flow.v0.models.DeactivationPutForm;
|
|
10846
11166
|
export declare type DefaultBankAccountForm = io.flow.v0.models.DefaultBankAccountForm;
|
|
10847
11167
|
export declare type DeliveredDuty = io.flow.v0.enums.DeliveredDuty;
|
|
10848
11168
|
export declare type DeliveredDutyDisplayType = io.flow.v0.enums.DeliveredDutyDisplayType;
|
|
@@ -11072,6 +11392,7 @@ export declare type FulfillmentRouting = io.flow.v0.enums.FulfillmentRouting;
|
|
|
11072
11392
|
export declare type FullyHarmonizedItemUpserted = io.flow.v0.models.FullyHarmonizedItemUpserted;
|
|
11073
11393
|
export declare type GatewayAuthenticationData = io.flow.v0.unions.GatewayAuthenticationData;
|
|
11074
11394
|
export declare type GatewayAuthenticationDataForm = io.flow.v0.unions.GatewayAuthenticationDataForm;
|
|
11395
|
+
export declare type GenerateLoad = io.flow.v0.models.GenerateLoad;
|
|
11075
11396
|
export declare type GenericError = io.flow.v0.models.GenericError;
|
|
11076
11397
|
export declare type GenericErrorCode = io.flow.v0.enums.GenericErrorCode;
|
|
11077
11398
|
export declare type GenericReservationError = io.flow.v0.models.GenericReservationError;
|
|
@@ -11286,6 +11607,7 @@ export declare type MerchantApplicationForm = io.flow.v0.unions.MerchantApplicat
|
|
|
11286
11607
|
export declare type MerchantApplicationPutForm = io.flow.v0.unions.MerchantApplicationPutForm;
|
|
11287
11608
|
export declare type MerchantApplicationUpserted = io.flow.v0.models.MerchantApplicationUpserted;
|
|
11288
11609
|
export declare type MerchantApplicationsSummary = io.flow.v0.unions.MerchantApplicationsSummary;
|
|
11610
|
+
export declare type MerchantDeactivated = io.flow.v0.models.MerchantDeactivated;
|
|
11289
11611
|
export declare type MerchantGiftCardBalance = io.flow.v0.models.MerchantGiftCardBalance;
|
|
11290
11612
|
export declare type MerchantGiftCardBalanceForm = io.flow.v0.models.MerchantGiftCardBalanceForm;
|
|
11291
11613
|
export declare type MerchantGiftCardError = io.flow.v0.models.MerchantGiftCardError;
|
|
@@ -11494,6 +11816,7 @@ export declare type OrganizationTokenReference = io.flow.v0.models.OrganizationT
|
|
|
11494
11816
|
export declare type OrganizationTokenV2 = io.flow.v0.models.OrganizationTokenV2;
|
|
11495
11817
|
export declare type OrganizationTokenV2Reference = io.flow.v0.models.OrganizationTokenV2Reference;
|
|
11496
11818
|
export declare type OrganizationTransactionDeleted = io.flow.v0.models.OrganizationTransactionDeleted;
|
|
11819
|
+
export declare type OrganizationTransactionPayout = io.flow.v0.models.OrganizationTransactionPayout;
|
|
11497
11820
|
export declare type OrganizationTransactionUpserted = io.flow.v0.models.OrganizationTransactionUpserted;
|
|
11498
11821
|
export declare type OrganizationType = io.flow.v0.enums.OrganizationType;
|
|
11499
11822
|
export declare type OrganizationUpserted = io.flow.v0.models.OrganizationUpserted;
|
|
@@ -11501,7 +11824,11 @@ export declare type OrganizationUpsertedV2 = io.flow.v0.models.OrganizationUpser
|
|
|
11501
11824
|
export declare type OrganizationVersion = io.flow.v0.models.OrganizationVersion;
|
|
11502
11825
|
export declare type OriginalPrices = io.flow.v0.models.OriginalPrices;
|
|
11503
11826
|
export declare type OutboundCartonFee = io.flow.v0.models.OutboundCartonFee;
|
|
11504
|
-
export declare type
|
|
11827
|
+
export declare type OversizePieceSurchargeRatecardFee = io.flow.v0.models.OversizePieceSurchargeRatecardFee;
|
|
11828
|
+
export declare type OversizePieceSurchargeServiceFee = io.flow.v0.models.OversizePieceSurchargeServiceFee;
|
|
11829
|
+
export declare type PackageDimensions = io.flow.v0.models.PackageDimensions;
|
|
11830
|
+
export declare type PackageDimensionsForm = io.flow.v0.models.PackageDimensionsForm;
|
|
11831
|
+
export declare type PackageDimensionsSource = io.flow.v0.enums.PackageDimensionsSource;
|
|
11505
11832
|
export declare type Packaging = io.flow.v0.models.Packaging;
|
|
11506
11833
|
export declare type ParentTransactionSummary = io.flow.v0.models.ParentTransactionSummary;
|
|
11507
11834
|
export declare type PartnerCenter = io.flow.v0.models.PartnerCenter;
|
|
@@ -11638,6 +11965,7 @@ export declare type PaymentUpserted = io.flow.v0.models.PaymentUpserted;
|
|
|
11638
11965
|
export declare type PaymentVersion = io.flow.v0.models.PaymentVersion;
|
|
11639
11966
|
export declare type PayoutAttachment = io.flow.v0.models.PayoutAttachment;
|
|
11640
11967
|
export declare type PayoutAttachmentType = io.flow.v0.enums.PayoutAttachmentType;
|
|
11968
|
+
export declare type PayoutReference = io.flow.v0.models.PayoutReference;
|
|
11641
11969
|
export declare type PayoutStatus = io.flow.v0.unions.PayoutStatus;
|
|
11642
11970
|
export declare type PayoutStatusFailed = io.flow.v0.models.PayoutStatusFailed;
|
|
11643
11971
|
export declare type PayoutStatusFailureCode = io.flow.v0.enums.PayoutStatusFailureCode;
|
|
@@ -11658,9 +11986,11 @@ export declare type PfsInventoryCheckResponse = io.flow.v0.models.PfsInventoryCh
|
|
|
11658
11986
|
export declare type PfsInventoryCheckResponseItem = io.flow.v0.models.PfsInventoryCheckResponseItem;
|
|
11659
11987
|
export declare type PfsInventoryStatus = io.flow.v0.models.PfsInventoryStatus;
|
|
11660
11988
|
export declare type PhysicalDelivery = io.flow.v0.models.PhysicalDelivery;
|
|
11989
|
+
export declare type PhysicalDeliveryPreferredService = io.flow.v0.models.PhysicalDeliveryPreferredService;
|
|
11661
11990
|
export declare type PhysicalDeliverySpecialSerivce = io.flow.v0.enums.PhysicalDeliverySpecialSerivce;
|
|
11662
11991
|
export declare type PostPaymentRedirectUrls = io.flow.v0.models.PostPaymentRedirectUrls;
|
|
11663
11992
|
export declare type PostalType = io.flow.v0.enums.PostalType;
|
|
11993
|
+
export declare type PreferredServiceSelectionStrategy = io.flow.v0.enums.PreferredServiceSelectionStrategy;
|
|
11664
11994
|
export declare type Price = io.flow.v0.models.Price;
|
|
11665
11995
|
export declare type PriceAccuracy = io.flow.v0.enums.PriceAccuracy;
|
|
11666
11996
|
export declare type PriceBook = io.flow.v0.models.PriceBook;
|
|
@@ -11909,6 +12239,7 @@ export declare type ShippingConfigurationVersion = io.flow.v0.models.ShippingCon
|
|
|
11909
12239
|
export declare type ShippingLabel = io.flow.v0.models.ShippingLabel;
|
|
11910
12240
|
export declare type ShippingLabelDocument = io.flow.v0.models.ShippingLabelDocument;
|
|
11911
12241
|
export declare type ShippingLabelForm = io.flow.v0.unions.ShippingLabelForm;
|
|
12242
|
+
export declare type ShippingLabelHopCostItemizedEstimate = io.flow.v0.models.ShippingLabelHopCostItemizedEstimate;
|
|
11912
12243
|
export declare type ShippingLabelHopSummary = io.flow.v0.models.ShippingLabelHopSummary;
|
|
11913
12244
|
export declare type ShippingLabelLaneSummary = io.flow.v0.models.ShippingLabelLaneSummary;
|
|
11914
12245
|
export declare type ShippingLabelPackage = io.flow.v0.models.ShippingLabelPackage;
|
|
@@ -11983,6 +12314,7 @@ export declare type Statement = io.flow.v0.models.Statement;
|
|
|
11983
12314
|
export declare type StatementAttachmentType = io.flow.v0.enums.StatementAttachmentType;
|
|
11984
12315
|
export declare type StatementDeleted = io.flow.v0.models.StatementDeleted;
|
|
11985
12316
|
export declare type StatementUpserted = io.flow.v0.models.StatementUpserted;
|
|
12317
|
+
export declare type StoredMethodUsageStep = io.flow.v0.enums.StoredMethodUsageStep;
|
|
11986
12318
|
export declare type Strategy = io.flow.v0.enums.Strategy;
|
|
11987
12319
|
export declare type StreetAddress = io.flow.v0.models.StreetAddress;
|
|
11988
12320
|
export declare type StripeAuthenticationData = io.flow.v0.models.StripeAuthenticationData;
|
|
@@ -12045,7 +12377,6 @@ export declare type TaxSetting = io.flow.v0.unions.TaxSetting;
|
|
|
12045
12377
|
export declare type TaxVerificationResult = io.flow.v0.enums.TaxVerificationResult;
|
|
12046
12378
|
export declare type TaxabilityType = io.flow.v0.enums.TaxabilityType;
|
|
12047
12379
|
export declare type TaxabilityValue = io.flow.v0.enums.TaxabilityValue;
|
|
12048
|
-
export declare type Test = io.flow.v0.models.Test;
|
|
12049
12380
|
export declare type TestUpserted = io.flow.v0.models.TestUpserted;
|
|
12050
12381
|
export declare type ThirdPartyLogisticsPartner = io.flow.v0.models.ThirdPartyLogisticsPartner;
|
|
12051
12382
|
export declare type ThreeDSecure = io.flow.v0.models.ThreeDSecure;
|
|
@@ -12108,15 +12439,22 @@ export declare type TradeAgreementStatus = io.flow.v0.enums.TradeAgreementStatus
|
|
|
12108
12439
|
export declare type Transaction = io.flow.v0.models.Transaction;
|
|
12109
12440
|
export declare type TransactionDetails = io.flow.v0.unions.TransactionDetails;
|
|
12110
12441
|
export declare type TransactionDetailsCard = io.flow.v0.models.TransactionDetailsCard;
|
|
12442
|
+
export declare type TransactionMetadata = io.flow.v0.unions.TransactionMetadata;
|
|
12443
|
+
export declare type TransactionMetadataShippingLabel = io.flow.v0.models.TransactionMetadataShippingLabel;
|
|
12111
12444
|
export declare type TransactionNetworkDetailsCard = io.flow.v0.models.TransactionNetworkDetailsCard;
|
|
12445
|
+
export declare type TransactionPayoutPendingReason = io.flow.v0.enums.TransactionPayoutPendingReason;
|
|
12446
|
+
export declare type TransactionReference = io.flow.v0.models.TransactionReference;
|
|
12112
12447
|
export declare type TransactionSource = io.flow.v0.enums.TransactionSource;
|
|
12113
12448
|
export declare type TransactionUpserted = io.flow.v0.models.TransactionUpserted;
|
|
12114
12449
|
export declare type TransitEstimate = io.flow.v0.models.TransitEstimate;
|
|
12115
12450
|
export declare type TransitWindow = io.flow.v0.models.TransitWindow;
|
|
12116
12451
|
export declare type UltimateBeneficiaryOwner = io.flow.v0.models.UltimateBeneficiaryOwner;
|
|
12117
12452
|
export declare type UnharmonizedItemExportType = io.flow.v0.models.UnharmonizedItemExportType;
|
|
12453
|
+
export declare type UnitOfLength = io.flow.v0.enums.UnitOfLength;
|
|
12118
12454
|
export declare type UnitOfMeasurement = io.flow.v0.enums.UnitOfMeasurement;
|
|
12119
12455
|
export declare type UnitOfTime = io.flow.v0.enums.UnitOfTime;
|
|
12456
|
+
export declare type UnitOfVolume = io.flow.v0.enums.UnitOfVolume;
|
|
12457
|
+
export declare type UnitOfWeight = io.flow.v0.enums.UnitOfWeight;
|
|
12120
12458
|
export declare type UpdatePolicy = io.flow.v0.enums.UpdatePolicy;
|
|
12121
12459
|
export declare type UpdateType = io.flow.v0.enums.UpdateType;
|
|
12122
12460
|
export declare type Upload = io.flow.v0.models.Upload;
|