@flowio/types 11.24.118 → 11.24.120
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 +201 -30
- package/dist/api.d.ts +3100 -5212
- package/package.json +2 -2
- package/src/api-internal.ts +302 -31
- package/src/api.ts +4549 -7208
package/src/api-internal.ts
CHANGED
|
@@ -1537,7 +1537,7 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
1537
1537
|
| 'invalid_customer'
|
|
1538
1538
|
| 'invalid_destination'
|
|
1539
1539
|
| 'unknown';
|
|
1540
|
-
type PaymentFeeType = 'fx' | 'mor';
|
|
1540
|
+
type PaymentFeeType = 'fx' | 'mor' | 'sp';
|
|
1541
1541
|
type PaymentSourceConfirmationActionType =
|
|
1542
1542
|
| 'cvv'
|
|
1543
1543
|
| 'billing_address'
|
|
@@ -6382,6 +6382,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
6382
6382
|
readonly api_password?: string;
|
|
6383
6383
|
readonly access_token?: string;
|
|
6384
6384
|
readonly shopify_plan_name?: io.flow.shopify.external.v0.enums.ShopifyPlanName;
|
|
6385
|
+
readonly catalog_publication_owner?: io.flow.channel.shopify.internal.v0.enums.CatalogPublicationOwner;
|
|
6385
6386
|
}
|
|
6386
6387
|
|
|
6387
6388
|
interface ShopifyMarketsShopSummary {
|
|
@@ -9153,6 +9154,48 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
9153
9154
|
}
|
|
9154
9155
|
}
|
|
9155
9156
|
|
|
9157
|
+
declare namespace io.flow.channel.shopify.internal.v0.enums {
|
|
9158
|
+
type CatalogPublicationOwner = 'shopify' | 'globale';
|
|
9159
|
+
type ShopifyService = 'payment' | 'duty_tax_calculator' | 'sellability';
|
|
9160
|
+
}
|
|
9161
|
+
|
|
9162
|
+
declare namespace io.flow.channel.shopify.internal.v0.models {
|
|
9163
|
+
interface ChannelOrganizationShopify {
|
|
9164
|
+
readonly organization: io.flow.channel.v0.models.ChannelOrganization;
|
|
9165
|
+
readonly tokens: io.flow.channel.shopify.internal.v0.models.ShopifyChannelOrganizationTokens[];
|
|
9166
|
+
}
|
|
9167
|
+
|
|
9168
|
+
interface ChannelOrganizationShopifyForm {
|
|
9169
|
+
readonly form: io.flow.channel.v0.models.ChannelOrganizationPutForm;
|
|
9170
|
+
readonly metadata: io.flow.channel.shopify.internal.v0.models.ShopifyMetadata;
|
|
9171
|
+
}
|
|
9172
|
+
|
|
9173
|
+
interface ChannelOrganizationShopifyPostForm {
|
|
9174
|
+
readonly form: io.flow.channel.v0.models.ChannelOrganizationForm;
|
|
9175
|
+
readonly metadata: io.flow.channel.shopify.internal.v0.models.ShopifyMetadata;
|
|
9176
|
+
}
|
|
9177
|
+
|
|
9178
|
+
interface ShopifyCatalogPublication {
|
|
9179
|
+
readonly owner: io.flow.channel.shopify.internal.v0.enums.CatalogPublicationOwner;
|
|
9180
|
+
}
|
|
9181
|
+
|
|
9182
|
+
interface ShopifyChannelOrganizationToken {
|
|
9183
|
+
readonly cleartext: string;
|
|
9184
|
+
}
|
|
9185
|
+
|
|
9186
|
+
interface ShopifyChannelOrganizationTokens {
|
|
9187
|
+
readonly token: io.flow.channel.shopify.internal.v0.models.ShopifyChannelOrganizationToken;
|
|
9188
|
+
readonly service: io.flow.channel.shopify.internal.v0.enums.ShopifyService;
|
|
9189
|
+
}
|
|
9190
|
+
|
|
9191
|
+
interface ShopifyMetadata {
|
|
9192
|
+
readonly domain: string;
|
|
9193
|
+
readonly myshopify_domain: string;
|
|
9194
|
+
readonly catalog_publication?: io.flow.channel.shopify.internal.v0.models.ShopifyCatalogPublication;
|
|
9195
|
+
readonly token: string;
|
|
9196
|
+
}
|
|
9197
|
+
}
|
|
9198
|
+
|
|
9156
9199
|
declare namespace io.flow.order.price.v0.enums {
|
|
9157
9200
|
type OrderPriceDetailComponentKey =
|
|
9158
9201
|
| 'adjustment'
|
|
@@ -9259,6 +9302,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
9259
9302
|
| 'review'
|
|
9260
9303
|
| 'edit_review'
|
|
9261
9304
|
| 'edit_accepted';
|
|
9305
|
+
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
9262
9306
|
}
|
|
9263
9307
|
|
|
9264
9308
|
declare namespace io.flow.channel.internal.v0.models {
|
|
@@ -9305,7 +9349,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
9305
9349
|
readonly order_created_at?: string;
|
|
9306
9350
|
readonly order_updated_at?: string;
|
|
9307
9351
|
readonly order_edit_summary?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
9308
|
-
readonly payment_source?: io.flow.
|
|
9352
|
+
readonly payment_source?: io.flow.channel.internal.v0.enums.OrderPaymentSourceType;
|
|
9309
9353
|
}
|
|
9310
9354
|
|
|
9311
9355
|
interface ChannelOrderAcceptanceDetails {
|
|
@@ -10322,6 +10366,27 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
10322
10366
|
readonly assessment: io.flow.shopify.markets.internal.v0.models.ShopifyOrderRiskAssessment;
|
|
10323
10367
|
}
|
|
10324
10368
|
|
|
10369
|
+
interface ShopifyOrderTransaction {
|
|
10370
|
+
readonly id: string;
|
|
10371
|
+
readonly model: io.flow.shopify.markets.v0.models.ShopifyOrderTransaction;
|
|
10372
|
+
}
|
|
10373
|
+
|
|
10374
|
+
interface ShopifyOrderTransactionDeleted {
|
|
10375
|
+
readonly discriminator: 'shopify_order_transaction_deleted';
|
|
10376
|
+
readonly event_id: string;
|
|
10377
|
+
readonly timestamp: string;
|
|
10378
|
+
readonly organization: string;
|
|
10379
|
+
readonly id: string;
|
|
10380
|
+
}
|
|
10381
|
+
|
|
10382
|
+
interface ShopifyOrderTransactionUpserted {
|
|
10383
|
+
readonly discriminator: 'shopify_order_transaction_upserted';
|
|
10384
|
+
readonly event_id: string;
|
|
10385
|
+
readonly timestamp: string;
|
|
10386
|
+
readonly organization: string;
|
|
10387
|
+
readonly transaction: io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransaction;
|
|
10388
|
+
}
|
|
10389
|
+
|
|
10325
10390
|
interface ShopifyProductBundleDeleted {
|
|
10326
10391
|
readonly discriminator: 'shopify_product_bundle_deleted';
|
|
10327
10392
|
readonly event_id: string;
|
|
@@ -10363,7 +10428,9 @@ declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
|
10363
10428
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted
|
|
10364
10429
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted
|
|
10365
10430
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentUpserted
|
|
10366
|
-
| io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted
|
|
10431
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted
|
|
10432
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionUpserted
|
|
10433
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted;
|
|
10367
10434
|
}
|
|
10368
10435
|
|
|
10369
10436
|
declare namespace io.flow.experience.v0.enums {
|
|
@@ -11785,6 +11852,8 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11785
11852
|
readonly amount: io.flow.common.v0.models.Money;
|
|
11786
11853
|
readonly starts_at?: string;
|
|
11787
11854
|
readonly ends_at?: string;
|
|
11855
|
+
readonly regions?: string[];
|
|
11856
|
+
readonly dependent_service_fees?: string[];
|
|
11788
11857
|
}
|
|
11789
11858
|
|
|
11790
11859
|
interface Ratecard {
|
|
@@ -11881,6 +11950,11 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11881
11950
|
readonly line_items?: io.flow.common.v0.models.LineItemForm[];
|
|
11882
11951
|
}
|
|
11883
11952
|
|
|
11953
|
+
interface RatecardFeeSummary {
|
|
11954
|
+
readonly ratecard_fee: io.flow.ratecard.v0.unions.RatecardFee;
|
|
11955
|
+
readonly source_service_fees: string[];
|
|
11956
|
+
}
|
|
11957
|
+
|
|
11884
11958
|
interface RatecardForm {
|
|
11885
11959
|
readonly direction: io.flow.label.v0.enums.Direction;
|
|
11886
11960
|
readonly effective_at: string;
|
|
@@ -13950,7 +14024,8 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
13950
14024
|
| 'processing'
|
|
13951
14025
|
| 'rate_lock'
|
|
13952
14026
|
| 'transfer'
|
|
13953
|
-
| 'negative_balance_guarantee'
|
|
14027
|
+
| 'negative_balance_guarantee'
|
|
14028
|
+
| 'sp';
|
|
13954
14029
|
type PayoutAttachmentType = 'transactions';
|
|
13955
14030
|
type PayoutStatusFailureCode =
|
|
13956
14031
|
| 'invalid_account_number'
|
|
@@ -13967,13 +14042,16 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
13967
14042
|
| 'account_payment_hold';
|
|
13968
14043
|
type StatementAttachmentType = 'csv';
|
|
13969
14044
|
type TaxDutyTransactionReasonCode =
|
|
14045
|
+
| 'post_capture'
|
|
14046
|
+
| 'post_fulfilment'
|
|
14047
|
+
| 'manual_payment_or_gift_card'
|
|
13970
14048
|
| 'order_edit'
|
|
13971
|
-
| 'order_acceptance'
|
|
13972
14049
|
| 'mixed_fulfilment_non_lvg'
|
|
13973
14050
|
| 'lvg_refund'
|
|
13974
14051
|
| 'order_cancellation_above_de_min'
|
|
13975
14052
|
| 'wyol_shipment_above_de_min'
|
|
13976
|
-
| 'full_refund_without_shipment'
|
|
14053
|
+
| 'full_refund_without_shipment'
|
|
14054
|
+
| 'unfulfilled_order_above_de_min';
|
|
13977
14055
|
type TransactionSource =
|
|
13978
14056
|
| 'capture'
|
|
13979
14057
|
| 'refund'
|
|
@@ -15885,6 +15963,7 @@ declare namespace io.flow.sellability.v0.enums {
|
|
|
15885
15963
|
|
|
15886
15964
|
declare namespace io.flow.sellability.v0.models {
|
|
15887
15965
|
interface ProductSellability {
|
|
15966
|
+
readonly discriminator: 'product_sellability';
|
|
15888
15967
|
readonly shop_id: string;
|
|
15889
15968
|
readonly product_id?: string;
|
|
15890
15969
|
readonly request_id: string;
|
|
@@ -15909,6 +15988,7 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
15909
15988
|
}
|
|
15910
15989
|
|
|
15911
15990
|
interface SellabilityError {
|
|
15991
|
+
readonly discriminator: 'sellability_error';
|
|
15912
15992
|
readonly code: io.flow.sellability.v0.enums.SellabilityErrorCode;
|
|
15913
15993
|
readonly messages: string[];
|
|
15914
15994
|
}
|
|
@@ -15919,6 +15999,12 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
15919
15999
|
}
|
|
15920
16000
|
}
|
|
15921
16001
|
|
|
16002
|
+
declare namespace io.flow.sellability.v0.unions {
|
|
16003
|
+
type SellabilityResponse =
|
|
16004
|
+
| io.flow.sellability.v0.models.ProductSellability
|
|
16005
|
+
| io.flow.sellability.v0.models.SellabilityError;
|
|
16006
|
+
}
|
|
16007
|
+
|
|
15922
16008
|
declare namespace io.flow.currency.v0.models {
|
|
15923
16009
|
interface Rate {
|
|
15924
16010
|
readonly id: string;
|
|
@@ -16243,7 +16329,16 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16243
16329
|
| 'prr-599c6246a1a24752aeb85e8f79030781'
|
|
16244
16330
|
| 'prr-79e41878ea564f9c81cc432a0e84703f'
|
|
16245
16331
|
| 'prr-f29c26dc09e04536bc77f9c32786ed70'
|
|
16246
|
-
| 'prr-b186129720f0446eb452a68518437c95'
|
|
16332
|
+
| 'prr-b186129720f0446eb452a68518437c95'
|
|
16333
|
+
| 'prr-36e1603f56e54eb889792637c29eed40'
|
|
16334
|
+
| 'prr-7ead2cc4bf2840a3a9b50d222eb0ed7e'
|
|
16335
|
+
| 'prr-ec2f3d608b7e43a49de88ac40e6b50a8'
|
|
16336
|
+
| 'prr-04ed078c39ca4447b171f767d71a481d'
|
|
16337
|
+
| 'prr-bb664a76d6d64a17843e720e6ccd401a'
|
|
16338
|
+
| 'prr-8ce63afcd48641eb9d44e04117348a96'
|
|
16339
|
+
| 'prr-76544617791b4ce8af96b3a7879474c6'
|
|
16340
|
+
| 'prr-566cc67167944bc4bd08167aa9c0beba'
|
|
16341
|
+
| 'prr-74e1320efb7741cf9ace400b69800f9b';
|
|
16247
16342
|
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
16248
16343
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
16249
16344
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
@@ -16424,7 +16519,41 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16424
16519
|
| 'fourth_plus_attempt_amount_total'
|
|
16425
16520
|
| 'fourth_plus_attempt_failed_merchant_count'
|
|
16426
16521
|
| 'fourth_plus_attempt_failed_amount_total'
|
|
16427
|
-
| 'fourth_plus_attempt_success_ratio'
|
|
16522
|
+
| 'fourth_plus_attempt_success_ratio'
|
|
16523
|
+
| 'ge_revenue_share_standard_transactions_count'
|
|
16524
|
+
| 'ge_revenue_share_standard_transactions_total'
|
|
16525
|
+
| 'ge_revenue_share_shopify_plus_transactions_count'
|
|
16526
|
+
| 'ge_revenue_share_shopify_plus_transactions_total'
|
|
16527
|
+
| 'non_l4l_tax_duty_fx_transactions_count'
|
|
16528
|
+
| 'non_l4l_tax_duty_fx_transactions_total'
|
|
16529
|
+
| 'sp_adjustment_transactions_count'
|
|
16530
|
+
| 'sp_adjustment_transactions_total'
|
|
16531
|
+
| 'sp_billable_label_transactions_count'
|
|
16532
|
+
| 'sp_billable_label_transactions_count_for_unique_orders'
|
|
16533
|
+
| 'sp_billable_label_transactions_total'
|
|
16534
|
+
| 'sp_capture_transactions_count'
|
|
16535
|
+
| 'sp_capture_transactions_total'
|
|
16536
|
+
| 'sp_carrier_charge_transactions_count'
|
|
16537
|
+
| 'sp_carrier_charge_transactions_total'
|
|
16538
|
+
| 'sp_channel_transactions_count'
|
|
16539
|
+
| 'sp_channel_transactions_total'
|
|
16540
|
+
| 'sp_duty_transactions_count'
|
|
16541
|
+
| 'sp_duty_transactions_total'
|
|
16542
|
+
| 'sp_manual_transactions_count'
|
|
16543
|
+
| 'sp_manual_transactions_total'
|
|
16544
|
+
| 'sp_refund_transactions_count'
|
|
16545
|
+
| 'sp_refund_transactions_total'
|
|
16546
|
+
| 'sp_reversal_transactions_count'
|
|
16547
|
+
| 'sp_reversal_transactions_total'
|
|
16548
|
+
| 'sp_revenue_share_label_transactions_count'
|
|
16549
|
+
| 'sp_revenue_share_label_transactions_count_for_unique_orders'
|
|
16550
|
+
| 'sp_revenue_share_label_transactions_total'
|
|
16551
|
+
| 'sp_tax_transactions_count'
|
|
16552
|
+
| 'sp_tax_transactions_total'
|
|
16553
|
+
| 'sp_transfer_transactions_count'
|
|
16554
|
+
| 'sp_transfer_transactions_total'
|
|
16555
|
+
| 'sp_trueup_transactions_count'
|
|
16556
|
+
| 'sp_trueup_transactions_total';
|
|
16428
16557
|
type BillingStatementAttachmentKey =
|
|
16429
16558
|
| 'invoice'
|
|
16430
16559
|
| 'statement'
|
|
@@ -16490,6 +16619,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16490
16619
|
| 'item_prices'
|
|
16491
16620
|
| 'price_book_items_import'
|
|
16492
16621
|
| 'price_book_items_query_import';
|
|
16622
|
+
type CatalogPublicationOwner = 'shopify' | 'globale';
|
|
16493
16623
|
type ChannelBilledTransactionType =
|
|
16494
16624
|
| 'adjustment'
|
|
16495
16625
|
| 'reversal'
|
|
@@ -16582,6 +16712,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16582
16712
|
type ClassificationDecision = 'Accept' | 'Reject';
|
|
16583
16713
|
type ClassificationErrorCode = 'generic_error';
|
|
16584
16714
|
type ClassificationPlatform = 'GlobalE' | 'Flow' | 'Borderfree';
|
|
16715
|
+
type ClassificationScope = 'Item' | 'Product';
|
|
16585
16716
|
type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
16586
16717
|
type ClothingAgeClassification =
|
|
16587
16718
|
| 'None'
|
|
@@ -16938,6 +17069,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16938
17069
|
| 'restriction_rule_deleted'
|
|
16939
17070
|
| 'restriction_rule_effect_upserted'
|
|
16940
17071
|
| 'restriction_rule_effect_deleted'
|
|
17072
|
+
| 'taxonomy_category_hs6_ref_upserted'
|
|
17073
|
+
| 'taxonomy_category_hs6_ref_deleted'
|
|
16941
17074
|
| 'shopify_shop_upserted'
|
|
16942
17075
|
| 'shopify_shop_deleted'
|
|
16943
17076
|
| 'shopify_experience_short_id_upserted'
|
|
@@ -16965,6 +17098,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16965
17098
|
| 'shopify_markets_best_selling_product_deleted'
|
|
16966
17099
|
| 'shopify_order_risk_assessment_upserted'
|
|
16967
17100
|
| 'shopify_order_risk_assessment_deleted'
|
|
17101
|
+
| 'shopify_order_transaction_upserted'
|
|
17102
|
+
| 'shopify_order_transaction_deleted'
|
|
16968
17103
|
| 'shopify_product_create_upserted'
|
|
16969
17104
|
| 'shopify_product_create_deleted'
|
|
16970
17105
|
| 'shopify_product_update_upserted'
|
|
@@ -17062,6 +17197,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17062
17197
|
| 'shopify_webhook';
|
|
17063
17198
|
type HarmonizationDecisionSource =
|
|
17064
17199
|
| 'human'
|
|
17200
|
+
| 'system'
|
|
17065
17201
|
| 'legacy_model'
|
|
17066
17202
|
| 'enterprise_model'
|
|
17067
17203
|
| 'merchant';
|
|
@@ -17143,7 +17279,11 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17143
17279
|
| 'global_e_united_kingdom'
|
|
17144
17280
|
| 'global_e_canada'
|
|
17145
17281
|
| 'global_e_netherlands';
|
|
17146
|
-
type MerchantOverrideStatus =
|
|
17282
|
+
type MerchantOverrideStatus =
|
|
17283
|
+
| 'pending'
|
|
17284
|
+
| 'in_review'
|
|
17285
|
+
| 'accepted'
|
|
17286
|
+
| 'rejected';
|
|
17147
17287
|
type MixedBagWeight = '0' | '1' | '2';
|
|
17148
17288
|
type NatureOfSale =
|
|
17149
17289
|
| 'consumer'
|
|
@@ -17221,6 +17361,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17221
17361
|
| 'last_shipment'
|
|
17222
17362
|
| 'shipment_exhausted';
|
|
17223
17363
|
type OrderLifecycleEvent = 'order_placed' | 'ready_to_fulfill';
|
|
17364
|
+
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
17224
17365
|
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
17225
17366
|
type OrderValidationStatus =
|
|
17226
17367
|
| 'success'
|
|
@@ -19358,7 +19499,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19358
19499
|
readonly order_created_at?: string;
|
|
19359
19500
|
readonly order_updated_at?: string;
|
|
19360
19501
|
readonly order_edit_summary?: io.flow.internal.v0.models.OrderEditSummary;
|
|
19361
|
-
readonly payment_source?: io.flow.
|
|
19502
|
+
readonly payment_source?: io.flow.internal.v0.enums.OrderPaymentSourceType;
|
|
19362
19503
|
}
|
|
19363
19504
|
|
|
19364
19505
|
interface ChannelOrderAcceptanceDeleted {
|
|
@@ -20368,6 +20509,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20368
20509
|
readonly total: io.flow.common.v0.models.MoneyWithBase;
|
|
20369
20510
|
readonly identifiers?: Record<string, string>;
|
|
20370
20511
|
readonly submitted_at?: string;
|
|
20512
|
+
readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
20371
20513
|
}
|
|
20372
20514
|
|
|
20373
20515
|
interface DebugOrderTransaction {
|
|
@@ -21099,6 +21241,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21099
21241
|
readonly processed_at?: string;
|
|
21100
21242
|
}
|
|
21101
21243
|
|
|
21244
|
+
interface EvaluationResults {
|
|
21245
|
+
readonly chapter_result: any /*object*/;
|
|
21246
|
+
readonly sellability_result: any /*object*/;
|
|
21247
|
+
readonly duty_variance_result: any /*object*/;
|
|
21248
|
+
}
|
|
21249
|
+
|
|
21102
21250
|
interface ExclusionRuleDeleted {
|
|
21103
21251
|
readonly discriminator: 'exclusion_rule_deleted';
|
|
21104
21252
|
readonly event_id: string;
|
|
@@ -21368,6 +21516,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21368
21516
|
readonly meter_number: string;
|
|
21369
21517
|
}
|
|
21370
21518
|
|
|
21519
|
+
interface FedexApi {
|
|
21520
|
+
readonly discriminator: 'fedex_api';
|
|
21521
|
+
readonly client_id: string;
|
|
21522
|
+
readonly client_secret: string;
|
|
21523
|
+
readonly account_number: string;
|
|
21524
|
+
}
|
|
21525
|
+
|
|
21371
21526
|
interface FedexCrossborder {
|
|
21372
21527
|
readonly discriminator: 'fedex_crossborder';
|
|
21373
21528
|
readonly api_key: string;
|
|
@@ -21387,6 +21542,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21387
21542
|
readonly duty_guarantee?: io.flow.internal.v0.models.Fee;
|
|
21388
21543
|
readonly transfer?: io.flow.internal.v0.models.Fee;
|
|
21389
21544
|
readonly negative_balance?: io.flow.internal.v0.models.Fee;
|
|
21545
|
+
readonly sp?: io.flow.internal.v0.models.Fee;
|
|
21390
21546
|
}
|
|
21391
21547
|
|
|
21392
21548
|
interface FinanceBankAccount {
|
|
@@ -22736,6 +22892,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22736
22892
|
io.flow.internal.v0.models.TariffCodeDuty
|
|
22737
22893
|
>;
|
|
22738
22894
|
readonly decision_source?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
22895
|
+
readonly classification_scope?: io.flow.internal.v0.enums.ClassificationScope;
|
|
22739
22896
|
readonly created_at?: string;
|
|
22740
22897
|
readonly updated_at?: string;
|
|
22741
22898
|
readonly updated_by_user_id?: string;
|
|
@@ -23709,6 +23866,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23709
23866
|
readonly status: io.flow.internal.v0.enums.MerchantOverrideStatus;
|
|
23710
23867
|
readonly hs6_code: string;
|
|
23711
23868
|
readonly merchant_hs6_code: string;
|
|
23869
|
+
readonly evaluation_results?: io.flow.internal.v0.models.EvaluationResults;
|
|
23712
23870
|
readonly created_at: string;
|
|
23713
23871
|
readonly updated_at: string;
|
|
23714
23872
|
readonly updated_by_user_id: string;
|
|
@@ -24506,6 +24664,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24506
24664
|
readonly organization_id: string;
|
|
24507
24665
|
readonly pending_restriction_count: number;
|
|
24508
24666
|
readonly pending_verification_count: number;
|
|
24667
|
+
readonly pending_classification_count?: number;
|
|
24509
24668
|
readonly oldest_pending_restriction_date?: string;
|
|
24510
24669
|
readonly oldest_pending_verification_date?: string;
|
|
24511
24670
|
readonly product_count: number;
|
|
@@ -25644,6 +25803,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25644
25803
|
readonly review_status: io.flow.internal.v0.enums.RestrictionStateReviewStatus;
|
|
25645
25804
|
readonly pending_restriction_count?: number;
|
|
25646
25805
|
readonly pending_verification_count?: number;
|
|
25806
|
+
readonly pending_classification_count?: number;
|
|
25647
25807
|
readonly oldest_pending_restriction_date?: string;
|
|
25648
25808
|
readonly oldest_pending_verification_date?: string;
|
|
25649
25809
|
}
|
|
@@ -25678,12 +25838,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25678
25838
|
readonly reviews: io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
|
|
25679
25839
|
}
|
|
25680
25840
|
|
|
25841
|
+
interface ProductSellabilityInternal {
|
|
25842
|
+
readonly shop_id: string;
|
|
25843
|
+
readonly product_id?: string;
|
|
25844
|
+
readonly request_id: string;
|
|
25845
|
+
readonly hs6_code: string;
|
|
25846
|
+
readonly restricted_regions: io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
25847
|
+
readonly rule_ids: string[];
|
|
25848
|
+
}
|
|
25849
|
+
|
|
25681
25850
|
interface ProductSellabilityResult {
|
|
25682
25851
|
readonly shop_id: string;
|
|
25683
25852
|
readonly product_number: string;
|
|
25684
25853
|
readonly request_id: string;
|
|
25685
25854
|
readonly hs6_code: string;
|
|
25686
25855
|
readonly restricted_regions: string[];
|
|
25856
|
+
readonly rule_ids?: string[];
|
|
25687
25857
|
}
|
|
25688
25858
|
|
|
25689
25859
|
interface ProductTransaction {
|
|
@@ -26234,6 +26404,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26234
26404
|
|
|
26235
26405
|
interface ReportFilter {
|
|
26236
26406
|
readonly source_type?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
26407
|
+
readonly order_payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
26237
26408
|
}
|
|
26238
26409
|
|
|
26239
26410
|
interface ReportForm {
|
|
@@ -26451,7 +26622,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26451
26622
|
readonly id: string;
|
|
26452
26623
|
readonly number: string;
|
|
26453
26624
|
readonly submitted_at: string;
|
|
26454
|
-
readonly payment_source?:
|
|
26625
|
+
readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
26455
26626
|
}
|
|
26456
26627
|
|
|
26457
26628
|
interface ReportingOrganizationSummary {
|
|
@@ -26562,7 +26733,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26562
26733
|
readonly name: string;
|
|
26563
26734
|
readonly price: io.flow.common.v0.models.Price;
|
|
26564
26735
|
readonly hs_code?: string;
|
|
26736
|
+
readonly hs_code_source?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
26565
26737
|
readonly description: string;
|
|
26738
|
+
readonly category?: string;
|
|
26566
26739
|
readonly categories: string[];
|
|
26567
26740
|
readonly images: io.flow.catalog.v0.models.Image[];
|
|
26568
26741
|
readonly thumbnails: io.flow.catalog.v0.models.Image[];
|
|
@@ -26578,6 +26751,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26578
26751
|
readonly rule_ids?: string[];
|
|
26579
26752
|
readonly user_ids?: string[];
|
|
26580
26753
|
readonly categories?: string[];
|
|
26754
|
+
readonly category?: string;
|
|
26581
26755
|
readonly product_name_query?: string;
|
|
26582
26756
|
readonly hs6?: string;
|
|
26583
26757
|
readonly positive_keywords?: string[];
|
|
@@ -26681,10 +26855,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26681
26855
|
readonly item_numbers: string[];
|
|
26682
26856
|
readonly primary_item_number?: string;
|
|
26683
26857
|
readonly description: string;
|
|
26858
|
+
readonly category?: string;
|
|
26684
26859
|
readonly categories: string[];
|
|
26685
26860
|
readonly images: io.flow.catalog.v0.models.Image[];
|
|
26686
26861
|
readonly thumbnails: io.flow.catalog.v0.models.Image[];
|
|
26687
26862
|
readonly hs_code?: string;
|
|
26863
|
+
readonly hs_code_source?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
26688
26864
|
readonly url?: string;
|
|
26689
26865
|
readonly reviews: io.flow.internal.v0.models.RestrictionItemReview[];
|
|
26690
26866
|
readonly created_at: string;
|
|
@@ -26702,6 +26878,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26702
26878
|
readonly negative_keywords?: string[];
|
|
26703
26879
|
readonly user_ids?: string[];
|
|
26704
26880
|
readonly categories?: string[];
|
|
26881
|
+
readonly category?: string;
|
|
26705
26882
|
readonly product_name_query?: string;
|
|
26706
26883
|
readonly hs6?: string;
|
|
26707
26884
|
readonly product_id?: string;
|
|
@@ -26778,7 +26955,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26778
26955
|
readonly negative_keywords: string[];
|
|
26779
26956
|
readonly value_threshold_usd?: number;
|
|
26780
26957
|
readonly auto_review_criteria?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
26781
|
-
readonly source
|
|
26958
|
+
readonly source: io.flow.internal.v0.enums.RestrictionOrganizationSource;
|
|
26782
26959
|
readonly sellability_positive_keywords?: string[];
|
|
26783
26960
|
}
|
|
26784
26961
|
|
|
@@ -26790,6 +26967,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26790
26967
|
readonly destination_countries: string[];
|
|
26791
26968
|
}
|
|
26792
26969
|
|
|
26970
|
+
interface RestrictionRuleOrganizationExemption {
|
|
26971
|
+
readonly id: string;
|
|
26972
|
+
readonly organization_id: string;
|
|
26973
|
+
readonly rule_id: string;
|
|
26974
|
+
readonly description: string;
|
|
26975
|
+
readonly is_rule_exempt: boolean;
|
|
26976
|
+
readonly exempt_countries?: string[];
|
|
26977
|
+
readonly ignored_keywords?: string[];
|
|
26978
|
+
readonly additional_keywords?: string[];
|
|
26979
|
+
}
|
|
26980
|
+
|
|
26793
26981
|
interface RestrictionRuleOverride {
|
|
26794
26982
|
readonly id: string;
|
|
26795
26983
|
readonly organization_id: string;
|
|
@@ -26813,6 +27001,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26813
27001
|
interface RestrictionSummaryCounts {
|
|
26814
27002
|
readonly pending_restriction_count: number;
|
|
26815
27003
|
readonly pending_verification_count: number;
|
|
27004
|
+
readonly pending_classification_count: number;
|
|
26816
27005
|
}
|
|
26817
27006
|
|
|
26818
27007
|
interface RestrictionsDailyops {
|
|
@@ -26843,6 +27032,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26843
27032
|
readonly oldest_insufficient_details_pv_onboarding?: string;
|
|
26844
27033
|
readonly oldest_insufficient_details_pv_active?: string;
|
|
26845
27034
|
readonly oldest_insufficient_details_pv_transacting?: string;
|
|
27035
|
+
readonly num_products_with_fs_result?: number;
|
|
27036
|
+
readonly num_products_sellable_somewhere_by_fs?: number;
|
|
27037
|
+
readonly num_products_restricted_somewhere_by_fs?: number;
|
|
27038
|
+
readonly num_products_with_false_allows_by_fs?: number;
|
|
27039
|
+
readonly num_products_with_false_restricts_by_fs?: number;
|
|
27040
|
+
readonly daily_num_products_with_fs_result?: number;
|
|
27041
|
+
readonly daily_num_products_sellable_somewhere_by_fs?: number;
|
|
27042
|
+
readonly daily_num_products_restricted_somewhere_by_fs?: number;
|
|
27043
|
+
readonly daily_num_products_with_false_allows_by_fs?: number;
|
|
27044
|
+
readonly daily_num_products_with_false_restricts_by_fs?: number;
|
|
26846
27045
|
}
|
|
26847
27046
|
|
|
26848
27047
|
interface RestrictionsDailyopsDeleted {
|
|
@@ -26878,16 +27077,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26878
27077
|
readonly destinations: io.flow.reference.v0.models.Country[];
|
|
26879
27078
|
}
|
|
26880
27079
|
|
|
26881
|
-
interface Retracking {
|
|
26882
|
-
readonly carrier: string;
|
|
26883
|
-
readonly tracking_number?: string;
|
|
26884
|
-
}
|
|
26885
|
-
|
|
26886
|
-
interface RetrackingForm {
|
|
26887
|
-
readonly carrier: string;
|
|
26888
|
-
readonly carrier_tracking_numbers: string[];
|
|
26889
|
-
}
|
|
26890
|
-
|
|
26891
27080
|
interface Return {
|
|
26892
27081
|
readonly id: string;
|
|
26893
27082
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
@@ -27183,6 +27372,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27183
27372
|
readonly shop: io.flow.internal.v0.models.Shop;
|
|
27184
27373
|
}
|
|
27185
27374
|
|
|
27375
|
+
interface ShopifyCatalogPublication {
|
|
27376
|
+
readonly owner: io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
27377
|
+
}
|
|
27378
|
+
|
|
27186
27379
|
interface ShopifyChannelOrganizationToken {
|
|
27187
27380
|
readonly cleartext: string;
|
|
27188
27381
|
}
|
|
@@ -27525,6 +27718,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27525
27718
|
readonly api_password?: string;
|
|
27526
27719
|
readonly access_token?: string;
|
|
27527
27720
|
readonly shopify_plan_name?: io.flow.shopify.external.v0.enums.ShopifyPlanName;
|
|
27721
|
+
readonly catalog_publication_owner?: io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
27528
27722
|
}
|
|
27529
27723
|
|
|
27530
27724
|
interface ShopifyMarketsShopStatisticsDeleted {
|
|
@@ -27613,6 +27807,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27613
27807
|
interface ShopifyMetadata {
|
|
27614
27808
|
readonly domain: string;
|
|
27615
27809
|
readonly myshopify_domain: string;
|
|
27810
|
+
readonly catalog_publication?: io.flow.internal.v0.models.ShopifyCatalogPublication;
|
|
27616
27811
|
readonly token: string;
|
|
27617
27812
|
}
|
|
27618
27813
|
|
|
@@ -27782,6 +27977,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27782
27977
|
readonly assessment: io.flow.internal.v0.models.ShopifyOrderRiskAssessment;
|
|
27783
27978
|
}
|
|
27784
27979
|
|
|
27980
|
+
interface ShopifyOrderTransaction {
|
|
27981
|
+
readonly id: string;
|
|
27982
|
+
readonly model: io.flow.shopify.markets.v0.models.ShopifyOrderTransaction;
|
|
27983
|
+
}
|
|
27984
|
+
|
|
27985
|
+
interface ShopifyOrderTransactionDeleted {
|
|
27986
|
+
readonly discriminator: 'shopify_order_transaction_deleted';
|
|
27987
|
+
readonly event_id: string;
|
|
27988
|
+
readonly timestamp: string;
|
|
27989
|
+
readonly organization: string;
|
|
27990
|
+
readonly id: string;
|
|
27991
|
+
}
|
|
27992
|
+
|
|
27993
|
+
interface ShopifyOrderTransactionUpserted {
|
|
27994
|
+
readonly discriminator: 'shopify_order_transaction_upserted';
|
|
27995
|
+
readonly event_id: string;
|
|
27996
|
+
readonly timestamp: string;
|
|
27997
|
+
readonly organization: string;
|
|
27998
|
+
readonly transaction: io.flow.internal.v0.models.ShopifyOrderTransaction;
|
|
27999
|
+
}
|
|
28000
|
+
|
|
27785
28001
|
interface ShopifyOrganizationSettings {
|
|
27786
28002
|
readonly id: string;
|
|
27787
28003
|
readonly process_label: boolean;
|
|
@@ -28402,6 +28618,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28402
28618
|
readonly import_taxes?: number;
|
|
28403
28619
|
readonly mor_fees?: number;
|
|
28404
28620
|
readonly mor_foreign_exchange_fees?: number;
|
|
28621
|
+
readonly sp_processing_fees?: number;
|
|
28405
28622
|
}
|
|
28406
28623
|
|
|
28407
28624
|
interface StripeConnectReportRecordTransferMetadata {
|
|
@@ -28417,6 +28634,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28417
28634
|
readonly import_taxes?: number;
|
|
28418
28635
|
readonly mor_fees?: number;
|
|
28419
28636
|
readonly mor_foreign_exchange_fees?: number;
|
|
28637
|
+
readonly sp_processing_fees?: number;
|
|
28420
28638
|
readonly merchant_account_currency?: string;
|
|
28421
28639
|
readonly amount_in_merchant_account_currency?: number;
|
|
28422
28640
|
readonly payout_exchange_rate?: number;
|
|
@@ -28730,6 +28948,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28730
28948
|
readonly category_code?: string;
|
|
28731
28949
|
}
|
|
28732
28950
|
|
|
28951
|
+
interface TaxDutyReasonCodeMetadata {
|
|
28952
|
+
readonly discriminator: 'tax_duty_reason_code_metadata';
|
|
28953
|
+
readonly reason_code: io.flow.billing.v0.enums.TaxDutyTransactionReasonCode;
|
|
28954
|
+
}
|
|
28955
|
+
|
|
28733
28956
|
interface TaxRemittanceTransaction {
|
|
28734
28957
|
readonly discriminator: 'tax_remittance_transaction';
|
|
28735
28958
|
readonly order: io.flow.internal.v0.models.BillingOrderSummary;
|
|
@@ -28793,6 +29016,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28793
29016
|
readonly children: io.flow.internal.v0.unions.ClassificationTaxonomy[];
|
|
28794
29017
|
}
|
|
28795
29018
|
|
|
29019
|
+
interface TaxonomyCategoryHs6Ref {
|
|
29020
|
+
readonly id: string;
|
|
29021
|
+
readonly taxonomy_category: string;
|
|
29022
|
+
readonly hs6: string;
|
|
29023
|
+
readonly updated_by_user_id: string;
|
|
29024
|
+
}
|
|
29025
|
+
|
|
29026
|
+
interface TaxonomyCategoryHs6RefDeleted {
|
|
29027
|
+
readonly discriminator: 'taxonomy_category_hs6_ref_deleted';
|
|
29028
|
+
readonly event_id: string;
|
|
29029
|
+
readonly timestamp: string;
|
|
29030
|
+
readonly id: string;
|
|
29031
|
+
}
|
|
29032
|
+
|
|
29033
|
+
interface TaxonomyCategoryHs6RefUpserted {
|
|
29034
|
+
readonly discriminator: 'taxonomy_category_hs6_ref_upserted';
|
|
29035
|
+
readonly event_id: string;
|
|
29036
|
+
readonly timestamp: string;
|
|
29037
|
+
readonly taxonomy_category_hs6_ref: io.flow.internal.v0.models.TaxonomyCategoryHs6Ref;
|
|
29038
|
+
}
|
|
29039
|
+
|
|
28796
29040
|
interface TaxonomyNode {
|
|
28797
29041
|
readonly id: string;
|
|
28798
29042
|
readonly children?: io.flow.internal.v0.models.TaxonomyNode[];
|
|
@@ -29102,10 +29346,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29102
29346
|
readonly tracking_events: io.flow.internal.v0.models.TrackingEvent[];
|
|
29103
29347
|
}
|
|
29104
29348
|
|
|
29105
|
-
interface TrackingResync {
|
|
29106
|
-
readonly placeholder?: boolean;
|
|
29107
|
-
}
|
|
29108
|
-
|
|
29109
29349
|
interface TrackingSubscription {
|
|
29110
29350
|
readonly id: string;
|
|
29111
29351
|
readonly organization_id: string;
|
|
@@ -29438,6 +29678,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29438
29678
|
readonly additional_services_requested?: io.flow.label.v0.models.AdditionalServicesRequested[];
|
|
29439
29679
|
readonly provided_charges?: io.flow.internal.v0.models.ChargeInput[];
|
|
29440
29680
|
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
29681
|
+
readonly package_dimensions_source: io.flow.label.v0.enums.PackageDimensionsSource;
|
|
29441
29682
|
}
|
|
29442
29683
|
|
|
29443
29684
|
interface ValidationCharacterLength {
|
|
@@ -29519,7 +29760,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29519
29760
|
| io.flow.internal.v0.models.Dhl
|
|
29520
29761
|
| io.flow.internal.v0.models.FedexCrossborder
|
|
29521
29762
|
| io.flow.internal.v0.models.Ups
|
|
29522
|
-
| io.flow.internal.v0.models.Fedex
|
|
29763
|
+
| io.flow.internal.v0.models.Fedex
|
|
29764
|
+
| io.flow.internal.v0.models.FedexApi;
|
|
29523
29765
|
type ChannelRateMetadata =
|
|
29524
29766
|
| io.flow.internal.v0.models.ChannelRateMetadataIdentity
|
|
29525
29767
|
| io.flow.internal.v0.models.ChannelRateMetadataRate;
|
|
@@ -29858,6 +30100,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29858
30100
|
| io.flow.internal.v0.models.RestrictionRuleDeleted
|
|
29859
30101
|
| io.flow.internal.v0.models.RestrictionRuleEffectUpserted
|
|
29860
30102
|
| io.flow.internal.v0.models.RestrictionRuleEffectDeleted
|
|
30103
|
+
| io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted
|
|
30104
|
+
| io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted
|
|
29861
30105
|
| io.flow.internal.v0.models.ShopifyShopUpserted
|
|
29862
30106
|
| io.flow.internal.v0.models.ShopifyShopDeleted
|
|
29863
30107
|
| io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted
|
|
@@ -29885,6 +30129,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29885
30129
|
| io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted
|
|
29886
30130
|
| io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted
|
|
29887
30131
|
| io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted
|
|
30132
|
+
| io.flow.internal.v0.models.ShopifyOrderTransactionUpserted
|
|
30133
|
+
| io.flow.internal.v0.models.ShopifyOrderTransactionDeleted
|
|
29888
30134
|
| io.flow.internal.v0.models.ShopifyProductCreateUpserted
|
|
29889
30135
|
| io.flow.internal.v0.models.ShopifyProductCreateDeleted
|
|
29890
30136
|
| io.flow.internal.v0.models.ShopifyProductUpdateUpserted
|
|
@@ -30114,7 +30360,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30114
30360
|
| io.flow.internal.v0.models.TaskImport;
|
|
30115
30361
|
type TaskMetadata =
|
|
30116
30362
|
| io.flow.internal.v0.models.StatementCreationMetadata
|
|
30117
|
-
| io.flow.internal.v0.models.AccountingPendingOrderMetadata
|
|
30363
|
+
| io.flow.internal.v0.models.AccountingPendingOrderMetadata
|
|
30364
|
+
| io.flow.internal.v0.models.TaxDutyReasonCodeMetadata;
|
|
30118
30365
|
type TaxAmount =
|
|
30119
30366
|
| io.flow.internal.v0.models.CalculatedTaxAmount
|
|
30120
30367
|
| io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
@@ -30557,6 +30804,8 @@ export type CatalogItemRegionAvailabilitiesData =
|
|
|
30557
30804
|
io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesData;
|
|
30558
30805
|
export type CatalogItemRegionAvailabilitiesPublished =
|
|
30559
30806
|
io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished;
|
|
30807
|
+
export type CatalogPublicationOwner =
|
|
30808
|
+
io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
30560
30809
|
export type CatalogPublicationSyncValidationError =
|
|
30561
30810
|
io.flow.internal.v0.models.CatalogPublicationSyncValidationError;
|
|
30562
30811
|
export type CatalogSettings = io.flow.internal.v0.models.CatalogSettings;
|
|
@@ -30796,6 +31045,7 @@ export type ClassificationRequeueRequest =
|
|
|
30796
31045
|
io.flow.internal.v0.models.ClassificationRequeueRequest;
|
|
30797
31046
|
export type ClassificationResponse =
|
|
30798
31047
|
io.flow.internal.v0.unions.ClassificationResponse;
|
|
31048
|
+
export type ClassificationScope = io.flow.internal.v0.enums.ClassificationScope;
|
|
30799
31049
|
export type ClassificationStatistics =
|
|
30800
31050
|
io.flow.internal.v0.models.ClassificationStatistics;
|
|
30801
31051
|
export type ClassificationSummaryReportPayload =
|
|
@@ -31092,6 +31342,7 @@ export type ErpVendorStatusFlowFile =
|
|
|
31092
31342
|
io.flow.internal.v0.models.ErpVendorStatusFlowFile;
|
|
31093
31343
|
export type ErpVendorStatusPriorityFile =
|
|
31094
31344
|
io.flow.internal.v0.models.ErpVendorStatusPriorityFile;
|
|
31345
|
+
export type EvaluationResults = io.flow.internal.v0.models.EvaluationResults;
|
|
31095
31346
|
export type Event = io.flow.internal.v0.unions.Event;
|
|
31096
31347
|
export type EventType = io.flow.internal.v0.enums.EventType;
|
|
31097
31348
|
export type ExclusionRuleDeleted =
|
|
@@ -31170,6 +31421,7 @@ export type FeatureValue = io.flow.internal.v0.unions.FeatureValue;
|
|
|
31170
31421
|
export type FeatureValueForm = io.flow.internal.v0.models.FeatureValueForm;
|
|
31171
31422
|
export type FeatureValueResult = io.flow.internal.v0.models.FeatureValueResult;
|
|
31172
31423
|
export type Fedex = io.flow.internal.v0.models.Fedex;
|
|
31424
|
+
export type FedexApi = io.flow.internal.v0.models.FedexApi;
|
|
31173
31425
|
export type FedexCrossborder = io.flow.internal.v0.models.FedexCrossborder;
|
|
31174
31426
|
export type Fee = io.flow.internal.v0.models.Fee;
|
|
31175
31427
|
export type Fees = io.flow.internal.v0.models.Fees;
|
|
@@ -31849,6 +32101,8 @@ export type OrderNote = io.flow.internal.v0.models.OrderNote;
|
|
|
31849
32101
|
export type OrderNoteForm = io.flow.internal.v0.models.OrderNoteForm;
|
|
31850
32102
|
export type OrderPaymentAuthorization =
|
|
31851
32103
|
io.flow.internal.v0.models.OrderPaymentAuthorization;
|
|
32104
|
+
export type OrderPaymentSourceType =
|
|
32105
|
+
io.flow.internal.v0.enums.OrderPaymentSourceType;
|
|
31852
32106
|
export type OrderRatesDataV3 = io.flow.internal.v0.models.OrderRatesDataV3;
|
|
31853
32107
|
export type OrderRatesPublishedV3 =
|
|
31854
32108
|
io.flow.internal.v0.models.OrderRatesPublishedV3;
|
|
@@ -32256,6 +32510,8 @@ export type ProductRestrictionStateUpdated =
|
|
|
32256
32510
|
io.flow.internal.v0.models.ProductRestrictionStateUpdated;
|
|
32257
32511
|
export type ProductReviewHistory =
|
|
32258
32512
|
io.flow.internal.v0.models.ProductReviewHistory;
|
|
32513
|
+
export type ProductSellabilityInternal =
|
|
32514
|
+
io.flow.internal.v0.models.ProductSellabilityInternal;
|
|
32259
32515
|
export type ProductSellabilityResult =
|
|
32260
32516
|
io.flow.internal.v0.models.ProductSellabilityResult;
|
|
32261
32517
|
export type ProductStatus = io.flow.internal.v0.enums.ProductStatus;
|
|
@@ -32535,6 +32791,8 @@ export type RestrictionRuleForm =
|
|
|
32535
32791
|
io.flow.internal.v0.models.RestrictionRuleForm;
|
|
32536
32792
|
export type RestrictionRuleLaneExemption =
|
|
32537
32793
|
io.flow.internal.v0.models.RestrictionRuleLaneExemption;
|
|
32794
|
+
export type RestrictionRuleOrganizationExemption =
|
|
32795
|
+
io.flow.internal.v0.models.RestrictionRuleOrganizationExemption;
|
|
32538
32796
|
export type RestrictionRuleOverride =
|
|
32539
32797
|
io.flow.internal.v0.models.RestrictionRuleOverride;
|
|
32540
32798
|
export type RestrictionRuleSummary =
|
|
@@ -32559,8 +32817,6 @@ export type ResyncByHs6Destinations =
|
|
|
32559
32817
|
export type ResyncByHs6Origin = io.flow.internal.v0.models.ResyncByHs6Origin;
|
|
32560
32818
|
export type ResyncFallbackRates =
|
|
32561
32819
|
io.flow.internal.v0.models.ResyncFallbackRates;
|
|
32562
|
-
export type Retracking = io.flow.internal.v0.models.Retracking;
|
|
32563
|
-
export type RetrackingForm = io.flow.internal.v0.models.RetrackingForm;
|
|
32564
32820
|
export type Return = io.flow.internal.v0.models.Return;
|
|
32565
32821
|
export type ReturnPolicyDeleted =
|
|
32566
32822
|
io.flow.internal.v0.models.ReturnPolicyDeleted;
|
|
@@ -32624,6 +32880,8 @@ export type ShippingPricing = io.flow.internal.v0.models.ShippingPricing;
|
|
|
32624
32880
|
export type Shop = io.flow.internal.v0.models.Shop;
|
|
32625
32881
|
export type ShopForm = io.flow.internal.v0.models.ShopForm;
|
|
32626
32882
|
export type ShopVersion = io.flow.internal.v0.models.ShopVersion;
|
|
32883
|
+
export type ShopifyCatalogPublication =
|
|
32884
|
+
io.flow.internal.v0.models.ShopifyCatalogPublication;
|
|
32627
32885
|
export type ShopifyChannelOrganizationToken =
|
|
32628
32886
|
io.flow.internal.v0.models.ShopifyChannelOrganizationToken;
|
|
32629
32887
|
export type ShopifyChannelOrganizationTokens =
|
|
@@ -32810,6 +33068,12 @@ export type ShopifyOrderRiskAssessmentDeleted =
|
|
|
32810
33068
|
io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted;
|
|
32811
33069
|
export type ShopifyOrderRiskAssessmentUpserted =
|
|
32812
33070
|
io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted;
|
|
33071
|
+
export type ShopifyOrderTransaction =
|
|
33072
|
+
io.flow.internal.v0.models.ShopifyOrderTransaction;
|
|
33073
|
+
export type ShopifyOrderTransactionDeleted =
|
|
33074
|
+
io.flow.internal.v0.models.ShopifyOrderTransactionDeleted;
|
|
33075
|
+
export type ShopifyOrderTransactionUpserted =
|
|
33076
|
+
io.flow.internal.v0.models.ShopifyOrderTransactionUpserted;
|
|
32813
33077
|
export type ShopifyOrganizationSettings =
|
|
32814
33078
|
io.flow.internal.v0.models.ShopifyOrganizationSettings;
|
|
32815
33079
|
export type ShopifyOrganizationSettingsForm =
|
|
@@ -33064,6 +33328,8 @@ export type TaxCalculationLineItem =
|
|
|
33064
33328
|
io.flow.internal.v0.models.TaxCalculationLineItem;
|
|
33065
33329
|
export type TaxCalculationLineItemForm =
|
|
33066
33330
|
io.flow.internal.v0.models.TaxCalculationLineItemForm;
|
|
33331
|
+
export type TaxDutyReasonCodeMetadata =
|
|
33332
|
+
io.flow.internal.v0.models.TaxDutyReasonCodeMetadata;
|
|
33067
33333
|
export type TaxParty = io.flow.internal.v0.enums.TaxParty;
|
|
33068
33334
|
export type TaxRemittanceTransaction =
|
|
33069
33335
|
io.flow.internal.v0.models.TaxRemittanceTransaction;
|
|
@@ -33078,6 +33344,12 @@ export type TaxTransactionType = io.flow.internal.v0.enums.TaxTransactionType;
|
|
|
33078
33344
|
export type TaxTransactionUpserted =
|
|
33079
33345
|
io.flow.internal.v0.models.TaxTransactionUpserted;
|
|
33080
33346
|
export type TaxonomyCategory = io.flow.internal.v0.models.TaxonomyCategory;
|
|
33347
|
+
export type TaxonomyCategoryHs6Ref =
|
|
33348
|
+
io.flow.internal.v0.models.TaxonomyCategoryHs6Ref;
|
|
33349
|
+
export type TaxonomyCategoryHs6RefDeleted =
|
|
33350
|
+
io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted;
|
|
33351
|
+
export type TaxonomyCategoryHs6RefUpserted =
|
|
33352
|
+
io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted;
|
|
33081
33353
|
export type TaxonomyNode = io.flow.internal.v0.models.TaxonomyNode;
|
|
33082
33354
|
export type TechOnboardingDescription =
|
|
33083
33355
|
io.flow.internal.v0.models.TechOnboardingDescription;
|
|
@@ -33157,7 +33429,6 @@ export type TrackingProcessingFailureClassification =
|
|
|
33157
33429
|
io.flow.internal.v0.enums.TrackingProcessingFailureClassification;
|
|
33158
33430
|
export type TrackingRequest = io.flow.internal.v0.models.TrackingRequest;
|
|
33159
33431
|
export type TrackingResponse = io.flow.internal.v0.models.TrackingResponse;
|
|
33160
|
-
export type TrackingResync = io.flow.internal.v0.models.TrackingResync;
|
|
33161
33432
|
export type TrackingSubscription =
|
|
33162
33433
|
io.flow.internal.v0.models.TrackingSubscription;
|
|
33163
33434
|
export type TrackingSubscriptionDeleted =
|