@flowio/api-internal-prop-types 9.24.52 → 9.24.53
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/lib/api-internal.d.ts +282 -70
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +282 -70
- package/src/api-internal.js +1449 -1198
package/lib/api-internal.d.ts
CHANGED
|
@@ -5411,7 +5411,6 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5411
5411
|
readonly 'id': number;
|
|
5412
5412
|
readonly 'quantity': number;
|
|
5413
5413
|
readonly 'fulfillable_quantity'?: number;
|
|
5414
|
-
readonly 'fulfillment_service': string;
|
|
5415
5414
|
readonly 'fulfillment_status'?: io.flow.shopify.external.v0.enums.FulfillmentStatusType;
|
|
5416
5415
|
readonly 'grams'?: number;
|
|
5417
5416
|
readonly 'price'?: string;
|
|
@@ -5432,7 +5431,6 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5432
5431
|
|
|
5433
5432
|
interface ShopifyLineItemForm {
|
|
5434
5433
|
readonly 'fulfillable_quantity'?: number;
|
|
5435
|
-
readonly 'fulfillment_service': string;
|
|
5436
5434
|
readonly 'fulfillment_status'?: io.flow.shopify.external.v0.enums.FulfillmentStatusType;
|
|
5437
5435
|
readonly 'grams'?: number;
|
|
5438
5436
|
readonly 'price'?: string;
|
|
@@ -5613,7 +5611,6 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5613
5611
|
readonly 'title': string;
|
|
5614
5612
|
readonly 'tax_lines': io.flow.shopify.external.v0.models.ShopifyTaxLine[];
|
|
5615
5613
|
readonly 'carrier_identifier'?: string;
|
|
5616
|
-
readonly 'requested_fulfillment_service_id'?: string;
|
|
5617
5614
|
}
|
|
5618
5615
|
|
|
5619
5616
|
interface ShopifyTaxLine {
|
|
@@ -5764,7 +5761,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
5764
5761
|
type ShopifyOrderValueType = 'string' | 'integer';
|
|
5765
5762
|
type ShopifyTaxExemptions = 'EXEMPT_ALL' | 'CA_STATUS_CARD_EXEMPTION' | 'CA_DIPLOMAT_EXEMPTION' | 'CA_BC_RESELLER_EXEMPTION' | 'CA_MB_RESELLER_EXEMPTION' | 'CA_SK_RESELLER_EXEMPTION' | 'CA_BC_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_MB_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_NS_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_PE_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_SK_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_BC_PRODUCTION_AND_MACHINERY_EXEMPTION' | 'CA_SK_PRODUCTION_AND_MACHINERY_EXEMPTION' | 'CA_BC_SUB_CONTRACTOR_EXEMPTION' | 'CA_SK_SUB_CONTRACTOR_EXEMPTION' | 'CA_BC_CONTRACTOR_EXEMPTION' | 'CA_SK_CONTRACTOR_EXEMPTION' | 'CA_ON_PURCHASE_EXEMPTION' | 'CA_MB_FARMER_EXEMPTION' | 'CA_NS_FARMER_EXEMPTION' | 'CA_SK_FARMER_EXEMPTION';
|
|
5766
5763
|
type ShopifyWebhookFormat = 'json' | 'xml';
|
|
5767
|
-
type ShopifyWebhookTopic = 'customers/redact' | 'customers/data_request' | 'locations/create' | 'locations/update' | 'locations/delete' | 'orders/cancelled' | 'orders/create' | 'orders/fulfilled' | 'orders/paid' | 'orders/partially_fulfilled' | 'orders/updated' | 'orders/delete' | 'orders/edited' | 'products/create' | 'products/delete' | 'products/update' | 'inventory_items/create' | 'inventory_items/update' | 'inventory_items/delete' | 'refunds/create' | 'fulfillment_events/create' | 'fulfillment_events/delete' | 'shop/redact' | 'themes/create' | 'themes/publish' | 'themes/update';
|
|
5764
|
+
type ShopifyWebhookTopic = 'customers/redact' | 'customers/data_request' | 'locations/create' | 'locations/update' | 'locations/delete' | 'order_transactions/create' | 'orders/cancelled' | 'orders/create' | 'orders/fulfilled' | 'orders/paid' | 'orders/partially_fulfilled' | 'orders/updated' | 'orders/delete' | 'orders/edited' | 'products/create' | 'products/delete' | 'products/update' | 'inventory_items/create' | 'inventory_items/update' | 'inventory_items/delete' | 'refunds/create' | 'fulfillment_events/create' | 'fulfillment_events/delete' | 'shop/redact' | 'themes/create' | 'themes/publish' | 'themes/update';
|
|
5768
5765
|
}
|
|
5769
5766
|
|
|
5770
5767
|
declare namespace io.flow.shopify.markets.v0.models {
|
|
@@ -6082,10 +6079,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6082
6079
|
readonly 'updated_at'?: string;
|
|
6083
6080
|
readonly 'first_name'?: string;
|
|
6084
6081
|
readonly 'last_name'?: string;
|
|
6085
|
-
readonly 'orders_count'?: number;
|
|
6086
6082
|
readonly 'state'?: string;
|
|
6087
|
-
readonly 'total_spent'?: string;
|
|
6088
|
-
readonly 'last_order_id'?: number;
|
|
6089
6083
|
readonly 'note'?: string;
|
|
6090
6084
|
readonly 'verified_email'?: boolean;
|
|
6091
6085
|
readonly 'multipass_identifier'?: string;
|
|
@@ -6093,7 +6087,6 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6093
6087
|
readonly 'tax_exemptions'?: any/*json*/[];
|
|
6094
6088
|
readonly 'phone'?: string;
|
|
6095
6089
|
readonly 'tags'?: string;
|
|
6096
|
-
readonly 'last_order_name'?: string;
|
|
6097
6090
|
readonly 'currency'?: string;
|
|
6098
6091
|
readonly 'addresses'?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
|
|
6099
6092
|
readonly 'default_address'?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
|
|
@@ -6183,7 +6176,6 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6183
6176
|
|
|
6184
6177
|
interface ShopifyOrderLineItem {
|
|
6185
6178
|
readonly 'fulfillable_quantity'?: number;
|
|
6186
|
-
readonly 'fulfillment_service': string;
|
|
6187
6179
|
readonly 'fulfillment_status'?: io.flow.shopify.markets.v0.enums.ShopifyOrderFulfillmentStatusType;
|
|
6188
6180
|
readonly 'grams'?: number;
|
|
6189
6181
|
readonly 'id': number;
|
|
@@ -6207,7 +6199,6 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6207
6199
|
readonly 'total_discount'?: string;
|
|
6208
6200
|
readonly 'total_discount_set'?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
6209
6201
|
readonly 'discount_allocations'?: io.flow.shopify.markets.v0.models.ShopifyOrderDiscountAllocation[];
|
|
6210
|
-
readonly 'origin_location'?: io.flow.shopify.markets.v0.models.ShopifyOrderOriginLocation;
|
|
6211
6202
|
readonly 'variant_inventory_management'?: string;
|
|
6212
6203
|
readonly 'product_exists'?: boolean;
|
|
6213
6204
|
readonly 'duties': io.flow.shopify.markets.v0.models.ShopifyOrderDuty[];
|
|
@@ -6296,7 +6287,6 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6296
6287
|
readonly 'title': string;
|
|
6297
6288
|
readonly 'tax_lines': io.flow.shopify.markets.v0.models.ShopifyOrderTaxLine[];
|
|
6298
6289
|
readonly 'carrier_identifier'?: string;
|
|
6299
|
-
readonly 'requested_fulfillment_service_id'?: string;
|
|
6300
6290
|
readonly 'price_set': io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
6301
6291
|
readonly 'discounted_price_set': io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
6302
6292
|
}
|
|
@@ -6316,7 +6306,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6316
6306
|
readonly 'currency': string;
|
|
6317
6307
|
readonly 'status'?: io.flow.shopify.markets.v0.enums.ShopifyOrderTransactionStatus;
|
|
6318
6308
|
readonly 'payment_details'?: io.flow.shopify.markets.v0.models.ShopifyOrderPaymentDetail;
|
|
6319
|
-
readonly 'receipt'
|
|
6309
|
+
readonly 'receipt'?: any/*object*/;
|
|
6320
6310
|
readonly 'authorization'?: string;
|
|
6321
6311
|
readonly 'created_at': string;
|
|
6322
6312
|
readonly 'device_id'?: number;
|
|
@@ -10040,9 +10030,10 @@ declare namespace io.flow.item.v0.models {
|
|
|
10040
10030
|
}
|
|
10041
10031
|
|
|
10042
10032
|
declare namespace io.flow.billing.v0.enums {
|
|
10043
|
-
type AttachmentType = 'csv';
|
|
10044
10033
|
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer';
|
|
10045
|
-
type
|
|
10034
|
+
type PayoutAttachmentType = 'transactions';
|
|
10035
|
+
type PayoutStatusFailureCode = 'invalid_account_number' | 'could_not_process';
|
|
10036
|
+
type StatementAttachmentType = 'csv';
|
|
10046
10037
|
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
10047
10038
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
10048
10039
|
}
|
|
@@ -10054,7 +10045,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
10054
10045
|
}
|
|
10055
10046
|
|
|
10056
10047
|
interface Attachment {
|
|
10057
|
-
readonly 'type': io.flow.billing.v0.enums.
|
|
10048
|
+
readonly 'type': io.flow.billing.v0.enums.StatementAttachmentType;
|
|
10058
10049
|
readonly 'url': string;
|
|
10059
10050
|
}
|
|
10060
10051
|
|
|
@@ -10091,6 +10082,16 @@ declare namespace io.flow.billing.v0.models {
|
|
|
10091
10082
|
readonly 'description'?: string;
|
|
10092
10083
|
}
|
|
10093
10084
|
|
|
10085
|
+
interface ChannelPayout {
|
|
10086
|
+
readonly 'id': string;
|
|
10087
|
+
readonly 'account': io.flow.billing.v0.models.AccountReference;
|
|
10088
|
+
readonly 'status': io.flow.billing.v0.unions.PayoutStatus;
|
|
10089
|
+
readonly 'amount': number;
|
|
10090
|
+
readonly 'attachments': io.flow.billing.v0.models.PayoutAttachment[];
|
|
10091
|
+
readonly 'created_at': string;
|
|
10092
|
+
readonly 'updated_at': string;
|
|
10093
|
+
}
|
|
10094
|
+
|
|
10094
10095
|
interface ChannelStatement {
|
|
10095
10096
|
readonly 'id': string;
|
|
10096
10097
|
readonly 'account': io.flow.billing.v0.models.AccountReference;
|
|
@@ -10101,12 +10102,13 @@ declare namespace io.flow.billing.v0.models {
|
|
|
10101
10102
|
}
|
|
10102
10103
|
|
|
10103
10104
|
interface ChannelTransaction {
|
|
10105
|
+
readonly 'statement'?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
10104
10106
|
readonly 'id': string;
|
|
10105
10107
|
readonly 'order'?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
10106
|
-
readonly 'statement'?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
10107
10108
|
readonly 'payment_request'?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
10108
10109
|
readonly 'currency': string;
|
|
10109
10110
|
readonly 'source': io.flow.billing.v0.enums.TransactionSource;
|
|
10111
|
+
readonly 'parent'?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
10110
10112
|
readonly 'gross': number;
|
|
10111
10113
|
readonly 'fees': io.flow.billing.v0.models.FeeDeduction[];
|
|
10112
10114
|
readonly 'withholdings': io.flow.billing.v0.models.WithholdingDeduction[];
|
|
@@ -10114,6 +10116,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
10114
10116
|
readonly 'net': number;
|
|
10115
10117
|
readonly 'identifiers': Record<string, string>;
|
|
10116
10118
|
readonly 'created_at': string;
|
|
10119
|
+
readonly 'updated_at': string;
|
|
10117
10120
|
}
|
|
10118
10121
|
|
|
10119
10122
|
interface DefaultBankAccountForm {
|
|
@@ -10126,11 +10129,6 @@ declare namespace io.flow.billing.v0.models {
|
|
|
10126
10129
|
readonly 'description'?: string;
|
|
10127
10130
|
}
|
|
10128
10131
|
|
|
10129
|
-
interface NoPayout {
|
|
10130
|
-
readonly 'discriminator': 'no_payout';
|
|
10131
|
-
readonly 'placeholder'?: string;
|
|
10132
|
-
}
|
|
10133
|
-
|
|
10134
10132
|
interface OrganizationBankAccount {
|
|
10135
10133
|
readonly 'id': string;
|
|
10136
10134
|
readonly 'last4': string;
|
|
@@ -10141,16 +10139,69 @@ declare namespace io.flow.billing.v0.models {
|
|
|
10141
10139
|
readonly 'bank_account': io.flow.billing.v0.models.BankAccountReference;
|
|
10142
10140
|
}
|
|
10143
10141
|
|
|
10144
|
-
interface
|
|
10145
|
-
readonly '
|
|
10146
|
-
readonly '
|
|
10142
|
+
interface OrganizationPayout {
|
|
10143
|
+
readonly 'id': string;
|
|
10144
|
+
readonly 'account': io.flow.billing.v0.models.AccountReference;
|
|
10145
|
+
readonly 'status': io.flow.billing.v0.unions.PayoutStatus;
|
|
10147
10146
|
readonly 'amount': number;
|
|
10148
|
-
readonly '
|
|
10147
|
+
readonly 'attachments': io.flow.billing.v0.models.PayoutAttachment[];
|
|
10148
|
+
readonly 'created_at': string;
|
|
10149
|
+
readonly 'updated_at': string;
|
|
10149
10150
|
}
|
|
10150
10151
|
|
|
10151
|
-
interface
|
|
10152
|
-
readonly '
|
|
10153
|
-
readonly '
|
|
10152
|
+
interface ParentTransactionSummary {
|
|
10153
|
+
readonly 'id': string;
|
|
10154
|
+
readonly 'source': io.flow.billing.v0.enums.TransactionSource;
|
|
10155
|
+
}
|
|
10156
|
+
|
|
10157
|
+
interface PayoutAttachment {
|
|
10158
|
+
readonly 'type': io.flow.billing.v0.enums.PayoutAttachmentType;
|
|
10159
|
+
readonly 'url': string;
|
|
10160
|
+
}
|
|
10161
|
+
|
|
10162
|
+
interface PayoutStatusFailed {
|
|
10163
|
+
readonly 'code': 'failed';
|
|
10164
|
+
readonly 'timestamp': string;
|
|
10165
|
+
readonly 'reason': io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
10166
|
+
}
|
|
10167
|
+
|
|
10168
|
+
interface PayoutStatusScheduled {
|
|
10169
|
+
readonly 'code': 'scheduled';
|
|
10170
|
+
readonly 'placeholder'?: string;
|
|
10171
|
+
}
|
|
10172
|
+
|
|
10173
|
+
interface PayoutStatusSent {
|
|
10174
|
+
readonly 'code': 'sent';
|
|
10175
|
+
readonly 'timestamp': string;
|
|
10176
|
+
}
|
|
10177
|
+
|
|
10178
|
+
interface PayoutTransaction {
|
|
10179
|
+
readonly 'id': string;
|
|
10180
|
+
readonly 'order'?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
10181
|
+
readonly 'payment_request'?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
10182
|
+
readonly 'currency': string;
|
|
10183
|
+
readonly 'source': io.flow.billing.v0.enums.TransactionSource;
|
|
10184
|
+
readonly 'parent'?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
10185
|
+
readonly 'gross': number;
|
|
10186
|
+
readonly 'fees': io.flow.billing.v0.models.FeeDeduction[];
|
|
10187
|
+
readonly 'withholdings': io.flow.billing.v0.models.WithholdingDeduction[];
|
|
10188
|
+
readonly 'discounts': io.flow.billing.v0.models.BillingDiscount[];
|
|
10189
|
+
readonly 'net': number;
|
|
10190
|
+
readonly 'identifiers': Record<string, string>;
|
|
10191
|
+
readonly 'created_at': string;
|
|
10192
|
+
readonly 'updated_at': string;
|
|
10193
|
+
}
|
|
10194
|
+
|
|
10195
|
+
interface SettlementNoPayout {
|
|
10196
|
+
readonly 'discriminator': 'no_payout';
|
|
10197
|
+
readonly 'placeholder'?: string;
|
|
10198
|
+
}
|
|
10199
|
+
|
|
10200
|
+
interface SettlementPayout {
|
|
10201
|
+
readonly 'discriminator': 'payout';
|
|
10202
|
+
readonly 'status': io.flow.billing.v0.unions.PayoutStatus;
|
|
10203
|
+
readonly 'amount': number;
|
|
10204
|
+
readonly 'sent_on'?: string;
|
|
10154
10205
|
}
|
|
10155
10206
|
|
|
10156
10207
|
interface Statement {
|
|
@@ -10163,12 +10214,13 @@ declare namespace io.flow.billing.v0.models {
|
|
|
10163
10214
|
}
|
|
10164
10215
|
|
|
10165
10216
|
interface Transaction {
|
|
10217
|
+
readonly 'statement'?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
10166
10218
|
readonly 'id': string;
|
|
10167
10219
|
readonly 'order'?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
10168
|
-
readonly 'statement'?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
10169
10220
|
readonly 'payment_request'?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
10170
10221
|
readonly 'currency': string;
|
|
10171
10222
|
readonly 'source': io.flow.billing.v0.enums.TransactionSource;
|
|
10223
|
+
readonly 'parent'?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
10172
10224
|
readonly 'gross': number;
|
|
10173
10225
|
readonly 'fees': io.flow.billing.v0.models.FeeDeduction[];
|
|
10174
10226
|
readonly 'withholdings': io.flow.billing.v0.models.WithholdingDeduction[];
|
|
@@ -10176,6 +10228,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
10176
10228
|
readonly 'net': number;
|
|
10177
10229
|
readonly 'identifiers': Record<string, string>;
|
|
10178
10230
|
readonly 'created_at': string;
|
|
10231
|
+
readonly 'updated_at': string;
|
|
10179
10232
|
}
|
|
10180
10233
|
|
|
10181
10234
|
interface WithholdingDeduction {
|
|
@@ -10186,7 +10239,8 @@ declare namespace io.flow.billing.v0.models {
|
|
|
10186
10239
|
}
|
|
10187
10240
|
|
|
10188
10241
|
declare namespace io.flow.billing.v0.unions {
|
|
10189
|
-
type
|
|
10242
|
+
type PayoutStatus = (io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed);
|
|
10243
|
+
type Settlement = (io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout);
|
|
10190
10244
|
}
|
|
10191
10245
|
|
|
10192
10246
|
declare namespace io.flow.harmonization.v0.enums {
|
|
@@ -11276,7 +11330,7 @@ declare namespace io.flow.catalog.RESERVED_WORD_return.v0.models {
|
|
|
11276
11330
|
}
|
|
11277
11331
|
|
|
11278
11332
|
declare namespace io.flow.apple.pay.v0.enums {
|
|
11279
|
-
type ApplePayContactField = 'email' | 'name' | 'phone' | '
|
|
11333
|
+
type ApplePayContactField = 'email' | 'name' | 'phone' | 'postalAddress' | 'phoneticName';
|
|
11280
11334
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
11281
11335
|
type ApplePayMerchantCapability = 'supports3DS' | 'supportsCredit' | 'supportsDebit' | 'supportsEMV';
|
|
11282
11336
|
type ApplePayShippingType = 'shipping' | 'delivery' | 'store_pickup' | 'service_pickup';
|
|
@@ -11287,7 +11341,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
11287
11341
|
interface ApplePayLineItem {
|
|
11288
11342
|
readonly 'label': string;
|
|
11289
11343
|
readonly 'type': io.flow.apple.pay.v0.enums.ApplePayLineItemType;
|
|
11290
|
-
readonly 'amount':
|
|
11344
|
+
readonly 'amount': string;
|
|
11291
11345
|
}
|
|
11292
11346
|
|
|
11293
11347
|
interface ApplePayPaymentContact {
|
|
@@ -11338,7 +11392,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
11338
11392
|
interface ApplePayShippingMethod {
|
|
11339
11393
|
readonly 'label': string;
|
|
11340
11394
|
readonly 'detail': string;
|
|
11341
|
-
readonly 'amount':
|
|
11395
|
+
readonly 'amount': string;
|
|
11342
11396
|
readonly 'identifier': string;
|
|
11343
11397
|
}
|
|
11344
11398
|
}
|
|
@@ -11439,7 +11493,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
11439
11493
|
|
|
11440
11494
|
interface SetupCompleted {
|
|
11441
11495
|
readonly 'discriminator': 'setup_completed';
|
|
11442
|
-
readonly '
|
|
11496
|
+
readonly 'third_party_logistics_guid': string;
|
|
11443
11497
|
}
|
|
11444
11498
|
|
|
11445
11499
|
interface SetupInProgress {
|
|
@@ -11791,6 +11845,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11791
11845
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
11792
11846
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
11793
11847
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
11848
|
+
type BankPaymentStatusCode = 'sent' | 'failed';
|
|
11794
11849
|
type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
|
|
11795
11850
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'all';
|
|
11796
11851
|
type BillingStatementBatchFileKey = 'archive' | 'summary';
|
|
@@ -11804,7 +11859,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11804
11859
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
11805
11860
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
11806
11861
|
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
11807
|
-
type
|
|
11862
|
+
type ChannelOrderAcceptanceErrorAction = 'auto_reject';
|
|
11863
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order';
|
|
11808
11864
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
|
|
11809
11865
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
11810
11866
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
@@ -11910,7 +11966,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11910
11966
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
11911
11967
|
type EmptyAttribute = 'irrelevant';
|
|
11912
11968
|
type ErpFileType = 'vendor';
|
|
11913
|
-
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' | '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' | '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_deleted' | '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' | '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' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'localized_content_upserted' | 'localization_upserted' | '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' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | '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' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_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' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'pregenerated_request_event' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | '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' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_restriction_approval_upserted' | 'organization_restriction_approval_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' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_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' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
11969
|
+
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' | 'test_upserted' | 'test_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' | '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_deleted' | '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' | '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' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'localized_content_upserted' | 'localization_upserted' | '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' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | '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' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_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' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'pregenerated_request_event' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | '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' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_restriction_approval_upserted' | 'organization_restriction_approval_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' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_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' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_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' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
11914
11970
|
type ExperienceImportType = 'experience_with_settings';
|
|
11915
11971
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
11916
11972
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -11996,6 +12052,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11996
12052
|
type RateSource = 'calculated' | 'market';
|
|
11997
12053
|
type ReboundConfigurationStatus = 'active' | 'inactive';
|
|
11998
12054
|
type RedirectReason = 'three_d_secure';
|
|
12055
|
+
type RejectionReason = 'suspicious_behavior' | 'suspicious_past_activity' | 'risky_velocity' | 'previous_chargebacks' | 'restricted_party_screening';
|
|
11999
12056
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
12000
12057
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
12001
12058
|
type ResponsibleParty = 'flow' | 'organization';
|
|
@@ -12048,20 +12105,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12048
12105
|
readonly 'accepted_at': string;
|
|
12049
12106
|
}
|
|
12050
12107
|
|
|
12051
|
-
interface Account {
|
|
12052
|
-
readonly 'id': string;
|
|
12053
|
-
readonly 'currency': string;
|
|
12054
|
-
readonly 'updated_at': string;
|
|
12055
|
-
readonly 'timezone': io.flow.reference.v0.models.Timezone;
|
|
12056
|
-
readonly 'payment_schedule': io.flow.common.v0.unions.RepeatSchedule;
|
|
12057
|
-
readonly 'payment_conditions'?: string;
|
|
12058
|
-
readonly 'deposit_rule'?: io.flow.internal.v0.models.AccountDepositRule;
|
|
12059
|
-
readonly 'center_key'?: string;
|
|
12060
|
-
readonly 'statistics': io.flow.internal.v0.models.AccountStatistics;
|
|
12061
|
-
readonly 'next_statement': io.flow.internal.v0.models.NextBillingStatement;
|
|
12062
|
-
readonly 'created_at': string;
|
|
12063
|
-
}
|
|
12064
|
-
|
|
12065
12108
|
interface AccountContact {
|
|
12066
12109
|
readonly 'id': string;
|
|
12067
12110
|
readonly 'email': string;
|
|
@@ -12175,11 +12218,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12175
12218
|
readonly 'rates': io.flow.internal.v0.models.AccountProcessingRates;
|
|
12176
12219
|
}
|
|
12177
12220
|
|
|
12178
|
-
interface AccountReference {
|
|
12179
|
-
readonly 'id': string;
|
|
12180
|
-
readonly 'currency': string;
|
|
12181
|
-
}
|
|
12182
|
-
|
|
12183
12221
|
interface AccountSettingLabelFees {
|
|
12184
12222
|
readonly 'flow'?: io.flow.internal.v0.models.TieredFee;
|
|
12185
12223
|
readonly 'organization'?: io.flow.internal.v0.models.TieredFee;
|
|
@@ -12264,14 +12302,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12264
12302
|
readonly 'event_id': string;
|
|
12265
12303
|
readonly 'timestamp': string;
|
|
12266
12304
|
readonly 'organization': string;
|
|
12267
|
-
readonly 'account': io.flow.internal.v0.models.
|
|
12305
|
+
readonly 'account': io.flow.internal.v0.models.OrganizationAccount;
|
|
12268
12306
|
}
|
|
12269
12307
|
|
|
12270
12308
|
interface AccountUpsertedV2 {
|
|
12271
12309
|
readonly 'discriminator': 'account_upserted_v2';
|
|
12272
12310
|
readonly 'event_id': string;
|
|
12273
12311
|
readonly 'timestamp': string;
|
|
12274
|
-
readonly 'account': io.flow.internal.v0.models.
|
|
12312
|
+
readonly 'account': io.flow.internal.v0.models.FlowAccount;
|
|
12275
12313
|
}
|
|
12276
12314
|
|
|
12277
12315
|
interface ActionQuantity {
|
|
@@ -12820,10 +12858,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12820
12858
|
interface BankPayment {
|
|
12821
12859
|
readonly 'id': string;
|
|
12822
12860
|
readonly 'key': string;
|
|
12823
|
-
readonly 'account': io.flow.
|
|
12861
|
+
readonly 'account': io.flow.billing.v0.models.AccountReference;
|
|
12824
12862
|
readonly 'reference'?: string;
|
|
12825
12863
|
readonly 'sent_on': string;
|
|
12826
|
-
readonly 'status': io.flow.billing.v0.
|
|
12864
|
+
readonly 'status': io.flow.billing.v0.unions.PayoutStatus;
|
|
12827
12865
|
readonly 'expected_delivery_by': string;
|
|
12828
12866
|
readonly 'total': io.flow.common.v0.models.Price;
|
|
12829
12867
|
}
|
|
@@ -12854,8 +12892,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12854
12892
|
}
|
|
12855
12893
|
|
|
12856
12894
|
interface BankPaymentStatusForm {
|
|
12857
|
-
readonly 'code': io.flow.
|
|
12858
|
-
readonly '
|
|
12895
|
+
readonly 'code': io.flow.internal.v0.enums.BankPaymentStatusCode;
|
|
12896
|
+
readonly 'failure_reason'?: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
12859
12897
|
}
|
|
12860
12898
|
|
|
12861
12899
|
interface BankPaymentUpserted {
|
|
@@ -13054,7 +13092,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13054
13092
|
|
|
13055
13093
|
interface BillingStatementSummary {
|
|
13056
13094
|
readonly 'id': string;
|
|
13057
|
-
readonly 'account': io.flow.
|
|
13095
|
+
readonly 'account': io.flow.billing.v0.models.AccountReference;
|
|
13058
13096
|
readonly 'period': io.flow.common.v0.models.DatetimeRange;
|
|
13059
13097
|
readonly 'totals': io.flow.internal.v0.models.BillingStatementTotals;
|
|
13060
13098
|
readonly 'attachments': io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
@@ -13614,7 +13652,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13614
13652
|
|
|
13615
13653
|
interface ChannelBillingStatement {
|
|
13616
13654
|
readonly 'id': string;
|
|
13617
|
-
readonly 'account': io.flow.
|
|
13655
|
+
readonly 'account': io.flow.billing.v0.models.AccountReference;
|
|
13618
13656
|
readonly 'period': io.flow.common.v0.models.DatetimeRange;
|
|
13619
13657
|
readonly 'totals': io.flow.internal.v0.models.BillingStatementTotals;
|
|
13620
13658
|
readonly 'attachments': io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
@@ -16097,6 +16135,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16097
16135
|
readonly 'classified_by': string;
|
|
16098
16136
|
}
|
|
16099
16137
|
|
|
16138
|
+
interface CommercialInvoiceComparison {
|
|
16139
|
+
readonly 'urls': string[];
|
|
16140
|
+
}
|
|
16141
|
+
|
|
16100
16142
|
interface Compliance {
|
|
16101
16143
|
readonly 'id': string;
|
|
16102
16144
|
readonly 'destination': string;
|
|
@@ -16491,6 +16533,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16491
16533
|
readonly 'decline_reasons': io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
16492
16534
|
}
|
|
16493
16535
|
|
|
16536
|
+
interface DeclineReasonFraud {
|
|
16537
|
+
readonly 'discriminator': 'fraud';
|
|
16538
|
+
readonly 'rejection_reason': io.flow.internal.v0.enums.RejectionReason;
|
|
16539
|
+
}
|
|
16540
|
+
|
|
16494
16541
|
interface DecryptCipherForm {
|
|
16495
16542
|
readonly 'id': string;
|
|
16496
16543
|
readonly 'password': string;
|
|
@@ -17573,6 +17620,25 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17573
17620
|
readonly 'status'?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
17574
17621
|
}
|
|
17575
17622
|
|
|
17623
|
+
interface FlowAccount {
|
|
17624
|
+
readonly 'source': io.flow.internal.v0.models.AccountSource;
|
|
17625
|
+
readonly 'id': string;
|
|
17626
|
+
readonly 'currency': string;
|
|
17627
|
+
readonly 'updated_at': string;
|
|
17628
|
+
readonly 'timezone': io.flow.reference.v0.models.Timezone;
|
|
17629
|
+
readonly 'payment_schedule': io.flow.common.v0.unions.RepeatSchedule;
|
|
17630
|
+
readonly 'payment_conditions'?: string;
|
|
17631
|
+
readonly 'deposit_rule'?: io.flow.internal.v0.models.AccountDepositRule;
|
|
17632
|
+
readonly 'center_key'?: string;
|
|
17633
|
+
readonly 'statistics': io.flow.internal.v0.models.AccountStatistics;
|
|
17634
|
+
readonly 'next_statement': io.flow.internal.v0.models.NextBillingStatement;
|
|
17635
|
+
readonly 'created_at': string;
|
|
17636
|
+
}
|
|
17637
|
+
|
|
17638
|
+
interface FlowChannelOrganization {
|
|
17639
|
+
readonly 'placeholder'?: string;
|
|
17640
|
+
}
|
|
17641
|
+
|
|
17576
17642
|
interface FlowLabProject {
|
|
17577
17643
|
readonly 'id': string;
|
|
17578
17644
|
readonly 'key': string;
|
|
@@ -17893,6 +17959,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17893
17959
|
readonly 'transaction_created_at': string;
|
|
17894
17960
|
}
|
|
17895
17961
|
|
|
17962
|
+
interface GenerateLoad {
|
|
17963
|
+
readonly 'organization_id': string;
|
|
17964
|
+
readonly 'num_events': number;
|
|
17965
|
+
}
|
|
17966
|
+
|
|
17896
17967
|
interface GiftCard {
|
|
17897
17968
|
readonly 'id': string;
|
|
17898
17969
|
readonly 'number': string;
|
|
@@ -19693,7 +19764,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19693
19764
|
|
|
19694
19765
|
interface MainTransaction {
|
|
19695
19766
|
readonly 'id': string;
|
|
19696
|
-
readonly 'account': io.flow.
|
|
19767
|
+
readonly 'account': io.flow.billing.v0.models.AccountReference;
|
|
19697
19768
|
readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
|
|
19698
19769
|
readonly 'value': io.flow.common.v0.models.Price;
|
|
19699
19770
|
readonly 'status': io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
@@ -20454,7 +20525,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20454
20525
|
|
|
20455
20526
|
interface OrganizationBillingStatement {
|
|
20456
20527
|
readonly 'id': string;
|
|
20457
|
-
readonly 'account': io.flow.
|
|
20528
|
+
readonly 'account': io.flow.billing.v0.models.AccountReference;
|
|
20458
20529
|
readonly 'period': io.flow.common.v0.models.DatetimeRange;
|
|
20459
20530
|
readonly 'totals': io.flow.internal.v0.models.BillingStatementTotals;
|
|
20460
20531
|
readonly 'attachments': io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
@@ -20481,6 +20552,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20481
20552
|
readonly 'value': io.flow.internal.v0.models.OrganizationBooleanValue;
|
|
20482
20553
|
}
|
|
20483
20554
|
|
|
20555
|
+
interface OrganizationBusinessEntity {
|
|
20556
|
+
readonly 'id': string;
|
|
20557
|
+
readonly 'name': string;
|
|
20558
|
+
readonly 'streets': string[];
|
|
20559
|
+
readonly 'city': string;
|
|
20560
|
+
readonly 'province'?: string;
|
|
20561
|
+
readonly 'postal'?: string;
|
|
20562
|
+
readonly 'country': string;
|
|
20563
|
+
}
|
|
20564
|
+
|
|
20565
|
+
interface OrganizationBusinessEntityDeleted {
|
|
20566
|
+
readonly 'discriminator': 'organization_business_entity_deleted';
|
|
20567
|
+
readonly 'event_id': string;
|
|
20568
|
+
readonly 'timestamp': string;
|
|
20569
|
+
readonly 'organization': string;
|
|
20570
|
+
readonly 'business_entity': io.flow.internal.v0.models.OrganizationBusinessEntity;
|
|
20571
|
+
readonly 'id': string;
|
|
20572
|
+
}
|
|
20573
|
+
|
|
20574
|
+
interface OrganizationBusinessEntityUpserted {
|
|
20575
|
+
readonly 'discriminator': 'organization_business_entity_upserted';
|
|
20576
|
+
readonly 'event_id': string;
|
|
20577
|
+
readonly 'timestamp': string;
|
|
20578
|
+
readonly 'organization': string;
|
|
20579
|
+
readonly 'business_entity': io.flow.internal.v0.models.OrganizationBusinessEntity;
|
|
20580
|
+
}
|
|
20581
|
+
|
|
20484
20582
|
interface OrganizationCurrencySetting {
|
|
20485
20583
|
readonly 'id': string;
|
|
20486
20584
|
readonly 'organization': string;
|
|
@@ -21032,7 +21130,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21032
21130
|
|
|
21033
21131
|
interface PendingBankPayment {
|
|
21034
21132
|
readonly 'source': io.flow.internal.v0.models.AccountSource;
|
|
21035
|
-
readonly 'account': io.flow.
|
|
21133
|
+
readonly 'account': io.flow.billing.v0.models.AccountReference;
|
|
21036
21134
|
readonly 'recommended_reference': string;
|
|
21037
21135
|
readonly 'total': io.flow.common.v0.models.Price;
|
|
21038
21136
|
readonly 'details': io.flow.internal.v0.models.PendingBankPaymentDetail[];
|
|
@@ -21440,6 +21538,37 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21440
21538
|
readonly 'rate_freshness_summary': io.flow.internal.v0.models.RateFreshnessSummary;
|
|
21441
21539
|
}
|
|
21442
21540
|
|
|
21541
|
+
interface RateLevel {
|
|
21542
|
+
readonly 'id': string;
|
|
21543
|
+
readonly 'name': string;
|
|
21544
|
+
}
|
|
21545
|
+
|
|
21546
|
+
interface RateLevelForm {
|
|
21547
|
+
readonly 'name': string;
|
|
21548
|
+
}
|
|
21549
|
+
|
|
21550
|
+
interface RateLevelOrganization {
|
|
21551
|
+
readonly 'id': string;
|
|
21552
|
+
readonly 'organization_id': string;
|
|
21553
|
+
readonly 'rate_level_id': string;
|
|
21554
|
+
readonly 'effective_at': string;
|
|
21555
|
+
}
|
|
21556
|
+
|
|
21557
|
+
interface RateLevelOrganizationForm {
|
|
21558
|
+
readonly 'rate_level_id': string;
|
|
21559
|
+
readonly 'effective_at': string;
|
|
21560
|
+
}
|
|
21561
|
+
|
|
21562
|
+
interface RateLevelRatecard {
|
|
21563
|
+
readonly 'id': string;
|
|
21564
|
+
readonly 'ratecard_id': string;
|
|
21565
|
+
readonly 'rate_level_id': string;
|
|
21566
|
+
}
|
|
21567
|
+
|
|
21568
|
+
interface RateLevelRatecardForm {
|
|
21569
|
+
readonly 'ratecard_id': string;
|
|
21570
|
+
}
|
|
21571
|
+
|
|
21443
21572
|
interface RateNameSummary {
|
|
21444
21573
|
readonly 'name': string;
|
|
21445
21574
|
readonly 'long_name'?: string;
|
|
@@ -21575,6 +21704,50 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21575
21704
|
readonly 'data': io.flow.ratecard.v0.models.RatecardLanesImportRequestData;
|
|
21576
21705
|
}
|
|
21577
21706
|
|
|
21707
|
+
interface RatecardRateLevelDeleted {
|
|
21708
|
+
readonly 'discriminator': 'ratecard_rate_level_deleted';
|
|
21709
|
+
readonly 'event_id': string;
|
|
21710
|
+
readonly 'timestamp': string;
|
|
21711
|
+
readonly 'rate_level': io.flow.internal.v0.models.RateLevel;
|
|
21712
|
+
}
|
|
21713
|
+
|
|
21714
|
+
interface RatecardRateLevelOrganizationDeleted {
|
|
21715
|
+
readonly 'discriminator': 'ratecard_rate_level_organization_deleted';
|
|
21716
|
+
readonly 'event_id': string;
|
|
21717
|
+
readonly 'timestamp': string;
|
|
21718
|
+
readonly 'organization': string;
|
|
21719
|
+
readonly 'rate_level_organization': io.flow.internal.v0.models.RateLevelOrganization;
|
|
21720
|
+
}
|
|
21721
|
+
|
|
21722
|
+
interface RatecardRateLevelOrganizationUpserted {
|
|
21723
|
+
readonly 'discriminator': 'ratecard_rate_level_organization_upserted';
|
|
21724
|
+
readonly 'event_id': string;
|
|
21725
|
+
readonly 'timestamp': string;
|
|
21726
|
+
readonly 'organization': string;
|
|
21727
|
+
readonly 'rate_level_organization': io.flow.internal.v0.models.RateLevelOrganization;
|
|
21728
|
+
}
|
|
21729
|
+
|
|
21730
|
+
interface RatecardRateLevelRatecardDeleted {
|
|
21731
|
+
readonly 'discriminator': 'ratecard_rate_level_ratecard_deleted';
|
|
21732
|
+
readonly 'event_id': string;
|
|
21733
|
+
readonly 'timestamp': string;
|
|
21734
|
+
readonly 'rate_level_ratecard': io.flow.internal.v0.models.RateLevelRatecard;
|
|
21735
|
+
}
|
|
21736
|
+
|
|
21737
|
+
interface RatecardRateLevelRatecardUpserted {
|
|
21738
|
+
readonly 'discriminator': 'ratecard_rate_level_ratecard_upserted';
|
|
21739
|
+
readonly 'event_id': string;
|
|
21740
|
+
readonly 'timestamp': string;
|
|
21741
|
+
readonly 'rate_level_ratecard': io.flow.internal.v0.models.RateLevelRatecard;
|
|
21742
|
+
}
|
|
21743
|
+
|
|
21744
|
+
interface RatecardRateLevelUpserted {
|
|
21745
|
+
readonly 'discriminator': 'ratecard_rate_level_upserted';
|
|
21746
|
+
readonly 'event_id': string;
|
|
21747
|
+
readonly 'timestamp': string;
|
|
21748
|
+
readonly 'rate_level': io.flow.internal.v0.models.RateLevel;
|
|
21749
|
+
}
|
|
21750
|
+
|
|
21578
21751
|
interface RatecardServiceFeeDeleted {
|
|
21579
21752
|
readonly 'discriminator': 'ratecard_service_fee_deleted';
|
|
21580
21753
|
readonly 'event_id': string;
|
|
@@ -23150,10 +23323,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23150
23323
|
readonly 'name': string;
|
|
23151
23324
|
}
|
|
23152
23325
|
|
|
23326
|
+
interface TestDeleted {
|
|
23327
|
+
readonly 'discriminator': 'test_deleted';
|
|
23328
|
+
readonly 'event_id': string;
|
|
23329
|
+
readonly 'timestamp': string;
|
|
23330
|
+
readonly 'organization': string;
|
|
23331
|
+
readonly 'id': string;
|
|
23332
|
+
}
|
|
23333
|
+
|
|
23153
23334
|
interface TestForm {
|
|
23154
23335
|
readonly 'name': string;
|
|
23155
23336
|
}
|
|
23156
23337
|
|
|
23338
|
+
interface TestUpserted {
|
|
23339
|
+
readonly 'discriminator': 'test_upserted';
|
|
23340
|
+
readonly 'event_id': string;
|
|
23341
|
+
readonly 'timestamp': string;
|
|
23342
|
+
readonly 'organization': string;
|
|
23343
|
+
readonly 'test': io.flow.internal.v0.models.Test;
|
|
23344
|
+
}
|
|
23345
|
+
|
|
23157
23346
|
interface ThirdPartyLogisticsPartner {
|
|
23158
23347
|
readonly 'warehouse_address': io.flow.common.v0.models.BillingAddress;
|
|
23159
23348
|
readonly 'warehouse_url'?: string;
|
|
@@ -23726,11 +23915,11 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23726
23915
|
type ComplianceData = (io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceData);
|
|
23727
23916
|
type ComplianceForm = (io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceForm);
|
|
23728
23917
|
type ContentItem = (io.flow.internal.v0.models.Dict | io.flow.internal.v0.models.Href | io.flow.internal.v0.models.ContentLabel | io.flow.internal.v0.models.Load);
|
|
23729
|
-
type DeclineReason = (io.flow.internal.v0.models.DeclineReasonChannelOrderAcceptance);
|
|
23918
|
+
type DeclineReason = (io.flow.internal.v0.models.DeclineReasonChannelOrderAcceptance | io.flow.internal.v0.models.DeclineReasonFraud);
|
|
23730
23919
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
23731
23920
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal);
|
|
23732
23921
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
23733
|
-
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.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.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.BankPaymentDeleted | 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.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.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | 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.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | 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.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | 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.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | 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.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | 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.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.PregeneratedRequestEvent | 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.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | 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.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted | io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted | 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.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | 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.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.PricingIndicator | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | 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.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | 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.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | 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.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
23922
|
+
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.TestUpserted | io.flow.internal.v0.models.TestDeleted | 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.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.BankPaymentDeleted | 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.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.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | 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.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | 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.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | 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.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | 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.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | 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.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.PregeneratedRequestEvent | 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.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | 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.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted | io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted | 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.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | 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.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.PricingIndicator | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | 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.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | 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.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | 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.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | 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.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
23734
23923
|
type Experiment = (io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment);
|
|
23735
23924
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
23736
23925
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -23796,6 +23985,7 @@ export const adjustmentTransactionType: PropTypes.Requireable<io.flow.internal.v
|
|
|
23796
23985
|
export const adyenIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.AdyenIntegrationType>;
|
|
23797
23986
|
export const anyDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.AnyDangerousGoods>;
|
|
23798
23987
|
export const apiCallReferenceId: PropTypes.Requireable<io.flow.internal.v0.enums.ApiCallReferenceId>;
|
|
23988
|
+
export const bankPaymentStatusCode: PropTypes.Requireable<io.flow.internal.v0.enums.BankPaymentStatusCode>;
|
|
23799
23989
|
export const billingAllocationKey: PropTypes.Requireable<io.flow.internal.v0.enums.BillingAllocationKey>;
|
|
23800
23990
|
export const billingStatementAttachmentKey: PropTypes.Requireable<io.flow.internal.v0.enums.BillingStatementAttachmentKey>;
|
|
23801
23991
|
export const billingStatementBatchFileKey: PropTypes.Requireable<io.flow.internal.v0.enums.BillingStatementBatchFileKey>;
|
|
@@ -23809,6 +23999,7 @@ export const calculatorEngine: PropTypes.Requireable<io.flow.internal.v0.enums.C
|
|
|
23809
23999
|
export const carrierLabelGenerationMethod: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierLabelGenerationMethod>;
|
|
23810
24000
|
export const catalogImportType: PropTypes.Requireable<io.flow.internal.v0.enums.CatalogImportType>;
|
|
23811
24001
|
export const channelBilledTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelBilledTransactionType>;
|
|
24002
|
+
export const channelOrderAcceptanceErrorAction: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction>;
|
|
23812
24003
|
export const channelOrderAcceptanceRejectionReason: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceRejectionReason>;
|
|
23813
24004
|
export const channelOrderAcceptanceStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus>;
|
|
23814
24005
|
export const channelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelTransactionType>;
|
|
@@ -24001,6 +24192,7 @@ export const quoteRequestType: PropTypes.Requireable<io.flow.internal.v0.enums.Q
|
|
|
24001
24192
|
export const rateSource: PropTypes.Requireable<io.flow.internal.v0.enums.RateSource>;
|
|
24002
24193
|
export const reboundConfigurationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ReboundConfigurationStatus>;
|
|
24003
24194
|
export const redirectReason: PropTypes.Requireable<io.flow.internal.v0.enums.RedirectReason>;
|
|
24195
|
+
export const rejectionReason: PropTypes.Requireable<io.flow.internal.v0.enums.RejectionReason>;
|
|
24004
24196
|
export const reportInterval: PropTypes.Requireable<io.flow.internal.v0.enums.ReportInterval>;
|
|
24005
24197
|
export const reportingScheme: PropTypes.Requireable<io.flow.internal.v0.enums.ReportingScheme>;
|
|
24006
24198
|
export const responsibleParty: PropTypes.Requireable<io.flow.internal.v0.enums.ResponsibleParty>;
|
|
@@ -24046,7 +24238,6 @@ export const transactionPostingMethod: PropTypes.Requireable<io.flow.internal.v0
|
|
|
24046
24238
|
export const transferMethod: PropTypes.Requireable<io.flow.internal.v0.enums.TransferMethod>;
|
|
24047
24239
|
export const unclassifiedProductStatus: PropTypes.Requireable<io.flow.internal.v0.enums.UnclassifiedProductStatus>;
|
|
24048
24240
|
export const acceptance: PropTypes.Requireable<io.flow.internal.v0.models.Acceptance>;
|
|
24049
|
-
export const account: PropTypes.Requireable<io.flow.internal.v0.models.Account>;
|
|
24050
24241
|
export const accountContact: PropTypes.Requireable<io.flow.internal.v0.models.AccountContact>;
|
|
24051
24242
|
export const accountContactDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AccountContactDeleted>;
|
|
24052
24243
|
export const accountContactForm: PropTypes.Requireable<io.flow.internal.v0.models.AccountContactForm>;
|
|
@@ -24061,7 +24252,6 @@ export const accountProcessingRates: PropTypes.Requireable<io.flow.internal.v0.m
|
|
|
24061
24252
|
export const accountProcessingRatesDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AccountProcessingRatesDeleted>;
|
|
24062
24253
|
export const accountProcessingRatesForm: PropTypes.Requireable<io.flow.internal.v0.models.AccountProcessingRatesForm>;
|
|
24063
24254
|
export const accountProcessingRatesUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AccountProcessingRatesUpserted>;
|
|
24064
|
-
export const accountReference: PropTypes.Requireable<io.flow.internal.v0.models.AccountReference>;
|
|
24065
24255
|
export const accountSettingLabelFees: PropTypes.Requireable<io.flow.internal.v0.models.AccountSettingLabelFees>;
|
|
24066
24256
|
export const accountSettings: PropTypes.Requireable<io.flow.internal.v0.models.AccountSettings>;
|
|
24067
24257
|
export const accountSettingsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AccountSettingsDeleted>;
|
|
@@ -24695,6 +24885,7 @@ export const classificationStatistics: PropTypes.Requireable<io.flow.internal.v0
|
|
|
24695
24885
|
export const classificationWrapper: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationWrapper>;
|
|
24696
24886
|
export const classifiedProduct: PropTypes.Requireable<io.flow.internal.v0.models.ClassifiedProduct>;
|
|
24697
24887
|
export const classifiedProductDetail: PropTypes.Requireable<io.flow.internal.v0.models.ClassifiedProductDetail>;
|
|
24888
|
+
export const commercialInvoiceComparison: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceComparison>;
|
|
24698
24889
|
export const compliance: PropTypes.Requireable<io.flow.internal.v0.models.Compliance>;
|
|
24699
24890
|
export const components: PropTypes.Requireable<io.flow.internal.v0.models.Components>;
|
|
24700
24891
|
export const consumerOptinActivity: PropTypes.Requireable<io.flow.internal.v0.models.ConsumerOptinActivity>;
|
|
@@ -24748,6 +24939,7 @@ export const debugTransactionFxRate: PropTypes.Requireable<io.flow.internal.v0.m
|
|
|
24748
24939
|
export const debugTransactionQueued: PropTypes.Requireable<io.flow.internal.v0.models.DebugTransactionQueued>;
|
|
24749
24940
|
export const decision: PropTypes.Requireable<io.flow.internal.v0.models.Decision>;
|
|
24750
24941
|
export const declineReasonChannelOrderAcceptance: PropTypes.Requireable<io.flow.internal.v0.models.DeclineReasonChannelOrderAcceptance>;
|
|
24942
|
+
export const declineReasonFraud: PropTypes.Requireable<io.flow.internal.v0.models.DeclineReasonFraud>;
|
|
24751
24943
|
export const decryptCipherForm: PropTypes.Requireable<io.flow.internal.v0.models.DecryptCipherForm>;
|
|
24752
24944
|
export const decryptedCipher: PropTypes.Requireable<io.flow.internal.v0.models.DecryptedCipher>;
|
|
24753
24945
|
export const deleteIndexTask: PropTypes.Requireable<io.flow.internal.v0.models.DeleteIndexTask>;
|
|
@@ -24897,6 +25089,8 @@ export const fiservAuthenticationForm: PropTypes.Requireable<io.flow.internal.v0
|
|
|
24897
25089
|
export const fiservMerchant: PropTypes.Requireable<io.flow.internal.v0.models.FiservMerchant>;
|
|
24898
25090
|
export const fiservMerchantModificationForm: PropTypes.Requireable<io.flow.internal.v0.models.FiservMerchantModificationForm>;
|
|
24899
25091
|
export const fiservMerchantPutForm: PropTypes.Requireable<io.flow.internal.v0.models.FiservMerchantPutForm>;
|
|
25092
|
+
export const flowAccount: PropTypes.Requireable<io.flow.internal.v0.models.FlowAccount>;
|
|
25093
|
+
export const flowChannelOrganization: PropTypes.Requireable<io.flow.internal.v0.models.FlowChannelOrganization>;
|
|
24900
25094
|
export const flowLabProject: PropTypes.Requireable<io.flow.internal.v0.models.FlowLabProject>;
|
|
24901
25095
|
export const flowLabProjectPostForm: PropTypes.Requireable<io.flow.internal.v0.models.FlowLabProjectPostForm>;
|
|
24902
25096
|
export const flowLabProjectPutForm: PropTypes.Requireable<io.flow.internal.v0.models.FlowLabProjectPutForm>;
|
|
@@ -24940,6 +25134,7 @@ export const fxRevenueRecognitionOrder: PropTypes.Requireable<io.flow.internal.v
|
|
|
24940
25134
|
export const fxRevenueRecognitionOrganization: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognitionOrganization>;
|
|
24941
25135
|
export const fxRevenueRecognitionRate: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognitionRate>;
|
|
24942
25136
|
export const fxRevenueRecognitionSource: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognitionSource>;
|
|
25137
|
+
export const generateLoad: PropTypes.Requireable<io.flow.internal.v0.models.GenerateLoad>;
|
|
24943
25138
|
export const giftCard: PropTypes.Requireable<io.flow.internal.v0.models.GiftCard>;
|
|
24944
25139
|
export const giftCardAuthorizationError: PropTypes.Requireable<io.flow.internal.v0.models.GiftCardAuthorizationError>;
|
|
24945
25140
|
export const giftCardForm: PropTypes.Requireable<io.flow.internal.v0.models.GiftCardForm>;
|
|
@@ -25251,6 +25446,9 @@ export const organizationBillingStatement: PropTypes.Requireable<io.flow.interna
|
|
|
25251
25446
|
export const organizationBooleanValue: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBooleanValue>;
|
|
25252
25447
|
export const organizationBooleanValueDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBooleanValueDeleted>;
|
|
25253
25448
|
export const organizationBooleanValueUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBooleanValueUpserted>;
|
|
25449
|
+
export const organizationBusinessEntity: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBusinessEntity>;
|
|
25450
|
+
export const organizationBusinessEntityDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBusinessEntityDeleted>;
|
|
25451
|
+
export const organizationBusinessEntityUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBusinessEntityUpserted>;
|
|
25254
25452
|
export const organizationCurrencySetting: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationCurrencySetting>;
|
|
25255
25453
|
export const organizationCurrencySettingDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationCurrencySettingDeleted>;
|
|
25256
25454
|
export const organizationCurrencySettingForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationCurrencySettingForm>;
|
|
@@ -25375,6 +25573,12 @@ export const rateDestinationFreshnessSummary: PropTypes.Requireable<io.flow.inte
|
|
|
25375
25573
|
export const rateFreshnessSummary: PropTypes.Requireable<io.flow.internal.v0.models.RateFreshnessSummary>;
|
|
25376
25574
|
export const rateFreshnessSummaryDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RateFreshnessSummaryDeleted>;
|
|
25377
25575
|
export const rateFreshnessSummaryUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RateFreshnessSummaryUpserted>;
|
|
25576
|
+
export const rateLevel: PropTypes.Requireable<io.flow.internal.v0.models.RateLevel>;
|
|
25577
|
+
export const rateLevelForm: PropTypes.Requireable<io.flow.internal.v0.models.RateLevelForm>;
|
|
25578
|
+
export const rateLevelOrganization: PropTypes.Requireable<io.flow.internal.v0.models.RateLevelOrganization>;
|
|
25579
|
+
export const rateLevelOrganizationForm: PropTypes.Requireable<io.flow.internal.v0.models.RateLevelOrganizationForm>;
|
|
25580
|
+
export const rateLevelRatecard: PropTypes.Requireable<io.flow.internal.v0.models.RateLevelRatecard>;
|
|
25581
|
+
export const rateLevelRatecardForm: PropTypes.Requireable<io.flow.internal.v0.models.RateLevelRatecardForm>;
|
|
25378
25582
|
export const rateNameSummary: PropTypes.Requireable<io.flow.internal.v0.models.RateNameSummary>;
|
|
25379
25583
|
export const rateSourceCompositionSummary: PropTypes.Requireable<io.flow.internal.v0.models.RateSourceCompositionSummary>;
|
|
25380
25584
|
export const rateSourceSummary: PropTypes.Requireable<io.flow.internal.v0.models.RateSourceSummary>;
|
|
@@ -25391,6 +25595,12 @@ export const ratecardLaneAggregate: PropTypes.Requireable<io.flow.internal.v0.mo
|
|
|
25391
25595
|
export const ratecardLaneAggregateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardLaneAggregateDeleted>;
|
|
25392
25596
|
export const ratecardLaneAggregateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardLaneAggregateUpserted>;
|
|
25393
25597
|
export const ratecardLanesImportRequest: PropTypes.Requireable<io.flow.internal.v0.models.RatecardLanesImportRequest>;
|
|
25598
|
+
export const ratecardRateLevelDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardRateLevelDeleted>;
|
|
25599
|
+
export const ratecardRateLevelOrganizationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted>;
|
|
25600
|
+
export const ratecardRateLevelOrganizationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted>;
|
|
25601
|
+
export const ratecardRateLevelRatecardDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted>;
|
|
25602
|
+
export const ratecardRateLevelRatecardUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted>;
|
|
25603
|
+
export const ratecardRateLevelUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardRateLevelUpserted>;
|
|
25394
25604
|
export const ratecardServiceFeeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardServiceFeeDeleted>;
|
|
25395
25605
|
export const ratecardServiceFeeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardServiceFeeUpserted>;
|
|
25396
25606
|
export const ratecardServiceFeesOverride: PropTypes.Requireable<io.flow.internal.v0.models.RatecardServiceFeesOverride>;
|
|
@@ -25613,7 +25823,9 @@ export const taxTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.m
|
|
|
25613
25823
|
export const taxonomyCategory: PropTypes.Requireable<io.flow.internal.v0.models.TaxonomyCategory>;
|
|
25614
25824
|
export const taxonomyNode: PropTypes.Requireable<io.flow.internal.v0.models.TaxonomyNode>;
|
|
25615
25825
|
export const test: PropTypes.Requireable<io.flow.internal.v0.models.Test>;
|
|
25826
|
+
export const testDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TestDeleted>;
|
|
25616
25827
|
export const testForm: PropTypes.Requireable<io.flow.internal.v0.models.TestForm>;
|
|
25828
|
+
export const testUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TestUpserted>;
|
|
25617
25829
|
export const thirdPartyLogisticsPartner: PropTypes.Requireable<io.flow.internal.v0.models.ThirdPartyLogisticsPartner>;
|
|
25618
25830
|
export const thirdPartyLogisticsPickUpTimeWindow: PropTypes.Requireable<io.flow.internal.v0.models.ThirdPartyLogisticsPickUpTimeWindow>;
|
|
25619
25831
|
export const tieredFee: PropTypes.Requireable<io.flow.internal.v0.models.TieredFee>;
|