@flowio/types 11.24.144 → 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 +393 -43
- package/dist/api.d.ts +22 -3
- package/package.json +1 -1
- package/src/api-internal.ts +523 -52
- package/src/api.ts +32 -2
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'
|
|
@@ -16439,6 +16641,7 @@ declare namespace io.flow.sellability.v0.enums {
|
|
|
16439
16641
|
| 'ineligible_category'
|
|
16440
16642
|
| 'wait_for_high_fidelity'
|
|
16441
16643
|
| 'external_service_unavailable';
|
|
16644
|
+
type SellabilityReprocessPolicy = 'default' | 'force';
|
|
16442
16645
|
type SellabilityRequestStatus = 'commit';
|
|
16443
16646
|
type SellabilityResultErrorCode =
|
|
16444
16647
|
| 'insufficient_details'
|
|
@@ -16542,6 +16745,7 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
16542
16745
|
readonly taxonomy_category: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
16543
16746
|
readonly inferred_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
16544
16747
|
readonly mode: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
16748
|
+
readonly reprocess_policy?: io.flow.sellability.v0.enums.SellabilityReprocessPolicy;
|
|
16545
16749
|
readonly catalog_size?: number;
|
|
16546
16750
|
readonly relative_ranking?: number;
|
|
16547
16751
|
readonly dry_run?: boolean;
|
|
@@ -16822,12 +17026,29 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16822
17026
|
| 'invalid_bank_account';
|
|
16823
17027
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
16824
17028
|
type AccountType = 'channel' | 'organization';
|
|
16825
|
-
type AdaptiveShippingOrderGuaranteeState = 'confirmed' | 'voided';
|
|
16826
17029
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
16827
17030
|
type AdyenIntegrationType =
|
|
16828
17031
|
| 'hosted_payment_page'
|
|
16829
17032
|
| 'checkout_payments_api'
|
|
16830
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';
|
|
16831
17052
|
type AiReviewConsumer = 'restrictions' | 'sellability' | 'harmonization';
|
|
16832
17053
|
type AiReviewFailureReason =
|
|
16833
17054
|
| 'item_errored'
|
|
@@ -17420,6 +17641,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17420
17641
|
| 'order_transaction_deleted'
|
|
17421
17642
|
| 'label_transaction_upserted'
|
|
17422
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'
|
|
17423
17650
|
| 'channel_billed_transaction_upserted'
|
|
17424
17651
|
| 'channel_billed_transaction_deleted'
|
|
17425
17652
|
| 'tax_transaction_upserted'
|
|
@@ -17596,8 +17823,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17596
17823
|
| 'order_validation_deleted'
|
|
17597
17824
|
| 'label_creation_job_upserted'
|
|
17598
17825
|
| 'label_creation_job_deleted'
|
|
17599
|
-
| '
|
|
17600
|
-
| '
|
|
17826
|
+
| 'guaranteed_shipping_order_guarantee_upserted'
|
|
17827
|
+
| 'guaranteed_shipping_order_guarantee_deleted'
|
|
17601
17828
|
| 'label_tracking_summary_upserted'
|
|
17602
17829
|
| 'label_tracking_summary_deleted'
|
|
17603
17830
|
| 'logistics_capabilities_upserted'
|
|
@@ -17748,6 +17975,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17748
17975
|
| 'shopify_inventory_item_update_deleted'
|
|
17749
17976
|
| 'shopify_inventory_item_delete_upserted'
|
|
17750
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'
|
|
17751
17986
|
| 'shopify_monitoring_order_monitor_event_upserted'
|
|
17752
17987
|
| 'shopify_monitoring_order_monitor_event_deleted'
|
|
17753
17988
|
| 'shopify_order_fulfillments_snapshot_upserted'
|
|
@@ -17850,6 +18085,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17850
18085
|
| 'sync_product_catalog'
|
|
17851
18086
|
| 'shopify_webhook'
|
|
17852
18087
|
| 'guaranteed_shipping_state';
|
|
18088
|
+
type GuaranteedShippingOrderGuaranteeState = 'confirmed' | 'voided';
|
|
17853
18089
|
type GuaranteedShippingPublicationStatus =
|
|
17854
18090
|
| 'published'
|
|
17855
18091
|
| 'not_found'
|
|
@@ -18124,6 +18360,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18124
18360
|
type RateSource = 'calculated' | 'market';
|
|
18125
18361
|
type RaveenaItemType = 'physical' | 'digital';
|
|
18126
18362
|
type RedirectReason = 'three_d_secure';
|
|
18363
|
+
type RefundTransactionPaymentType = 'globale' | 'third_party' | 'credit';
|
|
18127
18364
|
type RejectionReason =
|
|
18128
18365
|
| 'merchant_policy'
|
|
18129
18366
|
| 'previous_chargebacks'
|
|
@@ -18224,6 +18461,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18224
18461
|
| 'fast_screen_hs_chapter_exception'
|
|
18225
18462
|
| 'fast_screen_active_mode'
|
|
18226
18463
|
| 'unserviceable_taxonomy'
|
|
18464
|
+
| 'insufficient_details'
|
|
18227
18465
|
| 'pending_classification'
|
|
18228
18466
|
| 'pending_agent_review'
|
|
18229
18467
|
| 'screen_failed'
|
|
@@ -18719,31 +18957,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18719
18957
|
readonly quantity: number;
|
|
18720
18958
|
}
|
|
18721
18959
|
|
|
18722
|
-
interface AdaptiveShippingOrderGuarantee {
|
|
18723
|
-
readonly id: string;
|
|
18724
|
-
readonly organization_id: string;
|
|
18725
|
-
readonly order_number: string;
|
|
18726
|
-
readonly guarantee_state: io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState;
|
|
18727
|
-
readonly label_id?: string;
|
|
18728
|
-
readonly notification_id?: string;
|
|
18729
|
-
}
|
|
18730
|
-
|
|
18731
|
-
interface AdaptiveShippingOrderGuaranteeDeleted {
|
|
18732
|
-
readonly discriminator: 'adaptive_shipping_order_guarantee_deleted';
|
|
18733
|
-
readonly event_id: string;
|
|
18734
|
-
readonly timestamp: string;
|
|
18735
|
-
readonly organization: string;
|
|
18736
|
-
readonly id: string;
|
|
18737
|
-
}
|
|
18738
|
-
|
|
18739
|
-
interface AdaptiveShippingOrderGuaranteeUpserted {
|
|
18740
|
-
readonly discriminator: 'adaptive_shipping_order_guarantee_upserted';
|
|
18741
|
-
readonly event_id: string;
|
|
18742
|
-
readonly timestamp: string;
|
|
18743
|
-
readonly organization: string;
|
|
18744
|
-
readonly adaptive_shipping_order_guarantee: io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
18745
|
-
}
|
|
18746
|
-
|
|
18747
18960
|
interface AdditionalImportTax {
|
|
18748
18961
|
readonly name?: string;
|
|
18749
18962
|
readonly additional_import_tax_value?: io.flow.common.v0.models.Money;
|
|
@@ -19367,6 +19580,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19367
19580
|
readonly charge_trigger: io.flow.internal.v0.enums.OrderChargeTrigger;
|
|
19368
19581
|
}
|
|
19369
19582
|
|
|
19583
|
+
interface AutoAcceptKeywordCancelling {
|
|
19584
|
+
readonly accept_keyword: string;
|
|
19585
|
+
readonly negative_keywords: string[];
|
|
19586
|
+
}
|
|
19587
|
+
|
|
19370
19588
|
interface AutoReviewCriteria {
|
|
19371
19589
|
readonly hs_code?: string;
|
|
19372
19590
|
readonly keywords?: string[];
|
|
@@ -19381,6 +19599,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19381
19599
|
readonly updated_at: number;
|
|
19382
19600
|
readonly run_id: string;
|
|
19383
19601
|
readonly model_version: string;
|
|
19602
|
+
readonly model_diagnostics?: string;
|
|
19384
19603
|
}
|
|
19385
19604
|
|
|
19386
19605
|
interface AverageOrderValueDeleted {
|
|
@@ -20112,6 +20331,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20112
20331
|
readonly default_hs_code?: string;
|
|
20113
20332
|
}
|
|
20114
20333
|
|
|
20334
|
+
interface CalculatorOrganizationSettingsCountryOfOriginForm {
|
|
20335
|
+
readonly country_of_origin: string;
|
|
20336
|
+
}
|
|
20337
|
+
|
|
20115
20338
|
interface CalculatorOrganizationSettingsDeleted {
|
|
20116
20339
|
readonly discriminator: 'calculator_organization_settings_deleted';
|
|
20117
20340
|
readonly event_id: string;
|
|
@@ -20125,6 +20348,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20125
20348
|
readonly default_hs_code?: string;
|
|
20126
20349
|
}
|
|
20127
20350
|
|
|
20351
|
+
interface CalculatorOrganizationSettingsHsCodeForm {
|
|
20352
|
+
readonly default_hs_code: string;
|
|
20353
|
+
}
|
|
20354
|
+
|
|
20128
20355
|
interface CalculatorOrganizationSettingsUpserted {
|
|
20129
20356
|
readonly discriminator: 'calculator_organization_settings_upserted';
|
|
20130
20357
|
readonly event_id: string;
|
|
@@ -20279,6 +20506,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20279
20506
|
readonly cost: io.flow.common.v0.models.Money;
|
|
20280
20507
|
readonly min_delivery_days?: number;
|
|
20281
20508
|
readonly max_delivery_days?: number;
|
|
20509
|
+
readonly model_diagnostics?: string;
|
|
20282
20510
|
}
|
|
20283
20511
|
|
|
20284
20512
|
interface CarrierFile {
|
|
@@ -23584,6 +23812,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23584
23812
|
readonly discriminator: 'ge_revenue_share_transaction';
|
|
23585
23813
|
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
23586
23814
|
readonly ge_revenue_share: io.flow.internal.v0.models.Fee;
|
|
23815
|
+
readonly capture_id: string;
|
|
23587
23816
|
readonly id: string;
|
|
23588
23817
|
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
23589
23818
|
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
@@ -23594,6 +23823,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23594
23823
|
readonly created_at: string;
|
|
23595
23824
|
}
|
|
23596
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
|
+
|
|
23597
23840
|
interface GenerateLoadMultipleOrgs {
|
|
23598
23841
|
readonly discriminator: 'generate_load_multiple_orgs';
|
|
23599
23842
|
readonly organization_ids: string[];
|
|
@@ -23721,6 +23964,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23721
23964
|
readonly destination_country?: string;
|
|
23722
23965
|
}
|
|
23723
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
|
+
|
|
23724
23992
|
interface GuaranteedShippingPublication {
|
|
23725
23993
|
readonly channel_id: string;
|
|
23726
23994
|
readonly organization_id: string;
|
|
@@ -23751,7 +24019,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23751
24019
|
readonly outbound_shipping_cost_source_updated_at: number;
|
|
23752
24020
|
readonly average_order_value_source_updated_at: number;
|
|
23753
24021
|
readonly target_flat_rates_source_updated_at: number;
|
|
23754
|
-
readonly published_at
|
|
24022
|
+
readonly published_at: number;
|
|
23755
24023
|
}
|
|
23756
24024
|
|
|
23757
24025
|
interface GuaranteedShippingPublishedOutputDeleted {
|
|
@@ -24374,6 +24642,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24374
24642
|
interface ItemHs6Override {
|
|
24375
24643
|
readonly item_number: string;
|
|
24376
24644
|
readonly hs6: string;
|
|
24645
|
+
readonly classification_scope?: io.flow.internal.v0.enums.ClassificationScope;
|
|
24377
24646
|
}
|
|
24378
24647
|
|
|
24379
24648
|
interface ItemHs6OverrideForm {
|
|
@@ -25511,6 +25780,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25511
25780
|
readonly created_at: string;
|
|
25512
25781
|
}
|
|
25513
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
|
+
|
|
25514
25797
|
interface Notification {
|
|
25515
25798
|
readonly order: io.flow.internal.v0.models.Decision;
|
|
25516
25799
|
}
|
|
@@ -25757,6 +26040,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25757
26040
|
readonly order_number: string;
|
|
25758
26041
|
readonly price: io.flow.common.v0.models.PriceWithBase;
|
|
25759
26042
|
readonly refunded_at?: string;
|
|
26043
|
+
readonly payment_type?: io.flow.internal.v0.enums.RefundTransactionPaymentType;
|
|
25760
26044
|
}
|
|
25761
26045
|
|
|
25762
26046
|
interface OrderRefundTransactionDeleted {
|
|
@@ -27215,6 +27499,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27215
27499
|
readonly screening_mode?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
27216
27500
|
readonly decision_source?: io.flow.internal.v0.enums.SellabilityDecisionSource;
|
|
27217
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;
|
|
27218
27506
|
readonly created_at?: string;
|
|
27219
27507
|
}
|
|
27220
27508
|
|
|
@@ -28291,6 +28579,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28291
28579
|
readonly manual_capture?: boolean;
|
|
28292
28580
|
readonly partial_fulfillment?: boolean;
|
|
28293
28581
|
readonly partial_refund?: boolean;
|
|
28582
|
+
readonly credit_payment?: boolean;
|
|
28294
28583
|
}
|
|
28295
28584
|
|
|
28296
28585
|
interface ReportingFx {
|
|
@@ -28700,9 +28989,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28700
28989
|
}
|
|
28701
28990
|
|
|
28702
28991
|
interface RestrictionProductSummary {
|
|
28992
|
+
readonly product_id?: string;
|
|
28703
28993
|
readonly name: string;
|
|
28704
28994
|
readonly restrictions: io.flow.internal.v0.models.RestrictionItemReviewSummary[];
|
|
28705
28995
|
readonly prohibited_regions?: string[];
|
|
28996
|
+
readonly fatal_restricted_regions: string[];
|
|
28997
|
+
readonly fatal_review_pending_regions: string[];
|
|
28706
28998
|
}
|
|
28707
28999
|
|
|
28708
29000
|
interface RestrictionRule {
|
|
@@ -28722,6 +29014,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28722
29014
|
readonly attribute_names?: string[];
|
|
28723
29015
|
readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
|
|
28724
29016
|
readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
29017
|
+
readonly auto_accept_keyword_cancelling?: io.flow.internal.v0.models.AutoAcceptKeywordCancelling[];
|
|
28725
29018
|
readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
28726
29019
|
readonly evaluation_mode: io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
|
|
28727
29020
|
}
|
|
@@ -28784,6 +29077,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28784
29077
|
readonly attribute_names?: string[];
|
|
28785
29078
|
readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
|
|
28786
29079
|
readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
29080
|
+
readonly auto_accept_keyword_cancelling?: io.flow.internal.v0.models.AutoAcceptKeywordCancelling[];
|
|
28787
29081
|
readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
28788
29082
|
readonly evaluation_mode: io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
|
|
28789
29083
|
}
|
|
@@ -29043,6 +29337,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29043
29337
|
readonly tracking_summary?: io.flow.internal.v0.models.SearchTrackingSummary;
|
|
29044
29338
|
}
|
|
29045
29339
|
|
|
29340
|
+
interface ReturnTriggerCreditRefund {
|
|
29341
|
+
readonly discriminator: 'by_credit_refund';
|
|
29342
|
+
readonly order_refund_transaction_id: string;
|
|
29343
|
+
}
|
|
29344
|
+
|
|
29046
29345
|
interface ReturnTriggerRefund {
|
|
29047
29346
|
readonly discriminator: 'by_refund';
|
|
29048
29347
|
readonly refund: io.flow.payment.v0.models.RefundReference;
|
|
@@ -29362,6 +29661,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29362
29661
|
readonly amount: io.flow.common.v0.models.Money;
|
|
29363
29662
|
readonly tax: io.flow.common.v0.models.Money;
|
|
29364
29663
|
readonly label_id?: string;
|
|
29664
|
+
readonly shipping_label?: io.flow.label.v0.models.ShippingLabelSummary;
|
|
29365
29665
|
readonly base?: io.flow.trueup.v0.models.LabelBase;
|
|
29366
29666
|
readonly surcharges?: io.flow.trueup.v0.models.LabelSurcharge[];
|
|
29367
29667
|
}
|
|
@@ -29595,6 +29895,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29595
29895
|
readonly shopify_inventory_item_delete: io.flow.internal.v0.models.ShopifyInventoryItemDeleteWebhookEvent;
|
|
29596
29896
|
}
|
|
29597
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
|
+
|
|
29598
29909
|
interface ShopifyInventoryItemDeleteWebhookEvent {
|
|
29599
29910
|
readonly id: string;
|
|
29600
29911
|
readonly inventory_item_delete: io.flow.shopify.external.v0.models.ShopifyInventoryItemDelete;
|
|
@@ -29616,6 +29927,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29616
29927
|
readonly shopify_inventory_item_update: io.flow.internal.v0.models.ShopifyInventoryItemUpdateWebhookEvent;
|
|
29617
29928
|
}
|
|
29618
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
|
+
|
|
29619
29942
|
interface ShopifyInventoryItemUpdateWebhookEvent {
|
|
29620
29943
|
readonly id: string;
|
|
29621
29944
|
readonly inventory_item: io.flow.shopify.markets.v0.models.ShopifyInventoryItem;
|
|
@@ -29651,6 +29974,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29651
29974
|
readonly discrepancies: io.flow.internal.v0.models.ShopifyMarketsDiscrepancy[];
|
|
29652
29975
|
}
|
|
29653
29976
|
|
|
29977
|
+
interface ShopifyMarketsEvent {
|
|
29978
|
+
readonly placeholder?: any /*json*/;
|
|
29979
|
+
}
|
|
29980
|
+
|
|
29654
29981
|
interface ShopifyMarketsIncorporationCountry {
|
|
29655
29982
|
readonly country: string;
|
|
29656
29983
|
readonly state?: string;
|
|
@@ -30096,6 +30423,42 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30096
30423
|
readonly product: io.flow.shopify.external.v0.models.Product;
|
|
30097
30424
|
}
|
|
30098
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
|
+
|
|
30099
30462
|
interface ShopifyProductDeleteDeleted {
|
|
30100
30463
|
readonly discriminator: 'shopify_product_delete_deleted';
|
|
30101
30464
|
readonly event_id: string;
|
|
@@ -30117,6 +30480,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30117
30480
|
readonly product_delete: io.flow.shopify.external.v0.models.ProductDelete;
|
|
30118
30481
|
}
|
|
30119
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
|
+
|
|
30120
30495
|
interface ShopifyProductTaxonomyAttribute {
|
|
30121
30496
|
readonly id: string;
|
|
30122
30497
|
readonly handle: string;
|
|
@@ -30184,6 +30559,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30184
30559
|
readonly api_version: string;
|
|
30185
30560
|
}
|
|
30186
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
|
+
|
|
30187
30586
|
interface ShopifyProductWrapper {
|
|
30188
30587
|
readonly shopify_product: io.flow.shopify.external.v0.models.Product;
|
|
30189
30588
|
readonly deleted_at?: string;
|
|
@@ -31497,6 +31896,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
31497
31896
|
readonly details: io.flow.internal.v0.unions.AdjustmentDetails;
|
|
31498
31897
|
}
|
|
31499
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
|
+
|
|
31500
31906
|
interface TransactionAdjustmentForm {
|
|
31501
31907
|
readonly original_transaction_id: string;
|
|
31502
31908
|
readonly description: string;
|
|
@@ -31504,6 +31910,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
31504
31910
|
readonly type?: io.flow.internal.v0.enums.AdjustmentTransactionType;
|
|
31505
31911
|
}
|
|
31506
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
|
+
|
|
31507
31920
|
interface TransactionReference {
|
|
31508
31921
|
readonly id: string;
|
|
31509
31922
|
}
|
|
@@ -31976,6 +32389,12 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31976
32389
|
| io.flow.internal.v0.models.OrderTransactionDeleted
|
|
31977
32390
|
| io.flow.internal.v0.models.LabelTransactionUpserted
|
|
31978
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
|
|
31979
32398
|
| io.flow.internal.v0.models.ChannelBilledTransactionUpserted
|
|
31980
32399
|
| io.flow.internal.v0.models.ChannelBilledTransactionDeleted
|
|
31981
32400
|
| io.flow.internal.v0.models.TaxTransactionUpserted
|
|
@@ -32152,8 +32571,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
32152
32571
|
| io.flow.internal.v0.models.OrderValidationDeleted
|
|
32153
32572
|
| io.flow.internal.v0.models.LabelCreationJobUpserted
|
|
32154
32573
|
| io.flow.internal.v0.models.LabelCreationJobDeleted
|
|
32155
|
-
| io.flow.internal.v0.models.
|
|
32156
|
-
| io.flow.internal.v0.models.
|
|
32574
|
+
| io.flow.internal.v0.models.GuaranteedShippingOrderGuaranteeUpserted
|
|
32575
|
+
| io.flow.internal.v0.models.GuaranteedShippingOrderGuaranteeDeleted
|
|
32157
32576
|
| io.flow.internal.v0.models.LabelTrackingSummaryUpserted
|
|
32158
32577
|
| io.flow.internal.v0.models.LabelTrackingSummaryDeleted
|
|
32159
32578
|
| io.flow.internal.v0.models.LogisticsCapabilitiesUpserted
|
|
@@ -32304,6 +32723,14 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
32304
32723
|
| io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted
|
|
32305
32724
|
| io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted
|
|
32306
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
|
|
32307
32734
|
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted
|
|
32308
32735
|
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted
|
|
32309
32736
|
| io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted
|
|
@@ -32495,7 +32922,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
32495
32922
|
| io.flow.internal.v0.models.RestrictionAttributeConditionMultiple;
|
|
32496
32923
|
type ReturnTrigger =
|
|
32497
32924
|
| io.flow.internal.v0.models.ReturnTriggerRefund
|
|
32498
|
-
| io.flow.internal.v0.models.ReturnTriggerReversal
|
|
32925
|
+
| io.flow.internal.v0.models.ReturnTriggerReversal
|
|
32926
|
+
| io.flow.internal.v0.models.ReturnTriggerCreditRefund;
|
|
32499
32927
|
type RoutingEntity =
|
|
32500
32928
|
| io.flow.internal.v0.models.RoutingProcessor
|
|
32501
32929
|
| io.flow.internal.v0.models.RoutingAccount
|
|
@@ -32626,14 +33054,6 @@ export type AccountingPendingOrderMetadata =
|
|
|
32626
33054
|
export type AccountingReturnMetadata =
|
|
32627
33055
|
io.flow.internal.v0.models.AccountingReturnMetadata;
|
|
32628
33056
|
export type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
|
|
32629
|
-
export type AdaptiveShippingOrderGuarantee =
|
|
32630
|
-
io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
32631
|
-
export type AdaptiveShippingOrderGuaranteeDeleted =
|
|
32632
|
-
io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted;
|
|
32633
|
-
export type AdaptiveShippingOrderGuaranteeState =
|
|
32634
|
-
io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState;
|
|
32635
|
-
export type AdaptiveShippingOrderGuaranteeUpserted =
|
|
32636
|
-
io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted;
|
|
32637
33057
|
export type AdditionalImportTax =
|
|
32638
33058
|
io.flow.internal.v0.models.AdditionalImportTax;
|
|
32639
33059
|
export type AdjustmentAmount = io.flow.internal.v0.unions.AdjustmentAmount;
|
|
@@ -32739,6 +33159,9 @@ export type AfterpayRefundUpserted =
|
|
|
32739
33159
|
export type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
|
|
32740
33160
|
export type AgentReviewDetail = io.flow.internal.v0.models.AgentReviewDetail;
|
|
32741
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;
|
|
32742
33165
|
export type AiReviewBatchSubmitted =
|
|
32743
33166
|
io.flow.internal.v0.models.AiReviewBatchSubmitted;
|
|
32744
33167
|
export type AiReviewConsumer = io.flow.internal.v0.enums.AiReviewConsumer;
|
|
@@ -32796,6 +33219,8 @@ export type AuthorizedOrderCharge =
|
|
|
32796
33219
|
io.flow.internal.v0.unions.AuthorizedOrderCharge;
|
|
32797
33220
|
export type AuthorizedShippingCharge =
|
|
32798
33221
|
io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
33222
|
+
export type AutoAcceptKeywordCancelling =
|
|
33223
|
+
io.flow.internal.v0.models.AutoAcceptKeywordCancelling;
|
|
32799
33224
|
export type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
|
|
32800
33225
|
export type AutoReviewCriteria = io.flow.internal.v0.models.AutoReviewCriteria;
|
|
32801
33226
|
export type AverageOrderValue = io.flow.internal.v0.models.AverageOrderValue;
|
|
@@ -32980,10 +33405,14 @@ export type CalculatorDtceProduct =
|
|
|
32980
33405
|
export type CalculatorEngine = io.flow.internal.v0.enums.CalculatorEngine;
|
|
32981
33406
|
export type CalculatorOrganizationSettings =
|
|
32982
33407
|
io.flow.internal.v0.models.CalculatorOrganizationSettings;
|
|
33408
|
+
export type CalculatorOrganizationSettingsCountryOfOriginForm =
|
|
33409
|
+
io.flow.internal.v0.models.CalculatorOrganizationSettingsCountryOfOriginForm;
|
|
32983
33410
|
export type CalculatorOrganizationSettingsDeleted =
|
|
32984
33411
|
io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted;
|
|
32985
33412
|
export type CalculatorOrganizationSettingsForm =
|
|
32986
33413
|
io.flow.internal.v0.models.CalculatorOrganizationSettingsForm;
|
|
33414
|
+
export type CalculatorOrganizationSettingsHsCodeForm =
|
|
33415
|
+
io.flow.internal.v0.models.CalculatorOrganizationSettingsHsCodeForm;
|
|
32987
33416
|
export type CalculatorOrganizationSettingsUpserted =
|
|
32988
33417
|
io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted;
|
|
32989
33418
|
export type CalculatorStamp = io.flow.internal.v0.unions.CalculatorStamp;
|
|
@@ -33887,8 +34316,12 @@ export type GeIngestionFileStatus =
|
|
|
33887
34316
|
io.flow.internal.v0.enums.GeIngestionFileStatus;
|
|
33888
34317
|
export type GeRevenueShareTransaction =
|
|
33889
34318
|
io.flow.internal.v0.models.GeRevenueShareTransaction;
|
|
34319
|
+
export type GeRevenueShareTransactionDeleted =
|
|
34320
|
+
io.flow.internal.v0.models.GeRevenueShareTransactionDeleted;
|
|
33890
34321
|
export type GeRevenueShareTransactionType =
|
|
33891
34322
|
io.flow.internal.v0.enums.GeRevenueShareTransactionType;
|
|
34323
|
+
export type GeRevenueShareTransactionUpserted =
|
|
34324
|
+
io.flow.internal.v0.models.GeRevenueShareTransactionUpserted;
|
|
33892
34325
|
export type GenerateLoad = io.flow.internal.v0.unions.GenerateLoad;
|
|
33893
34326
|
export type GenerateLoadMultipleOrgs =
|
|
33894
34327
|
io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
@@ -33927,6 +34360,14 @@ export type GuaranteedShippingCalibrationForm =
|
|
|
33927
34360
|
io.flow.internal.v0.models.GuaranteedShippingCalibrationForm;
|
|
33928
34361
|
export type GuaranteedShippingCalibrationLaneForm =
|
|
33929
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;
|
|
33930
34371
|
export type GuaranteedShippingPublication =
|
|
33931
34372
|
io.flow.internal.v0.models.GuaranteedShippingPublication;
|
|
33932
34373
|
export type GuaranteedShippingPublicationForm =
|
|
@@ -34344,8 +34785,12 @@ export type NonL4LTaxDutyFxFeeMetadata =
|
|
|
34344
34785
|
io.flow.internal.v0.models.NonL4LTaxDutyFxFeeMetadata;
|
|
34345
34786
|
export type NonL4LTaxDutyFxTransaction =
|
|
34346
34787
|
io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction;
|
|
34788
|
+
export type NonL4LTaxDutyFxTransactionDeleted =
|
|
34789
|
+
io.flow.internal.v0.models.NonL4LTaxDutyFxTransactionDeleted;
|
|
34347
34790
|
export type NonL4LTaxDutyFxTransactionType =
|
|
34348
34791
|
io.flow.internal.v0.enums.NonL4LTaxDutyFxTransactionType;
|
|
34792
|
+
export type NonL4LTaxDutyFxTransactionUpserted =
|
|
34793
|
+
io.flow.internal.v0.models.NonL4LTaxDutyFxTransactionUpserted;
|
|
34349
34794
|
export type Notification = io.flow.internal.v0.models.Notification;
|
|
34350
34795
|
export type OnboardingAuditMessage =
|
|
34351
34796
|
io.flow.internal.v0.models.OnboardingAuditMessage;
|
|
@@ -35006,6 +35451,8 @@ export type Redirect = io.flow.internal.v0.models.Redirect;
|
|
|
35006
35451
|
export type RedirectActionCompleted =
|
|
35007
35452
|
io.flow.internal.v0.models.RedirectActionCompleted;
|
|
35008
35453
|
export type RedirectReason = io.flow.internal.v0.enums.RedirectReason;
|
|
35454
|
+
export type RefundTransactionPaymentType =
|
|
35455
|
+
io.flow.internal.v0.enums.RefundTransactionPaymentType;
|
|
35009
35456
|
export type RegisteredExporterTariffEligibilityData =
|
|
35010
35457
|
io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData;
|
|
35011
35458
|
export type RegisteredExporterTariffEligibilityForm =
|
|
@@ -35252,6 +35699,8 @@ export type ReturnPolicyUpserted =
|
|
|
35252
35699
|
io.flow.internal.v0.models.ReturnPolicyUpserted;
|
|
35253
35700
|
export type ReturnSummary = io.flow.internal.v0.models.ReturnSummary;
|
|
35254
35701
|
export type ReturnTrigger = io.flow.internal.v0.unions.ReturnTrigger;
|
|
35702
|
+
export type ReturnTriggerCreditRefund =
|
|
35703
|
+
io.flow.internal.v0.models.ReturnTriggerCreditRefund;
|
|
35255
35704
|
export type ReturnTriggerRefund =
|
|
35256
35705
|
io.flow.internal.v0.models.ReturnTriggerRefund;
|
|
35257
35706
|
export type ReturnTriggerReversal =
|
|
@@ -35388,12 +35837,16 @@ export type ShopifyInventoryItemDeleteDeleted =
|
|
|
35388
35837
|
io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted;
|
|
35389
35838
|
export type ShopifyInventoryItemDeleteUpserted =
|
|
35390
35839
|
io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted;
|
|
35840
|
+
export type ShopifyInventoryItemDeleteV2 =
|
|
35841
|
+
io.flow.internal.v0.models.ShopifyInventoryItemDeleteV2;
|
|
35391
35842
|
export type ShopifyInventoryItemDeleteWebhookEvent =
|
|
35392
35843
|
io.flow.internal.v0.models.ShopifyInventoryItemDeleteWebhookEvent;
|
|
35393
35844
|
export type ShopifyInventoryItemUpdateDeleted =
|
|
35394
35845
|
io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted;
|
|
35395
35846
|
export type ShopifyInventoryItemUpdateUpserted =
|
|
35396
35847
|
io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted;
|
|
35848
|
+
export type ShopifyInventoryItemUpdateV2 =
|
|
35849
|
+
io.flow.internal.v0.models.ShopifyInventoryItemUpdateV2;
|
|
35397
35850
|
export type ShopifyInventoryItemUpdateWebhookEvent =
|
|
35398
35851
|
io.flow.internal.v0.models.ShopifyInventoryItemUpdateWebhookEvent;
|
|
35399
35852
|
export type ShopifyMarketsBestSellingProduct =
|
|
@@ -35408,6 +35861,8 @@ export type ShopifyMarketsDiscrepancy =
|
|
|
35408
35861
|
io.flow.internal.v0.models.ShopifyMarketsDiscrepancy;
|
|
35409
35862
|
export type ShopifyMarketsDiscrepancyData =
|
|
35410
35863
|
io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData;
|
|
35864
|
+
export type ShopifyMarketsEvent =
|
|
35865
|
+
io.flow.internal.v0.models.ShopifyMarketsEvent;
|
|
35411
35866
|
export type ShopifyMarketsHtsNumberAvailable =
|
|
35412
35867
|
io.flow.internal.v0.enums.ShopifyMarketsHtsNumberAvailable;
|
|
35413
35868
|
export type ShopifyMarketsIncorporationCountry =
|
|
@@ -35546,12 +36001,20 @@ export type ShopifyProductCreateUpserted =
|
|
|
35546
36001
|
io.flow.internal.v0.models.ShopifyProductCreateUpserted;
|
|
35547
36002
|
export type ShopifyProductCreateWebhookEvent =
|
|
35548
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;
|
|
35549
36010
|
export type ShopifyProductDeleteDeleted =
|
|
35550
36011
|
io.flow.internal.v0.models.ShopifyProductDeleteDeleted;
|
|
35551
36012
|
export type ShopifyProductDeleteUpserted =
|
|
35552
36013
|
io.flow.internal.v0.models.ShopifyProductDeleteUpserted;
|
|
35553
36014
|
export type ShopifyProductDeleteWebhookEvent =
|
|
35554
36015
|
io.flow.internal.v0.models.ShopifyProductDeleteWebhookEvent;
|
|
36016
|
+
export type ShopifyProductMetafieldsUpdateV2 =
|
|
36017
|
+
io.flow.internal.v0.models.ShopifyProductMetafieldsUpdateV2;
|
|
35555
36018
|
export type ShopifyProductTaxonomyAttribute =
|
|
35556
36019
|
io.flow.internal.v0.models.ShopifyProductTaxonomyAttribute;
|
|
35557
36020
|
export type ShopifyProductTaxonomyAttributeDeleted =
|
|
@@ -35570,6 +36033,10 @@ export type ShopifyProductUpdateUpserted =
|
|
|
35570
36033
|
io.flow.internal.v0.models.ShopifyProductUpdateUpserted;
|
|
35571
36034
|
export type ShopifyProductUpdateWebhookEvent =
|
|
35572
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;
|
|
35573
36040
|
export type ShopifyProductWrapper =
|
|
35574
36041
|
io.flow.internal.v0.models.ShopifyProductWrapper;
|
|
35575
36042
|
export type ShopifyRateCustomsDetail =
|
|
@@ -35894,8 +36361,12 @@ export type TrackingWebhook = io.flow.internal.v0.models.TrackingWebhook;
|
|
|
35894
36361
|
export type Transaction = io.flow.internal.v0.unions.Transaction;
|
|
35895
36362
|
export type TransactionAdjustment =
|
|
35896
36363
|
io.flow.internal.v0.models.TransactionAdjustment;
|
|
36364
|
+
export type TransactionAdjustmentDeleted =
|
|
36365
|
+
io.flow.internal.v0.models.TransactionAdjustmentDeleted;
|
|
35897
36366
|
export type TransactionAdjustmentForm =
|
|
35898
36367
|
io.flow.internal.v0.models.TransactionAdjustmentForm;
|
|
36368
|
+
export type TransactionAdjustmentUpserted =
|
|
36369
|
+
io.flow.internal.v0.models.TransactionAdjustmentUpserted;
|
|
35899
36370
|
export type TransactionPostingMethod =
|
|
35900
36371
|
io.flow.internal.v0.enums.TransactionPostingMethod;
|
|
35901
36372
|
export type TransactionReference =
|