@flowio/types 11.24.115 → 11.24.117
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 +381 -81
- package/dist/api.d.ts +5214 -3207
- package/package.json +2 -2
- package/src/api-internal.ts +460 -104
- package/src/api.ts +6242 -3714
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;
|
|
@@ -9300,6 +9305,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
9300
9305
|
readonly order_created_at?: string;
|
|
9301
9306
|
readonly order_updated_at?: string;
|
|
9302
9307
|
readonly order_edit_summary?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
9308
|
+
readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
9303
9309
|
}
|
|
9304
9310
|
|
|
9305
9311
|
interface ChannelOrderAcceptanceDetails {
|
|
@@ -10300,6 +10306,22 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
10300
10306
|
readonly registration: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
10301
10307
|
}
|
|
10302
10308
|
|
|
10309
|
+
interface ShopifyOrderRiskAssessmentDeleted {
|
|
10310
|
+
readonly discriminator: 'shopify_order_risk_assessment_deleted';
|
|
10311
|
+
readonly event_id: string;
|
|
10312
|
+
readonly timestamp: string;
|
|
10313
|
+
readonly organization: string;
|
|
10314
|
+
readonly id: string;
|
|
10315
|
+
}
|
|
10316
|
+
|
|
10317
|
+
interface ShopifyOrderRiskAssessmentUpserted {
|
|
10318
|
+
readonly discriminator: 'shopify_order_risk_assessment_upserted';
|
|
10319
|
+
readonly event_id: string;
|
|
10320
|
+
readonly timestamp: string;
|
|
10321
|
+
readonly organization: string;
|
|
10322
|
+
readonly assessment: io.flow.shopify.markets.internal.v0.models.ShopifyOrderRiskAssessment;
|
|
10323
|
+
}
|
|
10324
|
+
|
|
10303
10325
|
interface ShopifyProductBundleDeleted {
|
|
10304
10326
|
readonly discriminator: 'shopify_product_bundle_deleted';
|
|
10305
10327
|
readonly event_id: string;
|
|
@@ -10339,7 +10361,9 @@ declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
|
10339
10361
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted
|
|
10340
10362
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished
|
|
10341
10363
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted
|
|
10342
|
-
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted
|
|
10364
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted
|
|
10365
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentUpserted
|
|
10366
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted;
|
|
10343
10367
|
}
|
|
10344
10368
|
|
|
10345
10369
|
declare namespace io.flow.experience.v0.enums {
|
|
@@ -13942,6 +13966,14 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
13942
13966
|
| 'unfulfilled_amount_greater_than_negative_balance'
|
|
13943
13967
|
| 'account_payment_hold';
|
|
13944
13968
|
type StatementAttachmentType = 'csv';
|
|
13969
|
+
type TaxDutyTransactionReasonCode =
|
|
13970
|
+
| 'order_edit'
|
|
13971
|
+
| 'order_acceptance'
|
|
13972
|
+
| 'mixed_fulfilment_non_lvg'
|
|
13973
|
+
| 'lvg_refund'
|
|
13974
|
+
| 'order_cancellation_above_de_min'
|
|
13975
|
+
| 'wyol_shipment_above_de_min'
|
|
13976
|
+
| 'full_refund_without_shipment';
|
|
13945
13977
|
type TransactionSource =
|
|
13946
13978
|
| 'capture'
|
|
13947
13979
|
| 'refund'
|
|
@@ -14325,9 +14357,15 @@ declare namespace io.flow.billing.v0.models {
|
|
|
14325
14357
|
|
|
14326
14358
|
interface TransactionMetadataShippingLabelCarrier {
|
|
14327
14359
|
readonly id: string;
|
|
14360
|
+
readonly service_id?: string;
|
|
14328
14361
|
readonly tracking_number: string;
|
|
14329
14362
|
}
|
|
14330
14363
|
|
|
14364
|
+
interface TransactionMetadataTaxDuty {
|
|
14365
|
+
readonly discriminator: 'transaction_tax_duty';
|
|
14366
|
+
readonly reason_code: io.flow.billing.v0.enums.TaxDutyTransactionReasonCode;
|
|
14367
|
+
}
|
|
14368
|
+
|
|
14331
14369
|
interface TransactionMetadataTrueup {
|
|
14332
14370
|
readonly discriminator: 'trueup';
|
|
14333
14371
|
readonly original: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
@@ -14441,7 +14479,8 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
14441
14479
|
| io.flow.billing.v0.models.TransactionMetadataCarrierCharge
|
|
14442
14480
|
| io.flow.billing.v0.models.TransactionMetadataManual
|
|
14443
14481
|
| io.flow.billing.v0.models.TransactionMetadataFailedPayout
|
|
14444
|
-
| io.flow.billing.v0.models.TransactionMetadataPaymentTransaction
|
|
14482
|
+
| io.flow.billing.v0.models.TransactionMetadataPaymentTransaction
|
|
14483
|
+
| io.flow.billing.v0.models.TransactionMetadataTaxDuty;
|
|
14445
14484
|
}
|
|
14446
14485
|
|
|
14447
14486
|
declare namespace io.flow.harmonization.v0.enums {
|
|
@@ -15836,7 +15875,12 @@ declare namespace io.flow.fraud.v0.unions {
|
|
|
15836
15875
|
|
|
15837
15876
|
declare namespace io.flow.sellability.v0.enums {
|
|
15838
15877
|
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
15839
|
-
type SellabilityErrorCode =
|
|
15878
|
+
type SellabilityErrorCode =
|
|
15879
|
+
| 'insufficient_details'
|
|
15880
|
+
| 'ineligible_category'
|
|
15881
|
+
| 'wait_for_high_fidelity'
|
|
15882
|
+
| 'external_service_unavailable';
|
|
15883
|
+
type SellabilityRequestStatus = 'commit';
|
|
15840
15884
|
}
|
|
15841
15885
|
|
|
15842
15886
|
declare namespace io.flow.sellability.v0.models {
|
|
@@ -15851,11 +15895,12 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
15851
15895
|
interface ProductSellabilityForm {
|
|
15852
15896
|
readonly shop_id: string;
|
|
15853
15897
|
readonly product_id?: string;
|
|
15854
|
-
readonly request_id: string;
|
|
15855
15898
|
readonly name: string;
|
|
15856
15899
|
readonly price: io.flow.sellability.v0.models.ProductSellabilityPrice;
|
|
15857
15900
|
readonly description: string;
|
|
15858
15901
|
readonly taxonomy_category: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
15902
|
+
readonly status?: io.flow.sellability.v0.enums.SellabilityRequestStatus;
|
|
15903
|
+
readonly dry_run?: boolean;
|
|
15859
15904
|
}
|
|
15860
15905
|
|
|
15861
15906
|
interface ProductSellabilityPrice {
|
|
@@ -16000,19 +16045,6 @@ declare namespace io.flow.organization.v0.models {
|
|
|
16000
16045
|
readonly environment: io.flow.common.v0.enums.Environment;
|
|
16001
16046
|
}
|
|
16002
16047
|
|
|
16003
|
-
interface OrganizationConfigurationReference {
|
|
16004
|
-
readonly id: string;
|
|
16005
|
-
}
|
|
16006
|
-
|
|
16007
|
-
interface OrganizationDefaultConfigurations {
|
|
16008
|
-
readonly id: string;
|
|
16009
|
-
readonly checkout_configuration: io.flow.organization.v0.models.OrganizationConfigurationReference;
|
|
16010
|
-
}
|
|
16011
|
-
|
|
16012
|
-
interface OrganizationDefaultConfigurationsForm {
|
|
16013
|
-
readonly id: string;
|
|
16014
|
-
}
|
|
16015
|
-
|
|
16016
16048
|
interface OrganizationForm {
|
|
16017
16049
|
readonly id?: string;
|
|
16018
16050
|
readonly name?: string;
|
|
@@ -16205,6 +16237,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16205
16237
|
| 'duty_rates_data_event'
|
|
16206
16238
|
| 'integration_test'
|
|
16207
16239
|
| 'unit_test';
|
|
16240
|
+
type ApplicablePreferentialRate = 'baby' | 'children';
|
|
16208
16241
|
type AutoRestrictRule =
|
|
16209
16242
|
| 'prr-3ce7d556f2464314ab0a3e8eee33e0ce'
|
|
16210
16243
|
| 'prr-599c6246a1a24752aeb85e8f79030781'
|
|
@@ -16556,6 +16589,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16556
16589
|
| 'Age0_10'
|
|
16557
16590
|
| 'Age10_13'
|
|
16558
16591
|
| 'Age13_14';
|
|
16592
|
+
type CommercialInvoiceVersion = 'v2_2_1';
|
|
16559
16593
|
type Company = 'globale' | 'flow';
|
|
16560
16594
|
type ComplianceType = 'weee';
|
|
16561
16595
|
type ConnectReportPaymentTransferType =
|
|
@@ -16721,7 +16755,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16721
16755
|
| 'organization_currency_setting_deleted'
|
|
16722
16756
|
| 'channel_currency_setting_upserted'
|
|
16723
16757
|
| 'channel_currency_setting_deleted'
|
|
16724
|
-
| 'customer_purge_upserted'
|
|
16725
16758
|
| 'customs_description_import'
|
|
16726
16759
|
| 'customs_description_tariffs_import'
|
|
16727
16760
|
| 'dispute_upserted'
|
|
@@ -16844,8 +16877,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16844
16877
|
| 'unassigned_merchant_guid_deleted'
|
|
16845
16878
|
| 'partner_tracking_subscription_upserted'
|
|
16846
16879
|
| 'partner_tracking_subscription_deleted'
|
|
16847
|
-
| 'spp_tracker_update_request_upserted'
|
|
16848
|
-
| 'spp_tracker_update_request_deleted'
|
|
16849
16880
|
| 'partner_request_upserted'
|
|
16850
16881
|
| 'partner_request_deleted'
|
|
16851
16882
|
| 'internal_authorization_upserted'
|
|
@@ -16878,6 +16909,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16878
16909
|
| 'paypal_dispute_deleted'
|
|
16879
16910
|
| 'product_restriction_rule_decision_upserted'
|
|
16880
16911
|
| 'product_restriction_rule_decision_deleted'
|
|
16912
|
+
| 'product_restriction_state_inserted'
|
|
16913
|
+
| 'product_restriction_state_updated'
|
|
16914
|
+
| 'product_restriction_state_deleted'
|
|
16881
16915
|
| 'order_rates_published_v3'
|
|
16882
16916
|
| 'ratecard_dimension_estimate_upserted'
|
|
16883
16917
|
| 'ratecard_dimension_estimate_deleted'
|
|
@@ -16929,6 +16963,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16929
16963
|
| 'shopify_incoterm_summary_error_published'
|
|
16930
16964
|
| 'shopify_markets_best_selling_product_upserted'
|
|
16931
16965
|
| 'shopify_markets_best_selling_product_deleted'
|
|
16966
|
+
| 'shopify_order_risk_assessment_upserted'
|
|
16967
|
+
| 'shopify_order_risk_assessment_deleted'
|
|
16932
16968
|
| 'shopify_product_create_upserted'
|
|
16933
16969
|
| 'shopify_product_create_deleted'
|
|
16934
16970
|
| 'shopify_product_update_upserted'
|
|
@@ -17011,6 +17047,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17011
17047
|
| 'catalog_to_flow'
|
|
17012
17048
|
| 'inventory_to_flow';
|
|
17013
17049
|
type FtpProtocol = 'sftp' | 'ftp';
|
|
17050
|
+
type GeIngestionFileStatus = 'pending' | 'processed';
|
|
17014
17051
|
type GoogleAnalyticsPlugin = 'ec';
|
|
17015
17052
|
type GraphqlServiceTypes =
|
|
17016
17053
|
| 'order_update_mutation'
|
|
@@ -17113,6 +17150,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17113
17150
|
| 'to_non_registered_business'
|
|
17114
17151
|
| 'to_registered_business'
|
|
17115
17152
|
| 'flash_title';
|
|
17153
|
+
type NiallItemType = 'physical' | 'digital';
|
|
17116
17154
|
type NoLiabilityReasonCode =
|
|
17117
17155
|
| 'zero_basis'
|
|
17118
17156
|
| 'zero_rate_on_goods'
|
|
@@ -17125,6 +17163,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17125
17163
|
| 'duty_free_domestic'
|
|
17126
17164
|
| 'duty_free_intra_community'
|
|
17127
17165
|
| 'duty_free_by_trade_agreement';
|
|
17166
|
+
type NonL4LTaxDutyFxTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
17128
17167
|
type OnboardingAuditMessageLevel = 'info' | 'warning' | 'error';
|
|
17129
17168
|
type OnboardingAuditResult = 'pass' | 'warning' | 'fail';
|
|
17130
17169
|
type OnboardingAuditThemeKey =
|
|
@@ -17229,6 +17268,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17229
17268
|
| 'reversal'
|
|
17230
17269
|
| 'credit';
|
|
17231
17270
|
type PaymentTerm = 'net7' | 'net15' | 'net30';
|
|
17271
|
+
type PrateekItemType = 'physical' | 'digital';
|
|
17232
17272
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
17233
17273
|
type PriceSelector = 'minimum' | 'maximum';
|
|
17234
17274
|
type ProcessingTransactionType =
|
|
@@ -17300,6 +17340,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17300
17340
|
type ResponsibleParty = 'flow' | 'organization';
|
|
17301
17341
|
type RestrictionAction = 'prohibited' | 'restricted';
|
|
17302
17342
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
17343
|
+
type RestrictionOrganizationChannel =
|
|
17344
|
+
| 'shopify'
|
|
17345
|
+
| 'enterprise'
|
|
17346
|
+
| 'shopify-sandbox'
|
|
17347
|
+
| 'enterprise-sandbox';
|
|
17348
|
+
type RestrictionOrganizationSource = 'shopify' | 'enterprise';
|
|
17349
|
+
type RestrictionRuleExceptionAction = 'allow' | 'deny';
|
|
17350
|
+
type RestrictionStateReviewStatus = 'reviewed' | 'in_review';
|
|
17303
17351
|
type RestrictionStatus =
|
|
17304
17352
|
| 'pending'
|
|
17305
17353
|
| 'in_review'
|
|
@@ -17314,7 +17362,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17314
17362
|
| 'Low-Risk'
|
|
17315
17363
|
| 'Restricted-Party'
|
|
17316
17364
|
| 'none';
|
|
17317
|
-
type
|
|
17365
|
+
type RohanItemType = 'physical' | 'digital';
|
|
17318
17366
|
type ShopifyCheckInventoryErrorCode = 'inventory_out_of_stock';
|
|
17319
17367
|
type ShopifyGrantStatus = 'pass' | 'fail';
|
|
17320
17368
|
type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
@@ -18595,6 +18643,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18595
18643
|
readonly duty: io.flow.common.v0.models.Price;
|
|
18596
18644
|
readonly trueup: io.flow.common.v0.models.Price;
|
|
18597
18645
|
readonly carrier_charge: io.flow.common.v0.models.Price;
|
|
18646
|
+
readonly duty_refund: io.flow.common.v0.models.Price;
|
|
18647
|
+
readonly ge_revenue_share: io.flow.common.v0.models.Price;
|
|
18648
|
+
readonly non_l4l_tax_duty_fx: io.flow.common.v0.models.Price;
|
|
18598
18649
|
readonly ending_balance: io.flow.common.v0.models.Price;
|
|
18599
18650
|
readonly tax_refund: io.flow.common.v0.models.Price;
|
|
18600
18651
|
}
|
|
@@ -19307,6 +19358,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19307
19358
|
readonly order_created_at?: string;
|
|
19308
19359
|
readonly order_updated_at?: string;
|
|
19309
19360
|
readonly order_edit_summary?: io.flow.internal.v0.models.OrderEditSummary;
|
|
19361
|
+
readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
19310
19362
|
}
|
|
19311
19363
|
|
|
19312
19364
|
interface ChannelOrderAcceptanceDeleted {
|
|
@@ -20162,19 +20214,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20162
20214
|
readonly updated_by_user_id: string;
|
|
20163
20215
|
}
|
|
20164
20216
|
|
|
20165
|
-
interface CustomerPurgeUpserted {
|
|
20166
|
-
readonly discriminator: 'customer_purge_upserted';
|
|
20167
|
-
readonly event_id: string;
|
|
20168
|
-
readonly timestamp: string;
|
|
20169
|
-
readonly organization: string;
|
|
20170
|
-
readonly customer: io.flow.customer.v0.models.Customer;
|
|
20171
|
-
}
|
|
20172
|
-
|
|
20173
|
-
interface CustomerSecret {
|
|
20174
|
-
readonly id: string;
|
|
20175
|
-
readonly secret: string;
|
|
20176
|
-
}
|
|
20177
|
-
|
|
20178
20217
|
interface CustomsDescriptionImport {
|
|
20179
20218
|
readonly discriminator: 'customs_description_import';
|
|
20180
20219
|
readonly event_id: string;
|
|
@@ -20836,10 +20875,40 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20836
20875
|
readonly passphrase_ids: string[];
|
|
20837
20876
|
}
|
|
20838
20877
|
|
|
20878
|
+
interface EnrichedLineItemForm {
|
|
20879
|
+
readonly form: io.flow.common.v0.models.LineItemForm;
|
|
20880
|
+
readonly customs_product_name?: string;
|
|
20881
|
+
readonly tariff_code?: string;
|
|
20882
|
+
readonly customs_description?: string;
|
|
20883
|
+
readonly hs_description?: string;
|
|
20884
|
+
readonly country_of_origin: string;
|
|
20885
|
+
readonly price_composition_rate: number;
|
|
20886
|
+
readonly duty_composition_rate: number;
|
|
20887
|
+
readonly export_control_classification_number: string;
|
|
20888
|
+
readonly sub_item_number?: string;
|
|
20889
|
+
readonly item_type?: string;
|
|
20890
|
+
readonly material?: string;
|
|
20891
|
+
readonly construction?: string;
|
|
20892
|
+
readonly gender?: string;
|
|
20893
|
+
}
|
|
20894
|
+
|
|
20895
|
+
interface EnrichedShippingLabelPackage {
|
|
20896
|
+
readonly dimensions: io.flow.common.v0.models.Dimension;
|
|
20897
|
+
readonly items: io.flow.internal.v0.models.EnrichedLineItemForm[];
|
|
20898
|
+
readonly reference_number?: string;
|
|
20899
|
+
}
|
|
20900
|
+
|
|
20839
20901
|
interface EntityReference {
|
|
20840
20902
|
readonly id: string;
|
|
20841
20903
|
}
|
|
20842
20904
|
|
|
20905
|
+
interface EntityReferenceNumber {
|
|
20906
|
+
readonly short_name: string;
|
|
20907
|
+
readonly number: string;
|
|
20908
|
+
readonly issuing_country?: io.flow.reference.v0.models.Country;
|
|
20909
|
+
readonly display_name?: string;
|
|
20910
|
+
}
|
|
20911
|
+
|
|
20843
20912
|
interface ErpFlowFile {
|
|
20844
20913
|
readonly id: string;
|
|
20845
20914
|
readonly type: io.flow.internal.v0.enums.ErpFileType;
|
|
@@ -22346,6 +22415,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22346
22415
|
readonly fiserv_authentication_data: io.flow.internal.v0.models.FiservAuthenticationDataReference;
|
|
22347
22416
|
}
|
|
22348
22417
|
|
|
22418
|
+
interface InternalItem {
|
|
22419
|
+
readonly id: string;
|
|
22420
|
+
readonly organization: string;
|
|
22421
|
+
readonly catalog: string;
|
|
22422
|
+
readonly name: string;
|
|
22423
|
+
readonly number: string;
|
|
22424
|
+
readonly currency: string;
|
|
22425
|
+
readonly price: number;
|
|
22426
|
+
readonly categories: string[];
|
|
22427
|
+
readonly attributes: Record<string, string>;
|
|
22428
|
+
readonly sku?: string;
|
|
22429
|
+
readonly barcode?: string;
|
|
22430
|
+
}
|
|
22431
|
+
|
|
22349
22432
|
interface InternalItemForm {
|
|
22350
22433
|
readonly id: string;
|
|
22351
22434
|
readonly item_form: io.flow.catalog.v0.models.ItemForm;
|
|
@@ -22409,6 +22492,78 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22409
22492
|
readonly total: io.flow.common.v0.models.Price;
|
|
22410
22493
|
}
|
|
22411
22494
|
|
|
22495
|
+
interface InvoiceData {
|
|
22496
|
+
readonly organization_id: string;
|
|
22497
|
+
readonly order_number: string;
|
|
22498
|
+
readonly invoice_reference: string;
|
|
22499
|
+
readonly signature_url: string;
|
|
22500
|
+
readonly signature_date: string;
|
|
22501
|
+
readonly signature_name: string;
|
|
22502
|
+
readonly line_items: io.flow.internal.v0.models.InvoiceDataLineItem[];
|
|
22503
|
+
readonly currency: io.flow.reference.v0.models.Currency;
|
|
22504
|
+
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
22505
|
+
readonly delivered_duty_text: string;
|
|
22506
|
+
readonly transaction_date: string;
|
|
22507
|
+
readonly origin: io.flow.internal.v0.models.ValidatedAddress;
|
|
22508
|
+
readonly destination: io.flow.internal.v0.models.ValidatedAddress;
|
|
22509
|
+
readonly billing_address?: io.flow.internal.v0.models.ValidatedAddress;
|
|
22510
|
+
readonly service: io.flow.reference.v0.models.CarrierService;
|
|
22511
|
+
readonly flow_tracking_number: string;
|
|
22512
|
+
readonly rex_number?: string;
|
|
22513
|
+
readonly weee_number?: string;
|
|
22514
|
+
readonly business_gst_numbers: io.flow.internal.v0.models.EntityReferenceNumber[];
|
|
22515
|
+
readonly destination_identification_numbers?: io.flow.internal.v0.models.EntityReferenceNumber[];
|
|
22516
|
+
readonly vat_name: string;
|
|
22517
|
+
readonly item_identifier_column_name: string;
|
|
22518
|
+
readonly feature_show_merchant_id: boolean;
|
|
22519
|
+
readonly shipping_pricing: io.flow.internal.v0.models.ShippingPricing;
|
|
22520
|
+
readonly shipment_recipient?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
22521
|
+
readonly eu_preferential_origin?: string;
|
|
22522
|
+
readonly customs_master_file_number?: string;
|
|
22523
|
+
readonly merchant_of_record_entity?: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
22524
|
+
readonly weight_measured?: string;
|
|
22525
|
+
readonly notes_export_declaration?: string;
|
|
22526
|
+
readonly notes_import_duty_taxes_due?: string;
|
|
22527
|
+
readonly invoice_id: string;
|
|
22528
|
+
readonly invoice_date: string;
|
|
22529
|
+
readonly invoice_number?: string;
|
|
22530
|
+
readonly invoice_version: io.flow.internal.v0.enums.CommercialInvoiceVersion;
|
|
22531
|
+
readonly shipping_price: number;
|
|
22532
|
+
readonly goods_value: number;
|
|
22533
|
+
readonly total_taxes: number;
|
|
22534
|
+
readonly total_duties: number;
|
|
22535
|
+
readonly customs_value: number;
|
|
22536
|
+
readonly total_value: number;
|
|
22537
|
+
readonly usa_exporter_identifier_number_if_value_over_threshold?: string;
|
|
22538
|
+
readonly feature_israel_notes_import_duty_and_taxes_due: boolean;
|
|
22539
|
+
readonly feature_new_export_declaration: boolean;
|
|
22540
|
+
}
|
|
22541
|
+
|
|
22542
|
+
interface InvoiceDataLineItem {
|
|
22543
|
+
readonly i: number;
|
|
22544
|
+
readonly number: string;
|
|
22545
|
+
readonly quantity: number;
|
|
22546
|
+
readonly description: string;
|
|
22547
|
+
readonly tariff_code: string;
|
|
22548
|
+
readonly country_of_origin: string;
|
|
22549
|
+
readonly display_country_of_origin: string;
|
|
22550
|
+
readonly gst_paid: boolean;
|
|
22551
|
+
readonly gst_paid_text: string;
|
|
22552
|
+
readonly unit_price: number;
|
|
22553
|
+
readonly vat_price: number;
|
|
22554
|
+
readonly duty_price: number;
|
|
22555
|
+
readonly discount_price: number;
|
|
22556
|
+
readonly total_price: number;
|
|
22557
|
+
readonly export_control_classification_number: string;
|
|
22558
|
+
readonly manufacturer_id?: string;
|
|
22559
|
+
readonly display_number: string;
|
|
22560
|
+
readonly item_type?: string;
|
|
22561
|
+
readonly construction?: string;
|
|
22562
|
+
readonly gender?: string;
|
|
22563
|
+
readonly material?: string;
|
|
22564
|
+
readonly url?: string;
|
|
22565
|
+
}
|
|
22566
|
+
|
|
22412
22567
|
interface InvoiceInfoForm {
|
|
22413
22568
|
readonly invoice_number: string;
|
|
22414
22569
|
readonly invoice_date: string;
|
|
@@ -22528,6 +22683,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22528
22683
|
readonly duty_composition_rate: number;
|
|
22529
22684
|
readonly export_control_classification_number?: string;
|
|
22530
22685
|
readonly labels?: io.flow.internal.v0.models.CustomsProductLabels;
|
|
22686
|
+
readonly applicable_preferential_rate?: io.flow.internal.v0.enums.ApplicablePreferentialRate;
|
|
22531
22687
|
}
|
|
22532
22688
|
|
|
22533
22689
|
interface ItemDimensionEstimate {
|
|
@@ -23632,6 +23788,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23632
23788
|
readonly conditions?: string;
|
|
23633
23789
|
}
|
|
23634
23790
|
|
|
23791
|
+
interface NiallItem {
|
|
23792
|
+
readonly id: string;
|
|
23793
|
+
readonly number: string;
|
|
23794
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
23795
|
+
readonly description?: string;
|
|
23796
|
+
readonly type: io.flow.internal.v0.enums.NiallItemType;
|
|
23797
|
+
readonly added_on: string;
|
|
23798
|
+
}
|
|
23799
|
+
|
|
23800
|
+
interface NiallItemForm {
|
|
23801
|
+
readonly number: string;
|
|
23802
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
23803
|
+
readonly description?: string;
|
|
23804
|
+
readonly type: io.flow.internal.v0.enums.NiallItemType;
|
|
23805
|
+
readonly added_on: string;
|
|
23806
|
+
}
|
|
23807
|
+
|
|
23635
23808
|
interface NoCalculatedTaxAmount {
|
|
23636
23809
|
readonly discriminator: 'no_calculated_tax_amount';
|
|
23637
23810
|
readonly amount: number;
|
|
@@ -25241,6 +25414,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25241
25414
|
readonly rate: number;
|
|
25242
25415
|
}
|
|
25243
25416
|
|
|
25417
|
+
interface PrateekItem {
|
|
25418
|
+
readonly id: string;
|
|
25419
|
+
readonly number: string;
|
|
25420
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
25421
|
+
readonly description?: string;
|
|
25422
|
+
readonly type: io.flow.internal.v0.enums.PrateekItemType;
|
|
25423
|
+
readonly added_on: string;
|
|
25424
|
+
}
|
|
25425
|
+
|
|
25426
|
+
interface PrateekItemForm {
|
|
25427
|
+
readonly number: string;
|
|
25428
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
25429
|
+
readonly description?: string;
|
|
25430
|
+
readonly type: io.flow.internal.v0.enums.PrateekItemType;
|
|
25431
|
+
readonly added_on: string;
|
|
25432
|
+
}
|
|
25433
|
+
|
|
25244
25434
|
interface Prediction {
|
|
25245
25435
|
readonly main_material: string;
|
|
25246
25436
|
readonly gender: string;
|
|
@@ -25447,11 +25637,55 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25447
25637
|
readonly product_restriction_rule_decision: io.flow.internal.v0.models.ProductRestrictionRuleDecision;
|
|
25448
25638
|
}
|
|
25449
25639
|
|
|
25640
|
+
interface ProductRestrictionState {
|
|
25641
|
+
readonly id: string;
|
|
25642
|
+
readonly organization_id: string;
|
|
25643
|
+
readonly product_number: string;
|
|
25644
|
+
readonly review_status: io.flow.internal.v0.enums.RestrictionStateReviewStatus;
|
|
25645
|
+
readonly pending_restriction_count?: number;
|
|
25646
|
+
readonly pending_verification_count?: number;
|
|
25647
|
+
readonly oldest_pending_restriction_date?: string;
|
|
25648
|
+
readonly oldest_pending_verification_date?: string;
|
|
25649
|
+
}
|
|
25650
|
+
|
|
25651
|
+
interface ProductRestrictionStateDeleted {
|
|
25652
|
+
readonly discriminator: 'product_restriction_state_deleted';
|
|
25653
|
+
readonly event_id: string;
|
|
25654
|
+
readonly timestamp: string;
|
|
25655
|
+
readonly organization: string;
|
|
25656
|
+
readonly product_restriction_state: io.flow.internal.v0.models.ProductRestrictionState;
|
|
25657
|
+
}
|
|
25658
|
+
|
|
25659
|
+
interface ProductRestrictionStateInserted {
|
|
25660
|
+
readonly discriminator: 'product_restriction_state_inserted';
|
|
25661
|
+
readonly event_id: string;
|
|
25662
|
+
readonly timestamp: string;
|
|
25663
|
+
readonly organization: string;
|
|
25664
|
+
readonly product_restriction_state: io.flow.internal.v0.models.ProductRestrictionState;
|
|
25665
|
+
}
|
|
25666
|
+
|
|
25667
|
+
interface ProductRestrictionStateUpdated {
|
|
25668
|
+
readonly discriminator: 'product_restriction_state_updated';
|
|
25669
|
+
readonly event_id: string;
|
|
25670
|
+
readonly timestamp: string;
|
|
25671
|
+
readonly organization: string;
|
|
25672
|
+
readonly previous_product_restriction_state: io.flow.internal.v0.models.ProductRestrictionState;
|
|
25673
|
+
readonly product_restriction_state: io.flow.internal.v0.models.ProductRestrictionState;
|
|
25674
|
+
}
|
|
25675
|
+
|
|
25450
25676
|
interface ProductReviewHistory {
|
|
25451
25677
|
readonly product_id: string;
|
|
25452
25678
|
readonly reviews: io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
|
|
25453
25679
|
}
|
|
25454
25680
|
|
|
25681
|
+
interface ProductSellabilityResult {
|
|
25682
|
+
readonly shop_id: string;
|
|
25683
|
+
readonly product_number: string;
|
|
25684
|
+
readonly request_id: string;
|
|
25685
|
+
readonly hs6_code: string;
|
|
25686
|
+
readonly restricted_regions: string[];
|
|
25687
|
+
}
|
|
25688
|
+
|
|
25455
25689
|
interface ProductTransaction {
|
|
25456
25690
|
readonly transaction_amount: number;
|
|
25457
25691
|
readonly destination_amount: number;
|
|
@@ -26152,6 +26386,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26152
26386
|
readonly tax_inclusive?: boolean;
|
|
26153
26387
|
readonly duty_inclusive?: boolean;
|
|
26154
26388
|
readonly manual_payment?: boolean;
|
|
26389
|
+
readonly manual_capture?: boolean;
|
|
26155
26390
|
readonly partial_fulfillment?: boolean;
|
|
26156
26391
|
readonly partial_refund?: boolean;
|
|
26157
26392
|
}
|
|
@@ -26216,6 +26451,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26216
26451
|
readonly id: string;
|
|
26217
26452
|
readonly number: string;
|
|
26218
26453
|
readonly submitted_at: string;
|
|
26454
|
+
readonly payment_source?: string;
|
|
26219
26455
|
}
|
|
26220
26456
|
|
|
26221
26457
|
interface ReportingOrganizationSummary {
|
|
@@ -26405,6 +26641,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26405
26641
|
readonly priority_score: number;
|
|
26406
26642
|
readonly date: string;
|
|
26407
26643
|
readonly statuses: io.flow.internal.v0.models.RestrictionStatusMetadata[];
|
|
26644
|
+
readonly counts: io.flow.internal.v0.models.RestrictionSummaryCounts;
|
|
26408
26645
|
readonly count: number;
|
|
26409
26646
|
}
|
|
26410
26647
|
|
|
@@ -26499,6 +26736,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26499
26736
|
readonly negative_keywords: string[];
|
|
26500
26737
|
readonly value_threshold_usd?: number;
|
|
26501
26738
|
readonly auto_review_criteria?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
26739
|
+
readonly source: io.flow.internal.v0.enums.RestrictionOrganizationSource;
|
|
26740
|
+
readonly sellability_positive_keywords?: string[];
|
|
26502
26741
|
}
|
|
26503
26742
|
|
|
26504
26743
|
interface RestrictionRuleDecisionForm {
|
|
@@ -26552,12 +26791,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26552
26791
|
readonly negative_keywords: string[];
|
|
26553
26792
|
readonly value_threshold_usd?: number;
|
|
26554
26793
|
readonly auto_review_criteria?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
26794
|
+
readonly source?: io.flow.internal.v0.enums.RestrictionOrganizationSource;
|
|
26795
|
+
readonly sellability_positive_keywords?: string[];
|
|
26555
26796
|
}
|
|
26556
26797
|
|
|
26557
|
-
interface
|
|
26558
|
-
readonly
|
|
26559
|
-
readonly
|
|
26560
|
-
readonly
|
|
26798
|
+
interface RestrictionRuleLaneExemption {
|
|
26799
|
+
readonly id: string;
|
|
26800
|
+
readonly rule_id: string;
|
|
26801
|
+
readonly description: string;
|
|
26802
|
+
readonly origin_countries: string[];
|
|
26803
|
+
readonly destination_countries: string[];
|
|
26561
26804
|
}
|
|
26562
26805
|
|
|
26563
26806
|
interface RestrictionRuleOverride {
|
|
@@ -26585,6 +26828,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26585
26828
|
readonly count: number;
|
|
26586
26829
|
}
|
|
26587
26830
|
|
|
26831
|
+
interface RestrictionSummaryCounts {
|
|
26832
|
+
readonly pending_restriction_count: number;
|
|
26833
|
+
readonly pending_verification_count: number;
|
|
26834
|
+
}
|
|
26835
|
+
|
|
26588
26836
|
interface RestrictionsDailyops {
|
|
26589
26837
|
readonly id: string;
|
|
26590
26838
|
readonly report_date: string;
|
|
@@ -26749,6 +26997,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26749
26997
|
readonly revenue_record: io.flow.internal.v0.models.RevenueRecord;
|
|
26750
26998
|
}
|
|
26751
26999
|
|
|
27000
|
+
interface RohanItem {
|
|
27001
|
+
readonly id: string;
|
|
27002
|
+
readonly number: string;
|
|
27003
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
27004
|
+
readonly description?: string;
|
|
27005
|
+
readonly type: io.flow.internal.v0.enums.RohanItemType;
|
|
27006
|
+
readonly added_on: string;
|
|
27007
|
+
}
|
|
27008
|
+
|
|
27009
|
+
interface RohanItemForm {
|
|
27010
|
+
readonly number: string;
|
|
27011
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
27012
|
+
readonly description?: string;
|
|
27013
|
+
readonly type: io.flow.internal.v0.enums.RohanItemType;
|
|
27014
|
+
readonly added_on: string;
|
|
27015
|
+
}
|
|
27016
|
+
|
|
26752
27017
|
interface RoutingAccount {
|
|
26753
27018
|
readonly discriminator: 'routing_account';
|
|
26754
27019
|
readonly processor: io.flow.internal.v0.enums.Processor;
|
|
@@ -26870,19 +27135,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26870
27135
|
readonly label: io.flow.internal.v0.models.LabelSummary;
|
|
26871
27136
|
}
|
|
26872
27137
|
|
|
26873
|
-
interface SessionCountries {
|
|
26874
|
-
readonly countries: io.flow.internal.v0.models.SessionCountry[];
|
|
26875
|
-
}
|
|
26876
|
-
|
|
26877
|
-
interface SessionCountry {
|
|
26878
|
-
readonly country: string;
|
|
26879
|
-
readonly status: io.flow.internal.v0.enums.SessionCountryStatus;
|
|
26880
|
-
}
|
|
26881
|
-
|
|
26882
|
-
interface SessionCountryForm {
|
|
26883
|
-
readonly status: io.flow.internal.v0.enums.SessionCountryStatus;
|
|
26884
|
-
}
|
|
26885
|
-
|
|
26886
27138
|
interface SessionOrderData {
|
|
26887
27139
|
readonly id: string;
|
|
26888
27140
|
readonly session: io.flow.common.v0.models.SessionReference;
|
|
@@ -26891,15 +27143,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26891
27143
|
readonly destination: io.flow.experience.v0.models.OrderAddress;
|
|
26892
27144
|
}
|
|
26893
27145
|
|
|
26894
|
-
interface SessionRollout {
|
|
26895
|
-
readonly id: string;
|
|
26896
|
-
readonly percent: number;
|
|
26897
|
-
}
|
|
26898
|
-
|
|
26899
|
-
interface SessionRolloutForm {
|
|
26900
|
-
readonly percent: number;
|
|
26901
|
-
}
|
|
26902
|
-
|
|
26903
27146
|
interface SetupBlockPutForm {
|
|
26904
27147
|
readonly reasons: io.flow.organization.onboarding.state.v0.enums.OnboardingBlockedReason[];
|
|
26905
27148
|
}
|
|
@@ -26912,6 +27155,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26912
27155
|
readonly customer_id: string;
|
|
26913
27156
|
}
|
|
26914
27157
|
|
|
27158
|
+
interface ShipmentCostSummary {
|
|
27159
|
+
readonly lane_id?: string;
|
|
27160
|
+
readonly ratecard_id?: string;
|
|
27161
|
+
readonly ratecard_owner: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
27162
|
+
readonly glbe_shipping_method_id?: string;
|
|
27163
|
+
readonly glbe_proposition_name?: string;
|
|
27164
|
+
readonly weight_break?: number;
|
|
27165
|
+
readonly channel_revenue_share_percentage?: number;
|
|
27166
|
+
readonly rate_level_key?: string;
|
|
27167
|
+
readonly cost_estimate_source: io.flow.label.v0.enums.CostEstimateSource;
|
|
27168
|
+
readonly cost: io.flow.common.v0.models.Money;
|
|
27169
|
+
}
|
|
27170
|
+
|
|
26915
27171
|
interface ShippingLane {
|
|
26916
27172
|
readonly origin: string;
|
|
26917
27173
|
readonly destination: string;
|
|
@@ -26921,6 +27177,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26921
27177
|
readonly id: string;
|
|
26922
27178
|
}
|
|
26923
27179
|
|
|
27180
|
+
interface ShippingPricing {
|
|
27181
|
+
readonly freight_cost: number;
|
|
27182
|
+
readonly customer_price: number;
|
|
27183
|
+
}
|
|
27184
|
+
|
|
26924
27185
|
interface Shop {
|
|
26925
27186
|
readonly id: string;
|
|
26926
27187
|
readonly organization?: io.flow.common.v0.models.OrganizationReference;
|
|
@@ -27348,6 +27609,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27348
27609
|
}
|
|
27349
27610
|
|
|
27350
27611
|
interface ShopifyMerchantPlan {
|
|
27612
|
+
readonly id: string;
|
|
27351
27613
|
readonly authorization: io.flow.payment.v0.models.AuthorizationReference;
|
|
27352
27614
|
readonly plan: io.flow.internal.v0.enums.ShopifyPlanType;
|
|
27353
27615
|
}
|
|
@@ -27516,6 +27778,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27516
27778
|
readonly attributes: io.flow.internal.v0.models.ShopifyOrderLineAttribute[];
|
|
27517
27779
|
}
|
|
27518
27780
|
|
|
27781
|
+
interface ShopifyOrderRiskAssessment {
|
|
27782
|
+
readonly id: string;
|
|
27783
|
+
readonly risk_level: string;
|
|
27784
|
+
readonly assessment_created_at: string;
|
|
27785
|
+
}
|
|
27786
|
+
|
|
27787
|
+
interface ShopifyOrderRiskAssessmentDeleted {
|
|
27788
|
+
readonly discriminator: 'shopify_order_risk_assessment_deleted';
|
|
27789
|
+
readonly event_id: string;
|
|
27790
|
+
readonly timestamp: string;
|
|
27791
|
+
readonly organization: string;
|
|
27792
|
+
readonly id: string;
|
|
27793
|
+
}
|
|
27794
|
+
|
|
27795
|
+
interface ShopifyOrderRiskAssessmentUpserted {
|
|
27796
|
+
readonly discriminator: 'shopify_order_risk_assessment_upserted';
|
|
27797
|
+
readonly event_id: string;
|
|
27798
|
+
readonly timestamp: string;
|
|
27799
|
+
readonly organization: string;
|
|
27800
|
+
readonly assessment: io.flow.internal.v0.models.ShopifyOrderRiskAssessment;
|
|
27801
|
+
}
|
|
27802
|
+
|
|
27519
27803
|
interface ShopifyOrganizationSettings {
|
|
27520
27804
|
readonly id: string;
|
|
27521
27805
|
readonly process_label: boolean;
|
|
@@ -27947,26 +28231,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27947
28231
|
readonly spot_rate: io.flow.internal.v0.models.SpotRate;
|
|
27948
28232
|
}
|
|
27949
28233
|
|
|
27950
|
-
interface SppTrackerUpdateRequest {
|
|
27951
|
-
readonly id: string;
|
|
27952
|
-
readonly tracking_subscription: io.flow.internal.v0.models.TrackingSubscription;
|
|
27953
|
-
readonly created_at: string;
|
|
27954
|
-
}
|
|
27955
|
-
|
|
27956
|
-
interface SppTrackerUpdateRequestDeleted {
|
|
27957
|
-
readonly discriminator: 'spp_tracker_update_request_deleted';
|
|
27958
|
-
readonly event_id: string;
|
|
27959
|
-
readonly timestamp: string;
|
|
27960
|
-
readonly id: string;
|
|
27961
|
-
}
|
|
27962
|
-
|
|
27963
|
-
interface SppTrackerUpdateRequestUpserted {
|
|
27964
|
-
readonly discriminator: 'spp_tracker_update_request_upserted';
|
|
27965
|
-
readonly event_id: string;
|
|
27966
|
-
readonly timestamp: string;
|
|
27967
|
-
readonly spp_tracker_update_request: io.flow.internal.v0.models.SppTrackerUpdateRequest;
|
|
27968
|
-
}
|
|
27969
|
-
|
|
27970
28234
|
interface StandaloneAttachment {
|
|
27971
28235
|
readonly id: string;
|
|
27972
28236
|
readonly statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
@@ -29147,6 +29411,53 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29147
29411
|
readonly customer_bundle?: io.flow.customer.v0.models.CustomerBundle;
|
|
29148
29412
|
}
|
|
29149
29413
|
|
|
29414
|
+
interface ValidatedAddress {
|
|
29415
|
+
readonly company_name: string;
|
|
29416
|
+
readonly person_name: string;
|
|
29417
|
+
readonly phone: string;
|
|
29418
|
+
readonly email: string;
|
|
29419
|
+
readonly original_streets: string[];
|
|
29420
|
+
readonly city: string;
|
|
29421
|
+
readonly province: string;
|
|
29422
|
+
readonly postal: string;
|
|
29423
|
+
readonly country: io.flow.reference.v0.models.Country;
|
|
29424
|
+
readonly original_address: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
29425
|
+
}
|
|
29426
|
+
|
|
29427
|
+
interface ValidatedShippingData {
|
|
29428
|
+
readonly organization: string;
|
|
29429
|
+
readonly reference_id?: string;
|
|
29430
|
+
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
29431
|
+
readonly merchant_of_record_entity?: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
29432
|
+
readonly destination: io.flow.internal.v0.models.ValidatedAddress;
|
|
29433
|
+
readonly origin: io.flow.internal.v0.models.ValidatedAddress;
|
|
29434
|
+
readonly service: io.flow.reference.v0.models.CarrierService;
|
|
29435
|
+
readonly package: io.flow.internal.v0.models.EnrichedShippingLabelPackage;
|
|
29436
|
+
readonly total_catalog_item_value: io.flow.common.v0.models.Money;
|
|
29437
|
+
readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
29438
|
+
readonly distance_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
29439
|
+
readonly flow_tracking_number: string;
|
|
29440
|
+
readonly center?: io.flow.fulfillment.v0.models.Center;
|
|
29441
|
+
readonly catalog_items: io.flow.internal.v0.models.InternalItem[];
|
|
29442
|
+
readonly order: io.flow.experience.v0.models.Order;
|
|
29443
|
+
readonly window: io.flow.common.v0.models.DatetimeRange;
|
|
29444
|
+
readonly id: string;
|
|
29445
|
+
readonly shipment_recipient: io.flow.label.v0.enums.ShipmentRecipient;
|
|
29446
|
+
readonly request_id: string;
|
|
29447
|
+
readonly commercial_invoice_data?: io.flow.internal.v0.models.InvoiceData;
|
|
29448
|
+
readonly order_identifier?: string;
|
|
29449
|
+
readonly fulfillment_key?: string;
|
|
29450
|
+
readonly rex_number?: string;
|
|
29451
|
+
readonly weee_number?: string;
|
|
29452
|
+
readonly generate_commercial_invoice_only: boolean;
|
|
29453
|
+
readonly liability_remittance_plan?: io.flow.internal.v0.models.LiabilityRemittancePlan;
|
|
29454
|
+
readonly shipment_cost_summary?: io.flow.internal.v0.models.ShipmentCostSummary;
|
|
29455
|
+
readonly shipping_label_hop_cost_itemized_estimate?: io.flow.label.v0.models.ShippingLabelHopCostItemizedEstimate;
|
|
29456
|
+
readonly additional_services_requested?: io.flow.label.v0.models.AdditionalServicesRequested[];
|
|
29457
|
+
readonly provided_charges?: io.flow.internal.v0.models.ChargeInput[];
|
|
29458
|
+
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
29459
|
+
}
|
|
29460
|
+
|
|
29150
29461
|
interface ValidationCharacterLength {
|
|
29151
29462
|
readonly discriminator: 'validation_character_length';
|
|
29152
29463
|
readonly min?: number;
|
|
@@ -29382,7 +29693,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29382
29693
|
| io.flow.internal.v0.models.OrganizationCurrencySettingDeleted
|
|
29383
29694
|
| io.flow.internal.v0.models.ChannelCurrencySettingUpserted
|
|
29384
29695
|
| io.flow.internal.v0.models.ChannelCurrencySettingDeleted
|
|
29385
|
-
| io.flow.internal.v0.models.CustomerPurgeUpserted
|
|
29386
29696
|
| io.flow.internal.v0.models.CustomsDescriptionImport
|
|
29387
29697
|
| io.flow.internal.v0.models.CustomsDescriptionTariffsImport
|
|
29388
29698
|
| io.flow.internal.v0.models.DisputeUpserted
|
|
@@ -29505,8 +29815,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29505
29815
|
| io.flow.internal.v0.models.UnassignedMerchantGuidDeleted
|
|
29506
29816
|
| io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted
|
|
29507
29817
|
| io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted
|
|
29508
|
-
| io.flow.internal.v0.models.SppTrackerUpdateRequestUpserted
|
|
29509
|
-
| io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted
|
|
29510
29818
|
| io.flow.internal.v0.models.PartnerRequestUpserted
|
|
29511
29819
|
| io.flow.internal.v0.models.PartnerRequestDeleted
|
|
29512
29820
|
| io.flow.internal.v0.models.InternalAuthorizationUpserted
|
|
@@ -29539,6 +29847,9 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29539
29847
|
| io.flow.internal.v0.models.PaypalDisputeDeleted
|
|
29540
29848
|
| io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted
|
|
29541
29849
|
| io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted
|
|
29850
|
+
| io.flow.internal.v0.models.ProductRestrictionStateInserted
|
|
29851
|
+
| io.flow.internal.v0.models.ProductRestrictionStateUpdated
|
|
29852
|
+
| io.flow.internal.v0.models.ProductRestrictionStateDeleted
|
|
29542
29853
|
| io.flow.internal.v0.models.OrderRatesPublishedV3
|
|
29543
29854
|
| io.flow.internal.v0.models.RatecardDimensionEstimateUpserted
|
|
29544
29855
|
| io.flow.internal.v0.models.RatecardDimensionEstimateDeleted
|
|
@@ -29590,6 +29901,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29590
29901
|
| io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished
|
|
29591
29902
|
| io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted
|
|
29592
29903
|
| io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted
|
|
29904
|
+
| io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted
|
|
29905
|
+
| io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted
|
|
29593
29906
|
| io.flow.internal.v0.models.ShopifyProductCreateUpserted
|
|
29594
29907
|
| io.flow.internal.v0.models.ShopifyProductCreateDeleted
|
|
29595
29908
|
| io.flow.internal.v0.models.ShopifyProductUpdateUpserted
|
|
@@ -30042,6 +30355,8 @@ export type ApiCallReferenceId = io.flow.internal.v0.enums.ApiCallReferenceId;
|
|
|
30042
30355
|
export type ApmContent = io.flow.internal.v0.models.ApmContent;
|
|
30043
30356
|
export type ApplePayAuthorizationPayload =
|
|
30044
30357
|
io.flow.internal.v0.models.ApplePayAuthorizationPayload;
|
|
30358
|
+
export type ApplicablePreferentialRate =
|
|
30359
|
+
io.flow.internal.v0.enums.ApplicablePreferentialRate;
|
|
30045
30360
|
export type ApplyAtValueForm = io.flow.internal.v0.models.ApplyAtValueForm;
|
|
30046
30361
|
export type AttemptStatistics = io.flow.internal.v0.models.AttemptStatistics;
|
|
30047
30362
|
export type AttributeLabel = io.flow.internal.v0.models.AttributeLabel;
|
|
@@ -30525,6 +30840,8 @@ export type CommercialInvoiceInternalUpserted =
|
|
|
30525
30840
|
io.flow.internal.v0.models.CommercialInvoiceInternalUpserted;
|
|
30526
30841
|
export type CommercialInvoiceSummary =
|
|
30527
30842
|
io.flow.internal.v0.models.CommercialInvoiceSummary;
|
|
30843
|
+
export type CommercialInvoiceVersion =
|
|
30844
|
+
io.flow.internal.v0.enums.CommercialInvoiceVersion;
|
|
30528
30845
|
export type Company = io.flow.internal.v0.enums.Company;
|
|
30529
30846
|
export type CompanyReference = io.flow.internal.v0.models.CompanyReference;
|
|
30530
30847
|
export type Compliance = io.flow.internal.v0.models.Compliance;
|
|
@@ -30585,9 +30902,6 @@ export type CryptoAuthenticationForm =
|
|
|
30585
30902
|
export type CsvTransaction = io.flow.internal.v0.models.CsvTransaction;
|
|
30586
30903
|
export type CurrencyInternalRate =
|
|
30587
30904
|
io.flow.internal.v0.models.CurrencyInternalRate;
|
|
30588
|
-
export type CustomerPurgeUpserted =
|
|
30589
|
-
io.flow.internal.v0.models.CustomerPurgeUpserted;
|
|
30590
|
-
export type CustomerSecret = io.flow.internal.v0.models.CustomerSecret;
|
|
30591
30905
|
export type CustomsDescriptionImport =
|
|
30592
30906
|
io.flow.internal.v0.models.CustomsDescriptionImport;
|
|
30593
30907
|
export type CustomsDescriptionStatistics =
|
|
@@ -30771,7 +31085,13 @@ export type EmptyAttribute = io.flow.internal.v0.enums.EmptyAttribute;
|
|
|
30771
31085
|
export type EmptyClassificationForm =
|
|
30772
31086
|
io.flow.internal.v0.models.EmptyClassificationForm;
|
|
30773
31087
|
export type Encryption = io.flow.internal.v0.models.Encryption;
|
|
31088
|
+
export type EnrichedLineItemForm =
|
|
31089
|
+
io.flow.internal.v0.models.EnrichedLineItemForm;
|
|
31090
|
+
export type EnrichedShippingLabelPackage =
|
|
31091
|
+
io.flow.internal.v0.models.EnrichedShippingLabelPackage;
|
|
30774
31092
|
export type EntityReference = io.flow.internal.v0.models.EntityReference;
|
|
31093
|
+
export type EntityReferenceNumber =
|
|
31094
|
+
io.flow.internal.v0.models.EntityReferenceNumber;
|
|
30775
31095
|
export type ErpFileType = io.flow.internal.v0.enums.ErpFileType;
|
|
30776
31096
|
export type ErpFlowFile = io.flow.internal.v0.models.ErpFlowFile;
|
|
30777
31097
|
export type ErpFlowFileForm = io.flow.internal.v0.models.ErpFlowFileForm;
|
|
@@ -31044,6 +31364,8 @@ export type FxRevenueRecognitionRate =
|
|
|
31044
31364
|
io.flow.internal.v0.models.FxRevenueRecognitionRate;
|
|
31045
31365
|
export type FxRevenueRecognitionSource =
|
|
31046
31366
|
io.flow.internal.v0.models.FxRevenueRecognitionSource;
|
|
31367
|
+
export type GeIngestionFileStatus =
|
|
31368
|
+
io.flow.internal.v0.enums.GeIngestionFileStatus;
|
|
31047
31369
|
export type GeRevenueShareTransaction =
|
|
31048
31370
|
io.flow.internal.v0.models.GeRevenueShareTransaction;
|
|
31049
31371
|
export type GenerateLoad = io.flow.internal.v0.unions.GenerateLoad;
|
|
@@ -31137,6 +31459,7 @@ export type InternalFiservAuthorizationDetails =
|
|
|
31137
31459
|
io.flow.internal.v0.models.InternalFiservAuthorizationDetails;
|
|
31138
31460
|
export type InternalHarmonizationStatistic =
|
|
31139
31461
|
io.flow.internal.v0.unions.InternalHarmonizationStatistic;
|
|
31462
|
+
export type InternalItem = io.flow.internal.v0.models.InternalItem;
|
|
31140
31463
|
export type InternalItemForm = io.flow.internal.v0.models.InternalItemForm;
|
|
31141
31464
|
export type InternalOrder = io.flow.internal.v0.models.InternalOrder;
|
|
31142
31465
|
export type InternalPaymentEntityType =
|
|
@@ -31158,6 +31481,9 @@ export type Invariant = io.flow.internal.v0.models.Invariant;
|
|
|
31158
31481
|
export type InventoryItemWrapper =
|
|
31159
31482
|
io.flow.internal.v0.models.InventoryItemWrapper;
|
|
31160
31483
|
export type Invoice = io.flow.internal.v0.models.Invoice;
|
|
31484
|
+
export type InvoiceData = io.flow.internal.v0.models.InvoiceData;
|
|
31485
|
+
export type InvoiceDataLineItem =
|
|
31486
|
+
io.flow.internal.v0.models.InvoiceDataLineItem;
|
|
31161
31487
|
export type InvoiceInfoForm = io.flow.internal.v0.models.InvoiceInfoForm;
|
|
31162
31488
|
export type InvoiceLine = io.flow.internal.v0.models.InvoiceLine;
|
|
31163
31489
|
export type InvoiceLineItem = io.flow.internal.v0.models.InvoiceLineItem;
|
|
@@ -31438,6 +31764,9 @@ export type NegativeDebitMetrics =
|
|
|
31438
31764
|
io.flow.internal.v0.models.NegativeDebitMetrics;
|
|
31439
31765
|
export type NextBillingStatement =
|
|
31440
31766
|
io.flow.internal.v0.models.NextBillingStatement;
|
|
31767
|
+
export type NiallItem = io.flow.internal.v0.models.NiallItem;
|
|
31768
|
+
export type NiallItemForm = io.flow.internal.v0.models.NiallItemForm;
|
|
31769
|
+
export type NiallItemType = io.flow.internal.v0.enums.NiallItemType;
|
|
31441
31770
|
export type NoCalculatedTaxAmount =
|
|
31442
31771
|
io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
31443
31772
|
export type NoClassificationForm =
|
|
@@ -31448,6 +31777,8 @@ export type NonChannelPaymentBankAccount =
|
|
|
31448
31777
|
io.flow.internal.v0.models.NonChannelPaymentBankAccount;
|
|
31449
31778
|
export type NonL4LTaxDutyFxTransaction =
|
|
31450
31779
|
io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction;
|
|
31780
|
+
export type NonL4LTaxDutyFxTransactionType =
|
|
31781
|
+
io.flow.internal.v0.enums.NonL4LTaxDutyFxTransactionType;
|
|
31451
31782
|
export type Notification = io.flow.internal.v0.models.Notification;
|
|
31452
31783
|
export type OnboardingAuditMessage =
|
|
31453
31784
|
io.flow.internal.v0.models.OnboardingAuditMessage;
|
|
@@ -31866,6 +32197,9 @@ export type PlatformFeePercentage =
|
|
|
31866
32197
|
io.flow.internal.v0.models.PlatformFeePercentage;
|
|
31867
32198
|
export type PlatformFeePercentageTier =
|
|
31868
32199
|
io.flow.internal.v0.models.PlatformFeePercentageTier;
|
|
32200
|
+
export type PrateekItem = io.flow.internal.v0.models.PrateekItem;
|
|
32201
|
+
export type PrateekItemForm = io.flow.internal.v0.models.PrateekItemForm;
|
|
32202
|
+
export type PrateekItemType = io.flow.internal.v0.enums.PrateekItemType;
|
|
31869
32203
|
export type Prediction = io.flow.internal.v0.models.Prediction;
|
|
31870
32204
|
export type PreferredBillingSchedule =
|
|
31871
32205
|
io.flow.internal.v0.enums.PreferredBillingSchedule;
|
|
@@ -31930,8 +32264,18 @@ export type ProductRestrictionRuleDecisionDeleted =
|
|
|
31930
32264
|
io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted;
|
|
31931
32265
|
export type ProductRestrictionRuleDecisionUpserted =
|
|
31932
32266
|
io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted;
|
|
32267
|
+
export type ProductRestrictionState =
|
|
32268
|
+
io.flow.internal.v0.models.ProductRestrictionState;
|
|
32269
|
+
export type ProductRestrictionStateDeleted =
|
|
32270
|
+
io.flow.internal.v0.models.ProductRestrictionStateDeleted;
|
|
32271
|
+
export type ProductRestrictionStateInserted =
|
|
32272
|
+
io.flow.internal.v0.models.ProductRestrictionStateInserted;
|
|
32273
|
+
export type ProductRestrictionStateUpdated =
|
|
32274
|
+
io.flow.internal.v0.models.ProductRestrictionStateUpdated;
|
|
31933
32275
|
export type ProductReviewHistory =
|
|
31934
32276
|
io.flow.internal.v0.models.ProductReviewHistory;
|
|
32277
|
+
export type ProductSellabilityResult =
|
|
32278
|
+
io.flow.internal.v0.models.ProductSellabilityResult;
|
|
31935
32279
|
export type ProductStatus = io.flow.internal.v0.enums.ProductStatus;
|
|
31936
32280
|
export type ProductTransaction = io.flow.internal.v0.models.ProductTransaction;
|
|
31937
32281
|
export type PromptAction = io.flow.internal.v0.enums.PromptAction;
|
|
@@ -32171,8 +32515,12 @@ export type RestrictionKeywords =
|
|
|
32171
32515
|
io.flow.internal.v0.models.RestrictionKeywords;
|
|
32172
32516
|
export type RestrictionOrganization =
|
|
32173
32517
|
io.flow.internal.v0.models.RestrictionOrganization;
|
|
32518
|
+
export type RestrictionOrganizationChannel =
|
|
32519
|
+
io.flow.internal.v0.enums.RestrictionOrganizationChannel;
|
|
32174
32520
|
export type RestrictionOrganizationDecisionSummary =
|
|
32175
32521
|
io.flow.internal.v0.models.RestrictionOrganizationDecisionSummary;
|
|
32522
|
+
export type RestrictionOrganizationSource =
|
|
32523
|
+
io.flow.internal.v0.enums.RestrictionOrganizationSource;
|
|
32176
32524
|
export type RestrictionOrganizationStatus =
|
|
32177
32525
|
io.flow.internal.v0.models.RestrictionOrganizationStatus;
|
|
32178
32526
|
export type RestrictionOrganizationStatusDeleted =
|
|
@@ -32202,19 +32550,25 @@ export type RestrictionRuleEffectForm =
|
|
|
32202
32550
|
io.flow.internal.v0.models.RestrictionRuleEffectForm;
|
|
32203
32551
|
export type RestrictionRuleEffectUpserted =
|
|
32204
32552
|
io.flow.internal.v0.models.RestrictionRuleEffectUpserted;
|
|
32553
|
+
export type RestrictionRuleExceptionAction =
|
|
32554
|
+
io.flow.internal.v0.enums.RestrictionRuleExceptionAction;
|
|
32205
32555
|
export type RestrictionRuleForm =
|
|
32206
32556
|
io.flow.internal.v0.models.RestrictionRuleForm;
|
|
32207
|
-
export type
|
|
32208
|
-
io.flow.internal.v0.models.
|
|
32557
|
+
export type RestrictionRuleLaneExemption =
|
|
32558
|
+
io.flow.internal.v0.models.RestrictionRuleLaneExemption;
|
|
32209
32559
|
export type RestrictionRuleOverride =
|
|
32210
32560
|
io.flow.internal.v0.models.RestrictionRuleOverride;
|
|
32211
32561
|
export type RestrictionRuleSummary =
|
|
32212
32562
|
io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
32213
32563
|
export type RestrictionRuleUpserted =
|
|
32214
32564
|
io.flow.internal.v0.models.RestrictionRuleUpserted;
|
|
32565
|
+
export type RestrictionStateReviewStatus =
|
|
32566
|
+
io.flow.internal.v0.enums.RestrictionStateReviewStatus;
|
|
32215
32567
|
export type RestrictionStatus = io.flow.internal.v0.enums.RestrictionStatus;
|
|
32216
32568
|
export type RestrictionStatusMetadata =
|
|
32217
32569
|
io.flow.internal.v0.models.RestrictionStatusMetadata;
|
|
32570
|
+
export type RestrictionSummaryCounts =
|
|
32571
|
+
io.flow.internal.v0.models.RestrictionSummaryCounts;
|
|
32218
32572
|
export type RestrictionsDailyops =
|
|
32219
32573
|
io.flow.internal.v0.models.RestrictionsDailyops;
|
|
32220
32574
|
export type RestrictionsDailyopsDeleted =
|
|
@@ -32251,6 +32605,9 @@ export type RevenueRecordUpserted =
|
|
|
32251
32605
|
io.flow.internal.v0.models.RevenueRecordUpserted;
|
|
32252
32606
|
export type RiskCheck = io.flow.internal.v0.enums.RiskCheck;
|
|
32253
32607
|
export type RiskEvaluation = io.flow.internal.v0.enums.RiskEvaluation;
|
|
32608
|
+
export type RohanItem = io.flow.internal.v0.models.RohanItem;
|
|
32609
|
+
export type RohanItemForm = io.flow.internal.v0.models.RohanItemForm;
|
|
32610
|
+
export type RohanItemType = io.flow.internal.v0.enums.RohanItemType;
|
|
32254
32611
|
export type RoutingAccount = io.flow.internal.v0.models.RoutingAccount;
|
|
32255
32612
|
export type RoutingEntity = io.flow.internal.v0.unions.RoutingEntity;
|
|
32256
32613
|
export type RoutingMerchant = io.flow.internal.v0.models.RoutingMerchant;
|
|
@@ -32278,19 +32635,15 @@ export type SearchProviderExport =
|
|
|
32278
32635
|
io.flow.internal.v0.models.SearchProviderExport;
|
|
32279
32636
|
export type SearchTrackingSummary =
|
|
32280
32637
|
io.flow.internal.v0.models.SearchTrackingSummary;
|
|
32281
|
-
export type SessionCountries = io.flow.internal.v0.models.SessionCountries;
|
|
32282
|
-
export type SessionCountry = io.flow.internal.v0.models.SessionCountry;
|
|
32283
|
-
export type SessionCountryForm = io.flow.internal.v0.models.SessionCountryForm;
|
|
32284
|
-
export type SessionCountryStatus =
|
|
32285
|
-
io.flow.internal.v0.enums.SessionCountryStatus;
|
|
32286
32638
|
export type SessionOrderData = io.flow.internal.v0.models.SessionOrderData;
|
|
32287
|
-
export type SessionRollout = io.flow.internal.v0.models.SessionRollout;
|
|
32288
|
-
export type SessionRolloutForm = io.flow.internal.v0.models.SessionRolloutForm;
|
|
32289
32639
|
export type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
|
|
32290
32640
|
export type SfExpress = io.flow.internal.v0.models.SfExpress;
|
|
32641
|
+
export type ShipmentCostSummary =
|
|
32642
|
+
io.flow.internal.v0.models.ShipmentCostSummary;
|
|
32291
32643
|
export type ShippingLane = io.flow.internal.v0.models.ShippingLane;
|
|
32292
32644
|
export type ShippingMethodReference =
|
|
32293
32645
|
io.flow.internal.v0.models.ShippingMethodReference;
|
|
32646
|
+
export type ShippingPricing = io.flow.internal.v0.models.ShippingPricing;
|
|
32294
32647
|
export type Shop = io.flow.internal.v0.models.Shop;
|
|
32295
32648
|
export type ShopForm = io.flow.internal.v0.models.ShopForm;
|
|
32296
32649
|
export type ShopVersion = io.flow.internal.v0.models.ShopVersion;
|
|
@@ -32474,6 +32827,12 @@ export type ShopifyOrderLineAttribute =
|
|
|
32474
32827
|
io.flow.internal.v0.models.ShopifyOrderLineAttribute;
|
|
32475
32828
|
export type ShopifyOrderLineContent =
|
|
32476
32829
|
io.flow.internal.v0.models.ShopifyOrderLineContent;
|
|
32830
|
+
export type ShopifyOrderRiskAssessment =
|
|
32831
|
+
io.flow.internal.v0.models.ShopifyOrderRiskAssessment;
|
|
32832
|
+
export type ShopifyOrderRiskAssessmentDeleted =
|
|
32833
|
+
io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted;
|
|
32834
|
+
export type ShopifyOrderRiskAssessmentUpserted =
|
|
32835
|
+
io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted;
|
|
32477
32836
|
export type ShopifyOrganizationSettings =
|
|
32478
32837
|
io.flow.internal.v0.models.ShopifyOrganizationSettings;
|
|
32479
32838
|
export type ShopifyOrganizationSettingsForm =
|
|
@@ -32606,12 +32965,6 @@ export type SpotRateMetadataRate =
|
|
|
32606
32965
|
io.flow.internal.v0.models.SpotRateMetadataRate;
|
|
32607
32966
|
export type SpotRateUpserted = io.flow.internal.v0.models.SpotRateUpserted;
|
|
32608
32967
|
export type SpotRateVersion = io.flow.internal.v0.models.SpotRateVersion;
|
|
32609
|
-
export type SppTrackerUpdateRequest =
|
|
32610
|
-
io.flow.internal.v0.models.SppTrackerUpdateRequest;
|
|
32611
|
-
export type SppTrackerUpdateRequestDeleted =
|
|
32612
|
-
io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted;
|
|
32613
|
-
export type SppTrackerUpdateRequestUpserted =
|
|
32614
|
-
io.flow.internal.v0.models.SppTrackerUpdateRequestUpserted;
|
|
32615
32968
|
export type StandaloneAttachment =
|
|
32616
32969
|
io.flow.internal.v0.models.StandaloneAttachment;
|
|
32617
32970
|
export type StandaloneAttachmentDeleted =
|
|
@@ -32902,6 +33255,9 @@ export type UserStatusRule = io.flow.internal.v0.models.UserStatusRule;
|
|
|
32902
33255
|
export type UserStatusRuleForm = io.flow.internal.v0.models.UserStatusRuleForm;
|
|
32903
33256
|
export type UserUpsertedV2 = io.flow.internal.v0.models.UserUpsertedV2;
|
|
32904
33257
|
export type V1Checkout = io.flow.internal.v0.models.V1Checkout;
|
|
33258
|
+
export type ValidatedAddress = io.flow.internal.v0.models.ValidatedAddress;
|
|
33259
|
+
export type ValidatedShippingData =
|
|
33260
|
+
io.flow.internal.v0.models.ValidatedShippingData;
|
|
32905
33261
|
export type ValidationCharacterLength =
|
|
32906
33262
|
io.flow.internal.v0.models.ValidationCharacterLength;
|
|
32907
33263
|
export type ValidationRule = io.flow.internal.v0.unions.ValidationRule;
|