@flowio/api-prop-types 10.16.97 → 10.16.98
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.d.ts +63 -46
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +63 -46
- package/src/api.js +135 -118
package/lib/api.d.ts
CHANGED
|
@@ -4135,6 +4135,8 @@ declare namespace io.flow.merchant.of.record.v0.enums {
|
|
|
4135
4135
|
declare namespace io.flow.tech.onboarding.playground.v0.enums {
|
|
4136
4136
|
type AldoItemType = 'physical' | 'digital';
|
|
4137
4137
|
type AnshItemType = 'physical' | 'digital';
|
|
4138
|
+
type NiallItemType = 'physical' | 'digital';
|
|
4139
|
+
type PrateekItemType = 'physical' | 'digital';
|
|
4138
4140
|
}
|
|
4139
4141
|
|
|
4140
4142
|
declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
@@ -4177,6 +4179,40 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
|
4177
4179
|
readonly 'name': string;
|
|
4178
4180
|
}
|
|
4179
4181
|
|
|
4182
|
+
interface NiallItem {
|
|
4183
|
+
readonly 'id': string;
|
|
4184
|
+
readonly 'number': string;
|
|
4185
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
4186
|
+
readonly 'description'?: string;
|
|
4187
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.NiallItemType;
|
|
4188
|
+
readonly 'added_on': string;
|
|
4189
|
+
}
|
|
4190
|
+
|
|
4191
|
+
interface NiallItemForm {
|
|
4192
|
+
readonly 'number': string;
|
|
4193
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
4194
|
+
readonly 'description'?: string;
|
|
4195
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.NiallItemType;
|
|
4196
|
+
readonly 'added_on': string;
|
|
4197
|
+
}
|
|
4198
|
+
|
|
4199
|
+
interface PrateekItem {
|
|
4200
|
+
readonly 'id': string;
|
|
4201
|
+
readonly 'number': string;
|
|
4202
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
4203
|
+
readonly 'description'?: string;
|
|
4204
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.PrateekItemType;
|
|
4205
|
+
readonly 'added_on': string;
|
|
4206
|
+
}
|
|
4207
|
+
|
|
4208
|
+
interface PrateekItemForm {
|
|
4209
|
+
readonly 'number': string;
|
|
4210
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
4211
|
+
readonly 'description'?: string;
|
|
4212
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.PrateekItemType;
|
|
4213
|
+
readonly 'added_on': string;
|
|
4214
|
+
}
|
|
4215
|
+
|
|
4180
4216
|
interface TechOnboardingDescription {
|
|
4181
4217
|
readonly 'description': string;
|
|
4182
4218
|
}
|
|
@@ -5090,7 +5126,8 @@ declare namespace io.flow.query.builder.v0.unions {
|
|
|
5090
5126
|
|
|
5091
5127
|
declare namespace io.flow.sellability.v0.enums {
|
|
5092
5128
|
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
5093
|
-
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category';
|
|
5129
|
+
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity';
|
|
5130
|
+
type SellabilityRequestStatus = 'commit';
|
|
5094
5131
|
}
|
|
5095
5132
|
|
|
5096
5133
|
declare namespace io.flow.sellability.v0.models {
|
|
@@ -5105,11 +5142,11 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
5105
5142
|
interface ProductSellabilityForm {
|
|
5106
5143
|
readonly 'shop_id': string;
|
|
5107
5144
|
readonly 'product_id'?: string;
|
|
5108
|
-
readonly 'request_id': string;
|
|
5109
5145
|
readonly 'name': string;
|
|
5110
5146
|
readonly 'price': io.flow.sellability.v0.models.ProductSellabilityPrice;
|
|
5111
5147
|
readonly 'description': string;
|
|
5112
5148
|
readonly 'taxonomy_category': io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
5149
|
+
readonly 'status'?: io.flow.sellability.v0.enums.SellabilityRequestStatus;
|
|
5113
5150
|
}
|
|
5114
5151
|
|
|
5115
5152
|
interface ProductSellabilityPrice {
|
|
@@ -5207,7 +5244,7 @@ declare namespace io.flow.v0.enums {
|
|
|
5207
5244
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
5208
5245
|
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
5209
5246
|
type Environment = 'sandbox' | 'production';
|
|
5210
|
-
type EventType = 'test_upserted' | 'generate_load' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'ansh_item_upserted' | 'ansh_item_deleted' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_deleted' | '
|
|
5247
|
+
type EventType = 'test_upserted' | 'generate_load' | 'niall_item_upserted' | 'niall_item_deleted' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'ansh_item_upserted' | 'ansh_item_deleted' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'channel_shopify_order_state_upserted' | 'channel_shopify_order_state_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | 'fraud_status_changed' | 'center_upserted' | 'center_deleted' | 'shipping_configuration_upserted' | 'shipping_configuration_deleted' | 'tier_upserted_v2' | 'tier_deleted_v2' | 'shipping_lane_upserted' | 'shipping_lane_deleted' | 'shipping_configuration_item_availability_upserted' | 'shipping_configuration_item_availability_deleted' | 'shipping_configuration_item_shipping_pricing_upserted' | 'shipping_configuration_item_shipping_pricing_deleted' | 'ge_item_inserted' | 'ge_item_updated' | 'ge_item_deleted' | 'hs6_code_upserted' | 'hs6_code_deleted' | 'hs10_code_upserted' | 'hs10_code_deleted' | 'item_origin_upserted' | 'item_origin_deleted' | 'harmonized_landed_cost_upserted' | 'fully_harmonized_item_upserted' | 'import_completed_v2' | 'import_failed_v2' | 'label_upserted' | 'label_deleted_v2' | 'label_upserted_v2' | 'notification_upserted_v2' | 'notification_deleted_v2' | 'manifested_label_upserted' | 'manifested_label_deleted' | 'label_processing_modification_upserted' | 'label_processing_modification_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'order_placed' | 'order_placed_v2' | 'ready_to_fulfill' | 'ready_to_fulfill_v2' | 'membership_upserted_v2' | 'membership_deleted_v2' | 'organization_upserted' | 'organization_deleted' | 'organization_upserted_v2' | 'organization_deleted_v2' | 'ecommerce_platform_upserted' | 'ecommerce_platform_deleted' | 'organization_onboarding_state_upserted' | 'organization_onboarding_state_deleted' | 'authorization_deleted_v2' | 'authorization_status_changed' | 'card_authorization_upserted_v2' | 'card_authorization_deleted_v2' | 'online_authorization_upserted_v2' | 'online_authorization_deleted_v2' | 'capture_upserted_v2' | 'capture_deleted' | 'card_upserted_v2' | 'card_deleted' | 'payment_upserted' | 'payment_deleted' | 'refund_upserted_v2' | 'refund_deleted_v2' | 'refund_capture_upserted_v2' | 'reversal_upserted' | 'reversal_deleted' | 'capture_identifier_upserted' | 'capture_identifier_deleted' | 'refund_identifier_upserted' | 'refund_identifier_deleted' | 'virtual_card_capture_upserted' | 'virtual_card_capture_deleted' | 'virtual_card_refund_upserted' | 'virtual_card_refund_deleted' | 'authorization_retry_upserted' | 'authorization_retry_deleted' | 'transfer_upserted' | 'transfer_deleted' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'product_inserted' | 'product_updated' | 'product_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'return_upserted' | 'return_deleted' | 'return_upserted_v2' | 'return_deleted_v2' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
|
|
5211
5248
|
type ExceptionType = 'open' | 'closed';
|
|
5212
5249
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
5213
5250
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -5229,7 +5266,6 @@ declare namespace io.flow.v0.enums {
|
|
|
5229
5266
|
type FulfillmentMethodValue = 'digital' | 'physical';
|
|
5230
5267
|
type FulfillmentRouting = 'fulfilled_from_center' | 'fulfillment_service';
|
|
5231
5268
|
type GeCatalogItemIngestionResponse = 'success' | 'failure';
|
|
5232
|
-
type GeEnvironment = 'production' | 'sandbox';
|
|
5233
5269
|
type GeEventType = 'restriction_result' | 'ingestion_result';
|
|
5234
5270
|
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
5235
5271
|
type GoodsSupply = 'export' | 'intra_community' | 'local';
|
|
@@ -8995,7 +9031,7 @@ declare namespace io.flow.v0.models {
|
|
|
8995
9031
|
readonly 'discriminator': 'ge_catalog_item_ingestion_result';
|
|
8996
9032
|
readonly 'event_id': string;
|
|
8997
9033
|
readonly 'event_type': io.flow.v0.enums.GeEventType;
|
|
8998
|
-
readonly 'environment': io.flow.v0.enums.
|
|
9034
|
+
readonly 'environment': io.flow.v0.enums.Environment;
|
|
8999
9035
|
readonly 'timestamp': string;
|
|
9000
9036
|
readonly 'source': string;
|
|
9001
9037
|
readonly 'response': io.flow.v0.enums.GeCatalogItemIngestionResponse;
|
|
@@ -9023,6 +9059,7 @@ declare namespace io.flow.v0.models {
|
|
|
9023
9059
|
readonly 'ge_hs6_code': string;
|
|
9024
9060
|
readonly 'product_id': string;
|
|
9025
9061
|
readonly 'ge_organization_name': string;
|
|
9062
|
+
readonly 'shipping_origin_country'?: string;
|
|
9026
9063
|
}
|
|
9027
9064
|
|
|
9028
9065
|
interface GeInputPrice {
|
|
@@ -9060,7 +9097,7 @@ declare namespace io.flow.v0.models {
|
|
|
9060
9097
|
readonly 'organization': string;
|
|
9061
9098
|
readonly 'event_id': string;
|
|
9062
9099
|
readonly 'event_type': io.flow.v0.enums.GeEventType;
|
|
9063
|
-
readonly 'environment': io.flow.v0.enums.
|
|
9100
|
+
readonly 'environment': io.flow.v0.enums.Environment;
|
|
9064
9101
|
readonly 'timestamp': string;
|
|
9065
9102
|
readonly 'id': string;
|
|
9066
9103
|
}
|
|
@@ -9070,7 +9107,7 @@ declare namespace io.flow.v0.models {
|
|
|
9070
9107
|
readonly 'organization': string;
|
|
9071
9108
|
readonly 'event_id': string;
|
|
9072
9109
|
readonly 'event_type': io.flow.v0.enums.GeEventType;
|
|
9073
|
-
readonly 'environment': io.flow.v0.enums.
|
|
9110
|
+
readonly 'environment': io.flow.v0.enums.Environment;
|
|
9074
9111
|
readonly 'timestamp': string;
|
|
9075
9112
|
readonly 'ge_product_restriction_result': io.flow.v0.models.ProductRestrictionResult;
|
|
9076
9113
|
}
|
|
@@ -10497,6 +10534,20 @@ declare namespace io.flow.v0.models {
|
|
|
10497
10534
|
readonly 'last'?: string;
|
|
10498
10535
|
}
|
|
10499
10536
|
|
|
10537
|
+
interface NiallItemDeleted {
|
|
10538
|
+
readonly 'discriminator': 'niall_item_deleted';
|
|
10539
|
+
readonly 'event_id': string;
|
|
10540
|
+
readonly 'timestamp': string;
|
|
10541
|
+
readonly 'id': string;
|
|
10542
|
+
}
|
|
10543
|
+
|
|
10544
|
+
interface NiallItemUpserted {
|
|
10545
|
+
readonly 'discriminator': 'niall_item_upserted';
|
|
10546
|
+
readonly 'event_id': string;
|
|
10547
|
+
readonly 'timestamp': string;
|
|
10548
|
+
readonly 'item': io.flow.tech.onboarding.playground.v0.models.NiallItem;
|
|
10549
|
+
}
|
|
10550
|
+
|
|
10500
10551
|
interface NotificationDeletedV2 {
|
|
10501
10552
|
readonly 'discriminator': 'notification_deleted_v2';
|
|
10502
10553
|
readonly 'event_id': string;
|
|
@@ -11258,40 +11309,11 @@ declare namespace io.flow.v0.models {
|
|
|
11258
11309
|
readonly 'last4': string;
|
|
11259
11310
|
}
|
|
11260
11311
|
|
|
11261
|
-
interface OrganizationConfigurationReference {
|
|
11262
|
-
readonly 'id': string;
|
|
11263
|
-
}
|
|
11264
|
-
|
|
11265
11312
|
interface OrganizationDefaultBankAccount {
|
|
11266
11313
|
readonly 'id': string;
|
|
11267
11314
|
readonly 'bank_account': io.flow.v0.models.BankAccountReference;
|
|
11268
11315
|
}
|
|
11269
11316
|
|
|
11270
|
-
interface OrganizationDefaultConfigurations {
|
|
11271
|
-
readonly 'id': string;
|
|
11272
|
-
readonly 'checkout_configuration': io.flow.v0.models.OrganizationConfigurationReference;
|
|
11273
|
-
}
|
|
11274
|
-
|
|
11275
|
-
interface OrganizationDefaultConfigurationsDeleted {
|
|
11276
|
-
readonly 'discriminator': 'organization_default_configurations_deleted';
|
|
11277
|
-
readonly 'event_id': string;
|
|
11278
|
-
readonly 'timestamp': string;
|
|
11279
|
-
readonly 'organization': string;
|
|
11280
|
-
readonly 'default_configurations': io.flow.v0.models.OrganizationDefaultConfigurations;
|
|
11281
|
-
}
|
|
11282
|
-
|
|
11283
|
-
interface OrganizationDefaultConfigurationsForm {
|
|
11284
|
-
readonly 'id': string;
|
|
11285
|
-
}
|
|
11286
|
-
|
|
11287
|
-
interface OrganizationDefaultConfigurationsUpserted {
|
|
11288
|
-
readonly 'discriminator': 'organization_default_configurations_upserted';
|
|
11289
|
-
readonly 'event_id': string;
|
|
11290
|
-
readonly 'timestamp': string;
|
|
11291
|
-
readonly 'organization': string;
|
|
11292
|
-
readonly 'default_configurations': io.flow.v0.models.OrganizationDefaultConfigurations;
|
|
11293
|
-
}
|
|
11294
|
-
|
|
11295
11317
|
interface OrganizationDefaults {
|
|
11296
11318
|
readonly 'country': string;
|
|
11297
11319
|
readonly 'base_currency': string;
|
|
@@ -15267,11 +15289,10 @@ declare namespace io.flow.v0.models {
|
|
|
15267
15289
|
interface Transfer {
|
|
15268
15290
|
readonly 'id': string;
|
|
15269
15291
|
readonly 'type': io.flow.v0.enums.TransferType;
|
|
15270
|
-
readonly '
|
|
15271
|
-
readonly 'transferred_money': io.flow.v0.models.ExchangedMoney;
|
|
15292
|
+
readonly 'base': io.flow.v0.models.Money;
|
|
15272
15293
|
readonly 'status': io.flow.v0.enums.TransferStatus;
|
|
15273
15294
|
readonly 'created_at': string;
|
|
15274
|
-
readonly '
|
|
15295
|
+
readonly 'authorization': io.flow.v0.models.AuthorizationReference;
|
|
15275
15296
|
readonly 'transferred_at': string;
|
|
15276
15297
|
}
|
|
15277
15298
|
|
|
@@ -15589,7 +15610,7 @@ declare namespace io.flow.v0.unions {
|
|
|
15589
15610
|
type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
|
|
15590
15611
|
type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
|
|
15591
15612
|
type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
|
|
15592
|
-
type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.AldoItemUpserted | io.flow.v0.models.AldoItemDeleted | io.flow.v0.models.AnshItemUpserted | io.flow.v0.models.AnshItemDeleted | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ItemInserted | io.flow.v0.models.ItemUpdated | io.flow.v0.models.ItemDeleted | io.flow.v0.models.
|
|
15613
|
+
type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.NiallItemUpserted | io.flow.v0.models.NiallItemDeleted | io.flow.v0.models.AldoItemUpserted | io.flow.v0.models.AldoItemDeleted | io.flow.v0.models.AnshItemUpserted | io.flow.v0.models.AnshItemDeleted | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ItemInserted | io.flow.v0.models.ItemUpdated | io.flow.v0.models.ItemDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.ChannelShopifyOrderStateUpserted | io.flow.v0.models.ChannelShopifyOrderStateDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.GeItemInserted | io.flow.v0.models.GeItemUpdated | io.flow.v0.models.GeItemDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.LabelUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LabelProcessingModificationUpserted | io.flow.v0.models.LabelProcessingModificationDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.AuthorizationRetryUpserted | io.flow.v0.models.AuthorizationRetryDeleted | io.flow.v0.models.TransferUpserted | io.flow.v0.models.TransferDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.ProductInserted | io.flow.v0.models.ProductUpdated | io.flow.v0.models.ProductDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ReturnUpserted | io.flow.v0.models.ReturnDeleted | io.flow.v0.models.ReturnUpsertedV2 | io.flow.v0.models.ReturnDeletedV2 | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted);
|
|
15593
15614
|
type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary | io.flow.v0.models.ExternalCard);
|
|
15594
15615
|
type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
|
|
15595
15616
|
type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
|
|
@@ -15758,7 +15779,6 @@ export const fulfillmentMethodType: PropTypes.Requireable<io.flow.v0.enums.Fulfi
|
|
|
15758
15779
|
export const fulfillmentMethodValue: PropTypes.Requireable<io.flow.v0.enums.FulfillmentMethodValue>;
|
|
15759
15780
|
export const fulfillmentRouting: PropTypes.Requireable<io.flow.v0.enums.FulfillmentRouting>;
|
|
15760
15781
|
export const geCatalogItemIngestionResponse: PropTypes.Requireable<io.flow.v0.enums.GeCatalogItemIngestionResponse>;
|
|
15761
|
-
export const geEnvironment: PropTypes.Requireable<io.flow.v0.enums.GeEnvironment>;
|
|
15762
15782
|
export const geEventType: PropTypes.Requireable<io.flow.v0.enums.GeEventType>;
|
|
15763
15783
|
export const genericErrorCode: PropTypes.Requireable<io.flow.v0.enums.GenericErrorCode>;
|
|
15764
15784
|
export const goodsSupply: PropTypes.Requireable<io.flow.v0.enums.GoodsSupply>;
|
|
@@ -16616,6 +16636,8 @@ export const monthlyAverage: PropTypes.Requireable<io.flow.v0.models.MonthlyAver
|
|
|
16616
16636
|
export const monthlyAverageVolume: PropTypes.Requireable<io.flow.v0.models.MonthlyAverageVolume>;
|
|
16617
16637
|
export const name: PropTypes.Requireable<io.flow.v0.models.Name>;
|
|
16618
16638
|
export const nameForm: PropTypes.Requireable<io.flow.v0.models.NameForm>;
|
|
16639
|
+
export const niallItemDeleted: PropTypes.Requireable<io.flow.v0.models.NiallItemDeleted>;
|
|
16640
|
+
export const niallItemUpserted: PropTypes.Requireable<io.flow.v0.models.NiallItemUpserted>;
|
|
16619
16641
|
export const notificationDeletedV2: PropTypes.Requireable<io.flow.v0.models.NotificationDeletedV2>;
|
|
16620
16642
|
export const notificationUpsertedV2: PropTypes.Requireable<io.flow.v0.models.NotificationUpsertedV2>;
|
|
16621
16643
|
export const numberRange: PropTypes.Requireable<io.flow.v0.models.NumberRange>;
|
|
@@ -16714,12 +16736,7 @@ export const organization: PropTypes.Requireable<io.flow.v0.models.Organization>
|
|
|
16714
16736
|
export const organizationAuthorization: PropTypes.Requireable<io.flow.v0.models.OrganizationAuthorization>;
|
|
16715
16737
|
export const organizationAuthorizationForm: PropTypes.Requireable<io.flow.v0.models.OrganizationAuthorizationForm>;
|
|
16716
16738
|
export const organizationBankAccount: PropTypes.Requireable<io.flow.v0.models.OrganizationBankAccount>;
|
|
16717
|
-
export const organizationConfigurationReference: PropTypes.Requireable<io.flow.v0.models.OrganizationConfigurationReference>;
|
|
16718
16739
|
export const organizationDefaultBankAccount: PropTypes.Requireable<io.flow.v0.models.OrganizationDefaultBankAccount>;
|
|
16719
|
-
export const organizationDefaultConfigurations: PropTypes.Requireable<io.flow.v0.models.OrganizationDefaultConfigurations>;
|
|
16720
|
-
export const organizationDefaultConfigurationsDeleted: PropTypes.Requireable<io.flow.v0.models.OrganizationDefaultConfigurationsDeleted>;
|
|
16721
|
-
export const organizationDefaultConfigurationsForm: PropTypes.Requireable<io.flow.v0.models.OrganizationDefaultConfigurationsForm>;
|
|
16722
|
-
export const organizationDefaultConfigurationsUpserted: PropTypes.Requireable<io.flow.v0.models.OrganizationDefaultConfigurationsUpserted>;
|
|
16723
16740
|
export const organizationDefaults: PropTypes.Requireable<io.flow.v0.models.OrganizationDefaults>;
|
|
16724
16741
|
export const organizationDeleted: PropTypes.Requireable<io.flow.v0.models.OrganizationDeleted>;
|
|
16725
16742
|
export const organizationDeletedV2: PropTypes.Requireable<io.flow.v0.models.OrganizationDeletedV2>;
|