@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/dist/api-internal.d.ts
CHANGED
|
@@ -865,15 +865,6 @@ declare namespace io.flow.ftp.v0.models {
|
|
|
865
865
|
readonly password?: string;
|
|
866
866
|
}
|
|
867
867
|
}
|
|
868
|
-
declare namespace io.flow.error.v0.enums {
|
|
869
|
-
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
870
|
-
}
|
|
871
|
-
declare namespace io.flow.error.v0.models {
|
|
872
|
-
interface GenericError {
|
|
873
|
-
readonly code: io.flow.error.v0.enums.GenericErrorCode;
|
|
874
|
-
readonly messages: string[];
|
|
875
|
-
}
|
|
876
|
-
}
|
|
877
868
|
declare namespace io.flow.channel.v0.enums {
|
|
878
869
|
type ChannelCurrencyCapability = 'payment_authorizations' | 'settlement_currency';
|
|
879
870
|
}
|
|
@@ -5007,6 +4998,9 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5007
4998
|
readonly total_count: number;
|
|
5008
4999
|
readonly discrepancies: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsDiscrepancy[];
|
|
5009
5000
|
}
|
|
5001
|
+
interface ShopifyMarketsEvent {
|
|
5002
|
+
readonly placeholder?: any;
|
|
5003
|
+
}
|
|
5010
5004
|
interface ShopifyMarketsIncorporationCountry {
|
|
5011
5005
|
readonly country: string;
|
|
5012
5006
|
readonly state?: string;
|
|
@@ -5344,6 +5338,11 @@ declare namespace io.flow.consumer.invoice.v0.models {
|
|
|
5344
5338
|
readonly tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
5345
5339
|
readonly duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
5346
5340
|
}
|
|
5341
|
+
interface ConsumerInvoiceLineShippingPassThrough {
|
|
5342
|
+
readonly discriminator: 'shipping_pass_through';
|
|
5343
|
+
readonly line_id?: string;
|
|
5344
|
+
readonly price: io.flow.common.v0.models.Price;
|
|
5345
|
+
}
|
|
5347
5346
|
interface ConsumerInvoiceLineTip {
|
|
5348
5347
|
readonly discriminator: 'tip';
|
|
5349
5348
|
readonly line_id?: string;
|
|
@@ -5428,7 +5427,7 @@ declare namespace io.flow.consumer.invoice.v0.models {
|
|
|
5428
5427
|
}
|
|
5429
5428
|
}
|
|
5430
5429
|
declare namespace io.flow.consumer.invoice.v0.unions {
|
|
5431
|
-
type ConsumerInvoiceLine = io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineItem | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineDiscount | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineShipping | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineTip;
|
|
5430
|
+
type ConsumerInvoiceLine = io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineItem | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineDiscount | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineShipping | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineShippingPassThrough | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineTip;
|
|
5432
5431
|
type ConsumerInvoiceLineForm = io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineItemForm | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineDiscountForm | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineShippingForm | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineTipForm;
|
|
5433
5432
|
}
|
|
5434
5433
|
declare namespace io.flow.adyen.v0.enums {
|
|
@@ -6082,6 +6081,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6082
6081
|
readonly has_variants_that_requires_components?: boolean;
|
|
6083
6082
|
readonly category?: io.flow.shopify.external.v0.models.RestTaxonomyCategory;
|
|
6084
6083
|
readonly metafields?: io.flow.shopify.external.v0.models.ProductMetafield[];
|
|
6084
|
+
readonly variant_gids?: io.flow.shopify.external.v0.models.ProductVariantGid[];
|
|
6085
6085
|
}
|
|
6086
6086
|
interface ProductDelete {
|
|
6087
6087
|
readonly id: number;
|
|
@@ -6131,6 +6131,10 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6131
6131
|
readonly requires_shipping?: boolean;
|
|
6132
6132
|
readonly metafields?: io.flow.shopify.external.v0.models.Metafield[];
|
|
6133
6133
|
}
|
|
6134
|
+
interface ProductVariantGid {
|
|
6135
|
+
readonly admin_graphql_api_id: string;
|
|
6136
|
+
readonly updated_at: string;
|
|
6137
|
+
}
|
|
6134
6138
|
interface RequestMetafieldForm {
|
|
6135
6139
|
readonly metafield: io.flow.shopify.external.v0.models.MetafieldForm;
|
|
6136
6140
|
}
|
|
@@ -10079,6 +10083,169 @@ declare namespace io.flow.crypto.v0.models {
|
|
|
10079
10083
|
readonly object: io.flow.crypto.v0.models.Refund;
|
|
10080
10084
|
}
|
|
10081
10085
|
}
|
|
10086
|
+
declare namespace io.flow.error.v0.enums {
|
|
10087
|
+
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
10088
|
+
}
|
|
10089
|
+
declare namespace io.flow.error.v0.models {
|
|
10090
|
+
interface GenericError {
|
|
10091
|
+
readonly code: io.flow.error.v0.enums.GenericErrorCode;
|
|
10092
|
+
readonly messages: string[];
|
|
10093
|
+
}
|
|
10094
|
+
}
|
|
10095
|
+
declare namespace io.flow.shopify.external.v2.v0.models {
|
|
10096
|
+
interface CountryHarmonizedSystemCodeConnection {
|
|
10097
|
+
readonly nodes: io.flow.shopify.external.v2.v0.models.CountryHarmonizedSystemCodeNode[];
|
|
10098
|
+
}
|
|
10099
|
+
interface CountryHarmonizedSystemCodeNode {
|
|
10100
|
+
readonly harmonizedSystemCode?: string;
|
|
10101
|
+
readonly countryCode?: string;
|
|
10102
|
+
}
|
|
10103
|
+
interface FieldsChanged {
|
|
10104
|
+
readonly added: string[];
|
|
10105
|
+
readonly updated: string[];
|
|
10106
|
+
readonly removed: string[];
|
|
10107
|
+
}
|
|
10108
|
+
interface ImageConnection {
|
|
10109
|
+
readonly nodes: io.flow.shopify.external.v2.v0.models.ImageNode[];
|
|
10110
|
+
}
|
|
10111
|
+
interface ImageNode {
|
|
10112
|
+
readonly id?: string;
|
|
10113
|
+
readonly url?: string;
|
|
10114
|
+
}
|
|
10115
|
+
interface InventoryItemData {
|
|
10116
|
+
readonly shop: io.flow.shopify.external.v2.v0.models.ShopNode;
|
|
10117
|
+
readonly inventoryItem?: io.flow.shopify.external.v2.v0.models.InventoryItemNode;
|
|
10118
|
+
}
|
|
10119
|
+
interface InventoryItemDeleteData {
|
|
10120
|
+
readonly shop: io.flow.shopify.external.v2.v0.models.ShopNode;
|
|
10121
|
+
readonly inventoryItem?: io.flow.shopify.external.v2.v0.models.InventoryItemNode;
|
|
10122
|
+
}
|
|
10123
|
+
interface InventoryItemDeleteEvent {
|
|
10124
|
+
readonly topic: string;
|
|
10125
|
+
readonly action: string;
|
|
10126
|
+
readonly handle: string;
|
|
10127
|
+
readonly data: io.flow.shopify.external.v2.v0.models.InventoryItemDeleteData;
|
|
10128
|
+
readonly fields_changed?: io.flow.shopify.external.v2.v0.models.FieldsChanged;
|
|
10129
|
+
readonly query_variables: io.flow.shopify.external.v2.v0.models.InventoryItemQueryVariables;
|
|
10130
|
+
}
|
|
10131
|
+
interface InventoryItemEvent {
|
|
10132
|
+
readonly topic: string;
|
|
10133
|
+
readonly action: string;
|
|
10134
|
+
readonly handle: string;
|
|
10135
|
+
readonly data: io.flow.shopify.external.v2.v0.models.InventoryItemData;
|
|
10136
|
+
readonly fields_changed?: io.flow.shopify.external.v2.v0.models.FieldsChanged;
|
|
10137
|
+
readonly query_variables: io.flow.shopify.external.v2.v0.models.InventoryItemQueryVariables;
|
|
10138
|
+
}
|
|
10139
|
+
interface InventoryItemNode {
|
|
10140
|
+
readonly id?: string;
|
|
10141
|
+
readonly countryCodeOfOrigin?: string;
|
|
10142
|
+
readonly harmonizedSystemCode?: string;
|
|
10143
|
+
readonly countryHarmonizedSystemCodes?: io.flow.shopify.external.v2.v0.models.CountryHarmonizedSystemCodeConnection;
|
|
10144
|
+
readonly requiresShipping?: boolean;
|
|
10145
|
+
readonly variant?: io.flow.shopify.external.v2.v0.models.VariantReferenceNode;
|
|
10146
|
+
}
|
|
10147
|
+
interface InventoryItemQueryVariables {
|
|
10148
|
+
readonly inventoryItemId: string;
|
|
10149
|
+
}
|
|
10150
|
+
interface MetafieldConnection {
|
|
10151
|
+
readonly nodes: io.flow.shopify.external.v2.v0.models.MetafieldNode[];
|
|
10152
|
+
}
|
|
10153
|
+
interface MetafieldNode {
|
|
10154
|
+
readonly namespace?: string;
|
|
10155
|
+
readonly key: string;
|
|
10156
|
+
readonly value?: string;
|
|
10157
|
+
readonly type?: string;
|
|
10158
|
+
readonly references?: io.flow.shopify.external.v2.v0.models.MetafieldReferenceConnection;
|
|
10159
|
+
}
|
|
10160
|
+
interface MetafieldReferenceConnection {
|
|
10161
|
+
readonly edges: io.flow.shopify.external.v2.v0.models.MetafieldReferenceEdge[];
|
|
10162
|
+
}
|
|
10163
|
+
interface MetafieldReferenceEdge {
|
|
10164
|
+
readonly node?: io.flow.shopify.external.v2.v0.models.MetaobjectNode;
|
|
10165
|
+
}
|
|
10166
|
+
interface MetaobjectNode {
|
|
10167
|
+
readonly id: string;
|
|
10168
|
+
readonly type?: string;
|
|
10169
|
+
readonly displayName?: string;
|
|
10170
|
+
readonly fields: io.flow.shopify.external.v0.models.GraphqlMetaobjectField[];
|
|
10171
|
+
}
|
|
10172
|
+
interface ProductData {
|
|
10173
|
+
readonly shop: io.flow.shopify.external.v2.v0.models.ShopNode;
|
|
10174
|
+
readonly product?: io.flow.shopify.external.v2.v0.models.ProductNode;
|
|
10175
|
+
readonly productVariant?: io.flow.shopify.external.v2.v0.models.VariantNode;
|
|
10176
|
+
}
|
|
10177
|
+
interface ProductEvent {
|
|
10178
|
+
readonly topic: string;
|
|
10179
|
+
readonly action: string;
|
|
10180
|
+
readonly handle: string;
|
|
10181
|
+
readonly data: io.flow.shopify.external.v2.v0.models.ProductData;
|
|
10182
|
+
readonly fields_changed?: io.flow.shopify.external.v2.v0.models.FieldsChanged;
|
|
10183
|
+
readonly query_variables: io.flow.shopify.external.v2.v0.models.ProductQueryVariables;
|
|
10184
|
+
}
|
|
10185
|
+
interface ProductNode {
|
|
10186
|
+
readonly id: string;
|
|
10187
|
+
readonly handle?: string;
|
|
10188
|
+
readonly title?: string;
|
|
10189
|
+
readonly productType?: string;
|
|
10190
|
+
readonly status?: string;
|
|
10191
|
+
readonly createdAt?: string;
|
|
10192
|
+
readonly updatedAt?: string;
|
|
10193
|
+
readonly publishedAt?: string;
|
|
10194
|
+
readonly hasVariantsThatRequiresComponents?: boolean;
|
|
10195
|
+
readonly descriptionHtml?: string;
|
|
10196
|
+
readonly tags?: string[];
|
|
10197
|
+
readonly category?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
|
|
10198
|
+
readonly inferredProductCategory?: io.flow.shopify.external.v0.models.GraphqlInferredProductCategory;
|
|
10199
|
+
readonly images?: io.flow.shopify.external.v2.v0.models.ImageConnection;
|
|
10200
|
+
readonly metafields?: io.flow.shopify.external.v2.v0.models.MetafieldConnection;
|
|
10201
|
+
readonly variants?: io.flow.shopify.external.v2.v0.models.VariantConnection;
|
|
10202
|
+
}
|
|
10203
|
+
interface ProductQueryVariables {
|
|
10204
|
+
readonly productId: string;
|
|
10205
|
+
readonly variantsId?: string;
|
|
10206
|
+
}
|
|
10207
|
+
interface ProductReferenceNode {
|
|
10208
|
+
readonly id: string;
|
|
10209
|
+
}
|
|
10210
|
+
interface ProductVariantComponentConnection {
|
|
10211
|
+
readonly nodes: io.flow.shopify.external.v2.v0.models.ProductVariantComponentNode[];
|
|
10212
|
+
}
|
|
10213
|
+
interface ProductVariantComponentNode {
|
|
10214
|
+
readonly id: string;
|
|
10215
|
+
readonly quantity?: number;
|
|
10216
|
+
readonly productVariant?: io.flow.shopify.external.v2.v0.models.VariantReferenceNode;
|
|
10217
|
+
}
|
|
10218
|
+
interface ShopNode {
|
|
10219
|
+
readonly id: string;
|
|
10220
|
+
readonly currencyCode?: string;
|
|
10221
|
+
readonly myshopifyDomain?: string;
|
|
10222
|
+
}
|
|
10223
|
+
interface VariantConnection {
|
|
10224
|
+
readonly nodes: io.flow.shopify.external.v2.v0.models.VariantNode[];
|
|
10225
|
+
}
|
|
10226
|
+
interface VariantImageNode {
|
|
10227
|
+
readonly id?: string;
|
|
10228
|
+
readonly url?: string;
|
|
10229
|
+
}
|
|
10230
|
+
interface VariantNode {
|
|
10231
|
+
readonly id: string;
|
|
10232
|
+
readonly sku?: string;
|
|
10233
|
+
readonly price?: string;
|
|
10234
|
+
readonly title?: string;
|
|
10235
|
+
readonly barcode?: string;
|
|
10236
|
+
readonly taxable?: boolean;
|
|
10237
|
+
readonly inventoryPolicy?: string;
|
|
10238
|
+
readonly requiresComponents?: boolean;
|
|
10239
|
+
readonly image?: io.flow.shopify.external.v2.v0.models.VariantImageNode;
|
|
10240
|
+
readonly inventoryItem?: io.flow.shopify.external.v2.v0.models.InventoryItemNode;
|
|
10241
|
+
readonly productVariantComponents?: io.flow.shopify.external.v2.v0.models.ProductVariantComponentConnection;
|
|
10242
|
+
}
|
|
10243
|
+
interface VariantReferenceNode {
|
|
10244
|
+
readonly id: string;
|
|
10245
|
+
readonly sku?: string;
|
|
10246
|
+
readonly product?: io.flow.shopify.external.v2.v0.models.ProductReferenceNode;
|
|
10247
|
+
}
|
|
10248
|
+
}
|
|
10082
10249
|
declare namespace io.flow.shopify.merchant.config.v0.models {
|
|
10083
10250
|
interface Company {
|
|
10084
10251
|
readonly discriminator: 'company';
|
|
@@ -11338,7 +11505,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
11338
11505
|
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance' | 'unfulfilled_amount_greater_than_negative_balance' | 'account_payment_hold';
|
|
11339
11506
|
type StatementAttachmentType = 'csv' | 'pdf';
|
|
11340
11507
|
type StatementStatusCode = 'scheduled' | 'sent' | 'failed' | 'paid';
|
|
11341
|
-
type TaxDutyTransactionReasonCode = 'post_capture' | 'post_fulfilment' | 'manual_payment_or_gift_card' | 'order_edit' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'us_inbound_tax_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'wyol_shipment_lvg' | 'full_refund_without_shipment' | 'unfulfilled_order_above_de_min' | 'order_cancellation_without_capture';
|
|
11508
|
+
type TaxDutyTransactionReasonCode = 'post_capture' | 'post_fulfilment' | 'manual_payment_or_gift_card' | 'order_edit' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'us_inbound_tax_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'wyol_shipment_lvg' | 'full_refund_without_shipment' | 'unfulfilled_order_above_de_min' | 'order_cancellation_without_capture' | 'order_cancellation_marked_as_paid' | 'order_cancellation_after_capture' | 'order_rejection';
|
|
11342
11509
|
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'merchant_payout' | 'merchant_refund' | 'ge_revenue_share' | 'merchant_fee' | 'b2b_tax' | 'b2b_tax_refund' | 'b2b_fee_mor_tax' | 'b2b_fee_shipping_tax' | 'flat_rate_label' | 'flat_rate_label_subsidy' | 'credit_refund';
|
|
11343
11510
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
11344
11511
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
@@ -12111,6 +12278,7 @@ declare namespace io.flow.fraud.v0.unions {
|
|
|
12111
12278
|
declare namespace io.flow.sellability.v0.enums {
|
|
12112
12279
|
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
12113
12280
|
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
|
|
12281
|
+
type SellabilityReprocessPolicy = 'default' | 'force';
|
|
12114
12282
|
type SellabilityRequestStatus = 'commit';
|
|
12115
12283
|
type SellabilityResultErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable' | 'generic_error' | 'catalog_processing_threshold';
|
|
12116
12284
|
type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
|
|
@@ -12196,6 +12364,7 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
12196
12364
|
readonly taxonomy_category: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
12197
12365
|
readonly inferred_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
12198
12366
|
readonly mode: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
12367
|
+
readonly reprocess_policy?: io.flow.sellability.v0.enums.SellabilityReprocessPolicy;
|
|
12199
12368
|
readonly catalog_size?: number;
|
|
12200
12369
|
readonly relative_ranking?: number;
|
|
12201
12370
|
readonly dry_run?: boolean;
|
|
@@ -12414,9 +12583,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12414
12583
|
type AccountPaymentHoldReason = 'fraudulent' | 'frozen' | 'invalid_bank_account';
|
|
12415
12584
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
12416
12585
|
type AccountType = 'channel' | 'organization';
|
|
12417
|
-
type AdaptiveShippingOrderGuaranteeState = 'confirmed' | 'voided';
|
|
12418
12586
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
12419
12587
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
12588
|
+
type AiReviewBatchItemOutcome = 'succeeded' | 'errored' | 'expired' | 'canceled' | 'undecided' | 'unparseable' | 'missing' | 'batch_failed' | 'batch_timed_out';
|
|
12589
|
+
type AiReviewBatchStatus = 'pending' | 'processing' | 'canceling' | 'completed' | 'failed' | 'timed_out' | 'published';
|
|
12420
12590
|
type AiReviewConsumer = 'restrictions' | 'sellability' | 'harmonization';
|
|
12421
12591
|
type AiReviewFailureReason = 'item_errored' | 'item_expired' | 'item_unparseable' | 'item_image_fetch_failed' | 'item_undecided' | 'batch_failed' | 'batch_timed_out';
|
|
12422
12592
|
type AiReviewType = 'pv_review_general' | 'pv_review_dg_hazmat' | 'pc_review';
|
|
@@ -12516,7 +12686,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12516
12686
|
type EmptyAttribute = 'irrelevant';
|
|
12517
12687
|
type ErpFileType = 'vendor';
|
|
12518
12688
|
type EvaluationCheckResult = 'pass' | 'fail';
|
|
12519
|
-
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'ai_review_batch_submitted' | 'ai_review_result_upserted' | 'ai_review_result_deleted' | 'ai_review_request_failed' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'fulfillment_status_upserted' | 'fulfillment_status_deleted' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'bank_account_upserted' | 'bank_account_deleted' | 'posting_proof_upserted' | 'posting_proof_deleted' | 'bank_payment_promise_upserted' | 'bank_payment_promise_deleted' | 'account_payment_hold_upserted' | 'account_payment_hold_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'sales_payment_record_upserted' | 'sales_payment_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'channel_shop_statistics_upserted' | 'channel_shop_statistics_deleted' | 'channel_order_tax_and_duty_inclusivity_setting_upserted' | 'channel_order_tax_and_duty_inclusivity_setting_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'shipping_cost_upserted' | 'shipping_cost_deleted' | 'mor_cost_upserted' | 'mor_cost_deleted' | 'flat_rate_label_reversal_upserted' | 'flat_rate_label_reversal_deleted' | 'flat_rate_label_subsidy_upserted' | 'flat_rate_label_subsidy_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'quote_upserted' | 'quote_deleted' | 'guaranteed_shipping_calibrated_output_upserted' | 'guaranteed_shipping_calibrated_output_deleted' | 'outbound_shipping_cost_upserted' | 'outbound_shipping_cost_deleted' | 'average_order_value_upserted' | 'average_order_value_deleted' | 'guaranteed_shipping_published_output_upserted' | 'guaranteed_shipping_published_output_deleted' | 'guaranteed_shipping_settings_upserted' | 'guaranteed_shipping_settings_deleted' | 'guaranteed_shipping_settings_update_upserted' | 'guaranteed_shipping_settings_update_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'merchant_override_upserted' | 'merchant_override_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_creation_job_upserted' | 'label_creation_job_deleted' | 'adaptive_shipping_order_guarantee_upserted' | 'adaptive_shipping_order_guarantee_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'partner_request_upserted' | 'partner_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'order_refund_transaction_upserted' | 'order_refund_transaction_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'preonboarding_sellability_result_inserted' | 'preonboarding_sellability_result_updated' | 'preonboarding_sellability_result_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'product_restriction_state_inserted' | 'product_restriction_state_updated' | 'product_restriction_state_deleted' | 'product_sellability_result_inserted' | 'product_sellability_result_updated' | 'product_sellability_result_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restrictions_athena_dailyops_pc_pv_upserted' | 'restrictions_athena_dailyops_pc_pv_deleted' | 'restrictions_athena_dailyops_fs_upserted' | 'restrictions_athena_dailyops_fs_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'taxonomy_category_hs6_ref_upserted' | 'taxonomy_category_hs6_ref_deleted' | 'preonboarding_merchant_upserted' | 'preonboarding_merchant_deleted' | 'unserviceable_taxonomy_category_upserted' | 'unserviceable_taxonomy_category_deleted' | 'sellability_pending_verification_upserted' | 'sellability_pending_verification_deleted' | 'shopify_hs10_codes_upserted' | 'shopify_hs10_codes_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_product_taxonomy_attribute_upserted' | 'shopify_product_taxonomy_attribute_deleted' | 'shopify_product_taxonomy_attribute_value_upserted' | 'shopify_product_taxonomy_attribute_value_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_order_risk_assessment_upserted' | 'shopify_order_risk_assessment_deleted' | 'shopify_order_transaction_upserted' | 'shopify_order_transaction_deleted' | 'shopify_test_order_upserted' | 'shopify_test_order_deleted' | 'shopify_merchant_markets_upserted' | 'shopify_merchant_markets_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'shopify_dispute_upserted' | 'shopify_dispute_deleted' | 'shopify_report_file_upserted' | 'shopify_report_file_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'b2b_tax_transaction_upserted' | 'b2b_tax_transaction_deleted' | 'gabriel_item_upserted' | 'gabriel_item_deleted' | 'chenglin_item_upserted' | 'chenglin_item_deleted' | 'bojana_item_upserted' | 'bojana_item_deleted' | 'raveena_item_upserted' | 'raveena_item_deleted' | 'mahesh_item_upserted' | 'mahesh_item_deleted' | 'john_strong_item_upserted' | 'john_strong_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
12689
|
+
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'ai_review_batch_submitted' | 'ai_review_result_upserted' | 'ai_review_result_deleted' | 'ai_review_request_failed' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'fulfillment_status_upserted' | 'fulfillment_status_deleted' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'ge_revenue_share_transaction_upserted' | 'ge_revenue_share_transaction_deleted' | 'non_l4l_tax_duty_fx_transaction_upserted' | 'non_l4l_tax_duty_fx_transaction_deleted' | 'transaction_adjustment_upserted' | 'transaction_adjustment_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'bank_account_upserted' | 'bank_account_deleted' | 'posting_proof_upserted' | 'posting_proof_deleted' | 'bank_payment_promise_upserted' | 'bank_payment_promise_deleted' | 'account_payment_hold_upserted' | 'account_payment_hold_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'sales_payment_record_upserted' | 'sales_payment_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'channel_shop_statistics_upserted' | 'channel_shop_statistics_deleted' | 'channel_order_tax_and_duty_inclusivity_setting_upserted' | 'channel_order_tax_and_duty_inclusivity_setting_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'shipping_cost_upserted' | 'shipping_cost_deleted' | 'mor_cost_upserted' | 'mor_cost_deleted' | 'flat_rate_label_reversal_upserted' | 'flat_rate_label_reversal_deleted' | 'flat_rate_label_subsidy_upserted' | 'flat_rate_label_subsidy_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'quote_upserted' | 'quote_deleted' | 'guaranteed_shipping_calibrated_output_upserted' | 'guaranteed_shipping_calibrated_output_deleted' | 'outbound_shipping_cost_upserted' | 'outbound_shipping_cost_deleted' | 'average_order_value_upserted' | 'average_order_value_deleted' | 'guaranteed_shipping_published_output_upserted' | 'guaranteed_shipping_published_output_deleted' | 'guaranteed_shipping_settings_upserted' | 'guaranteed_shipping_settings_deleted' | 'guaranteed_shipping_settings_update_upserted' | 'guaranteed_shipping_settings_update_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'merchant_override_upserted' | 'merchant_override_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_creation_job_upserted' | 'label_creation_job_deleted' | 'guaranteed_shipping_order_guarantee_upserted' | 'guaranteed_shipping_order_guarantee_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'partner_request_upserted' | 'partner_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'order_refund_transaction_upserted' | 'order_refund_transaction_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'preonboarding_sellability_result_inserted' | 'preonboarding_sellability_result_updated' | 'preonboarding_sellability_result_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'product_restriction_state_inserted' | 'product_restriction_state_updated' | 'product_restriction_state_deleted' | 'product_sellability_result_inserted' | 'product_sellability_result_updated' | 'product_sellability_result_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restrictions_athena_dailyops_pc_pv_upserted' | 'restrictions_athena_dailyops_pc_pv_deleted' | 'restrictions_athena_dailyops_fs_upserted' | 'restrictions_athena_dailyops_fs_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'taxonomy_category_hs6_ref_upserted' | 'taxonomy_category_hs6_ref_deleted' | 'preonboarding_merchant_upserted' | 'preonboarding_merchant_deleted' | 'unserviceable_taxonomy_category_upserted' | 'unserviceable_taxonomy_category_deleted' | 'sellability_pending_verification_upserted' | 'sellability_pending_verification_deleted' | 'shopify_hs10_codes_upserted' | 'shopify_hs10_codes_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_product_taxonomy_attribute_upserted' | 'shopify_product_taxonomy_attribute_deleted' | 'shopify_product_taxonomy_attribute_value_upserted' | 'shopify_product_taxonomy_attribute_value_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_order_risk_assessment_upserted' | 'shopify_order_risk_assessment_deleted' | 'shopify_order_transaction_upserted' | 'shopify_order_transaction_deleted' | 'shopify_test_order_upserted' | 'shopify_test_order_deleted' | 'shopify_merchant_markets_upserted' | 'shopify_merchant_markets_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_product_data_create_v2' | 'shopify_product_data_update_v2' | 'shopify_product_metafields_update_v2' | 'shopify_product_variant_data_v2' | 'shopify_product_variant_components_v2' | 'shopify_product_data_delete_v2' | 'shopify_inventory_item_update_v2' | 'shopify_inventory_item_delete_v2' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'shopify_dispute_upserted' | 'shopify_dispute_deleted' | 'shopify_report_file_upserted' | 'shopify_report_file_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'b2b_tax_transaction_upserted' | 'b2b_tax_transaction_deleted' | 'gabriel_item_upserted' | 'gabriel_item_deleted' | 'chenglin_item_upserted' | 'chenglin_item_deleted' | 'bojana_item_upserted' | 'bojana_item_deleted' | 'raveena_item_upserted' | 'raveena_item_deleted' | 'mahesh_item_upserted' | 'mahesh_item_deleted' | 'john_strong_item_upserted' | 'john_strong_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
12520
12690
|
type ExperienceImportType = 'experience_with_settings';
|
|
12521
12691
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
12522
12692
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -12536,6 +12706,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12536
12706
|
type GeRevenueShareTransactionType = 'adjustment' | 'reversal' | 'revenue_share';
|
|
12537
12707
|
type GoogleAnalyticsPlugin = 'ec';
|
|
12538
12708
|
type GraphqlServiceTypes = 'order_update_mutation' | 'shipping_address_validation' | 'bulk_publication_status' | 'country_catalog_sync' | 'inventory_item' | 'product_bundle' | 'shopify_location' | 'shopify_order' | 'sync_product_catalog' | 'shopify_webhook' | 'guaranteed_shipping_state';
|
|
12709
|
+
type GuaranteedShippingOrderGuaranteeState = 'confirmed' | 'voided';
|
|
12539
12710
|
type GuaranteedShippingPublicationStatus = 'published' | 'not_found' | 'superseded';
|
|
12540
12711
|
type HarmonizationDecisionSource = 'human' | 'system' | 'legacy_model' | 'enterprise_model' | 'merchant';
|
|
12541
12712
|
type Hs6CodeSource = 'sellability' | 'classification' | 'human';
|
|
@@ -12620,6 +12791,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12620
12791
|
type RateSource = 'calculated' | 'market';
|
|
12621
12792
|
type RaveenaItemType = 'physical' | 'digital';
|
|
12622
12793
|
type RedirectReason = 'three_d_secure';
|
|
12794
|
+
type RefundTransactionPaymentType = 'globale' | 'third_party' | 'credit';
|
|
12623
12795
|
type RejectionReason = 'merchant_policy' | 'previous_chargebacks' | 'restricted_party_screening' | 'risky_velocity' | 'suspicious_behavior' | 'suspicious_past_activity';
|
|
12624
12796
|
type RemediateTaxDutyArm = 'non_lvg' | 'lvg_full_refund';
|
|
12625
12797
|
type ReportFileStatus = 'processing' | 'failed' | 'succeeded';
|
|
@@ -12650,7 +12822,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12650
12822
|
type RiskCheck = 'three_d_secure';
|
|
12651
12823
|
type RiskEvaluation = 'Pending' | 'High-Risk' | 'Low-Risk' | 'Restricted-Party' | 'none';
|
|
12652
12824
|
type SellabilityCheckStatus = 'more_restrictive' | 'less_restrictive' | 'similar' | 'regions_differ' | 'rules_differ';
|
|
12653
|
-
type SellabilityDecisionSource = 'fast_screen_sellable' | 'fast_screen_restricted_everywhere' | 'fast_screen_hs_chapter_exception' | 'fast_screen_active_mode' | 'unserviceable_taxonomy' | 'pending_classification' | 'pending_agent_review' | 'screen_failed' | 'classification' | 'agent_review' | 'staging_dropped';
|
|
12825
|
+
type SellabilityDecisionSource = 'fast_screen_sellable' | 'fast_screen_restricted_everywhere' | 'fast_screen_hs_chapter_exception' | 'fast_screen_active_mode' | 'unserviceable_taxonomy' | 'insufficient_details' | 'pending_classification' | 'pending_agent_review' | 'screen_failed' | 'classification' | 'agent_review' | 'staging_dropped';
|
|
12654
12826
|
type SellabilityInternalMatchType = 'positive_keyword' | 'auto_restricted';
|
|
12655
12827
|
type SellabilityStatus = 'complete' | 'incomplete';
|
|
12656
12828
|
type ShopifyCallbackErrorCode = 'UNKNOWN' | 'SYSTEM_ERROR' | 'THIRD_PARTY_SYSTEM_ERROR' | 'TIMEOUT' | 'VERSION_MISMATCH' | 'INVALID_AUTHENTICATION' | 'RATE_LIMIT_EXCEEDED' | 'TEMPORARILY_UNAVAILABLE' | 'FAILED_VALIDATION' | 'INVALID_FORMAT' | 'MISSING_VALUE' | 'OUT_OF_RANGE' | 'OVER_LIMIT' | 'UNDER_LIMIT' | 'UNAUTHORIZED' | 'NOT_FOUND' | 'EXPIRED';
|
|
@@ -12937,28 +13109,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12937
13109
|
readonly action: io.flow.internal.v0.enums.ItemQuantityAction;
|
|
12938
13110
|
readonly quantity: number;
|
|
12939
13111
|
}
|
|
12940
|
-
interface AdaptiveShippingOrderGuarantee {
|
|
12941
|
-
readonly id: string;
|
|
12942
|
-
readonly organization_id: string;
|
|
12943
|
-
readonly order_number: string;
|
|
12944
|
-
readonly guarantee_state: io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState;
|
|
12945
|
-
readonly label_id?: string;
|
|
12946
|
-
readonly notification_id?: string;
|
|
12947
|
-
}
|
|
12948
|
-
interface AdaptiveShippingOrderGuaranteeDeleted {
|
|
12949
|
-
readonly discriminator: 'adaptive_shipping_order_guarantee_deleted';
|
|
12950
|
-
readonly event_id: string;
|
|
12951
|
-
readonly timestamp: string;
|
|
12952
|
-
readonly organization: string;
|
|
12953
|
-
readonly id: string;
|
|
12954
|
-
}
|
|
12955
|
-
interface AdaptiveShippingOrderGuaranteeUpserted {
|
|
12956
|
-
readonly discriminator: 'adaptive_shipping_order_guarantee_upserted';
|
|
12957
|
-
readonly event_id: string;
|
|
12958
|
-
readonly timestamp: string;
|
|
12959
|
-
readonly organization: string;
|
|
12960
|
-
readonly adaptive_shipping_order_guarantee: io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
12961
|
-
}
|
|
12962
13112
|
interface AdditionalImportTax {
|
|
12963
13113
|
readonly name?: string;
|
|
12964
13114
|
readonly additional_import_tax_value?: io.flow.common.v0.models.Money;
|
|
@@ -13502,6 +13652,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13502
13652
|
readonly price: io.flow.common.v0.models.PriceWithBase;
|
|
13503
13653
|
readonly charge_trigger: io.flow.internal.v0.enums.OrderChargeTrigger;
|
|
13504
13654
|
}
|
|
13655
|
+
interface AutoAcceptKeywordCancelling {
|
|
13656
|
+
readonly accept_keyword: string;
|
|
13657
|
+
readonly negative_keywords: string[];
|
|
13658
|
+
}
|
|
13505
13659
|
interface AutoReviewCriteria {
|
|
13506
13660
|
readonly hs_code?: string;
|
|
13507
13661
|
readonly keywords?: string[];
|
|
@@ -13515,6 +13669,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13515
13669
|
readonly updated_at: number;
|
|
13516
13670
|
readonly run_id: string;
|
|
13517
13671
|
readonly model_version: string;
|
|
13672
|
+
readonly model_diagnostics?: string;
|
|
13518
13673
|
}
|
|
13519
13674
|
interface AverageOrderValueDeleted {
|
|
13520
13675
|
readonly discriminator: 'average_order_value_deleted';
|
|
@@ -14156,6 +14311,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14156
14311
|
readonly default_country_of_origin?: string;
|
|
14157
14312
|
readonly default_hs_code?: string;
|
|
14158
14313
|
}
|
|
14314
|
+
interface CalculatorOrganizationSettingsCountryOfOriginForm {
|
|
14315
|
+
readonly country_of_origin: string;
|
|
14316
|
+
}
|
|
14159
14317
|
interface CalculatorOrganizationSettingsDeleted {
|
|
14160
14318
|
readonly discriminator: 'calculator_organization_settings_deleted';
|
|
14161
14319
|
readonly event_id: string;
|
|
@@ -14167,6 +14325,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14167
14325
|
readonly default_country_of_origin?: string;
|
|
14168
14326
|
readonly default_hs_code?: string;
|
|
14169
14327
|
}
|
|
14328
|
+
interface CalculatorOrganizationSettingsHsCodeForm {
|
|
14329
|
+
readonly default_hs_code: string;
|
|
14330
|
+
}
|
|
14170
14331
|
interface CalculatorOrganizationSettingsUpserted {
|
|
14171
14332
|
readonly discriminator: 'calculator_organization_settings_upserted';
|
|
14172
14333
|
readonly event_id: string;
|
|
@@ -14305,6 +14466,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14305
14466
|
readonly cost: io.flow.common.v0.models.Money;
|
|
14306
14467
|
readonly min_delivery_days?: number;
|
|
14307
14468
|
readonly max_delivery_days?: number;
|
|
14469
|
+
readonly model_diagnostics?: string;
|
|
14308
14470
|
}
|
|
14309
14471
|
interface CarrierFile {
|
|
14310
14472
|
readonly id: string;
|
|
@@ -17189,6 +17351,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17189
17351
|
readonly discriminator: 'ge_revenue_share_transaction';
|
|
17190
17352
|
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
17191
17353
|
readonly ge_revenue_share: io.flow.internal.v0.models.Fee;
|
|
17354
|
+
readonly capture_id: string;
|
|
17192
17355
|
readonly id: string;
|
|
17193
17356
|
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
17194
17357
|
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
@@ -17198,6 +17361,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17198
17361
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
17199
17362
|
readonly created_at: string;
|
|
17200
17363
|
}
|
|
17364
|
+
interface GeRevenueShareTransactionDeleted {
|
|
17365
|
+
readonly discriminator: 'ge_revenue_share_transaction_deleted';
|
|
17366
|
+
readonly event_id: string;
|
|
17367
|
+
readonly timestamp: string;
|
|
17368
|
+
readonly id: string;
|
|
17369
|
+
}
|
|
17370
|
+
interface GeRevenueShareTransactionUpserted {
|
|
17371
|
+
readonly discriminator: 'ge_revenue_share_transaction_upserted';
|
|
17372
|
+
readonly event_id: string;
|
|
17373
|
+
readonly timestamp: string;
|
|
17374
|
+
readonly ge_revenue_share_transaction: io.flow.internal.v0.models.GeRevenueShareTransaction;
|
|
17375
|
+
}
|
|
17201
17376
|
interface GenerateLoadMultipleOrgs {
|
|
17202
17377
|
readonly discriminator: 'generate_load_multiple_orgs';
|
|
17203
17378
|
readonly organization_ids: string[];
|
|
@@ -17305,6 +17480,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17305
17480
|
readonly organization_id: string;
|
|
17306
17481
|
readonly destination_country?: string;
|
|
17307
17482
|
}
|
|
17483
|
+
interface GuaranteedShippingOrderGuarantee {
|
|
17484
|
+
readonly id: string;
|
|
17485
|
+
readonly organization_id: string;
|
|
17486
|
+
readonly order_number: string;
|
|
17487
|
+
readonly guarantee_state: io.flow.internal.v0.enums.GuaranteedShippingOrderGuaranteeState;
|
|
17488
|
+
readonly label_id?: string;
|
|
17489
|
+
readonly notification_id?: string;
|
|
17490
|
+
}
|
|
17491
|
+
interface GuaranteedShippingOrderGuaranteeDeleted {
|
|
17492
|
+
readonly discriminator: 'guaranteed_shipping_order_guarantee_deleted';
|
|
17493
|
+
readonly event_id: string;
|
|
17494
|
+
readonly timestamp: string;
|
|
17495
|
+
readonly organization: string;
|
|
17496
|
+
readonly id: string;
|
|
17497
|
+
}
|
|
17498
|
+
interface GuaranteedShippingOrderGuaranteeUpserted {
|
|
17499
|
+
readonly discriminator: 'guaranteed_shipping_order_guarantee_upserted';
|
|
17500
|
+
readonly event_id: string;
|
|
17501
|
+
readonly timestamp: string;
|
|
17502
|
+
readonly organization: string;
|
|
17503
|
+
readonly guaranteed_shipping_order_guarantee: io.flow.internal.v0.models.GuaranteedShippingOrderGuarantee;
|
|
17504
|
+
}
|
|
17308
17505
|
interface GuaranteedShippingPublication {
|
|
17309
17506
|
readonly channel_id: string;
|
|
17310
17507
|
readonly organization_id: string;
|
|
@@ -17332,7 +17529,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17332
17529
|
readonly outbound_shipping_cost_source_updated_at: number;
|
|
17333
17530
|
readonly average_order_value_source_updated_at: number;
|
|
17334
17531
|
readonly target_flat_rates_source_updated_at: number;
|
|
17335
|
-
readonly published_at
|
|
17532
|
+
readonly published_at: number;
|
|
17336
17533
|
}
|
|
17337
17534
|
interface GuaranteedShippingPublishedOutputDeleted {
|
|
17338
17535
|
readonly discriminator: 'guaranteed_shipping_published_output_deleted';
|
|
@@ -17881,6 +18078,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17881
18078
|
interface ItemHs6Override {
|
|
17882
18079
|
readonly item_number: string;
|
|
17883
18080
|
readonly hs6: string;
|
|
18081
|
+
readonly classification_scope?: io.flow.internal.v0.enums.ClassificationScope;
|
|
17884
18082
|
}
|
|
17885
18083
|
interface ItemHs6OverrideForm {
|
|
17886
18084
|
readonly item_number: string;
|
|
@@ -18874,6 +19072,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18874
19072
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
18875
19073
|
readonly created_at: string;
|
|
18876
19074
|
}
|
|
19075
|
+
interface NonL4LTaxDutyFxTransactionDeleted {
|
|
19076
|
+
readonly discriminator: 'non_l4l_tax_duty_fx_transaction_deleted';
|
|
19077
|
+
readonly event_id: string;
|
|
19078
|
+
readonly timestamp: string;
|
|
19079
|
+
readonly id: string;
|
|
19080
|
+
}
|
|
19081
|
+
interface NonL4LTaxDutyFxTransactionUpserted {
|
|
19082
|
+
readonly discriminator: 'non_l4l_tax_duty_fx_transaction_upserted';
|
|
19083
|
+
readonly event_id: string;
|
|
19084
|
+
readonly timestamp: string;
|
|
19085
|
+
readonly non_l4l_tax_duty_fx_transaction: io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction;
|
|
19086
|
+
}
|
|
18877
19087
|
interface Notification {
|
|
18878
19088
|
readonly order: io.flow.internal.v0.models.Decision;
|
|
18879
19089
|
}
|
|
@@ -19087,6 +19297,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19087
19297
|
readonly order_number: string;
|
|
19088
19298
|
readonly price: io.flow.common.v0.models.PriceWithBase;
|
|
19089
19299
|
readonly refunded_at?: string;
|
|
19300
|
+
readonly payment_type?: io.flow.internal.v0.enums.RefundTransactionPaymentType;
|
|
19090
19301
|
}
|
|
19091
19302
|
interface OrderRefundTransactionDeleted {
|
|
19092
19303
|
readonly discriminator: 'order_refund_transaction_deleted';
|
|
@@ -20367,6 +20578,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20367
20578
|
readonly screening_mode?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
20368
20579
|
readonly decision_source?: io.flow.internal.v0.enums.SellabilityDecisionSource;
|
|
20369
20580
|
readonly rule_matches?: io.flow.internal.v0.models.SellabilityRuleMatch[];
|
|
20581
|
+
readonly name?: string;
|
|
20582
|
+
readonly description?: string;
|
|
20583
|
+
readonly price?: io.flow.common.v0.models.Money;
|
|
20584
|
+
readonly relative_ranking?: number;
|
|
20370
20585
|
readonly created_at?: string;
|
|
20371
20586
|
}
|
|
20372
20587
|
interface PreonboardingSellabilityResultDeleted {
|
|
@@ -21299,6 +21514,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21299
21514
|
readonly manual_capture?: boolean;
|
|
21300
21515
|
readonly partial_fulfillment?: boolean;
|
|
21301
21516
|
readonly partial_refund?: boolean;
|
|
21517
|
+
readonly credit_payment?: boolean;
|
|
21302
21518
|
}
|
|
21303
21519
|
interface ReportingFx {
|
|
21304
21520
|
readonly shipping: io.flow.internal.v0.models.ReportingFxValue;
|
|
@@ -21661,9 +21877,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21661
21877
|
readonly product_id?: string;
|
|
21662
21878
|
}
|
|
21663
21879
|
interface RestrictionProductSummary {
|
|
21880
|
+
readonly product_id?: string;
|
|
21664
21881
|
readonly name: string;
|
|
21665
21882
|
readonly restrictions: io.flow.internal.v0.models.RestrictionItemReviewSummary[];
|
|
21666
21883
|
readonly prohibited_regions?: string[];
|
|
21884
|
+
readonly fatal_restricted_regions: string[];
|
|
21885
|
+
readonly fatal_review_pending_regions: string[];
|
|
21667
21886
|
}
|
|
21668
21887
|
interface RestrictionRule {
|
|
21669
21888
|
readonly id: string;
|
|
@@ -21682,6 +21901,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21682
21901
|
readonly attribute_names?: string[];
|
|
21683
21902
|
readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
|
|
21684
21903
|
readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
21904
|
+
readonly auto_accept_keyword_cancelling?: io.flow.internal.v0.models.AutoAcceptKeywordCancelling[];
|
|
21685
21905
|
readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
21686
21906
|
readonly evaluation_mode: io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
|
|
21687
21907
|
}
|
|
@@ -21737,6 +21957,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21737
21957
|
readonly attribute_names?: string[];
|
|
21738
21958
|
readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
|
|
21739
21959
|
readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
21960
|
+
readonly auto_accept_keyword_cancelling?: io.flow.internal.v0.models.AutoAcceptKeywordCancelling[];
|
|
21740
21961
|
readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
21741
21962
|
readonly evaluation_mode: io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
|
|
21742
21963
|
}
|
|
@@ -21968,6 +22189,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21968
22189
|
readonly key: string;
|
|
21969
22190
|
readonly tracking_summary?: io.flow.internal.v0.models.SearchTrackingSummary;
|
|
21970
22191
|
}
|
|
22192
|
+
interface ReturnTriggerCreditRefund {
|
|
22193
|
+
readonly discriminator: 'by_credit_refund';
|
|
22194
|
+
readonly order_refund_transaction_id: string;
|
|
22195
|
+
}
|
|
21971
22196
|
interface ReturnTriggerRefund {
|
|
21972
22197
|
readonly discriminator: 'by_refund';
|
|
21973
22198
|
readonly refund: io.flow.payment.v0.models.RefundReference;
|
|
@@ -22248,6 +22473,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22248
22473
|
readonly amount: io.flow.common.v0.models.Money;
|
|
22249
22474
|
readonly tax: io.flow.common.v0.models.Money;
|
|
22250
22475
|
readonly label_id?: string;
|
|
22476
|
+
readonly shipping_label?: io.flow.label.v0.models.ShippingLabelSummary;
|
|
22251
22477
|
readonly base?: io.flow.trueup.v0.models.LabelBase;
|
|
22252
22478
|
readonly surcharges?: io.flow.trueup.v0.models.LabelSurcharge[];
|
|
22253
22479
|
}
|
|
@@ -22450,6 +22676,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22450
22676
|
readonly organization: string;
|
|
22451
22677
|
readonly shopify_inventory_item_delete: io.flow.internal.v0.models.ShopifyInventoryItemDeleteWebhookEvent;
|
|
22452
22678
|
}
|
|
22679
|
+
interface ShopifyInventoryItemDeleteV2 {
|
|
22680
|
+
readonly discriminator: 'shopify_inventory_item_delete_v2';
|
|
22681
|
+
readonly event_id: string;
|
|
22682
|
+
readonly timestamp: string;
|
|
22683
|
+
readonly organization: string;
|
|
22684
|
+
readonly triggered_at: string;
|
|
22685
|
+
readonly webhook_id: string;
|
|
22686
|
+
readonly inventory_item_id: string;
|
|
22687
|
+
readonly event: io.flow.shopify.external.v2.v0.models.InventoryItemDeleteEvent;
|
|
22688
|
+
}
|
|
22453
22689
|
interface ShopifyInventoryItemDeleteWebhookEvent {
|
|
22454
22690
|
readonly id: string;
|
|
22455
22691
|
readonly inventory_item_delete: io.flow.shopify.external.v0.models.ShopifyInventoryItemDelete;
|
|
@@ -22468,6 +22704,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22468
22704
|
readonly organization: string;
|
|
22469
22705
|
readonly shopify_inventory_item_update: io.flow.internal.v0.models.ShopifyInventoryItemUpdateWebhookEvent;
|
|
22470
22706
|
}
|
|
22707
|
+
interface ShopifyInventoryItemUpdateV2 {
|
|
22708
|
+
readonly discriminator: 'shopify_inventory_item_update_v2';
|
|
22709
|
+
readonly event_id: string;
|
|
22710
|
+
readonly timestamp: string;
|
|
22711
|
+
readonly organization: string;
|
|
22712
|
+
readonly triggered_at: string;
|
|
22713
|
+
readonly webhook_id: string;
|
|
22714
|
+
readonly inventory_item_id: string;
|
|
22715
|
+
readonly variant_id?: string;
|
|
22716
|
+
readonly event: io.flow.shopify.external.v2.v0.models.InventoryItemEvent;
|
|
22717
|
+
}
|
|
22471
22718
|
interface ShopifyInventoryItemUpdateWebhookEvent {
|
|
22472
22719
|
readonly id: string;
|
|
22473
22720
|
readonly inventory_item: io.flow.shopify.markets.v0.models.ShopifyInventoryItem;
|
|
@@ -22497,6 +22744,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22497
22744
|
readonly total_count: number;
|
|
22498
22745
|
readonly discrepancies: io.flow.internal.v0.models.ShopifyMarketsDiscrepancy[];
|
|
22499
22746
|
}
|
|
22747
|
+
interface ShopifyMarketsEvent {
|
|
22748
|
+
readonly placeholder?: any;
|
|
22749
|
+
}
|
|
22500
22750
|
interface ShopifyMarketsIncorporationCountry {
|
|
22501
22751
|
readonly country: string;
|
|
22502
22752
|
readonly state?: string;
|
|
@@ -22878,6 +23128,39 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22878
23128
|
readonly id: string;
|
|
22879
23129
|
readonly product: io.flow.shopify.external.v0.models.Product;
|
|
22880
23130
|
}
|
|
23131
|
+
interface ShopifyProductDataCreateV2 {
|
|
23132
|
+
readonly discriminator: 'shopify_product_data_create_v2';
|
|
23133
|
+
readonly event_id: string;
|
|
23134
|
+
readonly timestamp: string;
|
|
23135
|
+
readonly organization: string;
|
|
23136
|
+
readonly triggered_at: string;
|
|
23137
|
+
readonly webhook_id: string;
|
|
23138
|
+
readonly product_id: string;
|
|
23139
|
+
readonly variant_id?: string;
|
|
23140
|
+
readonly event: io.flow.shopify.external.v2.v0.models.ProductEvent;
|
|
23141
|
+
}
|
|
23142
|
+
interface ShopifyProductDataDeleteV2 {
|
|
23143
|
+
readonly discriminator: 'shopify_product_data_delete_v2';
|
|
23144
|
+
readonly event_id: string;
|
|
23145
|
+
readonly timestamp: string;
|
|
23146
|
+
readonly organization: string;
|
|
23147
|
+
readonly triggered_at: string;
|
|
23148
|
+
readonly webhook_id: string;
|
|
23149
|
+
readonly product_id: string;
|
|
23150
|
+
readonly variant_id?: string;
|
|
23151
|
+
readonly event: io.flow.shopify.external.v2.v0.models.ProductEvent;
|
|
23152
|
+
}
|
|
23153
|
+
interface ShopifyProductDataUpdateV2 {
|
|
23154
|
+
readonly discriminator: 'shopify_product_data_update_v2';
|
|
23155
|
+
readonly event_id: string;
|
|
23156
|
+
readonly timestamp: string;
|
|
23157
|
+
readonly organization: string;
|
|
23158
|
+
readonly triggered_at: string;
|
|
23159
|
+
readonly webhook_id: string;
|
|
23160
|
+
readonly product_id: string;
|
|
23161
|
+
readonly variant_id?: string;
|
|
23162
|
+
readonly event: io.flow.shopify.external.v2.v0.models.ProductEvent;
|
|
23163
|
+
}
|
|
22881
23164
|
interface ShopifyProductDeleteDeleted {
|
|
22882
23165
|
readonly discriminator: 'shopify_product_delete_deleted';
|
|
22883
23166
|
readonly event_id: string;
|
|
@@ -22896,6 +23179,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22896
23179
|
readonly id: string;
|
|
22897
23180
|
readonly product_delete: io.flow.shopify.external.v0.models.ProductDelete;
|
|
22898
23181
|
}
|
|
23182
|
+
interface ShopifyProductMetafieldsUpdateV2 {
|
|
23183
|
+
readonly discriminator: 'shopify_product_metafields_update_v2';
|
|
23184
|
+
readonly event_id: string;
|
|
23185
|
+
readonly timestamp: string;
|
|
23186
|
+
readonly organization: string;
|
|
23187
|
+
readonly triggered_at: string;
|
|
23188
|
+
readonly webhook_id: string;
|
|
23189
|
+
readonly product_id: string;
|
|
23190
|
+
readonly variant_id?: string;
|
|
23191
|
+
readonly event: io.flow.shopify.external.v2.v0.models.ProductEvent;
|
|
23192
|
+
}
|
|
22899
23193
|
interface ShopifyProductTaxonomyAttribute {
|
|
22900
23194
|
readonly id: string;
|
|
22901
23195
|
readonly handle: string;
|
|
@@ -22954,6 +23248,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22954
23248
|
readonly domain: string;
|
|
22955
23249
|
readonly api_version: string;
|
|
22956
23250
|
}
|
|
23251
|
+
interface ShopifyProductVariantComponentsV2 {
|
|
23252
|
+
readonly discriminator: 'shopify_product_variant_components_v2';
|
|
23253
|
+
readonly event_id: string;
|
|
23254
|
+
readonly timestamp: string;
|
|
23255
|
+
readonly organization: string;
|
|
23256
|
+
readonly triggered_at: string;
|
|
23257
|
+
readonly webhook_id: string;
|
|
23258
|
+
readonly product_id: string;
|
|
23259
|
+
readonly variant_id?: string;
|
|
23260
|
+
readonly event: io.flow.shopify.external.v2.v0.models.ProductEvent;
|
|
23261
|
+
}
|
|
23262
|
+
interface ShopifyProductVariantDataV2 {
|
|
23263
|
+
readonly discriminator: 'shopify_product_variant_data_v2';
|
|
23264
|
+
readonly event_id: string;
|
|
23265
|
+
readonly timestamp: string;
|
|
23266
|
+
readonly organization: string;
|
|
23267
|
+
readonly triggered_at: string;
|
|
23268
|
+
readonly webhook_id: string;
|
|
23269
|
+
readonly product_id: string;
|
|
23270
|
+
readonly variant_id?: string;
|
|
23271
|
+
readonly event: io.flow.shopify.external.v2.v0.models.ProductEvent;
|
|
23272
|
+
}
|
|
22957
23273
|
interface ShopifyProductWrapper {
|
|
22958
23274
|
readonly shopify_product: io.flow.shopify.external.v0.models.Product;
|
|
22959
23275
|
readonly deleted_at?: string;
|
|
@@ -24103,12 +24419,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24103
24419
|
readonly description: string;
|
|
24104
24420
|
readonly details: io.flow.internal.v0.unions.AdjustmentDetails;
|
|
24105
24421
|
}
|
|
24422
|
+
interface TransactionAdjustmentDeleted {
|
|
24423
|
+
readonly discriminator: 'transaction_adjustment_deleted';
|
|
24424
|
+
readonly event_id: string;
|
|
24425
|
+
readonly timestamp: string;
|
|
24426
|
+
readonly id: string;
|
|
24427
|
+
}
|
|
24106
24428
|
interface TransactionAdjustmentForm {
|
|
24107
24429
|
readonly original_transaction_id: string;
|
|
24108
24430
|
readonly description: string;
|
|
24109
24431
|
readonly details: io.flow.internal.v0.unions.AdjustmentDetails;
|
|
24110
24432
|
readonly type?: io.flow.internal.v0.enums.AdjustmentTransactionType;
|
|
24111
24433
|
}
|
|
24434
|
+
interface TransactionAdjustmentUpserted {
|
|
24435
|
+
readonly discriminator: 'transaction_adjustment_upserted';
|
|
24436
|
+
readonly event_id: string;
|
|
24437
|
+
readonly timestamp: string;
|
|
24438
|
+
readonly transaction_adjustment: io.flow.internal.v0.models.TransactionAdjustment;
|
|
24439
|
+
}
|
|
24112
24440
|
interface TransactionReference {
|
|
24113
24441
|
readonly id: string;
|
|
24114
24442
|
}
|
|
@@ -24426,7 +24754,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
24426
24754
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
24427
24755
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
|
|
24428
24756
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
24429
|
-
type Event = io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.AiReviewBatchSubmitted | io.flow.internal.v0.models.AiReviewResultUpserted | io.flow.internal.v0.models.AiReviewResultDeleted | io.flow.internal.v0.models.AiReviewRequestFailed | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.FulfillmentStatusUpserted | io.flow.internal.v0.models.FulfillmentStatusDeleted | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.BankAccountUpserted | io.flow.internal.v0.models.BankAccountDeleted | io.flow.internal.v0.models.PostingProofUpserted | io.flow.internal.v0.models.PostingProofDeleted | io.flow.internal.v0.models.BankPaymentPromiseUpserted | io.flow.internal.v0.models.BankPaymentPromiseDeleted | io.flow.internal.v0.models.AccountPaymentHoldUpserted | io.flow.internal.v0.models.AccountPaymentHoldDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.SalesPaymentRecordUpserted | io.flow.internal.v0.models.SalesPaymentRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.ChannelShopStatisticsUpserted | io.flow.internal.v0.models.ChannelShopStatisticsDeleted | io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.ShippingCostUpserted | io.flow.internal.v0.models.ShippingCostDeleted | io.flow.internal.v0.models.MorCostUpserted | io.flow.internal.v0.models.MorCostDeleted | io.flow.internal.v0.models.FlatRateLabelReversalUpserted | io.flow.internal.v0.models.FlatRateLabelReversalDeleted | io.flow.internal.v0.models.FlatRateLabelSubsidyUpserted | io.flow.internal.v0.models.FlatRateLabelSubsidyDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputUpserted | io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputDeleted | io.flow.internal.v0.models.OutboundShippingCostUpserted | io.flow.internal.v0.models.OutboundShippingCostDeleted | io.flow.internal.v0.models.AverageOrderValueUpserted | io.flow.internal.v0.models.AverageOrderValueDeleted | io.flow.internal.v0.models.GuaranteedShippingPublishedOutputUpserted | io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted | io.flow.internal.v0.models.GuaranteedShippingSettingsUpserted | io.flow.internal.v0.models.GuaranteedShippingSettingsDeleted | io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateUpserted | io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.MerchantOverrideUpserted | io.flow.internal.v0.models.MerchantOverrideDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelCreationJobUpserted | io.flow.internal.v0.models.LabelCreationJobDeleted | io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted | io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.PartnerRequestUpserted | io.flow.internal.v0.models.PartnerRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.OrderRefundTransactionUpserted | io.flow.internal.v0.models.OrderRefundTransactionDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.PreonboardingSellabilityResultInserted | io.flow.internal.v0.models.PreonboardingSellabilityResultUpdated | io.flow.internal.v0.models.PreonboardingSellabilityResultDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.ProductRestrictionStateInserted | io.flow.internal.v0.models.ProductRestrictionStateUpdated | io.flow.internal.v0.models.ProductRestrictionStateDeleted | io.flow.internal.v0.models.ProductSellabilityResultInserted | io.flow.internal.v0.models.ProductSellabilityResultUpdated | io.flow.internal.v0.models.ProductSellabilityResultDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvUpserted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvDeleted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsUpserted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted | io.flow.internal.v0.models.PreonboardingMerchantUpserted | io.flow.internal.v0.models.PreonboardingMerchantDeleted | io.flow.internal.v0.models.UnserviceableTaxonomyCategoryUpserted | io.flow.internal.v0.models.UnserviceableTaxonomyCategoryDeleted | io.flow.internal.v0.models.SellabilityPendingVerificationUpserted | io.flow.internal.v0.models.SellabilityPendingVerificationDeleted | io.flow.internal.v0.models.ShopifyHs10CodesUpserted | io.flow.internal.v0.models.ShopifyHs10CodesDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted | io.flow.internal.v0.models.ShopifyTestOrderUpserted | io.flow.internal.v0.models.ShopifyTestOrderDeleted | io.flow.internal.v0.models.ShopifyMerchantMarketsUpserted | io.flow.internal.v0.models.ShopifyMerchantMarketsDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.ShopifyDisputeUpserted | io.flow.internal.v0.models.ShopifyDisputeDeleted | io.flow.internal.v0.models.ShopifyReportFileUpserted | io.flow.internal.v0.models.ShopifyReportFileDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.B2BTaxTransactionUpserted | io.flow.internal.v0.models.B2BTaxTransactionDeleted | io.flow.internal.v0.models.GabrielItemUpserted | io.flow.internal.v0.models.GabrielItemDeleted | io.flow.internal.v0.models.ChenglinItemUpserted | io.flow.internal.v0.models.ChenglinItemDeleted | io.flow.internal.v0.models.BojanaItemUpserted | io.flow.internal.v0.models.BojanaItemDeleted | io.flow.internal.v0.models.RaveenaItemUpserted | io.flow.internal.v0.models.RaveenaItemDeleted | io.flow.internal.v0.models.MaheshItemUpserted | io.flow.internal.v0.models.MaheshItemDeleted | io.flow.internal.v0.models.JohnStrongItemUpserted | io.flow.internal.v0.models.JohnStrongItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
24757
|
+
type Event = io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.AiReviewBatchSubmitted | io.flow.internal.v0.models.AiReviewResultUpserted | io.flow.internal.v0.models.AiReviewResultDeleted | io.flow.internal.v0.models.AiReviewRequestFailed | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.FulfillmentStatusUpserted | io.flow.internal.v0.models.FulfillmentStatusDeleted | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.GeRevenueShareTransactionUpserted | io.flow.internal.v0.models.GeRevenueShareTransactionDeleted | io.flow.internal.v0.models.NonL4LTaxDutyFxTransactionUpserted | io.flow.internal.v0.models.NonL4LTaxDutyFxTransactionDeleted | io.flow.internal.v0.models.TransactionAdjustmentUpserted | io.flow.internal.v0.models.TransactionAdjustmentDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.BankAccountUpserted | io.flow.internal.v0.models.BankAccountDeleted | io.flow.internal.v0.models.PostingProofUpserted | io.flow.internal.v0.models.PostingProofDeleted | io.flow.internal.v0.models.BankPaymentPromiseUpserted | io.flow.internal.v0.models.BankPaymentPromiseDeleted | io.flow.internal.v0.models.AccountPaymentHoldUpserted | io.flow.internal.v0.models.AccountPaymentHoldDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.SalesPaymentRecordUpserted | io.flow.internal.v0.models.SalesPaymentRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.ChannelShopStatisticsUpserted | io.flow.internal.v0.models.ChannelShopStatisticsDeleted | io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.ShippingCostUpserted | io.flow.internal.v0.models.ShippingCostDeleted | io.flow.internal.v0.models.MorCostUpserted | io.flow.internal.v0.models.MorCostDeleted | io.flow.internal.v0.models.FlatRateLabelReversalUpserted | io.flow.internal.v0.models.FlatRateLabelReversalDeleted | io.flow.internal.v0.models.FlatRateLabelSubsidyUpserted | io.flow.internal.v0.models.FlatRateLabelSubsidyDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputUpserted | io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputDeleted | io.flow.internal.v0.models.OutboundShippingCostUpserted | io.flow.internal.v0.models.OutboundShippingCostDeleted | io.flow.internal.v0.models.AverageOrderValueUpserted | io.flow.internal.v0.models.AverageOrderValueDeleted | io.flow.internal.v0.models.GuaranteedShippingPublishedOutputUpserted | io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted | io.flow.internal.v0.models.GuaranteedShippingSettingsUpserted | io.flow.internal.v0.models.GuaranteedShippingSettingsDeleted | io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateUpserted | io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.MerchantOverrideUpserted | io.flow.internal.v0.models.MerchantOverrideDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelCreationJobUpserted | io.flow.internal.v0.models.LabelCreationJobDeleted | io.flow.internal.v0.models.GuaranteedShippingOrderGuaranteeUpserted | io.flow.internal.v0.models.GuaranteedShippingOrderGuaranteeDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.PartnerRequestUpserted | io.flow.internal.v0.models.PartnerRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.OrderRefundTransactionUpserted | io.flow.internal.v0.models.OrderRefundTransactionDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.PreonboardingSellabilityResultInserted | io.flow.internal.v0.models.PreonboardingSellabilityResultUpdated | io.flow.internal.v0.models.PreonboardingSellabilityResultDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.ProductRestrictionStateInserted | io.flow.internal.v0.models.ProductRestrictionStateUpdated | io.flow.internal.v0.models.ProductRestrictionStateDeleted | io.flow.internal.v0.models.ProductSellabilityResultInserted | io.flow.internal.v0.models.ProductSellabilityResultUpdated | io.flow.internal.v0.models.ProductSellabilityResultDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvUpserted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvDeleted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsUpserted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted | io.flow.internal.v0.models.PreonboardingMerchantUpserted | io.flow.internal.v0.models.PreonboardingMerchantDeleted | io.flow.internal.v0.models.UnserviceableTaxonomyCategoryUpserted | io.flow.internal.v0.models.UnserviceableTaxonomyCategoryDeleted | io.flow.internal.v0.models.SellabilityPendingVerificationUpserted | io.flow.internal.v0.models.SellabilityPendingVerificationDeleted | io.flow.internal.v0.models.ShopifyHs10CodesUpserted | io.flow.internal.v0.models.ShopifyHs10CodesDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted | io.flow.internal.v0.models.ShopifyTestOrderUpserted | io.flow.internal.v0.models.ShopifyTestOrderDeleted | io.flow.internal.v0.models.ShopifyMerchantMarketsUpserted | io.flow.internal.v0.models.ShopifyMerchantMarketsDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyProductDataCreateV2 | io.flow.internal.v0.models.ShopifyProductDataUpdateV2 | io.flow.internal.v0.models.ShopifyProductMetafieldsUpdateV2 | io.flow.internal.v0.models.ShopifyProductVariantDataV2 | io.flow.internal.v0.models.ShopifyProductVariantComponentsV2 | io.flow.internal.v0.models.ShopifyProductDataDeleteV2 | io.flow.internal.v0.models.ShopifyInventoryItemUpdateV2 | io.flow.internal.v0.models.ShopifyInventoryItemDeleteV2 | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.ShopifyDisputeUpserted | io.flow.internal.v0.models.ShopifyDisputeDeleted | io.flow.internal.v0.models.ShopifyReportFileUpserted | io.flow.internal.v0.models.ShopifyReportFileDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.B2BTaxTransactionUpserted | io.flow.internal.v0.models.B2BTaxTransactionDeleted | io.flow.internal.v0.models.GabrielItemUpserted | io.flow.internal.v0.models.GabrielItemDeleted | io.flow.internal.v0.models.ChenglinItemUpserted | io.flow.internal.v0.models.ChenglinItemDeleted | io.flow.internal.v0.models.BojanaItemUpserted | io.flow.internal.v0.models.BojanaItemDeleted | io.flow.internal.v0.models.RaveenaItemUpserted | io.flow.internal.v0.models.RaveenaItemDeleted | io.flow.internal.v0.models.MaheshItemUpserted | io.flow.internal.v0.models.MaheshItemDeleted | io.flow.internal.v0.models.JohnStrongItemUpserted | io.flow.internal.v0.models.JohnStrongItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
24430
24758
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
24431
24759
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
24432
24760
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -24460,7 +24788,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
24460
24788
|
type ProcessorMerchantPutForm = io.flow.internal.v0.models.StripeMerchantPutForm | io.flow.internal.v0.models.AdyenMerchantPutForm | io.flow.internal.v0.models.FiservMerchantPutForm | io.flow.internal.v0.models.PaypalMerchantPutForm;
|
|
24461
24789
|
type ProofOfPosting = io.flow.internal.v0.models.ProofOfPostingFulfilled | io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.internal.v0.models.ProofOfPostingShippingNotification | io.flow.internal.v0.models.ProofOfPostingOrderCancellation | io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment | io.flow.internal.v0.models.ProofOfPostingTimeElapsed | io.flow.internal.v0.models.ProofOfPostingSynthetic;
|
|
24462
24790
|
type RestrictionAttributeRuleCondition = io.flow.internal.v0.models.RestrictionAttributeConditionSingle | io.flow.internal.v0.models.RestrictionAttributeConditionMultiple;
|
|
24463
|
-
type ReturnTrigger = io.flow.internal.v0.models.ReturnTriggerRefund | io.flow.internal.v0.models.ReturnTriggerReversal;
|
|
24791
|
+
type ReturnTrigger = io.flow.internal.v0.models.ReturnTriggerRefund | io.flow.internal.v0.models.ReturnTriggerReversal | io.flow.internal.v0.models.ReturnTriggerCreditRefund;
|
|
24464
24792
|
type RoutingEntity = io.flow.internal.v0.models.RoutingProcessor | io.flow.internal.v0.models.RoutingAccount | io.flow.internal.v0.models.RoutingMerchant;
|
|
24465
24793
|
type ShopifyMonitoringOrderMonitorType = io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal | io.flow.internal.v0.models.ShopifyMonitoringFulfillmentMissingDetails;
|
|
24466
24794
|
type SimplifiedClassificationTaxonomy = io.flow.internal.v0.models.SimplifiedTaxonomyCategory | io.flow.internal.v0.models.SimplifiedItemLabel;
|
|
@@ -24513,10 +24841,6 @@ export declare type AccountUpsertedV2 = io.flow.internal.v0.models.AccountUpsert
|
|
|
24513
24841
|
export declare type AccountingPendingOrderMetadata = io.flow.internal.v0.models.AccountingPendingOrderMetadata;
|
|
24514
24842
|
export declare type AccountingReturnMetadata = io.flow.internal.v0.models.AccountingReturnMetadata;
|
|
24515
24843
|
export declare type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
|
|
24516
|
-
export declare type AdaptiveShippingOrderGuarantee = io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
24517
|
-
export declare type AdaptiveShippingOrderGuaranteeDeleted = io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted;
|
|
24518
|
-
export declare type AdaptiveShippingOrderGuaranteeState = io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState;
|
|
24519
|
-
export declare type AdaptiveShippingOrderGuaranteeUpserted = io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted;
|
|
24520
24844
|
export declare type AdditionalImportTax = io.flow.internal.v0.models.AdditionalImportTax;
|
|
24521
24845
|
export declare type AdjustmentAmount = io.flow.internal.v0.unions.AdjustmentAmount;
|
|
24522
24846
|
export declare type AdjustmentAmountFixed = io.flow.internal.v0.models.AdjustmentAmountFixed;
|
|
@@ -24576,6 +24900,8 @@ export declare type AfterpayRefundUpserted = io.flow.internal.v0.models.Afterpay
|
|
|
24576
24900
|
export declare type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
|
|
24577
24901
|
export declare type AgentReviewDetail = io.flow.internal.v0.models.AgentReviewDetail;
|
|
24578
24902
|
export declare type AiOutput = io.flow.internal.v0.unions.AiOutput;
|
|
24903
|
+
export declare type AiReviewBatchItemOutcome = io.flow.internal.v0.enums.AiReviewBatchItemOutcome;
|
|
24904
|
+
export declare type AiReviewBatchStatus = io.flow.internal.v0.enums.AiReviewBatchStatus;
|
|
24579
24905
|
export declare type AiReviewBatchSubmitted = io.flow.internal.v0.models.AiReviewBatchSubmitted;
|
|
24580
24906
|
export declare type AiReviewConsumer = io.flow.internal.v0.enums.AiReviewConsumer;
|
|
24581
24907
|
export declare type AiReviewContext = io.flow.internal.v0.unions.AiReviewContext;
|
|
@@ -24613,6 +24939,7 @@ export declare type AuthorizedChargeStatus = io.flow.internal.v0.models.Authoriz
|
|
|
24613
24939
|
export declare type AuthorizedLineItemCharge = io.flow.internal.v0.models.AuthorizedLineItemCharge;
|
|
24614
24940
|
export declare type AuthorizedOrderCharge = io.flow.internal.v0.unions.AuthorizedOrderCharge;
|
|
24615
24941
|
export declare type AuthorizedShippingCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
24942
|
+
export declare type AutoAcceptKeywordCancelling = io.flow.internal.v0.models.AutoAcceptKeywordCancelling;
|
|
24616
24943
|
export declare type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
|
|
24617
24944
|
export declare type AutoReviewCriteria = io.flow.internal.v0.models.AutoReviewCriteria;
|
|
24618
24945
|
export declare type AverageOrderValue = io.flow.internal.v0.models.AverageOrderValue;
|
|
@@ -24719,8 +25046,10 @@ export declare type CalculatorDtcePostBody = io.flow.internal.v0.models.Calculat
|
|
|
24719
25046
|
export declare type CalculatorDtceProduct = io.flow.internal.v0.models.CalculatorDtceProduct;
|
|
24720
25047
|
export declare type CalculatorEngine = io.flow.internal.v0.enums.CalculatorEngine;
|
|
24721
25048
|
export declare type CalculatorOrganizationSettings = io.flow.internal.v0.models.CalculatorOrganizationSettings;
|
|
25049
|
+
export declare type CalculatorOrganizationSettingsCountryOfOriginForm = io.flow.internal.v0.models.CalculatorOrganizationSettingsCountryOfOriginForm;
|
|
24722
25050
|
export declare type CalculatorOrganizationSettingsDeleted = io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted;
|
|
24723
25051
|
export declare type CalculatorOrganizationSettingsForm = io.flow.internal.v0.models.CalculatorOrganizationSettingsForm;
|
|
25052
|
+
export declare type CalculatorOrganizationSettingsHsCodeForm = io.flow.internal.v0.models.CalculatorOrganizationSettingsHsCodeForm;
|
|
24724
25053
|
export declare type CalculatorOrganizationSettingsUpserted = io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted;
|
|
24725
25054
|
export declare type CalculatorStamp = io.flow.internal.v0.unions.CalculatorStamp;
|
|
24726
25055
|
export declare type CallRecord = io.flow.internal.v0.models.CallRecord;
|
|
@@ -25278,7 +25607,9 @@ export declare type GabrielItemType = io.flow.internal.v0.enums.GabrielItemType;
|
|
|
25278
25607
|
export declare type GabrielItemUpserted = io.flow.internal.v0.models.GabrielItemUpserted;
|
|
25279
25608
|
export declare type GeIngestionFileStatus = io.flow.internal.v0.enums.GeIngestionFileStatus;
|
|
25280
25609
|
export declare type GeRevenueShareTransaction = io.flow.internal.v0.models.GeRevenueShareTransaction;
|
|
25610
|
+
export declare type GeRevenueShareTransactionDeleted = io.flow.internal.v0.models.GeRevenueShareTransactionDeleted;
|
|
25281
25611
|
export declare type GeRevenueShareTransactionType = io.flow.internal.v0.enums.GeRevenueShareTransactionType;
|
|
25612
|
+
export declare type GeRevenueShareTransactionUpserted = io.flow.internal.v0.models.GeRevenueShareTransactionUpserted;
|
|
25282
25613
|
export declare type GenerateLoad = io.flow.internal.v0.unions.GenerateLoad;
|
|
25283
25614
|
export declare type GenerateLoadMultipleOrgs = io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
25284
25615
|
export declare type GenerateLoadRate = io.flow.internal.v0.models.GenerateLoadRate;
|
|
@@ -25303,6 +25634,10 @@ export declare type GuaranteedShippingCalibratedOutputUpserted = io.flow.interna
|
|
|
25303
25634
|
export declare type GuaranteedShippingCalibration = io.flow.internal.v0.models.GuaranteedShippingCalibration;
|
|
25304
25635
|
export declare type GuaranteedShippingCalibrationForm = io.flow.internal.v0.models.GuaranteedShippingCalibrationForm;
|
|
25305
25636
|
export declare type GuaranteedShippingCalibrationLaneForm = io.flow.internal.v0.models.GuaranteedShippingCalibrationLaneForm;
|
|
25637
|
+
export declare type GuaranteedShippingOrderGuarantee = io.flow.internal.v0.models.GuaranteedShippingOrderGuarantee;
|
|
25638
|
+
export declare type GuaranteedShippingOrderGuaranteeDeleted = io.flow.internal.v0.models.GuaranteedShippingOrderGuaranteeDeleted;
|
|
25639
|
+
export declare type GuaranteedShippingOrderGuaranteeState = io.flow.internal.v0.enums.GuaranteedShippingOrderGuaranteeState;
|
|
25640
|
+
export declare type GuaranteedShippingOrderGuaranteeUpserted = io.flow.internal.v0.models.GuaranteedShippingOrderGuaranteeUpserted;
|
|
25306
25641
|
export declare type GuaranteedShippingPublication = io.flow.internal.v0.models.GuaranteedShippingPublication;
|
|
25307
25642
|
export declare type GuaranteedShippingPublicationForm = io.flow.internal.v0.models.GuaranteedShippingPublicationForm;
|
|
25308
25643
|
export declare type GuaranteedShippingPublicationLaneForm = io.flow.internal.v0.models.GuaranteedShippingPublicationLaneForm;
|
|
@@ -25563,7 +25898,9 @@ export declare type NoLiabilityReasonCode = io.flow.internal.v0.enums.NoLiabilit
|
|
|
25563
25898
|
export declare type NonChannelPaymentBankAccount = io.flow.internal.v0.models.NonChannelPaymentBankAccount;
|
|
25564
25899
|
export declare type NonL4LTaxDutyFxFeeMetadata = io.flow.internal.v0.models.NonL4LTaxDutyFxFeeMetadata;
|
|
25565
25900
|
export declare type NonL4LTaxDutyFxTransaction = io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction;
|
|
25901
|
+
export declare type NonL4LTaxDutyFxTransactionDeleted = io.flow.internal.v0.models.NonL4LTaxDutyFxTransactionDeleted;
|
|
25566
25902
|
export declare type NonL4LTaxDutyFxTransactionType = io.flow.internal.v0.enums.NonL4LTaxDutyFxTransactionType;
|
|
25903
|
+
export declare type NonL4LTaxDutyFxTransactionUpserted = io.flow.internal.v0.models.NonL4LTaxDutyFxTransactionUpserted;
|
|
25567
25904
|
export declare type Notification = io.flow.internal.v0.models.Notification;
|
|
25568
25905
|
export declare type OnboardingAuditMessage = io.flow.internal.v0.models.OnboardingAuditMessage;
|
|
25569
25906
|
export declare type OnboardingAuditMessageLevel = io.flow.internal.v0.enums.OnboardingAuditMessageLevel;
|
|
@@ -25943,6 +26280,7 @@ export declare type RecordReference = io.flow.internal.v0.models.RecordReference
|
|
|
25943
26280
|
export declare type Redirect = io.flow.internal.v0.models.Redirect;
|
|
25944
26281
|
export declare type RedirectActionCompleted = io.flow.internal.v0.models.RedirectActionCompleted;
|
|
25945
26282
|
export declare type RedirectReason = io.flow.internal.v0.enums.RedirectReason;
|
|
26283
|
+
export declare type RefundTransactionPaymentType = io.flow.internal.v0.enums.RefundTransactionPaymentType;
|
|
25946
26284
|
export declare type RegisteredExporterTariffEligibilityData = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData;
|
|
25947
26285
|
export declare type RegisteredExporterTariffEligibilityForm = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
25948
26286
|
export declare type RejectionReason = io.flow.internal.v0.enums.RejectionReason;
|
|
@@ -26090,6 +26428,7 @@ export declare type ReturnPolicyItemResultUpserted = io.flow.internal.v0.models.
|
|
|
26090
26428
|
export declare type ReturnPolicyUpserted = io.flow.internal.v0.models.ReturnPolicyUpserted;
|
|
26091
26429
|
export declare type ReturnSummary = io.flow.internal.v0.models.ReturnSummary;
|
|
26092
26430
|
export declare type ReturnTrigger = io.flow.internal.v0.unions.ReturnTrigger;
|
|
26431
|
+
export declare type ReturnTriggerCreditRefund = io.flow.internal.v0.models.ReturnTriggerCreditRefund;
|
|
26093
26432
|
export declare type ReturnTriggerRefund = io.flow.internal.v0.models.ReturnTriggerRefund;
|
|
26094
26433
|
export declare type ReturnTriggerReversal = io.flow.internal.v0.models.ReturnTriggerReversal;
|
|
26095
26434
|
export declare type RevenueRecord = io.flow.internal.v0.models.RevenueRecord;
|
|
@@ -26174,9 +26513,11 @@ export declare type ShopifyInventoryItemCreateUpserted = io.flow.internal.v0.mod
|
|
|
26174
26513
|
export declare type ShopifyInventoryItemCreateWebhookEvent = io.flow.internal.v0.models.ShopifyInventoryItemCreateWebhookEvent;
|
|
26175
26514
|
export declare type ShopifyInventoryItemDeleteDeleted = io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted;
|
|
26176
26515
|
export declare type ShopifyInventoryItemDeleteUpserted = io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted;
|
|
26516
|
+
export declare type ShopifyInventoryItemDeleteV2 = io.flow.internal.v0.models.ShopifyInventoryItemDeleteV2;
|
|
26177
26517
|
export declare type ShopifyInventoryItemDeleteWebhookEvent = io.flow.internal.v0.models.ShopifyInventoryItemDeleteWebhookEvent;
|
|
26178
26518
|
export declare type ShopifyInventoryItemUpdateDeleted = io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted;
|
|
26179
26519
|
export declare type ShopifyInventoryItemUpdateUpserted = io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted;
|
|
26520
|
+
export declare type ShopifyInventoryItemUpdateV2 = io.flow.internal.v0.models.ShopifyInventoryItemUpdateV2;
|
|
26180
26521
|
export declare type ShopifyInventoryItemUpdateWebhookEvent = io.flow.internal.v0.models.ShopifyInventoryItemUpdateWebhookEvent;
|
|
26181
26522
|
export declare type ShopifyMarketsBestSellingProduct = io.flow.internal.v0.models.ShopifyMarketsBestSellingProduct;
|
|
26182
26523
|
export declare type ShopifyMarketsBestSellingProductDeleted = io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted;
|
|
@@ -26184,6 +26525,7 @@ export declare type ShopifyMarketsBestSellingProductUpserted = io.flow.internal.
|
|
|
26184
26525
|
export declare type ShopifyMarketsDangerousGoods = io.flow.internal.v0.enums.ShopifyMarketsDangerousGoods;
|
|
26185
26526
|
export declare type ShopifyMarketsDiscrepancy = io.flow.internal.v0.models.ShopifyMarketsDiscrepancy;
|
|
26186
26527
|
export declare type ShopifyMarketsDiscrepancyData = io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData;
|
|
26528
|
+
export declare type ShopifyMarketsEvent = io.flow.internal.v0.models.ShopifyMarketsEvent;
|
|
26187
26529
|
export declare type ShopifyMarketsHtsNumberAvailable = io.flow.internal.v0.enums.ShopifyMarketsHtsNumberAvailable;
|
|
26188
26530
|
export declare type ShopifyMarketsIncorporationCountry = io.flow.internal.v0.models.ShopifyMarketsIncorporationCountry;
|
|
26189
26531
|
export declare type ShopifyMarketsInternalOrderMetrics = io.flow.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
|
|
@@ -26256,9 +26598,13 @@ export declare type ShopifyProductBundleUpserted = io.flow.internal.v0.models.Sh
|
|
|
26256
26598
|
export declare type ShopifyProductCreateDeleted = io.flow.internal.v0.models.ShopifyProductCreateDeleted;
|
|
26257
26599
|
export declare type ShopifyProductCreateUpserted = io.flow.internal.v0.models.ShopifyProductCreateUpserted;
|
|
26258
26600
|
export declare type ShopifyProductCreateWebhookEvent = io.flow.internal.v0.models.ShopifyProductCreateWebhookEvent;
|
|
26601
|
+
export declare type ShopifyProductDataCreateV2 = io.flow.internal.v0.models.ShopifyProductDataCreateV2;
|
|
26602
|
+
export declare type ShopifyProductDataDeleteV2 = io.flow.internal.v0.models.ShopifyProductDataDeleteV2;
|
|
26603
|
+
export declare type ShopifyProductDataUpdateV2 = io.flow.internal.v0.models.ShopifyProductDataUpdateV2;
|
|
26259
26604
|
export declare type ShopifyProductDeleteDeleted = io.flow.internal.v0.models.ShopifyProductDeleteDeleted;
|
|
26260
26605
|
export declare type ShopifyProductDeleteUpserted = io.flow.internal.v0.models.ShopifyProductDeleteUpserted;
|
|
26261
26606
|
export declare type ShopifyProductDeleteWebhookEvent = io.flow.internal.v0.models.ShopifyProductDeleteWebhookEvent;
|
|
26607
|
+
export declare type ShopifyProductMetafieldsUpdateV2 = io.flow.internal.v0.models.ShopifyProductMetafieldsUpdateV2;
|
|
26262
26608
|
export declare type ShopifyProductTaxonomyAttribute = io.flow.internal.v0.models.ShopifyProductTaxonomyAttribute;
|
|
26263
26609
|
export declare type ShopifyProductTaxonomyAttributeDeleted = io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted;
|
|
26264
26610
|
export declare type ShopifyProductTaxonomyAttributeUpserted = io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted;
|
|
@@ -26268,6 +26614,8 @@ export declare type ShopifyProductTaxonomyAttributeValueUpserted = io.flow.inter
|
|
|
26268
26614
|
export declare type ShopifyProductUpdateDeleted = io.flow.internal.v0.models.ShopifyProductUpdateDeleted;
|
|
26269
26615
|
export declare type ShopifyProductUpdateUpserted = io.flow.internal.v0.models.ShopifyProductUpdateUpserted;
|
|
26270
26616
|
export declare type ShopifyProductUpdateWebhookEvent = io.flow.internal.v0.models.ShopifyProductUpdateWebhookEvent;
|
|
26617
|
+
export declare type ShopifyProductVariantComponentsV2 = io.flow.internal.v0.models.ShopifyProductVariantComponentsV2;
|
|
26618
|
+
export declare type ShopifyProductVariantDataV2 = io.flow.internal.v0.models.ShopifyProductVariantDataV2;
|
|
26271
26619
|
export declare type ShopifyProductWrapper = io.flow.internal.v0.models.ShopifyProductWrapper;
|
|
26272
26620
|
export declare type ShopifyRateCustomsDetail = io.flow.internal.v0.models.ShopifyRateCustomsDetail;
|
|
26273
26621
|
export declare type ShopifyRatePickupPoint = io.flow.internal.v0.models.ShopifyRatePickupPoint;
|
|
@@ -26463,7 +26811,9 @@ export declare type TrackingUpserted = io.flow.internal.v0.models.TrackingUpsert
|
|
|
26463
26811
|
export declare type TrackingWebhook = io.flow.internal.v0.models.TrackingWebhook;
|
|
26464
26812
|
export declare type Transaction = io.flow.internal.v0.unions.Transaction;
|
|
26465
26813
|
export declare type TransactionAdjustment = io.flow.internal.v0.models.TransactionAdjustment;
|
|
26814
|
+
export declare type TransactionAdjustmentDeleted = io.flow.internal.v0.models.TransactionAdjustmentDeleted;
|
|
26466
26815
|
export declare type TransactionAdjustmentForm = io.flow.internal.v0.models.TransactionAdjustmentForm;
|
|
26816
|
+
export declare type TransactionAdjustmentUpserted = io.flow.internal.v0.models.TransactionAdjustmentUpserted;
|
|
26467
26817
|
export declare type TransactionPostingMethod = io.flow.internal.v0.enums.TransactionPostingMethod;
|
|
26468
26818
|
export declare type TransactionReference = io.flow.internal.v0.models.TransactionReference;
|
|
26469
26819
|
export declare type TransactionStatement = io.flow.internal.v0.models.TransactionStatement;
|