@flowio/types 11.24.109 → 11.24.110
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 +315 -31
- package/dist/api.d.ts +328 -94
- package/package.json +2 -2
- package/src/api-internal.ts +466 -38
- package/src/api.ts +514 -153
package/src/api-internal.ts
CHANGED
|
@@ -5920,7 +5920,8 @@ declare namespace io.flow.shopify.markets.internal.v0.enums {
|
|
|
5920
5920
|
| 'product_bundle'
|
|
5921
5921
|
| 'shopify_location'
|
|
5922
5922
|
| 'shopify_order'
|
|
5923
|
-
| 'sync_product_catalog'
|
|
5923
|
+
| 'sync_product_catalog'
|
|
5924
|
+
| 'shopify_webhook';
|
|
5924
5925
|
type ProductStatus = 'active' | 'archived' | 'draft';
|
|
5925
5926
|
type ShopifyMarketsDangerousGoods =
|
|
5926
5927
|
| 'aerosols'
|
|
@@ -7012,6 +7013,11 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
7012
7013
|
readonly weight?: io.flow.shopify.external.v0.models.GraphqlWeight;
|
|
7013
7014
|
}
|
|
7014
7015
|
|
|
7016
|
+
interface GraphqlMetafield {
|
|
7017
|
+
readonly key: string;
|
|
7018
|
+
readonly value: string;
|
|
7019
|
+
}
|
|
7020
|
+
|
|
7015
7021
|
interface GraphqlOption {
|
|
7016
7022
|
readonly id: string;
|
|
7017
7023
|
readonly values: string[];
|
|
@@ -7037,6 +7043,8 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
7037
7043
|
readonly createdAt: string;
|
|
7038
7044
|
readonly updatedAt: string;
|
|
7039
7045
|
readonly hasVariantsThatRequiresComponents?: boolean;
|
|
7046
|
+
readonly category?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
|
|
7047
|
+
readonly metafields?: io.flow.shopify.external.v0.models.GraphqlMetafield[];
|
|
7040
7048
|
}
|
|
7041
7049
|
|
|
7042
7050
|
interface GraphqlProductImage {
|
|
@@ -7060,6 +7068,11 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
7060
7068
|
readonly inventoryItem: io.flow.shopify.external.v0.models.GraphqlInventoryItem;
|
|
7061
7069
|
}
|
|
7062
7070
|
|
|
7071
|
+
interface GraphqlTaxonomyCategory {
|
|
7072
|
+
readonly name: string;
|
|
7073
|
+
readonly fullName: string;
|
|
7074
|
+
}
|
|
7075
|
+
|
|
7063
7076
|
interface GraphqlVariantImage {
|
|
7064
7077
|
readonly id: string;
|
|
7065
7078
|
}
|
|
@@ -7177,6 +7190,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
7177
7190
|
readonly created_at: string;
|
|
7178
7191
|
readonly updated_at: string;
|
|
7179
7192
|
readonly has_variants_that_requires_components?: boolean;
|
|
7193
|
+
readonly category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
7180
7194
|
}
|
|
7181
7195
|
|
|
7182
7196
|
interface ProductDelete {
|
|
@@ -11228,12 +11242,14 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11228
11242
|
readonly q: string;
|
|
11229
11243
|
readonly dimensions: io.flow.ratecard.v0.models.EstimatedDimensions;
|
|
11230
11244
|
readonly position: number;
|
|
11245
|
+
readonly block_bulk_update?: boolean;
|
|
11231
11246
|
}
|
|
11232
11247
|
|
|
11233
11248
|
interface DimensionEstimateForm {
|
|
11234
11249
|
readonly q: string;
|
|
11235
11250
|
readonly dimensions: io.flow.ratecard.v0.models.EstimatedDimensions;
|
|
11236
11251
|
readonly position?: number;
|
|
11252
|
+
readonly block_bulk_update?: boolean;
|
|
11237
11253
|
}
|
|
11238
11254
|
|
|
11239
11255
|
interface DimensionEstimateVersion {
|
|
@@ -12460,7 +12476,71 @@ declare namespace io.flow.reference.v0.models {
|
|
|
12460
12476
|
}
|
|
12461
12477
|
}
|
|
12462
12478
|
|
|
12479
|
+
declare namespace io.flow.product.v0.models {
|
|
12480
|
+
interface Product {
|
|
12481
|
+
readonly organization_id: string;
|
|
12482
|
+
readonly number: string;
|
|
12483
|
+
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
12484
|
+
readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
12485
|
+
readonly item_numbers: string[];
|
|
12486
|
+
readonly updated_at: string;
|
|
12487
|
+
readonly deleted_at?: string;
|
|
12488
|
+
}
|
|
12489
|
+
|
|
12490
|
+
interface ProductTaxonomyCategory {
|
|
12491
|
+
readonly name: string;
|
|
12492
|
+
readonly full_name: string;
|
|
12493
|
+
}
|
|
12494
|
+
|
|
12495
|
+
interface ProductTaxonomyData {
|
|
12496
|
+
readonly key: string;
|
|
12497
|
+
readonly value: string[];
|
|
12498
|
+
}
|
|
12499
|
+
}
|
|
12500
|
+
|
|
12463
12501
|
declare namespace io.flow.tracking.v0.enums {
|
|
12502
|
+
type SubstatusCode =
|
|
12503
|
+
| 'Delivered_001'
|
|
12504
|
+
| 'Delivered_002'
|
|
12505
|
+
| 'Delivered_003'
|
|
12506
|
+
| 'Delivered_004'
|
|
12507
|
+
| 'AvailableForPickup_001'
|
|
12508
|
+
| 'Exception_001'
|
|
12509
|
+
| 'Exception_002'
|
|
12510
|
+
| 'Exception_003'
|
|
12511
|
+
| 'Exception_004'
|
|
12512
|
+
| 'Exception_005'
|
|
12513
|
+
| 'Exception_006'
|
|
12514
|
+
| 'Exception_007'
|
|
12515
|
+
| 'Exception_008'
|
|
12516
|
+
| 'Exception_009'
|
|
12517
|
+
| 'Exception_010'
|
|
12518
|
+
| 'Exception_011'
|
|
12519
|
+
| 'Exception_012'
|
|
12520
|
+
| 'Exception_013'
|
|
12521
|
+
| 'AttemptFail_001'
|
|
12522
|
+
| 'AttemptFail_002'
|
|
12523
|
+
| 'AttemptFail_003'
|
|
12524
|
+
| 'InTransit_001'
|
|
12525
|
+
| 'InTransit_002'
|
|
12526
|
+
| 'InTransit_003'
|
|
12527
|
+
| 'InTransit_004'
|
|
12528
|
+
| 'InTransit_005'
|
|
12529
|
+
| 'InTransit_006'
|
|
12530
|
+
| 'InTransit_007'
|
|
12531
|
+
| 'InTransit_008'
|
|
12532
|
+
| 'InTransit_009'
|
|
12533
|
+
| 'InfoReceived_001'
|
|
12534
|
+
| 'OutForDelivery_001'
|
|
12535
|
+
| 'OutForDelivery_003'
|
|
12536
|
+
| 'OutForDelivery_004'
|
|
12537
|
+
| 'Pending_001'
|
|
12538
|
+
| 'Pending_002'
|
|
12539
|
+
| 'Pending_003'
|
|
12540
|
+
| 'Pending_004'
|
|
12541
|
+
| 'Pending_005'
|
|
12542
|
+
| 'Pending_006'
|
|
12543
|
+
| 'Expired_001';
|
|
12464
12544
|
type TrackingStatus =
|
|
12465
12545
|
| 'label_created'
|
|
12466
12546
|
| 'pending'
|
|
@@ -13573,7 +13653,10 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
13573
13653
|
| 'virtual_card_capture'
|
|
13574
13654
|
| 'virtual_card_refund'
|
|
13575
13655
|
| 'failed_payout'
|
|
13576
|
-
| 'tax_refund'
|
|
13656
|
+
| 'tax_refund'
|
|
13657
|
+
| 'order_fx'
|
|
13658
|
+
| 'ge_revenue_share'
|
|
13659
|
+
| 'tax_duty_delta';
|
|
13577
13660
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
13578
13661
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
13579
13662
|
}
|
|
@@ -15485,6 +15568,40 @@ declare namespace io.flow.fraud.v0.unions {
|
|
|
15485
15568
|
| io.flow.fraud.v0.models.FraudPaymentRequestReference;
|
|
15486
15569
|
}
|
|
15487
15570
|
|
|
15571
|
+
declare namespace io.flow.sellability.v0.enums {
|
|
15572
|
+
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
15573
|
+
}
|
|
15574
|
+
|
|
15575
|
+
declare namespace io.flow.sellability.v0.models {
|
|
15576
|
+
interface ProductSellability {
|
|
15577
|
+
readonly organization_id: string;
|
|
15578
|
+
readonly product_id?: string;
|
|
15579
|
+
readonly product_correlation_id: string;
|
|
15580
|
+
readonly restricted_regions: io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
15581
|
+
readonly in_review_regions: io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
15582
|
+
}
|
|
15583
|
+
|
|
15584
|
+
interface ProductSellabilityForm {
|
|
15585
|
+
readonly organization_id: string;
|
|
15586
|
+
readonly product_id?: string;
|
|
15587
|
+
readonly product_correlation_id: string;
|
|
15588
|
+
readonly name: string;
|
|
15589
|
+
readonly price: io.flow.sellability.v0.models.ProductSellabilityPrice;
|
|
15590
|
+
readonly description: string;
|
|
15591
|
+
readonly taxonomy_category: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
15592
|
+
}
|
|
15593
|
+
|
|
15594
|
+
interface ProductSellabilityPrice {
|
|
15595
|
+
readonly currency: string;
|
|
15596
|
+
readonly amount: number;
|
|
15597
|
+
}
|
|
15598
|
+
|
|
15599
|
+
interface SellablilityRegionResult {
|
|
15600
|
+
readonly type: io.flow.sellability.v0.enums.RuleEffectType;
|
|
15601
|
+
readonly regions: string[];
|
|
15602
|
+
}
|
|
15603
|
+
}
|
|
15604
|
+
|
|
15488
15605
|
declare namespace io.flow.currency.v0.models {
|
|
15489
15606
|
interface Rate {
|
|
15490
15607
|
readonly id: string;
|
|
@@ -15810,6 +15927,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
15810
15927
|
| 'checkout_payments_api'
|
|
15811
15928
|
| 'classic_authorise_api';
|
|
15812
15929
|
type AldoItemType = 'physical' | 'digital';
|
|
15930
|
+
type AnshItemType = 'physical' | 'digital';
|
|
15813
15931
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
15814
15932
|
type ApiCallReferenceId =
|
|
15815
15933
|
| 'duty_rates_data_event'
|
|
@@ -16044,8 +16162,11 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16044
16162
|
| 'duty'
|
|
16045
16163
|
| 'trueup'
|
|
16046
16164
|
| 'carrier_charge'
|
|
16165
|
+
| 'order_fx'
|
|
16047
16166
|
| 'tax_refund'
|
|
16048
|
-
| 'duty_refund'
|
|
16167
|
+
| 'duty_refund'
|
|
16168
|
+
| 'ge_revenue_share'
|
|
16169
|
+
| 'tax_duty_delta';
|
|
16049
16170
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
16050
16171
|
type CalculatorEngine =
|
|
16051
16172
|
| 'dtce_with_deminimis'
|
|
@@ -16131,7 +16252,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16131
16252
|
| 'duties_fx_surcharge'
|
|
16132
16253
|
| 'electronic_export_information_surcharge'
|
|
16133
16254
|
| 'additional_handling'
|
|
16134
|
-
| 'large_package_surcharge'
|
|
16255
|
+
| 'large_package_surcharge'
|
|
16256
|
+
| 'peak_surcharge';
|
|
16135
16257
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
16136
16258
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
16137
16259
|
type CheckoutAssetType = 'stylesheet' | 'javascript';
|
|
@@ -16233,8 +16355,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16233
16355
|
| 'adyen_refund_upserted'
|
|
16234
16356
|
| 'adyen_dispute_upserted'
|
|
16235
16357
|
| 'adyen_dispute_deleted'
|
|
16236
|
-
| 'aldo_item_upserted'
|
|
16237
|
-
| 'aldo_item_deleted'
|
|
16238
16358
|
| 'fulfillment_upserted'
|
|
16239
16359
|
| 'fulfillment_deleted'
|
|
16240
16360
|
| 'merchant_upserted'
|
|
@@ -16399,7 +16519,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16399
16519
|
| 'harmonized_items_hs6_export'
|
|
16400
16520
|
| 'unharmonized_items_export'
|
|
16401
16521
|
| 'dutied_items_export'
|
|
16402
|
-
| 'tariff_codes_export'
|
|
16403
16522
|
| 'harmonization_phrase_suggestion_request_import'
|
|
16404
16523
|
| 'harmonization_codes_import'
|
|
16405
16524
|
| 'item_classification_created'
|
|
@@ -16525,6 +16644,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16525
16644
|
| 'screening_status_change_deleted'
|
|
16526
16645
|
| 'restrictions_dailyops_upserted'
|
|
16527
16646
|
| 'restrictions_dailyops_deleted'
|
|
16647
|
+
| 'restriction_rule_upserted'
|
|
16648
|
+
| 'restriction_rule_deleted'
|
|
16649
|
+
| 'restriction_rule_effect_upserted'
|
|
16650
|
+
| 'restriction_rule_effect_deleted'
|
|
16528
16651
|
| 'shopify_shop_upserted'
|
|
16529
16652
|
| 'shopify_shop_deleted'
|
|
16530
16653
|
| 'shopify_experience_short_id_upserted'
|
|
@@ -16550,6 +16673,18 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16550
16673
|
| 'shopify_incoterm_summary_error_published'
|
|
16551
16674
|
| 'shopify_markets_best_selling_product_upserted'
|
|
16552
16675
|
| 'shopify_markets_best_selling_product_deleted'
|
|
16676
|
+
| 'shopify_product_create_upserted'
|
|
16677
|
+
| 'shopify_product_create_deleted'
|
|
16678
|
+
| 'shopify_product_update_upserted'
|
|
16679
|
+
| 'shopify_product_update_deleted'
|
|
16680
|
+
| 'shopify_product_delete_upserted'
|
|
16681
|
+
| 'shopify_product_delete_deleted'
|
|
16682
|
+
| 'shopify_inventory_item_create_upserted'
|
|
16683
|
+
| 'shopify_inventory_item_create_deleted'
|
|
16684
|
+
| 'shopify_inventory_item_update_upserted'
|
|
16685
|
+
| 'shopify_inventory_item_update_deleted'
|
|
16686
|
+
| 'shopify_inventory_item_delete_upserted'
|
|
16687
|
+
| 'shopify_inventory_item_delete_deleted'
|
|
16553
16688
|
| 'shopify_monitoring_order_monitor_event_upserted'
|
|
16554
16689
|
| 'shopify_monitoring_order_monitor_event_deleted'
|
|
16555
16690
|
| 'shopify_order_fulfillments_snapshot_upserted'
|
|
@@ -16624,7 +16759,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16624
16759
|
| 'product_bundle'
|
|
16625
16760
|
| 'shopify_location'
|
|
16626
16761
|
| 'shopify_order'
|
|
16627
|
-
| 'sync_product_catalog'
|
|
16762
|
+
| 'sync_product_catalog'
|
|
16763
|
+
| 'shopify_webhook';
|
|
16628
16764
|
type HarmonizationDecisionSource =
|
|
16629
16765
|
| 'human'
|
|
16630
16766
|
| 'legacy_model'
|
|
@@ -16652,6 +16788,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16652
16788
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
16653
16789
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
16654
16790
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
16791
|
+
type LabelEventSource = 'aftership' | 'carrier' | 'flow';
|
|
16655
16792
|
type LabelRequestErrorHandlingResponsibility =
|
|
16656
16793
|
| 'merchant'
|
|
16657
16794
|
| 'merchant_integration'
|
|
@@ -17020,7 +17157,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17020
17157
|
| 'vat'
|
|
17021
17158
|
| 'duty';
|
|
17022
17159
|
type ShopifyPromotionStatus = 'active' | 'inactive';
|
|
17023
|
-
type ShopifyService = 'payment' | 'duty_tax_calculator';
|
|
17160
|
+
type ShopifyService = 'payment' | 'duty_tax_calculator' | 'sellability';
|
|
17024
17161
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
17025
17162
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
17026
17163
|
type SnoozeSourceType = 'task' | 'invariant';
|
|
@@ -17805,13 +17942,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17805
17942
|
readonly added_on: string;
|
|
17806
17943
|
}
|
|
17807
17944
|
|
|
17808
|
-
interface AldoItemDeleted {
|
|
17809
|
-
readonly discriminator: 'aldo_item_deleted';
|
|
17810
|
-
readonly event_id: string;
|
|
17811
|
-
readonly timestamp: string;
|
|
17812
|
-
readonly id: string;
|
|
17813
|
-
}
|
|
17814
|
-
|
|
17815
17945
|
interface AldoItemForm {
|
|
17816
17946
|
readonly number: string;
|
|
17817
17947
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -17820,13 +17950,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17820
17950
|
readonly added_on: string;
|
|
17821
17951
|
}
|
|
17822
17952
|
|
|
17823
|
-
interface AldoItemUpserted {
|
|
17824
|
-
readonly discriminator: 'aldo_item_upserted';
|
|
17825
|
-
readonly event_id: string;
|
|
17826
|
-
readonly timestamp: string;
|
|
17827
|
-
readonly item: io.flow.internal.v0.models.AldoItem;
|
|
17828
|
-
}
|
|
17829
|
-
|
|
17830
17953
|
interface AlertErrorSummary {
|
|
17831
17954
|
readonly event_id: number;
|
|
17832
17955
|
readonly error: string;
|
|
@@ -17877,6 +18000,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17877
18000
|
readonly labels: Record<string, string[]>;
|
|
17878
18001
|
}
|
|
17879
18002
|
|
|
18003
|
+
interface AnshItem {
|
|
18004
|
+
readonly id: string;
|
|
18005
|
+
readonly number: string;
|
|
18006
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
18007
|
+
readonly description?: string;
|
|
18008
|
+
readonly type: io.flow.internal.v0.enums.AnshItemType;
|
|
18009
|
+
readonly added_on: string;
|
|
18010
|
+
}
|
|
18011
|
+
|
|
18012
|
+
interface AnshItemForm {
|
|
18013
|
+
readonly number: string;
|
|
18014
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
18015
|
+
readonly description?: string;
|
|
18016
|
+
readonly type: io.flow.internal.v0.enums.AnshItemType;
|
|
18017
|
+
readonly added_on: string;
|
|
18018
|
+
}
|
|
18019
|
+
|
|
17880
18020
|
interface ApmContent {
|
|
17881
18021
|
readonly processor_description: io.flow.internal.v0.unions.ContentItem;
|
|
17882
18022
|
}
|
|
@@ -21916,6 +22056,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21916
22056
|
readonly transaction_created_at: string;
|
|
21917
22057
|
}
|
|
21918
22058
|
|
|
22059
|
+
interface GeRevenueShareTransaction {
|
|
22060
|
+
readonly discriminator: 'ge_revenue_share_transaction';
|
|
22061
|
+
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
22062
|
+
readonly ge_revenue_share: io.flow.internal.v0.models.Fee;
|
|
22063
|
+
readonly id: string;
|
|
22064
|
+
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
22065
|
+
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
22066
|
+
readonly posted_at?: string;
|
|
22067
|
+
readonly value: io.flow.common.v0.models.Price;
|
|
22068
|
+
readonly description: string;
|
|
22069
|
+
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
22070
|
+
readonly created_at: string;
|
|
22071
|
+
}
|
|
22072
|
+
|
|
21919
22073
|
interface GenerateLoadMultipleOrgs {
|
|
21920
22074
|
readonly discriminator: 'generate_load_multiple_orgs';
|
|
21921
22075
|
readonly organization_ids: string[];
|
|
@@ -23282,6 +23436,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23282
23436
|
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
23283
23437
|
readonly value: io.flow.common.v0.models.Price;
|
|
23284
23438
|
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
23439
|
+
readonly paid_at?: string;
|
|
23285
23440
|
readonly posted_at?: string;
|
|
23286
23441
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
23287
23442
|
readonly created_at: string;
|
|
@@ -24111,6 +24266,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24111
24266
|
readonly center?: io.flow.fulfillment.v0.models.CenterSummary;
|
|
24112
24267
|
}
|
|
24113
24268
|
|
|
24269
|
+
interface OrderFxTransaction {
|
|
24270
|
+
readonly discriminator: 'order_fx_transaction';
|
|
24271
|
+
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
24272
|
+
readonly fx: io.flow.internal.v0.models.Fee;
|
|
24273
|
+
readonly id: string;
|
|
24274
|
+
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
24275
|
+
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
24276
|
+
readonly posted_at?: string;
|
|
24277
|
+
readonly value: io.flow.common.v0.models.Price;
|
|
24278
|
+
readonly description: string;
|
|
24279
|
+
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
24280
|
+
readonly created_at: string;
|
|
24281
|
+
}
|
|
24282
|
+
|
|
24114
24283
|
interface OrderNote {
|
|
24115
24284
|
readonly id: string;
|
|
24116
24285
|
readonly note: string;
|
|
@@ -26708,6 +26877,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26708
26877
|
readonly negative_keywords: string[];
|
|
26709
26878
|
readonly value_threshold_usd?: number;
|
|
26710
26879
|
readonly auto_review_criteria?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
26880
|
+
readonly effects?: string[];
|
|
26711
26881
|
}
|
|
26712
26882
|
|
|
26713
26883
|
interface RestrictionRuleDecisionForm {
|
|
@@ -26716,6 +26886,40 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26716
26886
|
readonly product_id: string;
|
|
26717
26887
|
}
|
|
26718
26888
|
|
|
26889
|
+
interface RestrictionRuleDeleted {
|
|
26890
|
+
readonly discriminator: 'restriction_rule_deleted';
|
|
26891
|
+
readonly event_id: string;
|
|
26892
|
+
readonly timestamp: string;
|
|
26893
|
+
readonly id: string;
|
|
26894
|
+
}
|
|
26895
|
+
|
|
26896
|
+
interface RestrictionRuleEffect {
|
|
26897
|
+
readonly id: string;
|
|
26898
|
+
readonly effect: io.flow.sellability.v0.enums.RuleEffectType;
|
|
26899
|
+
readonly regions: string[];
|
|
26900
|
+
readonly description?: string;
|
|
26901
|
+
}
|
|
26902
|
+
|
|
26903
|
+
interface RestrictionRuleEffectDeleted {
|
|
26904
|
+
readonly discriminator: 'restriction_rule_effect_deleted';
|
|
26905
|
+
readonly event_id: string;
|
|
26906
|
+
readonly timestamp: string;
|
|
26907
|
+
readonly id: string;
|
|
26908
|
+
}
|
|
26909
|
+
|
|
26910
|
+
interface RestrictionRuleEffectForm {
|
|
26911
|
+
readonly effect: io.flow.sellability.v0.enums.RuleEffectType;
|
|
26912
|
+
readonly regions: string[];
|
|
26913
|
+
readonly description?: string;
|
|
26914
|
+
}
|
|
26915
|
+
|
|
26916
|
+
interface RestrictionRuleEffectUpserted {
|
|
26917
|
+
readonly discriminator: 'restriction_rule_effect_upserted';
|
|
26918
|
+
readonly event_id: string;
|
|
26919
|
+
readonly timestamp: string;
|
|
26920
|
+
readonly restriction_rule_effect: io.flow.internal.v0.models.RestrictionRuleEffect;
|
|
26921
|
+
}
|
|
26922
|
+
|
|
26719
26923
|
interface RestrictionRuleForm {
|
|
26720
26924
|
readonly name: string;
|
|
26721
26925
|
readonly description: string;
|
|
@@ -26725,6 +26929,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26725
26929
|
readonly negative_keywords: string[];
|
|
26726
26930
|
readonly value_threshold_usd?: number;
|
|
26727
26931
|
readonly auto_review_criteria?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
26932
|
+
readonly effects?: string[];
|
|
26728
26933
|
}
|
|
26729
26934
|
|
|
26730
26935
|
interface RestrictionRuleMetadata {
|
|
@@ -26746,6 +26951,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26746
26951
|
readonly description: string;
|
|
26747
26952
|
}
|
|
26748
26953
|
|
|
26954
|
+
interface RestrictionRuleUpserted {
|
|
26955
|
+
readonly discriminator: 'restriction_rule_upserted';
|
|
26956
|
+
readonly event_id: string;
|
|
26957
|
+
readonly timestamp: string;
|
|
26958
|
+
readonly restriction_rule: io.flow.internal.v0.models.RestrictionRule;
|
|
26959
|
+
}
|
|
26960
|
+
|
|
26749
26961
|
interface RestrictionStatusMetadata {
|
|
26750
26962
|
readonly status: io.flow.internal.v0.enums.RestrictionStatus;
|
|
26751
26963
|
readonly count: number;
|
|
@@ -27075,6 +27287,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27075
27287
|
readonly customer_id: string;
|
|
27076
27288
|
}
|
|
27077
27289
|
|
|
27290
|
+
interface ShawnRoundtableWorkshopRate {
|
|
27291
|
+
readonly origin_country: string;
|
|
27292
|
+
readonly destination_country: string;
|
|
27293
|
+
readonly weight: number;
|
|
27294
|
+
readonly amount: number;
|
|
27295
|
+
}
|
|
27296
|
+
|
|
27078
27297
|
interface ShippedItemValue {
|
|
27079
27298
|
readonly item: io.flow.common.v0.models.CatalogItemReference;
|
|
27080
27299
|
readonly taxes: io.flow.common.v0.models.PriceWithBase;
|
|
@@ -27222,6 +27441,69 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27222
27441
|
readonly data: io.flow.internal.v0.models.ShopifyIncotermSummaryErrorData;
|
|
27223
27442
|
}
|
|
27224
27443
|
|
|
27444
|
+
interface ShopifyInventoryItemCreateDeleted {
|
|
27445
|
+
readonly discriminator: 'shopify_inventory_item_create_deleted';
|
|
27446
|
+
readonly event_id: string;
|
|
27447
|
+
readonly timestamp: string;
|
|
27448
|
+
readonly organization: string;
|
|
27449
|
+
readonly id: string;
|
|
27450
|
+
}
|
|
27451
|
+
|
|
27452
|
+
interface ShopifyInventoryItemCreateUpserted {
|
|
27453
|
+
readonly discriminator: 'shopify_inventory_item_create_upserted';
|
|
27454
|
+
readonly event_id: string;
|
|
27455
|
+
readonly timestamp: string;
|
|
27456
|
+
readonly organization: string;
|
|
27457
|
+
readonly shopify_inventory_item_create: io.flow.internal.v0.models.ShopifyInventoryItemCreateWebhookEvent;
|
|
27458
|
+
}
|
|
27459
|
+
|
|
27460
|
+
interface ShopifyInventoryItemCreateWebhookEvent {
|
|
27461
|
+
readonly id: string;
|
|
27462
|
+
readonly inventory_item: io.flow.shopify.markets.v0.models.ShopifyInventoryItem;
|
|
27463
|
+
}
|
|
27464
|
+
|
|
27465
|
+
interface ShopifyInventoryItemDeleteDeleted {
|
|
27466
|
+
readonly discriminator: 'shopify_inventory_item_delete_deleted';
|
|
27467
|
+
readonly event_id: string;
|
|
27468
|
+
readonly timestamp: string;
|
|
27469
|
+
readonly organization: string;
|
|
27470
|
+
readonly id: string;
|
|
27471
|
+
}
|
|
27472
|
+
|
|
27473
|
+
interface ShopifyInventoryItemDeleteUpserted {
|
|
27474
|
+
readonly discriminator: 'shopify_inventory_item_delete_upserted';
|
|
27475
|
+
readonly event_id: string;
|
|
27476
|
+
readonly timestamp: string;
|
|
27477
|
+
readonly organization: string;
|
|
27478
|
+
readonly shopify_inventory_item_delete: io.flow.internal.v0.models.ShopifyInventoryItemDeleteWebhookEvent;
|
|
27479
|
+
}
|
|
27480
|
+
|
|
27481
|
+
interface ShopifyInventoryItemDeleteWebhookEvent {
|
|
27482
|
+
readonly id: string;
|
|
27483
|
+
readonly inventory_item_delete: io.flow.shopify.external.v0.models.ShopifyInventoryItemDelete;
|
|
27484
|
+
}
|
|
27485
|
+
|
|
27486
|
+
interface ShopifyInventoryItemUpdateDeleted {
|
|
27487
|
+
readonly discriminator: 'shopify_inventory_item_update_deleted';
|
|
27488
|
+
readonly event_id: string;
|
|
27489
|
+
readonly timestamp: string;
|
|
27490
|
+
readonly organization: string;
|
|
27491
|
+
readonly id: string;
|
|
27492
|
+
}
|
|
27493
|
+
|
|
27494
|
+
interface ShopifyInventoryItemUpdateUpserted {
|
|
27495
|
+
readonly discriminator: 'shopify_inventory_item_update_upserted';
|
|
27496
|
+
readonly event_id: string;
|
|
27497
|
+
readonly timestamp: string;
|
|
27498
|
+
readonly organization: string;
|
|
27499
|
+
readonly shopify_inventory_item_update: io.flow.internal.v0.models.ShopifyInventoryItemUpdateWebhookEvent;
|
|
27500
|
+
}
|
|
27501
|
+
|
|
27502
|
+
interface ShopifyInventoryItemUpdateWebhookEvent {
|
|
27503
|
+
readonly id: string;
|
|
27504
|
+
readonly inventory_item: io.flow.shopify.markets.v0.models.ShopifyInventoryItem;
|
|
27505
|
+
}
|
|
27506
|
+
|
|
27225
27507
|
interface ShopifyMarketsBestSellingProduct {
|
|
27226
27508
|
readonly id: string;
|
|
27227
27509
|
}
|
|
@@ -27626,6 +27908,69 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27626
27908
|
readonly shopify_product_bundle: io.flow.internal.v0.models.ShopifyProductBundle;
|
|
27627
27909
|
}
|
|
27628
27910
|
|
|
27911
|
+
interface ShopifyProductCreateDeleted {
|
|
27912
|
+
readonly discriminator: 'shopify_product_create_deleted';
|
|
27913
|
+
readonly event_id: string;
|
|
27914
|
+
readonly timestamp: string;
|
|
27915
|
+
readonly organization: string;
|
|
27916
|
+
readonly id: string;
|
|
27917
|
+
}
|
|
27918
|
+
|
|
27919
|
+
interface ShopifyProductCreateUpserted {
|
|
27920
|
+
readonly discriminator: 'shopify_product_create_upserted';
|
|
27921
|
+
readonly event_id: string;
|
|
27922
|
+
readonly timestamp: string;
|
|
27923
|
+
readonly organization: string;
|
|
27924
|
+
readonly shopify_product_create: io.flow.internal.v0.models.ShopifyProductCreateWebhookEvent;
|
|
27925
|
+
}
|
|
27926
|
+
|
|
27927
|
+
interface ShopifyProductCreateWebhookEvent {
|
|
27928
|
+
readonly id: string;
|
|
27929
|
+
readonly product: io.flow.shopify.external.v0.models.Product;
|
|
27930
|
+
}
|
|
27931
|
+
|
|
27932
|
+
interface ShopifyProductDeleteDeleted {
|
|
27933
|
+
readonly discriminator: 'shopify_product_delete_deleted';
|
|
27934
|
+
readonly event_id: string;
|
|
27935
|
+
readonly timestamp: string;
|
|
27936
|
+
readonly organization: string;
|
|
27937
|
+
readonly id: string;
|
|
27938
|
+
}
|
|
27939
|
+
|
|
27940
|
+
interface ShopifyProductDeleteUpserted {
|
|
27941
|
+
readonly discriminator: 'shopify_product_delete_upserted';
|
|
27942
|
+
readonly event_id: string;
|
|
27943
|
+
readonly timestamp: string;
|
|
27944
|
+
readonly organization: string;
|
|
27945
|
+
readonly shopify_product_delete: io.flow.internal.v0.models.ShopifyProductDeleteWebhookEvent;
|
|
27946
|
+
}
|
|
27947
|
+
|
|
27948
|
+
interface ShopifyProductDeleteWebhookEvent {
|
|
27949
|
+
readonly id: string;
|
|
27950
|
+
readonly product_delete: io.flow.shopify.external.v0.models.ProductDelete;
|
|
27951
|
+
}
|
|
27952
|
+
|
|
27953
|
+
interface ShopifyProductUpdateDeleted {
|
|
27954
|
+
readonly discriminator: 'shopify_product_update_deleted';
|
|
27955
|
+
readonly event_id: string;
|
|
27956
|
+
readonly timestamp: string;
|
|
27957
|
+
readonly organization: string;
|
|
27958
|
+
readonly id: string;
|
|
27959
|
+
}
|
|
27960
|
+
|
|
27961
|
+
interface ShopifyProductUpdateUpserted {
|
|
27962
|
+
readonly discriminator: 'shopify_product_update_upserted';
|
|
27963
|
+
readonly event_id: string;
|
|
27964
|
+
readonly timestamp: string;
|
|
27965
|
+
readonly organization: string;
|
|
27966
|
+
readonly shopify_product_update: io.flow.internal.v0.models.ShopifyProductUpdateWebhookEvent;
|
|
27967
|
+
}
|
|
27968
|
+
|
|
27969
|
+
interface ShopifyProductUpdateWebhookEvent {
|
|
27970
|
+
readonly id: string;
|
|
27971
|
+
readonly product: io.flow.shopify.external.v0.models.Product;
|
|
27972
|
+
}
|
|
27973
|
+
|
|
27629
27974
|
interface ShopifyProductWrapper {
|
|
27630
27975
|
readonly shopify_product: io.flow.shopify.external.v0.models.Product;
|
|
27631
27976
|
readonly deleted_at?: string;
|
|
@@ -27748,6 +28093,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27748
28093
|
readonly shop_id: string;
|
|
27749
28094
|
}
|
|
27750
28095
|
|
|
28096
|
+
interface ShopifyStripeEvent {
|
|
28097
|
+
readonly id: string;
|
|
28098
|
+
readonly request?: any /*object*/;
|
|
28099
|
+
}
|
|
28100
|
+
|
|
27751
28101
|
interface ShopifyWebhook {
|
|
27752
28102
|
readonly id: string;
|
|
27753
28103
|
readonly shop_id: string;
|
|
@@ -28298,14 +28648,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28298
28648
|
readonly duties: Record<string, io.flow.internal.v0.models.Duties>;
|
|
28299
28649
|
}
|
|
28300
28650
|
|
|
28301
|
-
interface TariffCodesExport {
|
|
28302
|
-
readonly discriminator: 'tariff_codes_export';
|
|
28303
|
-
readonly event_id: string;
|
|
28304
|
-
readonly timestamp: string;
|
|
28305
|
-
readonly organization: string;
|
|
28306
|
-
readonly export_id: string;
|
|
28307
|
-
}
|
|
28308
|
-
|
|
28309
28651
|
interface TariffEligibility {
|
|
28310
28652
|
readonly id: string;
|
|
28311
28653
|
readonly data: io.flow.internal.v0.unions.TariffEligibilityData;
|
|
@@ -28404,6 +28746,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28404
28746
|
readonly category_code?: string;
|
|
28405
28747
|
}
|
|
28406
28748
|
|
|
28749
|
+
interface TaxDutyDeltaTransaction {
|
|
28750
|
+
readonly discriminator: 'tax_duty_delta_transaction';
|
|
28751
|
+
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
28752
|
+
readonly id: string;
|
|
28753
|
+
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
28754
|
+
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
28755
|
+
readonly posted_at?: string;
|
|
28756
|
+
readonly value: io.flow.common.v0.models.Price;
|
|
28757
|
+
readonly description: string;
|
|
28758
|
+
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
28759
|
+
readonly created_at: string;
|
|
28760
|
+
}
|
|
28761
|
+
|
|
28407
28762
|
interface TaxRemittanceTransaction {
|
|
28408
28763
|
readonly discriminator: 'tax_remittance_transaction';
|
|
28409
28764
|
readonly order: io.flow.internal.v0.models.BillingOrderSummary;
|
|
@@ -29221,8 +29576,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29221
29576
|
| io.flow.internal.v0.models.AdyenRefundUpserted
|
|
29222
29577
|
| io.flow.internal.v0.models.AdyenDisputeUpserted
|
|
29223
29578
|
| io.flow.internal.v0.models.AdyenDisputeDeleted
|
|
29224
|
-
| io.flow.internal.v0.models.AldoItemUpserted
|
|
29225
|
-
| io.flow.internal.v0.models.AldoItemDeleted
|
|
29226
29579
|
| io.flow.internal.v0.models.FulfillmentUpserted
|
|
29227
29580
|
| io.flow.internal.v0.models.FulfillmentDeleted
|
|
29228
29581
|
| io.flow.internal.v0.models.MerchantUpserted
|
|
@@ -29387,7 +29740,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29387
29740
|
| io.flow.internal.v0.models.HarmonizedItemsHs6Export
|
|
29388
29741
|
| io.flow.internal.v0.models.UnharmonizedItemsExport
|
|
29389
29742
|
| io.flow.internal.v0.models.DutiedItemsExport
|
|
29390
|
-
| io.flow.internal.v0.models.TariffCodesExport
|
|
29391
29743
|
| io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport
|
|
29392
29744
|
| io.flow.internal.v0.models.HarmonizationCodesImport
|
|
29393
29745
|
| io.flow.internal.v0.models.ItemClassificationCreated
|
|
@@ -29513,6 +29865,10 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29513
29865
|
| io.flow.internal.v0.models.ScreeningStatusChangeDeleted
|
|
29514
29866
|
| io.flow.internal.v0.models.RestrictionsDailyopsUpserted
|
|
29515
29867
|
| io.flow.internal.v0.models.RestrictionsDailyopsDeleted
|
|
29868
|
+
| io.flow.internal.v0.models.RestrictionRuleUpserted
|
|
29869
|
+
| io.flow.internal.v0.models.RestrictionRuleDeleted
|
|
29870
|
+
| io.flow.internal.v0.models.RestrictionRuleEffectUpserted
|
|
29871
|
+
| io.flow.internal.v0.models.RestrictionRuleEffectDeleted
|
|
29516
29872
|
| io.flow.internal.v0.models.ShopifyShopUpserted
|
|
29517
29873
|
| io.flow.internal.v0.models.ShopifyShopDeleted
|
|
29518
29874
|
| io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted
|
|
@@ -29538,6 +29894,18 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29538
29894
|
| io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished
|
|
29539
29895
|
| io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted
|
|
29540
29896
|
| io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted
|
|
29897
|
+
| io.flow.internal.v0.models.ShopifyProductCreateUpserted
|
|
29898
|
+
| io.flow.internal.v0.models.ShopifyProductCreateDeleted
|
|
29899
|
+
| io.flow.internal.v0.models.ShopifyProductUpdateUpserted
|
|
29900
|
+
| io.flow.internal.v0.models.ShopifyProductUpdateDeleted
|
|
29901
|
+
| io.flow.internal.v0.models.ShopifyProductDeleteUpserted
|
|
29902
|
+
| io.flow.internal.v0.models.ShopifyProductDeleteDeleted
|
|
29903
|
+
| io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted
|
|
29904
|
+
| io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted
|
|
29905
|
+
| io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted
|
|
29906
|
+
| io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted
|
|
29907
|
+
| io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted
|
|
29908
|
+
| io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted
|
|
29541
29909
|
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted
|
|
29542
29910
|
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted
|
|
29543
29911
|
| io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted
|
|
@@ -29788,7 +30156,10 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29788
30156
|
| io.flow.internal.v0.models.TaxTransaction
|
|
29789
30157
|
| io.flow.internal.v0.models.DutyTransaction
|
|
29790
30158
|
| io.flow.internal.v0.models.TrueupTransaction
|
|
29791
|
-
| io.flow.internal.v0.models.CarrierChargeTransaction
|
|
30159
|
+
| io.flow.internal.v0.models.CarrierChargeTransaction
|
|
30160
|
+
| io.flow.internal.v0.models.OrderFxTransaction
|
|
30161
|
+
| io.flow.internal.v0.models.GeRevenueShareTransaction
|
|
30162
|
+
| io.flow.internal.v0.models.TaxDutyDeltaTransaction;
|
|
29792
30163
|
type TransactionSummary =
|
|
29793
30164
|
| io.flow.internal.v0.models.PaymentSummaryV2
|
|
29794
30165
|
| io.flow.internal.v0.models.FraudSummary;
|
|
@@ -29964,10 +30335,8 @@ export type AfterpayRefundUpserted =
|
|
|
29964
30335
|
io.flow.internal.v0.models.AfterpayRefundUpserted;
|
|
29965
30336
|
export type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
|
|
29966
30337
|
export type AldoItem = io.flow.internal.v0.models.AldoItem;
|
|
29967
|
-
export type AldoItemDeleted = io.flow.internal.v0.models.AldoItemDeleted;
|
|
29968
30338
|
export type AldoItemForm = io.flow.internal.v0.models.AldoItemForm;
|
|
29969
30339
|
export type AldoItemType = io.flow.internal.v0.enums.AldoItemType;
|
|
29970
|
-
export type AldoItemUpserted = io.flow.internal.v0.models.AldoItemUpserted;
|
|
29971
30340
|
export type AlertErrorSummary = io.flow.internal.v0.models.AlertErrorSummary;
|
|
29972
30341
|
export type AlertFailureSummary =
|
|
29973
30342
|
io.flow.internal.v0.models.AlertFailureSummary;
|
|
@@ -29982,6 +30351,9 @@ export type AllOrganizationsMembership =
|
|
|
29982
30351
|
export type AllocationItemReference =
|
|
29983
30352
|
io.flow.internal.v0.models.AllocationItemReference;
|
|
29984
30353
|
export type AllowedLabels = io.flow.internal.v0.models.AllowedLabels;
|
|
30354
|
+
export type AnshItem = io.flow.internal.v0.models.AnshItem;
|
|
30355
|
+
export type AnshItemForm = io.flow.internal.v0.models.AnshItemForm;
|
|
30356
|
+
export type AnshItemType = io.flow.internal.v0.enums.AnshItemType;
|
|
29985
30357
|
export type AnyDangerousGoods = io.flow.internal.v0.enums.AnyDangerousGoods;
|
|
29986
30358
|
export type ApiCallReferenceId = io.flow.internal.v0.enums.ApiCallReferenceId;
|
|
29987
30359
|
export type ApmContent = io.flow.internal.v0.models.ApmContent;
|
|
@@ -31041,6 +31413,8 @@ export type FxRevenueRecognitionRate =
|
|
|
31041
31413
|
io.flow.internal.v0.models.FxRevenueRecognitionRate;
|
|
31042
31414
|
export type FxRevenueRecognitionSource =
|
|
31043
31415
|
io.flow.internal.v0.models.FxRevenueRecognitionSource;
|
|
31416
|
+
export type GeRevenueShareTransaction =
|
|
31417
|
+
io.flow.internal.v0.models.GeRevenueShareTransaction;
|
|
31044
31418
|
export type GenerateLoad = io.flow.internal.v0.unions.GenerateLoad;
|
|
31045
31419
|
export type GenerateLoadMultipleOrgs =
|
|
31046
31420
|
io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
@@ -31246,6 +31620,7 @@ export type LabelCreationRequestForm =
|
|
|
31246
31620
|
io.flow.internal.v0.models.LabelCreationRequestForm;
|
|
31247
31621
|
export type LabelCreationStatus = io.flow.internal.v0.enums.LabelCreationStatus;
|
|
31248
31622
|
export type LabelDestination = io.flow.internal.v0.models.LabelDestination;
|
|
31623
|
+
export type LabelEventSource = io.flow.internal.v0.enums.LabelEventSource;
|
|
31249
31624
|
export type LabelGenerationSettings =
|
|
31250
31625
|
io.flow.internal.v0.models.LabelGenerationSettings;
|
|
31251
31626
|
export type LabelGenerationSettingsDeleted =
|
|
@@ -31640,6 +32015,7 @@ export type OrderFulfillmentDeleted =
|
|
|
31640
32015
|
io.flow.internal.v0.models.OrderFulfillmentDeleted;
|
|
31641
32016
|
export type OrderFulfillmentUpserted =
|
|
31642
32017
|
io.flow.internal.v0.models.OrderFulfillmentUpserted;
|
|
32018
|
+
export type OrderFxTransaction = io.flow.internal.v0.models.OrderFxTransaction;
|
|
31643
32019
|
export type OrderLifecycleEvent = io.flow.internal.v0.enums.OrderLifecycleEvent;
|
|
31644
32020
|
export type OrderNote = io.flow.internal.v0.models.OrderNote;
|
|
31645
32021
|
export type OrderNoteForm = io.flow.internal.v0.models.OrderNoteForm;
|
|
@@ -32299,6 +32675,16 @@ export type RestrictionProductSummary =
|
|
|
32299
32675
|
export type RestrictionRule = io.flow.internal.v0.models.RestrictionRule;
|
|
32300
32676
|
export type RestrictionRuleDecisionForm =
|
|
32301
32677
|
io.flow.internal.v0.models.RestrictionRuleDecisionForm;
|
|
32678
|
+
export type RestrictionRuleDeleted =
|
|
32679
|
+
io.flow.internal.v0.models.RestrictionRuleDeleted;
|
|
32680
|
+
export type RestrictionRuleEffect =
|
|
32681
|
+
io.flow.internal.v0.models.RestrictionRuleEffect;
|
|
32682
|
+
export type RestrictionRuleEffectDeleted =
|
|
32683
|
+
io.flow.internal.v0.models.RestrictionRuleEffectDeleted;
|
|
32684
|
+
export type RestrictionRuleEffectForm =
|
|
32685
|
+
io.flow.internal.v0.models.RestrictionRuleEffectForm;
|
|
32686
|
+
export type RestrictionRuleEffectUpserted =
|
|
32687
|
+
io.flow.internal.v0.models.RestrictionRuleEffectUpserted;
|
|
32302
32688
|
export type RestrictionRuleForm =
|
|
32303
32689
|
io.flow.internal.v0.models.RestrictionRuleForm;
|
|
32304
32690
|
export type RestrictionRuleMetadata =
|
|
@@ -32307,6 +32693,8 @@ export type RestrictionRuleOverride =
|
|
|
32307
32693
|
io.flow.internal.v0.models.RestrictionRuleOverride;
|
|
32308
32694
|
export type RestrictionRuleSummary =
|
|
32309
32695
|
io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
32696
|
+
export type RestrictionRuleUpserted =
|
|
32697
|
+
io.flow.internal.v0.models.RestrictionRuleUpserted;
|
|
32310
32698
|
export type RestrictionStatus = io.flow.internal.v0.enums.RestrictionStatus;
|
|
32311
32699
|
export type RestrictionStatusMetadata =
|
|
32312
32700
|
io.flow.internal.v0.models.RestrictionStatusMetadata;
|
|
@@ -32383,6 +32771,8 @@ export type SessionRollout = io.flow.internal.v0.models.SessionRollout;
|
|
|
32383
32771
|
export type SessionRolloutForm = io.flow.internal.v0.models.SessionRolloutForm;
|
|
32384
32772
|
export type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
|
|
32385
32773
|
export type SfExpress = io.flow.internal.v0.models.SfExpress;
|
|
32774
|
+
export type ShawnRoundtableWorkshopRate =
|
|
32775
|
+
io.flow.internal.v0.models.ShawnRoundtableWorkshopRate;
|
|
32386
32776
|
export type ShippedItemValue = io.flow.internal.v0.models.ShippedItemValue;
|
|
32387
32777
|
export type ShippingLane = io.flow.internal.v0.models.ShippingLane;
|
|
32388
32778
|
export type ShippingMethodReference =
|
|
@@ -32429,6 +32819,24 @@ export type ShopifyIncotermSummaryErrorData =
|
|
|
32429
32819
|
io.flow.internal.v0.models.ShopifyIncotermSummaryErrorData;
|
|
32430
32820
|
export type ShopifyIncotermSummaryErrorPublished =
|
|
32431
32821
|
io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished;
|
|
32822
|
+
export type ShopifyInventoryItemCreateDeleted =
|
|
32823
|
+
io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted;
|
|
32824
|
+
export type ShopifyInventoryItemCreateUpserted =
|
|
32825
|
+
io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted;
|
|
32826
|
+
export type ShopifyInventoryItemCreateWebhookEvent =
|
|
32827
|
+
io.flow.internal.v0.models.ShopifyInventoryItemCreateWebhookEvent;
|
|
32828
|
+
export type ShopifyInventoryItemDeleteDeleted =
|
|
32829
|
+
io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted;
|
|
32830
|
+
export type ShopifyInventoryItemDeleteUpserted =
|
|
32831
|
+
io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted;
|
|
32832
|
+
export type ShopifyInventoryItemDeleteWebhookEvent =
|
|
32833
|
+
io.flow.internal.v0.models.ShopifyInventoryItemDeleteWebhookEvent;
|
|
32834
|
+
export type ShopifyInventoryItemUpdateDeleted =
|
|
32835
|
+
io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted;
|
|
32836
|
+
export type ShopifyInventoryItemUpdateUpserted =
|
|
32837
|
+
io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted;
|
|
32838
|
+
export type ShopifyInventoryItemUpdateWebhookEvent =
|
|
32839
|
+
io.flow.internal.v0.models.ShopifyInventoryItemUpdateWebhookEvent;
|
|
32432
32840
|
export type ShopifyMarketsBestSellingProduct =
|
|
32433
32841
|
io.flow.internal.v0.models.ShopifyMarketsBestSellingProduct;
|
|
32434
32842
|
export type ShopifyMarketsBestSellingProductDeleted =
|
|
@@ -32559,6 +32967,24 @@ export type ShopifyProductBundleUnderlying =
|
|
|
32559
32967
|
io.flow.internal.v0.models.ShopifyProductBundleUnderlying;
|
|
32560
32968
|
export type ShopifyProductBundleUpserted =
|
|
32561
32969
|
io.flow.internal.v0.models.ShopifyProductBundleUpserted;
|
|
32970
|
+
export type ShopifyProductCreateDeleted =
|
|
32971
|
+
io.flow.internal.v0.models.ShopifyProductCreateDeleted;
|
|
32972
|
+
export type ShopifyProductCreateUpserted =
|
|
32973
|
+
io.flow.internal.v0.models.ShopifyProductCreateUpserted;
|
|
32974
|
+
export type ShopifyProductCreateWebhookEvent =
|
|
32975
|
+
io.flow.internal.v0.models.ShopifyProductCreateWebhookEvent;
|
|
32976
|
+
export type ShopifyProductDeleteDeleted =
|
|
32977
|
+
io.flow.internal.v0.models.ShopifyProductDeleteDeleted;
|
|
32978
|
+
export type ShopifyProductDeleteUpserted =
|
|
32979
|
+
io.flow.internal.v0.models.ShopifyProductDeleteUpserted;
|
|
32980
|
+
export type ShopifyProductDeleteWebhookEvent =
|
|
32981
|
+
io.flow.internal.v0.models.ShopifyProductDeleteWebhookEvent;
|
|
32982
|
+
export type ShopifyProductUpdateDeleted =
|
|
32983
|
+
io.flow.internal.v0.models.ShopifyProductUpdateDeleted;
|
|
32984
|
+
export type ShopifyProductUpdateUpserted =
|
|
32985
|
+
io.flow.internal.v0.models.ShopifyProductUpdateUpserted;
|
|
32986
|
+
export type ShopifyProductUpdateWebhookEvent =
|
|
32987
|
+
io.flow.internal.v0.models.ShopifyProductUpdateWebhookEvent;
|
|
32562
32988
|
export type ShopifyProductWrapper =
|
|
32563
32989
|
io.flow.internal.v0.models.ShopifyProductWrapper;
|
|
32564
32990
|
export type ShopifyPromoForm = io.flow.internal.v0.models.ShopifyPromoForm;
|
|
@@ -32610,6 +33036,7 @@ export type ShopifyShopStatistics =
|
|
|
32610
33036
|
export type ShopifyShopUpserted =
|
|
32611
33037
|
io.flow.internal.v0.models.ShopifyShopUpserted;
|
|
32612
33038
|
export type ShopifyStoreDetail = io.flow.internal.v0.models.ShopifyStoreDetail;
|
|
33039
|
+
export type ShopifyStripeEvent = io.flow.internal.v0.models.ShopifyStripeEvent;
|
|
32613
33040
|
export type ShopifyWebhook = io.flow.internal.v0.models.ShopifyWebhook;
|
|
32614
33041
|
export type ShopifyWebhookEvent =
|
|
32615
33042
|
io.flow.internal.v0.models.ShopifyWebhookEvent;
|
|
@@ -32739,7 +33166,6 @@ export type SubscriptionTransaction =
|
|
|
32739
33166
|
export type SuggestionAction = io.flow.internal.v0.enums.SuggestionAction;
|
|
32740
33167
|
export type SupportedLabels = io.flow.internal.v0.models.SupportedLabels;
|
|
32741
33168
|
export type TariffCodeDuty = io.flow.internal.v0.models.TariffCodeDuty;
|
|
32742
|
-
export type TariffCodesExport = io.flow.internal.v0.models.TariffCodesExport;
|
|
32743
33169
|
export type TariffEligibility = io.flow.internal.v0.models.TariffEligibility;
|
|
32744
33170
|
export type TariffEligibilityData =
|
|
32745
33171
|
io.flow.internal.v0.unions.TariffEligibilityData;
|
|
@@ -32770,6 +33196,8 @@ export type TaxCalculationLineItem =
|
|
|
32770
33196
|
io.flow.internal.v0.models.TaxCalculationLineItem;
|
|
32771
33197
|
export type TaxCalculationLineItemForm =
|
|
32772
33198
|
io.flow.internal.v0.models.TaxCalculationLineItemForm;
|
|
33199
|
+
export type TaxDutyDeltaTransaction =
|
|
33200
|
+
io.flow.internal.v0.models.TaxDutyDeltaTransaction;
|
|
32773
33201
|
export type TaxParty = io.flow.internal.v0.enums.TaxParty;
|
|
32774
33202
|
export type TaxRemittanceTransaction =
|
|
32775
33203
|
io.flow.internal.v0.models.TaxRemittanceTransaction;
|