@flowio/api-types 0.0.252 → 0.0.253
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.internal.v0.api-internal.d.ts +153 -772
- package/generated/io.flow.product.v0.product.d.ts +1 -0
- package/generated/io.flow.sellability.v0.sellability.d.ts +1 -6
- package/generated/io.flow.shopify.markets.internal.v0.shopify-markets-internal.d.ts +12 -1
- package/generated/io.flow.tech.onboarding.playground.v0.tech-onboarding-playground.d.ts +36 -0
- package/generated/io.flow.v0.api.d.ts +169 -331
- package/index.d.ts +0 -4
- package/package.json +2 -2
- package/generated/io.flow.customer.v0.customer.d.ts +0 -93
- package/generated/io.flow.order.management.event.v0.order-management-event.d.ts +0 -57
- package/generated/io.flow.session.v0.session.d.ts +0 -93
- package/generated/io.flow.shopify.v0.shopify.d.ts +0 -271
|
@@ -5,6 +5,7 @@ declare namespace io.flow.product.v0.models {
|
|
|
5
5
|
readonly 'taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
6
6
|
readonly 'taxonomy_data'?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
7
7
|
readonly 'item_numbers': string[];
|
|
8
|
+
readonly 'highest_value_item_number'?: string;
|
|
8
9
|
readonly 'updated_at': string;
|
|
9
10
|
readonly 'deleted_at'?: string;
|
|
10
11
|
}
|
|
@@ -18,18 +18,13 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
18
18
|
readonly 'shop_id': string;
|
|
19
19
|
readonly 'product_id'?: string;
|
|
20
20
|
readonly 'name': string;
|
|
21
|
-
readonly 'price': io.flow.
|
|
21
|
+
readonly 'price': io.flow.common.v0.models.Money;
|
|
22
22
|
readonly 'description': string;
|
|
23
23
|
readonly 'taxonomy_category': io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
24
24
|
readonly 'status'?: io.flow.sellability.v0.enums.SellabilityRequestStatus;
|
|
25
25
|
readonly 'dry_run'?: boolean;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
-
interface ProductSellabilityPrice {
|
|
29
|
-
readonly 'currency': string;
|
|
30
|
-
readonly 'amount': number;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
28
|
interface SellabilityError {
|
|
34
29
|
readonly 'discriminator': 'sellability_error';
|
|
35
30
|
readonly 'code': io.flow.sellability.v0.enums.SellabilityErrorCode;
|
|
@@ -3,7 +3,7 @@ declare namespace io.flow.shopify.markets.internal.v0.enums {
|
|
|
3
3
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
4
4
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
5
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
|
-
type ProductStatus = 'active' | 'archived' | 'draft';
|
|
6
|
+
type ProductStatus = 'active' | 'archived' | 'draft' | 'unlisted';
|
|
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';
|
|
9
9
|
type ShopifyMarketsTradeSector = 'apparel_and_accessories' | 'beauty_and_cosmetics' | 'electronics' | 'food_or_perishables' | 'jewellery_and_watches' | 'paper_and_art' | 'sports_and_fitness' | 'toys_hobbies_gifts' | 'other';
|
|
@@ -96,6 +96,17 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
96
96
|
readonly 'destination': string;
|
|
97
97
|
}
|
|
98
98
|
|
|
99
|
+
interface ShopifyHs10Code {
|
|
100
|
+
readonly 'country_code'?: string;
|
|
101
|
+
readonly 'code': string;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
interface ShopifyHs10Codes {
|
|
105
|
+
readonly 'id': string;
|
|
106
|
+
readonly 'item_number': string;
|
|
107
|
+
readonly 'codes': io.flow.shopify.markets.internal.v0.models.ShopifyHs10Code[];
|
|
108
|
+
}
|
|
109
|
+
|
|
99
110
|
interface ShopifyMarketsBestSellingProduct {
|
|
100
111
|
readonly 'id': string;
|
|
101
112
|
}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
declare namespace io.flow.tech.onboarding.playground.v0.enums {
|
|
2
2
|
type AldoItemType = 'physical' | 'digital';
|
|
3
3
|
type AnshItemType = 'physical' | 'digital';
|
|
4
|
+
type HoseinItemType = 'physical' | 'digital';
|
|
4
5
|
type NiallItemType = 'physical' | 'digital';
|
|
5
6
|
type PrateekItemType = 'physical' | 'digital';
|
|
6
7
|
type RohanItemType = 'physical' | 'digital';
|
|
8
|
+
type SarveshItemType = 'physical' | 'digital';
|
|
7
9
|
}
|
|
8
10
|
|
|
9
11
|
declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
@@ -41,6 +43,23 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
|
41
43
|
readonly 'added_on': string;
|
|
42
44
|
}
|
|
43
45
|
|
|
46
|
+
interface HoseinItem {
|
|
47
|
+
readonly 'id': string;
|
|
48
|
+
readonly 'number': string;
|
|
49
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
50
|
+
readonly 'description'?: string;
|
|
51
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.HoseinItemType;
|
|
52
|
+
readonly 'added_on': string;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
interface HoseinItemForm {
|
|
56
|
+
readonly 'number': string;
|
|
57
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
58
|
+
readonly 'description'?: string;
|
|
59
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.HoseinItemType;
|
|
60
|
+
readonly 'added_on': string;
|
|
61
|
+
}
|
|
62
|
+
|
|
44
63
|
interface JeanDemoItem {
|
|
45
64
|
readonly 'id': string;
|
|
46
65
|
readonly 'name': string;
|
|
@@ -97,6 +116,23 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
|
97
116
|
readonly 'added_on': string;
|
|
98
117
|
}
|
|
99
118
|
|
|
119
|
+
interface SarveshItem {
|
|
120
|
+
readonly 'id': string;
|
|
121
|
+
readonly 'number': string;
|
|
122
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
123
|
+
readonly 'description'?: string;
|
|
124
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.SarveshItemType;
|
|
125
|
+
readonly 'added_on': string;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
interface SarveshItemForm {
|
|
129
|
+
readonly 'number': string;
|
|
130
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
131
|
+
readonly 'description'?: string;
|
|
132
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.SarveshItemType;
|
|
133
|
+
readonly 'added_on': string;
|
|
134
|
+
}
|
|
135
|
+
|
|
100
136
|
interface TechOnboardingDescription {
|
|
101
137
|
readonly 'description': string;
|
|
102
138
|
}
|