@flowio/api-types 0.0.239 → 0.0.241
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/generated/io.flow.billing.v0.billing.d.ts +1 -1
- package/generated/io.flow.external.paypal.v1.paypal.d.ts +28 -0
- package/generated/io.flow.internal.v0.api-internal.d.ts +290 -19
- package/generated/io.flow.product.v0.product.d.ts +21 -0
- package/generated/io.flow.ratecard.v0.ratecard.d.ts +2 -0
- package/generated/io.flow.sellability.v0.sellability.d.ts +33 -0
- package/generated/io.flow.shopify.external.v0.shopify-external.d.ts +13 -0
- package/generated/io.flow.shopify.markets.internal.v0.shopify-markets-internal.d.ts +1 -1
- package/generated/io.flow.tech.onboarding.playground.v0.tech-onboarding-playground.d.ts +56 -0
- package/generated/io.flow.tracking.v0.tracking.d.ts +1 -0
- package/generated/io.flow.v0.api.d.ts +132 -44
- package/index.d.ts +3 -1
- package/package.json +2 -2
- package/generated/io.flow.flexe.v0.flexe.d.ts +0 -297
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
declare namespace io.flow.product.v0.models {
|
|
2
|
+
interface Product {
|
|
3
|
+
readonly 'organization_id': string;
|
|
4
|
+
readonly 'number': string;
|
|
5
|
+
readonly 'taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
6
|
+
readonly 'taxonomy_data'?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
7
|
+
readonly 'item_numbers': string[];
|
|
8
|
+
readonly 'updated_at': string;
|
|
9
|
+
readonly 'deleted_at'?: string;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
interface ProductTaxonomyCategory {
|
|
13
|
+
readonly 'name': string;
|
|
14
|
+
readonly 'full_name': string;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
interface ProductTaxonomyData {
|
|
18
|
+
readonly 'key': string;
|
|
19
|
+
readonly 'value': string[];
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -25,12 +25,14 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
25
25
|
readonly 'q': string;
|
|
26
26
|
readonly 'dimensions': io.flow.ratecard.v0.models.EstimatedDimensions;
|
|
27
27
|
readonly 'position': number;
|
|
28
|
+
readonly 'block_bulk_update'?: boolean;
|
|
28
29
|
}
|
|
29
30
|
|
|
30
31
|
interface DimensionEstimateForm {
|
|
31
32
|
readonly 'q': string;
|
|
32
33
|
readonly 'dimensions': io.flow.ratecard.v0.models.EstimatedDimensions;
|
|
33
34
|
readonly 'position'?: number;
|
|
35
|
+
readonly 'block_bulk_update'?: boolean;
|
|
34
36
|
}
|
|
35
37
|
|
|
36
38
|
interface DimensionEstimateVersion {
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
declare namespace io.flow.sellability.v0.enums {
|
|
2
|
+
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
declare namespace io.flow.sellability.v0.models {
|
|
6
|
+
interface ProductSellability {
|
|
7
|
+
readonly 'organization_id': string;
|
|
8
|
+
readonly 'product_id'?: string;
|
|
9
|
+
readonly 'product_correlation_id': string;
|
|
10
|
+
readonly 'restricted_regions': io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
11
|
+
readonly 'in_review_regions': io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
interface ProductSellabilityForm {
|
|
15
|
+
readonly 'organization_id': string;
|
|
16
|
+
readonly 'product_id'?: string;
|
|
17
|
+
readonly 'product_correlation_id': string;
|
|
18
|
+
readonly 'name': string;
|
|
19
|
+
readonly 'price': io.flow.sellability.v0.models.ProductSellabilityPrice;
|
|
20
|
+
readonly 'description': string;
|
|
21
|
+
readonly 'taxonomy_category': io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
interface ProductSellabilityPrice {
|
|
25
|
+
readonly 'currency': string;
|
|
26
|
+
readonly 'amount': number;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
interface SellablilityRegionResult {
|
|
30
|
+
readonly 'type': io.flow.sellability.v0.enums.RuleEffectType;
|
|
31
|
+
readonly 'regions': string[];
|
|
32
|
+
}
|
|
33
|
+
}
|
|
@@ -68,6 +68,11 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
68
68
|
readonly 'weight'?: io.flow.shopify.external.v0.models.GraphqlWeight;
|
|
69
69
|
}
|
|
70
70
|
|
|
71
|
+
interface GraphqlMetafield {
|
|
72
|
+
readonly 'key': string;
|
|
73
|
+
readonly 'value': string;
|
|
74
|
+
}
|
|
75
|
+
|
|
71
76
|
interface GraphqlOption {
|
|
72
77
|
readonly 'id': string;
|
|
73
78
|
readonly 'values': string[];
|
|
@@ -93,6 +98,8 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
93
98
|
readonly 'createdAt': string;
|
|
94
99
|
readonly 'updatedAt': string;
|
|
95
100
|
readonly 'hasVariantsThatRequiresComponents'?: boolean;
|
|
101
|
+
readonly 'category'?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
|
|
102
|
+
readonly 'metafields'?: io.flow.shopify.external.v0.models.GraphqlMetafield[];
|
|
96
103
|
}
|
|
97
104
|
|
|
98
105
|
interface GraphqlProductImage {
|
|
@@ -116,6 +123,11 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
116
123
|
readonly 'inventoryItem': io.flow.shopify.external.v0.models.GraphqlInventoryItem;
|
|
117
124
|
}
|
|
118
125
|
|
|
126
|
+
interface GraphqlTaxonomyCategory {
|
|
127
|
+
readonly 'name': string;
|
|
128
|
+
readonly 'fullName': string;
|
|
129
|
+
}
|
|
130
|
+
|
|
119
131
|
interface GraphqlVariantImage {
|
|
120
132
|
readonly 'id': string;
|
|
121
133
|
}
|
|
@@ -233,6 +245,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
233
245
|
readonly 'created_at': string;
|
|
234
246
|
readonly 'updated_at': string;
|
|
235
247
|
readonly 'has_variants_that_requires_components'?: boolean;
|
|
248
|
+
readonly 'category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
236
249
|
}
|
|
237
250
|
|
|
238
251
|
interface ProductDelete {
|
|
@@ -2,7 +2,7 @@ declare namespace io.flow.shopify.markets.internal.v0.enums {
|
|
|
2
2
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
3
3
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
4
4
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
5
|
-
type GraphqlServiceTypes = 'order_update_mutation' | 'shipping_address_validation' | 'bulk_publication_status' | 'country_catalog_sync' | 'inventory_item' | 'product_bundle' | 'shopify_location' | 'shopify_order' | 'sync_product_catalog';
|
|
5
|
+
type GraphqlServiceTypes = 'order_update_mutation' | 'shipping_address_validation' | 'bulk_publication_status' | 'country_catalog_sync' | 'inventory_item' | 'product_bundle' | 'shopify_location' | 'shopify_order' | 'sync_product_catalog' | 'shopify_webhook';
|
|
6
6
|
type ProductStatus = 'active' | 'archived' | 'draft';
|
|
7
7
|
type ShopifyMarketsDangerousGoods = 'aerosols' | 'air_bag_inflators_or_seat_belt_pretensioners' | 'alcoholic_beverages_containing_more_than_24_percent_alcohol_by_volume' | 'batteries' | 'carbon_dioxide_or_dry_ice' | 'corrosives' | 'cannabidiol_products' | 'cologne_or_perfume' | 'currency_or_gift_cards_or_monetary_instruments' | 'exotic_leather_goods' | 'environmental_waste' | 'explosives_or_ammunition' | 'flammable_liquids' | 'gases' | 'hazardous_or_combustible_materials' | 'infectious_or_biological_substances' | 'knives' | 'matches_or_lighter_or_lighter_refills' | 'nail_polish' | 'oxidizing_materials_or_organic_peroxides' | 'pornography' | 'prohibited_carriage' | 'pesticides_or_toxic_herbicides_or_insecticides_or_poisonous_toxic_substances';
|
|
8
8
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
declare namespace io.flow.tech.onboarding.playground.v0.enums {
|
|
2
|
+
type AldoItemType = 'physical' | 'digital';
|
|
3
|
+
type AnshItemType = 'physical' | 'digital';
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
7
|
+
interface AldoItem {
|
|
8
|
+
readonly 'id': string;
|
|
9
|
+
readonly 'number': string;
|
|
10
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
11
|
+
readonly 'description'?: string;
|
|
12
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
|
|
13
|
+
readonly 'added_on': string;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
interface AldoItemForm {
|
|
17
|
+
readonly 'number': string;
|
|
18
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
19
|
+
readonly 'description'?: string;
|
|
20
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
|
|
21
|
+
readonly 'added_on': string;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
interface AnshItem {
|
|
25
|
+
readonly 'id': string;
|
|
26
|
+
readonly 'number': string;
|
|
27
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
28
|
+
readonly 'description'?: string;
|
|
29
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
|
|
30
|
+
readonly 'added_on': string;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
interface AnshItemForm {
|
|
34
|
+
readonly 'number': string;
|
|
35
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
36
|
+
readonly 'description'?: string;
|
|
37
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
|
|
38
|
+
readonly 'added_on': string;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
interface JeanDemoItem {
|
|
42
|
+
readonly 'id': string;
|
|
43
|
+
readonly 'name': string;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
interface ShawnRoundtableWorkshopRate {
|
|
47
|
+
readonly 'origin_country': string;
|
|
48
|
+
readonly 'destination_country': string;
|
|
49
|
+
readonly 'weight': number;
|
|
50
|
+
readonly 'amount': number;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
interface TechOnboardingDescription {
|
|
54
|
+
readonly 'description': string;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
declare namespace io.flow.tracking.v0.enums {
|
|
2
|
+
type SubstatusCode = 'Delivered_001' | 'Delivered_002' | 'Delivered_003' | 'Delivered_004' | 'AvailableForPickup_001' | 'Exception_001' | 'Exception_002' | 'Exception_003' | 'Exception_004' | 'Exception_005' | 'Exception_006' | 'Exception_007' | 'Exception_008' | 'Exception_009' | 'Exception_010' | 'Exception_011' | 'Exception_012' | 'Exception_013' | 'AttemptFail_001' | 'AttemptFail_002' | 'AttemptFail_003' | 'InTransit_001' | 'InTransit_002' | 'InTransit_003' | 'InTransit_004' | 'InTransit_005' | 'InTransit_006' | 'InTransit_007' | 'InTransit_008' | 'InTransit_009' | 'InfoReceived_001' | 'OutForDelivery_001' | 'OutForDelivery_003' | 'OutForDelivery_004' | 'Pending_001' | 'Pending_002' | 'Pending_003' | 'Pending_004' | 'Pending_005' | 'Pending_006' | 'Expired_001';
|
|
2
3
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
|
|
3
4
|
}
|
|
4
5
|
|
|
@@ -26,6 +26,7 @@ declare namespace io.flow.v0.enums {
|
|
|
26
26
|
type CenterCapability = 'international' | 'domestic' | 'crossdock' | 'commercial_invoice';
|
|
27
27
|
type ChangeType = 'insert' | 'update' | 'delete';
|
|
28
28
|
type ChannelCurrencyCapability = 'payment_authorizations' | 'settlement_currency';
|
|
29
|
+
type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
|
|
29
30
|
type ConsumerInvoiceCustomerType = 'business_eu_verified' | 'business_non_verified' | 'individual';
|
|
30
31
|
type ConsumerInvoiceDocumentType = 'pdf';
|
|
31
32
|
type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
|
|
@@ -53,7 +54,7 @@ declare namespace io.flow.v0.enums {
|
|
|
53
54
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
54
55
|
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
55
56
|
type Environment = 'sandbox' | 'production';
|
|
56
|
-
type EventType = 'test_upserted' | 'generate_load' | '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' | '
|
|
57
|
+
type EventType = 'test_upserted' | 'generate_load' | 'aldo_item_upserted' | 'aldo_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_shopify_order_state_upserted' | 'channel_shopify_order_state_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_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' | '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' | 'local_item_upserted' | 'local_item_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'checkout_optin_responses_upserted' | 'checkout_optin_responses_deleted' | 'browse_optin_responses_upserted' | 'browse_optin_responses_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' | 'organization_default_configurations_upserted' | 'organization_default_configurations_deleted' | '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' | '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';
|
|
57
58
|
type ExceptionType = 'open' | 'closed';
|
|
58
59
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
59
60
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -169,6 +170,7 @@ declare namespace io.flow.v0.enums {
|
|
|
169
170
|
type Role = 'admin' | 'member';
|
|
170
171
|
type RoundingMethod = 'up' | 'down' | 'nearest';
|
|
171
172
|
type RoundingType = 'pattern' | 'multiple';
|
|
173
|
+
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
172
174
|
type ScheduleExceptionStatus = 'Open' | 'Closed';
|
|
173
175
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
174
176
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
@@ -182,6 +184,7 @@ declare namespace io.flow.v0.enums {
|
|
|
182
184
|
type StoredMethodUsageStep = 'initial' | 'subsequent';
|
|
183
185
|
type Strategy = 'range' | 'from' | 'to';
|
|
184
186
|
type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
|
|
187
|
+
type SubstatusCode = 'Delivered_001' | 'Delivered_002' | 'Delivered_003' | 'Delivered_004' | 'AvailableForPickup_001' | 'Exception_001' | 'Exception_002' | 'Exception_003' | 'Exception_004' | 'Exception_005' | 'Exception_006' | 'Exception_007' | 'Exception_008' | 'Exception_009' | 'Exception_010' | 'Exception_011' | 'Exception_012' | 'Exception_013' | 'AttemptFail_001' | 'AttemptFail_002' | 'AttemptFail_003' | 'InTransit_001' | 'InTransit_002' | 'InTransit_003' | 'InTransit_004' | 'InTransit_005' | 'InTransit_006' | 'InTransit_007' | 'InTransit_008' | 'InTransit_009' | 'InfoReceived_001' | 'OutForDelivery_001' | 'OutForDelivery_003' | 'OutForDelivery_004' | 'Pending_001' | 'Pending_002' | 'Pending_003' | 'Pending_004' | 'Pending_005' | 'Pending_006' | 'Expired_001';
|
|
185
188
|
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
186
189
|
type SyncRecordFailureReason = 'inventory' | 'address' | 'promotion' | 'other';
|
|
187
190
|
type SyncStreamType = 'submitted_order' | 'placed_order';
|
|
@@ -201,7 +204,7 @@ declare namespace io.flow.v0.enums {
|
|
|
201
204
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
|
|
202
205
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
203
206
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
204
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund';
|
|
207
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'order_fx' | 'ge_revenue_share' | 'tax_duty_delta';
|
|
205
208
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
206
209
|
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion' | 'prohibited_item' | 'undeliverable_shipment' | 'signature_required' | 'direct_delivery' | 'saturday_stop' | 'residential_extended_area_pickup' | 'package_level_detail';
|
|
207
210
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
@@ -530,6 +533,20 @@ declare namespace io.flow.v0.models {
|
|
|
530
533
|
readonly 'fingerprint_token': string;
|
|
531
534
|
}
|
|
532
535
|
|
|
536
|
+
interface AldoItemDeleted {
|
|
537
|
+
readonly 'discriminator': 'aldo_item_deleted';
|
|
538
|
+
readonly 'event_id': string;
|
|
539
|
+
readonly 'timestamp': string;
|
|
540
|
+
readonly 'id': string;
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
interface AldoItemUpserted {
|
|
544
|
+
readonly 'discriminator': 'aldo_item_upserted';
|
|
545
|
+
readonly 'event_id': string;
|
|
546
|
+
readonly 'timestamp': string;
|
|
547
|
+
readonly 'item': io.flow.tech.onboarding.playground.v0.models.AldoItem;
|
|
548
|
+
}
|
|
549
|
+
|
|
533
550
|
interface Allocation {
|
|
534
551
|
readonly 'order': io.flow.v0.models.AllocationOrderSummary;
|
|
535
552
|
readonly 'details': io.flow.v0.unions.AllocationDetail[];
|
|
@@ -1436,6 +1453,11 @@ declare namespace io.flow.v0.models {
|
|
|
1436
1453
|
readonly 'id': string;
|
|
1437
1454
|
}
|
|
1438
1455
|
|
|
1456
|
+
interface CarrierRestrictions {
|
|
1457
|
+
readonly 'carrier': string;
|
|
1458
|
+
readonly 'regions': string[];
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1439
1461
|
interface CarrierService {
|
|
1440
1462
|
readonly 'id': string;
|
|
1441
1463
|
readonly 'carrier': io.flow.v0.models.Carrier;
|
|
@@ -1457,22 +1479,6 @@ declare namespace io.flow.v0.models {
|
|
|
1457
1479
|
readonly 'organization': string;
|
|
1458
1480
|
}
|
|
1459
1481
|
|
|
1460
|
-
interface CatalogItemDeleted {
|
|
1461
|
-
readonly 'discriminator': 'catalog_item_deleted';
|
|
1462
|
-
readonly 'event_id': string;
|
|
1463
|
-
readonly 'timestamp': string;
|
|
1464
|
-
readonly 'organization': string;
|
|
1465
|
-
readonly 'number': string;
|
|
1466
|
-
}
|
|
1467
|
-
|
|
1468
|
-
interface CatalogItemDeletedV2 {
|
|
1469
|
-
readonly 'discriminator': 'catalog_item_deleted_v2';
|
|
1470
|
-
readonly 'event_id': string;
|
|
1471
|
-
readonly 'timestamp': string;
|
|
1472
|
-
readonly 'organization': string;
|
|
1473
|
-
readonly 'item': io.flow.v0.models.Item;
|
|
1474
|
-
}
|
|
1475
|
-
|
|
1476
1482
|
interface CatalogItemDocument {
|
|
1477
1483
|
readonly 'discriminator': 'catalog_item_document';
|
|
1478
1484
|
readonly 'number': string;
|
|
@@ -1505,31 +1511,6 @@ declare namespace io.flow.v0.models {
|
|
|
1505
1511
|
readonly 'attributes': Record<string, string>;
|
|
1506
1512
|
}
|
|
1507
1513
|
|
|
1508
|
-
interface CatalogItemUpserted {
|
|
1509
|
-
readonly 'discriminator': 'catalog_item_upserted';
|
|
1510
|
-
readonly 'event_id': string;
|
|
1511
|
-
readonly 'timestamp': string;
|
|
1512
|
-
readonly 'organization': string;
|
|
1513
|
-
readonly 'number': string;
|
|
1514
|
-
readonly 'locale': string;
|
|
1515
|
-
readonly 'name': string;
|
|
1516
|
-
readonly 'currency': string;
|
|
1517
|
-
readonly 'price': number;
|
|
1518
|
-
readonly 'categories': string[];
|
|
1519
|
-
readonly 'description'?: string;
|
|
1520
|
-
readonly 'attributes': Record<string, string>;
|
|
1521
|
-
readonly 'dimensions': any/*object*/;
|
|
1522
|
-
readonly 'images': any/*object*/[];
|
|
1523
|
-
}
|
|
1524
|
-
|
|
1525
|
-
interface CatalogItemUpsertedV2 {
|
|
1526
|
-
readonly 'discriminator': 'catalog_item_upserted_v2';
|
|
1527
|
-
readonly 'event_id': string;
|
|
1528
|
-
readonly 'timestamp': string;
|
|
1529
|
-
readonly 'organization': string;
|
|
1530
|
-
readonly 'item': io.flow.v0.models.Item;
|
|
1531
|
-
}
|
|
1532
|
-
|
|
1533
1514
|
interface CatalogPriceBookItemDocument {
|
|
1534
1515
|
readonly 'price_book_key': string;
|
|
1535
1516
|
readonly 'price_book_item_key': string;
|
|
@@ -1825,6 +1806,39 @@ declare namespace io.flow.v0.models {
|
|
|
1825
1806
|
readonly 'id': string;
|
|
1826
1807
|
}
|
|
1827
1808
|
|
|
1809
|
+
interface ChannelShopifyOrderState {
|
|
1810
|
+
readonly 'id': string;
|
|
1811
|
+
readonly 'shopify_order_summary': io.flow.v0.models.ChannelShopifyOrderSummary;
|
|
1812
|
+
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
1813
|
+
readonly 'reasons'?: io.flow.v0.models.ChannelShopifyOrderStateReason[];
|
|
1814
|
+
}
|
|
1815
|
+
|
|
1816
|
+
interface ChannelShopifyOrderStateDeleted {
|
|
1817
|
+
readonly 'discriminator': 'channel_shopify_order_state_deleted';
|
|
1818
|
+
readonly 'event_id': string;
|
|
1819
|
+
readonly 'timestamp': string;
|
|
1820
|
+
readonly 'organization': string;
|
|
1821
|
+
readonly 'id': string;
|
|
1822
|
+
}
|
|
1823
|
+
|
|
1824
|
+
interface ChannelShopifyOrderStateReason {
|
|
1825
|
+
readonly 'code': io.flow.v0.enums.ChannelShopifyOrderStateReasonCode;
|
|
1826
|
+
readonly 'message': string;
|
|
1827
|
+
}
|
|
1828
|
+
|
|
1829
|
+
interface ChannelShopifyOrderStateUpserted {
|
|
1830
|
+
readonly 'discriminator': 'channel_shopify_order_state_upserted';
|
|
1831
|
+
readonly 'event_id': string;
|
|
1832
|
+
readonly 'timestamp': string;
|
|
1833
|
+
readonly 'organization': string;
|
|
1834
|
+
readonly 'channel_shopify_order_state': io.flow.v0.models.ChannelShopifyOrderState;
|
|
1835
|
+
}
|
|
1836
|
+
|
|
1837
|
+
interface ChannelShopifyOrderSummary {
|
|
1838
|
+
readonly 'order_id': number;
|
|
1839
|
+
readonly 'shop_id': number;
|
|
1840
|
+
}
|
|
1841
|
+
|
|
1828
1842
|
interface ChannelStatement {
|
|
1829
1843
|
readonly 'id': string;
|
|
1830
1844
|
readonly 'account': io.flow.v0.models.AccountReference;
|
|
@@ -2822,12 +2836,14 @@ declare namespace io.flow.v0.models {
|
|
|
2822
2836
|
readonly 'q': string;
|
|
2823
2837
|
readonly 'dimensions': io.flow.v0.models.EstimatedDimensions;
|
|
2824
2838
|
readonly 'position': number;
|
|
2839
|
+
readonly 'block_bulk_update'?: boolean;
|
|
2825
2840
|
}
|
|
2826
2841
|
|
|
2827
2842
|
interface DimensionEstimateForm {
|
|
2828
2843
|
readonly 'q': string;
|
|
2829
2844
|
readonly 'dimensions': io.flow.v0.models.EstimatedDimensions;
|
|
2830
2845
|
readonly 'position'?: number;
|
|
2846
|
+
readonly 'block_bulk_update'?: boolean;
|
|
2831
2847
|
}
|
|
2832
2848
|
|
|
2833
2849
|
interface DimensionEstimateVersion {
|
|
@@ -7499,6 +7515,32 @@ declare namespace io.flow.v0.models {
|
|
|
7499
7515
|
readonly 'source': io.flow.v0.enums.DeliveryWindowComponentSource;
|
|
7500
7516
|
}
|
|
7501
7517
|
|
|
7518
|
+
interface Product {
|
|
7519
|
+
readonly 'organization_id': string;
|
|
7520
|
+
readonly 'number': string;
|
|
7521
|
+
readonly 'taxonomy_category'?: io.flow.v0.models.ProductTaxonomyCategory;
|
|
7522
|
+
readonly 'taxonomy_data'?: io.flow.v0.models.ProductTaxonomyData[];
|
|
7523
|
+
readonly 'item_numbers': string[];
|
|
7524
|
+
readonly 'updated_at': string;
|
|
7525
|
+
readonly 'deleted_at'?: string;
|
|
7526
|
+
}
|
|
7527
|
+
|
|
7528
|
+
interface ProductDeleted {
|
|
7529
|
+
readonly 'discriminator': 'product_deleted';
|
|
7530
|
+
readonly 'event_id': string;
|
|
7531
|
+
readonly 'timestamp': string;
|
|
7532
|
+
readonly 'organization': string;
|
|
7533
|
+
readonly 'product': io.flow.v0.models.Product;
|
|
7534
|
+
}
|
|
7535
|
+
|
|
7536
|
+
interface ProductInserted {
|
|
7537
|
+
readonly 'discriminator': 'product_inserted';
|
|
7538
|
+
readonly 'event_id': string;
|
|
7539
|
+
readonly 'timestamp': string;
|
|
7540
|
+
readonly 'organization': string;
|
|
7541
|
+
readonly 'product': io.flow.v0.models.Product;
|
|
7542
|
+
}
|
|
7543
|
+
|
|
7502
7544
|
interface ProductRestrictionResult {
|
|
7503
7545
|
readonly 'id': string;
|
|
7504
7546
|
readonly 'product_id': string;
|
|
@@ -7528,6 +7570,47 @@ declare namespace io.flow.v0.models {
|
|
|
7528
7570
|
readonly 'product_restriction_result': io.flow.v0.models.ProductRestrictionResult;
|
|
7529
7571
|
}
|
|
7530
7572
|
|
|
7573
|
+
interface ProductSellability {
|
|
7574
|
+
readonly 'organization_id': string;
|
|
7575
|
+
readonly 'product_id'?: string;
|
|
7576
|
+
readonly 'product_correlation_id': string;
|
|
7577
|
+
readonly 'restricted_regions': io.flow.v0.models.SellablilityRegionResult[];
|
|
7578
|
+
readonly 'in_review_regions': io.flow.v0.models.SellablilityRegionResult[];
|
|
7579
|
+
}
|
|
7580
|
+
|
|
7581
|
+
interface ProductSellabilityForm {
|
|
7582
|
+
readonly 'organization_id': string;
|
|
7583
|
+
readonly 'product_id'?: string;
|
|
7584
|
+
readonly 'product_correlation_id': string;
|
|
7585
|
+
readonly 'name': string;
|
|
7586
|
+
readonly 'price': io.flow.v0.models.ProductSellabilityPrice;
|
|
7587
|
+
readonly 'description': string;
|
|
7588
|
+
readonly 'taxonomy_category': io.flow.v0.models.ProductTaxonomyCategory;
|
|
7589
|
+
}
|
|
7590
|
+
|
|
7591
|
+
interface ProductSellabilityPrice {
|
|
7592
|
+
readonly 'currency': string;
|
|
7593
|
+
readonly 'amount': number;
|
|
7594
|
+
}
|
|
7595
|
+
|
|
7596
|
+
interface ProductTaxonomyCategory {
|
|
7597
|
+
readonly 'name': string;
|
|
7598
|
+
readonly 'full_name': string;
|
|
7599
|
+
}
|
|
7600
|
+
|
|
7601
|
+
interface ProductTaxonomyData {
|
|
7602
|
+
readonly 'key': string;
|
|
7603
|
+
readonly 'value': string[];
|
|
7604
|
+
}
|
|
7605
|
+
|
|
7606
|
+
interface ProductUpdated {
|
|
7607
|
+
readonly 'discriminator': 'product_updated';
|
|
7608
|
+
readonly 'event_id': string;
|
|
7609
|
+
readonly 'timestamp': string;
|
|
7610
|
+
readonly 'organization': string;
|
|
7611
|
+
readonly 'product': io.flow.v0.models.Product;
|
|
7612
|
+
}
|
|
7613
|
+
|
|
7531
7614
|
interface PromotionTrigger {
|
|
7532
7615
|
readonly 'type': io.flow.v0.enums.PromotionTriggerType;
|
|
7533
7616
|
readonly 'min': io.flow.v0.models.Price;
|
|
@@ -8473,6 +8556,11 @@ declare namespace io.flow.v0.models {
|
|
|
8473
8556
|
readonly 'issuer_options': io.flow.v0.models.IssuerReference[];
|
|
8474
8557
|
}
|
|
8475
8558
|
|
|
8559
|
+
interface SellablilityRegionResult {
|
|
8560
|
+
readonly 'type': io.flow.v0.enums.RuleEffectType;
|
|
8561
|
+
readonly 'regions': string[];
|
|
8562
|
+
}
|
|
8563
|
+
|
|
8476
8564
|
interface ServiceReference {
|
|
8477
8565
|
readonly 'id': string;
|
|
8478
8566
|
}
|
|
@@ -10322,7 +10410,7 @@ declare namespace io.flow.v0.unions {
|
|
|
10322
10410
|
type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
|
|
10323
10411
|
type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
|
|
10324
10412
|
type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
|
|
10325
|
-
type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | 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.
|
|
10413
|
+
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.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.ChannelShopifyOrderStateUpserted | io.flow.v0.models.ChannelShopifyOrderStateDeleted | 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.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.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.LocalItemUpserted | io.flow.v0.models.LocalItemDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.CheckoutOptinResponsesUpserted | io.flow.v0.models.CheckoutOptinResponsesDeleted | io.flow.v0.models.BrowseOptinResponsesUpserted | io.flow.v0.models.BrowseOptinResponsesDeleted | 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.OrganizationDefaultConfigurationsUpserted | io.flow.v0.models.OrganizationDefaultConfigurationsDeleted | 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.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);
|
|
10326
10414
|
type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary);
|
|
10327
10415
|
type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
|
|
10328
10416
|
type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
|
package/index.d.ts
CHANGED
|
@@ -22,7 +22,6 @@
|
|
|
22
22
|
/// <reference path="generated/io.flow.export.v0.export.d.ts" />
|
|
23
23
|
/// <reference path="generated/io.flow.external.paypal.v1.paypal.d.ts" />
|
|
24
24
|
/// <reference path="generated/io.flow.field.validation.v0.field-validation.d.ts" />
|
|
25
|
-
/// <reference path="generated/io.flow.flexe.v0.flexe.d.ts" />
|
|
26
25
|
/// <reference path="generated/io.flow.fraud.v0.fraud.d.ts" />
|
|
27
26
|
/// <reference path="generated/io.flow.ftp.v0.ftp.d.ts" />
|
|
28
27
|
/// <reference path="generated/io.flow.fulfillment.v0.fulfillment.d.ts" />
|
|
@@ -45,10 +44,12 @@
|
|
|
45
44
|
/// <reference path="generated/io.flow.payment.v0.payment.d.ts" />
|
|
46
45
|
/// <reference path="generated/io.flow.permission.v0.permission.d.ts" />
|
|
47
46
|
/// <reference path="generated/io.flow.price.v0.price.d.ts" />
|
|
47
|
+
/// <reference path="generated/io.flow.product.v0.product.d.ts" />
|
|
48
48
|
/// <reference path="generated/io.flow.query.builder.v0.query-builder.d.ts" />
|
|
49
49
|
/// <reference path="generated/io.flow.ratecard.v0.ratecard.d.ts" />
|
|
50
50
|
/// <reference path="generated/io.flow.reference.v0.reference.d.ts" />
|
|
51
51
|
/// <reference path="generated/io.flow.return.v0.return.d.ts" />
|
|
52
|
+
/// <reference path="generated/io.flow.sellability.v0.sellability.d.ts" />
|
|
52
53
|
/// <reference path="generated/io.flow.session.v0.session.d.ts" />
|
|
53
54
|
/// <reference path="generated/io.flow.shopify.external.v0.shopify-external.d.ts" />
|
|
54
55
|
/// <reference path="generated/io.flow.shopify.markets.internal.event.v0.shopify-markets-internal-event.d.ts" />
|
|
@@ -57,6 +58,7 @@
|
|
|
57
58
|
/// <reference path="generated/io.flow.shopify.merchant.config.v0.shopify-merchant-config.d.ts" />
|
|
58
59
|
/// <reference path="generated/io.flow.shopify.v0.shopify.d.ts" />
|
|
59
60
|
/// <reference path="generated/io.flow.stripe.v0.stripe.d.ts" />
|
|
61
|
+
/// <reference path="generated/io.flow.tech.onboarding.playground.v0.tech-onboarding-playground.d.ts" />
|
|
60
62
|
/// <reference path="generated/io.flow.token.v0.token.d.ts" />
|
|
61
63
|
/// <reference path="generated/io.flow.tracking.v0.tracking.d.ts" />
|
|
62
64
|
/// <reference path="generated/io.flow.trueup.v0.trueup.d.ts" />
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-types",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.241",
|
|
4
4
|
"description": "Global TypeScript typings for Flow Commerce API",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,5 +14,5 @@
|
|
|
14
14
|
"scripts": {
|
|
15
15
|
"generate": "apibuilder update && node scripts/generate-index.js"
|
|
16
16
|
},
|
|
17
|
-
"gitHead": "
|
|
17
|
+
"gitHead": "b6c2f519293efcf70e56cc356ba0b60292295b25"
|
|
18
18
|
}
|