@flowio/types 11.24.143 → 11.24.145
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 +429 -46
- package/dist/api.d.ts +23 -4
- package/package.json +1 -1
- package/src/api-internal.ts +571 -55
- package/src/api.ts +34 -3
package/src/api-internal.ts
CHANGED
|
@@ -1177,17 +1177,6 @@ declare namespace io.flow.ftp.v0.models {
|
|
|
1177
1177
|
}
|
|
1178
1178
|
}
|
|
1179
1179
|
|
|
1180
|
-
declare namespace io.flow.error.v0.enums {
|
|
1181
|
-
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
1182
|
-
}
|
|
1183
|
-
|
|
1184
|
-
declare namespace io.flow.error.v0.models {
|
|
1185
|
-
interface GenericError {
|
|
1186
|
-
readonly code: io.flow.error.v0.enums.GenericErrorCode;
|
|
1187
|
-
readonly messages: string[];
|
|
1188
|
-
}
|
|
1189
|
-
}
|
|
1190
|
-
|
|
1191
1180
|
declare namespace io.flow.channel.v0.enums {
|
|
1192
1181
|
type ChannelCurrencyCapability =
|
|
1193
1182
|
| 'payment_authorizations'
|
|
@@ -7088,6 +7077,10 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
7088
7077
|
readonly discrepancies: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsDiscrepancy[];
|
|
7089
7078
|
}
|
|
7090
7079
|
|
|
7080
|
+
interface ShopifyMarketsEvent {
|
|
7081
|
+
readonly placeholder?: any /*json*/;
|
|
7082
|
+
}
|
|
7083
|
+
|
|
7091
7084
|
interface ShopifyMarketsIncorporationCountry {
|
|
7092
7085
|
readonly country: string;
|
|
7093
7086
|
readonly state?: string;
|
|
@@ -7481,6 +7474,12 @@ declare namespace io.flow.consumer.invoice.v0.models {
|
|
|
7481
7474
|
readonly duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
7482
7475
|
}
|
|
7483
7476
|
|
|
7477
|
+
interface ConsumerInvoiceLineShippingPassThrough {
|
|
7478
|
+
readonly discriminator: 'shipping_pass_through';
|
|
7479
|
+
readonly line_id?: string;
|
|
7480
|
+
readonly price: io.flow.common.v0.models.Price;
|
|
7481
|
+
}
|
|
7482
|
+
|
|
7484
7483
|
interface ConsumerInvoiceLineTip {
|
|
7485
7484
|
readonly discriminator: 'tip';
|
|
7486
7485
|
readonly line_id?: string;
|
|
@@ -7581,6 +7580,7 @@ declare namespace io.flow.consumer.invoice.v0.unions {
|
|
|
7581
7580
|
| io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineItem
|
|
7582
7581
|
| io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineDiscount
|
|
7583
7582
|
| io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineShipping
|
|
7583
|
+
| io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineShippingPassThrough
|
|
7584
7584
|
| io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineTip;
|
|
7585
7585
|
type ConsumerInvoiceLineForm =
|
|
7586
7586
|
| io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineItemForm
|
|
@@ -8601,6 +8601,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
8601
8601
|
readonly has_variants_that_requires_components?: boolean;
|
|
8602
8602
|
readonly category?: io.flow.shopify.external.v0.models.RestTaxonomyCategory;
|
|
8603
8603
|
readonly metafields?: io.flow.shopify.external.v0.models.ProductMetafield[];
|
|
8604
|
+
readonly variant_gids?: io.flow.shopify.external.v0.models.ProductVariantGid[];
|
|
8604
8605
|
}
|
|
8605
8606
|
|
|
8606
8607
|
interface ProductDelete {
|
|
@@ -8655,6 +8656,11 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
8655
8656
|
readonly metafields?: io.flow.shopify.external.v0.models.Metafield[];
|
|
8656
8657
|
}
|
|
8657
8658
|
|
|
8659
|
+
interface ProductVariantGid {
|
|
8660
|
+
readonly admin_graphql_api_id: string;
|
|
8661
|
+
readonly updated_at: string;
|
|
8662
|
+
}
|
|
8663
|
+
|
|
8658
8664
|
interface RequestMetafieldForm {
|
|
8659
8665
|
readonly metafield: io.flow.shopify.external.v0.models.MetafieldForm;
|
|
8660
8666
|
}
|
|
@@ -13666,6 +13672,199 @@ declare namespace io.flow.crypto.v0.models {
|
|
|
13666
13672
|
}
|
|
13667
13673
|
}
|
|
13668
13674
|
|
|
13675
|
+
declare namespace io.flow.error.v0.enums {
|
|
13676
|
+
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
13677
|
+
}
|
|
13678
|
+
|
|
13679
|
+
declare namespace io.flow.error.v0.models {
|
|
13680
|
+
interface GenericError {
|
|
13681
|
+
readonly code: io.flow.error.v0.enums.GenericErrorCode;
|
|
13682
|
+
readonly messages: string[];
|
|
13683
|
+
}
|
|
13684
|
+
}
|
|
13685
|
+
|
|
13686
|
+
declare namespace io.flow.shopify.external.v2.v0.models {
|
|
13687
|
+
interface CountryHarmonizedSystemCodeConnection {
|
|
13688
|
+
readonly nodes: io.flow.shopify.external.v2.v0.models.CountryHarmonizedSystemCodeNode[];
|
|
13689
|
+
}
|
|
13690
|
+
|
|
13691
|
+
interface CountryHarmonizedSystemCodeNode {
|
|
13692
|
+
readonly harmonizedSystemCode?: string;
|
|
13693
|
+
readonly countryCode?: string;
|
|
13694
|
+
}
|
|
13695
|
+
|
|
13696
|
+
interface FieldsChanged {
|
|
13697
|
+
readonly added: string[];
|
|
13698
|
+
readonly updated: string[];
|
|
13699
|
+
readonly removed: string[];
|
|
13700
|
+
}
|
|
13701
|
+
|
|
13702
|
+
interface ImageConnection {
|
|
13703
|
+
readonly nodes: io.flow.shopify.external.v2.v0.models.ImageNode[];
|
|
13704
|
+
}
|
|
13705
|
+
|
|
13706
|
+
interface ImageNode {
|
|
13707
|
+
readonly id?: string;
|
|
13708
|
+
readonly url?: string;
|
|
13709
|
+
}
|
|
13710
|
+
|
|
13711
|
+
interface InventoryItemData {
|
|
13712
|
+
readonly shop: io.flow.shopify.external.v2.v0.models.ShopNode;
|
|
13713
|
+
readonly inventoryItem?: io.flow.shopify.external.v2.v0.models.InventoryItemNode;
|
|
13714
|
+
}
|
|
13715
|
+
|
|
13716
|
+
interface InventoryItemDeleteData {
|
|
13717
|
+
readonly shop: io.flow.shopify.external.v2.v0.models.ShopNode;
|
|
13718
|
+
readonly inventoryItem?: io.flow.shopify.external.v2.v0.models.InventoryItemNode;
|
|
13719
|
+
}
|
|
13720
|
+
|
|
13721
|
+
interface InventoryItemDeleteEvent {
|
|
13722
|
+
readonly topic: string;
|
|
13723
|
+
readonly action: string;
|
|
13724
|
+
readonly handle: string;
|
|
13725
|
+
readonly data: io.flow.shopify.external.v2.v0.models.InventoryItemDeleteData;
|
|
13726
|
+
readonly fields_changed?: io.flow.shopify.external.v2.v0.models.FieldsChanged;
|
|
13727
|
+
readonly query_variables: io.flow.shopify.external.v2.v0.models.InventoryItemQueryVariables;
|
|
13728
|
+
}
|
|
13729
|
+
|
|
13730
|
+
interface InventoryItemEvent {
|
|
13731
|
+
readonly topic: string;
|
|
13732
|
+
readonly action: string;
|
|
13733
|
+
readonly handle: string;
|
|
13734
|
+
readonly data: io.flow.shopify.external.v2.v0.models.InventoryItemData;
|
|
13735
|
+
readonly fields_changed?: io.flow.shopify.external.v2.v0.models.FieldsChanged;
|
|
13736
|
+
readonly query_variables: io.flow.shopify.external.v2.v0.models.InventoryItemQueryVariables;
|
|
13737
|
+
}
|
|
13738
|
+
|
|
13739
|
+
interface InventoryItemNode {
|
|
13740
|
+
readonly id?: string;
|
|
13741
|
+
readonly countryCodeOfOrigin?: string;
|
|
13742
|
+
readonly harmonizedSystemCode?: string;
|
|
13743
|
+
readonly countryHarmonizedSystemCodes?: io.flow.shopify.external.v2.v0.models.CountryHarmonizedSystemCodeConnection;
|
|
13744
|
+
readonly requiresShipping?: boolean;
|
|
13745
|
+
readonly variant?: io.flow.shopify.external.v2.v0.models.VariantReferenceNode;
|
|
13746
|
+
}
|
|
13747
|
+
|
|
13748
|
+
interface InventoryItemQueryVariables {
|
|
13749
|
+
readonly inventoryItemId: string;
|
|
13750
|
+
}
|
|
13751
|
+
|
|
13752
|
+
interface MetafieldConnection {
|
|
13753
|
+
readonly nodes: io.flow.shopify.external.v2.v0.models.MetafieldNode[];
|
|
13754
|
+
}
|
|
13755
|
+
|
|
13756
|
+
interface MetafieldNode {
|
|
13757
|
+
readonly namespace?: string;
|
|
13758
|
+
readonly key: string;
|
|
13759
|
+
readonly value?: string;
|
|
13760
|
+
readonly type?: string;
|
|
13761
|
+
readonly references?: io.flow.shopify.external.v2.v0.models.MetafieldReferenceConnection;
|
|
13762
|
+
}
|
|
13763
|
+
|
|
13764
|
+
interface MetafieldReferenceConnection {
|
|
13765
|
+
readonly edges: io.flow.shopify.external.v2.v0.models.MetafieldReferenceEdge[];
|
|
13766
|
+
}
|
|
13767
|
+
|
|
13768
|
+
interface MetafieldReferenceEdge {
|
|
13769
|
+
readonly node?: io.flow.shopify.external.v2.v0.models.MetaobjectNode;
|
|
13770
|
+
}
|
|
13771
|
+
|
|
13772
|
+
interface MetaobjectNode {
|
|
13773
|
+
readonly id: string;
|
|
13774
|
+
readonly type?: string;
|
|
13775
|
+
readonly displayName?: string;
|
|
13776
|
+
readonly fields: io.flow.shopify.external.v0.models.GraphqlMetaobjectField[];
|
|
13777
|
+
}
|
|
13778
|
+
|
|
13779
|
+
interface ProductData {
|
|
13780
|
+
readonly shop: io.flow.shopify.external.v2.v0.models.ShopNode;
|
|
13781
|
+
readonly product?: io.flow.shopify.external.v2.v0.models.ProductNode;
|
|
13782
|
+
readonly productVariant?: io.flow.shopify.external.v2.v0.models.VariantNode;
|
|
13783
|
+
}
|
|
13784
|
+
|
|
13785
|
+
interface ProductEvent {
|
|
13786
|
+
readonly topic: string;
|
|
13787
|
+
readonly action: string;
|
|
13788
|
+
readonly handle: string;
|
|
13789
|
+
readonly data: io.flow.shopify.external.v2.v0.models.ProductData;
|
|
13790
|
+
readonly fields_changed?: io.flow.shopify.external.v2.v0.models.FieldsChanged;
|
|
13791
|
+
readonly query_variables: io.flow.shopify.external.v2.v0.models.ProductQueryVariables;
|
|
13792
|
+
}
|
|
13793
|
+
|
|
13794
|
+
interface ProductNode {
|
|
13795
|
+
readonly id: string;
|
|
13796
|
+
readonly handle?: string;
|
|
13797
|
+
readonly title?: string;
|
|
13798
|
+
readonly productType?: string;
|
|
13799
|
+
readonly status?: string;
|
|
13800
|
+
readonly createdAt?: string;
|
|
13801
|
+
readonly updatedAt?: string;
|
|
13802
|
+
readonly publishedAt?: string;
|
|
13803
|
+
readonly hasVariantsThatRequiresComponents?: boolean;
|
|
13804
|
+
readonly descriptionHtml?: string;
|
|
13805
|
+
readonly tags?: string[];
|
|
13806
|
+
readonly category?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
|
|
13807
|
+
readonly inferredProductCategory?: io.flow.shopify.external.v0.models.GraphqlInferredProductCategory;
|
|
13808
|
+
readonly images?: io.flow.shopify.external.v2.v0.models.ImageConnection;
|
|
13809
|
+
readonly metafields?: io.flow.shopify.external.v2.v0.models.MetafieldConnection;
|
|
13810
|
+
readonly variants?: io.flow.shopify.external.v2.v0.models.VariantConnection;
|
|
13811
|
+
}
|
|
13812
|
+
|
|
13813
|
+
interface ProductQueryVariables {
|
|
13814
|
+
readonly productId: string;
|
|
13815
|
+
readonly variantsId?: string;
|
|
13816
|
+
}
|
|
13817
|
+
|
|
13818
|
+
interface ProductReferenceNode {
|
|
13819
|
+
readonly id: string;
|
|
13820
|
+
}
|
|
13821
|
+
|
|
13822
|
+
interface ProductVariantComponentConnection {
|
|
13823
|
+
readonly nodes: io.flow.shopify.external.v2.v0.models.ProductVariantComponentNode[];
|
|
13824
|
+
}
|
|
13825
|
+
|
|
13826
|
+
interface ProductVariantComponentNode {
|
|
13827
|
+
readonly id: string;
|
|
13828
|
+
readonly quantity?: number;
|
|
13829
|
+
readonly productVariant?: io.flow.shopify.external.v2.v0.models.VariantReferenceNode;
|
|
13830
|
+
}
|
|
13831
|
+
|
|
13832
|
+
interface ShopNode {
|
|
13833
|
+
readonly id: string;
|
|
13834
|
+
readonly currencyCode?: string;
|
|
13835
|
+
readonly myshopifyDomain?: string;
|
|
13836
|
+
}
|
|
13837
|
+
|
|
13838
|
+
interface VariantConnection {
|
|
13839
|
+
readonly nodes: io.flow.shopify.external.v2.v0.models.VariantNode[];
|
|
13840
|
+
}
|
|
13841
|
+
|
|
13842
|
+
interface VariantImageNode {
|
|
13843
|
+
readonly id?: string;
|
|
13844
|
+
readonly url?: string;
|
|
13845
|
+
}
|
|
13846
|
+
|
|
13847
|
+
interface VariantNode {
|
|
13848
|
+
readonly id: string;
|
|
13849
|
+
readonly sku?: string;
|
|
13850
|
+
readonly price?: string;
|
|
13851
|
+
readonly title?: string;
|
|
13852
|
+
readonly barcode?: string;
|
|
13853
|
+
readonly taxable?: boolean;
|
|
13854
|
+
readonly inventoryPolicy?: string;
|
|
13855
|
+
readonly requiresComponents?: boolean;
|
|
13856
|
+
readonly image?: io.flow.shopify.external.v2.v0.models.VariantImageNode;
|
|
13857
|
+
readonly inventoryItem?: io.flow.shopify.external.v2.v0.models.InventoryItemNode;
|
|
13858
|
+
readonly productVariantComponents?: io.flow.shopify.external.v2.v0.models.ProductVariantComponentConnection;
|
|
13859
|
+
}
|
|
13860
|
+
|
|
13861
|
+
interface VariantReferenceNode {
|
|
13862
|
+
readonly id: string;
|
|
13863
|
+
readonly sku?: string;
|
|
13864
|
+
readonly product?: io.flow.shopify.external.v2.v0.models.ProductReferenceNode;
|
|
13865
|
+
}
|
|
13866
|
+
}
|
|
13867
|
+
|
|
13669
13868
|
declare namespace io.flow.shopify.merchant.config.v0.models {
|
|
13670
13869
|
interface Company {
|
|
13671
13870
|
readonly discriminator: 'company';
|
|
@@ -15419,7 +15618,10 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
15419
15618
|
| 'wyol_shipment_lvg'
|
|
15420
15619
|
| 'full_refund_without_shipment'
|
|
15421
15620
|
| 'unfulfilled_order_above_de_min'
|
|
15422
|
-
| 'order_cancellation_without_capture'
|
|
15621
|
+
| 'order_cancellation_without_capture'
|
|
15622
|
+
| 'order_cancellation_marked_as_paid'
|
|
15623
|
+
| 'order_cancellation_after_capture'
|
|
15624
|
+
| 'order_rejection';
|
|
15423
15625
|
type TransactionSource =
|
|
15424
15626
|
| 'capture'
|
|
15425
15627
|
| 'refund'
|
|
@@ -15458,7 +15660,8 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
15458
15660
|
| 'b2b_fee_mor_tax'
|
|
15459
15661
|
| 'b2b_fee_shipping_tax'
|
|
15460
15662
|
| 'flat_rate_label'
|
|
15461
|
-
| 'flat_rate_label_subsidy'
|
|
15663
|
+
| 'flat_rate_label_subsidy'
|
|
15664
|
+
| 'credit_refund';
|
|
15462
15665
|
type TrueupSource =
|
|
15463
15666
|
| 'flow'
|
|
15464
15667
|
| 'channel'
|
|
@@ -16438,6 +16641,7 @@ declare namespace io.flow.sellability.v0.enums {
|
|
|
16438
16641
|
| 'ineligible_category'
|
|
16439
16642
|
| 'wait_for_high_fidelity'
|
|
16440
16643
|
| 'external_service_unavailable';
|
|
16644
|
+
type SellabilityReprocessPolicy = 'default' | 'force';
|
|
16441
16645
|
type SellabilityRequestStatus = 'commit';
|
|
16442
16646
|
type SellabilityResultErrorCode =
|
|
16443
16647
|
| 'insufficient_details'
|
|
@@ -16541,6 +16745,7 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
16541
16745
|
readonly taxonomy_category: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
16542
16746
|
readonly inferred_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
16543
16747
|
readonly mode: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
16748
|
+
readonly reprocess_policy?: io.flow.sellability.v0.enums.SellabilityReprocessPolicy;
|
|
16544
16749
|
readonly catalog_size?: number;
|
|
16545
16750
|
readonly relative_ranking?: number;
|
|
16546
16751
|
readonly dry_run?: boolean;
|
|
@@ -16821,12 +17026,29 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16821
17026
|
| 'invalid_bank_account';
|
|
16822
17027
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
16823
17028
|
type AccountType = 'channel' | 'organization';
|
|
16824
|
-
type AdaptiveShippingOrderGuaranteeState = 'confirmed' | 'voided';
|
|
16825
17029
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
16826
17030
|
type AdyenIntegrationType =
|
|
16827
17031
|
| 'hosted_payment_page'
|
|
16828
17032
|
| 'checkout_payments_api'
|
|
16829
17033
|
| 'classic_authorise_api';
|
|
17034
|
+
type AiReviewBatchItemOutcome =
|
|
17035
|
+
| 'succeeded'
|
|
17036
|
+
| 'errored'
|
|
17037
|
+
| 'expired'
|
|
17038
|
+
| 'canceled'
|
|
17039
|
+
| 'undecided'
|
|
17040
|
+
| 'unparseable'
|
|
17041
|
+
| 'missing'
|
|
17042
|
+
| 'batch_failed'
|
|
17043
|
+
| 'batch_timed_out';
|
|
17044
|
+
type AiReviewBatchStatus =
|
|
17045
|
+
| 'pending'
|
|
17046
|
+
| 'processing'
|
|
17047
|
+
| 'canceling'
|
|
17048
|
+
| 'completed'
|
|
17049
|
+
| 'failed'
|
|
17050
|
+
| 'timed_out'
|
|
17051
|
+
| 'published';
|
|
16830
17052
|
type AiReviewConsumer = 'restrictions' | 'sellability' | 'harmonization';
|
|
16831
17053
|
type AiReviewFailureReason =
|
|
16832
17054
|
| 'item_errored'
|
|
@@ -17146,7 +17368,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17146
17368
|
| 'b2b_fee_mor_tax'
|
|
17147
17369
|
| 'b2b_fee_shipping_tax'
|
|
17148
17370
|
| 'flat_rate_label'
|
|
17149
|
-
| 'flat_rate_label_subsidy'
|
|
17371
|
+
| 'flat_rate_label_subsidy'
|
|
17372
|
+
| 'credit_refund';
|
|
17150
17373
|
type BojanaItemType = 'physical' | 'digital';
|
|
17151
17374
|
type CalculatorEngine =
|
|
17152
17375
|
| 'dtce_with_deminimis'
|
|
@@ -17418,6 +17641,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17418
17641
|
| 'order_transaction_deleted'
|
|
17419
17642
|
| 'label_transaction_upserted'
|
|
17420
17643
|
| 'label_transaction_deleted'
|
|
17644
|
+
| 'ge_revenue_share_transaction_upserted'
|
|
17645
|
+
| 'ge_revenue_share_transaction_deleted'
|
|
17646
|
+
| 'non_l4l_tax_duty_fx_transaction_upserted'
|
|
17647
|
+
| 'non_l4l_tax_duty_fx_transaction_deleted'
|
|
17648
|
+
| 'transaction_adjustment_upserted'
|
|
17649
|
+
| 'transaction_adjustment_deleted'
|
|
17421
17650
|
| 'channel_billed_transaction_upserted'
|
|
17422
17651
|
| 'channel_billed_transaction_deleted'
|
|
17423
17652
|
| 'tax_transaction_upserted'
|
|
@@ -17554,6 +17783,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17554
17783
|
| 'guaranteed_shipping_calibrated_output_deleted'
|
|
17555
17784
|
| 'outbound_shipping_cost_upserted'
|
|
17556
17785
|
| 'outbound_shipping_cost_deleted'
|
|
17786
|
+
| 'average_order_value_upserted'
|
|
17787
|
+
| 'average_order_value_deleted'
|
|
17557
17788
|
| 'guaranteed_shipping_published_output_upserted'
|
|
17558
17789
|
| 'guaranteed_shipping_published_output_deleted'
|
|
17559
17790
|
| 'guaranteed_shipping_settings_upserted'
|
|
@@ -17592,8 +17823,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17592
17823
|
| 'order_validation_deleted'
|
|
17593
17824
|
| 'label_creation_job_upserted'
|
|
17594
17825
|
| 'label_creation_job_deleted'
|
|
17595
|
-
| '
|
|
17596
|
-
| '
|
|
17826
|
+
| 'guaranteed_shipping_order_guarantee_upserted'
|
|
17827
|
+
| 'guaranteed_shipping_order_guarantee_deleted'
|
|
17597
17828
|
| 'label_tracking_summary_upserted'
|
|
17598
17829
|
| 'label_tracking_summary_deleted'
|
|
17599
17830
|
| 'logistics_capabilities_upserted'
|
|
@@ -17744,6 +17975,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17744
17975
|
| 'shopify_inventory_item_update_deleted'
|
|
17745
17976
|
| 'shopify_inventory_item_delete_upserted'
|
|
17746
17977
|
| 'shopify_inventory_item_delete_deleted'
|
|
17978
|
+
| 'shopify_product_data_create_v2'
|
|
17979
|
+
| 'shopify_product_data_update_v2'
|
|
17980
|
+
| 'shopify_product_metafields_update_v2'
|
|
17981
|
+
| 'shopify_product_variant_data_v2'
|
|
17982
|
+
| 'shopify_product_variant_components_v2'
|
|
17983
|
+
| 'shopify_product_data_delete_v2'
|
|
17984
|
+
| 'shopify_inventory_item_update_v2'
|
|
17985
|
+
| 'shopify_inventory_item_delete_v2'
|
|
17747
17986
|
| 'shopify_monitoring_order_monitor_event_upserted'
|
|
17748
17987
|
| 'shopify_monitoring_order_monitor_event_deleted'
|
|
17749
17988
|
| 'shopify_order_fulfillments_snapshot_upserted'
|
|
@@ -17846,6 +18085,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17846
18085
|
| 'sync_product_catalog'
|
|
17847
18086
|
| 'shopify_webhook'
|
|
17848
18087
|
| 'guaranteed_shipping_state';
|
|
18088
|
+
type GuaranteedShippingOrderGuaranteeState = 'confirmed' | 'voided';
|
|
17849
18089
|
type GuaranteedShippingPublicationStatus =
|
|
17850
18090
|
| 'published'
|
|
17851
18091
|
| 'not_found'
|
|
@@ -18098,7 +18338,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18098
18338
|
| 'capture'
|
|
18099
18339
|
| 'refund'
|
|
18100
18340
|
| 'fully_subsidized_order'
|
|
18101
|
-
| 'credit_payment'
|
|
18341
|
+
| 'credit_payment'
|
|
18342
|
+
| 'credit_refund';
|
|
18102
18343
|
type Processor =
|
|
18103
18344
|
| 'adyen'
|
|
18104
18345
|
| 'afterpay'
|
|
@@ -18119,6 +18360,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18119
18360
|
type RateSource = 'calculated' | 'market';
|
|
18120
18361
|
type RaveenaItemType = 'physical' | 'digital';
|
|
18121
18362
|
type RedirectReason = 'three_d_secure';
|
|
18363
|
+
type RefundTransactionPaymentType = 'globale' | 'third_party' | 'credit';
|
|
18122
18364
|
type RejectionReason =
|
|
18123
18365
|
| 'merchant_policy'
|
|
18124
18366
|
| 'previous_chargebacks'
|
|
@@ -18219,6 +18461,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18219
18461
|
| 'fast_screen_hs_chapter_exception'
|
|
18220
18462
|
| 'fast_screen_active_mode'
|
|
18221
18463
|
| 'unserviceable_taxonomy'
|
|
18464
|
+
| 'insufficient_details'
|
|
18222
18465
|
| 'pending_classification'
|
|
18223
18466
|
| 'pending_agent_review'
|
|
18224
18467
|
| 'screen_failed'
|
|
@@ -18714,31 +18957,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18714
18957
|
readonly quantity: number;
|
|
18715
18958
|
}
|
|
18716
18959
|
|
|
18717
|
-
interface AdaptiveShippingOrderGuarantee {
|
|
18718
|
-
readonly id: string;
|
|
18719
|
-
readonly organization_id: string;
|
|
18720
|
-
readonly order_number: string;
|
|
18721
|
-
readonly guarantee_state: io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState;
|
|
18722
|
-
readonly label_id?: string;
|
|
18723
|
-
readonly notification_id?: string;
|
|
18724
|
-
}
|
|
18725
|
-
|
|
18726
|
-
interface AdaptiveShippingOrderGuaranteeDeleted {
|
|
18727
|
-
readonly discriminator: 'adaptive_shipping_order_guarantee_deleted';
|
|
18728
|
-
readonly event_id: string;
|
|
18729
|
-
readonly timestamp: string;
|
|
18730
|
-
readonly organization: string;
|
|
18731
|
-
readonly id: string;
|
|
18732
|
-
}
|
|
18733
|
-
|
|
18734
|
-
interface AdaptiveShippingOrderGuaranteeUpserted {
|
|
18735
|
-
readonly discriminator: 'adaptive_shipping_order_guarantee_upserted';
|
|
18736
|
-
readonly event_id: string;
|
|
18737
|
-
readonly timestamp: string;
|
|
18738
|
-
readonly organization: string;
|
|
18739
|
-
readonly adaptive_shipping_order_guarantee: io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
18740
|
-
}
|
|
18741
|
-
|
|
18742
18960
|
interface AdditionalImportTax {
|
|
18743
18961
|
readonly name?: string;
|
|
18744
18962
|
readonly additional_import_tax_value?: io.flow.common.v0.models.Money;
|
|
@@ -19362,12 +19580,46 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19362
19580
|
readonly charge_trigger: io.flow.internal.v0.enums.OrderChargeTrigger;
|
|
19363
19581
|
}
|
|
19364
19582
|
|
|
19583
|
+
interface AutoAcceptKeywordCancelling {
|
|
19584
|
+
readonly accept_keyword: string;
|
|
19585
|
+
readonly negative_keywords: string[];
|
|
19586
|
+
}
|
|
19587
|
+
|
|
19365
19588
|
interface AutoReviewCriteria {
|
|
19366
19589
|
readonly hs_code?: string;
|
|
19367
19590
|
readonly keywords?: string[];
|
|
19368
19591
|
readonly action?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
19369
19592
|
}
|
|
19370
19593
|
|
|
19594
|
+
interface AverageOrderValue {
|
|
19595
|
+
readonly id: string;
|
|
19596
|
+
readonly channel_id: string;
|
|
19597
|
+
readonly organization_id: string;
|
|
19598
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
19599
|
+
readonly updated_at: number;
|
|
19600
|
+
readonly run_id: string;
|
|
19601
|
+
readonly model_version: string;
|
|
19602
|
+
readonly model_diagnostics?: string;
|
|
19603
|
+
}
|
|
19604
|
+
|
|
19605
|
+
interface AverageOrderValueDeleted {
|
|
19606
|
+
readonly discriminator: 'average_order_value_deleted';
|
|
19607
|
+
readonly event_id: string;
|
|
19608
|
+
readonly timestamp: string;
|
|
19609
|
+
readonly organization: string;
|
|
19610
|
+
readonly channel_id: string;
|
|
19611
|
+
readonly id: string;
|
|
19612
|
+
}
|
|
19613
|
+
|
|
19614
|
+
interface AverageOrderValueUpserted {
|
|
19615
|
+
readonly discriminator: 'average_order_value_upserted';
|
|
19616
|
+
readonly event_id: string;
|
|
19617
|
+
readonly timestamp: string;
|
|
19618
|
+
readonly organization: string;
|
|
19619
|
+
readonly channel_id: string;
|
|
19620
|
+
readonly average_order_value: io.flow.internal.v0.models.AverageOrderValue;
|
|
19621
|
+
}
|
|
19622
|
+
|
|
19371
19623
|
interface B2BFeeMorTaxTriggerMetadata {
|
|
19372
19624
|
readonly discriminator: 'b2b_fee_mor_tax_trigger_metadata';
|
|
19373
19625
|
readonly trigger_type: io.flow.internal.v0.enums.B2BFeeMorTaxTriggerType;
|
|
@@ -20079,6 +20331,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20079
20331
|
readonly default_hs_code?: string;
|
|
20080
20332
|
}
|
|
20081
20333
|
|
|
20334
|
+
interface CalculatorOrganizationSettingsCountryOfOriginForm {
|
|
20335
|
+
readonly country_of_origin: string;
|
|
20336
|
+
}
|
|
20337
|
+
|
|
20082
20338
|
interface CalculatorOrganizationSettingsDeleted {
|
|
20083
20339
|
readonly discriminator: 'calculator_organization_settings_deleted';
|
|
20084
20340
|
readonly event_id: string;
|
|
@@ -20092,6 +20348,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20092
20348
|
readonly default_hs_code?: string;
|
|
20093
20349
|
}
|
|
20094
20350
|
|
|
20351
|
+
interface CalculatorOrganizationSettingsHsCodeForm {
|
|
20352
|
+
readonly default_hs_code: string;
|
|
20353
|
+
}
|
|
20354
|
+
|
|
20095
20355
|
interface CalculatorOrganizationSettingsUpserted {
|
|
20096
20356
|
readonly discriminator: 'calculator_organization_settings_upserted';
|
|
20097
20357
|
readonly event_id: string;
|
|
@@ -20246,6 +20506,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20246
20506
|
readonly cost: io.flow.common.v0.models.Money;
|
|
20247
20507
|
readonly min_delivery_days?: number;
|
|
20248
20508
|
readonly max_delivery_days?: number;
|
|
20509
|
+
readonly model_diagnostics?: string;
|
|
20249
20510
|
}
|
|
20250
20511
|
|
|
20251
20512
|
interface CarrierFile {
|
|
@@ -23551,6 +23812,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23551
23812
|
readonly discriminator: 'ge_revenue_share_transaction';
|
|
23552
23813
|
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
23553
23814
|
readonly ge_revenue_share: io.flow.internal.v0.models.Fee;
|
|
23815
|
+
readonly capture_id: string;
|
|
23554
23816
|
readonly id: string;
|
|
23555
23817
|
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
23556
23818
|
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
@@ -23561,6 +23823,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23561
23823
|
readonly created_at: string;
|
|
23562
23824
|
}
|
|
23563
23825
|
|
|
23826
|
+
interface GeRevenueShareTransactionDeleted {
|
|
23827
|
+
readonly discriminator: 'ge_revenue_share_transaction_deleted';
|
|
23828
|
+
readonly event_id: string;
|
|
23829
|
+
readonly timestamp: string;
|
|
23830
|
+
readonly id: string;
|
|
23831
|
+
}
|
|
23832
|
+
|
|
23833
|
+
interface GeRevenueShareTransactionUpserted {
|
|
23834
|
+
readonly discriminator: 'ge_revenue_share_transaction_upserted';
|
|
23835
|
+
readonly event_id: string;
|
|
23836
|
+
readonly timestamp: string;
|
|
23837
|
+
readonly ge_revenue_share_transaction: io.flow.internal.v0.models.GeRevenueShareTransaction;
|
|
23838
|
+
}
|
|
23839
|
+
|
|
23564
23840
|
interface GenerateLoadMultipleOrgs {
|
|
23565
23841
|
readonly discriminator: 'generate_load_multiple_orgs';
|
|
23566
23842
|
readonly organization_ids: string[];
|
|
@@ -23688,6 +23964,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23688
23964
|
readonly destination_country?: string;
|
|
23689
23965
|
}
|
|
23690
23966
|
|
|
23967
|
+
interface GuaranteedShippingOrderGuarantee {
|
|
23968
|
+
readonly id: string;
|
|
23969
|
+
readonly organization_id: string;
|
|
23970
|
+
readonly order_number: string;
|
|
23971
|
+
readonly guarantee_state: io.flow.internal.v0.enums.GuaranteedShippingOrderGuaranteeState;
|
|
23972
|
+
readonly label_id?: string;
|
|
23973
|
+
readonly notification_id?: string;
|
|
23974
|
+
}
|
|
23975
|
+
|
|
23976
|
+
interface GuaranteedShippingOrderGuaranteeDeleted {
|
|
23977
|
+
readonly discriminator: 'guaranteed_shipping_order_guarantee_deleted';
|
|
23978
|
+
readonly event_id: string;
|
|
23979
|
+
readonly timestamp: string;
|
|
23980
|
+
readonly organization: string;
|
|
23981
|
+
readonly id: string;
|
|
23982
|
+
}
|
|
23983
|
+
|
|
23984
|
+
interface GuaranteedShippingOrderGuaranteeUpserted {
|
|
23985
|
+
readonly discriminator: 'guaranteed_shipping_order_guarantee_upserted';
|
|
23986
|
+
readonly event_id: string;
|
|
23987
|
+
readonly timestamp: string;
|
|
23988
|
+
readonly organization: string;
|
|
23989
|
+
readonly guaranteed_shipping_order_guarantee: io.flow.internal.v0.models.GuaranteedShippingOrderGuarantee;
|
|
23990
|
+
}
|
|
23991
|
+
|
|
23691
23992
|
interface GuaranteedShippingPublication {
|
|
23692
23993
|
readonly channel_id: string;
|
|
23693
23994
|
readonly organization_id: string;
|
|
@@ -23718,7 +24019,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23718
24019
|
readonly outbound_shipping_cost_source_updated_at: number;
|
|
23719
24020
|
readonly average_order_value_source_updated_at: number;
|
|
23720
24021
|
readonly target_flat_rates_source_updated_at: number;
|
|
23721
|
-
readonly published_at
|
|
24022
|
+
readonly published_at: number;
|
|
23722
24023
|
}
|
|
23723
24024
|
|
|
23724
24025
|
interface GuaranteedShippingPublishedOutputDeleted {
|
|
@@ -24341,6 +24642,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24341
24642
|
interface ItemHs6Override {
|
|
24342
24643
|
readonly item_number: string;
|
|
24343
24644
|
readonly hs6: string;
|
|
24645
|
+
readonly classification_scope?: io.flow.internal.v0.enums.ClassificationScope;
|
|
24344
24646
|
}
|
|
24345
24647
|
|
|
24346
24648
|
interface ItemHs6OverrideForm {
|
|
@@ -25478,6 +25780,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25478
25780
|
readonly created_at: string;
|
|
25479
25781
|
}
|
|
25480
25782
|
|
|
25783
|
+
interface NonL4LTaxDutyFxTransactionDeleted {
|
|
25784
|
+
readonly discriminator: 'non_l4l_tax_duty_fx_transaction_deleted';
|
|
25785
|
+
readonly event_id: string;
|
|
25786
|
+
readonly timestamp: string;
|
|
25787
|
+
readonly id: string;
|
|
25788
|
+
}
|
|
25789
|
+
|
|
25790
|
+
interface NonL4LTaxDutyFxTransactionUpserted {
|
|
25791
|
+
readonly discriminator: 'non_l4l_tax_duty_fx_transaction_upserted';
|
|
25792
|
+
readonly event_id: string;
|
|
25793
|
+
readonly timestamp: string;
|
|
25794
|
+
readonly non_l4l_tax_duty_fx_transaction: io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction;
|
|
25795
|
+
}
|
|
25796
|
+
|
|
25481
25797
|
interface Notification {
|
|
25482
25798
|
readonly order: io.flow.internal.v0.models.Decision;
|
|
25483
25799
|
}
|
|
@@ -25724,6 +26040,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25724
26040
|
readonly order_number: string;
|
|
25725
26041
|
readonly price: io.flow.common.v0.models.PriceWithBase;
|
|
25726
26042
|
readonly refunded_at?: string;
|
|
26043
|
+
readonly payment_type?: io.flow.internal.v0.enums.RefundTransactionPaymentType;
|
|
25727
26044
|
}
|
|
25728
26045
|
|
|
25729
26046
|
interface OrderRefundTransactionDeleted {
|
|
@@ -27182,6 +27499,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27182
27499
|
readonly screening_mode?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
27183
27500
|
readonly decision_source?: io.flow.internal.v0.enums.SellabilityDecisionSource;
|
|
27184
27501
|
readonly rule_matches?: io.flow.internal.v0.models.SellabilityRuleMatch[];
|
|
27502
|
+
readonly name?: string;
|
|
27503
|
+
readonly description?: string;
|
|
27504
|
+
readonly price?: io.flow.common.v0.models.Money;
|
|
27505
|
+
readonly relative_ranking?: number;
|
|
27185
27506
|
readonly created_at?: string;
|
|
27186
27507
|
}
|
|
27187
27508
|
|
|
@@ -28258,6 +28579,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28258
28579
|
readonly manual_capture?: boolean;
|
|
28259
28580
|
readonly partial_fulfillment?: boolean;
|
|
28260
28581
|
readonly partial_refund?: boolean;
|
|
28582
|
+
readonly credit_payment?: boolean;
|
|
28261
28583
|
}
|
|
28262
28584
|
|
|
28263
28585
|
interface ReportingFx {
|
|
@@ -28487,6 +28809,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28487
28809
|
readonly created_at: string;
|
|
28488
28810
|
readonly updated_at: string;
|
|
28489
28811
|
readonly updated_by?: io.flow.common.v0.models.User;
|
|
28812
|
+
readonly agent_review_status?: string;
|
|
28813
|
+
readonly agent_reviewed_at?: string;
|
|
28814
|
+
readonly agent_confidence?: number;
|
|
28815
|
+
readonly agent_confidence_threshold?: number;
|
|
28490
28816
|
}
|
|
28491
28817
|
|
|
28492
28818
|
interface RestrictionItem {
|
|
@@ -28541,6 +28867,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28541
28867
|
readonly agent_review_status?: string;
|
|
28542
28868
|
readonly agent_reviewed_at?: string;
|
|
28543
28869
|
readonly agent_confidence?: number;
|
|
28870
|
+
readonly agent_confidence_threshold?: number;
|
|
28544
28871
|
readonly updated_at: string;
|
|
28545
28872
|
}
|
|
28546
28873
|
|
|
@@ -28662,9 +28989,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28662
28989
|
}
|
|
28663
28990
|
|
|
28664
28991
|
interface RestrictionProductSummary {
|
|
28992
|
+
readonly product_id?: string;
|
|
28665
28993
|
readonly name: string;
|
|
28666
28994
|
readonly restrictions: io.flow.internal.v0.models.RestrictionItemReviewSummary[];
|
|
28667
28995
|
readonly prohibited_regions?: string[];
|
|
28996
|
+
readonly fatal_restricted_regions: string[];
|
|
28997
|
+
readonly fatal_review_pending_regions: string[];
|
|
28668
28998
|
}
|
|
28669
28999
|
|
|
28670
29000
|
interface RestrictionRule {
|
|
@@ -28684,6 +29014,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28684
29014
|
readonly attribute_names?: string[];
|
|
28685
29015
|
readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
|
|
28686
29016
|
readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
29017
|
+
readonly auto_accept_keyword_cancelling?: io.flow.internal.v0.models.AutoAcceptKeywordCancelling[];
|
|
28687
29018
|
readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
28688
29019
|
readonly evaluation_mode: io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
|
|
28689
29020
|
}
|
|
@@ -28746,6 +29077,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28746
29077
|
readonly attribute_names?: string[];
|
|
28747
29078
|
readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
|
|
28748
29079
|
readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
29080
|
+
readonly auto_accept_keyword_cancelling?: io.flow.internal.v0.models.AutoAcceptKeywordCancelling[];
|
|
28749
29081
|
readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
28750
29082
|
readonly evaluation_mode: io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
|
|
28751
29083
|
}
|
|
@@ -29005,6 +29337,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29005
29337
|
readonly tracking_summary?: io.flow.internal.v0.models.SearchTrackingSummary;
|
|
29006
29338
|
}
|
|
29007
29339
|
|
|
29340
|
+
interface ReturnTriggerCreditRefund {
|
|
29341
|
+
readonly discriminator: 'by_credit_refund';
|
|
29342
|
+
readonly order_refund_transaction_id: string;
|
|
29343
|
+
}
|
|
29344
|
+
|
|
29008
29345
|
interface ReturnTriggerRefund {
|
|
29009
29346
|
readonly discriminator: 'by_refund';
|
|
29010
29347
|
readonly refund: io.flow.payment.v0.models.RefundReference;
|
|
@@ -29324,6 +29661,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29324
29661
|
readonly amount: io.flow.common.v0.models.Money;
|
|
29325
29662
|
readonly tax: io.flow.common.v0.models.Money;
|
|
29326
29663
|
readonly label_id?: string;
|
|
29664
|
+
readonly shipping_label?: io.flow.label.v0.models.ShippingLabelSummary;
|
|
29327
29665
|
readonly base?: io.flow.trueup.v0.models.LabelBase;
|
|
29328
29666
|
readonly surcharges?: io.flow.trueup.v0.models.LabelSurcharge[];
|
|
29329
29667
|
}
|
|
@@ -29557,6 +29895,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29557
29895
|
readonly shopify_inventory_item_delete: io.flow.internal.v0.models.ShopifyInventoryItemDeleteWebhookEvent;
|
|
29558
29896
|
}
|
|
29559
29897
|
|
|
29898
|
+
interface ShopifyInventoryItemDeleteV2 {
|
|
29899
|
+
readonly discriminator: 'shopify_inventory_item_delete_v2';
|
|
29900
|
+
readonly event_id: string;
|
|
29901
|
+
readonly timestamp: string;
|
|
29902
|
+
readonly organization: string;
|
|
29903
|
+
readonly triggered_at: string;
|
|
29904
|
+
readonly webhook_id: string;
|
|
29905
|
+
readonly inventory_item_id: string;
|
|
29906
|
+
readonly event: io.flow.shopify.external.v2.v0.models.InventoryItemDeleteEvent;
|
|
29907
|
+
}
|
|
29908
|
+
|
|
29560
29909
|
interface ShopifyInventoryItemDeleteWebhookEvent {
|
|
29561
29910
|
readonly id: string;
|
|
29562
29911
|
readonly inventory_item_delete: io.flow.shopify.external.v0.models.ShopifyInventoryItemDelete;
|
|
@@ -29578,6 +29927,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29578
29927
|
readonly shopify_inventory_item_update: io.flow.internal.v0.models.ShopifyInventoryItemUpdateWebhookEvent;
|
|
29579
29928
|
}
|
|
29580
29929
|
|
|
29930
|
+
interface ShopifyInventoryItemUpdateV2 {
|
|
29931
|
+
readonly discriminator: 'shopify_inventory_item_update_v2';
|
|
29932
|
+
readonly event_id: string;
|
|
29933
|
+
readonly timestamp: string;
|
|
29934
|
+
readonly organization: string;
|
|
29935
|
+
readonly triggered_at: string;
|
|
29936
|
+
readonly webhook_id: string;
|
|
29937
|
+
readonly inventory_item_id: string;
|
|
29938
|
+
readonly variant_id?: string;
|
|
29939
|
+
readonly event: io.flow.shopify.external.v2.v0.models.InventoryItemEvent;
|
|
29940
|
+
}
|
|
29941
|
+
|
|
29581
29942
|
interface ShopifyInventoryItemUpdateWebhookEvent {
|
|
29582
29943
|
readonly id: string;
|
|
29583
29944
|
readonly inventory_item: io.flow.shopify.markets.v0.models.ShopifyInventoryItem;
|
|
@@ -29613,6 +29974,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29613
29974
|
readonly discrepancies: io.flow.internal.v0.models.ShopifyMarketsDiscrepancy[];
|
|
29614
29975
|
}
|
|
29615
29976
|
|
|
29977
|
+
interface ShopifyMarketsEvent {
|
|
29978
|
+
readonly placeholder?: any /*json*/;
|
|
29979
|
+
}
|
|
29980
|
+
|
|
29616
29981
|
interface ShopifyMarketsIncorporationCountry {
|
|
29617
29982
|
readonly country: string;
|
|
29618
29983
|
readonly state?: string;
|
|
@@ -30058,6 +30423,42 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30058
30423
|
readonly product: io.flow.shopify.external.v0.models.Product;
|
|
30059
30424
|
}
|
|
30060
30425
|
|
|
30426
|
+
interface ShopifyProductDataCreateV2 {
|
|
30427
|
+
readonly discriminator: 'shopify_product_data_create_v2';
|
|
30428
|
+
readonly event_id: string;
|
|
30429
|
+
readonly timestamp: string;
|
|
30430
|
+
readonly organization: string;
|
|
30431
|
+
readonly triggered_at: string;
|
|
30432
|
+
readonly webhook_id: string;
|
|
30433
|
+
readonly product_id: string;
|
|
30434
|
+
readonly variant_id?: string;
|
|
30435
|
+
readonly event: io.flow.shopify.external.v2.v0.models.ProductEvent;
|
|
30436
|
+
}
|
|
30437
|
+
|
|
30438
|
+
interface ShopifyProductDataDeleteV2 {
|
|
30439
|
+
readonly discriminator: 'shopify_product_data_delete_v2';
|
|
30440
|
+
readonly event_id: string;
|
|
30441
|
+
readonly timestamp: string;
|
|
30442
|
+
readonly organization: string;
|
|
30443
|
+
readonly triggered_at: string;
|
|
30444
|
+
readonly webhook_id: string;
|
|
30445
|
+
readonly product_id: string;
|
|
30446
|
+
readonly variant_id?: string;
|
|
30447
|
+
readonly event: io.flow.shopify.external.v2.v0.models.ProductEvent;
|
|
30448
|
+
}
|
|
30449
|
+
|
|
30450
|
+
interface ShopifyProductDataUpdateV2 {
|
|
30451
|
+
readonly discriminator: 'shopify_product_data_update_v2';
|
|
30452
|
+
readonly event_id: string;
|
|
30453
|
+
readonly timestamp: string;
|
|
30454
|
+
readonly organization: string;
|
|
30455
|
+
readonly triggered_at: string;
|
|
30456
|
+
readonly webhook_id: string;
|
|
30457
|
+
readonly product_id: string;
|
|
30458
|
+
readonly variant_id?: string;
|
|
30459
|
+
readonly event: io.flow.shopify.external.v2.v0.models.ProductEvent;
|
|
30460
|
+
}
|
|
30461
|
+
|
|
30061
30462
|
interface ShopifyProductDeleteDeleted {
|
|
30062
30463
|
readonly discriminator: 'shopify_product_delete_deleted';
|
|
30063
30464
|
readonly event_id: string;
|
|
@@ -30079,6 +30480,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30079
30480
|
readonly product_delete: io.flow.shopify.external.v0.models.ProductDelete;
|
|
30080
30481
|
}
|
|
30081
30482
|
|
|
30483
|
+
interface ShopifyProductMetafieldsUpdateV2 {
|
|
30484
|
+
readonly discriminator: 'shopify_product_metafields_update_v2';
|
|
30485
|
+
readonly event_id: string;
|
|
30486
|
+
readonly timestamp: string;
|
|
30487
|
+
readonly organization: string;
|
|
30488
|
+
readonly triggered_at: string;
|
|
30489
|
+
readonly webhook_id: string;
|
|
30490
|
+
readonly product_id: string;
|
|
30491
|
+
readonly variant_id?: string;
|
|
30492
|
+
readonly event: io.flow.shopify.external.v2.v0.models.ProductEvent;
|
|
30493
|
+
}
|
|
30494
|
+
|
|
30082
30495
|
interface ShopifyProductTaxonomyAttribute {
|
|
30083
30496
|
readonly id: string;
|
|
30084
30497
|
readonly handle: string;
|
|
@@ -30146,6 +30559,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30146
30559
|
readonly api_version: string;
|
|
30147
30560
|
}
|
|
30148
30561
|
|
|
30562
|
+
interface ShopifyProductVariantComponentsV2 {
|
|
30563
|
+
readonly discriminator: 'shopify_product_variant_components_v2';
|
|
30564
|
+
readonly event_id: string;
|
|
30565
|
+
readonly timestamp: string;
|
|
30566
|
+
readonly organization: string;
|
|
30567
|
+
readonly triggered_at: string;
|
|
30568
|
+
readonly webhook_id: string;
|
|
30569
|
+
readonly product_id: string;
|
|
30570
|
+
readonly variant_id?: string;
|
|
30571
|
+
readonly event: io.flow.shopify.external.v2.v0.models.ProductEvent;
|
|
30572
|
+
}
|
|
30573
|
+
|
|
30574
|
+
interface ShopifyProductVariantDataV2 {
|
|
30575
|
+
readonly discriminator: 'shopify_product_variant_data_v2';
|
|
30576
|
+
readonly event_id: string;
|
|
30577
|
+
readonly timestamp: string;
|
|
30578
|
+
readonly organization: string;
|
|
30579
|
+
readonly triggered_at: string;
|
|
30580
|
+
readonly webhook_id: string;
|
|
30581
|
+
readonly product_id: string;
|
|
30582
|
+
readonly variant_id?: string;
|
|
30583
|
+
readonly event: io.flow.shopify.external.v2.v0.models.ProductEvent;
|
|
30584
|
+
}
|
|
30585
|
+
|
|
30149
30586
|
interface ShopifyProductWrapper {
|
|
30150
30587
|
readonly shopify_product: io.flow.shopify.external.v0.models.Product;
|
|
30151
30588
|
readonly deleted_at?: string;
|
|
@@ -31459,6 +31896,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
31459
31896
|
readonly details: io.flow.internal.v0.unions.AdjustmentDetails;
|
|
31460
31897
|
}
|
|
31461
31898
|
|
|
31899
|
+
interface TransactionAdjustmentDeleted {
|
|
31900
|
+
readonly discriminator: 'transaction_adjustment_deleted';
|
|
31901
|
+
readonly event_id: string;
|
|
31902
|
+
readonly timestamp: string;
|
|
31903
|
+
readonly id: string;
|
|
31904
|
+
}
|
|
31905
|
+
|
|
31462
31906
|
interface TransactionAdjustmentForm {
|
|
31463
31907
|
readonly original_transaction_id: string;
|
|
31464
31908
|
readonly description: string;
|
|
@@ -31466,6 +31910,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
31466
31910
|
readonly type?: io.flow.internal.v0.enums.AdjustmentTransactionType;
|
|
31467
31911
|
}
|
|
31468
31912
|
|
|
31913
|
+
interface TransactionAdjustmentUpserted {
|
|
31914
|
+
readonly discriminator: 'transaction_adjustment_upserted';
|
|
31915
|
+
readonly event_id: string;
|
|
31916
|
+
readonly timestamp: string;
|
|
31917
|
+
readonly transaction_adjustment: io.flow.internal.v0.models.TransactionAdjustment;
|
|
31918
|
+
}
|
|
31919
|
+
|
|
31469
31920
|
interface TransactionReference {
|
|
31470
31921
|
readonly id: string;
|
|
31471
31922
|
}
|
|
@@ -31938,6 +32389,12 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31938
32389
|
| io.flow.internal.v0.models.OrderTransactionDeleted
|
|
31939
32390
|
| io.flow.internal.v0.models.LabelTransactionUpserted
|
|
31940
32391
|
| io.flow.internal.v0.models.LabelTransactionDeleted
|
|
32392
|
+
| io.flow.internal.v0.models.GeRevenueShareTransactionUpserted
|
|
32393
|
+
| io.flow.internal.v0.models.GeRevenueShareTransactionDeleted
|
|
32394
|
+
| io.flow.internal.v0.models.NonL4LTaxDutyFxTransactionUpserted
|
|
32395
|
+
| io.flow.internal.v0.models.NonL4LTaxDutyFxTransactionDeleted
|
|
32396
|
+
| io.flow.internal.v0.models.TransactionAdjustmentUpserted
|
|
32397
|
+
| io.flow.internal.v0.models.TransactionAdjustmentDeleted
|
|
31941
32398
|
| io.flow.internal.v0.models.ChannelBilledTransactionUpserted
|
|
31942
32399
|
| io.flow.internal.v0.models.ChannelBilledTransactionDeleted
|
|
31943
32400
|
| io.flow.internal.v0.models.TaxTransactionUpserted
|
|
@@ -32074,6 +32531,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
32074
32531
|
| io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputDeleted
|
|
32075
32532
|
| io.flow.internal.v0.models.OutboundShippingCostUpserted
|
|
32076
32533
|
| io.flow.internal.v0.models.OutboundShippingCostDeleted
|
|
32534
|
+
| io.flow.internal.v0.models.AverageOrderValueUpserted
|
|
32535
|
+
| io.flow.internal.v0.models.AverageOrderValueDeleted
|
|
32077
32536
|
| io.flow.internal.v0.models.GuaranteedShippingPublishedOutputUpserted
|
|
32078
32537
|
| io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted
|
|
32079
32538
|
| io.flow.internal.v0.models.GuaranteedShippingSettingsUpserted
|
|
@@ -32112,8 +32571,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
32112
32571
|
| io.flow.internal.v0.models.OrderValidationDeleted
|
|
32113
32572
|
| io.flow.internal.v0.models.LabelCreationJobUpserted
|
|
32114
32573
|
| io.flow.internal.v0.models.LabelCreationJobDeleted
|
|
32115
|
-
| io.flow.internal.v0.models.
|
|
32116
|
-
| io.flow.internal.v0.models.
|
|
32574
|
+
| io.flow.internal.v0.models.GuaranteedShippingOrderGuaranteeUpserted
|
|
32575
|
+
| io.flow.internal.v0.models.GuaranteedShippingOrderGuaranteeDeleted
|
|
32117
32576
|
| io.flow.internal.v0.models.LabelTrackingSummaryUpserted
|
|
32118
32577
|
| io.flow.internal.v0.models.LabelTrackingSummaryDeleted
|
|
32119
32578
|
| io.flow.internal.v0.models.LogisticsCapabilitiesUpserted
|
|
@@ -32264,6 +32723,14 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
32264
32723
|
| io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted
|
|
32265
32724
|
| io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted
|
|
32266
32725
|
| io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted
|
|
32726
|
+
| io.flow.internal.v0.models.ShopifyProductDataCreateV2
|
|
32727
|
+
| io.flow.internal.v0.models.ShopifyProductDataUpdateV2
|
|
32728
|
+
| io.flow.internal.v0.models.ShopifyProductMetafieldsUpdateV2
|
|
32729
|
+
| io.flow.internal.v0.models.ShopifyProductVariantDataV2
|
|
32730
|
+
| io.flow.internal.v0.models.ShopifyProductVariantComponentsV2
|
|
32731
|
+
| io.flow.internal.v0.models.ShopifyProductDataDeleteV2
|
|
32732
|
+
| io.flow.internal.v0.models.ShopifyInventoryItemUpdateV2
|
|
32733
|
+
| io.flow.internal.v0.models.ShopifyInventoryItemDeleteV2
|
|
32267
32734
|
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted
|
|
32268
32735
|
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted
|
|
32269
32736
|
| io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted
|
|
@@ -32455,7 +32922,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
32455
32922
|
| io.flow.internal.v0.models.RestrictionAttributeConditionMultiple;
|
|
32456
32923
|
type ReturnTrigger =
|
|
32457
32924
|
| io.flow.internal.v0.models.ReturnTriggerRefund
|
|
32458
|
-
| io.flow.internal.v0.models.ReturnTriggerReversal
|
|
32925
|
+
| io.flow.internal.v0.models.ReturnTriggerReversal
|
|
32926
|
+
| io.flow.internal.v0.models.ReturnTriggerCreditRefund;
|
|
32459
32927
|
type RoutingEntity =
|
|
32460
32928
|
| io.flow.internal.v0.models.RoutingProcessor
|
|
32461
32929
|
| io.flow.internal.v0.models.RoutingAccount
|
|
@@ -32586,14 +33054,6 @@ export type AccountingPendingOrderMetadata =
|
|
|
32586
33054
|
export type AccountingReturnMetadata =
|
|
32587
33055
|
io.flow.internal.v0.models.AccountingReturnMetadata;
|
|
32588
33056
|
export type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
|
|
32589
|
-
export type AdaptiveShippingOrderGuarantee =
|
|
32590
|
-
io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
32591
|
-
export type AdaptiveShippingOrderGuaranteeDeleted =
|
|
32592
|
-
io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted;
|
|
32593
|
-
export type AdaptiveShippingOrderGuaranteeState =
|
|
32594
|
-
io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState;
|
|
32595
|
-
export type AdaptiveShippingOrderGuaranteeUpserted =
|
|
32596
|
-
io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted;
|
|
32597
33057
|
export type AdditionalImportTax =
|
|
32598
33058
|
io.flow.internal.v0.models.AdditionalImportTax;
|
|
32599
33059
|
export type AdjustmentAmount = io.flow.internal.v0.unions.AdjustmentAmount;
|
|
@@ -32699,6 +33159,9 @@ export type AfterpayRefundUpserted =
|
|
|
32699
33159
|
export type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
|
|
32700
33160
|
export type AgentReviewDetail = io.flow.internal.v0.models.AgentReviewDetail;
|
|
32701
33161
|
export type AiOutput = io.flow.internal.v0.unions.AiOutput;
|
|
33162
|
+
export type AiReviewBatchItemOutcome =
|
|
33163
|
+
io.flow.internal.v0.enums.AiReviewBatchItemOutcome;
|
|
33164
|
+
export type AiReviewBatchStatus = io.flow.internal.v0.enums.AiReviewBatchStatus;
|
|
32702
33165
|
export type AiReviewBatchSubmitted =
|
|
32703
33166
|
io.flow.internal.v0.models.AiReviewBatchSubmitted;
|
|
32704
33167
|
export type AiReviewConsumer = io.flow.internal.v0.enums.AiReviewConsumer;
|
|
@@ -32756,8 +33219,15 @@ export type AuthorizedOrderCharge =
|
|
|
32756
33219
|
io.flow.internal.v0.unions.AuthorizedOrderCharge;
|
|
32757
33220
|
export type AuthorizedShippingCharge =
|
|
32758
33221
|
io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
33222
|
+
export type AutoAcceptKeywordCancelling =
|
|
33223
|
+
io.flow.internal.v0.models.AutoAcceptKeywordCancelling;
|
|
32759
33224
|
export type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
|
|
32760
33225
|
export type AutoReviewCriteria = io.flow.internal.v0.models.AutoReviewCriteria;
|
|
33226
|
+
export type AverageOrderValue = io.flow.internal.v0.models.AverageOrderValue;
|
|
33227
|
+
export type AverageOrderValueDeleted =
|
|
33228
|
+
io.flow.internal.v0.models.AverageOrderValueDeleted;
|
|
33229
|
+
export type AverageOrderValueUpserted =
|
|
33230
|
+
io.flow.internal.v0.models.AverageOrderValueUpserted;
|
|
32761
33231
|
export type B2BFeeMorTaxTriggerMetadata =
|
|
32762
33232
|
io.flow.internal.v0.models.B2BFeeMorTaxTriggerMetadata;
|
|
32763
33233
|
export type B2BFeeMorTaxTriggerType =
|
|
@@ -32935,10 +33405,14 @@ export type CalculatorDtceProduct =
|
|
|
32935
33405
|
export type CalculatorEngine = io.flow.internal.v0.enums.CalculatorEngine;
|
|
32936
33406
|
export type CalculatorOrganizationSettings =
|
|
32937
33407
|
io.flow.internal.v0.models.CalculatorOrganizationSettings;
|
|
33408
|
+
export type CalculatorOrganizationSettingsCountryOfOriginForm =
|
|
33409
|
+
io.flow.internal.v0.models.CalculatorOrganizationSettingsCountryOfOriginForm;
|
|
32938
33410
|
export type CalculatorOrganizationSettingsDeleted =
|
|
32939
33411
|
io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted;
|
|
32940
33412
|
export type CalculatorOrganizationSettingsForm =
|
|
32941
33413
|
io.flow.internal.v0.models.CalculatorOrganizationSettingsForm;
|
|
33414
|
+
export type CalculatorOrganizationSettingsHsCodeForm =
|
|
33415
|
+
io.flow.internal.v0.models.CalculatorOrganizationSettingsHsCodeForm;
|
|
32942
33416
|
export type CalculatorOrganizationSettingsUpserted =
|
|
32943
33417
|
io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted;
|
|
32944
33418
|
export type CalculatorStamp = io.flow.internal.v0.unions.CalculatorStamp;
|
|
@@ -33842,8 +34316,12 @@ export type GeIngestionFileStatus =
|
|
|
33842
34316
|
io.flow.internal.v0.enums.GeIngestionFileStatus;
|
|
33843
34317
|
export type GeRevenueShareTransaction =
|
|
33844
34318
|
io.flow.internal.v0.models.GeRevenueShareTransaction;
|
|
34319
|
+
export type GeRevenueShareTransactionDeleted =
|
|
34320
|
+
io.flow.internal.v0.models.GeRevenueShareTransactionDeleted;
|
|
33845
34321
|
export type GeRevenueShareTransactionType =
|
|
33846
34322
|
io.flow.internal.v0.enums.GeRevenueShareTransactionType;
|
|
34323
|
+
export type GeRevenueShareTransactionUpserted =
|
|
34324
|
+
io.flow.internal.v0.models.GeRevenueShareTransactionUpserted;
|
|
33847
34325
|
export type GenerateLoad = io.flow.internal.v0.unions.GenerateLoad;
|
|
33848
34326
|
export type GenerateLoadMultipleOrgs =
|
|
33849
34327
|
io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
@@ -33882,6 +34360,14 @@ export type GuaranteedShippingCalibrationForm =
|
|
|
33882
34360
|
io.flow.internal.v0.models.GuaranteedShippingCalibrationForm;
|
|
33883
34361
|
export type GuaranteedShippingCalibrationLaneForm =
|
|
33884
34362
|
io.flow.internal.v0.models.GuaranteedShippingCalibrationLaneForm;
|
|
34363
|
+
export type GuaranteedShippingOrderGuarantee =
|
|
34364
|
+
io.flow.internal.v0.models.GuaranteedShippingOrderGuarantee;
|
|
34365
|
+
export type GuaranteedShippingOrderGuaranteeDeleted =
|
|
34366
|
+
io.flow.internal.v0.models.GuaranteedShippingOrderGuaranteeDeleted;
|
|
34367
|
+
export type GuaranteedShippingOrderGuaranteeState =
|
|
34368
|
+
io.flow.internal.v0.enums.GuaranteedShippingOrderGuaranteeState;
|
|
34369
|
+
export type GuaranteedShippingOrderGuaranteeUpserted =
|
|
34370
|
+
io.flow.internal.v0.models.GuaranteedShippingOrderGuaranteeUpserted;
|
|
33885
34371
|
export type GuaranteedShippingPublication =
|
|
33886
34372
|
io.flow.internal.v0.models.GuaranteedShippingPublication;
|
|
33887
34373
|
export type GuaranteedShippingPublicationForm =
|
|
@@ -34299,8 +34785,12 @@ export type NonL4LTaxDutyFxFeeMetadata =
|
|
|
34299
34785
|
io.flow.internal.v0.models.NonL4LTaxDutyFxFeeMetadata;
|
|
34300
34786
|
export type NonL4LTaxDutyFxTransaction =
|
|
34301
34787
|
io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction;
|
|
34788
|
+
export type NonL4LTaxDutyFxTransactionDeleted =
|
|
34789
|
+
io.flow.internal.v0.models.NonL4LTaxDutyFxTransactionDeleted;
|
|
34302
34790
|
export type NonL4LTaxDutyFxTransactionType =
|
|
34303
34791
|
io.flow.internal.v0.enums.NonL4LTaxDutyFxTransactionType;
|
|
34792
|
+
export type NonL4LTaxDutyFxTransactionUpserted =
|
|
34793
|
+
io.flow.internal.v0.models.NonL4LTaxDutyFxTransactionUpserted;
|
|
34304
34794
|
export type Notification = io.flow.internal.v0.models.Notification;
|
|
34305
34795
|
export type OnboardingAuditMessage =
|
|
34306
34796
|
io.flow.internal.v0.models.OnboardingAuditMessage;
|
|
@@ -34961,6 +35451,8 @@ export type Redirect = io.flow.internal.v0.models.Redirect;
|
|
|
34961
35451
|
export type RedirectActionCompleted =
|
|
34962
35452
|
io.flow.internal.v0.models.RedirectActionCompleted;
|
|
34963
35453
|
export type RedirectReason = io.flow.internal.v0.enums.RedirectReason;
|
|
35454
|
+
export type RefundTransactionPaymentType =
|
|
35455
|
+
io.flow.internal.v0.enums.RefundTransactionPaymentType;
|
|
34964
35456
|
export type RegisteredExporterTariffEligibilityData =
|
|
34965
35457
|
io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData;
|
|
34966
35458
|
export type RegisteredExporterTariffEligibilityForm =
|
|
@@ -35207,6 +35699,8 @@ export type ReturnPolicyUpserted =
|
|
|
35207
35699
|
io.flow.internal.v0.models.ReturnPolicyUpserted;
|
|
35208
35700
|
export type ReturnSummary = io.flow.internal.v0.models.ReturnSummary;
|
|
35209
35701
|
export type ReturnTrigger = io.flow.internal.v0.unions.ReturnTrigger;
|
|
35702
|
+
export type ReturnTriggerCreditRefund =
|
|
35703
|
+
io.flow.internal.v0.models.ReturnTriggerCreditRefund;
|
|
35210
35704
|
export type ReturnTriggerRefund =
|
|
35211
35705
|
io.flow.internal.v0.models.ReturnTriggerRefund;
|
|
35212
35706
|
export type ReturnTriggerReversal =
|
|
@@ -35343,12 +35837,16 @@ export type ShopifyInventoryItemDeleteDeleted =
|
|
|
35343
35837
|
io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted;
|
|
35344
35838
|
export type ShopifyInventoryItemDeleteUpserted =
|
|
35345
35839
|
io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted;
|
|
35840
|
+
export type ShopifyInventoryItemDeleteV2 =
|
|
35841
|
+
io.flow.internal.v0.models.ShopifyInventoryItemDeleteV2;
|
|
35346
35842
|
export type ShopifyInventoryItemDeleteWebhookEvent =
|
|
35347
35843
|
io.flow.internal.v0.models.ShopifyInventoryItemDeleteWebhookEvent;
|
|
35348
35844
|
export type ShopifyInventoryItemUpdateDeleted =
|
|
35349
35845
|
io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted;
|
|
35350
35846
|
export type ShopifyInventoryItemUpdateUpserted =
|
|
35351
35847
|
io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted;
|
|
35848
|
+
export type ShopifyInventoryItemUpdateV2 =
|
|
35849
|
+
io.flow.internal.v0.models.ShopifyInventoryItemUpdateV2;
|
|
35352
35850
|
export type ShopifyInventoryItemUpdateWebhookEvent =
|
|
35353
35851
|
io.flow.internal.v0.models.ShopifyInventoryItemUpdateWebhookEvent;
|
|
35354
35852
|
export type ShopifyMarketsBestSellingProduct =
|
|
@@ -35363,6 +35861,8 @@ export type ShopifyMarketsDiscrepancy =
|
|
|
35363
35861
|
io.flow.internal.v0.models.ShopifyMarketsDiscrepancy;
|
|
35364
35862
|
export type ShopifyMarketsDiscrepancyData =
|
|
35365
35863
|
io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData;
|
|
35864
|
+
export type ShopifyMarketsEvent =
|
|
35865
|
+
io.flow.internal.v0.models.ShopifyMarketsEvent;
|
|
35366
35866
|
export type ShopifyMarketsHtsNumberAvailable =
|
|
35367
35867
|
io.flow.internal.v0.enums.ShopifyMarketsHtsNumberAvailable;
|
|
35368
35868
|
export type ShopifyMarketsIncorporationCountry =
|
|
@@ -35501,12 +36001,20 @@ export type ShopifyProductCreateUpserted =
|
|
|
35501
36001
|
io.flow.internal.v0.models.ShopifyProductCreateUpserted;
|
|
35502
36002
|
export type ShopifyProductCreateWebhookEvent =
|
|
35503
36003
|
io.flow.internal.v0.models.ShopifyProductCreateWebhookEvent;
|
|
36004
|
+
export type ShopifyProductDataCreateV2 =
|
|
36005
|
+
io.flow.internal.v0.models.ShopifyProductDataCreateV2;
|
|
36006
|
+
export type ShopifyProductDataDeleteV2 =
|
|
36007
|
+
io.flow.internal.v0.models.ShopifyProductDataDeleteV2;
|
|
36008
|
+
export type ShopifyProductDataUpdateV2 =
|
|
36009
|
+
io.flow.internal.v0.models.ShopifyProductDataUpdateV2;
|
|
35504
36010
|
export type ShopifyProductDeleteDeleted =
|
|
35505
36011
|
io.flow.internal.v0.models.ShopifyProductDeleteDeleted;
|
|
35506
36012
|
export type ShopifyProductDeleteUpserted =
|
|
35507
36013
|
io.flow.internal.v0.models.ShopifyProductDeleteUpserted;
|
|
35508
36014
|
export type ShopifyProductDeleteWebhookEvent =
|
|
35509
36015
|
io.flow.internal.v0.models.ShopifyProductDeleteWebhookEvent;
|
|
36016
|
+
export type ShopifyProductMetafieldsUpdateV2 =
|
|
36017
|
+
io.flow.internal.v0.models.ShopifyProductMetafieldsUpdateV2;
|
|
35510
36018
|
export type ShopifyProductTaxonomyAttribute =
|
|
35511
36019
|
io.flow.internal.v0.models.ShopifyProductTaxonomyAttribute;
|
|
35512
36020
|
export type ShopifyProductTaxonomyAttributeDeleted =
|
|
@@ -35525,6 +36033,10 @@ export type ShopifyProductUpdateUpserted =
|
|
|
35525
36033
|
io.flow.internal.v0.models.ShopifyProductUpdateUpserted;
|
|
35526
36034
|
export type ShopifyProductUpdateWebhookEvent =
|
|
35527
36035
|
io.flow.internal.v0.models.ShopifyProductUpdateWebhookEvent;
|
|
36036
|
+
export type ShopifyProductVariantComponentsV2 =
|
|
36037
|
+
io.flow.internal.v0.models.ShopifyProductVariantComponentsV2;
|
|
36038
|
+
export type ShopifyProductVariantDataV2 =
|
|
36039
|
+
io.flow.internal.v0.models.ShopifyProductVariantDataV2;
|
|
35528
36040
|
export type ShopifyProductWrapper =
|
|
35529
36041
|
io.flow.internal.v0.models.ShopifyProductWrapper;
|
|
35530
36042
|
export type ShopifyRateCustomsDetail =
|
|
@@ -35849,8 +36361,12 @@ export type TrackingWebhook = io.flow.internal.v0.models.TrackingWebhook;
|
|
|
35849
36361
|
export type Transaction = io.flow.internal.v0.unions.Transaction;
|
|
35850
36362
|
export type TransactionAdjustment =
|
|
35851
36363
|
io.flow.internal.v0.models.TransactionAdjustment;
|
|
36364
|
+
export type TransactionAdjustmentDeleted =
|
|
36365
|
+
io.flow.internal.v0.models.TransactionAdjustmentDeleted;
|
|
35852
36366
|
export type TransactionAdjustmentForm =
|
|
35853
36367
|
io.flow.internal.v0.models.TransactionAdjustmentForm;
|
|
36368
|
+
export type TransactionAdjustmentUpserted =
|
|
36369
|
+
io.flow.internal.v0.models.TransactionAdjustmentUpserted;
|
|
35854
36370
|
export type TransactionPostingMethod =
|
|
35855
36371
|
io.flow.internal.v0.enums.TransactionPostingMethod;
|
|
35856
36372
|
export type TransactionReference =
|