@flowio/types 11.24.66 → 11.24.68
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 +1351 -250
- package/dist/api.d.ts +368 -32
- package/package.json +2 -2
- package/src/api-internal.ts +1843 -322
- package/src/api.ts +532 -32
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,12 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
753
825
|
readonly card: string;
|
|
754
826
|
readonly customer?: string;
|
|
755
827
|
}
|
|
828
|
+
interface ThreeDSecureCharge {
|
|
829
|
+
readonly authentication_flow?: io.flow.stripe.v0.enums.ThreeDsAuthenticationFlow;
|
|
830
|
+
readonly result?: io.flow.stripe.v0.enums.ThreeDsResult;
|
|
831
|
+
readonly result_reason?: io.flow.stripe.v0.enums.ThreeDsResultReason;
|
|
832
|
+
readonly version?: string;
|
|
833
|
+
}
|
|
756
834
|
interface ThreeDSecureRedirect {
|
|
757
835
|
readonly type: io.flow.stripe.v0.enums.UseStripeSdkType;
|
|
758
836
|
readonly stripe_js: string;
|
|
@@ -776,6 +854,26 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
776
854
|
readonly amount?: number;
|
|
777
855
|
readonly destination?: string;
|
|
778
856
|
}
|
|
857
|
+
interface VisaCheckout {
|
|
858
|
+
readonly type: 'visa_checkout';
|
|
859
|
+
readonly visa_checkout: io.flow.stripe.v0.models.VisaCheckoutInformation;
|
|
860
|
+
readonly dynamic_last4?: string;
|
|
861
|
+
}
|
|
862
|
+
interface VisaCheckoutInformation {
|
|
863
|
+
readonly billing_address?: io.flow.stripe.v0.models.Address;
|
|
864
|
+
readonly email?: string;
|
|
865
|
+
readonly name?: string;
|
|
866
|
+
readonly shipping_address?: io.flow.stripe.v0.models.Address;
|
|
867
|
+
}
|
|
868
|
+
}
|
|
869
|
+
declare namespace io.flow.stripe.v0.unions {
|
|
870
|
+
type CardWallet = io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout;
|
|
871
|
+
type PaymentMethodDetails = io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna;
|
|
872
|
+
}
|
|
873
|
+
declare namespace io.flow.units.v0.enums {
|
|
874
|
+
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
875
|
+
type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
|
|
876
|
+
type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
|
|
779
877
|
}
|
|
780
878
|
declare namespace io.flow.shopify.external.v0.enums {
|
|
781
879
|
type CancelReason = 'customer' | 'fraud' | 'inventory' | 'declined' | 'other';
|
|
@@ -861,7 +959,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
861
959
|
readonly starts_at: string;
|
|
862
960
|
readonly ends_at?: string;
|
|
863
961
|
readonly prerequisite_subtotal_range?: io.flow.shopify.external.v0.models.PriceRuleGreaterThanRange;
|
|
864
|
-
readonly
|
|
962
|
+
readonly prerequisite_shipping_price_range?: io.flow.shopify.external.v0.models.PriceRuleLessThanRange;
|
|
865
963
|
readonly usage_limit?: number;
|
|
866
964
|
readonly entitled_product_ids: number[];
|
|
867
965
|
readonly entitled_variant_ids: number[];
|
|
@@ -871,7 +969,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
871
969
|
readonly once_per_customer: boolean;
|
|
872
970
|
readonly target_selection: io.flow.shopify.external.v0.enums.PriceRuleTargetSelection;
|
|
873
971
|
readonly customer_selection: io.flow.shopify.external.v0.enums.PriceRuleCustomerSelection;
|
|
874
|
-
readonly
|
|
972
|
+
readonly customer_segment_prerequisite_ids?: number[];
|
|
875
973
|
readonly prerequisite_customer_ids?: number[];
|
|
876
974
|
readonly prerequisite_quantity_range?: io.flow.shopify.external.v0.models.PriceRuleGreaterThanRange;
|
|
877
975
|
readonly prerequisite_product_ids?: number[];
|
|
@@ -1580,6 +1678,28 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1580
1678
|
readonly webhook: io.flow.shopify.external.v0.models.Webhook;
|
|
1581
1679
|
}
|
|
1582
1680
|
}
|
|
1681
|
+
declare namespace io.flow.ben.test.internal.v0.models {
|
|
1682
|
+
interface GenerateLoadMultipleOrgs {
|
|
1683
|
+
readonly discriminator: 'generate_load_multiple_orgs';
|
|
1684
|
+
readonly organization_ids: string[];
|
|
1685
|
+
readonly num_events: number;
|
|
1686
|
+
}
|
|
1687
|
+
interface GenerateLoadSingleOrg {
|
|
1688
|
+
readonly discriminator: 'generate_load_single_org';
|
|
1689
|
+
readonly organization_id: string;
|
|
1690
|
+
readonly num_events: number;
|
|
1691
|
+
}
|
|
1692
|
+
interface Test {
|
|
1693
|
+
readonly id: string;
|
|
1694
|
+
readonly name: string;
|
|
1695
|
+
}
|
|
1696
|
+
interface TestForm {
|
|
1697
|
+
readonly name: string;
|
|
1698
|
+
}
|
|
1699
|
+
}
|
|
1700
|
+
declare namespace io.flow.ben.test.internal.v0.unions {
|
|
1701
|
+
type GenerateLoad = io.flow.ben.test.internal.v0.models.GenerateLoadSingleOrg | io.flow.ben.test.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
1702
|
+
}
|
|
1583
1703
|
declare namespace io.flow.apple.pay.v0.enums {
|
|
1584
1704
|
type ApplePayContactField = 'email' | 'name' | 'phone' | 'postalAddress' | 'phoneticName';
|
|
1585
1705
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
@@ -1642,6 +1762,99 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
1642
1762
|
readonly identifier: string;
|
|
1643
1763
|
}
|
|
1644
1764
|
}
|
|
1765
|
+
declare namespace io.flow.error.v0.enums {
|
|
1766
|
+
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
1767
|
+
}
|
|
1768
|
+
declare namespace io.flow.error.v0.models {
|
|
1769
|
+
interface GenericError {
|
|
1770
|
+
readonly code: io.flow.error.v0.enums.GenericErrorCode;
|
|
1771
|
+
readonly messages: string[];
|
|
1772
|
+
}
|
|
1773
|
+
}
|
|
1774
|
+
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.enums {
|
|
1775
|
+
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak';
|
|
1776
|
+
type WeightSelection = 'dead' | 'dimensional';
|
|
1777
|
+
}
|
|
1778
|
+
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
1779
|
+
interface LabelBase {
|
|
1780
|
+
readonly amount: number;
|
|
1781
|
+
readonly weight: number;
|
|
1782
|
+
}
|
|
1783
|
+
interface LabelDestination {
|
|
1784
|
+
readonly country: string;
|
|
1785
|
+
}
|
|
1786
|
+
interface LabelInvoiceRequest {
|
|
1787
|
+
readonly id: string;
|
|
1788
|
+
readonly label: io.flow.billing.RESERVED_WORD_true.up.v0.models.TrueUpLabelSummary;
|
|
1789
|
+
readonly units: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
|
|
1790
|
+
readonly base: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
1791
|
+
readonly surcharges: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
|
|
1792
|
+
readonly total: number;
|
|
1793
|
+
readonly destination: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelDestination;
|
|
1794
|
+
readonly metadata: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelMetadata;
|
|
1795
|
+
}
|
|
1796
|
+
interface LabelMetadata {
|
|
1797
|
+
readonly ratecard: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataRatecard;
|
|
1798
|
+
readonly weights: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataWeights;
|
|
1799
|
+
}
|
|
1800
|
+
interface LabelSurcharge {
|
|
1801
|
+
readonly amount: number;
|
|
1802
|
+
readonly type: io.flow.billing.RESERVED_WORD_true.up.v0.enums.TrueUpSurchargeType;
|
|
1803
|
+
readonly detail: io.flow.billing.RESERVED_WORD_true.up.v0.unions.LabelSurchargeDetail;
|
|
1804
|
+
}
|
|
1805
|
+
interface LabelSurchargeDetailFlat {
|
|
1806
|
+
readonly discriminator: 'flat';
|
|
1807
|
+
readonly placeholder?: string;
|
|
1808
|
+
}
|
|
1809
|
+
interface LabelSurchargeDetailPerWeightUnit {
|
|
1810
|
+
readonly discriminator: 'per_weight_unit';
|
|
1811
|
+
readonly fee: number;
|
|
1812
|
+
}
|
|
1813
|
+
interface LabelSurchargeDetailPercentage {
|
|
1814
|
+
readonly discriminator: 'percentage';
|
|
1815
|
+
readonly percentage: number;
|
|
1816
|
+
}
|
|
1817
|
+
interface LabelUnits {
|
|
1818
|
+
readonly currency: string;
|
|
1819
|
+
readonly weight: io.flow.units.v0.enums.UnitOfWeight;
|
|
1820
|
+
readonly length: io.flow.units.v0.enums.UnitOfLength;
|
|
1821
|
+
}
|
|
1822
|
+
interface MetadataProposition {
|
|
1823
|
+
readonly shipping_method: io.flow.billing.RESERVED_WORD_true.up.v0.models.ShippingMethodReference;
|
|
1824
|
+
readonly name: string;
|
|
1825
|
+
}
|
|
1826
|
+
interface MetadataRatecard {
|
|
1827
|
+
readonly id: string;
|
|
1828
|
+
readonly proposition: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataProposition;
|
|
1829
|
+
}
|
|
1830
|
+
interface MetadataWeights {
|
|
1831
|
+
readonly selected: io.flow.billing.RESERVED_WORD_true.up.v0.enums.WeightSelection;
|
|
1832
|
+
readonly dead?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDead;
|
|
1833
|
+
readonly dimensional?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDimensional;
|
|
1834
|
+
}
|
|
1835
|
+
interface ShippingMethodReference {
|
|
1836
|
+
readonly id: string;
|
|
1837
|
+
}
|
|
1838
|
+
interface TrueUpLabelSummary {
|
|
1839
|
+
readonly id: string;
|
|
1840
|
+
readonly carrier_service_id: string;
|
|
1841
|
+
readonly carrier_tracking_number: string;
|
|
1842
|
+
readonly flow_tracking_number: string;
|
|
1843
|
+
readonly created_at: string;
|
|
1844
|
+
}
|
|
1845
|
+
interface WeightsDead {
|
|
1846
|
+
readonly weight: number;
|
|
1847
|
+
}
|
|
1848
|
+
interface WeightsDimensional {
|
|
1849
|
+
readonly weight: number;
|
|
1850
|
+
readonly length: number;
|
|
1851
|
+
readonly width: number;
|
|
1852
|
+
readonly height: number;
|
|
1853
|
+
}
|
|
1854
|
+
}
|
|
1855
|
+
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.unions {
|
|
1856
|
+
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;
|
|
1857
|
+
}
|
|
1645
1858
|
declare namespace io.flow.v0.enums {
|
|
1646
1859
|
type AbandonedOrderPromotionStatus = 'active' | 'inactive';
|
|
1647
1860
|
type AbandonedOrderSettingStatus = 'active' | 'inactive';
|
|
@@ -1697,7 +1910,7 @@ declare namespace io.flow.v0.enums {
|
|
|
1697
1910
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
1698
1911
|
type EntityIdentifierType = 'ioss' | 'voec';
|
|
1699
1912
|
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';
|
|
1913
|
+
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
1914
|
type ExceptionType = 'open' | 'closed';
|
|
1702
1915
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
1703
1916
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -1768,6 +1981,7 @@ declare namespace io.flow.v0.enums {
|
|
|
1768
1981
|
type OrganizationPaymentMethodTag = 'deny';
|
|
1769
1982
|
type OrganizationStatus = 'active' | 'inactive' | 'deactivated' | 'provisioned';
|
|
1770
1983
|
type OrganizationType = 'standalone' | 'channel';
|
|
1984
|
+
type PackageDimensionsSource = 'provided' | 'dimensions_estimated';
|
|
1771
1985
|
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
1986
|
type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
|
|
1773
1987
|
type PaymentFailureCode = 'action_expired' | 'action_cancelled' | 'action_failed' | 'authorization_declined' | 'not_supported' | 'fraudulent' | 'error' | 'payment_checks_declined';
|
|
@@ -1786,6 +2000,7 @@ declare namespace io.flow.v0.enums {
|
|
|
1786
2000
|
type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
1787
2001
|
type PhysicalDeliverySpecialSerivce = 'cold_storage' | 'hazardous' | 'perishable';
|
|
1788
2002
|
type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
|
|
2003
|
+
type PreferredServiceSelectionStrategy = 'calculated_rate' | 'flat_rate' | 'custom_rate';
|
|
1789
2004
|
type PriceAccuracy = 'calculated' | 'estimated_from_partial_destination';
|
|
1790
2005
|
type PriceBookStatus = 'draft' | 'published' | 'archived';
|
|
1791
2006
|
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 +2032,7 @@ declare namespace io.flow.v0.enums {
|
|
|
1817
2032
|
type ShopifySyncCheck = 'localized_variants' | 'flow_variant_metafields';
|
|
1818
2033
|
type SortDirection = 'ascending' | 'descending';
|
|
1819
2034
|
type StatementAttachmentType = 'csv';
|
|
2035
|
+
type StoredMethodUsageStep = 'initial' | 'subsequent';
|
|
1820
2036
|
type Strategy = 'range' | 'from' | 'to';
|
|
1821
2037
|
type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
|
|
1822
2038
|
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
@@ -1839,15 +2055,19 @@ declare namespace io.flow.v0.enums {
|
|
|
1839
2055
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
|
|
1840
2056
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
1841
2057
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
2058
|
+
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
2059
|
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';
|
|
2060
|
+
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
1843
2061
|
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
1844
2062
|
type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
|
|
2063
|
+
type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
|
|
2064
|
+
type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
|
|
1845
2065
|
type UpdatePolicy = 'auto' | 'queue' | 'discard';
|
|
1846
2066
|
type UpdateType = 'change' | 'set';
|
|
1847
2067
|
type UserStatus = 'pending' | 'active' | 'inactive';
|
|
1848
2068
|
type ValueAddedService = 'Hazardous Material';
|
|
1849
2069
|
type Visibility = 'public' | 'private';
|
|
1850
|
-
type WebhookStatus = 'pending' | 'success' | 'failure';
|
|
2070
|
+
type WebhookStatus = 'pending' | 'success' | 'failure' | 'ignored';
|
|
1851
2071
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
1852
2072
|
type ZeroAmountIndicator = 'zero' | 'free';
|
|
1853
2073
|
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 +2969,8 @@ declare namespace io.flow.v0.models {
|
|
|
2749
2969
|
readonly expires_at?: string;
|
|
2750
2970
|
readonly base?: io.flow.v0.models.Money;
|
|
2751
2971
|
readonly processor?: io.flow.v0.unions.ExpandablePaymentProcessor;
|
|
2972
|
+
readonly stored_method_usage_step?: io.flow.v0.enums.StoredMethodUsageStep;
|
|
2973
|
+
readonly authorized_at?: string;
|
|
2752
2974
|
}
|
|
2753
2975
|
interface CardAuthorizationDeletedV2 {
|
|
2754
2976
|
readonly discriminator: 'card_authorization_deleted_v2';
|
|
@@ -3231,6 +3453,7 @@ declare namespace io.flow.v0.models {
|
|
|
3231
3453
|
interface ChannelTransaction {
|
|
3232
3454
|
readonly statement?: io.flow.v0.models.BillingChannelStatementReference;
|
|
3233
3455
|
readonly id: string;
|
|
3456
|
+
readonly metadata?: io.flow.v0.unions.TransactionMetadata;
|
|
3234
3457
|
readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
3235
3458
|
readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
3236
3459
|
readonly currency: string;
|
|
@@ -3259,6 +3482,11 @@ declare namespace io.flow.v0.models {
|
|
|
3259
3482
|
readonly channel_id: string;
|
|
3260
3483
|
readonly id: string;
|
|
3261
3484
|
}
|
|
3485
|
+
interface ChannelTransactionPayout {
|
|
3486
|
+
readonly transaction: io.flow.v0.models.TransactionReference;
|
|
3487
|
+
readonly waiting_for?: io.flow.v0.enums.TransactionPayoutPendingReason;
|
|
3488
|
+
readonly payout?: io.flow.v0.models.PayoutReference;
|
|
3489
|
+
}
|
|
3262
3490
|
interface ChannelTransactionUpserted {
|
|
3263
3491
|
readonly discriminator: 'channel_transaction_upserted';
|
|
3264
3492
|
readonly event_id: string;
|
|
@@ -3539,6 +3767,12 @@ declare namespace io.flow.v0.models {
|
|
|
3539
3767
|
readonly currency: string;
|
|
3540
3768
|
readonly language: string;
|
|
3541
3769
|
}
|
|
3770
|
+
interface CountryOfOrigin {
|
|
3771
|
+
readonly country: io.flow.v0.models.Country;
|
|
3772
|
+
}
|
|
3773
|
+
interface CountryOfOriginForm {
|
|
3774
|
+
readonly country: string;
|
|
3775
|
+
}
|
|
3542
3776
|
interface CountryPicker {
|
|
3543
3777
|
readonly id: string;
|
|
3544
3778
|
readonly source: io.flow.v0.enums.CountryPickerSource;
|
|
@@ -3833,6 +4067,9 @@ declare namespace io.flow.v0.models {
|
|
|
3833
4067
|
readonly discriminator: 'ddp_ratecard_fee';
|
|
3834
4068
|
readonly amount: number;
|
|
3835
4069
|
}
|
|
4070
|
+
interface DeactivationPutForm {
|
|
4071
|
+
readonly reason: string;
|
|
4072
|
+
}
|
|
3836
4073
|
interface DefaultBankAccountForm {
|
|
3837
4074
|
readonly bank_account_id: string;
|
|
3838
4075
|
}
|
|
@@ -3963,6 +4200,7 @@ declare namespace io.flow.v0.models {
|
|
|
3963
4200
|
readonly order_number: string;
|
|
3964
4201
|
readonly service?: string;
|
|
3965
4202
|
readonly shipment_recipient?: io.flow.v0.enums.ShipmentRecipient;
|
|
4203
|
+
readonly package_dimensions_source?: io.flow.v0.enums.PackageDimensionsSource;
|
|
3966
4204
|
}
|
|
3967
4205
|
interface DetailedShippingNotificationForm {
|
|
3968
4206
|
readonly discriminator: 'detailed_shipping_notification_form';
|
|
@@ -4004,6 +4242,7 @@ declare namespace io.flow.v0.models {
|
|
|
4004
4242
|
readonly cookie_created_at?: number;
|
|
4005
4243
|
readonly session_duration?: number;
|
|
4006
4244
|
readonly fingerprint?: string;
|
|
4245
|
+
readonly fraud_references?: Record<string, string>;
|
|
4007
4246
|
}
|
|
4008
4247
|
interface DeviceFingerprintDetailsBrowser {
|
|
4009
4248
|
readonly type: 'browser';
|
|
@@ -4822,6 +5061,14 @@ declare namespace io.flow.v0.models {
|
|
|
4822
5061
|
readonly hs6_code: string;
|
|
4823
5062
|
readonly landed_costs: io.flow.v0.models.LaneLandedCost[];
|
|
4824
5063
|
}
|
|
5064
|
+
interface GenerateLoad {
|
|
5065
|
+
readonly discriminator: 'generate_load';
|
|
5066
|
+
readonly event_id: string;
|
|
5067
|
+
readonly timestamp: string;
|
|
5068
|
+
readonly organization: string;
|
|
5069
|
+
readonly test_name: string;
|
|
5070
|
+
readonly num_tests: number;
|
|
5071
|
+
}
|
|
4825
5072
|
interface GenericError {
|
|
4826
5073
|
readonly code: io.flow.v0.enums.GenericErrorCode;
|
|
4827
5074
|
readonly messages: string[];
|
|
@@ -5515,6 +5762,7 @@ declare namespace io.flow.v0.models {
|
|
|
5515
5762
|
interface KnowYourBusinessUsa {
|
|
5516
5763
|
readonly discriminator: 'know_your_business_usa';
|
|
5517
5764
|
readonly id: string;
|
|
5765
|
+
readonly organization_id: string;
|
|
5518
5766
|
readonly primary_entity: io.flow.v0.unions.Entity;
|
|
5519
5767
|
readonly parent_company?: io.flow.v0.models.Company;
|
|
5520
5768
|
readonly ultimate_parent_company?: io.flow.v0.models.Company;
|
|
@@ -5575,6 +5823,7 @@ declare namespace io.flow.v0.models {
|
|
|
5575
5823
|
readonly label?: io.flow.v0.models.LabelReference;
|
|
5576
5824
|
readonly in_transit: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
5577
5825
|
readonly delivered?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
5826
|
+
readonly rejected?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
5578
5827
|
}
|
|
5579
5828
|
interface LabelTrackingSummaryUpdate {
|
|
5580
5829
|
readonly timestamp: string;
|
|
@@ -5930,6 +6179,10 @@ declare namespace io.flow.v0.models {
|
|
|
5930
6179
|
readonly timestamp: string;
|
|
5931
6180
|
readonly merchant_application: io.flow.v0.unions.MerchantApplication;
|
|
5932
6181
|
}
|
|
6182
|
+
interface MerchantDeactivated {
|
|
6183
|
+
readonly discriminator: 'merchant_deactivated';
|
|
6184
|
+
readonly reason: string;
|
|
6185
|
+
}
|
|
5933
6186
|
interface MerchantGiftCardBalance {
|
|
5934
6187
|
readonly amount: number;
|
|
5935
6188
|
readonly currency: string;
|
|
@@ -6121,6 +6374,7 @@ declare namespace io.flow.v0.models {
|
|
|
6121
6374
|
readonly base?: io.flow.v0.models.Money;
|
|
6122
6375
|
readonly processor?: io.flow.v0.unions.ExpandablePaymentProcessor;
|
|
6123
6376
|
readonly confirmation_details?: io.flow.v0.unions.ConfirmationDetails;
|
|
6377
|
+
readonly authorized_at?: string;
|
|
6124
6378
|
}
|
|
6125
6379
|
interface OnlineAuthorizationDeletedV2 {
|
|
6126
6380
|
readonly discriminator: 'online_authorization_deleted_v2';
|
|
@@ -6143,7 +6397,6 @@ declare namespace io.flow.v0.models {
|
|
|
6143
6397
|
readonly key?: string;
|
|
6144
6398
|
}
|
|
6145
6399
|
interface OperationsContact {
|
|
6146
|
-
readonly full_name?: string;
|
|
6147
6400
|
readonly company?: string;
|
|
6148
6401
|
readonly email?: string;
|
|
6149
6402
|
readonly phone?: string;
|
|
@@ -6902,6 +7155,7 @@ declare namespace io.flow.v0.models {
|
|
|
6902
7155
|
readonly time_blocked?: number;
|
|
6903
7156
|
readonly blocked_since?: string;
|
|
6904
7157
|
readonly completed_at?: string;
|
|
7158
|
+
readonly onboarding_started_at?: string;
|
|
6905
7159
|
}
|
|
6906
7160
|
interface OrganizationOnboardingStateDeleted {
|
|
6907
7161
|
readonly discriminator: 'organization_onboarding_state_deleted';
|
|
@@ -7036,6 +7290,11 @@ declare namespace io.flow.v0.models {
|
|
|
7036
7290
|
readonly organization: string;
|
|
7037
7291
|
readonly id: string;
|
|
7038
7292
|
}
|
|
7293
|
+
interface OrganizationTransactionPayout {
|
|
7294
|
+
readonly transaction: io.flow.v0.models.TransactionReference;
|
|
7295
|
+
readonly waiting_for?: io.flow.v0.enums.TransactionPayoutPendingReason;
|
|
7296
|
+
readonly payout?: io.flow.v0.models.PayoutReference;
|
|
7297
|
+
}
|
|
7039
7298
|
interface OrganizationTransactionUpserted {
|
|
7040
7299
|
readonly discriminator: 'organization_transaction_upserted';
|
|
7041
7300
|
readonly event_id: string;
|
|
@@ -7078,12 +7337,27 @@ declare namespace io.flow.v0.models {
|
|
|
7078
7337
|
readonly discriminator: 'outbound_carton_fee';
|
|
7079
7338
|
readonly amount: io.flow.v0.models.Money;
|
|
7080
7339
|
}
|
|
7081
|
-
interface
|
|
7082
|
-
readonly discriminator: '
|
|
7083
|
-
readonly
|
|
7084
|
-
readonly
|
|
7085
|
-
readonly
|
|
7086
|
-
readonly
|
|
7340
|
+
interface OversizePieceSurchargeRatecardFee {
|
|
7341
|
+
readonly discriminator: 'oversize_piece_surcharge_ratecard_fee';
|
|
7342
|
+
readonly dimensional_threshold?: number;
|
|
7343
|
+
readonly dimensional_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
7344
|
+
readonly weight_threshold?: number;
|
|
7345
|
+
readonly weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
7346
|
+
readonly amount: io.flow.v0.models.Money;
|
|
7347
|
+
}
|
|
7348
|
+
interface OversizePieceSurchargeServiceFee {
|
|
7349
|
+
readonly discriminator: 'oversize_piece_surcharge_service_fee';
|
|
7350
|
+
readonly dimensional_threshold?: number;
|
|
7351
|
+
readonly dimensional_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
7352
|
+
readonly weight_threshold?: number;
|
|
7353
|
+
readonly weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
7354
|
+
readonly amount: io.flow.v0.models.Money;
|
|
7355
|
+
}
|
|
7356
|
+
interface PackageDimensions {
|
|
7357
|
+
readonly dimensions: io.flow.v0.models.Dimension[];
|
|
7358
|
+
}
|
|
7359
|
+
interface PackageDimensionsForm {
|
|
7360
|
+
readonly dimensions: io.flow.v0.models.Dimension[];
|
|
7087
7361
|
}
|
|
7088
7362
|
interface Packaging {
|
|
7089
7363
|
readonly dimensions: io.flow.v0.models.Dimensions;
|
|
@@ -7653,6 +7927,9 @@ declare namespace io.flow.v0.models {
|
|
|
7653
7927
|
readonly type: io.flow.v0.enums.PayoutAttachmentType;
|
|
7654
7928
|
readonly url: string;
|
|
7655
7929
|
}
|
|
7930
|
+
interface PayoutReference {
|
|
7931
|
+
readonly id: string;
|
|
7932
|
+
}
|
|
7656
7933
|
interface PayoutStatusFailed {
|
|
7657
7934
|
readonly code: 'failed';
|
|
7658
7935
|
readonly timestamp: string;
|
|
@@ -7668,6 +7945,7 @@ declare namespace io.flow.v0.models {
|
|
|
7668
7945
|
}
|
|
7669
7946
|
interface PayoutTransaction {
|
|
7670
7947
|
readonly id: string;
|
|
7948
|
+
readonly metadata?: io.flow.v0.unions.TransactionMetadata;
|
|
7671
7949
|
readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
7672
7950
|
readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
7673
7951
|
readonly currency: string;
|
|
@@ -7764,6 +8042,11 @@ declare namespace io.flow.v0.models {
|
|
|
7764
8042
|
readonly total?: io.flow.v0.models.LocalizedTotal;
|
|
7765
8043
|
readonly goods_supply?: io.flow.v0.enums.GoodsSupply;
|
|
7766
8044
|
readonly merchant_of_record_flow_entity?: io.flow.v0.enums.FlowEntity;
|
|
8045
|
+
readonly preferred_service?: io.flow.v0.models.PhysicalDeliveryPreferredService;
|
|
8046
|
+
}
|
|
8047
|
+
interface PhysicalDeliveryPreferredService {
|
|
8048
|
+
readonly id: string;
|
|
8049
|
+
readonly selection_stratey: io.flow.v0.enums.PreferredServiceSelectionStrategy;
|
|
7767
8050
|
}
|
|
7768
8051
|
interface PostPaymentRedirectUrls {
|
|
7769
8052
|
readonly success: string;
|
|
@@ -8150,12 +8433,16 @@ declare namespace io.flow.v0.models {
|
|
|
8150
8433
|
interface Ratecard {
|
|
8151
8434
|
readonly id: string;
|
|
8152
8435
|
readonly number: string;
|
|
8436
|
+
readonly rate_level_key?: string;
|
|
8153
8437
|
readonly direction: io.flow.v0.enums.Direction;
|
|
8154
8438
|
readonly effective_at: string;
|
|
8155
8439
|
readonly origination_zones: io.flow.v0.models.Zone[];
|
|
8156
8440
|
readonly service: io.flow.v0.models.RatecardServiceSummary;
|
|
8157
8441
|
readonly published_at?: string;
|
|
8158
8442
|
readonly ratecard_owner: io.flow.v0.enums.RatecardOwner;
|
|
8443
|
+
readonly glbe_shipping_method_id?: string;
|
|
8444
|
+
readonly glbe_proposition_name?: string;
|
|
8445
|
+
readonly channel_revenue_share_percentage?: number;
|
|
8159
8446
|
}
|
|
8160
8447
|
interface RatecardCarrierSummary {
|
|
8161
8448
|
readonly id: string;
|
|
@@ -8226,6 +8513,10 @@ declare namespace io.flow.v0.models {
|
|
|
8226
8513
|
readonly dimensional_weight?: io.flow.v0.models.Measurement;
|
|
8227
8514
|
readonly gravitational_weight?: io.flow.v0.models.Measurement;
|
|
8228
8515
|
readonly ratecard_id?: string;
|
|
8516
|
+
readonly glbe_shipping_method_id?: string;
|
|
8517
|
+
readonly glbe_proposition_name?: string;
|
|
8518
|
+
readonly channel_revenue_share_percentage?: number;
|
|
8519
|
+
readonly rate_level_key?: string;
|
|
8229
8520
|
readonly line_items?: io.flow.v0.models.LineItemForm[];
|
|
8230
8521
|
}
|
|
8231
8522
|
interface RatecardForm {
|
|
@@ -8234,7 +8525,12 @@ declare namespace io.flow.v0.models {
|
|
|
8234
8525
|
readonly origination_zones: io.flow.v0.models.Zone[];
|
|
8235
8526
|
readonly service: string;
|
|
8236
8527
|
readonly number?: string;
|
|
8528
|
+
readonly rate_level_key?: string;
|
|
8237
8529
|
readonly ratecard_owner?: io.flow.v0.enums.RatecardOwner;
|
|
8530
|
+
readonly glbe_shipping_method_id?: string;
|
|
8531
|
+
readonly glbe_proposition_name?: string;
|
|
8532
|
+
readonly channel_revenue_share_percentage?: number;
|
|
8533
|
+
readonly data?: Record<string, string>;
|
|
8238
8534
|
}
|
|
8239
8535
|
interface RatecardLane {
|
|
8240
8536
|
readonly id: string;
|
|
@@ -9032,6 +9328,9 @@ declare namespace io.flow.v0.models {
|
|
|
9032
9328
|
readonly carrier_tracking_number_url: string;
|
|
9033
9329
|
readonly cost_estimate_source?: io.flow.v0.enums.CostEstimateSource;
|
|
9034
9330
|
readonly cost?: io.flow.v0.models.Price;
|
|
9331
|
+
readonly delivered_duty?: io.flow.v0.enums.DeliveredDuty;
|
|
9332
|
+
readonly taxes_owed?: io.flow.v0.models.Money;
|
|
9333
|
+
readonly duties_owed?: io.flow.v0.models.Money;
|
|
9035
9334
|
readonly destination: io.flow.v0.models.ShippingAddress;
|
|
9036
9335
|
readonly flow_tracking_number: string;
|
|
9037
9336
|
readonly flow_tracking_number_url: string;
|
|
@@ -9043,6 +9342,7 @@ declare namespace io.flow.v0.models {
|
|
|
9043
9342
|
readonly return?: io.flow.v0.models.ShippingLabelDocument;
|
|
9044
9343
|
readonly order?: io.flow.v0.models.LabelOrderSummary;
|
|
9045
9344
|
readonly package?: io.flow.v0.models.ShippingLabelPackage;
|
|
9345
|
+
readonly package_dimension_source?: io.flow.v0.enums.PackageDimensionsSource;
|
|
9046
9346
|
readonly order_identifier?: string;
|
|
9047
9347
|
readonly fulfillment_key?: string;
|
|
9048
9348
|
readonly shipment_recipient: io.flow.v0.enums.ShipmentRecipient;
|
|
@@ -9060,9 +9360,15 @@ declare namespace io.flow.v0.models {
|
|
|
9060
9360
|
readonly html?: string;
|
|
9061
9361
|
readonly required: boolean;
|
|
9062
9362
|
}
|
|
9363
|
+
interface ShippingLabelHopCostItemizedEstimate {
|
|
9364
|
+
readonly units: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
|
|
9365
|
+
readonly base: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
9366
|
+
readonly surcharges: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
|
|
9367
|
+
}
|
|
9063
9368
|
interface ShippingLabelHopSummary {
|
|
9064
9369
|
readonly lane: io.flow.v0.models.ShippingLabelLaneSummary;
|
|
9065
9370
|
readonly cost: io.flow.v0.models.Money;
|
|
9371
|
+
readonly itemized_estimate?: io.flow.v0.models.ShippingLabelHopCostItemizedEstimate;
|
|
9066
9372
|
}
|
|
9067
9373
|
interface ShippingLabelLaneSummary {
|
|
9068
9374
|
readonly id?: string;
|
|
@@ -9070,12 +9376,18 @@ declare namespace io.flow.v0.models {
|
|
|
9070
9376
|
}
|
|
9071
9377
|
interface ShippingLabelPackage {
|
|
9072
9378
|
readonly dimensions: io.flow.v0.models.Dimension;
|
|
9379
|
+
readonly volumetric_weight?: number;
|
|
9073
9380
|
readonly items: io.flow.v0.models.LineItemForm[];
|
|
9074
9381
|
readonly reference_number?: string;
|
|
9075
9382
|
}
|
|
9076
9383
|
interface ShippingLabelRatecardSummary {
|
|
9077
9384
|
readonly id?: string;
|
|
9078
9385
|
readonly ratecard_owner: io.flow.v0.enums.RatecardOwner;
|
|
9386
|
+
readonly rate_level_key?: string;
|
|
9387
|
+
readonly glbe_shipping_method_id?: string;
|
|
9388
|
+
readonly glbe_proposition_name?: string;
|
|
9389
|
+
readonly channel_revenue_share_percentage?: number;
|
|
9390
|
+
readonly shopify_grc_gid?: string;
|
|
9079
9391
|
}
|
|
9080
9392
|
interface ShippingLabelSummary {
|
|
9081
9393
|
readonly id: string;
|
|
@@ -9334,7 +9646,6 @@ declare namespace io.flow.v0.models {
|
|
|
9334
9646
|
readonly status: io.flow.v0.enums.OnboardingApplicationStatus;
|
|
9335
9647
|
readonly company?: io.flow.v0.models.MerchantInfo;
|
|
9336
9648
|
readonly indirect_tax?: io.flow.v0.models.IndirectTax;
|
|
9337
|
-
readonly parent_company?: io.flow.v0.models.MerchantInfo;
|
|
9338
9649
|
readonly beneficiary?: string;
|
|
9339
9650
|
readonly ultimate_beneficiary_owner?: io.flow.v0.models.UltimateBeneficiaryOwner;
|
|
9340
9651
|
readonly business_url?: string;
|
|
@@ -9344,30 +9655,29 @@ declare namespace io.flow.v0.models {
|
|
|
9344
9655
|
readonly chargeback_percentage?: number;
|
|
9345
9656
|
readonly bank_account_number?: string;
|
|
9346
9657
|
readonly aba_routing_transit_number?: string;
|
|
9347
|
-
readonly trade_sectors?: io.flow.v0.enums.OnboardingTradeSector[];
|
|
9348
9658
|
readonly other_trade_sector?: string;
|
|
9349
9659
|
readonly third_party_logistics_partners?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
|
|
9660
|
+
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
9350
9661
|
readonly average_order_weight?: number;
|
|
9351
9662
|
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
9352
9663
|
readonly monthly_average?: io.flow.v0.models.MonthlyAverage;
|
|
9353
|
-
readonly dangerous_goods?: boolean;
|
|
9354
9664
|
readonly default_country_of_origin?: string;
|
|
9355
9665
|
readonly ratecard?: io.flow.v0.models.RatecardReference;
|
|
9356
9666
|
readonly rate_card: string;
|
|
9357
9667
|
readonly created_at: string;
|
|
9358
9668
|
readonly activated_at?: string;
|
|
9359
9669
|
readonly status_updated_at?: string;
|
|
9360
|
-
readonly logistics_format?: io.flow.v0.models.LogisticsFormat;
|
|
9361
9670
|
readonly shop?: io.flow.v0.models.Shop;
|
|
9362
9671
|
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
9363
9672
|
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
9364
9673
|
readonly average_order_value?: io.flow.v0.models.Money;
|
|
9674
|
+
readonly glbe_merchant_guid?: string;
|
|
9675
|
+
readonly mcc_codes?: number[];
|
|
9365
9676
|
}
|
|
9366
9677
|
interface ShopifyMerchantApplicationForm {
|
|
9367
9678
|
readonly discriminator: 'shopify_merchant_application_form';
|
|
9368
9679
|
readonly company?: io.flow.v0.models.MerchantInfo;
|
|
9369
9680
|
readonly indirect_tax?: io.flow.v0.models.IndirectTax;
|
|
9370
|
-
readonly parent_company?: io.flow.v0.models.MerchantInfo;
|
|
9371
9681
|
readonly beneficiary?: string;
|
|
9372
9682
|
readonly ultimate_beneficiary_owner?: io.flow.v0.models.UltimateBeneficiaryOwner;
|
|
9373
9683
|
readonly business_url?: string;
|
|
@@ -9377,23 +9687,22 @@ declare namespace io.flow.v0.models {
|
|
|
9377
9687
|
readonly chargeback_percentage?: number;
|
|
9378
9688
|
readonly bank_account_number?: string;
|
|
9379
9689
|
readonly aba_routing_transit_number?: string;
|
|
9380
|
-
readonly trade_sectors?: io.flow.v0.enums.OnboardingTradeSector[];
|
|
9381
9690
|
readonly other_trade_sector?: string;
|
|
9382
9691
|
readonly third_party_logistics_partners?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
|
|
9692
|
+
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
9383
9693
|
readonly average_order_weight?: number;
|
|
9384
9694
|
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
9385
9695
|
readonly monthly_average_volume_amount?: number;
|
|
9386
9696
|
readonly monthly_average_volume_currency?: string;
|
|
9387
9697
|
readonly monthly_average_number_transactions?: number;
|
|
9388
|
-
readonly dangerous_goods?: boolean;
|
|
9389
9698
|
readonly default_country_of_origin?: string;
|
|
9390
9699
|
readonly ratecard_id?: string;
|
|
9391
9700
|
readonly rate_card: string;
|
|
9392
|
-
readonly logistics_format?: io.flow.v0.models.LogisticsFormat;
|
|
9393
9701
|
readonly shop?: io.flow.v0.models.Shop;
|
|
9394
9702
|
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
9395
9703
|
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
9396
9704
|
readonly average_order_value?: io.flow.v0.models.Money;
|
|
9705
|
+
readonly mcc_codes?: number[];
|
|
9397
9706
|
}
|
|
9398
9707
|
interface ShopifyMerchantApplicationPutForm {
|
|
9399
9708
|
readonly discriminator: 'shopify_merchant_application_put_form';
|
|
@@ -9823,15 +10132,11 @@ declare namespace io.flow.v0.models {
|
|
|
9823
10132
|
readonly types: io.flow.v0.enums.TaxReportType[];
|
|
9824
10133
|
readonly email_recipients?: string[];
|
|
9825
10134
|
}
|
|
9826
|
-
interface Test {
|
|
9827
|
-
readonly id: string;
|
|
9828
|
-
}
|
|
9829
10135
|
interface TestUpserted {
|
|
9830
10136
|
readonly discriminator: 'test_upserted';
|
|
9831
10137
|
readonly event_id: string;
|
|
9832
10138
|
readonly timestamp: string;
|
|
9833
|
-
readonly
|
|
9834
|
-
readonly test: io.flow.v0.models.Test;
|
|
10139
|
+
readonly test: io.flow.ben.test.internal.v0.models.Test;
|
|
9835
10140
|
}
|
|
9836
10141
|
interface ThirdPartyLogisticsPartner {
|
|
9837
10142
|
readonly warehouse_address: io.flow.v0.models.MerchantOnboardingAddress;
|
|
@@ -10116,6 +10421,7 @@ declare namespace io.flow.v0.models {
|
|
|
10116
10421
|
interface Transaction {
|
|
10117
10422
|
readonly statement?: io.flow.v0.models.BillingChannelStatementReference;
|
|
10118
10423
|
readonly id: string;
|
|
10424
|
+
readonly metadata?: io.flow.v0.unions.TransactionMetadata;
|
|
10119
10425
|
readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
10120
10426
|
readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
10121
10427
|
readonly currency: string;
|
|
@@ -10136,10 +10442,17 @@ declare namespace io.flow.v0.models {
|
|
|
10136
10442
|
readonly cvv_result?: io.flow.v0.models.CvvResult;
|
|
10137
10443
|
readonly network_details?: io.flow.v0.models.TransactionNetworkDetailsCard;
|
|
10138
10444
|
}
|
|
10445
|
+
interface TransactionMetadataShippingLabel {
|
|
10446
|
+
readonly discriminator: 'shipping_label';
|
|
10447
|
+
readonly request_method?: io.flow.v0.enums.LabelRequestMethod;
|
|
10448
|
+
}
|
|
10139
10449
|
interface TransactionNetworkDetailsCard {
|
|
10140
10450
|
readonly network_transaction_id?: string;
|
|
10141
10451
|
readonly network?: io.flow.v0.enums.CardType;
|
|
10142
10452
|
}
|
|
10453
|
+
interface TransactionReference {
|
|
10454
|
+
readonly id: string;
|
|
10455
|
+
}
|
|
10143
10456
|
interface TransactionUpserted {
|
|
10144
10457
|
readonly discriminator: 'transaction_upserted';
|
|
10145
10458
|
readonly event_id: string;
|
|
@@ -10380,7 +10693,7 @@ declare namespace io.flow.v0.unions {
|
|
|
10380
10693
|
type Document = io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument;
|
|
10381
10694
|
type EmailNotificationData = io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder;
|
|
10382
10695
|
type Entity = io.flow.v0.models.Company | io.flow.v0.models.Individual;
|
|
10383
|
-
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;
|
|
10696
|
+
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;
|
|
10384
10697
|
type ExpandableCard = io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary;
|
|
10385
10698
|
type ExpandableCenter = io.flow.v0.models.Center | io.flow.v0.models.CenterReference;
|
|
10386
10699
|
type ExpandableExperience = io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference;
|
|
@@ -10406,7 +10719,7 @@ declare namespace io.flow.v0.unions {
|
|
|
10406
10719
|
type MerchantApplicationForm = io.flow.v0.models.ShopifyMerchantApplicationForm;
|
|
10407
10720
|
type MerchantApplicationPutForm = io.flow.v0.models.ShopifyMerchantApplicationPutForm;
|
|
10408
10721
|
type MerchantApplicationsSummary = io.flow.v0.models.ShopifyMerchantApplicationsSummary;
|
|
10409
|
-
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;
|
|
10722
|
+
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;
|
|
10410
10723
|
type OnlineAuthorizationDetails = io.flow.v0.models.CryptopayAuthorizationDetails | io.flow.v0.models.PaypalAuthorizationDetails | io.flow.v0.models.RedirectAuthorizationDetails | io.flow.v0.models.InlineAuthorizationDetails;
|
|
10411
10724
|
type OrderInformation = io.flow.v0.models.OrderInformationFlow | io.flow.v0.models.OrderInformationDetails;
|
|
10412
10725
|
type OrderNumberGenerator = io.flow.v0.models.OrderNumberGeneratorUuid | io.flow.v0.models.OrderNumberGeneratorHexadecimal | io.flow.v0.models.OrderNumberGeneratorPrefixSuffix;
|
|
@@ -10442,13 +10755,13 @@ declare namespace io.flow.v0.unions {
|
|
|
10442
10755
|
type QueryFilter = io.flow.v0.models.QueryFilterStructured | io.flow.v0.models.QueryFilterUnstructured;
|
|
10443
10756
|
type QueryFilterForm = io.flow.v0.models.QueryFilterStructuredForm | io.flow.v0.models.QueryFilterUnstructuredForm;
|
|
10444
10757
|
type RatecardEstimate = io.flow.v0.models.RatecardEstimateV1 | io.flow.v0.models.RatecardEstimateV2 | io.flow.v0.models.RatecardEstimateV3 | io.flow.v0.models.RatecardEstimateV4;
|
|
10445
|
-
type RatecardFee = io.flow.v0.models.DdpRatecardFee | io.flow.v0.models.FuelSurchargeRatecardFee | io.flow.v0.models.
|
|
10758
|
+
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;
|
|
10446
10759
|
type RepeatSchedule = io.flow.v0.models.RepeatHourly | io.flow.v0.models.RepeatDaily | io.flow.v0.models.RepeatWeekly | io.flow.v0.models.RepeatMonthly;
|
|
10447
10760
|
type ReservationError = io.flow.v0.models.NoInventoryReservationError | io.flow.v0.models.ExternalApiTimeoutReservationError | io.flow.v0.models.GenericReservationError;
|
|
10448
10761
|
type ReturnSource = io.flow.v0.models.ReturnSourceFlow | io.flow.v0.models.ReturnSourceExternalVendor;
|
|
10449
10762
|
type SdkAdyenV3AuthenticationToken = io.flow.v0.models.AdyenV3FingerprintToken | io.flow.v0.models.AdyenV3ChallengeToken;
|
|
10450
10763
|
type ServiceDescription = io.flow.v0.models.ServiceSummary | io.flow.v0.models.ServiceUnknown;
|
|
10451
|
-
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;
|
|
10764
|
+
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;
|
|
10452
10765
|
type Session = io.flow.v0.models.OrganizationSession;
|
|
10453
10766
|
type SessionAuthorization = io.flow.v0.models.OrganizationSessionAuthorization;
|
|
10454
10767
|
type Settlement = io.flow.v0.models.SettlementNoPayout | io.flow.v0.models.SettlementPayout;
|
|
@@ -10465,6 +10778,7 @@ declare namespace io.flow.v0.unions {
|
|
|
10465
10778
|
type Token = io.flow.v0.models.ChannelToken | io.flow.v0.models.OrganizationToken | io.flow.v0.models.OrganizationTokenV2 | io.flow.v0.models.PartnerToken;
|
|
10466
10779
|
type TokenReference = io.flow.v0.models.ChannelTokenReference | io.flow.v0.models.OrganizationTokenReference | io.flow.v0.models.OrganizationTokenV2Reference | io.flow.v0.models.PartnerTokenReference;
|
|
10467
10780
|
type TransactionDetails = io.flow.v0.models.TransactionDetailsCard;
|
|
10781
|
+
type TransactionMetadata = io.flow.v0.models.TransactionMetadataShippingLabel;
|
|
10468
10782
|
}
|
|
10469
10783
|
export declare type AbandonedOrderEmailSettings = io.flow.v0.models.AbandonedOrderEmailSettings;
|
|
10470
10784
|
export declare type AbandonedOrderPromotion = io.flow.v0.models.AbandonedOrderPromotion;
|
|
@@ -10728,6 +11042,7 @@ export declare type ChannelTokenReference = io.flow.v0.models.ChannelTokenRefere
|
|
|
10728
11042
|
export declare type ChannelTransaction = io.flow.v0.models.ChannelTransaction;
|
|
10729
11043
|
export declare type ChannelTransactionDeleted = io.flow.v0.models.ChannelTransactionDeleted;
|
|
10730
11044
|
export declare type ChannelTransactionDeletedV2 = io.flow.v0.models.ChannelTransactionDeletedV2;
|
|
11045
|
+
export declare type ChannelTransactionPayout = io.flow.v0.models.ChannelTransactionPayout;
|
|
10731
11046
|
export declare type ChannelTransactionUpserted = io.flow.v0.models.ChannelTransactionUpserted;
|
|
10732
11047
|
export declare type ChannelUpserted = io.flow.v0.models.ChannelUpserted;
|
|
10733
11048
|
export declare type ChannelViesRegistration = io.flow.v0.models.ChannelViesRegistration;
|
|
@@ -10781,6 +11096,8 @@ export declare type CostEstimateSource = io.flow.v0.enums.CostEstimateSource;
|
|
|
10781
11096
|
export declare type Country = io.flow.v0.models.Country;
|
|
10782
11097
|
export declare type CountryAvailability = io.flow.v0.models.CountryAvailability;
|
|
10783
11098
|
export declare type CountryDefaults = io.flow.v0.models.CountryDefaults;
|
|
11099
|
+
export declare type CountryOfOrigin = io.flow.v0.models.CountryOfOrigin;
|
|
11100
|
+
export declare type CountryOfOriginForm = io.flow.v0.models.CountryOfOriginForm;
|
|
10784
11101
|
export declare type CountryPicker = io.flow.v0.models.CountryPicker;
|
|
10785
11102
|
export declare type CountryPickerForm = io.flow.v0.models.CountryPickerForm;
|
|
10786
11103
|
export declare type CountryPickerSource = io.flow.v0.enums.CountryPickerSource;
|
|
@@ -10842,6 +11159,7 @@ export declare type DatetimeRange = io.flow.v0.models.DatetimeRange;
|
|
|
10842
11159
|
export declare type DatetimeWithTimezone = io.flow.v0.models.DatetimeWithTimezone;
|
|
10843
11160
|
export declare type DayOfWeek = io.flow.v0.enums.DayOfWeek;
|
|
10844
11161
|
export declare type DdpRatecardFee = io.flow.v0.models.DdpRatecardFee;
|
|
11162
|
+
export declare type DeactivationPutForm = io.flow.v0.models.DeactivationPutForm;
|
|
10845
11163
|
export declare type DefaultBankAccountForm = io.flow.v0.models.DefaultBankAccountForm;
|
|
10846
11164
|
export declare type DeliveredDuty = io.flow.v0.enums.DeliveredDuty;
|
|
10847
11165
|
export declare type DeliveredDutyDisplayType = io.flow.v0.enums.DeliveredDutyDisplayType;
|
|
@@ -11071,6 +11389,7 @@ export declare type FulfillmentRouting = io.flow.v0.enums.FulfillmentRouting;
|
|
|
11071
11389
|
export declare type FullyHarmonizedItemUpserted = io.flow.v0.models.FullyHarmonizedItemUpserted;
|
|
11072
11390
|
export declare type GatewayAuthenticationData = io.flow.v0.unions.GatewayAuthenticationData;
|
|
11073
11391
|
export declare type GatewayAuthenticationDataForm = io.flow.v0.unions.GatewayAuthenticationDataForm;
|
|
11392
|
+
export declare type GenerateLoad = io.flow.v0.models.GenerateLoad;
|
|
11074
11393
|
export declare type GenericError = io.flow.v0.models.GenericError;
|
|
11075
11394
|
export declare type GenericErrorCode = io.flow.v0.enums.GenericErrorCode;
|
|
11076
11395
|
export declare type GenericReservationError = io.flow.v0.models.GenericReservationError;
|
|
@@ -11285,6 +11604,7 @@ export declare type MerchantApplicationForm = io.flow.v0.unions.MerchantApplicat
|
|
|
11285
11604
|
export declare type MerchantApplicationPutForm = io.flow.v0.unions.MerchantApplicationPutForm;
|
|
11286
11605
|
export declare type MerchantApplicationUpserted = io.flow.v0.models.MerchantApplicationUpserted;
|
|
11287
11606
|
export declare type MerchantApplicationsSummary = io.flow.v0.unions.MerchantApplicationsSummary;
|
|
11607
|
+
export declare type MerchantDeactivated = io.flow.v0.models.MerchantDeactivated;
|
|
11288
11608
|
export declare type MerchantGiftCardBalance = io.flow.v0.models.MerchantGiftCardBalance;
|
|
11289
11609
|
export declare type MerchantGiftCardBalanceForm = io.flow.v0.models.MerchantGiftCardBalanceForm;
|
|
11290
11610
|
export declare type MerchantGiftCardError = io.flow.v0.models.MerchantGiftCardError;
|
|
@@ -11493,6 +11813,7 @@ export declare type OrganizationTokenReference = io.flow.v0.models.OrganizationT
|
|
|
11493
11813
|
export declare type OrganizationTokenV2 = io.flow.v0.models.OrganizationTokenV2;
|
|
11494
11814
|
export declare type OrganizationTokenV2Reference = io.flow.v0.models.OrganizationTokenV2Reference;
|
|
11495
11815
|
export declare type OrganizationTransactionDeleted = io.flow.v0.models.OrganizationTransactionDeleted;
|
|
11816
|
+
export declare type OrganizationTransactionPayout = io.flow.v0.models.OrganizationTransactionPayout;
|
|
11496
11817
|
export declare type OrganizationTransactionUpserted = io.flow.v0.models.OrganizationTransactionUpserted;
|
|
11497
11818
|
export declare type OrganizationType = io.flow.v0.enums.OrganizationType;
|
|
11498
11819
|
export declare type OrganizationUpserted = io.flow.v0.models.OrganizationUpserted;
|
|
@@ -11500,7 +11821,11 @@ export declare type OrganizationUpsertedV2 = io.flow.v0.models.OrganizationUpser
|
|
|
11500
11821
|
export declare type OrganizationVersion = io.flow.v0.models.OrganizationVersion;
|
|
11501
11822
|
export declare type OriginalPrices = io.flow.v0.models.OriginalPrices;
|
|
11502
11823
|
export declare type OutboundCartonFee = io.flow.v0.models.OutboundCartonFee;
|
|
11503
|
-
export declare type
|
|
11824
|
+
export declare type OversizePieceSurchargeRatecardFee = io.flow.v0.models.OversizePieceSurchargeRatecardFee;
|
|
11825
|
+
export declare type OversizePieceSurchargeServiceFee = io.flow.v0.models.OversizePieceSurchargeServiceFee;
|
|
11826
|
+
export declare type PackageDimensions = io.flow.v0.models.PackageDimensions;
|
|
11827
|
+
export declare type PackageDimensionsForm = io.flow.v0.models.PackageDimensionsForm;
|
|
11828
|
+
export declare type PackageDimensionsSource = io.flow.v0.enums.PackageDimensionsSource;
|
|
11504
11829
|
export declare type Packaging = io.flow.v0.models.Packaging;
|
|
11505
11830
|
export declare type ParentTransactionSummary = io.flow.v0.models.ParentTransactionSummary;
|
|
11506
11831
|
export declare type PartnerCenter = io.flow.v0.models.PartnerCenter;
|
|
@@ -11637,6 +11962,7 @@ export declare type PaymentUpserted = io.flow.v0.models.PaymentUpserted;
|
|
|
11637
11962
|
export declare type PaymentVersion = io.flow.v0.models.PaymentVersion;
|
|
11638
11963
|
export declare type PayoutAttachment = io.flow.v0.models.PayoutAttachment;
|
|
11639
11964
|
export declare type PayoutAttachmentType = io.flow.v0.enums.PayoutAttachmentType;
|
|
11965
|
+
export declare type PayoutReference = io.flow.v0.models.PayoutReference;
|
|
11640
11966
|
export declare type PayoutStatus = io.flow.v0.unions.PayoutStatus;
|
|
11641
11967
|
export declare type PayoutStatusFailed = io.flow.v0.models.PayoutStatusFailed;
|
|
11642
11968
|
export declare type PayoutStatusFailureCode = io.flow.v0.enums.PayoutStatusFailureCode;
|
|
@@ -11657,9 +11983,11 @@ export declare type PfsInventoryCheckResponse = io.flow.v0.models.PfsInventoryCh
|
|
|
11657
11983
|
export declare type PfsInventoryCheckResponseItem = io.flow.v0.models.PfsInventoryCheckResponseItem;
|
|
11658
11984
|
export declare type PfsInventoryStatus = io.flow.v0.models.PfsInventoryStatus;
|
|
11659
11985
|
export declare type PhysicalDelivery = io.flow.v0.models.PhysicalDelivery;
|
|
11986
|
+
export declare type PhysicalDeliveryPreferredService = io.flow.v0.models.PhysicalDeliveryPreferredService;
|
|
11660
11987
|
export declare type PhysicalDeliverySpecialSerivce = io.flow.v0.enums.PhysicalDeliverySpecialSerivce;
|
|
11661
11988
|
export declare type PostPaymentRedirectUrls = io.flow.v0.models.PostPaymentRedirectUrls;
|
|
11662
11989
|
export declare type PostalType = io.flow.v0.enums.PostalType;
|
|
11990
|
+
export declare type PreferredServiceSelectionStrategy = io.flow.v0.enums.PreferredServiceSelectionStrategy;
|
|
11663
11991
|
export declare type Price = io.flow.v0.models.Price;
|
|
11664
11992
|
export declare type PriceAccuracy = io.flow.v0.enums.PriceAccuracy;
|
|
11665
11993
|
export declare type PriceBook = io.flow.v0.models.PriceBook;
|
|
@@ -11908,6 +12236,7 @@ export declare type ShippingConfigurationVersion = io.flow.v0.models.ShippingCon
|
|
|
11908
12236
|
export declare type ShippingLabel = io.flow.v0.models.ShippingLabel;
|
|
11909
12237
|
export declare type ShippingLabelDocument = io.flow.v0.models.ShippingLabelDocument;
|
|
11910
12238
|
export declare type ShippingLabelForm = io.flow.v0.unions.ShippingLabelForm;
|
|
12239
|
+
export declare type ShippingLabelHopCostItemizedEstimate = io.flow.v0.models.ShippingLabelHopCostItemizedEstimate;
|
|
11911
12240
|
export declare type ShippingLabelHopSummary = io.flow.v0.models.ShippingLabelHopSummary;
|
|
11912
12241
|
export declare type ShippingLabelLaneSummary = io.flow.v0.models.ShippingLabelLaneSummary;
|
|
11913
12242
|
export declare type ShippingLabelPackage = io.flow.v0.models.ShippingLabelPackage;
|
|
@@ -11982,6 +12311,7 @@ export declare type Statement = io.flow.v0.models.Statement;
|
|
|
11982
12311
|
export declare type StatementAttachmentType = io.flow.v0.enums.StatementAttachmentType;
|
|
11983
12312
|
export declare type StatementDeleted = io.flow.v0.models.StatementDeleted;
|
|
11984
12313
|
export declare type StatementUpserted = io.flow.v0.models.StatementUpserted;
|
|
12314
|
+
export declare type StoredMethodUsageStep = io.flow.v0.enums.StoredMethodUsageStep;
|
|
11985
12315
|
export declare type Strategy = io.flow.v0.enums.Strategy;
|
|
11986
12316
|
export declare type StreetAddress = io.flow.v0.models.StreetAddress;
|
|
11987
12317
|
export declare type StripeAuthenticationData = io.flow.v0.models.StripeAuthenticationData;
|
|
@@ -12044,7 +12374,6 @@ export declare type TaxSetting = io.flow.v0.unions.TaxSetting;
|
|
|
12044
12374
|
export declare type TaxVerificationResult = io.flow.v0.enums.TaxVerificationResult;
|
|
12045
12375
|
export declare type TaxabilityType = io.flow.v0.enums.TaxabilityType;
|
|
12046
12376
|
export declare type TaxabilityValue = io.flow.v0.enums.TaxabilityValue;
|
|
12047
|
-
export declare type Test = io.flow.v0.models.Test;
|
|
12048
12377
|
export declare type TestUpserted = io.flow.v0.models.TestUpserted;
|
|
12049
12378
|
export declare type ThirdPartyLogisticsPartner = io.flow.v0.models.ThirdPartyLogisticsPartner;
|
|
12050
12379
|
export declare type ThreeDSecure = io.flow.v0.models.ThreeDSecure;
|
|
@@ -12107,15 +12436,22 @@ export declare type TradeAgreementStatus = io.flow.v0.enums.TradeAgreementStatus
|
|
|
12107
12436
|
export declare type Transaction = io.flow.v0.models.Transaction;
|
|
12108
12437
|
export declare type TransactionDetails = io.flow.v0.unions.TransactionDetails;
|
|
12109
12438
|
export declare type TransactionDetailsCard = io.flow.v0.models.TransactionDetailsCard;
|
|
12439
|
+
export declare type TransactionMetadata = io.flow.v0.unions.TransactionMetadata;
|
|
12440
|
+
export declare type TransactionMetadataShippingLabel = io.flow.v0.models.TransactionMetadataShippingLabel;
|
|
12110
12441
|
export declare type TransactionNetworkDetailsCard = io.flow.v0.models.TransactionNetworkDetailsCard;
|
|
12442
|
+
export declare type TransactionPayoutPendingReason = io.flow.v0.enums.TransactionPayoutPendingReason;
|
|
12443
|
+
export declare type TransactionReference = io.flow.v0.models.TransactionReference;
|
|
12111
12444
|
export declare type TransactionSource = io.flow.v0.enums.TransactionSource;
|
|
12112
12445
|
export declare type TransactionUpserted = io.flow.v0.models.TransactionUpserted;
|
|
12113
12446
|
export declare type TransitEstimate = io.flow.v0.models.TransitEstimate;
|
|
12114
12447
|
export declare type TransitWindow = io.flow.v0.models.TransitWindow;
|
|
12115
12448
|
export declare type UltimateBeneficiaryOwner = io.flow.v0.models.UltimateBeneficiaryOwner;
|
|
12116
12449
|
export declare type UnharmonizedItemExportType = io.flow.v0.models.UnharmonizedItemExportType;
|
|
12450
|
+
export declare type UnitOfLength = io.flow.v0.enums.UnitOfLength;
|
|
12117
12451
|
export declare type UnitOfMeasurement = io.flow.v0.enums.UnitOfMeasurement;
|
|
12118
12452
|
export declare type UnitOfTime = io.flow.v0.enums.UnitOfTime;
|
|
12453
|
+
export declare type UnitOfVolume = io.flow.v0.enums.UnitOfVolume;
|
|
12454
|
+
export declare type UnitOfWeight = io.flow.v0.enums.UnitOfWeight;
|
|
12119
12455
|
export declare type UpdatePolicy = io.flow.v0.enums.UpdatePolicy;
|
|
12120
12456
|
export declare type UpdateType = io.flow.v0.enums.UpdateType;
|
|
12121
12457
|
export declare type Upload = io.flow.v0.models.Upload;
|