@flowio/types 11.24.136 → 11.24.138
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 +377 -18
- package/dist/api.d.ts +58 -3
- package/package.json +1 -1
- package/src/api-internal.ts +493 -16
- package/src/api.ts +69 -2
package/src/api-internal.ts
CHANGED
|
@@ -5333,6 +5333,7 @@ declare namespace io.flow.label.v0.enums {
|
|
|
5333
5333
|
| 'dimensions_estimated'
|
|
5334
5334
|
| 'default_item_dimensions_estimated';
|
|
5335
5335
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
5336
|
+
type ShippingCostGuarantee = 'guaranteed' | 'non_guaranteed';
|
|
5336
5337
|
type ShippingLabelErrorCode =
|
|
5337
5338
|
| 'generic_error'
|
|
5338
5339
|
| 'cancelled_order'
|
|
@@ -5478,6 +5479,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
5478
5479
|
readonly created_at?: string;
|
|
5479
5480
|
readonly updated_at?: string;
|
|
5480
5481
|
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
5482
|
+
readonly shipping_cost_guarantee?: io.flow.label.v0.enums.ShippingCostGuarantee;
|
|
5481
5483
|
}
|
|
5482
5484
|
|
|
5483
5485
|
interface ShippingLabelDocument {
|
|
@@ -7039,6 +7041,12 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
7039
7041
|
readonly destination: string;
|
|
7040
7042
|
}
|
|
7041
7043
|
|
|
7044
|
+
interface ShopifyAdaptivePricingCoefficients {
|
|
7045
|
+
readonly id: string;
|
|
7046
|
+
readonly organization_id: string;
|
|
7047
|
+
readonly destination_coefficients: io.flow.shopify.markets.v0.models.ShopifyAdaptivePricingDestinationCoefficients[];
|
|
7048
|
+
}
|
|
7049
|
+
|
|
7042
7050
|
interface ShopifyHs10Code {
|
|
7043
7051
|
readonly country_code?: string;
|
|
7044
7052
|
readonly code: string;
|
|
@@ -7156,6 +7164,17 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
7156
7164
|
readonly response: io.flow.shopify.markets.v0.models.ShopifyWebhookResponse;
|
|
7157
7165
|
}
|
|
7158
7166
|
|
|
7167
|
+
interface ShopifyMerchantMarketCountry {
|
|
7168
|
+
readonly code: string;
|
|
7169
|
+
readonly actively_managing: boolean;
|
|
7170
|
+
}
|
|
7171
|
+
|
|
7172
|
+
interface ShopifyMerchantMarkets {
|
|
7173
|
+
readonly id: string;
|
|
7174
|
+
readonly organization_id: string;
|
|
7175
|
+
readonly countries: io.flow.shopify.markets.internal.v0.models.ShopifyMerchantMarketCountry[];
|
|
7176
|
+
}
|
|
7177
|
+
|
|
7159
7178
|
interface ShopifyOrderCancelForm {
|
|
7160
7179
|
readonly note?: string;
|
|
7161
7180
|
}
|
|
@@ -8314,6 +8333,10 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
8314
8333
|
readonly count: number;
|
|
8315
8334
|
}
|
|
8316
8335
|
|
|
8336
|
+
interface GraphqlInferredProductCategory {
|
|
8337
|
+
readonly category?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
|
|
8338
|
+
}
|
|
8339
|
+
|
|
8317
8340
|
interface GraphqlInventoryItem {
|
|
8318
8341
|
readonly id: string;
|
|
8319
8342
|
readonly tracked: boolean;
|
|
@@ -8370,6 +8393,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
8370
8393
|
readonly updatedAt: string;
|
|
8371
8394
|
readonly hasVariantsThatRequiresComponents?: boolean;
|
|
8372
8395
|
readonly category?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
|
|
8396
|
+
readonly inferredProductCategory?: io.flow.shopify.external.v0.models.GraphqlInferredProductCategory;
|
|
8373
8397
|
readonly metafields?: io.flow.shopify.external.v0.models.GraphqlMetafield[];
|
|
8374
8398
|
}
|
|
8375
8399
|
|
|
@@ -9485,7 +9509,8 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
9485
9509
|
| 'themes/publish'
|
|
9486
9510
|
| 'themes/update'
|
|
9487
9511
|
| 'bulk_operations/finish'
|
|
9488
|
-
| 'shop/update'
|
|
9512
|
+
| 'shop/update'
|
|
9513
|
+
| 'managed_markets_adaptive_pricing/updated';
|
|
9489
9514
|
}
|
|
9490
9515
|
|
|
9491
9516
|
declare namespace io.flow.shopify.markets.v0.models {
|
|
@@ -9551,6 +9576,17 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
9551
9576
|
readonly shop: io.flow.shopify.markets.v0.models.Shop;
|
|
9552
9577
|
}
|
|
9553
9578
|
|
|
9579
|
+
interface ShopifyAdaptivePricingDestinationCoefficients {
|
|
9580
|
+
readonly country: string;
|
|
9581
|
+
readonly updated_at: string;
|
|
9582
|
+
readonly tax_and_duty_coefficient: string;
|
|
9583
|
+
readonly fees_coefficient: string;
|
|
9584
|
+
readonly merchant_subsidy_amount: string;
|
|
9585
|
+
readonly merchant_subsidy_currency: string;
|
|
9586
|
+
readonly adaptive_pricing_enabled: boolean;
|
|
9587
|
+
readonly adaptive_shipping_enabled: boolean;
|
|
9588
|
+
}
|
|
9589
|
+
|
|
9554
9590
|
interface ShopifyAppliedDiscount {
|
|
9555
9591
|
readonly title?: string;
|
|
9556
9592
|
readonly description?: string;
|
|
@@ -10370,6 +10406,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
10370
10406
|
| 'unsupported_order_edit'
|
|
10371
10407
|
| 'order_allocation_duties_mismatch'
|
|
10372
10408
|
| 'order_missing'
|
|
10409
|
+
| 'order_cancelled'
|
|
10373
10410
|
| 'organization_deactivated';
|
|
10374
10411
|
type ChannelOrderAcceptanceStatus =
|
|
10375
10412
|
| 'accepted'
|
|
@@ -10486,6 +10523,14 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
10486
10523
|
readonly cleartext: string;
|
|
10487
10524
|
}
|
|
10488
10525
|
|
|
10526
|
+
interface ChannelShopStatistics {
|
|
10527
|
+
readonly id: string;
|
|
10528
|
+
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
10529
|
+
readonly initial_catalog_synced_at?: string;
|
|
10530
|
+
readonly catalog_sync_duration?: number;
|
|
10531
|
+
readonly catalog_products_count?: number;
|
|
10532
|
+
}
|
|
10533
|
+
|
|
10489
10534
|
interface FlowChannelOrganization {
|
|
10490
10535
|
readonly placeholder?: string;
|
|
10491
10536
|
}
|
|
@@ -11221,6 +11266,22 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
11221
11266
|
readonly order_tax_and_duty_inclusivity_setting: io.flow.shopify.markets.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
11222
11267
|
}
|
|
11223
11268
|
|
|
11269
|
+
interface ShopifyAdaptivePricingCoefficientsDeleted {
|
|
11270
|
+
readonly discriminator: 'shopify_adaptive_pricing_coefficients_deleted';
|
|
11271
|
+
readonly event_id: string;
|
|
11272
|
+
readonly timestamp: string;
|
|
11273
|
+
readonly organization: string;
|
|
11274
|
+
readonly id: string;
|
|
11275
|
+
}
|
|
11276
|
+
|
|
11277
|
+
interface ShopifyAdaptivePricingCoefficientsUpserted {
|
|
11278
|
+
readonly discriminator: 'shopify_adaptive_pricing_coefficients_upserted';
|
|
11279
|
+
readonly event_id: string;
|
|
11280
|
+
readonly timestamp: string;
|
|
11281
|
+
readonly organization: string;
|
|
11282
|
+
readonly shopify_adaptive_pricing_coefficients: io.flow.shopify.markets.internal.v0.models.ShopifyAdaptivePricingCoefficients;
|
|
11283
|
+
}
|
|
11284
|
+
|
|
11224
11285
|
interface ShopifyIncotermIncludes {
|
|
11225
11286
|
readonly duties: boolean;
|
|
11226
11287
|
readonly taxes: boolean;
|
|
@@ -11343,6 +11404,22 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
11343
11404
|
readonly registration: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
11344
11405
|
}
|
|
11345
11406
|
|
|
11407
|
+
interface ShopifyMerchantMarketsDeleted {
|
|
11408
|
+
readonly discriminator: 'shopify_merchant_markets_deleted';
|
|
11409
|
+
readonly event_id: string;
|
|
11410
|
+
readonly timestamp: string;
|
|
11411
|
+
readonly organization: string;
|
|
11412
|
+
readonly id: string;
|
|
11413
|
+
}
|
|
11414
|
+
|
|
11415
|
+
interface ShopifyMerchantMarketsUpserted {
|
|
11416
|
+
readonly discriminator: 'shopify_merchant_markets_upserted';
|
|
11417
|
+
readonly event_id: string;
|
|
11418
|
+
readonly timestamp: string;
|
|
11419
|
+
readonly organization: string;
|
|
11420
|
+
readonly shopify_merchant_markets: io.flow.shopify.markets.internal.v0.models.ShopifyMerchantMarkets;
|
|
11421
|
+
}
|
|
11422
|
+
|
|
11346
11423
|
interface ShopifyOrderRiskAssessmentDeleted {
|
|
11347
11424
|
readonly discriminator: 'shopify_order_risk_assessment_deleted';
|
|
11348
11425
|
readonly event_id: string;
|
|
@@ -11473,7 +11550,11 @@ declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
|
11473
11550
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionUpserted
|
|
11474
11551
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted
|
|
11475
11552
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderUpserted
|
|
11476
|
-
| io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderDeleted
|
|
11553
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderDeleted
|
|
11554
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyAdaptivePricingCoefficientsUpserted
|
|
11555
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyAdaptivePricingCoefficientsDeleted
|
|
11556
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMerchantMarketsUpserted
|
|
11557
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMerchantMarketsDeleted;
|
|
11477
11558
|
}
|
|
11478
11559
|
|
|
11479
11560
|
declare namespace io.flow.experience.v0.enums {
|
|
@@ -12927,6 +13008,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
12927
13008
|
readonly rate_level_key?: string;
|
|
12928
13009
|
readonly direction: io.flow.label.v0.enums.Direction;
|
|
12929
13010
|
readonly effective_at: string;
|
|
13011
|
+
readonly effective_until?: string;
|
|
12930
13012
|
readonly origination_zones: io.flow.common.v0.models.Zone[];
|
|
12931
13013
|
readonly service: io.flow.ratecard.v0.models.RatecardServiceSummary;
|
|
12932
13014
|
readonly published_at?: string;
|
|
@@ -12947,6 +13029,10 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
12947
13029
|
readonly pickupCenter?: string;
|
|
12948
13030
|
}
|
|
12949
13031
|
|
|
13032
|
+
interface RatecardEffectiveUntilForm {
|
|
13033
|
+
readonly effective_until?: string;
|
|
13034
|
+
}
|
|
13035
|
+
|
|
12950
13036
|
interface RatecardEstimateForm {
|
|
12951
13037
|
readonly origin_address: io.flow.common.v0.models.Address;
|
|
12952
13038
|
readonly destination_address: io.flow.common.v0.models.Address;
|
|
@@ -14025,6 +14111,7 @@ declare namespace io.flow.product.v0.models {
|
|
|
14025
14111
|
readonly organization_id: string;
|
|
14026
14112
|
readonly number: string;
|
|
14027
14113
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
14114
|
+
readonly inferred_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
14028
14115
|
readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
14029
14116
|
readonly item_numbers: string[];
|
|
14030
14117
|
readonly highest_value_item_number?: string;
|
|
@@ -16638,6 +16725,18 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
16638
16725
|
|
|
16639
16726
|
interface BankAccountInfoKor {
|
|
16640
16727
|
readonly discriminator: 'kor';
|
|
16728
|
+
readonly name?: string;
|
|
16729
|
+
readonly address?: io.flow.common.v0.models.Address;
|
|
16730
|
+
readonly phone?: string;
|
|
16731
|
+
readonly email?: string;
|
|
16732
|
+
readonly bank_account_number: string;
|
|
16733
|
+
readonly bank_routing_number?: string;
|
|
16734
|
+
readonly bank_name?: string;
|
|
16735
|
+
readonly bank_address?: io.flow.common.v0.models.Address;
|
|
16736
|
+
}
|
|
16737
|
+
|
|
16738
|
+
interface BankAccountInfoKorV2 {
|
|
16739
|
+
readonly discriminator: 'kor_v2';
|
|
16641
16740
|
readonly name: string;
|
|
16642
16741
|
readonly bank_account_number: string;
|
|
16643
16742
|
readonly bank_routing_number: string;
|
|
@@ -16658,17 +16757,19 @@ declare namespace io.flow.billing.bank.account.v0.unions {
|
|
|
16658
16757
|
| io.flow.billing.bank.account.v0.models.BankAccountInfoGbr
|
|
16659
16758
|
| io.flow.billing.bank.account.v0.models.BankAccountInfoFra
|
|
16660
16759
|
| io.flow.billing.bank.account.v0.models.BankAccountInfoIta
|
|
16661
|
-
| io.flow.billing.bank.account.v0.models.BankAccountInfoKor
|
|
16760
|
+
| io.flow.billing.bank.account.v0.models.BankAccountInfoKor
|
|
16761
|
+
| io.flow.billing.bank.account.v0.models.BankAccountInfoKorV2;
|
|
16662
16762
|
}
|
|
16663
16763
|
|
|
16664
16764
|
declare namespace io.flow.internal.v0.enums {
|
|
16665
|
-
type AccountCurrencyFilter = 'GBP' | 'CAD' | 'USD';
|
|
16765
|
+
type AccountCurrencyFilter = 'GBP' | 'CAD' | 'USD' | 'KRW';
|
|
16666
16766
|
type AccountPaymentHoldReason =
|
|
16667
16767
|
| 'fraudulent'
|
|
16668
16768
|
| 'frozen'
|
|
16669
16769
|
| 'invalid_bank_account';
|
|
16670
16770
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
16671
16771
|
type AccountType = 'channel' | 'organization';
|
|
16772
|
+
type AdaptiveShippingOrderGuaranteeState = 'confirmed' | 'voided';
|
|
16672
16773
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
16673
16774
|
type AdyenIntegrationType =
|
|
16674
16775
|
| 'hosted_payment_page'
|
|
@@ -16681,6 +16782,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16681
16782
|
| 'integration_test'
|
|
16682
16783
|
| 'unit_test';
|
|
16683
16784
|
type ApplicablePreferentialRate = 'baby' | 'children';
|
|
16785
|
+
type AthenaDailyopsIntentLevel = 'low_intent' | 'high_intent';
|
|
16684
16786
|
type AutoRestrictRule =
|
|
16685
16787
|
| 'prr-3ce7d556f2464314ab0a3e8eee33e0ce'
|
|
16686
16788
|
| 'prr-599c6246a1a24752aeb85e8f79030781'
|
|
@@ -17040,6 +17142,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17040
17142
|
| 'unsupported_order_edit'
|
|
17041
17143
|
| 'order_allocation_duties_mismatch'
|
|
17042
17144
|
| 'order_missing'
|
|
17145
|
+
| 'order_cancelled'
|
|
17043
17146
|
| 'organization_deactivated';
|
|
17044
17147
|
type ChannelOrderAcceptanceStatus =
|
|
17045
17148
|
| 'accepted'
|
|
@@ -17263,6 +17366,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17263
17366
|
| 'channel_order_acceptance_upserted'
|
|
17264
17367
|
| 'channel_order_acceptance_deleted'
|
|
17265
17368
|
| 'channel_order_acceptance_failed'
|
|
17369
|
+
| 'channel_shop_statistics_upserted'
|
|
17370
|
+
| 'channel_shop_statistics_deleted'
|
|
17266
17371
|
| 'commercial_invoice_internal_upserted'
|
|
17267
17372
|
| 'commercial_invoice_internal_deleted'
|
|
17268
17373
|
| 'internal_channel_rate_deleted'
|
|
@@ -17322,6 +17427,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17322
17427
|
| 'shipping_cost_deleted'
|
|
17323
17428
|
| 'mor_cost_upserted'
|
|
17324
17429
|
| 'mor_cost_deleted'
|
|
17430
|
+
| 'flat_rate_label_reversal_upserted'
|
|
17431
|
+
| 'flat_rate_label_reversal_deleted'
|
|
17325
17432
|
| 'fraud_review_upserted'
|
|
17326
17433
|
| 'fraud_review_deleted'
|
|
17327
17434
|
| 'fraud_pending_review_upserted'
|
|
@@ -17378,6 +17485,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17378
17485
|
| 'order_validation_deleted'
|
|
17379
17486
|
| 'label_creation_job_upserted'
|
|
17380
17487
|
| 'label_creation_job_deleted'
|
|
17488
|
+
| 'adaptive_shipping_order_guarantee_upserted'
|
|
17489
|
+
| 'adaptive_shipping_order_guarantee_deleted'
|
|
17381
17490
|
| 'label_tracking_summary_upserted'
|
|
17382
17491
|
| 'label_tracking_summary_deleted'
|
|
17383
17492
|
| 'logistics_capabilities_upserted'
|
|
@@ -17466,12 +17575,18 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17466
17575
|
| 'screening_status_change_deleted'
|
|
17467
17576
|
| 'restrictions_dailyops_upserted'
|
|
17468
17577
|
| 'restrictions_dailyops_deleted'
|
|
17578
|
+
| 'restrictions_athena_dailyops_pc_pv_upserted'
|
|
17579
|
+
| 'restrictions_athena_dailyops_pc_pv_deleted'
|
|
17580
|
+
| 'restrictions_athena_dailyops_fs_upserted'
|
|
17581
|
+
| 'restrictions_athena_dailyops_fs_deleted'
|
|
17469
17582
|
| 'restriction_rule_upserted'
|
|
17470
17583
|
| 'restriction_rule_deleted'
|
|
17471
17584
|
| 'restriction_rule_effect_upserted'
|
|
17472
17585
|
| 'restriction_rule_effect_deleted'
|
|
17473
17586
|
| 'taxonomy_category_hs6_ref_upserted'
|
|
17474
17587
|
| 'taxonomy_category_hs6_ref_deleted'
|
|
17588
|
+
| 'preonboarding_merchant_upserted'
|
|
17589
|
+
| 'preonboarding_merchant_deleted'
|
|
17475
17590
|
| 'shopify_hs10_codes_upserted'
|
|
17476
17591
|
| 'shopify_hs10_codes_deleted'
|
|
17477
17592
|
| 'shopify_markets_order_upserted'
|
|
@@ -17505,6 +17620,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17505
17620
|
| 'shopify_order_transaction_deleted'
|
|
17506
17621
|
| 'shopify_test_order_upserted'
|
|
17507
17622
|
| 'shopify_test_order_deleted'
|
|
17623
|
+
| 'shopify_adaptive_pricing_coefficients_upserted'
|
|
17624
|
+
| 'shopify_adaptive_pricing_coefficients_deleted'
|
|
17625
|
+
| 'shopify_merchant_markets_upserted'
|
|
17626
|
+
| 'shopify_merchant_markets_deleted'
|
|
17508
17627
|
| 'shopify_product_create_upserted'
|
|
17509
17628
|
| 'shopify_product_create_deleted'
|
|
17510
17629
|
| 'shopify_product_update_upserted'
|
|
@@ -17549,6 +17668,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17549
17668
|
| 'chenglin_item_deleted'
|
|
17550
17669
|
| 'bojana_item_upserted'
|
|
17551
17670
|
| 'bojana_item_deleted'
|
|
17671
|
+
| 'raveena_item_upserted'
|
|
17672
|
+
| 'raveena_item_deleted'
|
|
17552
17673
|
| 'tracking_processing_error_upserted'
|
|
17553
17674
|
| 'tracking_processing_error_deleted'
|
|
17554
17675
|
| 'tracking_label_event_upserted_v2'
|
|
@@ -17642,7 +17763,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17642
17763
|
type JournalOperation = 'insert' | 'update' | 'delete';
|
|
17643
17764
|
type KeywordType = 'positive' | 'negative';
|
|
17644
17765
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
17645
|
-
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
17646
17766
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
17647
17767
|
type LabelEventMedium = 'webhook' | 'pull' | 'post';
|
|
17648
17768
|
type LabelEventSource = 'aftership' | 'carrier' | 'flow';
|
|
@@ -17681,6 +17801,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17681
17801
|
| 'order_combined_shipment'
|
|
17682
17802
|
| 'intransit_label_event'
|
|
17683
17803
|
| 'shipping_notification';
|
|
17804
|
+
type MaheshItemType = 'physical' | 'digital';
|
|
17684
17805
|
type MailClass = 'standard' | 'express';
|
|
17685
17806
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
17686
17807
|
type ManualTransactionCategory =
|
|
@@ -17898,6 +18019,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17898
18019
|
| 'non_channel_payment_bank_account'
|
|
17899
18020
|
| 'scheduled_payment'
|
|
17900
18021
|
| 'scheduled_payment_citi'
|
|
18022
|
+
| 'scheduled_payment_citi_krw'
|
|
18023
|
+
| 'scheduled_payment_citi_krw_txt'
|
|
17901
18024
|
| 'account_quarterly_balances'
|
|
17902
18025
|
| 'invariants'
|
|
17903
18026
|
| 'payments'
|
|
@@ -18136,7 +18259,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18136
18259
|
| 'payment'
|
|
18137
18260
|
| 'rate_levels'
|
|
18138
18261
|
| 'center_defaults'
|
|
18139
|
-
| 'item_dimensions'
|
|
18262
|
+
| 'item_dimensions'
|
|
18263
|
+
| 'center';
|
|
18140
18264
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
18141
18265
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
18142
18266
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax' | 'refund';
|
|
@@ -18429,13 +18553,53 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18429
18553
|
readonly quantity: number;
|
|
18430
18554
|
}
|
|
18431
18555
|
|
|
18556
|
+
interface AdaptivePricingDestinationUpdate {
|
|
18557
|
+
readonly country_code: string;
|
|
18558
|
+
readonly updated_at: string;
|
|
18559
|
+
readonly tax_and_duty_coefficient: number;
|
|
18560
|
+
readonly fees_coefficient: number;
|
|
18561
|
+
readonly merchant_subsidy_amount: number;
|
|
18562
|
+
readonly merchant_subsidy_currency: string;
|
|
18563
|
+
}
|
|
18564
|
+
|
|
18565
|
+
interface AdaptivePricingUpdate {
|
|
18566
|
+
readonly channel_id: string;
|
|
18567
|
+
readonly organization_id: string;
|
|
18568
|
+
readonly destination_updates: io.flow.internal.v0.models.AdaptivePricingDestinationUpdate[];
|
|
18569
|
+
}
|
|
18570
|
+
|
|
18571
|
+
interface AdaptiveShippingOrderGuarantee {
|
|
18572
|
+
readonly id: string;
|
|
18573
|
+
readonly organization_id: string;
|
|
18574
|
+
readonly order_number: string;
|
|
18575
|
+
readonly guarantee_state: io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState;
|
|
18576
|
+
readonly label_id?: string;
|
|
18577
|
+
readonly notification_id?: string;
|
|
18578
|
+
}
|
|
18579
|
+
|
|
18580
|
+
interface AdaptiveShippingOrderGuaranteeDeleted {
|
|
18581
|
+
readonly discriminator: 'adaptive_shipping_order_guarantee_deleted';
|
|
18582
|
+
readonly event_id: string;
|
|
18583
|
+
readonly timestamp: string;
|
|
18584
|
+
readonly organization: string;
|
|
18585
|
+
readonly id: string;
|
|
18586
|
+
}
|
|
18587
|
+
|
|
18588
|
+
interface AdaptiveShippingOrderGuaranteeUpserted {
|
|
18589
|
+
readonly discriminator: 'adaptive_shipping_order_guarantee_upserted';
|
|
18590
|
+
readonly event_id: string;
|
|
18591
|
+
readonly timestamp: string;
|
|
18592
|
+
readonly organization: string;
|
|
18593
|
+
readonly adaptive_shipping_order_guarantee: io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
18594
|
+
}
|
|
18595
|
+
|
|
18432
18596
|
interface AdaptiveShippingRate {
|
|
18433
18597
|
readonly id: string;
|
|
18434
18598
|
readonly organization_id: string;
|
|
18599
|
+
readonly channel_id: string;
|
|
18435
18600
|
readonly destination_country: string;
|
|
18436
18601
|
readonly coefficient: number;
|
|
18437
18602
|
readonly flat_rates: io.flow.internal.v0.models.FlatRate[];
|
|
18438
|
-
readonly version_id?: string;
|
|
18439
18603
|
readonly effective_at: string;
|
|
18440
18604
|
readonly effective_until?: string;
|
|
18441
18605
|
}
|
|
@@ -19606,6 +19770,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19606
19770
|
readonly sales_tax_rate: number;
|
|
19607
19771
|
readonly additional_tax?: io.flow.common.v0.models.Money;
|
|
19608
19772
|
readonly additional_tax_rate?: number;
|
|
19773
|
+
readonly fixed_fee?: io.flow.common.v0.models.Money;
|
|
19774
|
+
readonly fixed_fee_tax?: io.flow.common.v0.models.Money;
|
|
19609
19775
|
readonly total: io.flow.common.v0.models.Money;
|
|
19610
19776
|
}
|
|
19611
19777
|
|
|
@@ -19640,6 +19806,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19640
19806
|
readonly additional_tax_import_included: boolean;
|
|
19641
19807
|
readonly additional_tax?: io.flow.common.v0.models.Money;
|
|
19642
19808
|
readonly additional_import_tax?: io.flow.internal.v0.models.AdditionalImportTax[];
|
|
19809
|
+
readonly fixed_fee?: io.flow.common.v0.models.Money;
|
|
19810
|
+
readonly fixed_fee_tax?: io.flow.common.v0.models.Money;
|
|
19643
19811
|
}
|
|
19644
19812
|
|
|
19645
19813
|
interface CalculatorDtcePostBody {
|
|
@@ -20389,6 +20557,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20389
20557
|
readonly tokens: io.flow.internal.v0.models.Tokens;
|
|
20390
20558
|
}
|
|
20391
20559
|
|
|
20560
|
+
interface ChannelShopStatistics {
|
|
20561
|
+
readonly id: string;
|
|
20562
|
+
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
20563
|
+
readonly initial_catalog_synced_at?: string;
|
|
20564
|
+
readonly catalog_sync_duration?: number;
|
|
20565
|
+
readonly catalog_products_count?: number;
|
|
20566
|
+
}
|
|
20567
|
+
|
|
20568
|
+
interface ChannelShopStatisticsDeleted {
|
|
20569
|
+
readonly discriminator: 'channel_shop_statistics_deleted';
|
|
20570
|
+
readonly event_id: string;
|
|
20571
|
+
readonly timestamp: string;
|
|
20572
|
+
readonly organization: string;
|
|
20573
|
+
readonly id: string;
|
|
20574
|
+
}
|
|
20575
|
+
|
|
20576
|
+
interface ChannelShopStatisticsUpserted {
|
|
20577
|
+
readonly discriminator: 'channel_shop_statistics_upserted';
|
|
20578
|
+
readonly event_id: string;
|
|
20579
|
+
readonly timestamp: string;
|
|
20580
|
+
readonly organization: string;
|
|
20581
|
+
readonly channel_shop_statistics: io.flow.internal.v0.models.ChannelShopStatistics;
|
|
20582
|
+
}
|
|
20583
|
+
|
|
20392
20584
|
interface ChannelTransaction {
|
|
20393
20585
|
readonly discriminator: 'channel_transaction';
|
|
20394
20586
|
readonly transaction: io.flow.internal.v0.models.TransactionReference;
|
|
@@ -22328,6 +22520,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22328
22520
|
readonly max_delivery_days?: number;
|
|
22329
22521
|
}
|
|
22330
22522
|
|
|
22523
|
+
interface FlatRateLabelReversal {
|
|
22524
|
+
readonly id: string;
|
|
22525
|
+
readonly organization_id: string;
|
|
22526
|
+
readonly order_number: string;
|
|
22527
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
22528
|
+
readonly tax: io.flow.common.v0.models.Money;
|
|
22529
|
+
}
|
|
22530
|
+
|
|
22531
|
+
interface FlatRateLabelReversalDeleted {
|
|
22532
|
+
readonly discriminator: 'flat_rate_label_reversal_deleted';
|
|
22533
|
+
readonly event_id: string;
|
|
22534
|
+
readonly timestamp: string;
|
|
22535
|
+
readonly organization: string;
|
|
22536
|
+
readonly id: string;
|
|
22537
|
+
}
|
|
22538
|
+
|
|
22539
|
+
interface FlatRateLabelReversalUpserted {
|
|
22540
|
+
readonly discriminator: 'flat_rate_label_reversal_upserted';
|
|
22541
|
+
readonly event_id: string;
|
|
22542
|
+
readonly timestamp: string;
|
|
22543
|
+
readonly organization: string;
|
|
22544
|
+
readonly flat_rate_label_reversal: io.flow.internal.v0.models.FlatRateLabelReversal;
|
|
22545
|
+
}
|
|
22546
|
+
|
|
22331
22547
|
interface FlatRateLabelTransaction {
|
|
22332
22548
|
readonly discriminator: 'flat_rate_label_transaction';
|
|
22333
22549
|
readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -23725,11 +23941,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23725
23941
|
readonly constructions: Record<string, string[]>;
|
|
23726
23942
|
}
|
|
23727
23943
|
|
|
23728
|
-
interface LabelCancellationError {
|
|
23729
|
-
readonly code: io.flow.internal.v0.enums.LabelCancellationErrorCode;
|
|
23730
|
-
readonly messages: string[];
|
|
23731
|
-
}
|
|
23732
|
-
|
|
23733
23944
|
interface LabelCreationJob {
|
|
23734
23945
|
readonly id: string;
|
|
23735
23946
|
readonly reference_id: string;
|
|
@@ -24202,6 +24413,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24202
24413
|
readonly applied: io.flow.internal.v0.models.LoyaltyProgramReward[];
|
|
24203
24414
|
}
|
|
24204
24415
|
|
|
24416
|
+
interface MaheshItem {
|
|
24417
|
+
readonly id: string;
|
|
24418
|
+
readonly number: string;
|
|
24419
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
24420
|
+
readonly description?: string;
|
|
24421
|
+
readonly type: io.flow.internal.v0.enums.MaheshItemType;
|
|
24422
|
+
readonly added_on: string;
|
|
24423
|
+
}
|
|
24424
|
+
|
|
24425
|
+
interface MaheshItemForm {
|
|
24426
|
+
readonly number: string;
|
|
24427
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
24428
|
+
readonly description?: string;
|
|
24429
|
+
readonly type: io.flow.internal.v0.enums.MaheshItemType;
|
|
24430
|
+
readonly added_on: string;
|
|
24431
|
+
}
|
|
24432
|
+
|
|
24205
24433
|
interface MainTransaction {
|
|
24206
24434
|
readonly id: string;
|
|
24207
24435
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
@@ -24507,6 +24735,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24507
24735
|
readonly freight: number;
|
|
24508
24736
|
readonly base_amount?: number;
|
|
24509
24737
|
readonly surcharges?: io.flow.internal.v0.models.MerchantSurcharge[];
|
|
24738
|
+
readonly freight_guaranteed?: number;
|
|
24739
|
+
readonly freight_non_guaranteed?: number;
|
|
24510
24740
|
readonly total: number;
|
|
24511
24741
|
readonly tax_refund?: number;
|
|
24512
24742
|
readonly tax_reversal?: number;
|
|
@@ -26188,6 +26418,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26188
26418
|
readonly relative_ranking: number;
|
|
26189
26419
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
26190
26420
|
readonly fingerprint: string;
|
|
26421
|
+
readonly screening_mode?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
26191
26422
|
}
|
|
26192
26423
|
|
|
26193
26424
|
interface PreonboardingClassificationResult {
|
|
@@ -26199,14 +26430,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26199
26430
|
readonly probability?: number;
|
|
26200
26431
|
readonly classification_decision: io.flow.internal.v0.enums.PreonboardingClassificationDecision;
|
|
26201
26432
|
readonly classification_type: io.flow.internal.v0.enums.PreonboardingClassificationType;
|
|
26433
|
+
readonly model_id?: string;
|
|
26202
26434
|
}
|
|
26203
26435
|
|
|
26204
26436
|
interface PreonboardingMerchant {
|
|
26437
|
+
readonly id: string;
|
|
26205
26438
|
readonly merchant_id: string;
|
|
26206
26439
|
readonly channel: string;
|
|
26207
26440
|
readonly catalog_size: number;
|
|
26208
26441
|
readonly processed_product_count: number;
|
|
26209
26442
|
readonly last_request: string;
|
|
26443
|
+
readonly updated_by_user_id: string;
|
|
26444
|
+
}
|
|
26445
|
+
|
|
26446
|
+
interface PreonboardingMerchantDeleted {
|
|
26447
|
+
readonly discriminator: 'preonboarding_merchant_deleted';
|
|
26448
|
+
readonly event_id: string;
|
|
26449
|
+
readonly timestamp: string;
|
|
26450
|
+
readonly id: string;
|
|
26451
|
+
}
|
|
26452
|
+
|
|
26453
|
+
interface PreonboardingMerchantUpserted {
|
|
26454
|
+
readonly discriminator: 'preonboarding_merchant_upserted';
|
|
26455
|
+
readonly event_id: string;
|
|
26456
|
+
readonly timestamp: string;
|
|
26457
|
+
readonly preonboarding_merchant: io.flow.internal.v0.models.PreonboardingMerchant;
|
|
26210
26458
|
}
|
|
26211
26459
|
|
|
26212
26460
|
interface PreonboardingSellabilityResult {
|
|
@@ -26225,7 +26473,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26225
26473
|
readonly matching_sellability_positive_keywords?: string[];
|
|
26226
26474
|
readonly classification_failure_reason?: io.flow.internal.v0.enums.ClassificationFailureReason;
|
|
26227
26475
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
26476
|
+
readonly inferred_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
26477
|
+
readonly effective_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
26228
26478
|
readonly fingerprint: string;
|
|
26479
|
+
readonly screening_mode?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
26229
26480
|
}
|
|
26230
26481
|
|
|
26231
26482
|
interface PreonboardingSellabilityResultDeleted {
|
|
@@ -27002,6 +27253,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27002
27253
|
readonly added_on: string;
|
|
27003
27254
|
}
|
|
27004
27255
|
|
|
27256
|
+
interface RaveenaItemDeleted {
|
|
27257
|
+
readonly discriminator: 'raveena_item_deleted';
|
|
27258
|
+
readonly event_id: string;
|
|
27259
|
+
readonly timestamp: string;
|
|
27260
|
+
readonly id: string;
|
|
27261
|
+
}
|
|
27262
|
+
|
|
27005
27263
|
interface RaveenaItemForm {
|
|
27006
27264
|
readonly number: string;
|
|
27007
27265
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -27010,6 +27268,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27010
27268
|
readonly added_on: string;
|
|
27011
27269
|
}
|
|
27012
27270
|
|
|
27271
|
+
interface RaveenaItemUpserted {
|
|
27272
|
+
readonly discriminator: 'raveena_item_upserted';
|
|
27273
|
+
readonly event_id: string;
|
|
27274
|
+
readonly timestamp: string;
|
|
27275
|
+
readonly item: io.flow.internal.v0.models.RaveenaItem;
|
|
27276
|
+
}
|
|
27277
|
+
|
|
27013
27278
|
interface RecordReference {
|
|
27014
27279
|
readonly id: string;
|
|
27015
27280
|
}
|
|
@@ -27076,6 +27341,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27076
27341
|
readonly type: string;
|
|
27077
27342
|
readonly routing_number: string;
|
|
27078
27343
|
readonly account_number: string;
|
|
27344
|
+
readonly bank_name?: string;
|
|
27079
27345
|
}
|
|
27080
27346
|
|
|
27081
27347
|
interface ReportFile {
|
|
@@ -27225,6 +27491,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27225
27491
|
readonly td_fx_diff?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27226
27492
|
}
|
|
27227
27493
|
|
|
27494
|
+
interface ReportingFreight {
|
|
27495
|
+
readonly guaranteed?: io.flow.internal.v0.models.ReportingFreightGuaranteed;
|
|
27496
|
+
}
|
|
27497
|
+
|
|
27498
|
+
interface ReportingFreightGuaranteed {
|
|
27499
|
+
readonly amount: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27500
|
+
readonly coefficient: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27501
|
+
}
|
|
27502
|
+
|
|
27228
27503
|
interface ReportingFulfillment {
|
|
27229
27504
|
readonly id: string;
|
|
27230
27505
|
readonly sequence_number: number;
|
|
@@ -27322,6 +27597,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27322
27597
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27323
27598
|
readonly freight: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27324
27599
|
readonly freight_breakdown?: io.flow.internal.v0.models.ReportingMerchantFreight;
|
|
27600
|
+
readonly freight_guaranteed?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27601
|
+
readonly freight_non_guaranteed?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27325
27602
|
readonly discount?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27326
27603
|
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27327
27604
|
readonly tax_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
@@ -27505,6 +27782,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27505
27782
|
readonly created_at: string;
|
|
27506
27783
|
readonly updated_at: string;
|
|
27507
27784
|
readonly channel?: string;
|
|
27785
|
+
readonly is_deleted?: boolean;
|
|
27508
27786
|
}
|
|
27509
27787
|
|
|
27510
27788
|
interface RestrictionItemRequestForm {
|
|
@@ -27630,6 +27908,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27630
27908
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
27631
27909
|
readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
27632
27910
|
readonly channel?: string;
|
|
27911
|
+
readonly is_deleted?: boolean;
|
|
27633
27912
|
}
|
|
27634
27913
|
|
|
27635
27914
|
interface RestrictionProductDecisionForm {
|
|
@@ -27799,6 +28078,75 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27799
28078
|
readonly pending_classification_count: number;
|
|
27800
28079
|
}
|
|
27801
28080
|
|
|
28081
|
+
interface RestrictionsAthenaDailyopsFs {
|
|
28082
|
+
readonly id: string;
|
|
28083
|
+
readonly report_date: string;
|
|
28084
|
+
readonly num_products_with_fs_result?: number;
|
|
28085
|
+
readonly num_products_sellable_somewhere_by_fs?: number;
|
|
28086
|
+
readonly num_products_restricted_somewhere_by_fs?: number;
|
|
28087
|
+
readonly num_products_with_false_allows_by_fs?: number;
|
|
28088
|
+
readonly num_products_with_false_restricts_by_fs?: number;
|
|
28089
|
+
readonly daily_num_products_with_fs_result?: number;
|
|
28090
|
+
readonly daily_num_products_sellable_somewhere_by_fs?: number;
|
|
28091
|
+
readonly daily_num_products_restricted_somewhere_by_fs?: number;
|
|
28092
|
+
readonly daily_num_products_with_false_allows_by_fs?: number;
|
|
28093
|
+
readonly daily_num_products_with_false_restricts_by_fs?: number;
|
|
28094
|
+
}
|
|
28095
|
+
|
|
28096
|
+
interface RestrictionsAthenaDailyopsFsDeleted {
|
|
28097
|
+
readonly discriminator: 'restrictions_athena_dailyops_fs_deleted';
|
|
28098
|
+
readonly event_id: string;
|
|
28099
|
+
readonly timestamp: string;
|
|
28100
|
+
readonly id: string;
|
|
28101
|
+
}
|
|
28102
|
+
|
|
28103
|
+
interface RestrictionsAthenaDailyopsFsUpserted {
|
|
28104
|
+
readonly discriminator: 'restrictions_athena_dailyops_fs_upserted';
|
|
28105
|
+
readonly event_id: string;
|
|
28106
|
+
readonly timestamp: string;
|
|
28107
|
+
readonly restrictions_athena_dailyops_fs: io.flow.internal.v0.models.RestrictionsAthenaDailyopsFs;
|
|
28108
|
+
}
|
|
28109
|
+
|
|
28110
|
+
interface RestrictionsAthenaDailyopsPcPv {
|
|
28111
|
+
readonly id: string;
|
|
28112
|
+
readonly report_date: string;
|
|
28113
|
+
readonly intent_level: io.flow.internal.v0.enums.AthenaDailyopsIntentLevel;
|
|
28114
|
+
readonly num_orgs_setup_complete_with_pvs: number;
|
|
28115
|
+
readonly num_products_setup_complete_with_pvs: number;
|
|
28116
|
+
readonly num_orgs_transacting_with_pvs: number;
|
|
28117
|
+
readonly num_products_transacting_with_pvs: number;
|
|
28118
|
+
readonly num_orgs_setup_complete_with_pcs: number;
|
|
28119
|
+
readonly num_products_setup_complete_with_pcs: number;
|
|
28120
|
+
readonly num_orgs_transacting_with_pcs: number;
|
|
28121
|
+
readonly num_products_transacting_with_pcs: number;
|
|
28122
|
+
readonly oldest_pv_product_date_setup_complete?: string;
|
|
28123
|
+
readonly oldest_pv_product_date_transacting?: string;
|
|
28124
|
+
readonly oldest_pc_product_date_setup_complete?: string;
|
|
28125
|
+
readonly oldest_pc_product_date_transacting?: string;
|
|
28126
|
+
readonly oldest_insufficient_details_pv_active?: string;
|
|
28127
|
+
readonly oldest_insufficient_details_pv_transacting?: string;
|
|
28128
|
+
readonly num_pv_inflow_net_new: number;
|
|
28129
|
+
readonly num_pv_outflow_human_decisions: number;
|
|
28130
|
+
readonly num_pv_outflow_auto_review_decisions: number;
|
|
28131
|
+
readonly num_pv_outflow_side_effect_decisions: number;
|
|
28132
|
+
readonly num_pending_decisions_transacting: number;
|
|
28133
|
+
readonly pv_decisions_setup_complete: number;
|
|
28134
|
+
}
|
|
28135
|
+
|
|
28136
|
+
interface RestrictionsAthenaDailyopsPcPvDeleted {
|
|
28137
|
+
readonly discriminator: 'restrictions_athena_dailyops_pc_pv_deleted';
|
|
28138
|
+
readonly event_id: string;
|
|
28139
|
+
readonly timestamp: string;
|
|
28140
|
+
readonly id: string;
|
|
28141
|
+
}
|
|
28142
|
+
|
|
28143
|
+
interface RestrictionsAthenaDailyopsPcPvUpserted {
|
|
28144
|
+
readonly discriminator: 'restrictions_athena_dailyops_pc_pv_upserted';
|
|
28145
|
+
readonly event_id: string;
|
|
28146
|
+
readonly timestamp: string;
|
|
28147
|
+
readonly restrictions_athena_dailyops_pc_pv: io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPv;
|
|
28148
|
+
}
|
|
28149
|
+
|
|
27802
28150
|
interface RestrictionsDailyops {
|
|
27803
28151
|
readonly id: string;
|
|
27804
28152
|
readonly report_date: string;
|
|
@@ -27992,6 +28340,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27992
28340
|
readonly tax?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27993
28341
|
readonly duty?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27994
28342
|
readonly fees: io.flow.internal.v0.models.ReportingFees;
|
|
28343
|
+
readonly freight?: io.flow.internal.v0.models.ReportingFreight;
|
|
27995
28344
|
readonly conversion_rate: io.flow.internal.v0.models.ReportingConversionRates;
|
|
27996
28345
|
readonly payment_is: io.flow.internal.v0.models.PaymentIs;
|
|
27997
28346
|
readonly price_inclusivity?: io.flow.internal.v0.models.PriceInclusivity;
|
|
@@ -28236,6 +28585,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28236
28585
|
readonly include_unpublished?: boolean;
|
|
28237
28586
|
}
|
|
28238
28587
|
|
|
28588
|
+
interface ShopifyAdaptivePricingCoefficients {
|
|
28589
|
+
readonly id: string;
|
|
28590
|
+
readonly organization_id: string;
|
|
28591
|
+
readonly destination_coefficients: io.flow.shopify.markets.v0.models.ShopifyAdaptivePricingDestinationCoefficients[];
|
|
28592
|
+
}
|
|
28593
|
+
|
|
28594
|
+
interface ShopifyAdaptivePricingCoefficientsDeleted {
|
|
28595
|
+
readonly discriminator: 'shopify_adaptive_pricing_coefficients_deleted';
|
|
28596
|
+
readonly event_id: string;
|
|
28597
|
+
readonly timestamp: string;
|
|
28598
|
+
readonly organization: string;
|
|
28599
|
+
readonly id: string;
|
|
28600
|
+
}
|
|
28601
|
+
|
|
28602
|
+
interface ShopifyAdaptivePricingCoefficientsUpserted {
|
|
28603
|
+
readonly discriminator: 'shopify_adaptive_pricing_coefficients_upserted';
|
|
28604
|
+
readonly event_id: string;
|
|
28605
|
+
readonly timestamp: string;
|
|
28606
|
+
readonly organization: string;
|
|
28607
|
+
readonly shopify_adaptive_pricing_coefficients: io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficients;
|
|
28608
|
+
}
|
|
28609
|
+
|
|
28239
28610
|
interface ShopifyAddress {
|
|
28240
28611
|
readonly address1: string;
|
|
28241
28612
|
readonly city: string;
|
|
@@ -28640,6 +29011,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28640
29011
|
readonly weight_unit: io.flow.internal.v0.enums.ShopifyWeightUnit;
|
|
28641
29012
|
}
|
|
28642
29013
|
|
|
29014
|
+
interface ShopifyMerchantMarketCountry {
|
|
29015
|
+
readonly code: string;
|
|
29016
|
+
readonly actively_managing: boolean;
|
|
29017
|
+
}
|
|
29018
|
+
|
|
29019
|
+
interface ShopifyMerchantMarkets {
|
|
29020
|
+
readonly id: string;
|
|
29021
|
+
readonly organization_id: string;
|
|
29022
|
+
readonly countries: io.flow.internal.v0.models.ShopifyMerchantMarketCountry[];
|
|
29023
|
+
}
|
|
29024
|
+
|
|
29025
|
+
interface ShopifyMerchantMarketsDeleted {
|
|
29026
|
+
readonly discriminator: 'shopify_merchant_markets_deleted';
|
|
29027
|
+
readonly event_id: string;
|
|
29028
|
+
readonly timestamp: string;
|
|
29029
|
+
readonly organization: string;
|
|
29030
|
+
readonly id: string;
|
|
29031
|
+
}
|
|
29032
|
+
|
|
29033
|
+
interface ShopifyMerchantMarketsUpserted {
|
|
29034
|
+
readonly discriminator: 'shopify_merchant_markets_upserted';
|
|
29035
|
+
readonly event_id: string;
|
|
29036
|
+
readonly timestamp: string;
|
|
29037
|
+
readonly organization: string;
|
|
29038
|
+
readonly shopify_merchant_markets: io.flow.internal.v0.models.ShopifyMerchantMarkets;
|
|
29039
|
+
}
|
|
29040
|
+
|
|
28643
29041
|
interface ShopifyMerchantPlan {
|
|
28644
29042
|
readonly id: string;
|
|
28645
29043
|
readonly authorization: io.flow.payment.v0.models.AuthorizationReference;
|
|
@@ -30734,6 +31132,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30734
31132
|
| io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted
|
|
30735
31133
|
| io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted
|
|
30736
31134
|
| io.flow.internal.v0.models.ChannelOrderAcceptanceFailed
|
|
31135
|
+
| io.flow.internal.v0.models.ChannelShopStatisticsUpserted
|
|
31136
|
+
| io.flow.internal.v0.models.ChannelShopStatisticsDeleted
|
|
30737
31137
|
| io.flow.internal.v0.models.CommercialInvoiceInternalUpserted
|
|
30738
31138
|
| io.flow.internal.v0.models.CommercialInvoiceInternalDeleted
|
|
30739
31139
|
| io.flow.internal.v0.models.InternalChannelRateDeleted
|
|
@@ -30793,6 +31193,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30793
31193
|
| io.flow.internal.v0.models.ShippingCostDeleted
|
|
30794
31194
|
| io.flow.internal.v0.models.MorCostUpserted
|
|
30795
31195
|
| io.flow.internal.v0.models.MorCostDeleted
|
|
31196
|
+
| io.flow.internal.v0.models.FlatRateLabelReversalUpserted
|
|
31197
|
+
| io.flow.internal.v0.models.FlatRateLabelReversalDeleted
|
|
30796
31198
|
| io.flow.internal.v0.models.FraudReviewUpserted
|
|
30797
31199
|
| io.flow.internal.v0.models.FraudReviewDeleted
|
|
30798
31200
|
| io.flow.internal.v0.models.FraudPendingReviewUpserted
|
|
@@ -30849,6 +31251,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30849
31251
|
| io.flow.internal.v0.models.OrderValidationDeleted
|
|
30850
31252
|
| io.flow.internal.v0.models.LabelCreationJobUpserted
|
|
30851
31253
|
| io.flow.internal.v0.models.LabelCreationJobDeleted
|
|
31254
|
+
| io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted
|
|
31255
|
+
| io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted
|
|
30852
31256
|
| io.flow.internal.v0.models.LabelTrackingSummaryUpserted
|
|
30853
31257
|
| io.flow.internal.v0.models.LabelTrackingSummaryDeleted
|
|
30854
31258
|
| io.flow.internal.v0.models.LogisticsCapabilitiesUpserted
|
|
@@ -30937,12 +31341,18 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30937
31341
|
| io.flow.internal.v0.models.ScreeningStatusChangeDeleted
|
|
30938
31342
|
| io.flow.internal.v0.models.RestrictionsDailyopsUpserted
|
|
30939
31343
|
| io.flow.internal.v0.models.RestrictionsDailyopsDeleted
|
|
31344
|
+
| io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvUpserted
|
|
31345
|
+
| io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvDeleted
|
|
31346
|
+
| io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsUpserted
|
|
31347
|
+
| io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsDeleted
|
|
30940
31348
|
| io.flow.internal.v0.models.RestrictionRuleUpserted
|
|
30941
31349
|
| io.flow.internal.v0.models.RestrictionRuleDeleted
|
|
30942
31350
|
| io.flow.internal.v0.models.RestrictionRuleEffectUpserted
|
|
30943
31351
|
| io.flow.internal.v0.models.RestrictionRuleEffectDeleted
|
|
30944
31352
|
| io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted
|
|
30945
31353
|
| io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted
|
|
31354
|
+
| io.flow.internal.v0.models.PreonboardingMerchantUpserted
|
|
31355
|
+
| io.flow.internal.v0.models.PreonboardingMerchantDeleted
|
|
30946
31356
|
| io.flow.internal.v0.models.ShopifyHs10CodesUpserted
|
|
30947
31357
|
| io.flow.internal.v0.models.ShopifyHs10CodesDeleted
|
|
30948
31358
|
| io.flow.internal.v0.models.ShopifyMarketsOrderUpserted
|
|
@@ -30976,6 +31386,10 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30976
31386
|
| io.flow.internal.v0.models.ShopifyOrderTransactionDeleted
|
|
30977
31387
|
| io.flow.internal.v0.models.ShopifyTestOrderUpserted
|
|
30978
31388
|
| io.flow.internal.v0.models.ShopifyTestOrderDeleted
|
|
31389
|
+
| io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsUpserted
|
|
31390
|
+
| io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsDeleted
|
|
31391
|
+
| io.flow.internal.v0.models.ShopifyMerchantMarketsUpserted
|
|
31392
|
+
| io.flow.internal.v0.models.ShopifyMerchantMarketsDeleted
|
|
30979
31393
|
| io.flow.internal.v0.models.ShopifyProductCreateUpserted
|
|
30980
31394
|
| io.flow.internal.v0.models.ShopifyProductCreateDeleted
|
|
30981
31395
|
| io.flow.internal.v0.models.ShopifyProductUpdateUpserted
|
|
@@ -31020,6 +31434,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31020
31434
|
| io.flow.internal.v0.models.ChenglinItemDeleted
|
|
31021
31435
|
| io.flow.internal.v0.models.BojanaItemUpserted
|
|
31022
31436
|
| io.flow.internal.v0.models.BojanaItemDeleted
|
|
31437
|
+
| io.flow.internal.v0.models.RaveenaItemUpserted
|
|
31438
|
+
| io.flow.internal.v0.models.RaveenaItemDeleted
|
|
31023
31439
|
| io.flow.internal.v0.models.TrackingProcessingErrorUpserted
|
|
31024
31440
|
| io.flow.internal.v0.models.TrackingProcessingErrorDeleted
|
|
31025
31441
|
| io.flow.internal.v0.models.TrackingLabelEventUpsertedV2
|
|
@@ -31299,6 +31715,18 @@ export type AccountingPendingOrderMetadata =
|
|
|
31299
31715
|
export type AccountingReturnMetadata =
|
|
31300
31716
|
io.flow.internal.v0.models.AccountingReturnMetadata;
|
|
31301
31717
|
export type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
|
|
31718
|
+
export type AdaptivePricingDestinationUpdate =
|
|
31719
|
+
io.flow.internal.v0.models.AdaptivePricingDestinationUpdate;
|
|
31720
|
+
export type AdaptivePricingUpdate =
|
|
31721
|
+
io.flow.internal.v0.models.AdaptivePricingUpdate;
|
|
31722
|
+
export type AdaptiveShippingOrderGuarantee =
|
|
31723
|
+
io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
31724
|
+
export type AdaptiveShippingOrderGuaranteeDeleted =
|
|
31725
|
+
io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted;
|
|
31726
|
+
export type AdaptiveShippingOrderGuaranteeState =
|
|
31727
|
+
io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState;
|
|
31728
|
+
export type AdaptiveShippingOrderGuaranteeUpserted =
|
|
31729
|
+
io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted;
|
|
31302
31730
|
export type AdaptiveShippingRate =
|
|
31303
31731
|
io.flow.internal.v0.models.AdaptiveShippingRate;
|
|
31304
31732
|
export type AdaptiveShippingRateDeleted =
|
|
@@ -31422,6 +31850,8 @@ export type ApplePayAuthorizationPayload =
|
|
|
31422
31850
|
export type ApplicablePreferentialRate =
|
|
31423
31851
|
io.flow.internal.v0.enums.ApplicablePreferentialRate;
|
|
31424
31852
|
export type ApplyAtValueForm = io.flow.internal.v0.models.ApplyAtValueForm;
|
|
31853
|
+
export type AthenaDailyopsIntentLevel =
|
|
31854
|
+
io.flow.internal.v0.enums.AthenaDailyopsIntentLevel;
|
|
31425
31855
|
export type AttemptStatistics = io.flow.internal.v0.models.AttemptStatistics;
|
|
31426
31856
|
export type AttributeLabel = io.flow.internal.v0.models.AttributeLabel;
|
|
31427
31857
|
export type AttributeRule = io.flow.internal.v0.models.AttributeRule;
|
|
@@ -31820,6 +32250,12 @@ export type ChannelRateMetadataRate =
|
|
|
31820
32250
|
export type ChannelService = io.flow.internal.v0.enums.ChannelService;
|
|
31821
32251
|
export type ChannelShop = io.flow.internal.v0.models.ChannelShop;
|
|
31822
32252
|
export type ChannelShopForm = io.flow.internal.v0.models.ChannelShopForm;
|
|
32253
|
+
export type ChannelShopStatistics =
|
|
32254
|
+
io.flow.internal.v0.models.ChannelShopStatistics;
|
|
32255
|
+
export type ChannelShopStatisticsDeleted =
|
|
32256
|
+
io.flow.internal.v0.models.ChannelShopStatisticsDeleted;
|
|
32257
|
+
export type ChannelShopStatisticsUpserted =
|
|
32258
|
+
io.flow.internal.v0.models.ChannelShopStatisticsUpserted;
|
|
31823
32259
|
export type ChannelTransaction = io.flow.internal.v0.models.ChannelTransaction;
|
|
31824
32260
|
export type ChannelTransactionDeleted =
|
|
31825
32261
|
io.flow.internal.v0.models.ChannelTransactionDeleted;
|
|
@@ -32328,6 +32764,12 @@ export type FiservMerchantModificationForm =
|
|
|
32328
32764
|
export type FiservMerchantPutForm =
|
|
32329
32765
|
io.flow.internal.v0.models.FiservMerchantPutForm;
|
|
32330
32766
|
export type FlatRate = io.flow.internal.v0.models.FlatRate;
|
|
32767
|
+
export type FlatRateLabelReversal =
|
|
32768
|
+
io.flow.internal.v0.models.FlatRateLabelReversal;
|
|
32769
|
+
export type FlatRateLabelReversalDeleted =
|
|
32770
|
+
io.flow.internal.v0.models.FlatRateLabelReversalDeleted;
|
|
32771
|
+
export type FlatRateLabelReversalUpserted =
|
|
32772
|
+
io.flow.internal.v0.models.FlatRateLabelReversalUpserted;
|
|
32331
32773
|
export type FlatRateLabelTransaction =
|
|
32332
32774
|
io.flow.internal.v0.models.FlatRateLabelTransaction;
|
|
32333
32775
|
export type FlatRateLabelTransactionType =
|
|
@@ -32671,10 +33113,6 @@ export type LabelAliases = io.flow.internal.v0.models.LabelAliases;
|
|
|
32671
33113
|
export type LabelAssociation = io.flow.internal.v0.models.LabelAssociation;
|
|
32672
33114
|
export type LabelBillingStrategy =
|
|
32673
33115
|
io.flow.internal.v0.enums.LabelBillingStrategy;
|
|
32674
|
-
export type LabelCancellationError =
|
|
32675
|
-
io.flow.internal.v0.models.LabelCancellationError;
|
|
32676
|
-
export type LabelCancellationErrorCode =
|
|
32677
|
-
io.flow.internal.v0.enums.LabelCancellationErrorCode;
|
|
32678
33116
|
export type LabelCreationJob = io.flow.internal.v0.models.LabelCreationJob;
|
|
32679
33117
|
export type LabelCreationJobDeleted =
|
|
32680
33118
|
io.flow.internal.v0.models.LabelCreationJobDeleted;
|
|
@@ -32778,6 +33216,9 @@ export type LoyaltyProgramReward =
|
|
|
32778
33216
|
io.flow.internal.v0.models.LoyaltyProgramReward;
|
|
32779
33217
|
export type LoyaltyProgramRewards =
|
|
32780
33218
|
io.flow.internal.v0.models.LoyaltyProgramRewards;
|
|
33219
|
+
export type MaheshItem = io.flow.internal.v0.models.MaheshItem;
|
|
33220
|
+
export type MaheshItemForm = io.flow.internal.v0.models.MaheshItemForm;
|
|
33221
|
+
export type MaheshItemType = io.flow.internal.v0.enums.MaheshItemType;
|
|
32781
33222
|
export type MailClass = io.flow.internal.v0.enums.MailClass;
|
|
32782
33223
|
export type MainTransaction = io.flow.internal.v0.models.MainTransaction;
|
|
32783
33224
|
export type MainTransactionDeleted =
|
|
@@ -33314,6 +33755,10 @@ export type PreonboardingClassificationType =
|
|
|
33314
33755
|
io.flow.internal.v0.enums.PreonboardingClassificationType;
|
|
33315
33756
|
export type PreonboardingMerchant =
|
|
33316
33757
|
io.flow.internal.v0.models.PreonboardingMerchant;
|
|
33758
|
+
export type PreonboardingMerchantDeleted =
|
|
33759
|
+
io.flow.internal.v0.models.PreonboardingMerchantDeleted;
|
|
33760
|
+
export type PreonboardingMerchantUpserted =
|
|
33761
|
+
io.flow.internal.v0.models.PreonboardingMerchantUpserted;
|
|
33317
33762
|
export type PreonboardingRequestStatus =
|
|
33318
33763
|
io.flow.internal.v0.enums.PreonboardingRequestStatus;
|
|
33319
33764
|
export type PreonboardingSellabilityResult =
|
|
@@ -33516,8 +33961,11 @@ export type RatecardServiceFeesOverrideForm =
|
|
|
33516
33961
|
export type RatesChanged = io.flow.internal.v0.models.RatesChanged;
|
|
33517
33962
|
export type RatesNamesSummary = io.flow.internal.v0.models.RatesNamesSummary;
|
|
33518
33963
|
export type RaveenaItem = io.flow.internal.v0.models.RaveenaItem;
|
|
33964
|
+
export type RaveenaItemDeleted = io.flow.internal.v0.models.RaveenaItemDeleted;
|
|
33519
33965
|
export type RaveenaItemForm = io.flow.internal.v0.models.RaveenaItemForm;
|
|
33520
33966
|
export type RaveenaItemType = io.flow.internal.v0.enums.RaveenaItemType;
|
|
33967
|
+
export type RaveenaItemUpserted =
|
|
33968
|
+
io.flow.internal.v0.models.RaveenaItemUpserted;
|
|
33521
33969
|
export type RecordReference = io.flow.internal.v0.models.RecordReference;
|
|
33522
33970
|
export type Redirect = io.flow.internal.v0.models.Redirect;
|
|
33523
33971
|
export type RedirectActionCompleted =
|
|
@@ -33572,6 +34020,9 @@ export type ReportingDestination =
|
|
|
33572
34020
|
io.flow.internal.v0.models.ReportingDestination;
|
|
33573
34021
|
export type ReportingDetails = io.flow.internal.v0.models.ReportingDetails;
|
|
33574
34022
|
export type ReportingFees = io.flow.internal.v0.models.ReportingFees;
|
|
34023
|
+
export type ReportingFreight = io.flow.internal.v0.models.ReportingFreight;
|
|
34024
|
+
export type ReportingFreightGuaranteed =
|
|
34025
|
+
io.flow.internal.v0.models.ReportingFreightGuaranteed;
|
|
33575
34026
|
export type ReportingFulfillment =
|
|
33576
34027
|
io.flow.internal.v0.models.ReportingFulfillment;
|
|
33577
34028
|
export type ReportingFulfillmentHas =
|
|
@@ -33720,6 +34171,18 @@ export type RestrictionStateReviewStatus =
|
|
|
33720
34171
|
export type RestrictionStatus = io.flow.internal.v0.enums.RestrictionStatus;
|
|
33721
34172
|
export type RestrictionSummaryCounts =
|
|
33722
34173
|
io.flow.internal.v0.models.RestrictionSummaryCounts;
|
|
34174
|
+
export type RestrictionsAthenaDailyopsFs =
|
|
34175
|
+
io.flow.internal.v0.models.RestrictionsAthenaDailyopsFs;
|
|
34176
|
+
export type RestrictionsAthenaDailyopsFsDeleted =
|
|
34177
|
+
io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsDeleted;
|
|
34178
|
+
export type RestrictionsAthenaDailyopsFsUpserted =
|
|
34179
|
+
io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsUpserted;
|
|
34180
|
+
export type RestrictionsAthenaDailyopsPcPv =
|
|
34181
|
+
io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPv;
|
|
34182
|
+
export type RestrictionsAthenaDailyopsPcPvDeleted =
|
|
34183
|
+
io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvDeleted;
|
|
34184
|
+
export type RestrictionsAthenaDailyopsPcPvUpserted =
|
|
34185
|
+
io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvUpserted;
|
|
33723
34186
|
export type RestrictionsDailyops =
|
|
33724
34187
|
io.flow.internal.v0.models.RestrictionsDailyops;
|
|
33725
34188
|
export type RestrictionsDailyopsDeleted =
|
|
@@ -33812,6 +34275,12 @@ export type ShippingRateEstimateInternal =
|
|
|
33812
34275
|
io.flow.internal.v0.models.ShippingRateEstimateInternal;
|
|
33813
34276
|
export type ShippingRateEstimateRequestInternal =
|
|
33814
34277
|
io.flow.internal.v0.models.ShippingRateEstimateRequestInternal;
|
|
34278
|
+
export type ShopifyAdaptivePricingCoefficients =
|
|
34279
|
+
io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficients;
|
|
34280
|
+
export type ShopifyAdaptivePricingCoefficientsDeleted =
|
|
34281
|
+
io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsDeleted;
|
|
34282
|
+
export type ShopifyAdaptivePricingCoefficientsUpserted =
|
|
34283
|
+
io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsUpserted;
|
|
33815
34284
|
export type ShopifyAddress = io.flow.internal.v0.models.ShopifyAddress;
|
|
33816
34285
|
export type ShopifyCallbackError =
|
|
33817
34286
|
io.flow.internal.v0.models.ShopifyCallbackError;
|
|
@@ -33936,6 +34405,14 @@ export type ShopifyMarketsWebhookRegistrationUpserted =
|
|
|
33936
34405
|
io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted;
|
|
33937
34406
|
export type ShopifyMeasurements =
|
|
33938
34407
|
io.flow.internal.v0.models.ShopifyMeasurements;
|
|
34408
|
+
export type ShopifyMerchantMarketCountry =
|
|
34409
|
+
io.flow.internal.v0.models.ShopifyMerchantMarketCountry;
|
|
34410
|
+
export type ShopifyMerchantMarkets =
|
|
34411
|
+
io.flow.internal.v0.models.ShopifyMerchantMarkets;
|
|
34412
|
+
export type ShopifyMerchantMarketsDeleted =
|
|
34413
|
+
io.flow.internal.v0.models.ShopifyMerchantMarketsDeleted;
|
|
34414
|
+
export type ShopifyMerchantMarketsUpserted =
|
|
34415
|
+
io.flow.internal.v0.models.ShopifyMerchantMarketsUpserted;
|
|
33939
34416
|
export type ShopifyMerchantPlan =
|
|
33940
34417
|
io.flow.internal.v0.models.ShopifyMerchantPlan;
|
|
33941
34418
|
export type ShopifyMerchantPlanDeleted =
|