@flowio/types 11.24.118 → 11.24.119
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/dist/api-internal.d.ts +9 -0
- package/package.json +2 -2
- package/src/api-internal.ts +12 -0
package/dist/api-internal.d.ts
CHANGED
|
@@ -11989,6 +11989,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11989
11989
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
11990
11990
|
type CarrierValidationStatus = 'success' | 'error';
|
|
11991
11991
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
11992
|
+
type CatalogPublicationOwner = 'shopify' | 'globale';
|
|
11992
11993
|
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
11993
11994
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
11994
11995
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
@@ -20089,6 +20090,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20089
20090
|
readonly price: io.flow.common.v0.models.Price;
|
|
20090
20091
|
readonly hs_code?: string;
|
|
20091
20092
|
readonly description: string;
|
|
20093
|
+
readonly category?: string;
|
|
20092
20094
|
readonly categories: string[];
|
|
20093
20095
|
readonly images: io.flow.catalog.v0.models.Image[];
|
|
20094
20096
|
readonly thumbnails: io.flow.catalog.v0.models.Image[];
|
|
@@ -20195,6 +20197,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20195
20197
|
readonly item_numbers: string[];
|
|
20196
20198
|
readonly primary_item_number?: string;
|
|
20197
20199
|
readonly description: string;
|
|
20200
|
+
readonly category?: string;
|
|
20198
20201
|
readonly categories: string[];
|
|
20199
20202
|
readonly images: io.flow.catalog.v0.models.Image[];
|
|
20200
20203
|
readonly thumbnails: io.flow.catalog.v0.models.Image[];
|
|
@@ -20631,6 +20634,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20631
20634
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
20632
20635
|
readonly shop: io.flow.internal.v0.models.Shop;
|
|
20633
20636
|
}
|
|
20637
|
+
interface ShopifyCatalogPublication {
|
|
20638
|
+
readonly owner: io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
20639
|
+
}
|
|
20634
20640
|
interface ShopifyChannelOrganizationToken {
|
|
20635
20641
|
readonly cleartext: string;
|
|
20636
20642
|
}
|
|
@@ -21000,6 +21006,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21000
21006
|
interface ShopifyMetadata {
|
|
21001
21007
|
readonly domain: string;
|
|
21002
21008
|
readonly myshopify_domain: string;
|
|
21009
|
+
readonly catalog_publication?: io.flow.internal.v0.models.ShopifyCatalogPublication;
|
|
21003
21010
|
readonly token: string;
|
|
21004
21011
|
}
|
|
21005
21012
|
interface ShopifyMonitoringCarrierService {
|
|
@@ -22959,6 +22966,7 @@ export declare type CatalogItemIndexTask = io.flow.internal.v0.models.CatalogIte
|
|
|
22959
22966
|
export declare type CatalogItemRegionAvailabilities = io.flow.internal.v0.models.CatalogItemRegionAvailabilities;
|
|
22960
22967
|
export declare type CatalogItemRegionAvailabilitiesData = io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesData;
|
|
22961
22968
|
export declare type CatalogItemRegionAvailabilitiesPublished = io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished;
|
|
22969
|
+
export declare type CatalogPublicationOwner = io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
22962
22970
|
export declare type CatalogPublicationSyncValidationError = io.flow.internal.v0.models.CatalogPublicationSyncValidationError;
|
|
22963
22971
|
export declare type CatalogSettings = io.flow.internal.v0.models.CatalogSettings;
|
|
22964
22972
|
export declare type CatalogSettingsDeleted = io.flow.internal.v0.models.CatalogSettingsDeleted;
|
|
@@ -24223,6 +24231,7 @@ export declare type ShippingPricing = io.flow.internal.v0.models.ShippingPricing
|
|
|
24223
24231
|
export declare type Shop = io.flow.internal.v0.models.Shop;
|
|
24224
24232
|
export declare type ShopForm = io.flow.internal.v0.models.ShopForm;
|
|
24225
24233
|
export declare type ShopVersion = io.flow.internal.v0.models.ShopVersion;
|
|
24234
|
+
export declare type ShopifyCatalogPublication = io.flow.internal.v0.models.ShopifyCatalogPublication;
|
|
24226
24235
|
export declare type ShopifyChannelOrganizationToken = io.flow.internal.v0.models.ShopifyChannelOrganizationToken;
|
|
24227
24236
|
export declare type ShopifyChannelOrganizationTokens = io.flow.internal.v0.models.ShopifyChannelOrganizationTokens;
|
|
24228
24237
|
export declare type ShopifyCheckInventoryError = io.flow.internal.v0.models.ShopifyCheckInventoryError;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/types",
|
|
3
|
-
"version": "11.24.
|
|
3
|
+
"version": "11.24.119",
|
|
4
4
|
"description": "TypeScript type definitions for custom types found in Flow API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"maintainers": [
|
|
26
26
|
"Christian Muñoz <christian.munoz@flow.io>"
|
|
27
27
|
],
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "ffe0a20d21d1a048bd484b1693c06bae66208f8f"
|
|
29
29
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -16490,6 +16490,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16490
16490
|
| 'item_prices'
|
|
16491
16491
|
| 'price_book_items_import'
|
|
16492
16492
|
| 'price_book_items_query_import';
|
|
16493
|
+
type CatalogPublicationOwner = 'shopify' | 'globale';
|
|
16493
16494
|
type ChannelBilledTransactionType =
|
|
16494
16495
|
| 'adjustment'
|
|
16495
16496
|
| 'reversal'
|
|
@@ -26563,6 +26564,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26563
26564
|
readonly price: io.flow.common.v0.models.Price;
|
|
26564
26565
|
readonly hs_code?: string;
|
|
26565
26566
|
readonly description: string;
|
|
26567
|
+
readonly category?: string;
|
|
26566
26568
|
readonly categories: string[];
|
|
26567
26569
|
readonly images: io.flow.catalog.v0.models.Image[];
|
|
26568
26570
|
readonly thumbnails: io.flow.catalog.v0.models.Image[];
|
|
@@ -26681,6 +26683,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26681
26683
|
readonly item_numbers: string[];
|
|
26682
26684
|
readonly primary_item_number?: string;
|
|
26683
26685
|
readonly description: string;
|
|
26686
|
+
readonly category?: string;
|
|
26684
26687
|
readonly categories: string[];
|
|
26685
26688
|
readonly images: io.flow.catalog.v0.models.Image[];
|
|
26686
26689
|
readonly thumbnails: io.flow.catalog.v0.models.Image[];
|
|
@@ -27183,6 +27186,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27183
27186
|
readonly shop: io.flow.internal.v0.models.Shop;
|
|
27184
27187
|
}
|
|
27185
27188
|
|
|
27189
|
+
interface ShopifyCatalogPublication {
|
|
27190
|
+
readonly owner: io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
27191
|
+
}
|
|
27192
|
+
|
|
27186
27193
|
interface ShopifyChannelOrganizationToken {
|
|
27187
27194
|
readonly cleartext: string;
|
|
27188
27195
|
}
|
|
@@ -27613,6 +27620,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27613
27620
|
interface ShopifyMetadata {
|
|
27614
27621
|
readonly domain: string;
|
|
27615
27622
|
readonly myshopify_domain: string;
|
|
27623
|
+
readonly catalog_publication?: io.flow.internal.v0.models.ShopifyCatalogPublication;
|
|
27616
27624
|
readonly token: string;
|
|
27617
27625
|
}
|
|
27618
27626
|
|
|
@@ -30557,6 +30565,8 @@ export type CatalogItemRegionAvailabilitiesData =
|
|
|
30557
30565
|
io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesData;
|
|
30558
30566
|
export type CatalogItemRegionAvailabilitiesPublished =
|
|
30559
30567
|
io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished;
|
|
30568
|
+
export type CatalogPublicationOwner =
|
|
30569
|
+
io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
30560
30570
|
export type CatalogPublicationSyncValidationError =
|
|
30561
30571
|
io.flow.internal.v0.models.CatalogPublicationSyncValidationError;
|
|
30562
30572
|
export type CatalogSettings = io.flow.internal.v0.models.CatalogSettings;
|
|
@@ -32624,6 +32634,8 @@ export type ShippingPricing = io.flow.internal.v0.models.ShippingPricing;
|
|
|
32624
32634
|
export type Shop = io.flow.internal.v0.models.Shop;
|
|
32625
32635
|
export type ShopForm = io.flow.internal.v0.models.ShopForm;
|
|
32626
32636
|
export type ShopVersion = io.flow.internal.v0.models.ShopVersion;
|
|
32637
|
+
export type ShopifyCatalogPublication =
|
|
32638
|
+
io.flow.internal.v0.models.ShopifyCatalogPublication;
|
|
32627
32639
|
export type ShopifyChannelOrganizationToken =
|
|
32628
32640
|
io.flow.internal.v0.models.ShopifyChannelOrganizationToken;
|
|
32629
32641
|
export type ShopifyChannelOrganizationTokens =
|