@flowio/types 11.24.119 → 11.24.121
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 +213 -38
- package/dist/api.d.ts +3100 -5212
- package/package.json +2 -2
- package/src/api-internal.ts +313 -39
- 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'
|
|
@@ -16583,6 +16712,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16583
16712
|
type ClassificationDecision = 'Accept' | 'Reject';
|
|
16584
16713
|
type ClassificationErrorCode = 'generic_error';
|
|
16585
16714
|
type ClassificationPlatform = 'GlobalE' | 'Flow' | 'Borderfree';
|
|
16715
|
+
type ClassificationScope = 'Item' | 'Product';
|
|
16586
16716
|
type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
16587
16717
|
type ClothingAgeClassification =
|
|
16588
16718
|
| 'None'
|
|
@@ -16939,6 +17069,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16939
17069
|
| 'restriction_rule_deleted'
|
|
16940
17070
|
| 'restriction_rule_effect_upserted'
|
|
16941
17071
|
| 'restriction_rule_effect_deleted'
|
|
17072
|
+
| 'taxonomy_category_hs6_ref_upserted'
|
|
17073
|
+
| 'taxonomy_category_hs6_ref_deleted'
|
|
16942
17074
|
| 'shopify_shop_upserted'
|
|
16943
17075
|
| 'shopify_shop_deleted'
|
|
16944
17076
|
| 'shopify_experience_short_id_upserted'
|
|
@@ -16966,6 +17098,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16966
17098
|
| 'shopify_markets_best_selling_product_deleted'
|
|
16967
17099
|
| 'shopify_order_risk_assessment_upserted'
|
|
16968
17100
|
| 'shopify_order_risk_assessment_deleted'
|
|
17101
|
+
| 'shopify_order_transaction_upserted'
|
|
17102
|
+
| 'shopify_order_transaction_deleted'
|
|
16969
17103
|
| 'shopify_product_create_upserted'
|
|
16970
17104
|
| 'shopify_product_create_deleted'
|
|
16971
17105
|
| 'shopify_product_update_upserted'
|
|
@@ -17063,9 +17197,11 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17063
17197
|
| 'shopify_webhook';
|
|
17064
17198
|
type HarmonizationDecisionSource =
|
|
17065
17199
|
| 'human'
|
|
17200
|
+
| 'system'
|
|
17066
17201
|
| 'legacy_model'
|
|
17067
17202
|
| 'enterprise_model'
|
|
17068
17203
|
| 'merchant';
|
|
17204
|
+
type HoseinItemType = 'physical' | 'digital';
|
|
17069
17205
|
type HttpMethod = 'get' | 'post';
|
|
17070
17206
|
type InternalPaymentEntityType =
|
|
17071
17207
|
| 'authorization'
|
|
@@ -17144,7 +17280,11 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17144
17280
|
| 'global_e_united_kingdom'
|
|
17145
17281
|
| 'global_e_canada'
|
|
17146
17282
|
| 'global_e_netherlands';
|
|
17147
|
-
type MerchantOverrideStatus =
|
|
17283
|
+
type MerchantOverrideStatus =
|
|
17284
|
+
| 'pending'
|
|
17285
|
+
| 'in_review'
|
|
17286
|
+
| 'accepted'
|
|
17287
|
+
| 'rejected';
|
|
17148
17288
|
type MixedBagWeight = '0' | '1' | '2';
|
|
17149
17289
|
type NatureOfSale =
|
|
17150
17290
|
| 'consumer'
|
|
@@ -17222,6 +17362,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17222
17362
|
| 'last_shipment'
|
|
17223
17363
|
| 'shipment_exhausted';
|
|
17224
17364
|
type OrderLifecycleEvent = 'order_placed' | 'ready_to_fulfill';
|
|
17365
|
+
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
17225
17366
|
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
17226
17367
|
type OrderValidationStatus =
|
|
17227
17368
|
| 'success'
|
|
@@ -17269,6 +17410,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17269
17410
|
| 'reversal'
|
|
17270
17411
|
| 'credit';
|
|
17271
17412
|
type PaymentTerm = 'net7' | 'net15' | 'net30';
|
|
17413
|
+
type PendingRecordType = 'verification' | 'classification' | 'restriction';
|
|
17272
17414
|
type PrateekItemType = 'physical' | 'digital';
|
|
17273
17415
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
17274
17416
|
type PriceSelector = 'minimum' | 'maximum';
|
|
@@ -19359,7 +19501,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19359
19501
|
readonly order_created_at?: string;
|
|
19360
19502
|
readonly order_updated_at?: string;
|
|
19361
19503
|
readonly order_edit_summary?: io.flow.internal.v0.models.OrderEditSummary;
|
|
19362
|
-
readonly payment_source?: io.flow.
|
|
19504
|
+
readonly payment_source?: io.flow.internal.v0.enums.OrderPaymentSourceType;
|
|
19363
19505
|
}
|
|
19364
19506
|
|
|
19365
19507
|
interface ChannelOrderAcceptanceDeleted {
|
|
@@ -20369,6 +20511,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20369
20511
|
readonly total: io.flow.common.v0.models.MoneyWithBase;
|
|
20370
20512
|
readonly identifiers?: Record<string, string>;
|
|
20371
20513
|
readonly submitted_at?: string;
|
|
20514
|
+
readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
20372
20515
|
}
|
|
20373
20516
|
|
|
20374
20517
|
interface DebugOrderTransaction {
|
|
@@ -21100,6 +21243,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21100
21243
|
readonly processed_at?: string;
|
|
21101
21244
|
}
|
|
21102
21245
|
|
|
21246
|
+
interface EvaluationResults {
|
|
21247
|
+
readonly chapter_result: any /*object*/;
|
|
21248
|
+
readonly sellability_result: any /*object*/;
|
|
21249
|
+
readonly duty_variance_result: any /*object*/;
|
|
21250
|
+
}
|
|
21251
|
+
|
|
21103
21252
|
interface ExclusionRuleDeleted {
|
|
21104
21253
|
readonly discriminator: 'exclusion_rule_deleted';
|
|
21105
21254
|
readonly event_id: string;
|
|
@@ -21369,6 +21518,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21369
21518
|
readonly meter_number: string;
|
|
21370
21519
|
}
|
|
21371
21520
|
|
|
21521
|
+
interface FedexApi {
|
|
21522
|
+
readonly discriminator: 'fedex_api';
|
|
21523
|
+
readonly client_id: string;
|
|
21524
|
+
readonly client_secret: string;
|
|
21525
|
+
readonly account_number: string;
|
|
21526
|
+
}
|
|
21527
|
+
|
|
21372
21528
|
interface FedexCrossborder {
|
|
21373
21529
|
readonly discriminator: 'fedex_crossborder';
|
|
21374
21530
|
readonly api_key: string;
|
|
@@ -21388,6 +21544,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21388
21544
|
readonly duty_guarantee?: io.flow.internal.v0.models.Fee;
|
|
21389
21545
|
readonly transfer?: io.flow.internal.v0.models.Fee;
|
|
21390
21546
|
readonly negative_balance?: io.flow.internal.v0.models.Fee;
|
|
21547
|
+
readonly sp?: io.flow.internal.v0.models.Fee;
|
|
21391
21548
|
}
|
|
21392
21549
|
|
|
21393
21550
|
interface FinanceBankAccount {
|
|
@@ -22302,6 +22459,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22302
22459
|
readonly export_id: string;
|
|
22303
22460
|
}
|
|
22304
22461
|
|
|
22462
|
+
interface HoseinItem {
|
|
22463
|
+
readonly id: string;
|
|
22464
|
+
readonly number: string;
|
|
22465
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
22466
|
+
readonly description?: string;
|
|
22467
|
+
readonly type: io.flow.internal.v0.enums.HoseinItemType;
|
|
22468
|
+
readonly added_on: string;
|
|
22469
|
+
}
|
|
22470
|
+
|
|
22471
|
+
interface HoseinItemForm {
|
|
22472
|
+
readonly number: string;
|
|
22473
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
22474
|
+
readonly description?: string;
|
|
22475
|
+
readonly type: io.flow.internal.v0.enums.HoseinItemType;
|
|
22476
|
+
readonly added_on: string;
|
|
22477
|
+
}
|
|
22478
|
+
|
|
22305
22479
|
interface Href {
|
|
22306
22480
|
readonly discriminator: 'href';
|
|
22307
22481
|
readonly label: io.flow.internal.v0.models.ContentLabel;
|
|
@@ -22737,6 +22911,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22737
22911
|
io.flow.internal.v0.models.TariffCodeDuty
|
|
22738
22912
|
>;
|
|
22739
22913
|
readonly decision_source?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
22914
|
+
readonly classification_scope?: io.flow.internal.v0.enums.ClassificationScope;
|
|
22740
22915
|
readonly created_at?: string;
|
|
22741
22916
|
readonly updated_at?: string;
|
|
22742
22917
|
readonly updated_by_user_id?: string;
|
|
@@ -23710,6 +23885,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23710
23885
|
readonly status: io.flow.internal.v0.enums.MerchantOverrideStatus;
|
|
23711
23886
|
readonly hs6_code: string;
|
|
23712
23887
|
readonly merchant_hs6_code: string;
|
|
23888
|
+
readonly evaluation_results?: io.flow.internal.v0.models.EvaluationResults;
|
|
23713
23889
|
readonly created_at: string;
|
|
23714
23890
|
readonly updated_at: string;
|
|
23715
23891
|
readonly updated_by_user_id: string;
|
|
@@ -24507,16 +24683,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24507
24683
|
readonly organization_id: string;
|
|
24508
24684
|
readonly pending_restriction_count: number;
|
|
24509
24685
|
readonly pending_verification_count: number;
|
|
24686
|
+
readonly pending_classification_count?: number;
|
|
24510
24687
|
readonly oldest_pending_restriction_date?: string;
|
|
24511
24688
|
readonly oldest_pending_verification_date?: string;
|
|
24512
24689
|
readonly product_count: number;
|
|
24513
24690
|
readonly restricted_product_count: number;
|
|
24514
24691
|
readonly last_order_submitted_at?: string;
|
|
24515
|
-
readonly matching_positive_keywords: string[];
|
|
24516
|
-
readonly product_categories: string[];
|
|
24517
|
-
readonly matching_negative_keywords: string[];
|
|
24518
|
-
readonly decisions_user_ids: string[];
|
|
24519
|
-
readonly restriction_rule_ids: string[];
|
|
24520
24692
|
}
|
|
24521
24693
|
|
|
24522
24694
|
interface OrganizationMetadataDeleted {
|
|
@@ -25645,6 +25817,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25645
25817
|
readonly review_status: io.flow.internal.v0.enums.RestrictionStateReviewStatus;
|
|
25646
25818
|
readonly pending_restriction_count?: number;
|
|
25647
25819
|
readonly pending_verification_count?: number;
|
|
25820
|
+
readonly pending_classification_count?: number;
|
|
25648
25821
|
readonly oldest_pending_restriction_date?: string;
|
|
25649
25822
|
readonly oldest_pending_verification_date?: string;
|
|
25650
25823
|
}
|
|
@@ -25679,12 +25852,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25679
25852
|
readonly reviews: io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
|
|
25680
25853
|
}
|
|
25681
25854
|
|
|
25855
|
+
interface ProductSellabilityInternal {
|
|
25856
|
+
readonly shop_id: string;
|
|
25857
|
+
readonly product_id?: string;
|
|
25858
|
+
readonly request_id: string;
|
|
25859
|
+
readonly hs6_code: string;
|
|
25860
|
+
readonly restricted_regions: io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
25861
|
+
readonly rule_ids: string[];
|
|
25862
|
+
}
|
|
25863
|
+
|
|
25682
25864
|
interface ProductSellabilityResult {
|
|
25683
25865
|
readonly shop_id: string;
|
|
25684
25866
|
readonly product_number: string;
|
|
25685
25867
|
readonly request_id: string;
|
|
25686
25868
|
readonly hs6_code: string;
|
|
25687
25869
|
readonly restricted_regions: string[];
|
|
25870
|
+
readonly rule_ids?: string[];
|
|
25688
25871
|
}
|
|
25689
25872
|
|
|
25690
25873
|
interface ProductTransaction {
|
|
@@ -26235,6 +26418,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26235
26418
|
|
|
26236
26419
|
interface ReportFilter {
|
|
26237
26420
|
readonly source_type?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
26421
|
+
readonly order_payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
26238
26422
|
}
|
|
26239
26423
|
|
|
26240
26424
|
interface ReportForm {
|
|
@@ -26452,7 +26636,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26452
26636
|
readonly id: string;
|
|
26453
26637
|
readonly number: string;
|
|
26454
26638
|
readonly submitted_at: string;
|
|
26455
|
-
readonly payment_source?:
|
|
26639
|
+
readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
26456
26640
|
}
|
|
26457
26641
|
|
|
26458
26642
|
interface ReportingOrganizationSummary {
|
|
@@ -26534,7 +26718,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26534
26718
|
}
|
|
26535
26719
|
|
|
26536
26720
|
interface RestrictionFilter {
|
|
26537
|
-
readonly categories: string[];
|
|
26538
26721
|
readonly users: io.flow.common.v0.models.User[];
|
|
26539
26722
|
readonly rules: io.flow.internal.v0.models.RestrictionRuleSummary[];
|
|
26540
26723
|
readonly positive_keywords: string[];
|
|
@@ -26563,6 +26746,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26563
26746
|
readonly name: string;
|
|
26564
26747
|
readonly price: io.flow.common.v0.models.Price;
|
|
26565
26748
|
readonly hs_code?: string;
|
|
26749
|
+
readonly hs_code_source?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
26566
26750
|
readonly description: string;
|
|
26567
26751
|
readonly category?: string;
|
|
26568
26752
|
readonly categories: string[];
|
|
@@ -26579,7 +26763,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26579
26763
|
readonly statuses?: io.flow.internal.v0.enums.RestrictionStatus[];
|
|
26580
26764
|
readonly rule_ids?: string[];
|
|
26581
26765
|
readonly user_ids?: string[];
|
|
26582
|
-
readonly
|
|
26766
|
+
readonly category?: string;
|
|
26583
26767
|
readonly product_name_query?: string;
|
|
26584
26768
|
readonly hs6?: string;
|
|
26585
26769
|
readonly positive_keywords?: string[];
|
|
@@ -26688,6 +26872,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26688
26872
|
readonly images: io.flow.catalog.v0.models.Image[];
|
|
26689
26873
|
readonly thumbnails: io.flow.catalog.v0.models.Image[];
|
|
26690
26874
|
readonly hs_code?: string;
|
|
26875
|
+
readonly hs_code_source?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
26691
26876
|
readonly url?: string;
|
|
26692
26877
|
readonly reviews: io.flow.internal.v0.models.RestrictionItemReview[];
|
|
26693
26878
|
readonly created_at: string;
|
|
@@ -26704,7 +26889,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26704
26889
|
readonly positive_keywords?: string[];
|
|
26705
26890
|
readonly negative_keywords?: string[];
|
|
26706
26891
|
readonly user_ids?: string[];
|
|
26707
|
-
readonly
|
|
26892
|
+
readonly category?: string;
|
|
26708
26893
|
readonly product_name_query?: string;
|
|
26709
26894
|
readonly hs6?: string;
|
|
26710
26895
|
readonly product_id?: string;
|
|
@@ -26781,7 +26966,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26781
26966
|
readonly negative_keywords: string[];
|
|
26782
26967
|
readonly value_threshold_usd?: number;
|
|
26783
26968
|
readonly auto_review_criteria?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
26784
|
-
readonly source
|
|
26969
|
+
readonly source: io.flow.internal.v0.enums.RestrictionOrganizationSource;
|
|
26785
26970
|
readonly sellability_positive_keywords?: string[];
|
|
26786
26971
|
}
|
|
26787
26972
|
|
|
@@ -26793,6 +26978,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26793
26978
|
readonly destination_countries: string[];
|
|
26794
26979
|
}
|
|
26795
26980
|
|
|
26981
|
+
interface RestrictionRuleOrganizationExemption {
|
|
26982
|
+
readonly id: string;
|
|
26983
|
+
readonly organization_id: string;
|
|
26984
|
+
readonly rule_id: string;
|
|
26985
|
+
readonly description: string;
|
|
26986
|
+
readonly is_rule_exempt: boolean;
|
|
26987
|
+
readonly exempt_countries?: string[];
|
|
26988
|
+
readonly ignored_keywords?: string[];
|
|
26989
|
+
readonly additional_keywords?: string[];
|
|
26990
|
+
}
|
|
26991
|
+
|
|
26796
26992
|
interface RestrictionRuleOverride {
|
|
26797
26993
|
readonly id: string;
|
|
26798
26994
|
readonly organization_id: string;
|
|
@@ -26816,6 +27012,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26816
27012
|
interface RestrictionSummaryCounts {
|
|
26817
27013
|
readonly pending_restriction_count: number;
|
|
26818
27014
|
readonly pending_verification_count: number;
|
|
27015
|
+
readonly pending_classification_count: number;
|
|
26819
27016
|
}
|
|
26820
27017
|
|
|
26821
27018
|
interface RestrictionsDailyops {
|
|
@@ -26846,6 +27043,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26846
27043
|
readonly oldest_insufficient_details_pv_onboarding?: string;
|
|
26847
27044
|
readonly oldest_insufficient_details_pv_active?: string;
|
|
26848
27045
|
readonly oldest_insufficient_details_pv_transacting?: string;
|
|
27046
|
+
readonly num_products_with_fs_result?: number;
|
|
27047
|
+
readonly num_products_sellable_somewhere_by_fs?: number;
|
|
27048
|
+
readonly num_products_restricted_somewhere_by_fs?: number;
|
|
27049
|
+
readonly num_products_with_false_allows_by_fs?: number;
|
|
27050
|
+
readonly num_products_with_false_restricts_by_fs?: number;
|
|
27051
|
+
readonly daily_num_products_with_fs_result?: number;
|
|
27052
|
+
readonly daily_num_products_sellable_somewhere_by_fs?: number;
|
|
27053
|
+
readonly daily_num_products_restricted_somewhere_by_fs?: number;
|
|
27054
|
+
readonly daily_num_products_with_false_allows_by_fs?: number;
|
|
27055
|
+
readonly daily_num_products_with_false_restricts_by_fs?: number;
|
|
26849
27056
|
}
|
|
26850
27057
|
|
|
26851
27058
|
interface RestrictionsDailyopsDeleted {
|
|
@@ -26881,16 +27088,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26881
27088
|
readonly destinations: io.flow.reference.v0.models.Country[];
|
|
26882
27089
|
}
|
|
26883
27090
|
|
|
26884
|
-
interface Retracking {
|
|
26885
|
-
readonly carrier: string;
|
|
26886
|
-
readonly tracking_number?: string;
|
|
26887
|
-
}
|
|
26888
|
-
|
|
26889
|
-
interface RetrackingForm {
|
|
26890
|
-
readonly carrier: string;
|
|
26891
|
-
readonly carrier_tracking_numbers: string[];
|
|
26892
|
-
}
|
|
26893
|
-
|
|
26894
27091
|
interface Return {
|
|
26895
27092
|
readonly id: string;
|
|
26896
27093
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
@@ -27532,6 +27729,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27532
27729
|
readonly api_password?: string;
|
|
27533
27730
|
readonly access_token?: string;
|
|
27534
27731
|
readonly shopify_plan_name?: io.flow.shopify.external.v0.enums.ShopifyPlanName;
|
|
27732
|
+
readonly catalog_publication_owner?: io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
27535
27733
|
}
|
|
27536
27734
|
|
|
27537
27735
|
interface ShopifyMarketsShopStatisticsDeleted {
|
|
@@ -27790,6 +27988,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27790
27988
|
readonly assessment: io.flow.internal.v0.models.ShopifyOrderRiskAssessment;
|
|
27791
27989
|
}
|
|
27792
27990
|
|
|
27991
|
+
interface ShopifyOrderTransaction {
|
|
27992
|
+
readonly id: string;
|
|
27993
|
+
readonly model: io.flow.shopify.markets.v0.models.ShopifyOrderTransaction;
|
|
27994
|
+
}
|
|
27995
|
+
|
|
27996
|
+
interface ShopifyOrderTransactionDeleted {
|
|
27997
|
+
readonly discriminator: 'shopify_order_transaction_deleted';
|
|
27998
|
+
readonly event_id: string;
|
|
27999
|
+
readonly timestamp: string;
|
|
28000
|
+
readonly organization: string;
|
|
28001
|
+
readonly id: string;
|
|
28002
|
+
}
|
|
28003
|
+
|
|
28004
|
+
interface ShopifyOrderTransactionUpserted {
|
|
28005
|
+
readonly discriminator: 'shopify_order_transaction_upserted';
|
|
28006
|
+
readonly event_id: string;
|
|
28007
|
+
readonly timestamp: string;
|
|
28008
|
+
readonly organization: string;
|
|
28009
|
+
readonly transaction: io.flow.internal.v0.models.ShopifyOrderTransaction;
|
|
28010
|
+
}
|
|
28011
|
+
|
|
27793
28012
|
interface ShopifyOrganizationSettings {
|
|
27794
28013
|
readonly id: string;
|
|
27795
28014
|
readonly process_label: boolean;
|
|
@@ -28410,6 +28629,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28410
28629
|
readonly import_taxes?: number;
|
|
28411
28630
|
readonly mor_fees?: number;
|
|
28412
28631
|
readonly mor_foreign_exchange_fees?: number;
|
|
28632
|
+
readonly sp_processing_fees?: number;
|
|
28413
28633
|
}
|
|
28414
28634
|
|
|
28415
28635
|
interface StripeConnectReportRecordTransferMetadata {
|
|
@@ -28425,6 +28645,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28425
28645
|
readonly import_taxes?: number;
|
|
28426
28646
|
readonly mor_fees?: number;
|
|
28427
28647
|
readonly mor_foreign_exchange_fees?: number;
|
|
28648
|
+
readonly sp_processing_fees?: number;
|
|
28428
28649
|
readonly merchant_account_currency?: string;
|
|
28429
28650
|
readonly amount_in_merchant_account_currency?: number;
|
|
28430
28651
|
readonly payout_exchange_rate?: number;
|
|
@@ -28738,6 +28959,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28738
28959
|
readonly category_code?: string;
|
|
28739
28960
|
}
|
|
28740
28961
|
|
|
28962
|
+
interface TaxDutyReasonCodeMetadata {
|
|
28963
|
+
readonly discriminator: 'tax_duty_reason_code_metadata';
|
|
28964
|
+
readonly reason_code: io.flow.billing.v0.enums.TaxDutyTransactionReasonCode;
|
|
28965
|
+
}
|
|
28966
|
+
|
|
28741
28967
|
interface TaxRemittanceTransaction {
|
|
28742
28968
|
readonly discriminator: 'tax_remittance_transaction';
|
|
28743
28969
|
readonly order: io.flow.internal.v0.models.BillingOrderSummary;
|
|
@@ -28801,6 +29027,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28801
29027
|
readonly children: io.flow.internal.v0.unions.ClassificationTaxonomy[];
|
|
28802
29028
|
}
|
|
28803
29029
|
|
|
29030
|
+
interface TaxonomyCategoryHs6Ref {
|
|
29031
|
+
readonly id: string;
|
|
29032
|
+
readonly taxonomy_category: string;
|
|
29033
|
+
readonly hs6: string;
|
|
29034
|
+
readonly updated_by_user_id: string;
|
|
29035
|
+
}
|
|
29036
|
+
|
|
29037
|
+
interface TaxonomyCategoryHs6RefDeleted {
|
|
29038
|
+
readonly discriminator: 'taxonomy_category_hs6_ref_deleted';
|
|
29039
|
+
readonly event_id: string;
|
|
29040
|
+
readonly timestamp: string;
|
|
29041
|
+
readonly id: string;
|
|
29042
|
+
}
|
|
29043
|
+
|
|
29044
|
+
interface TaxonomyCategoryHs6RefUpserted {
|
|
29045
|
+
readonly discriminator: 'taxonomy_category_hs6_ref_upserted';
|
|
29046
|
+
readonly event_id: string;
|
|
29047
|
+
readonly timestamp: string;
|
|
29048
|
+
readonly taxonomy_category_hs6_ref: io.flow.internal.v0.models.TaxonomyCategoryHs6Ref;
|
|
29049
|
+
}
|
|
29050
|
+
|
|
28804
29051
|
interface TaxonomyNode {
|
|
28805
29052
|
readonly id: string;
|
|
28806
29053
|
readonly children?: io.flow.internal.v0.models.TaxonomyNode[];
|
|
@@ -29110,10 +29357,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29110
29357
|
readonly tracking_events: io.flow.internal.v0.models.TrackingEvent[];
|
|
29111
29358
|
}
|
|
29112
29359
|
|
|
29113
|
-
interface TrackingResync {
|
|
29114
|
-
readonly placeholder?: boolean;
|
|
29115
|
-
}
|
|
29116
|
-
|
|
29117
29360
|
interface TrackingSubscription {
|
|
29118
29361
|
readonly id: string;
|
|
29119
29362
|
readonly organization_id: string;
|
|
@@ -29446,6 +29689,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29446
29689
|
readonly additional_services_requested?: io.flow.label.v0.models.AdditionalServicesRequested[];
|
|
29447
29690
|
readonly provided_charges?: io.flow.internal.v0.models.ChargeInput[];
|
|
29448
29691
|
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
29692
|
+
readonly package_dimensions_source: io.flow.label.v0.enums.PackageDimensionsSource;
|
|
29449
29693
|
}
|
|
29450
29694
|
|
|
29451
29695
|
interface ValidationCharacterLength {
|
|
@@ -29527,7 +29771,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29527
29771
|
| io.flow.internal.v0.models.Dhl
|
|
29528
29772
|
| io.flow.internal.v0.models.FedexCrossborder
|
|
29529
29773
|
| io.flow.internal.v0.models.Ups
|
|
29530
|
-
| io.flow.internal.v0.models.Fedex
|
|
29774
|
+
| io.flow.internal.v0.models.Fedex
|
|
29775
|
+
| io.flow.internal.v0.models.FedexApi;
|
|
29531
29776
|
type ChannelRateMetadata =
|
|
29532
29777
|
| io.flow.internal.v0.models.ChannelRateMetadataIdentity
|
|
29533
29778
|
| io.flow.internal.v0.models.ChannelRateMetadataRate;
|
|
@@ -29866,6 +30111,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29866
30111
|
| io.flow.internal.v0.models.RestrictionRuleDeleted
|
|
29867
30112
|
| io.flow.internal.v0.models.RestrictionRuleEffectUpserted
|
|
29868
30113
|
| io.flow.internal.v0.models.RestrictionRuleEffectDeleted
|
|
30114
|
+
| io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted
|
|
30115
|
+
| io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted
|
|
29869
30116
|
| io.flow.internal.v0.models.ShopifyShopUpserted
|
|
29870
30117
|
| io.flow.internal.v0.models.ShopifyShopDeleted
|
|
29871
30118
|
| io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted
|
|
@@ -29893,6 +30140,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29893
30140
|
| io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted
|
|
29894
30141
|
| io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted
|
|
29895
30142
|
| io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted
|
|
30143
|
+
| io.flow.internal.v0.models.ShopifyOrderTransactionUpserted
|
|
30144
|
+
| io.flow.internal.v0.models.ShopifyOrderTransactionDeleted
|
|
29896
30145
|
| io.flow.internal.v0.models.ShopifyProductCreateUpserted
|
|
29897
30146
|
| io.flow.internal.v0.models.ShopifyProductCreateDeleted
|
|
29898
30147
|
| io.flow.internal.v0.models.ShopifyProductUpdateUpserted
|
|
@@ -30122,7 +30371,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30122
30371
|
| io.flow.internal.v0.models.TaskImport;
|
|
30123
30372
|
type TaskMetadata =
|
|
30124
30373
|
| io.flow.internal.v0.models.StatementCreationMetadata
|
|
30125
|
-
| io.flow.internal.v0.models.AccountingPendingOrderMetadata
|
|
30374
|
+
| io.flow.internal.v0.models.AccountingPendingOrderMetadata
|
|
30375
|
+
| io.flow.internal.v0.models.TaxDutyReasonCodeMetadata;
|
|
30126
30376
|
type TaxAmount =
|
|
30127
30377
|
| io.flow.internal.v0.models.CalculatedTaxAmount
|
|
30128
30378
|
| io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
@@ -30806,6 +31056,7 @@ export type ClassificationRequeueRequest =
|
|
|
30806
31056
|
io.flow.internal.v0.models.ClassificationRequeueRequest;
|
|
30807
31057
|
export type ClassificationResponse =
|
|
30808
31058
|
io.flow.internal.v0.unions.ClassificationResponse;
|
|
31059
|
+
export type ClassificationScope = io.flow.internal.v0.enums.ClassificationScope;
|
|
30809
31060
|
export type ClassificationStatistics =
|
|
30810
31061
|
io.flow.internal.v0.models.ClassificationStatistics;
|
|
30811
31062
|
export type ClassificationSummaryReportPayload =
|
|
@@ -31102,6 +31353,7 @@ export type ErpVendorStatusFlowFile =
|
|
|
31102
31353
|
io.flow.internal.v0.models.ErpVendorStatusFlowFile;
|
|
31103
31354
|
export type ErpVendorStatusPriorityFile =
|
|
31104
31355
|
io.flow.internal.v0.models.ErpVendorStatusPriorityFile;
|
|
31356
|
+
export type EvaluationResults = io.flow.internal.v0.models.EvaluationResults;
|
|
31105
31357
|
export type Event = io.flow.internal.v0.unions.Event;
|
|
31106
31358
|
export type EventType = io.flow.internal.v0.enums.EventType;
|
|
31107
31359
|
export type ExclusionRuleDeleted =
|
|
@@ -31180,6 +31432,7 @@ export type FeatureValue = io.flow.internal.v0.unions.FeatureValue;
|
|
|
31180
31432
|
export type FeatureValueForm = io.flow.internal.v0.models.FeatureValueForm;
|
|
31181
31433
|
export type FeatureValueResult = io.flow.internal.v0.models.FeatureValueResult;
|
|
31182
31434
|
export type Fedex = io.flow.internal.v0.models.Fedex;
|
|
31435
|
+
export type FedexApi = io.flow.internal.v0.models.FedexApi;
|
|
31183
31436
|
export type FedexCrossborder = io.flow.internal.v0.models.FedexCrossborder;
|
|
31184
31437
|
export type Fee = io.flow.internal.v0.models.Fee;
|
|
31185
31438
|
export type Fees = io.flow.internal.v0.models.Fees;
|
|
@@ -31413,6 +31666,9 @@ export type HarmonizeFullyRequestV2 =
|
|
|
31413
31666
|
io.flow.internal.v0.models.HarmonizeFullyRequestV2;
|
|
31414
31667
|
export type HarmonizedItemsHs6Export =
|
|
31415
31668
|
io.flow.internal.v0.models.HarmonizedItemsHs6Export;
|
|
31669
|
+
export type HoseinItem = io.flow.internal.v0.models.HoseinItem;
|
|
31670
|
+
export type HoseinItemForm = io.flow.internal.v0.models.HoseinItemForm;
|
|
31671
|
+
export type HoseinItemType = io.flow.internal.v0.enums.HoseinItemType;
|
|
31416
31672
|
export type Href = io.flow.internal.v0.models.Href;
|
|
31417
31673
|
export type Hs6 = io.flow.internal.v0.models.Hs6;
|
|
31418
31674
|
export type Hs6Metadata = io.flow.internal.v0.models.Hs6Metadata;
|
|
@@ -31859,6 +32115,8 @@ export type OrderNote = io.flow.internal.v0.models.OrderNote;
|
|
|
31859
32115
|
export type OrderNoteForm = io.flow.internal.v0.models.OrderNoteForm;
|
|
31860
32116
|
export type OrderPaymentAuthorization =
|
|
31861
32117
|
io.flow.internal.v0.models.OrderPaymentAuthorization;
|
|
32118
|
+
export type OrderPaymentSourceType =
|
|
32119
|
+
io.flow.internal.v0.enums.OrderPaymentSourceType;
|
|
31862
32120
|
export type OrderRatesDataV3 = io.flow.internal.v0.models.OrderRatesDataV3;
|
|
31863
32121
|
export type OrderRatesPublishedV3 =
|
|
31864
32122
|
io.flow.internal.v0.models.OrderRatesPublishedV3;
|
|
@@ -32171,6 +32429,7 @@ export type PendingBankPayment = io.flow.internal.v0.models.PendingBankPayment;
|
|
|
32171
32429
|
export type PendingBankPaymentDetail =
|
|
32172
32430
|
io.flow.internal.v0.models.PendingBankPaymentDetail;
|
|
32173
32431
|
export type PendingOrder = io.flow.internal.v0.models.PendingOrder;
|
|
32432
|
+
export type PendingRecordType = io.flow.internal.v0.enums.PendingRecordType;
|
|
32174
32433
|
export type PhraseClassified = io.flow.internal.v0.models.PhraseClassified;
|
|
32175
32434
|
export type PhrasePropagated = io.flow.internal.v0.models.PhrasePropagated;
|
|
32176
32435
|
export type PlatformFee = io.flow.internal.v0.unions.PlatformFee;
|
|
@@ -32266,6 +32525,8 @@ export type ProductRestrictionStateUpdated =
|
|
|
32266
32525
|
io.flow.internal.v0.models.ProductRestrictionStateUpdated;
|
|
32267
32526
|
export type ProductReviewHistory =
|
|
32268
32527
|
io.flow.internal.v0.models.ProductReviewHistory;
|
|
32528
|
+
export type ProductSellabilityInternal =
|
|
32529
|
+
io.flow.internal.v0.models.ProductSellabilityInternal;
|
|
32269
32530
|
export type ProductSellabilityResult =
|
|
32270
32531
|
io.flow.internal.v0.models.ProductSellabilityResult;
|
|
32271
32532
|
export type ProductStatus = io.flow.internal.v0.enums.ProductStatus;
|
|
@@ -32545,6 +32806,8 @@ export type RestrictionRuleForm =
|
|
|
32545
32806
|
io.flow.internal.v0.models.RestrictionRuleForm;
|
|
32546
32807
|
export type RestrictionRuleLaneExemption =
|
|
32547
32808
|
io.flow.internal.v0.models.RestrictionRuleLaneExemption;
|
|
32809
|
+
export type RestrictionRuleOrganizationExemption =
|
|
32810
|
+
io.flow.internal.v0.models.RestrictionRuleOrganizationExemption;
|
|
32548
32811
|
export type RestrictionRuleOverride =
|
|
32549
32812
|
io.flow.internal.v0.models.RestrictionRuleOverride;
|
|
32550
32813
|
export type RestrictionRuleSummary =
|
|
@@ -32569,8 +32832,6 @@ export type ResyncByHs6Destinations =
|
|
|
32569
32832
|
export type ResyncByHs6Origin = io.flow.internal.v0.models.ResyncByHs6Origin;
|
|
32570
32833
|
export type ResyncFallbackRates =
|
|
32571
32834
|
io.flow.internal.v0.models.ResyncFallbackRates;
|
|
32572
|
-
export type Retracking = io.flow.internal.v0.models.Retracking;
|
|
32573
|
-
export type RetrackingForm = io.flow.internal.v0.models.RetrackingForm;
|
|
32574
32835
|
export type Return = io.flow.internal.v0.models.Return;
|
|
32575
32836
|
export type ReturnPolicyDeleted =
|
|
32576
32837
|
io.flow.internal.v0.models.ReturnPolicyDeleted;
|
|
@@ -32822,6 +33083,12 @@ export type ShopifyOrderRiskAssessmentDeleted =
|
|
|
32822
33083
|
io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted;
|
|
32823
33084
|
export type ShopifyOrderRiskAssessmentUpserted =
|
|
32824
33085
|
io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted;
|
|
33086
|
+
export type ShopifyOrderTransaction =
|
|
33087
|
+
io.flow.internal.v0.models.ShopifyOrderTransaction;
|
|
33088
|
+
export type ShopifyOrderTransactionDeleted =
|
|
33089
|
+
io.flow.internal.v0.models.ShopifyOrderTransactionDeleted;
|
|
33090
|
+
export type ShopifyOrderTransactionUpserted =
|
|
33091
|
+
io.flow.internal.v0.models.ShopifyOrderTransactionUpserted;
|
|
32825
33092
|
export type ShopifyOrganizationSettings =
|
|
32826
33093
|
io.flow.internal.v0.models.ShopifyOrganizationSettings;
|
|
32827
33094
|
export type ShopifyOrganizationSettingsForm =
|
|
@@ -33076,6 +33343,8 @@ export type TaxCalculationLineItem =
|
|
|
33076
33343
|
io.flow.internal.v0.models.TaxCalculationLineItem;
|
|
33077
33344
|
export type TaxCalculationLineItemForm =
|
|
33078
33345
|
io.flow.internal.v0.models.TaxCalculationLineItemForm;
|
|
33346
|
+
export type TaxDutyReasonCodeMetadata =
|
|
33347
|
+
io.flow.internal.v0.models.TaxDutyReasonCodeMetadata;
|
|
33079
33348
|
export type TaxParty = io.flow.internal.v0.enums.TaxParty;
|
|
33080
33349
|
export type TaxRemittanceTransaction =
|
|
33081
33350
|
io.flow.internal.v0.models.TaxRemittanceTransaction;
|
|
@@ -33090,6 +33359,12 @@ export type TaxTransactionType = io.flow.internal.v0.enums.TaxTransactionType;
|
|
|
33090
33359
|
export type TaxTransactionUpserted =
|
|
33091
33360
|
io.flow.internal.v0.models.TaxTransactionUpserted;
|
|
33092
33361
|
export type TaxonomyCategory = io.flow.internal.v0.models.TaxonomyCategory;
|
|
33362
|
+
export type TaxonomyCategoryHs6Ref =
|
|
33363
|
+
io.flow.internal.v0.models.TaxonomyCategoryHs6Ref;
|
|
33364
|
+
export type TaxonomyCategoryHs6RefDeleted =
|
|
33365
|
+
io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted;
|
|
33366
|
+
export type TaxonomyCategoryHs6RefUpserted =
|
|
33367
|
+
io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted;
|
|
33093
33368
|
export type TaxonomyNode = io.flow.internal.v0.models.TaxonomyNode;
|
|
33094
33369
|
export type TechOnboardingDescription =
|
|
33095
33370
|
io.flow.internal.v0.models.TechOnboardingDescription;
|
|
@@ -33169,7 +33444,6 @@ export type TrackingProcessingFailureClassification =
|
|
|
33169
33444
|
io.flow.internal.v0.enums.TrackingProcessingFailureClassification;
|
|
33170
33445
|
export type TrackingRequest = io.flow.internal.v0.models.TrackingRequest;
|
|
33171
33446
|
export type TrackingResponse = io.flow.internal.v0.models.TrackingResponse;
|
|
33172
|
-
export type TrackingResync = io.flow.internal.v0.models.TrackingResync;
|
|
33173
33447
|
export type TrackingSubscription =
|
|
33174
33448
|
io.flow.internal.v0.models.TrackingSubscription;
|
|
33175
33449
|
export type TrackingSubscriptionDeleted =
|