@flowio/api-internal-prop-types 9.24.63 → 9.24.65
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 +204 -71
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +204 -71
- package/src/api-internal.js +390 -145
package/lib/api-internal.d.ts
CHANGED
|
@@ -1552,6 +1552,21 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1552
1552
|
readonly 'raw'?: string;
|
|
1553
1553
|
}
|
|
1554
1554
|
|
|
1555
|
+
interface DeviceDetailsBrowser {
|
|
1556
|
+
readonly 'type': 'browser';
|
|
1557
|
+
readonly 'user_agent': string;
|
|
1558
|
+
readonly 'origin': string;
|
|
1559
|
+
readonly 'accept_language'?: string;
|
|
1560
|
+
readonly 'ip'?: string;
|
|
1561
|
+
readonly 'time_zone_offset'?: number;
|
|
1562
|
+
readonly 'date_string'?: string;
|
|
1563
|
+
readonly 'navigator_language'?: string;
|
|
1564
|
+
readonly 'navigator_hardware_concurrency'?: number;
|
|
1565
|
+
readonly 'cookie_created_at'?: number;
|
|
1566
|
+
readonly 'session_duration'?: number;
|
|
1567
|
+
readonly 'fingerprint'?: string;
|
|
1568
|
+
}
|
|
1569
|
+
|
|
1555
1570
|
interface DirectAuthorizationForm {
|
|
1556
1571
|
readonly 'discriminator': 'direct_authorization_form';
|
|
1557
1572
|
readonly 'token': string;
|
|
@@ -2089,6 +2104,7 @@ declare namespace io.flow.payment.v0.unions {
|
|
|
2089
2104
|
type AuthorizationResultActionDetails = (io.flow.payment.v0.models.AdyenNativeActionDetails | io.flow.payment.v0.models.StripeAuthorizationResultActionDetails | io.flow.payment.v0.models.ThreedsIdentifyActionDetails | io.flow.payment.v0.models.ThreedsChallengeActionDetails | io.flow.payment.v0.models.ApplepaySdkCreateResultActionDetails | io.flow.payment.v0.models.ApplepaySdkValidateResultActionDetails | io.flow.payment.v0.models.KlarnaSdkAuthorizationResultActionDetails | io.flow.payment.v0.models.SelectIssuerOptionActionDetails);
|
|
2090
2105
|
type BrowserActionConfiguration = (io.flow.payment.v0.models.CardBrowserActionConfiguration);
|
|
2091
2106
|
type ConfirmationDetails = (io.flow.payment.v0.models.DirectDebit | io.flow.payment.v0.models.CardConfirmationSummary);
|
|
2107
|
+
type DeviceDetails = (io.flow.payment.v0.models.DeviceDetailsBrowser);
|
|
2092
2108
|
type ExpandableCard = (io.flow.payment.v0.models.Card | io.flow.payment.v0.models.CardReference | io.flow.payment.v0.models.CardSummary);
|
|
2093
2109
|
type ExpandablePaymentProcessor = (io.flow.payment.v0.models.PaymentProcessor | io.flow.payment.v0.models.PaymentProcessorReference);
|
|
2094
2110
|
type GatewayAuthenticationData = (io.flow.payment.v0.models.StripeAuthenticationData);
|
|
@@ -3118,6 +3134,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
3118
3134
|
readonly 'order_identifier'?: string;
|
|
3119
3135
|
readonly 'fulfillment_key'?: string;
|
|
3120
3136
|
readonly 'shipment_recipient'?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
3137
|
+
readonly 'created_at'?: string;
|
|
3121
3138
|
readonly 'updated_at'?: string;
|
|
3122
3139
|
}
|
|
3123
3140
|
|
|
@@ -4568,6 +4585,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4568
4585
|
readonly 'vendor'?: string;
|
|
4569
4586
|
readonly 'body_html'?: string;
|
|
4570
4587
|
readonly 'product_type'?: string;
|
|
4588
|
+
readonly 'status'?: string;
|
|
4571
4589
|
readonly 'options': io.flow.shopify.external.v0.models.Option[];
|
|
4572
4590
|
readonly 'tags'?: string;
|
|
4573
4591
|
readonly 'template_suffix'?: string;
|
|
@@ -5350,7 +5368,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
5350
5368
|
|
|
5351
5369
|
declare namespace io.flow.shopify.markets.v0.models {
|
|
5352
5370
|
interface FulfillmentOrderInternationalDuties {
|
|
5353
|
-
readonly 'incoterm'
|
|
5371
|
+
readonly 'incoterm'?: io.flow.shopify.markets.v0.enums.IncotermDuties;
|
|
5354
5372
|
}
|
|
5355
5373
|
|
|
5356
5374
|
interface FulfillmentOrderLineItem {
|
|
@@ -6346,21 +6364,6 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
6346
6364
|
readonly 'result': any/*object*/;
|
|
6347
6365
|
}
|
|
6348
6366
|
|
|
6349
|
-
interface DeviceDetailsBrowser {
|
|
6350
|
-
readonly 'type': 'browser';
|
|
6351
|
-
readonly 'user_agent': string;
|
|
6352
|
-
readonly 'origin': string;
|
|
6353
|
-
readonly 'accept_language'?: string;
|
|
6354
|
-
readonly 'ip'?: string;
|
|
6355
|
-
readonly 'time_zone_offset'?: number;
|
|
6356
|
-
readonly 'date_string'?: string;
|
|
6357
|
-
readonly 'navigator_language'?: string;
|
|
6358
|
-
readonly 'navigator_hardware_concurrency'?: number;
|
|
6359
|
-
readonly 'cookie_created_at'?: number;
|
|
6360
|
-
readonly 'session_duration'?: number;
|
|
6361
|
-
readonly 'fingerprint'?: string;
|
|
6362
|
-
}
|
|
6363
|
-
|
|
6364
6367
|
interface DeviceFingerprintDetailsBrowser {
|
|
6365
6368
|
readonly 'type': 'browser';
|
|
6366
6369
|
readonly 'accept'?: string;
|
|
@@ -6772,7 +6775,7 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
6772
6775
|
readonly 'amount': number;
|
|
6773
6776
|
readonly 'currency': string;
|
|
6774
6777
|
readonly 'order_information': io.flow.payment.gateway.v0.unions.OrderInformation;
|
|
6775
|
-
readonly 'device_details': io.flow.payment.
|
|
6778
|
+
readonly 'device_details': io.flow.payment.v0.unions.DeviceDetails;
|
|
6776
6779
|
readonly 'locale'?: string;
|
|
6777
6780
|
readonly 'return_url': string;
|
|
6778
6781
|
readonly 'attributes'?: Record<string, string>;
|
|
@@ -6787,7 +6790,7 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
6787
6790
|
readonly 'amount': number;
|
|
6788
6791
|
readonly 'currency': string;
|
|
6789
6792
|
readonly 'order_information': io.flow.payment.gateway.v0.unions.OrderInformation;
|
|
6790
|
-
readonly 'device_details': io.flow.payment.
|
|
6793
|
+
readonly 'device_details': io.flow.payment.v0.unions.DeviceDetails;
|
|
6791
6794
|
readonly 'locale'?: string;
|
|
6792
6795
|
readonly 'return_url': string;
|
|
6793
6796
|
readonly 'attributes'?: Record<string, string>;
|
|
@@ -6849,7 +6852,6 @@ declare namespace io.flow.payment.gateway.v0.unions {
|
|
|
6849
6852
|
type Action = (io.flow.payment.gateway.v0.models.ActionRedirect | io.flow.payment.gateway.v0.models.ActionUseSdkKlarnaV1 | io.flow.payment.gateway.v0.models.ActionUseSdkApplepayJsCreateSession | io.flow.payment.gateway.v0.models.ActionUseSdkApplepayJsCompleteValidation | io.flow.payment.gateway.v0.models.ActionUseSdkGooglepay | io.flow.payment.gateway.v0.models.ActionUseSdkPaypal | io.flow.payment.gateway.v0.models.ActionUseSdkStripeV3 | io.flow.payment.gateway.v0.models.ActionUseSdkAdyenV3 | io.flow.payment.gateway.v0.models.ActionUseSdkAdyenV4 | io.flow.payment.gateway.v0.models.ActionSelectPaymentOption | io.flow.payment.gateway.v0.models.ActionExecuteScript | io.flow.payment.gateway.v0.models.ActionDisplayInlineWindow | io.flow.payment.gateway.v0.models.ActionWait);
|
|
6850
6853
|
type CardAuthorizationActionResult = (io.flow.payment.gateway.v0.models.AuthorizationActionResultAdyenV3 | io.flow.payment.gateway.v0.models.AuthorizationActionResultAdyenV4);
|
|
6851
6854
|
type CardNumber = (io.flow.payment.gateway.v0.models.PaymentMethodCardNumberCleartext | io.flow.payment.gateway.v0.models.PaymentMethodCardNumberCipher);
|
|
6852
|
-
type DeviceDetails = (io.flow.payment.gateway.v0.models.DeviceDetailsBrowser);
|
|
6853
6855
|
type DeviceFingerprintDetails = (io.flow.payment.gateway.v0.models.DeviceFingerprintDetailsBrowser);
|
|
6854
6856
|
type OrderInformation = (io.flow.payment.gateway.v0.models.OrderInformationFlow | io.flow.payment.gateway.v0.models.OrderInformationDetails);
|
|
6855
6857
|
type PaymentCaptureOption = (io.flow.payment.gateway.v0.models.PaymentCaptureOptionAutomaticImmediate | io.flow.payment.gateway.v0.models.PaymentCaptureOptionManual);
|
|
@@ -8186,6 +8188,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
8186
8188
|
readonly 'rules'?: io.flow.experience.v0.models.OrderRulesSummary;
|
|
8187
8189
|
readonly 'tax_registration'?: io.flow.harmonization.v0.models.TaxRegistration;
|
|
8188
8190
|
readonly 'geo'?: io.flow.experience.v0.models.OrderGeo;
|
|
8191
|
+
readonly 'device_details'?: io.flow.payment.v0.unions.DeviceDetails;
|
|
8189
8192
|
}
|
|
8190
8193
|
|
|
8191
8194
|
interface OrderAddress {
|
|
@@ -8274,6 +8277,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
8274
8277
|
readonly 'attributes'?: Record<string, string>;
|
|
8275
8278
|
readonly 'authorization_keys'?: string[];
|
|
8276
8279
|
readonly 'options'?: io.flow.experience.v0.models.OrderOptions;
|
|
8280
|
+
readonly 'device_details'?: io.flow.payment.v0.unions.DeviceDetails;
|
|
8277
8281
|
}
|
|
8278
8282
|
|
|
8279
8283
|
interface OrderGeo {
|
|
@@ -8384,6 +8388,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
8384
8388
|
readonly 'attributes'?: Record<string, string>;
|
|
8385
8389
|
readonly 'authorization_keys'?: string[];
|
|
8386
8390
|
readonly 'options'?: io.flow.experience.v0.models.OrderOptions;
|
|
8391
|
+
readonly 'device_details'?: io.flow.payment.v0.unions.DeviceDetails;
|
|
8387
8392
|
}
|
|
8388
8393
|
|
|
8389
8394
|
interface OrderReference {
|
|
@@ -10238,7 +10243,7 @@ declare namespace io.flow.item.v0.models {
|
|
|
10238
10243
|
declare namespace io.flow.billing.v0.enums {
|
|
10239
10244
|
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer';
|
|
10240
10245
|
type PayoutAttachmentType = 'transactions';
|
|
10241
|
-
type PayoutStatusFailureCode = 'invalid_account_number' | 'could_not_process';
|
|
10246
|
+
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
10242
10247
|
type StatementAttachmentType = 'csv';
|
|
10243
10248
|
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
10244
10249
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
@@ -10255,10 +10260,17 @@ declare namespace io.flow.billing.v0.models {
|
|
|
10255
10260
|
readonly 'url': string;
|
|
10256
10261
|
}
|
|
10257
10262
|
|
|
10258
|
-
interface
|
|
10263
|
+
interface BankAccountFormInfo {
|
|
10264
|
+
readonly 'discriminator': 'info';
|
|
10259
10265
|
readonly 'info': io.flow.billing.bank.account.v0.unions.BankAccountInfo;
|
|
10260
10266
|
}
|
|
10261
10267
|
|
|
10268
|
+
interface BankAccountFormSimple {
|
|
10269
|
+
readonly 'discriminator': 'simple';
|
|
10270
|
+
readonly 'routing_number': string;
|
|
10271
|
+
readonly 'account_number': string;
|
|
10272
|
+
}
|
|
10273
|
+
|
|
10262
10274
|
interface BankAccountReference {
|
|
10263
10275
|
readonly 'id': string;
|
|
10264
10276
|
}
|
|
@@ -10462,6 +10474,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
10462
10474
|
}
|
|
10463
10475
|
|
|
10464
10476
|
declare namespace io.flow.billing.v0.unions {
|
|
10477
|
+
type BankAccountForm = (io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple);
|
|
10465
10478
|
type PayoutStatus = (io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed);
|
|
10466
10479
|
type Settlement = (io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout);
|
|
10467
10480
|
}
|
|
@@ -11712,6 +11725,10 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
11712
11725
|
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
11713
11726
|
readonly 'transitions': io.flow.organization.onboarding.state.v0.models.OnboardingStateTransition[];
|
|
11714
11727
|
readonly 'current_state': io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
11728
|
+
readonly 'started_at'?: string;
|
|
11729
|
+
readonly 'time_blocked'?: number;
|
|
11730
|
+
readonly 'blocked_since'?: string;
|
|
11731
|
+
readonly 'completed_at'?: string;
|
|
11715
11732
|
}
|
|
11716
11733
|
|
|
11717
11734
|
interface SetupBlocked {
|
|
@@ -12054,6 +12071,30 @@ declare namespace io.flow.session.v0.unions {
|
|
|
12054
12071
|
}
|
|
12055
12072
|
|
|
12056
12073
|
declare namespace io.flow.billing.bank.account.v0.models {
|
|
12074
|
+
interface BankAccountInfoCan {
|
|
12075
|
+
readonly 'discriminator': 'can';
|
|
12076
|
+
readonly 'routing_number': string;
|
|
12077
|
+
readonly 'account_number': string;
|
|
12078
|
+
}
|
|
12079
|
+
|
|
12080
|
+
interface BankAccountInfoFra {
|
|
12081
|
+
readonly 'discriminator': 'fra';
|
|
12082
|
+
readonly 'swift_code': string;
|
|
12083
|
+
readonly 'iban': string;
|
|
12084
|
+
}
|
|
12085
|
+
|
|
12086
|
+
interface BankAccountInfoGbr {
|
|
12087
|
+
readonly 'discriminator': 'gbr';
|
|
12088
|
+
readonly 'swift_code': string;
|
|
12089
|
+
readonly 'iban': string;
|
|
12090
|
+
}
|
|
12091
|
+
|
|
12092
|
+
interface BankAccountInfoIta {
|
|
12093
|
+
readonly 'discriminator': 'ita';
|
|
12094
|
+
readonly 'swift_code': string;
|
|
12095
|
+
readonly 'iban': string;
|
|
12096
|
+
}
|
|
12097
|
+
|
|
12057
12098
|
interface BankAccountInfoUsa {
|
|
12058
12099
|
readonly 'discriminator': 'usa';
|
|
12059
12100
|
readonly 'routing_number': string;
|
|
@@ -12062,7 +12103,7 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
12062
12103
|
}
|
|
12063
12104
|
|
|
12064
12105
|
declare namespace io.flow.billing.bank.account.v0.unions {
|
|
12065
|
-
type BankAccountInfo = (io.flow.billing.bank.account.v0.models.BankAccountInfoUsa);
|
|
12106
|
+
type BankAccountInfo = (io.flow.billing.bank.account.v0.models.BankAccountInfoUsa | io.flow.billing.bank.account.v0.models.BankAccountInfoCan | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr | io.flow.billing.bank.account.v0.models.BankAccountInfoFra | io.flow.billing.bank.account.v0.models.BankAccountInfoIta);
|
|
12066
12107
|
}
|
|
12067
12108
|
|
|
12068
12109
|
declare namespace io.flow.internal.v0.enums {
|
|
@@ -12073,8 +12114,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12073
12114
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
12074
12115
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
12075
12116
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
12117
|
+
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-0522d426a5b741c791ba05496c35297a';
|
|
12076
12118
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
12077
12119
|
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';
|
|
12120
|
+
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_total' | 'channel_transactions_count' | 'channel_transactions_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'fulfillments_count' | 'fulfillments_total' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_capture_deletion_unprocessed_count' | 'queued_channel_transaction_unprocessed_count' | 'queued_channel_organization_unprocessed_count' | 'queued_consumer_invoice_unprocessed_count' | 'queued_label_tracking_summary_unprocessed_count' | 'queued_order_unprocessed_count' | 'queued_order_identifier_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_refund_deletion_unprocessed_count' | 'queued_statement_batch_unprocessed_count' | 'queued_statement_batch_email_unprocessed_count' | 'queued_statement_email_unprocessed_count' | 'queued_statement_summary_email_unprocessed_count' | 'shipping_notifications_total' | 'statements_no_payout_count' | 'statements_no_payout_total' | 'statements_pending_payout_count' | 'statements_pending_payout_total' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'pending_payouts_max_age' | 'average_payout_amount';
|
|
12078
12121
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'all';
|
|
12079
12122
|
type BillingStatementBatchFileKey = 'archive' | 'summary';
|
|
12080
12123
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
@@ -12193,7 +12236,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12193
12236
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
12194
12237
|
type EmptyAttribute = 'irrelevant';
|
|
12195
12238
|
type ErpFileType = 'vendor';
|
|
12196
|
-
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' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | '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' | 'organization_bank_account_upserted' | 'organization_bank_account_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' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | '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' | 'harmonization_classification_statistics_published' | '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_status_change_upserted' | 'organization_status_change_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_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' | 'organization_restriction_status_upserted' | 'organization_restriction_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_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_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';
|
|
12239
|
+
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' | 'daily_value_upserted' | 'daily_value_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | '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' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_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' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | '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' | 'harmonization_classification_statistics_published' | '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_status_change_upserted' | 'organization_status_change_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_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' | 'organization_restriction_status_upserted' | 'organization_restriction_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_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_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';
|
|
12197
12240
|
type ExperienceImportType = 'experience_with_settings';
|
|
12198
12241
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
12199
12242
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -12258,6 +12301,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12258
12301
|
type OrderLifecycleEvent = 'order_placed' | 'ready_to_fulfill';
|
|
12259
12302
|
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
12260
12303
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
12304
|
+
type OrganizationMetricType = 'organization_restriction_snapshot' | 'organization_restriction_status';
|
|
12261
12305
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
12262
12306
|
type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
|
|
12263
12307
|
type OrganizationRestrictionNoteType = 'internal' | 'rejection_reason' | 'additional_rejection_info';
|
|
@@ -12275,10 +12319,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12275
12319
|
type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
|
|
12276
12320
|
type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
|
|
12277
12321
|
type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
|
|
12322
|
+
type ProductStatus = 'active' | 'archived' | 'draft';
|
|
12278
12323
|
type PromptAction = 'prompt_displayed' | 'consent_granted' | 'consent_denied';
|
|
12279
12324
|
type PromptCheckoutDisplayPosition = 'email' | 'submission';
|
|
12280
12325
|
type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
|
|
12281
12326
|
type PromptTarget = 'browse' | 'checkout';
|
|
12327
|
+
type QueuedRecordType = 'capture' | 'capture_deletion' | 'channel_transaction' | 'channel_organization' | 'consumer_invoice' | 'label_tracking_summary' | 'order' | 'order_identifier' | 'refund' | 'refund_deletion' | 'statement_batch' | 'statement_batch_email' | 'statement_email' | 'statement_summary_email' | 'wash';
|
|
12282
12328
|
type QuoteRequestType = 'generate' | 'delete' | 'update_currency_rate' | 'update_country';
|
|
12283
12329
|
type RateSource = 'calculated' | 'market';
|
|
12284
12330
|
type ReboundConfigurationStatus = 'active' | 'inactive';
|
|
@@ -12311,7 +12357,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12311
12357
|
type SignificanceAction = 'end_and_implement_winner' | 'end_and_revert' | 'do_nothing';
|
|
12312
12358
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
12313
12359
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
12314
|
-
type SnoozeSourceType = '
|
|
12360
|
+
type SnoozeSourceType = 'queued_record';
|
|
12315
12361
|
type StatementStatus = 'created' | 'no_transactions' | 'transactions_assigned' | 'statement_generated' | 'statement_regenerated' | 'failed';
|
|
12316
12362
|
type StatementTransferTransactionLocation = 'transactions_file' | 'summary';
|
|
12317
12363
|
type StatisticType = 'time-to-classify' | 'time-to-classify-aggregated' | 'rate-source' | 'rate-freshness';
|
|
@@ -13259,7 +13305,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13259
13305
|
|
|
13260
13306
|
interface BillingStatementBatch {
|
|
13261
13307
|
readonly 'id': string;
|
|
13262
|
-
readonly 'period': io.flow.common.v0.models.DatetimeRange;
|
|
13263
13308
|
readonly 'reconciliation': io.flow.internal.v0.models.BillingStatementBatchReconciliation;
|
|
13264
13309
|
}
|
|
13265
13310
|
|
|
@@ -16376,6 +16421,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16376
16421
|
readonly 'number_of_items': number;
|
|
16377
16422
|
}
|
|
16378
16423
|
|
|
16424
|
+
interface ClassificationSummaryReportPayload {
|
|
16425
|
+
readonly 'organization_id'?: string;
|
|
16426
|
+
readonly 'product_id'?: string;
|
|
16427
|
+
readonly 'date_from'?: string;
|
|
16428
|
+
readonly 'date_to'?: string;
|
|
16429
|
+
readonly 'email': string;
|
|
16430
|
+
readonly 'limit': number;
|
|
16431
|
+
}
|
|
16432
|
+
|
|
16379
16433
|
interface ClassificationWrapper {
|
|
16380
16434
|
readonly 'classifications': io.flow.internal.v0.unions.ClassificationResponse[];
|
|
16381
16435
|
}
|
|
@@ -16822,6 +16876,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16822
16876
|
readonly 'daily_experiment_results': io.flow.internal.v0.models.DailyExperimentResults;
|
|
16823
16877
|
}
|
|
16824
16878
|
|
|
16879
|
+
interface DailyValue {
|
|
16880
|
+
readonly 'id': string;
|
|
16881
|
+
readonly 'key': io.flow.internal.v0.enums.BillingMetricKey;
|
|
16882
|
+
readonly 'value': number;
|
|
16883
|
+
readonly 'date': string;
|
|
16884
|
+
}
|
|
16885
|
+
|
|
16886
|
+
interface DailyValueDeleted {
|
|
16887
|
+
readonly 'discriminator': 'daily_value_deleted';
|
|
16888
|
+
readonly 'event_id': string;
|
|
16889
|
+
readonly 'timestamp': string;
|
|
16890
|
+
readonly 'id': string;
|
|
16891
|
+
}
|
|
16892
|
+
|
|
16893
|
+
interface DailyValueUpserted {
|
|
16894
|
+
readonly 'discriminator': 'daily_value_upserted';
|
|
16895
|
+
readonly 'event_id': string;
|
|
16896
|
+
readonly 'timestamp': string;
|
|
16897
|
+
readonly 'daily_value': io.flow.internal.v0.models.DailyValue;
|
|
16898
|
+
}
|
|
16899
|
+
|
|
16825
16900
|
interface DebugDetails {
|
|
16826
16901
|
readonly 'labels': io.flow.internal.v0.models.DebugLabel[];
|
|
16827
16902
|
readonly 'captures': io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
@@ -16875,8 +16950,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16875
16950
|
readonly 'type': string;
|
|
16876
16951
|
readonly 'processing_transaction_id'?: string;
|
|
16877
16952
|
readonly 'queue_errors'?: string[];
|
|
16878
|
-
readonly '
|
|
16879
|
-
readonly 'channel_transaction_ignore_reason'?: string;
|
|
16953
|
+
readonly 'ignore_reason'?: string;
|
|
16880
16954
|
}
|
|
16881
16955
|
|
|
16882
16956
|
interface DebugTransactionDetails {
|
|
@@ -16943,6 +17017,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16943
17017
|
readonly 'name': string;
|
|
16944
17018
|
}
|
|
16945
17019
|
|
|
17020
|
+
interface DeleteTransitionsPutForm {
|
|
17021
|
+
readonly 'transition_ids': string[];
|
|
17022
|
+
}
|
|
17023
|
+
|
|
16946
17024
|
interface DeliveredDutyOption {
|
|
16947
17025
|
readonly 'methods': io.flow.common.v0.enums.DeliveredDuty[];
|
|
16948
17026
|
readonly 'message'?: io.flow.internal.v0.models.DeliveredDutyOptionMessage;
|
|
@@ -17357,6 +17435,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17357
17435
|
readonly 'created_at': string;
|
|
17358
17436
|
}
|
|
17359
17437
|
|
|
17438
|
+
interface ErpFlowFileBatchForm {
|
|
17439
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
17440
|
+
readonly 'type': io.flow.internal.v0.enums.ErpFileType;
|
|
17441
|
+
}
|
|
17442
|
+
|
|
17360
17443
|
interface ErpPriorityFile {
|
|
17361
17444
|
readonly 'id': string;
|
|
17362
17445
|
readonly 'type': io.flow.internal.v0.enums.ErpFileType;
|
|
@@ -17369,6 +17452,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17369
17452
|
readonly 'url': string;
|
|
17370
17453
|
}
|
|
17371
17454
|
|
|
17455
|
+
interface ErpVendor {
|
|
17456
|
+
readonly 'placeholder'?: string;
|
|
17457
|
+
}
|
|
17458
|
+
|
|
17459
|
+
interface ErpVendorsDelta {
|
|
17460
|
+
readonly 'entity': io.flow.merchant.of.record.v0.enums.FlowEntity;
|
|
17461
|
+
readonly 'count': number;
|
|
17462
|
+
}
|
|
17463
|
+
|
|
17372
17464
|
interface ExclusionRuleDeleted {
|
|
17373
17465
|
readonly 'discriminator': 'exclusion_rule_deleted';
|
|
17374
17466
|
readonly 'event_id': string;
|
|
@@ -17875,33 +17967,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17875
17967
|
readonly 'transfer'?: io.flow.internal.v0.models.Fee;
|
|
17876
17968
|
}
|
|
17877
17969
|
|
|
17878
|
-
interface File {
|
|
17879
|
-
readonly 'id': string;
|
|
17880
|
-
readonly 'stream': io.flow.internal.v0.models.StreamReference;
|
|
17881
|
-
readonly 'url': string;
|
|
17882
|
-
readonly 'created_at': string;
|
|
17883
|
-
readonly 'metadata': io.flow.internal.v0.models.FileMetadata;
|
|
17884
|
-
readonly 'confirmation'?: io.flow.internal.v0.models.FileConfirmation;
|
|
17885
|
-
}
|
|
17886
|
-
|
|
17887
|
-
interface FileConfirmation {
|
|
17888
|
-
readonly 'counts': io.flow.internal.v0.models.FileMetadataCounts;
|
|
17889
|
-
}
|
|
17890
|
-
|
|
17891
|
-
interface FileConfirmationForm {
|
|
17892
|
-
readonly 'count_transactions': number;
|
|
17893
|
-
readonly 'count_statements': number;
|
|
17894
|
-
}
|
|
17895
|
-
|
|
17896
|
-
interface FileMetadata {
|
|
17897
|
-
readonly 'counts': io.flow.internal.v0.models.FileMetadataCounts;
|
|
17898
|
-
}
|
|
17899
|
-
|
|
17900
|
-
interface FileMetadataCounts {
|
|
17901
|
-
readonly 'transactions': number;
|
|
17902
|
-
readonly 'statements': number;
|
|
17903
|
-
}
|
|
17904
|
-
|
|
17905
17970
|
interface FinanceBankAccount {
|
|
17906
17971
|
readonly 'id': string;
|
|
17907
17972
|
readonly 'accounts': io.flow.internal.v0.models.AccountSummary[];
|
|
@@ -21171,6 +21236,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21171
21236
|
readonly 'organization_onboarding_state'?: io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState;
|
|
21172
21237
|
}
|
|
21173
21238
|
|
|
21239
|
+
interface OrganizationOnboardingStateAuditResult {
|
|
21240
|
+
readonly 'organization': string;
|
|
21241
|
+
readonly 'validation_errors': string[];
|
|
21242
|
+
}
|
|
21243
|
+
|
|
21174
21244
|
interface OrganizationPaymentSetting {
|
|
21175
21245
|
readonly 'id': string;
|
|
21176
21246
|
readonly 'organization_id': string;
|
|
@@ -22456,6 +22526,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22456
22526
|
readonly 'number': string;
|
|
22457
22527
|
}
|
|
22458
22528
|
|
|
22529
|
+
interface ReportRuleDecision {
|
|
22530
|
+
readonly 'rule_id': string;
|
|
22531
|
+
readonly 'rule_name': string;
|
|
22532
|
+
readonly 'status': io.flow.internal.v0.enums.RestrictionStatus;
|
|
22533
|
+
readonly 'count': number;
|
|
22534
|
+
}
|
|
22535
|
+
|
|
22536
|
+
interface ReportSummary {
|
|
22537
|
+
readonly 'task_id': string;
|
|
22538
|
+
}
|
|
22539
|
+
|
|
22459
22540
|
interface RequeueRequestForm {
|
|
22460
22541
|
readonly 'product_ids'?: string[];
|
|
22461
22542
|
readonly 'hs6_codes'?: string[];
|
|
@@ -23025,6 +23106,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23025
23106
|
readonly 'access_token'?: string;
|
|
23026
23107
|
}
|
|
23027
23108
|
|
|
23109
|
+
interface ShopifyMarketsShopStatisticsDeleted {
|
|
23110
|
+
readonly 'discriminator': 'shopify_markets_shop_statistics_deleted';
|
|
23111
|
+
readonly 'event_id': string;
|
|
23112
|
+
readonly 'timestamp': string;
|
|
23113
|
+
readonly 'organization': string;
|
|
23114
|
+
readonly 'id': string;
|
|
23115
|
+
}
|
|
23116
|
+
|
|
23117
|
+
interface ShopifyMarketsShopStatisticsUpserted {
|
|
23118
|
+
readonly 'discriminator': 'shopify_markets_shop_statistics_upserted';
|
|
23119
|
+
readonly 'event_id': string;
|
|
23120
|
+
readonly 'timestamp': string;
|
|
23121
|
+
readonly 'organization': string;
|
|
23122
|
+
readonly 'shopify_markets_shop_statistics': io.flow.internal.v0.models.ShopifyShopStatistics;
|
|
23123
|
+
}
|
|
23124
|
+
|
|
23028
23125
|
interface ShopifyMarketsShopSummary {
|
|
23029
23126
|
readonly 'organization': io.flow.common.v0.models.OrganizationSummary;
|
|
23030
23127
|
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
@@ -23085,6 +23182,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23085
23182
|
readonly 'flow_carrier_service': io.flow.internal.v0.models.ShopifyMonitoringCarrierService[];
|
|
23086
23183
|
readonly 'shopify_tracking_number': io.flow.internal.v0.models.ShopifyMonitoringTrackingNumber;
|
|
23087
23184
|
readonly 'shopify_carrier_service'?: io.flow.internal.v0.models.ShopifyMonitoringCarrierService;
|
|
23185
|
+
readonly 'fulfillment_created_at'?: string;
|
|
23088
23186
|
}
|
|
23089
23187
|
|
|
23090
23188
|
interface ShopifyMonitoringFulfillmentMissingDetails {
|
|
@@ -23329,6 +23427,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23329
23427
|
readonly 'id': string;
|
|
23330
23428
|
}
|
|
23331
23429
|
|
|
23430
|
+
interface ShopifyShopStatistics {
|
|
23431
|
+
readonly 'id': string;
|
|
23432
|
+
readonly 'initial_catalog_synced_at'?: string;
|
|
23433
|
+
readonly 'catalog_sync_duration'?: number;
|
|
23434
|
+
readonly 'catalog_products_count'?: number;
|
|
23435
|
+
}
|
|
23436
|
+
|
|
23332
23437
|
interface ShopifyShopUpserted {
|
|
23333
23438
|
readonly 'discriminator': 'shopify_shop_upserted';
|
|
23334
23439
|
readonly 'event_id': string;
|
|
@@ -23478,23 +23583,36 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23478
23583
|
readonly 'spot_rate': io.flow.internal.v0.models.SpotRate;
|
|
23479
23584
|
}
|
|
23480
23585
|
|
|
23481
|
-
interface
|
|
23482
|
-
readonly 'organization'?: io.flow.common.v0.models.OrganizationReference;
|
|
23586
|
+
interface StandaloneAttachment {
|
|
23483
23587
|
readonly 'id': string;
|
|
23484
|
-
readonly '
|
|
23588
|
+
readonly 'statement': io.flow.internal.v0.models.BillingStatementReference;
|
|
23589
|
+
readonly 'key': io.flow.internal.v0.enums.BillingStatementAttachmentKey;
|
|
23590
|
+
readonly 'name': string;
|
|
23591
|
+
readonly 'url': string;
|
|
23485
23592
|
}
|
|
23486
23593
|
|
|
23487
|
-
interface
|
|
23488
|
-
readonly '
|
|
23594
|
+
interface StandaloneAttachmentDeleted {
|
|
23595
|
+
readonly 'discriminator': 'standalone_attachment_deleted';
|
|
23596
|
+
readonly 'event_id': string;
|
|
23597
|
+
readonly 'timestamp': string;
|
|
23598
|
+
readonly 'id': string;
|
|
23489
23599
|
}
|
|
23490
23600
|
|
|
23491
|
-
interface
|
|
23492
|
-
readonly '
|
|
23493
|
-
readonly '
|
|
23601
|
+
interface StandaloneAttachmentUpserted {
|
|
23602
|
+
readonly 'discriminator': 'standalone_attachment_upserted';
|
|
23603
|
+
readonly 'event_id': string;
|
|
23604
|
+
readonly 'timestamp': string;
|
|
23605
|
+
readonly 'attachment': io.flow.internal.v0.models.StandaloneAttachment;
|
|
23494
23606
|
}
|
|
23495
23607
|
|
|
23496
|
-
interface
|
|
23608
|
+
interface StoreConnection {
|
|
23609
|
+
readonly 'organization'?: io.flow.common.v0.models.OrganizationReference;
|
|
23497
23610
|
readonly 'id': string;
|
|
23611
|
+
readonly 'domain': string;
|
|
23612
|
+
}
|
|
23613
|
+
|
|
23614
|
+
interface StoreConnectionForm {
|
|
23615
|
+
readonly 'organization': string;
|
|
23498
23616
|
}
|
|
23499
23617
|
|
|
23500
23618
|
interface StringFeatureDefaultValue {
|
|
@@ -24546,7 +24664,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
24546
24664
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
24547
24665
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal);
|
|
24548
24666
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
24549
|
-
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.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.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.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | 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.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.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.HarmonizationClassificationStatisticsPublished | 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.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | 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.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | 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.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.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);
|
|
24667
|
+
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.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | 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.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.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.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.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.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.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.HarmonizationClassificationStatisticsPublished | 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.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | 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.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | 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.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.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);
|
|
24550
24668
|
type Experiment = (io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment);
|
|
24551
24669
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
24552
24670
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -24613,8 +24731,10 @@ export const adjustmentTransactionType: PropTypes.Requireable<io.flow.internal.v
|
|
|
24613
24731
|
export const adyenIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.AdyenIntegrationType>;
|
|
24614
24732
|
export const anyDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.AnyDangerousGoods>;
|
|
24615
24733
|
export const apiCallReferenceId: PropTypes.Requireable<io.flow.internal.v0.enums.ApiCallReferenceId>;
|
|
24734
|
+
export const autoRestrictRule: PropTypes.Requireable<io.flow.internal.v0.enums.AutoRestrictRule>;
|
|
24616
24735
|
export const bankPaymentStatusCode: PropTypes.Requireable<io.flow.internal.v0.enums.BankPaymentStatusCode>;
|
|
24617
24736
|
export const billingAllocationKey: PropTypes.Requireable<io.flow.internal.v0.enums.BillingAllocationKey>;
|
|
24737
|
+
export const billingMetricKey: PropTypes.Requireable<io.flow.internal.v0.enums.BillingMetricKey>;
|
|
24618
24738
|
export const billingStatementAttachmentKey: PropTypes.Requireable<io.flow.internal.v0.enums.BillingStatementAttachmentKey>;
|
|
24619
24739
|
export const billingStatementBatchFileKey: PropTypes.Requireable<io.flow.internal.v0.enums.BillingStatementBatchFileKey>;
|
|
24620
24740
|
export const billingTransactionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.BillingTransactionStatus>;
|
|
@@ -24798,6 +24918,7 @@ export const orderChargeTrigger: PropTypes.Requireable<io.flow.internal.v0.enums
|
|
|
24798
24918
|
export const orderLifecycleEvent: PropTypes.Requireable<io.flow.internal.v0.enums.OrderLifecycleEvent>;
|
|
24799
24919
|
export const orderTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.OrderTransactionType>;
|
|
24800
24920
|
export const organizationCapability: PropTypes.Requireable<io.flow.internal.v0.enums.OrganizationCapability>;
|
|
24921
|
+
export const organizationMetricType: PropTypes.Requireable<io.flow.internal.v0.enums.OrganizationMetricType>;
|
|
24801
24922
|
export const organizationPaymentStatus: PropTypes.Requireable<io.flow.internal.v0.enums.OrganizationPaymentStatus>;
|
|
24802
24923
|
export const organizationRestrictionApprovalStatus: PropTypes.Requireable<io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus>;
|
|
24803
24924
|
export const organizationRestrictionNoteType: PropTypes.Requireable<io.flow.internal.v0.enums.OrganizationRestrictionNoteType>;
|
|
@@ -24815,10 +24936,12 @@ export const pricingIndicatorStatus: PropTypes.Requireable<io.flow.internal.v0.e
|
|
|
24815
24936
|
export const processingTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.ProcessingTransactionType>;
|
|
24816
24937
|
export const processor: PropTypes.Requireable<io.flow.internal.v0.enums.Processor>;
|
|
24817
24938
|
export const processorEntityStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ProcessorEntityStatus>;
|
|
24939
|
+
export const productStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ProductStatus>;
|
|
24818
24940
|
export const promptAction: PropTypes.Requireable<io.flow.internal.v0.enums.PromptAction>;
|
|
24819
24941
|
export const promptCheckoutDisplayPosition: PropTypes.Requireable<io.flow.internal.v0.enums.PromptCheckoutDisplayPosition>;
|
|
24820
24942
|
export const promptOptions: PropTypes.Requireable<io.flow.internal.v0.enums.PromptOptions>;
|
|
24821
24943
|
export const promptTarget: PropTypes.Requireable<io.flow.internal.v0.enums.PromptTarget>;
|
|
24944
|
+
export const queuedRecordType: PropTypes.Requireable<io.flow.internal.v0.enums.QueuedRecordType>;
|
|
24822
24945
|
export const quoteRequestType: PropTypes.Requireable<io.flow.internal.v0.enums.QuoteRequestType>;
|
|
24823
24946
|
export const rateSource: PropTypes.Requireable<io.flow.internal.v0.enums.RateSource>;
|
|
24824
24947
|
export const reboundConfigurationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ReboundConfigurationStatus>;
|
|
@@ -25517,6 +25640,7 @@ export const classificationProductSummary: PropTypes.Requireable<io.flow.interna
|
|
|
25517
25640
|
export const classificationProductSummaryPage: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationProductSummaryPage>;
|
|
25518
25641
|
export const classificationRequeueRequest: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationRequeueRequest>;
|
|
25519
25642
|
export const classificationStatistics: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationStatistics>;
|
|
25643
|
+
export const classificationSummaryReportPayload: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationSummaryReportPayload>;
|
|
25520
25644
|
export const classificationWrapper: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationWrapper>;
|
|
25521
25645
|
export const classifiedProduct: PropTypes.Requireable<io.flow.internal.v0.models.ClassifiedProduct>;
|
|
25522
25646
|
export const classifiedProductDetail: PropTypes.Requireable<io.flow.internal.v0.models.ClassifiedProductDetail>;
|
|
@@ -25575,6 +25699,9 @@ export const dailyExperimentEngineResults: PropTypes.Requireable<io.flow.interna
|
|
|
25575
25699
|
export const dailyExperimentResults: PropTypes.Requireable<io.flow.internal.v0.models.DailyExperimentResults>;
|
|
25576
25700
|
export const dailyExperimentResultsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.DailyExperimentResultsDeleted>;
|
|
25577
25701
|
export const dailyExperimentResultsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.DailyExperimentResultsUpserted>;
|
|
25702
|
+
export const dailyValue: PropTypes.Requireable<io.flow.internal.v0.models.DailyValue>;
|
|
25703
|
+
export const dailyValueDeleted: PropTypes.Requireable<io.flow.internal.v0.models.DailyValueDeleted>;
|
|
25704
|
+
export const dailyValueUpserted: PropTypes.Requireable<io.flow.internal.v0.models.DailyValueUpserted>;
|
|
25578
25705
|
export const debugDetails: PropTypes.Requireable<io.flow.internal.v0.models.DebugDetails>;
|
|
25579
25706
|
export const debugLabel: PropTypes.Requireable<io.flow.internal.v0.models.DebugLabel>;
|
|
25580
25707
|
export const debugLabelTransactionSummary: PropTypes.Requireable<io.flow.internal.v0.models.DebugLabelTransactionSummary>;
|
|
@@ -25594,6 +25721,7 @@ export const declineReasonFraud: PropTypes.Requireable<io.flow.internal.v0.model
|
|
|
25594
25721
|
export const decryptCipherForm: PropTypes.Requireable<io.flow.internal.v0.models.DecryptCipherForm>;
|
|
25595
25722
|
export const decryptedCipher: PropTypes.Requireable<io.flow.internal.v0.models.DecryptedCipher>;
|
|
25596
25723
|
export const deleteIndexTask: PropTypes.Requireable<io.flow.internal.v0.models.DeleteIndexTask>;
|
|
25724
|
+
export const deleteTransitionsPutForm: PropTypes.Requireable<io.flow.internal.v0.models.DeleteTransitionsPutForm>;
|
|
25597
25725
|
export const deliveredDutyOption: PropTypes.Requireable<io.flow.internal.v0.models.DeliveredDutyOption>;
|
|
25598
25726
|
export const deliveredDutyOptionMessage: PropTypes.Requireable<io.flow.internal.v0.models.DeliveredDutyOptionMessage>;
|
|
25599
25727
|
export const deliveredDutyOptions: PropTypes.Requireable<io.flow.internal.v0.models.DeliveredDutyOptions>;
|
|
@@ -25652,8 +25780,11 @@ export const emailModificationForm: PropTypes.Requireable<io.flow.internal.v0.mo
|
|
|
25652
25780
|
export const emptyClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.EmptyClassificationForm>;
|
|
25653
25781
|
export const encryption: PropTypes.Requireable<io.flow.internal.v0.models.Encryption>;
|
|
25654
25782
|
export const erpFlowFile: PropTypes.Requireable<io.flow.internal.v0.models.ErpFlowFile>;
|
|
25783
|
+
export const erpFlowFileBatchForm: PropTypes.Requireable<io.flow.internal.v0.models.ErpFlowFileBatchForm>;
|
|
25655
25784
|
export const erpPriorityFile: PropTypes.Requireable<io.flow.internal.v0.models.ErpPriorityFile>;
|
|
25656
25785
|
export const erpPriorityFileForm: PropTypes.Requireable<io.flow.internal.v0.models.ErpPriorityFileForm>;
|
|
25786
|
+
export const erpVendor: PropTypes.Requireable<io.flow.internal.v0.models.ErpVendor>;
|
|
25787
|
+
export const erpVendorsDelta: PropTypes.Requireable<io.flow.internal.v0.models.ErpVendorsDelta>;
|
|
25657
25788
|
export const exclusionRuleDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ExclusionRuleDeleted>;
|
|
25658
25789
|
export const exclusionRuleExportRequest: PropTypes.Requireable<io.flow.internal.v0.models.ExclusionRuleExportRequest>;
|
|
25659
25790
|
export const exclusionRuleUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ExclusionRuleUpserted>;
|
|
@@ -25724,11 +25855,6 @@ export const feedDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FeedD
|
|
|
25724
25855
|
export const feedUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FeedUpserted>;
|
|
25725
25856
|
export const feedsExport: PropTypes.Requireable<io.flow.internal.v0.models.FeedsExport>;
|
|
25726
25857
|
export const fees: PropTypes.Requireable<io.flow.internal.v0.models.Fees>;
|
|
25727
|
-
export const file: PropTypes.Requireable<io.flow.internal.v0.models.File>;
|
|
25728
|
-
export const fileConfirmation: PropTypes.Requireable<io.flow.internal.v0.models.FileConfirmation>;
|
|
25729
|
-
export const fileConfirmationForm: PropTypes.Requireable<io.flow.internal.v0.models.FileConfirmationForm>;
|
|
25730
|
-
export const fileMetadata: PropTypes.Requireable<io.flow.internal.v0.models.FileMetadata>;
|
|
25731
|
-
export const fileMetadataCounts: PropTypes.Requireable<io.flow.internal.v0.models.FileMetadataCounts>;
|
|
25732
25858
|
export const financeBankAccount: PropTypes.Requireable<io.flow.internal.v0.models.FinanceBankAccount>;
|
|
25733
25859
|
export const financeBankAccountOwner: PropTypes.Requireable<io.flow.internal.v0.models.FinanceBankAccountOwner>;
|
|
25734
25860
|
export const financeBankPayment: PropTypes.Requireable<io.flow.internal.v0.models.FinanceBankPayment>;
|
|
@@ -26130,6 +26256,7 @@ export const organizationInvitationAcceptForm: PropTypes.Requireable<io.flow.int
|
|
|
26130
26256
|
export const organizationMembershipCopy: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationMembershipCopy>;
|
|
26131
26257
|
export const organizationMembershipCopyForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationMembershipCopyForm>;
|
|
26132
26258
|
export const organizationOnboardingStateAdjustmentResult: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationOnboardingStateAdjustmentResult>;
|
|
26259
|
+
export const organizationOnboardingStateAuditResult: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationOnboardingStateAuditResult>;
|
|
26133
26260
|
export const organizationPaymentSetting: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationPaymentSetting>;
|
|
26134
26261
|
export const organizationPaymentSettingDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationPaymentSettingDeleted>;
|
|
26135
26262
|
export const organizationPaymentSettingForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationPaymentSettingForm>;
|
|
@@ -26297,6 +26424,8 @@ export const redirect: PropTypes.Requireable<io.flow.internal.v0.models.Redirect
|
|
|
26297
26424
|
export const redirectActionCompleted: PropTypes.Requireable<io.flow.internal.v0.models.RedirectActionCompleted>;
|
|
26298
26425
|
export const registeredExporterTariffEligibilityData: PropTypes.Requireable<io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData>;
|
|
26299
26426
|
export const registeredExporterTariffEligibilityForm: PropTypes.Requireable<io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm>;
|
|
26427
|
+
export const reportRuleDecision: PropTypes.Requireable<io.flow.internal.v0.models.ReportRuleDecision>;
|
|
26428
|
+
export const reportSummary: PropTypes.Requireable<io.flow.internal.v0.models.ReportSummary>;
|
|
26300
26429
|
export const requeueRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.RequeueRequestForm>;
|
|
26301
26430
|
export const restrictionCategory: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionCategory>;
|
|
26302
26431
|
export const restrictionFilter: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionFilter>;
|
|
@@ -26378,6 +26507,8 @@ export const shopifyMarketsOrderUpserted: PropTypes.Requireable<io.flow.internal
|
|
|
26378
26507
|
export const shopifyMarketsShop: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShop>;
|
|
26379
26508
|
export const shopifyMarketsShopDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopDeleted>;
|
|
26380
26509
|
export const shopifyMarketsShopForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopForm>;
|
|
26510
|
+
export const shopifyMarketsShopStatisticsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted>;
|
|
26511
|
+
export const shopifyMarketsShopStatisticsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted>;
|
|
26381
26512
|
export const shopifyMarketsShopSummary: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopSummary>;
|
|
26382
26513
|
export const shopifyMarketsShopUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopUpserted>;
|
|
26383
26514
|
export const shopifyMarketsSubsidiaryCompany: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsSubsidiaryCompany>;
|
|
@@ -26426,6 +26557,7 @@ export const shopifyPromotionOrderPrerequisite: PropTypes.Requireable<io.flow.in
|
|
|
26426
26557
|
export const shopifyPromotionPercent: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyPromotionPercent>;
|
|
26427
26558
|
export const shopifyPromotionRule: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyPromotionRule>;
|
|
26428
26559
|
export const shopifyShopDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShopDeleted>;
|
|
26560
|
+
export const shopifyShopStatistics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShopStatistics>;
|
|
26429
26561
|
export const shopifyShopUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShopUpserted>;
|
|
26430
26562
|
export const shopifyWebhook: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyWebhook>;
|
|
26431
26563
|
export const shopifyWebhookEvent: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyWebhookEvent>;
|
|
@@ -26447,10 +26579,11 @@ export const spotRateMetadataIdentity: PropTypes.Requireable<io.flow.internal.v0
|
|
|
26447
26579
|
export const spotRateMetadataRate: PropTypes.Requireable<io.flow.internal.v0.models.SpotRateMetadataRate>;
|
|
26448
26580
|
export const spotRateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.SpotRateUpserted>;
|
|
26449
26581
|
export const spotRateVersion: PropTypes.Requireable<io.flow.internal.v0.models.SpotRateVersion>;
|
|
26582
|
+
export const standaloneAttachment: PropTypes.Requireable<io.flow.internal.v0.models.StandaloneAttachment>;
|
|
26583
|
+
export const standaloneAttachmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.StandaloneAttachmentDeleted>;
|
|
26584
|
+
export const standaloneAttachmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.StandaloneAttachmentUpserted>;
|
|
26450
26585
|
export const storeConnection: PropTypes.Requireable<io.flow.internal.v0.models.StoreConnection>;
|
|
26451
26586
|
export const storeConnectionForm: PropTypes.Requireable<io.flow.internal.v0.models.StoreConnectionForm>;
|
|
26452
|
-
export const stream: PropTypes.Requireable<io.flow.internal.v0.models.Stream>;
|
|
26453
|
-
export const streamReference: PropTypes.Requireable<io.flow.internal.v0.models.StreamReference>;
|
|
26454
26587
|
export const stringFeatureDefaultValue: PropTypes.Requireable<io.flow.internal.v0.models.StringFeatureDefaultValue>;
|
|
26455
26588
|
export const stringFeatureRule: PropTypes.Requireable<io.flow.internal.v0.models.StringFeatureRule>;
|
|
26456
26589
|
export const stringFeatureRuleForm: PropTypes.Requireable<io.flow.internal.v0.models.StringFeatureRuleForm>;
|