@flowio/types 11.24.114 → 11.24.116
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 +388 -47
- package/dist/api.d.ts +66 -42
- package/package.json +2 -2
- package/src/api-internal.ts +464 -58
- package/src/api.ts +83 -57
package/src/api-internal.ts
CHANGED
|
@@ -2508,11 +2508,10 @@ declare namespace io.flow.payment.v0.models {
|
|
|
2508
2508
|
interface Transfer {
|
|
2509
2509
|
readonly id: string;
|
|
2510
2510
|
readonly type: io.flow.payment.v0.enums.TransferType;
|
|
2511
|
-
readonly
|
|
2512
|
-
readonly transferred_money: io.flow.payment.v0.models.ExchangedMoney;
|
|
2511
|
+
readonly base: io.flow.common.v0.models.Money;
|
|
2513
2512
|
readonly status: io.flow.payment.v0.enums.TransferStatus;
|
|
2514
2513
|
readonly created_at: string;
|
|
2515
|
-
readonly
|
|
2514
|
+
readonly authorization: io.flow.payment.v0.models.AuthorizationReference;
|
|
2516
2515
|
readonly transferred_at: string;
|
|
2517
2516
|
}
|
|
2518
2517
|
|
|
@@ -6423,6 +6422,12 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
6423
6422
|
readonly order_note?: string;
|
|
6424
6423
|
}
|
|
6425
6424
|
|
|
6425
|
+
interface ShopifyOrderRiskAssessment {
|
|
6426
|
+
readonly id: string;
|
|
6427
|
+
readonly risk_level: string;
|
|
6428
|
+
readonly assessment_created_at: string;
|
|
6429
|
+
}
|
|
6430
|
+
|
|
6426
6431
|
interface ShopifyProductBundle {
|
|
6427
6432
|
readonly id: string;
|
|
6428
6433
|
readonly underlying: io.flow.shopify.markets.internal.v0.models.ShopifyProductBundleUnderlying;
|
|
@@ -8419,6 +8424,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
8419
8424
|
| 'orders/updated'
|
|
8420
8425
|
| 'orders/delete'
|
|
8421
8426
|
| 'orders/edited'
|
|
8427
|
+
| 'orders/risk_assessment_changed'
|
|
8422
8428
|
| 'products/create'
|
|
8423
8429
|
| 'products/delete'
|
|
8424
8430
|
| 'products/update'
|
|
@@ -8965,6 +8971,12 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
8965
8971
|
readonly total_tax_set?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
8966
8972
|
}
|
|
8967
8973
|
|
|
8974
|
+
interface ShopifyOrderRiskAssessmentChanged {
|
|
8975
|
+
readonly order_id: number;
|
|
8976
|
+
readonly risk_level: string;
|
|
8977
|
+
readonly created_at: string;
|
|
8978
|
+
}
|
|
8979
|
+
|
|
8968
8980
|
interface ShopifyOrderShippingLine {
|
|
8969
8981
|
readonly code?: string;
|
|
8970
8982
|
readonly price: string;
|
|
@@ -10293,6 +10305,22 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
10293
10305
|
readonly registration: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
10294
10306
|
}
|
|
10295
10307
|
|
|
10308
|
+
interface ShopifyOrderRiskAssessmentDeleted {
|
|
10309
|
+
readonly discriminator: 'shopify_order_risk_assessment_deleted';
|
|
10310
|
+
readonly event_id: string;
|
|
10311
|
+
readonly timestamp: string;
|
|
10312
|
+
readonly organization: string;
|
|
10313
|
+
readonly id: string;
|
|
10314
|
+
}
|
|
10315
|
+
|
|
10316
|
+
interface ShopifyOrderRiskAssessmentUpserted {
|
|
10317
|
+
readonly discriminator: 'shopify_order_risk_assessment_upserted';
|
|
10318
|
+
readonly event_id: string;
|
|
10319
|
+
readonly timestamp: string;
|
|
10320
|
+
readonly organization: string;
|
|
10321
|
+
readonly assessment: io.flow.shopify.markets.internal.v0.models.ShopifyOrderRiskAssessment;
|
|
10322
|
+
}
|
|
10323
|
+
|
|
10296
10324
|
interface ShopifyProductBundleDeleted {
|
|
10297
10325
|
readonly discriminator: 'shopify_product_bundle_deleted';
|
|
10298
10326
|
readonly event_id: string;
|
|
@@ -10332,7 +10360,9 @@ declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
|
10332
10360
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted
|
|
10333
10361
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished
|
|
10334
10362
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted
|
|
10335
|
-
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted
|
|
10363
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted
|
|
10364
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentUpserted
|
|
10365
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted;
|
|
10336
10366
|
}
|
|
10337
10367
|
|
|
10338
10368
|
declare namespace io.flow.experience.v0.enums {
|
|
@@ -11726,6 +11756,13 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11726
11756
|
readonly amount: io.flow.common.v0.models.Money;
|
|
11727
11757
|
}
|
|
11728
11758
|
|
|
11759
|
+
interface OverweightPieceSurchargeServiceFee {
|
|
11760
|
+
readonly discriminator: 'overweight_piece_surcharge_service_fee';
|
|
11761
|
+
readonly weight_threshold?: number;
|
|
11762
|
+
readonly weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11763
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
11764
|
+
}
|
|
11765
|
+
|
|
11729
11766
|
interface PeakSurchargeByWeightServiceFee {
|
|
11730
11767
|
readonly discriminator: 'peak_surcharge_by_weight_service_fee';
|
|
11731
11768
|
readonly amount: io.flow.common.v0.models.Money;
|
|
@@ -11846,6 +11883,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11846
11883
|
interface RatecardForm {
|
|
11847
11884
|
readonly direction: io.flow.label.v0.enums.Direction;
|
|
11848
11885
|
readonly effective_at: string;
|
|
11886
|
+
readonly published_at?: string;
|
|
11849
11887
|
readonly origination_zones: io.flow.common.v0.models.Zone[];
|
|
11850
11888
|
readonly service: string;
|
|
11851
11889
|
readonly number?: string;
|
|
@@ -12031,6 +12069,7 @@ declare namespace io.flow.ratecard.v0.unions {
|
|
|
12031
12069
|
| io.flow.ratecard.v0.models.PeakSurchargeByWeightServiceFee
|
|
12032
12070
|
| io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeServiceFee
|
|
12033
12071
|
| io.flow.ratecard.v0.models.OversizePieceSurchargeServiceFee
|
|
12072
|
+
| io.flow.ratecard.v0.models.OverweightPieceSurchargeServiceFee
|
|
12034
12073
|
| io.flow.ratecard.v0.models.RemoteAreaByWeightServiceFee
|
|
12035
12074
|
| io.flow.ratecard.v0.models.AdditionalHandlingServiceFee
|
|
12036
12075
|
| io.flow.ratecard.v0.models.LargePackageServiceFee
|
|
@@ -15820,7 +15859,11 @@ declare namespace io.flow.fraud.v0.unions {
|
|
|
15820
15859
|
|
|
15821
15860
|
declare namespace io.flow.sellability.v0.enums {
|
|
15822
15861
|
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
15823
|
-
type SellabilityErrorCode =
|
|
15862
|
+
type SellabilityErrorCode =
|
|
15863
|
+
| 'insufficient_details'
|
|
15864
|
+
| 'ineligible_category'
|
|
15865
|
+
| 'wait_for_high_fidelity';
|
|
15866
|
+
type SellabilityRequestStatus = 'commit';
|
|
15824
15867
|
}
|
|
15825
15868
|
|
|
15826
15869
|
declare namespace io.flow.sellability.v0.models {
|
|
@@ -15835,11 +15878,11 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
15835
15878
|
interface ProductSellabilityForm {
|
|
15836
15879
|
readonly shop_id: string;
|
|
15837
15880
|
readonly product_id?: string;
|
|
15838
|
-
readonly request_id: string;
|
|
15839
15881
|
readonly name: string;
|
|
15840
15882
|
readonly price: io.flow.sellability.v0.models.ProductSellabilityPrice;
|
|
15841
15883
|
readonly description: string;
|
|
15842
15884
|
readonly taxonomy_category: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
15885
|
+
readonly status?: io.flow.sellability.v0.enums.SellabilityRequestStatus;
|
|
15843
15886
|
}
|
|
15844
15887
|
|
|
15845
15888
|
interface ProductSellabilityPrice {
|
|
@@ -15984,19 +16027,6 @@ declare namespace io.flow.organization.v0.models {
|
|
|
15984
16027
|
readonly environment: io.flow.common.v0.enums.Environment;
|
|
15985
16028
|
}
|
|
15986
16029
|
|
|
15987
|
-
interface OrganizationConfigurationReference {
|
|
15988
|
-
readonly id: string;
|
|
15989
|
-
}
|
|
15990
|
-
|
|
15991
|
-
interface OrganizationDefaultConfigurations {
|
|
15992
|
-
readonly id: string;
|
|
15993
|
-
readonly checkout_configuration: io.flow.organization.v0.models.OrganizationConfigurationReference;
|
|
15994
|
-
}
|
|
15995
|
-
|
|
15996
|
-
interface OrganizationDefaultConfigurationsForm {
|
|
15997
|
-
readonly id: string;
|
|
15998
|
-
}
|
|
15999
|
-
|
|
16000
16030
|
interface OrganizationForm {
|
|
16001
16031
|
readonly id?: string;
|
|
16002
16032
|
readonly name?: string;
|
|
@@ -16189,6 +16219,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16189
16219
|
| 'duty_rates_data_event'
|
|
16190
16220
|
| 'integration_test'
|
|
16191
16221
|
| 'unit_test';
|
|
16222
|
+
type ApplicablePreferentialRate = 'baby' | 'children';
|
|
16192
16223
|
type AutoRestrictRule =
|
|
16193
16224
|
| 'prr-3ce7d556f2464314ab0a3e8eee33e0ce'
|
|
16194
16225
|
| 'prr-599c6246a1a24752aeb85e8f79030781'
|
|
@@ -16540,12 +16571,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16540
16571
|
| 'Age0_10'
|
|
16541
16572
|
| 'Age10_13'
|
|
16542
16573
|
| 'Age13_14';
|
|
16574
|
+
type CommercialInvoiceVersion = 'v2_2_1';
|
|
16543
16575
|
type Company = 'globale' | 'flow';
|
|
16544
16576
|
type ComplianceType = 'weee';
|
|
16545
|
-
type
|
|
16577
|
+
type ConnectReportPaymentTransferType =
|
|
16546
16578
|
| 'ManagedMarketsRefundDebit'
|
|
16547
16579
|
| 'ManagedMarketsDutiesAndTaxesAdjustmentDebit'
|
|
16548
|
-
| 'ManagedMarketsDisputedAmountDebit'
|
|
16580
|
+
| 'ManagedMarketsDisputedAmountDebit';
|
|
16581
|
+
type ConnectReportTransferTransferType =
|
|
16549
16582
|
| 'ManagedMarketsChargeCredit'
|
|
16550
16583
|
| 'ManagedMarketsDisputeWonAmountCredit'
|
|
16551
16584
|
| 'ManagedMarketsDutiesAndTaxesAdjustmentCredit';
|
|
@@ -16827,8 +16860,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16827
16860
|
| 'unassigned_merchant_guid_deleted'
|
|
16828
16861
|
| 'partner_tracking_subscription_upserted'
|
|
16829
16862
|
| 'partner_tracking_subscription_deleted'
|
|
16830
|
-
| 'spp_tracker_update_request_upserted'
|
|
16831
|
-
| 'spp_tracker_update_request_deleted'
|
|
16832
16863
|
| 'partner_request_upserted'
|
|
16833
16864
|
| 'partner_request_deleted'
|
|
16834
16865
|
| 'internal_authorization_upserted'
|
|
@@ -16861,6 +16892,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16861
16892
|
| 'paypal_dispute_deleted'
|
|
16862
16893
|
| 'product_restriction_rule_decision_upserted'
|
|
16863
16894
|
| 'product_restriction_rule_decision_deleted'
|
|
16895
|
+
| 'product_restriction_state_inserted'
|
|
16896
|
+
| 'product_restriction_state_updated'
|
|
16897
|
+
| 'product_restriction_state_deleted'
|
|
16864
16898
|
| 'order_rates_published_v3'
|
|
16865
16899
|
| 'ratecard_dimension_estimate_upserted'
|
|
16866
16900
|
| 'ratecard_dimension_estimate_deleted'
|
|
@@ -16912,6 +16946,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16912
16946
|
| 'shopify_incoterm_summary_error_published'
|
|
16913
16947
|
| 'shopify_markets_best_selling_product_upserted'
|
|
16914
16948
|
| 'shopify_markets_best_selling_product_deleted'
|
|
16949
|
+
| 'shopify_order_risk_assessment_upserted'
|
|
16950
|
+
| 'shopify_order_risk_assessment_deleted'
|
|
16915
16951
|
| 'shopify_product_create_upserted'
|
|
16916
16952
|
| 'shopify_product_create_deleted'
|
|
16917
16953
|
| 'shopify_product_update_upserted'
|
|
@@ -16994,6 +17030,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16994
17030
|
| 'catalog_to_flow'
|
|
16995
17031
|
| 'inventory_to_flow';
|
|
16996
17032
|
type FtpProtocol = 'sftp' | 'ftp';
|
|
17033
|
+
type GeIngestionFileStatus = 'pending' | 'processed';
|
|
16997
17034
|
type GoogleAnalyticsPlugin = 'ec';
|
|
16998
17035
|
type GraphqlServiceTypes =
|
|
16999
17036
|
| 'order_update_mutation'
|
|
@@ -17096,6 +17133,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17096
17133
|
| 'to_non_registered_business'
|
|
17097
17134
|
| 'to_registered_business'
|
|
17098
17135
|
| 'flash_title';
|
|
17136
|
+
type NiallItemType = 'physical' | 'digital';
|
|
17099
17137
|
type NoLiabilityReasonCode =
|
|
17100
17138
|
| 'zero_basis'
|
|
17101
17139
|
| 'zero_rate_on_goods'
|
|
@@ -17108,6 +17146,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17108
17146
|
| 'duty_free_domestic'
|
|
17109
17147
|
| 'duty_free_intra_community'
|
|
17110
17148
|
| 'duty_free_by_trade_agreement';
|
|
17149
|
+
type NonL4LTaxDutyFxTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
17111
17150
|
type OnboardingAuditMessageLevel = 'info' | 'warning' | 'error';
|
|
17112
17151
|
type OnboardingAuditResult = 'pass' | 'warning' | 'fail';
|
|
17113
17152
|
type OnboardingAuditThemeKey =
|
|
@@ -17190,6 +17229,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17190
17229
|
| 'fully_reviewed'
|
|
17191
17230
|
| 'rejected'
|
|
17192
17231
|
| 'unscreened';
|
|
17232
|
+
type OrganizationSource = 'shopify' | 'enterprise';
|
|
17193
17233
|
type OutputStyle = 'flow' | 'shopify_p1';
|
|
17194
17234
|
type Owner = 'flow' | 'organization';
|
|
17195
17235
|
type PaymentShortUrlDiscriminator = 'adyen_3ds2';
|
|
@@ -17211,6 +17251,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17211
17251
|
| 'reversal'
|
|
17212
17252
|
| 'credit';
|
|
17213
17253
|
type PaymentTerm = 'net7' | 'net15' | 'net30';
|
|
17254
|
+
type PrateekItemType = 'physical' | 'digital';
|
|
17214
17255
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
17215
17256
|
type PriceSelector = 'minimum' | 'maximum';
|
|
17216
17257
|
type ProcessingTransactionType =
|
|
@@ -17282,6 +17323,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17282
17323
|
type ResponsibleParty = 'flow' | 'organization';
|
|
17283
17324
|
type RestrictionAction = 'prohibited' | 'restricted';
|
|
17284
17325
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
17326
|
+
type RestrictionOrganizationChannel =
|
|
17327
|
+
| 'shopify'
|
|
17328
|
+
| 'enterprise'
|
|
17329
|
+
| 'shopify-sandbox'
|
|
17330
|
+
| 'enterprise-sandbox';
|
|
17331
|
+
type RestrictionOrganizationSource = 'shopify' | 'enterprise';
|
|
17332
|
+
type RestrictionRuleExceptionAction = 'allow' | 'deny';
|
|
17333
|
+
type RestrictionStateReviewStatus = 'reviewed' | 'in_review';
|
|
17285
17334
|
type RestrictionStatus =
|
|
17286
17335
|
| 'pending'
|
|
17287
17336
|
| 'in_review'
|
|
@@ -18577,6 +18626,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18577
18626
|
readonly duty: io.flow.common.v0.models.Price;
|
|
18578
18627
|
readonly trueup: io.flow.common.v0.models.Price;
|
|
18579
18628
|
readonly carrier_charge: io.flow.common.v0.models.Price;
|
|
18629
|
+
readonly duty_refund: io.flow.common.v0.models.Price;
|
|
18630
|
+
readonly ge_revenue_share: io.flow.common.v0.models.Price;
|
|
18631
|
+
readonly non_l4l_tax_duty_fx: io.flow.common.v0.models.Price;
|
|
18580
18632
|
readonly ending_balance: io.flow.common.v0.models.Price;
|
|
18581
18633
|
readonly tax_refund: io.flow.common.v0.models.Price;
|
|
18582
18634
|
}
|
|
@@ -20818,10 +20870,40 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20818
20870
|
readonly passphrase_ids: string[];
|
|
20819
20871
|
}
|
|
20820
20872
|
|
|
20873
|
+
interface EnrichedLineItemForm {
|
|
20874
|
+
readonly form: io.flow.common.v0.models.LineItemForm;
|
|
20875
|
+
readonly customs_product_name?: string;
|
|
20876
|
+
readonly tariff_code?: string;
|
|
20877
|
+
readonly customs_description?: string;
|
|
20878
|
+
readonly hs_description?: string;
|
|
20879
|
+
readonly country_of_origin: string;
|
|
20880
|
+
readonly price_composition_rate: number;
|
|
20881
|
+
readonly duty_composition_rate: number;
|
|
20882
|
+
readonly export_control_classification_number: string;
|
|
20883
|
+
readonly sub_item_number?: string;
|
|
20884
|
+
readonly item_type?: string;
|
|
20885
|
+
readonly material?: string;
|
|
20886
|
+
readonly construction?: string;
|
|
20887
|
+
readonly gender?: string;
|
|
20888
|
+
}
|
|
20889
|
+
|
|
20890
|
+
interface EnrichedShippingLabelPackage {
|
|
20891
|
+
readonly dimensions: io.flow.common.v0.models.Dimension;
|
|
20892
|
+
readonly items: io.flow.internal.v0.models.EnrichedLineItemForm[];
|
|
20893
|
+
readonly reference_number?: string;
|
|
20894
|
+
}
|
|
20895
|
+
|
|
20821
20896
|
interface EntityReference {
|
|
20822
20897
|
readonly id: string;
|
|
20823
20898
|
}
|
|
20824
20899
|
|
|
20900
|
+
interface EntityReferenceNumber {
|
|
20901
|
+
readonly short_name: string;
|
|
20902
|
+
readonly number: string;
|
|
20903
|
+
readonly issuing_country?: io.flow.reference.v0.models.Country;
|
|
20904
|
+
readonly display_name?: string;
|
|
20905
|
+
}
|
|
20906
|
+
|
|
20825
20907
|
interface ErpFlowFile {
|
|
20826
20908
|
readonly id: string;
|
|
20827
20909
|
readonly type: io.flow.internal.v0.enums.ErpFileType;
|
|
@@ -22328,6 +22410,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22328
22410
|
readonly fiserv_authentication_data: io.flow.internal.v0.models.FiservAuthenticationDataReference;
|
|
22329
22411
|
}
|
|
22330
22412
|
|
|
22413
|
+
interface InternalItem {
|
|
22414
|
+
readonly id: string;
|
|
22415
|
+
readonly organization: string;
|
|
22416
|
+
readonly catalog: string;
|
|
22417
|
+
readonly name: string;
|
|
22418
|
+
readonly number: string;
|
|
22419
|
+
readonly currency: string;
|
|
22420
|
+
readonly price: number;
|
|
22421
|
+
readonly categories: string[];
|
|
22422
|
+
readonly attributes: Record<string, string>;
|
|
22423
|
+
readonly sku?: string;
|
|
22424
|
+
readonly barcode?: string;
|
|
22425
|
+
}
|
|
22426
|
+
|
|
22331
22427
|
interface InternalItemForm {
|
|
22332
22428
|
readonly id: string;
|
|
22333
22429
|
readonly item_form: io.flow.catalog.v0.models.ItemForm;
|
|
@@ -22391,6 +22487,78 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22391
22487
|
readonly total: io.flow.common.v0.models.Price;
|
|
22392
22488
|
}
|
|
22393
22489
|
|
|
22490
|
+
interface InvoiceData {
|
|
22491
|
+
readonly organization_id: string;
|
|
22492
|
+
readonly order_number: string;
|
|
22493
|
+
readonly invoice_reference: string;
|
|
22494
|
+
readonly signature_url: string;
|
|
22495
|
+
readonly signature_date: string;
|
|
22496
|
+
readonly signature_name: string;
|
|
22497
|
+
readonly line_items: io.flow.internal.v0.models.InvoiceDataLineItem[];
|
|
22498
|
+
readonly currency: io.flow.reference.v0.models.Currency;
|
|
22499
|
+
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
22500
|
+
readonly delivered_duty_text: string;
|
|
22501
|
+
readonly transaction_date: string;
|
|
22502
|
+
readonly origin: io.flow.internal.v0.models.ValidatedAddress;
|
|
22503
|
+
readonly destination: io.flow.internal.v0.models.ValidatedAddress;
|
|
22504
|
+
readonly billing_address?: io.flow.internal.v0.models.ValidatedAddress;
|
|
22505
|
+
readonly service: io.flow.reference.v0.models.CarrierService;
|
|
22506
|
+
readonly flow_tracking_number: string;
|
|
22507
|
+
readonly rex_number?: string;
|
|
22508
|
+
readonly weee_number?: string;
|
|
22509
|
+
readonly business_gst_numbers: io.flow.internal.v0.models.EntityReferenceNumber[];
|
|
22510
|
+
readonly destination_identification_numbers?: io.flow.internal.v0.models.EntityReferenceNumber[];
|
|
22511
|
+
readonly vat_name: string;
|
|
22512
|
+
readonly item_identifier_column_name: string;
|
|
22513
|
+
readonly feature_show_merchant_id: boolean;
|
|
22514
|
+
readonly shipping_pricing: io.flow.internal.v0.models.ShippingPricing;
|
|
22515
|
+
readonly shipment_recipient?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
22516
|
+
readonly eu_preferential_origin?: string;
|
|
22517
|
+
readonly customs_master_file_number?: string;
|
|
22518
|
+
readonly merchant_of_record_entity?: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
22519
|
+
readonly weight_measured?: string;
|
|
22520
|
+
readonly notes_export_declaration?: string;
|
|
22521
|
+
readonly notes_import_duty_taxes_due?: string;
|
|
22522
|
+
readonly invoice_id: string;
|
|
22523
|
+
readonly invoice_date: string;
|
|
22524
|
+
readonly invoice_number?: string;
|
|
22525
|
+
readonly invoice_version: io.flow.internal.v0.enums.CommercialInvoiceVersion;
|
|
22526
|
+
readonly shipping_price: number;
|
|
22527
|
+
readonly goods_value: number;
|
|
22528
|
+
readonly total_taxes: number;
|
|
22529
|
+
readonly total_duties: number;
|
|
22530
|
+
readonly customs_value: number;
|
|
22531
|
+
readonly total_value: number;
|
|
22532
|
+
readonly usa_exporter_identifier_number_if_value_over_threshold?: string;
|
|
22533
|
+
readonly feature_israel_notes_import_duty_and_taxes_due: boolean;
|
|
22534
|
+
readonly feature_new_export_declaration: boolean;
|
|
22535
|
+
}
|
|
22536
|
+
|
|
22537
|
+
interface InvoiceDataLineItem {
|
|
22538
|
+
readonly i: number;
|
|
22539
|
+
readonly number: string;
|
|
22540
|
+
readonly quantity: number;
|
|
22541
|
+
readonly description: string;
|
|
22542
|
+
readonly tariff_code: string;
|
|
22543
|
+
readonly country_of_origin: string;
|
|
22544
|
+
readonly display_country_of_origin: string;
|
|
22545
|
+
readonly gst_paid: boolean;
|
|
22546
|
+
readonly gst_paid_text: string;
|
|
22547
|
+
readonly unit_price: number;
|
|
22548
|
+
readonly vat_price: number;
|
|
22549
|
+
readonly duty_price: number;
|
|
22550
|
+
readonly discount_price: number;
|
|
22551
|
+
readonly total_price: number;
|
|
22552
|
+
readonly export_control_classification_number: string;
|
|
22553
|
+
readonly manufacturer_id?: string;
|
|
22554
|
+
readonly display_number: string;
|
|
22555
|
+
readonly item_type?: string;
|
|
22556
|
+
readonly construction?: string;
|
|
22557
|
+
readonly gender?: string;
|
|
22558
|
+
readonly material?: string;
|
|
22559
|
+
readonly url?: string;
|
|
22560
|
+
}
|
|
22561
|
+
|
|
22394
22562
|
interface InvoiceInfoForm {
|
|
22395
22563
|
readonly invoice_number: string;
|
|
22396
22564
|
readonly invoice_date: string;
|
|
@@ -22510,6 +22678,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22510
22678
|
readonly duty_composition_rate: number;
|
|
22511
22679
|
readonly export_control_classification_number?: string;
|
|
22512
22680
|
readonly labels?: io.flow.internal.v0.models.CustomsProductLabels;
|
|
22681
|
+
readonly applicable_preferential_rate?: io.flow.internal.v0.enums.ApplicablePreferentialRate;
|
|
22513
22682
|
}
|
|
22514
22683
|
|
|
22515
22684
|
interface ItemDimensionEstimate {
|
|
@@ -23614,6 +23783,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23614
23783
|
readonly conditions?: string;
|
|
23615
23784
|
}
|
|
23616
23785
|
|
|
23786
|
+
interface NiallItem {
|
|
23787
|
+
readonly id: string;
|
|
23788
|
+
readonly number: string;
|
|
23789
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
23790
|
+
readonly description?: string;
|
|
23791
|
+
readonly type: io.flow.internal.v0.enums.NiallItemType;
|
|
23792
|
+
readonly added_on: string;
|
|
23793
|
+
}
|
|
23794
|
+
|
|
23795
|
+
interface NiallItemForm {
|
|
23796
|
+
readonly number: string;
|
|
23797
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
23798
|
+
readonly description?: string;
|
|
23799
|
+
readonly type: io.flow.internal.v0.enums.NiallItemType;
|
|
23800
|
+
readonly added_on: string;
|
|
23801
|
+
}
|
|
23802
|
+
|
|
23617
23803
|
interface NoCalculatedTaxAmount {
|
|
23618
23804
|
readonly discriminator: 'no_calculated_tax_amount';
|
|
23619
23805
|
readonly amount: number;
|
|
@@ -25223,6 +25409,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25223
25409
|
readonly rate: number;
|
|
25224
25410
|
}
|
|
25225
25411
|
|
|
25412
|
+
interface PrateekItem {
|
|
25413
|
+
readonly id: string;
|
|
25414
|
+
readonly number: string;
|
|
25415
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
25416
|
+
readonly description?: string;
|
|
25417
|
+
readonly type: io.flow.internal.v0.enums.PrateekItemType;
|
|
25418
|
+
readonly added_on: string;
|
|
25419
|
+
}
|
|
25420
|
+
|
|
25421
|
+
interface PrateekItemForm {
|
|
25422
|
+
readonly number: string;
|
|
25423
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
25424
|
+
readonly description?: string;
|
|
25425
|
+
readonly type: io.flow.internal.v0.enums.PrateekItemType;
|
|
25426
|
+
readonly added_on: string;
|
|
25427
|
+
}
|
|
25428
|
+
|
|
25226
25429
|
interface Prediction {
|
|
25227
25430
|
readonly main_material: string;
|
|
25228
25431
|
readonly gender: string;
|
|
@@ -25429,11 +25632,55 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25429
25632
|
readonly product_restriction_rule_decision: io.flow.internal.v0.models.ProductRestrictionRuleDecision;
|
|
25430
25633
|
}
|
|
25431
25634
|
|
|
25635
|
+
interface ProductRestrictionState {
|
|
25636
|
+
readonly id: string;
|
|
25637
|
+
readonly organization_id: string;
|
|
25638
|
+
readonly product_number: string;
|
|
25639
|
+
readonly review_status: io.flow.internal.v0.enums.RestrictionStateReviewStatus;
|
|
25640
|
+
readonly pending_restriction_count?: number;
|
|
25641
|
+
readonly pending_verification_count?: number;
|
|
25642
|
+
readonly oldest_pending_restriction_date?: string;
|
|
25643
|
+
readonly oldest_pending_verification_date?: string;
|
|
25644
|
+
}
|
|
25645
|
+
|
|
25646
|
+
interface ProductRestrictionStateDeleted {
|
|
25647
|
+
readonly discriminator: 'product_restriction_state_deleted';
|
|
25648
|
+
readonly event_id: string;
|
|
25649
|
+
readonly timestamp: string;
|
|
25650
|
+
readonly organization: string;
|
|
25651
|
+
readonly product_restriction_state: io.flow.internal.v0.models.ProductRestrictionState;
|
|
25652
|
+
}
|
|
25653
|
+
|
|
25654
|
+
interface ProductRestrictionStateInserted {
|
|
25655
|
+
readonly discriminator: 'product_restriction_state_inserted';
|
|
25656
|
+
readonly event_id: string;
|
|
25657
|
+
readonly timestamp: string;
|
|
25658
|
+
readonly organization: string;
|
|
25659
|
+
readonly product_restriction_state: io.flow.internal.v0.models.ProductRestrictionState;
|
|
25660
|
+
}
|
|
25661
|
+
|
|
25662
|
+
interface ProductRestrictionStateUpdated {
|
|
25663
|
+
readonly discriminator: 'product_restriction_state_updated';
|
|
25664
|
+
readonly event_id: string;
|
|
25665
|
+
readonly timestamp: string;
|
|
25666
|
+
readonly organization: string;
|
|
25667
|
+
readonly previous_product_restriction_state: io.flow.internal.v0.models.ProductRestrictionState;
|
|
25668
|
+
readonly product_restriction_state: io.flow.internal.v0.models.ProductRestrictionState;
|
|
25669
|
+
}
|
|
25670
|
+
|
|
25432
25671
|
interface ProductReviewHistory {
|
|
25433
25672
|
readonly product_id: string;
|
|
25434
25673
|
readonly reviews: io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
|
|
25435
25674
|
}
|
|
25436
25675
|
|
|
25676
|
+
interface ProductSellabilityResult {
|
|
25677
|
+
readonly shop_id: string;
|
|
25678
|
+
readonly product_number: string;
|
|
25679
|
+
readonly request_id: string;
|
|
25680
|
+
readonly hs6_code: string;
|
|
25681
|
+
readonly restricted_regions: string[];
|
|
25682
|
+
}
|
|
25683
|
+
|
|
25437
25684
|
interface ProductTransaction {
|
|
25438
25685
|
readonly transaction_amount: number;
|
|
25439
25686
|
readonly destination_amount: number;
|
|
@@ -26134,6 +26381,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26134
26381
|
readonly tax_inclusive?: boolean;
|
|
26135
26382
|
readonly duty_inclusive?: boolean;
|
|
26136
26383
|
readonly manual_payment?: boolean;
|
|
26384
|
+
readonly manual_capture?: boolean;
|
|
26137
26385
|
readonly partial_fulfillment?: boolean;
|
|
26138
26386
|
readonly partial_refund?: boolean;
|
|
26139
26387
|
}
|
|
@@ -26418,6 +26666,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26418
26666
|
readonly restriction_organization_status: io.flow.internal.v0.models.RestrictionOrganizationStatus;
|
|
26419
26667
|
}
|
|
26420
26668
|
|
|
26669
|
+
interface RestrictionOrganizationSummary {
|
|
26670
|
+
readonly id: string;
|
|
26671
|
+
readonly name: string;
|
|
26672
|
+
readonly environment: io.flow.common.v0.enums.Environment;
|
|
26673
|
+
readonly source: io.flow.internal.v0.enums.OrganizationSource;
|
|
26674
|
+
}
|
|
26675
|
+
|
|
26421
26676
|
interface RestrictionPending {
|
|
26422
26677
|
readonly rule: io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
26423
26678
|
readonly count: number;
|
|
@@ -26474,6 +26729,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26474
26729
|
readonly negative_keywords: string[];
|
|
26475
26730
|
readonly value_threshold_usd?: number;
|
|
26476
26731
|
readonly auto_review_criteria?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
26732
|
+
readonly source: io.flow.internal.v0.enums.RestrictionOrganizationSource;
|
|
26477
26733
|
}
|
|
26478
26734
|
|
|
26479
26735
|
interface RestrictionRuleDecisionForm {
|
|
@@ -26527,6 +26783,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26527
26783
|
readonly negative_keywords: string[];
|
|
26528
26784
|
readonly value_threshold_usd?: number;
|
|
26529
26785
|
readonly auto_review_criteria?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
26786
|
+
readonly source?: io.flow.internal.v0.enums.RestrictionOrganizationSource;
|
|
26530
26787
|
}
|
|
26531
26788
|
|
|
26532
26789
|
interface RestrictionRuleMetadata {
|
|
@@ -26887,6 +27144,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26887
27144
|
readonly customer_id: string;
|
|
26888
27145
|
}
|
|
26889
27146
|
|
|
27147
|
+
interface ShipmentCostSummary {
|
|
27148
|
+
readonly lane_id?: string;
|
|
27149
|
+
readonly ratecard_id?: string;
|
|
27150
|
+
readonly ratecard_owner: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
27151
|
+
readonly glbe_shipping_method_id?: string;
|
|
27152
|
+
readonly glbe_proposition_name?: string;
|
|
27153
|
+
readonly weight_break?: number;
|
|
27154
|
+
readonly channel_revenue_share_percentage?: number;
|
|
27155
|
+
readonly rate_level_key?: string;
|
|
27156
|
+
readonly cost_estimate_source: io.flow.label.v0.enums.CostEstimateSource;
|
|
27157
|
+
readonly cost: io.flow.common.v0.models.Money;
|
|
27158
|
+
}
|
|
27159
|
+
|
|
26890
27160
|
interface ShippingLane {
|
|
26891
27161
|
readonly origin: string;
|
|
26892
27162
|
readonly destination: string;
|
|
@@ -26896,6 +27166,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26896
27166
|
readonly id: string;
|
|
26897
27167
|
}
|
|
26898
27168
|
|
|
27169
|
+
interface ShippingPricing {
|
|
27170
|
+
readonly freight_cost: number;
|
|
27171
|
+
readonly customer_price: number;
|
|
27172
|
+
}
|
|
27173
|
+
|
|
26899
27174
|
interface Shop {
|
|
26900
27175
|
readonly id: string;
|
|
26901
27176
|
readonly organization?: io.flow.common.v0.models.OrganizationReference;
|
|
@@ -27492,6 +27767,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27492
27767
|
readonly attributes: io.flow.internal.v0.models.ShopifyOrderLineAttribute[];
|
|
27493
27768
|
}
|
|
27494
27769
|
|
|
27770
|
+
interface ShopifyOrderRiskAssessment {
|
|
27771
|
+
readonly id: string;
|
|
27772
|
+
readonly risk_level: string;
|
|
27773
|
+
readonly assessment_created_at: string;
|
|
27774
|
+
}
|
|
27775
|
+
|
|
27776
|
+
interface ShopifyOrderRiskAssessmentDeleted {
|
|
27777
|
+
readonly discriminator: 'shopify_order_risk_assessment_deleted';
|
|
27778
|
+
readonly event_id: string;
|
|
27779
|
+
readonly timestamp: string;
|
|
27780
|
+
readonly organization: string;
|
|
27781
|
+
readonly id: string;
|
|
27782
|
+
}
|
|
27783
|
+
|
|
27784
|
+
interface ShopifyOrderRiskAssessmentUpserted {
|
|
27785
|
+
readonly discriminator: 'shopify_order_risk_assessment_upserted';
|
|
27786
|
+
readonly event_id: string;
|
|
27787
|
+
readonly timestamp: string;
|
|
27788
|
+
readonly organization: string;
|
|
27789
|
+
readonly assessment: io.flow.internal.v0.models.ShopifyOrderRiskAssessment;
|
|
27790
|
+
}
|
|
27791
|
+
|
|
27495
27792
|
interface ShopifyOrganizationSettings {
|
|
27496
27793
|
readonly id: string;
|
|
27497
27794
|
readonly process_label: boolean;
|
|
@@ -27923,26 +28220,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27923
28220
|
readonly spot_rate: io.flow.internal.v0.models.SpotRate;
|
|
27924
28221
|
}
|
|
27925
28222
|
|
|
27926
|
-
interface SppTrackerUpdateRequest {
|
|
27927
|
-
readonly id: string;
|
|
27928
|
-
readonly tracking_subscription: io.flow.internal.v0.models.TrackingSubscription;
|
|
27929
|
-
readonly created_at: string;
|
|
27930
|
-
}
|
|
27931
|
-
|
|
27932
|
-
interface SppTrackerUpdateRequestDeleted {
|
|
27933
|
-
readonly discriminator: 'spp_tracker_update_request_deleted';
|
|
27934
|
-
readonly event_id: string;
|
|
27935
|
-
readonly timestamp: string;
|
|
27936
|
-
readonly id: string;
|
|
27937
|
-
}
|
|
27938
|
-
|
|
27939
|
-
interface SppTrackerUpdateRequestUpserted {
|
|
27940
|
-
readonly discriminator: 'spp_tracker_update_request_upserted';
|
|
27941
|
-
readonly event_id: string;
|
|
27942
|
-
readonly timestamp: string;
|
|
27943
|
-
readonly spp_tracker_update_request: io.flow.internal.v0.models.SppTrackerUpdateRequest;
|
|
27944
|
-
}
|
|
27945
|
-
|
|
27946
28223
|
interface StandaloneAttachment {
|
|
27947
28224
|
readonly id: string;
|
|
27948
28225
|
readonly statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
@@ -28105,8 +28382,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28105
28382
|
readonly payment_method_type?: string;
|
|
28106
28383
|
readonly card_brand?: string;
|
|
28107
28384
|
readonly statement_descriptor?: string;
|
|
28108
|
-
readonly
|
|
28109
|
-
readonly transfer_metadata?: any /*object*/;
|
|
28385
|
+
readonly metadata?: io.flow.internal.v0.unions.StripeConnectReportRecordMetadata;
|
|
28110
28386
|
}
|
|
28111
28387
|
|
|
28112
28388
|
interface StripeConnectReportRecordDeleted {
|
|
@@ -28117,20 +28393,40 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28117
28393
|
}
|
|
28118
28394
|
|
|
28119
28395
|
interface StripeConnectReportRecordPaymentMetadata {
|
|
28396
|
+
readonly discriminator: 'stripe_connect_report_record_payment_metadata';
|
|
28120
28397
|
readonly shop_id?: number;
|
|
28121
28398
|
readonly shop_plan?: io.flow.internal.v0.enums.ShopifyPlanType;
|
|
28122
28399
|
readonly checkout_id?: string;
|
|
28123
28400
|
readonly order_id?: number;
|
|
28124
28401
|
readonly order_transaction_id?: number;
|
|
28125
|
-
readonly transfer_type?: io.flow.internal.v0.enums.
|
|
28402
|
+
readonly transfer_type?: io.flow.internal.v0.enums.ConnectReportPaymentTransferType;
|
|
28126
28403
|
readonly transfer_exchange_rate?: number;
|
|
28127
28404
|
readonly charge_total?: number;
|
|
28128
28405
|
readonly charge_currency?: string;
|
|
28129
28406
|
readonly charge_exchange_rate?: number;
|
|
28407
|
+
readonly refund_exchange_rate?: number;
|
|
28130
28408
|
readonly duties?: number;
|
|
28131
28409
|
readonly import_taxes?: number;
|
|
28132
|
-
readonly
|
|
28133
|
-
readonly
|
|
28410
|
+
readonly mor_fees?: number;
|
|
28411
|
+
readonly mor_foreign_exchange_fees?: number;
|
|
28412
|
+
}
|
|
28413
|
+
|
|
28414
|
+
interface StripeConnectReportRecordTransferMetadata {
|
|
28415
|
+
readonly discriminator: 'stripe_connect_report_record_transfer_metadata';
|
|
28416
|
+
readonly shop_id?: number;
|
|
28417
|
+
readonly order_id?: number;
|
|
28418
|
+
readonly order_transaction_id?: number;
|
|
28419
|
+
readonly transfer_type?: io.flow.internal.v0.enums.ConnectReportTransferTransferType;
|
|
28420
|
+
readonly charge_total?: number;
|
|
28421
|
+
readonly charge_currency?: string;
|
|
28422
|
+
readonly charge_exchange_rate?: number;
|
|
28423
|
+
readonly duties?: number;
|
|
28424
|
+
readonly import_taxes?: number;
|
|
28425
|
+
readonly mor_fees?: number;
|
|
28426
|
+
readonly mor_foreign_exchange_fees?: number;
|
|
28427
|
+
readonly merchant_account_currency?: string;
|
|
28428
|
+
readonly amount_in_merchant_account_currency?: number;
|
|
28429
|
+
readonly payout_exchange_rate?: number;
|
|
28134
28430
|
}
|
|
28135
28431
|
|
|
28136
28432
|
interface StripeConnectReportRecordUpserted {
|
|
@@ -29104,6 +29400,53 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29104
29400
|
readonly customer_bundle?: io.flow.customer.v0.models.CustomerBundle;
|
|
29105
29401
|
}
|
|
29106
29402
|
|
|
29403
|
+
interface ValidatedAddress {
|
|
29404
|
+
readonly company_name: string;
|
|
29405
|
+
readonly person_name: string;
|
|
29406
|
+
readonly phone: string;
|
|
29407
|
+
readonly email: string;
|
|
29408
|
+
readonly original_streets: string[];
|
|
29409
|
+
readonly city: string;
|
|
29410
|
+
readonly province: string;
|
|
29411
|
+
readonly postal: string;
|
|
29412
|
+
readonly country: io.flow.reference.v0.models.Country;
|
|
29413
|
+
readonly original_address: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
29414
|
+
}
|
|
29415
|
+
|
|
29416
|
+
interface ValidatedShippingData {
|
|
29417
|
+
readonly organization: string;
|
|
29418
|
+
readonly reference_id?: string;
|
|
29419
|
+
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
29420
|
+
readonly merchant_of_record_entity?: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
29421
|
+
readonly destination: io.flow.internal.v0.models.ValidatedAddress;
|
|
29422
|
+
readonly origin: io.flow.internal.v0.models.ValidatedAddress;
|
|
29423
|
+
readonly service: io.flow.reference.v0.models.CarrierService;
|
|
29424
|
+
readonly package: io.flow.internal.v0.models.EnrichedShippingLabelPackage;
|
|
29425
|
+
readonly total_catalog_item_value: io.flow.common.v0.models.Money;
|
|
29426
|
+
readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
29427
|
+
readonly distance_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
29428
|
+
readonly flow_tracking_number: string;
|
|
29429
|
+
readonly center?: io.flow.fulfillment.v0.models.Center;
|
|
29430
|
+
readonly catalog_items: io.flow.internal.v0.models.InternalItem[];
|
|
29431
|
+
readonly order: io.flow.experience.v0.models.Order;
|
|
29432
|
+
readonly window: io.flow.common.v0.models.DatetimeRange;
|
|
29433
|
+
readonly id: string;
|
|
29434
|
+
readonly shipment_recipient: io.flow.label.v0.enums.ShipmentRecipient;
|
|
29435
|
+
readonly request_id: string;
|
|
29436
|
+
readonly commercial_invoice_data?: io.flow.internal.v0.models.InvoiceData;
|
|
29437
|
+
readonly order_identifier?: string;
|
|
29438
|
+
readonly fulfillment_key?: string;
|
|
29439
|
+
readonly rex_number?: string;
|
|
29440
|
+
readonly weee_number?: string;
|
|
29441
|
+
readonly generate_commercial_invoice_only: boolean;
|
|
29442
|
+
readonly liability_remittance_plan?: io.flow.internal.v0.models.LiabilityRemittancePlan;
|
|
29443
|
+
readonly shipment_cost_summary?: io.flow.internal.v0.models.ShipmentCostSummary;
|
|
29444
|
+
readonly shipping_label_hop_cost_itemized_estimate?: io.flow.label.v0.models.ShippingLabelHopCostItemizedEstimate;
|
|
29445
|
+
readonly additional_services_requested?: io.flow.label.v0.models.AdditionalServicesRequested[];
|
|
29446
|
+
readonly provided_charges?: io.flow.internal.v0.models.ChargeInput[];
|
|
29447
|
+
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
29448
|
+
}
|
|
29449
|
+
|
|
29107
29450
|
interface ValidationCharacterLength {
|
|
29108
29451
|
readonly discriminator: 'validation_character_length';
|
|
29109
29452
|
readonly min?: number;
|
|
@@ -29462,8 +29805,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29462
29805
|
| io.flow.internal.v0.models.UnassignedMerchantGuidDeleted
|
|
29463
29806
|
| io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted
|
|
29464
29807
|
| io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted
|
|
29465
|
-
| io.flow.internal.v0.models.SppTrackerUpdateRequestUpserted
|
|
29466
|
-
| io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted
|
|
29467
29808
|
| io.flow.internal.v0.models.PartnerRequestUpserted
|
|
29468
29809
|
| io.flow.internal.v0.models.PartnerRequestDeleted
|
|
29469
29810
|
| io.flow.internal.v0.models.InternalAuthorizationUpserted
|
|
@@ -29496,6 +29837,9 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29496
29837
|
| io.flow.internal.v0.models.PaypalDisputeDeleted
|
|
29497
29838
|
| io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted
|
|
29498
29839
|
| io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted
|
|
29840
|
+
| io.flow.internal.v0.models.ProductRestrictionStateInserted
|
|
29841
|
+
| io.flow.internal.v0.models.ProductRestrictionStateUpdated
|
|
29842
|
+
| io.flow.internal.v0.models.ProductRestrictionStateDeleted
|
|
29499
29843
|
| io.flow.internal.v0.models.OrderRatesPublishedV3
|
|
29500
29844
|
| io.flow.internal.v0.models.RatecardDimensionEstimateUpserted
|
|
29501
29845
|
| io.flow.internal.v0.models.RatecardDimensionEstimateDeleted
|
|
@@ -29547,6 +29891,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29547
29891
|
| io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished
|
|
29548
29892
|
| io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted
|
|
29549
29893
|
| io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted
|
|
29894
|
+
| io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted
|
|
29895
|
+
| io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted
|
|
29550
29896
|
| io.flow.internal.v0.models.ShopifyProductCreateUpserted
|
|
29551
29897
|
| io.flow.internal.v0.models.ShopifyProductCreateDeleted
|
|
29552
29898
|
| io.flow.internal.v0.models.ShopifyProductUpdateUpserted
|
|
@@ -29762,6 +30108,9 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29762
30108
|
type SpotRateMetadata =
|
|
29763
30109
|
| io.flow.internal.v0.models.SpotRateMetadataIdentity
|
|
29764
30110
|
| io.flow.internal.v0.models.SpotRateMetadataRate;
|
|
30111
|
+
type StripeConnectReportRecordMetadata =
|
|
30112
|
+
| io.flow.internal.v0.models.StripeConnectReportRecordPaymentMetadata
|
|
30113
|
+
| io.flow.internal.v0.models.StripeConnectReportRecordTransferMetadata;
|
|
29765
30114
|
type TariffEligibilityData =
|
|
29766
30115
|
io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData;
|
|
29767
30116
|
type TariffEligibilityForm =
|
|
@@ -29996,6 +30345,8 @@ export type ApiCallReferenceId = io.flow.internal.v0.enums.ApiCallReferenceId;
|
|
|
29996
30345
|
export type ApmContent = io.flow.internal.v0.models.ApmContent;
|
|
29997
30346
|
export type ApplePayAuthorizationPayload =
|
|
29998
30347
|
io.flow.internal.v0.models.ApplePayAuthorizationPayload;
|
|
30348
|
+
export type ApplicablePreferentialRate =
|
|
30349
|
+
io.flow.internal.v0.enums.ApplicablePreferentialRate;
|
|
29999
30350
|
export type ApplyAtValueForm = io.flow.internal.v0.models.ApplyAtValueForm;
|
|
30000
30351
|
export type AttemptStatistics = io.flow.internal.v0.models.AttemptStatistics;
|
|
30001
30352
|
export type AttributeLabel = io.flow.internal.v0.models.AttributeLabel;
|
|
@@ -30479,6 +30830,8 @@ export type CommercialInvoiceInternalUpserted =
|
|
|
30479
30830
|
io.flow.internal.v0.models.CommercialInvoiceInternalUpserted;
|
|
30480
30831
|
export type CommercialInvoiceSummary =
|
|
30481
30832
|
io.flow.internal.v0.models.CommercialInvoiceSummary;
|
|
30833
|
+
export type CommercialInvoiceVersion =
|
|
30834
|
+
io.flow.internal.v0.enums.CommercialInvoiceVersion;
|
|
30482
30835
|
export type Company = io.flow.internal.v0.enums.Company;
|
|
30483
30836
|
export type CompanyReference = io.flow.internal.v0.models.CompanyReference;
|
|
30484
30837
|
export type Compliance = io.flow.internal.v0.models.Compliance;
|
|
@@ -30486,8 +30839,10 @@ export type ComplianceData = io.flow.internal.v0.unions.ComplianceData;
|
|
|
30486
30839
|
export type ComplianceForm = io.flow.internal.v0.unions.ComplianceForm;
|
|
30487
30840
|
export type ComplianceType = io.flow.internal.v0.enums.ComplianceType;
|
|
30488
30841
|
export type Components = io.flow.internal.v0.models.Components;
|
|
30489
|
-
export type
|
|
30490
|
-
io.flow.internal.v0.enums.
|
|
30842
|
+
export type ConnectReportPaymentTransferType =
|
|
30843
|
+
io.flow.internal.v0.enums.ConnectReportPaymentTransferType;
|
|
30844
|
+
export type ConnectReportTransferTransferType =
|
|
30845
|
+
io.flow.internal.v0.enums.ConnectReportTransferTransferType;
|
|
30491
30846
|
export type ConsoleLabelRequestForm =
|
|
30492
30847
|
io.flow.internal.v0.models.ConsoleLabelRequestForm;
|
|
30493
30848
|
export type ConsoleLabelValidationForm =
|
|
@@ -30723,7 +31078,13 @@ export type EmptyAttribute = io.flow.internal.v0.enums.EmptyAttribute;
|
|
|
30723
31078
|
export type EmptyClassificationForm =
|
|
30724
31079
|
io.flow.internal.v0.models.EmptyClassificationForm;
|
|
30725
31080
|
export type Encryption = io.flow.internal.v0.models.Encryption;
|
|
31081
|
+
export type EnrichedLineItemForm =
|
|
31082
|
+
io.flow.internal.v0.models.EnrichedLineItemForm;
|
|
31083
|
+
export type EnrichedShippingLabelPackage =
|
|
31084
|
+
io.flow.internal.v0.models.EnrichedShippingLabelPackage;
|
|
30726
31085
|
export type EntityReference = io.flow.internal.v0.models.EntityReference;
|
|
31086
|
+
export type EntityReferenceNumber =
|
|
31087
|
+
io.flow.internal.v0.models.EntityReferenceNumber;
|
|
30727
31088
|
export type ErpFileType = io.flow.internal.v0.enums.ErpFileType;
|
|
30728
31089
|
export type ErpFlowFile = io.flow.internal.v0.models.ErpFlowFile;
|
|
30729
31090
|
export type ErpFlowFileForm = io.flow.internal.v0.models.ErpFlowFileForm;
|
|
@@ -30996,6 +31357,8 @@ export type FxRevenueRecognitionRate =
|
|
|
30996
31357
|
io.flow.internal.v0.models.FxRevenueRecognitionRate;
|
|
30997
31358
|
export type FxRevenueRecognitionSource =
|
|
30998
31359
|
io.flow.internal.v0.models.FxRevenueRecognitionSource;
|
|
31360
|
+
export type GeIngestionFileStatus =
|
|
31361
|
+
io.flow.internal.v0.enums.GeIngestionFileStatus;
|
|
30999
31362
|
export type GeRevenueShareTransaction =
|
|
31000
31363
|
io.flow.internal.v0.models.GeRevenueShareTransaction;
|
|
31001
31364
|
export type GenerateLoad = io.flow.internal.v0.unions.GenerateLoad;
|
|
@@ -31089,6 +31452,7 @@ export type InternalFiservAuthorizationDetails =
|
|
|
31089
31452
|
io.flow.internal.v0.models.InternalFiservAuthorizationDetails;
|
|
31090
31453
|
export type InternalHarmonizationStatistic =
|
|
31091
31454
|
io.flow.internal.v0.unions.InternalHarmonizationStatistic;
|
|
31455
|
+
export type InternalItem = io.flow.internal.v0.models.InternalItem;
|
|
31092
31456
|
export type InternalItemForm = io.flow.internal.v0.models.InternalItemForm;
|
|
31093
31457
|
export type InternalOrder = io.flow.internal.v0.models.InternalOrder;
|
|
31094
31458
|
export type InternalPaymentEntityType =
|
|
@@ -31110,6 +31474,9 @@ export type Invariant = io.flow.internal.v0.models.Invariant;
|
|
|
31110
31474
|
export type InventoryItemWrapper =
|
|
31111
31475
|
io.flow.internal.v0.models.InventoryItemWrapper;
|
|
31112
31476
|
export type Invoice = io.flow.internal.v0.models.Invoice;
|
|
31477
|
+
export type InvoiceData = io.flow.internal.v0.models.InvoiceData;
|
|
31478
|
+
export type InvoiceDataLineItem =
|
|
31479
|
+
io.flow.internal.v0.models.InvoiceDataLineItem;
|
|
31113
31480
|
export type InvoiceInfoForm = io.flow.internal.v0.models.InvoiceInfoForm;
|
|
31114
31481
|
export type InvoiceLine = io.flow.internal.v0.models.InvoiceLine;
|
|
31115
31482
|
export type InvoiceLineItem = io.flow.internal.v0.models.InvoiceLineItem;
|
|
@@ -31390,6 +31757,9 @@ export type NegativeDebitMetrics =
|
|
|
31390
31757
|
io.flow.internal.v0.models.NegativeDebitMetrics;
|
|
31391
31758
|
export type NextBillingStatement =
|
|
31392
31759
|
io.flow.internal.v0.models.NextBillingStatement;
|
|
31760
|
+
export type NiallItem = io.flow.internal.v0.models.NiallItem;
|
|
31761
|
+
export type NiallItemForm = io.flow.internal.v0.models.NiallItemForm;
|
|
31762
|
+
export type NiallItemType = io.flow.internal.v0.enums.NiallItemType;
|
|
31393
31763
|
export type NoCalculatedTaxAmount =
|
|
31394
31764
|
io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
31395
31765
|
export type NoClassificationForm =
|
|
@@ -31400,6 +31770,8 @@ export type NonChannelPaymentBankAccount =
|
|
|
31400
31770
|
io.flow.internal.v0.models.NonChannelPaymentBankAccount;
|
|
31401
31771
|
export type NonL4LTaxDutyFxTransaction =
|
|
31402
31772
|
io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction;
|
|
31773
|
+
export type NonL4LTaxDutyFxTransactionType =
|
|
31774
|
+
io.flow.internal.v0.enums.NonL4LTaxDutyFxTransactionType;
|
|
31403
31775
|
export type Notification = io.flow.internal.v0.models.Notification;
|
|
31404
31776
|
export type OnboardingAuditMessage =
|
|
31405
31777
|
io.flow.internal.v0.models.OnboardingAuditMessage;
|
|
@@ -31637,6 +32009,7 @@ export type OrganizationSettings =
|
|
|
31637
32009
|
io.flow.internal.v0.models.OrganizationSettings;
|
|
31638
32010
|
export type OrganizationSettingsForm =
|
|
31639
32011
|
io.flow.internal.v0.models.OrganizationSettingsForm;
|
|
32012
|
+
export type OrganizationSource = io.flow.internal.v0.enums.OrganizationSource;
|
|
31640
32013
|
export type OrganizationStatusChange =
|
|
31641
32014
|
io.flow.internal.v0.models.OrganizationStatusChange;
|
|
31642
32015
|
export type OrganizationStatusChangeDeleted =
|
|
@@ -31817,6 +32190,9 @@ export type PlatformFeePercentage =
|
|
|
31817
32190
|
io.flow.internal.v0.models.PlatformFeePercentage;
|
|
31818
32191
|
export type PlatformFeePercentageTier =
|
|
31819
32192
|
io.flow.internal.v0.models.PlatformFeePercentageTier;
|
|
32193
|
+
export type PrateekItem = io.flow.internal.v0.models.PrateekItem;
|
|
32194
|
+
export type PrateekItemForm = io.flow.internal.v0.models.PrateekItemForm;
|
|
32195
|
+
export type PrateekItemType = io.flow.internal.v0.enums.PrateekItemType;
|
|
31820
32196
|
export type Prediction = io.flow.internal.v0.models.Prediction;
|
|
31821
32197
|
export type PreferredBillingSchedule =
|
|
31822
32198
|
io.flow.internal.v0.enums.PreferredBillingSchedule;
|
|
@@ -31881,8 +32257,18 @@ export type ProductRestrictionRuleDecisionDeleted =
|
|
|
31881
32257
|
io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted;
|
|
31882
32258
|
export type ProductRestrictionRuleDecisionUpserted =
|
|
31883
32259
|
io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted;
|
|
32260
|
+
export type ProductRestrictionState =
|
|
32261
|
+
io.flow.internal.v0.models.ProductRestrictionState;
|
|
32262
|
+
export type ProductRestrictionStateDeleted =
|
|
32263
|
+
io.flow.internal.v0.models.ProductRestrictionStateDeleted;
|
|
32264
|
+
export type ProductRestrictionStateInserted =
|
|
32265
|
+
io.flow.internal.v0.models.ProductRestrictionStateInserted;
|
|
32266
|
+
export type ProductRestrictionStateUpdated =
|
|
32267
|
+
io.flow.internal.v0.models.ProductRestrictionStateUpdated;
|
|
31884
32268
|
export type ProductReviewHistory =
|
|
31885
32269
|
io.flow.internal.v0.models.ProductReviewHistory;
|
|
32270
|
+
export type ProductSellabilityResult =
|
|
32271
|
+
io.flow.internal.v0.models.ProductSellabilityResult;
|
|
31886
32272
|
export type ProductStatus = io.flow.internal.v0.enums.ProductStatus;
|
|
31887
32273
|
export type ProductTransaction = io.flow.internal.v0.models.ProductTransaction;
|
|
31888
32274
|
export type PromptAction = io.flow.internal.v0.enums.PromptAction;
|
|
@@ -32122,14 +32508,20 @@ export type RestrictionKeywords =
|
|
|
32122
32508
|
io.flow.internal.v0.models.RestrictionKeywords;
|
|
32123
32509
|
export type RestrictionOrganization =
|
|
32124
32510
|
io.flow.internal.v0.models.RestrictionOrganization;
|
|
32511
|
+
export type RestrictionOrganizationChannel =
|
|
32512
|
+
io.flow.internal.v0.enums.RestrictionOrganizationChannel;
|
|
32125
32513
|
export type RestrictionOrganizationDecisionSummary =
|
|
32126
32514
|
io.flow.internal.v0.models.RestrictionOrganizationDecisionSummary;
|
|
32515
|
+
export type RestrictionOrganizationSource =
|
|
32516
|
+
io.flow.internal.v0.enums.RestrictionOrganizationSource;
|
|
32127
32517
|
export type RestrictionOrganizationStatus =
|
|
32128
32518
|
io.flow.internal.v0.models.RestrictionOrganizationStatus;
|
|
32129
32519
|
export type RestrictionOrganizationStatusDeleted =
|
|
32130
32520
|
io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted;
|
|
32131
32521
|
export type RestrictionOrganizationStatusUpserted =
|
|
32132
32522
|
io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted;
|
|
32523
|
+
export type RestrictionOrganizationSummary =
|
|
32524
|
+
io.flow.internal.v0.models.RestrictionOrganizationSummary;
|
|
32133
32525
|
export type RestrictionPending = io.flow.internal.v0.models.RestrictionPending;
|
|
32134
32526
|
export type RestrictionProduct = io.flow.internal.v0.models.RestrictionProduct;
|
|
32135
32527
|
export type RestrictionProductDecisionForm =
|
|
@@ -32151,6 +32543,8 @@ export type RestrictionRuleEffectForm =
|
|
|
32151
32543
|
io.flow.internal.v0.models.RestrictionRuleEffectForm;
|
|
32152
32544
|
export type RestrictionRuleEffectUpserted =
|
|
32153
32545
|
io.flow.internal.v0.models.RestrictionRuleEffectUpserted;
|
|
32546
|
+
export type RestrictionRuleExceptionAction =
|
|
32547
|
+
io.flow.internal.v0.enums.RestrictionRuleExceptionAction;
|
|
32154
32548
|
export type RestrictionRuleForm =
|
|
32155
32549
|
io.flow.internal.v0.models.RestrictionRuleForm;
|
|
32156
32550
|
export type RestrictionRuleMetadata =
|
|
@@ -32161,6 +32555,8 @@ export type RestrictionRuleSummary =
|
|
|
32161
32555
|
io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
32162
32556
|
export type RestrictionRuleUpserted =
|
|
32163
32557
|
io.flow.internal.v0.models.RestrictionRuleUpserted;
|
|
32558
|
+
export type RestrictionStateReviewStatus =
|
|
32559
|
+
io.flow.internal.v0.enums.RestrictionStateReviewStatus;
|
|
32164
32560
|
export type RestrictionStatus = io.flow.internal.v0.enums.RestrictionStatus;
|
|
32165
32561
|
export type RestrictionStatusMetadata =
|
|
32166
32562
|
io.flow.internal.v0.models.RestrictionStatusMetadata;
|
|
@@ -32237,9 +32633,12 @@ export type SessionRollout = io.flow.internal.v0.models.SessionRollout;
|
|
|
32237
32633
|
export type SessionRolloutForm = io.flow.internal.v0.models.SessionRolloutForm;
|
|
32238
32634
|
export type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
|
|
32239
32635
|
export type SfExpress = io.flow.internal.v0.models.SfExpress;
|
|
32636
|
+
export type ShipmentCostSummary =
|
|
32637
|
+
io.flow.internal.v0.models.ShipmentCostSummary;
|
|
32240
32638
|
export type ShippingLane = io.flow.internal.v0.models.ShippingLane;
|
|
32241
32639
|
export type ShippingMethodReference =
|
|
32242
32640
|
io.flow.internal.v0.models.ShippingMethodReference;
|
|
32641
|
+
export type ShippingPricing = io.flow.internal.v0.models.ShippingPricing;
|
|
32243
32642
|
export type Shop = io.flow.internal.v0.models.Shop;
|
|
32244
32643
|
export type ShopForm = io.flow.internal.v0.models.ShopForm;
|
|
32245
32644
|
export type ShopVersion = io.flow.internal.v0.models.ShopVersion;
|
|
@@ -32423,6 +32822,12 @@ export type ShopifyOrderLineAttribute =
|
|
|
32423
32822
|
io.flow.internal.v0.models.ShopifyOrderLineAttribute;
|
|
32424
32823
|
export type ShopifyOrderLineContent =
|
|
32425
32824
|
io.flow.internal.v0.models.ShopifyOrderLineContent;
|
|
32825
|
+
export type ShopifyOrderRiskAssessment =
|
|
32826
|
+
io.flow.internal.v0.models.ShopifyOrderRiskAssessment;
|
|
32827
|
+
export type ShopifyOrderRiskAssessmentDeleted =
|
|
32828
|
+
io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted;
|
|
32829
|
+
export type ShopifyOrderRiskAssessmentUpserted =
|
|
32830
|
+
io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted;
|
|
32426
32831
|
export type ShopifyOrganizationSettings =
|
|
32427
32832
|
io.flow.internal.v0.models.ShopifyOrganizationSettings;
|
|
32428
32833
|
export type ShopifyOrganizationSettingsForm =
|
|
@@ -32555,12 +32960,6 @@ export type SpotRateMetadataRate =
|
|
|
32555
32960
|
io.flow.internal.v0.models.SpotRateMetadataRate;
|
|
32556
32961
|
export type SpotRateUpserted = io.flow.internal.v0.models.SpotRateUpserted;
|
|
32557
32962
|
export type SpotRateVersion = io.flow.internal.v0.models.SpotRateVersion;
|
|
32558
|
-
export type SppTrackerUpdateRequest =
|
|
32559
|
-
io.flow.internal.v0.models.SppTrackerUpdateRequest;
|
|
32560
|
-
export type SppTrackerUpdateRequestDeleted =
|
|
32561
|
-
io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted;
|
|
32562
|
-
export type SppTrackerUpdateRequestUpserted =
|
|
32563
|
-
io.flow.internal.v0.models.SppTrackerUpdateRequestUpserted;
|
|
32564
32963
|
export type StandaloneAttachment =
|
|
32565
32964
|
io.flow.internal.v0.models.StandaloneAttachment;
|
|
32566
32965
|
export type StandaloneAttachmentDeleted =
|
|
@@ -32605,8 +33004,12 @@ export type StripeConnectReportRecord =
|
|
|
32605
33004
|
io.flow.internal.v0.models.StripeConnectReportRecord;
|
|
32606
33005
|
export type StripeConnectReportRecordDeleted =
|
|
32607
33006
|
io.flow.internal.v0.models.StripeConnectReportRecordDeleted;
|
|
33007
|
+
export type StripeConnectReportRecordMetadata =
|
|
33008
|
+
io.flow.internal.v0.unions.StripeConnectReportRecordMetadata;
|
|
32608
33009
|
export type StripeConnectReportRecordPaymentMetadata =
|
|
32609
33010
|
io.flow.internal.v0.models.StripeConnectReportRecordPaymentMetadata;
|
|
33011
|
+
export type StripeConnectReportRecordTransferMetadata =
|
|
33012
|
+
io.flow.internal.v0.models.StripeConnectReportRecordTransferMetadata;
|
|
32610
33013
|
export type StripeConnectReportRecordUpserted =
|
|
32611
33014
|
io.flow.internal.v0.models.StripeConnectReportRecordUpserted;
|
|
32612
33015
|
export type StripeDisputeDeleted =
|
|
@@ -32847,6 +33250,9 @@ export type UserStatusRule = io.flow.internal.v0.models.UserStatusRule;
|
|
|
32847
33250
|
export type UserStatusRuleForm = io.flow.internal.v0.models.UserStatusRuleForm;
|
|
32848
33251
|
export type UserUpsertedV2 = io.flow.internal.v0.models.UserUpsertedV2;
|
|
32849
33252
|
export type V1Checkout = io.flow.internal.v0.models.V1Checkout;
|
|
33253
|
+
export type ValidatedAddress = io.flow.internal.v0.models.ValidatedAddress;
|
|
33254
|
+
export type ValidatedShippingData =
|
|
33255
|
+
io.flow.internal.v0.models.ValidatedShippingData;
|
|
32850
33256
|
export type ValidationCharacterLength =
|
|
32851
33257
|
io.flow.internal.v0.models.ValidationCharacterLength;
|
|
32852
33258
|
export type ValidationRule = io.flow.internal.v0.unions.ValidationRule;
|