@flowio/api-internal-prop-types 9.24.117 → 9.24.118
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api-internal.d.ts +10 -0
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +10 -0
- package/src/api-internal.js +10 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-internal-prop-types",
|
|
3
|
-
"version": "9.24.
|
|
3
|
+
"version": "9.24.118",
|
|
4
4
|
"description": "PropType validators that work with internal Flow API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flow",
|
|
@@ -30,5 +30,5 @@
|
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"prop-types": "^15.7.0"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "ffe0a20d21d1a048bd484b1693c06bae66208f8f"
|
|
34
34
|
}
|
package/src/api-internal.d.ts
CHANGED
|
@@ -13781,6 +13781,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13781
13781
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
13782
13782
|
type CarrierValidationStatus = 'success' | 'error';
|
|
13783
13783
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
13784
|
+
type CatalogPublicationOwner = 'shopify' | 'globale';
|
|
13784
13785
|
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
13785
13786
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
13786
13787
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
@@ -23049,6 +23050,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23049
23050
|
readonly 'price': io.flow.common.v0.models.Price;
|
|
23050
23051
|
readonly 'hs_code'?: string;
|
|
23051
23052
|
readonly 'description': string;
|
|
23053
|
+
readonly 'category'?: string;
|
|
23052
23054
|
readonly 'categories': string[];
|
|
23053
23055
|
readonly 'images': io.flow.catalog.v0.models.Image[];
|
|
23054
23056
|
readonly 'thumbnails': io.flow.catalog.v0.models.Image[];
|
|
@@ -23167,6 +23169,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23167
23169
|
readonly 'item_numbers': string[];
|
|
23168
23170
|
readonly 'primary_item_number'?: string;
|
|
23169
23171
|
readonly 'description': string;
|
|
23172
|
+
readonly 'category'?: string;
|
|
23170
23173
|
readonly 'categories': string[];
|
|
23171
23174
|
readonly 'images': io.flow.catalog.v0.models.Image[];
|
|
23172
23175
|
readonly 'thumbnails': io.flow.catalog.v0.models.Image[];
|
|
@@ -23669,6 +23672,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23669
23672
|
readonly 'shop': io.flow.internal.v0.models.Shop;
|
|
23670
23673
|
}
|
|
23671
23674
|
|
|
23675
|
+
interface ShopifyCatalogPublication {
|
|
23676
|
+
readonly 'owner': io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
23677
|
+
}
|
|
23678
|
+
|
|
23672
23679
|
interface ShopifyChannelOrganizationToken {
|
|
23673
23680
|
readonly 'cleartext': string;
|
|
23674
23681
|
}
|
|
@@ -24099,6 +24106,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24099
24106
|
interface ShopifyMetadata {
|
|
24100
24107
|
readonly 'domain': string;
|
|
24101
24108
|
readonly 'myshopify_domain': string;
|
|
24109
|
+
readonly 'catalog_publication'?: io.flow.internal.v0.models.ShopifyCatalogPublication;
|
|
24102
24110
|
readonly 'token': string;
|
|
24103
24111
|
}
|
|
24104
24112
|
|
|
@@ -26092,6 +26100,7 @@ export const carrierFileType: PropTypes.Requireable<io.flow.internal.v0.enums.Ca
|
|
|
26092
26100
|
export const carrierLabelGenerationMethod: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierLabelGenerationMethod>;
|
|
26093
26101
|
export const carrierValidationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierValidationStatus>;
|
|
26094
26102
|
export const catalogImportType: PropTypes.Requireable<io.flow.internal.v0.enums.CatalogImportType>;
|
|
26103
|
+
export const catalogPublicationOwner: PropTypes.Requireable<io.flow.internal.v0.enums.CatalogPublicationOwner>;
|
|
26095
26104
|
export const channelBilledTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelBilledTransactionType>;
|
|
26096
26105
|
export const channelOrderAcceptanceErrorAction: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction>;
|
|
26097
26106
|
export const channelOrderAcceptanceFailureReasonCode: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode>;
|
|
@@ -27547,6 +27556,7 @@ export const shippingPricing: PropTypes.Requireable<io.flow.internal.v0.models.S
|
|
|
27547
27556
|
export const shop: PropTypes.Requireable<io.flow.internal.v0.models.Shop>;
|
|
27548
27557
|
export const shopForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopForm>;
|
|
27549
27558
|
export const shopVersion: PropTypes.Requireable<io.flow.internal.v0.models.ShopVersion>;
|
|
27559
|
+
export const shopifyCatalogPublication: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyCatalogPublication>;
|
|
27550
27560
|
export const shopifyChannelOrganizationToken: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyChannelOrganizationToken>;
|
|
27551
27561
|
export const shopifyChannelOrganizationTokens: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyChannelOrganizationTokens>;
|
|
27552
27562
|
export const shopifyCheckInventoryError: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyCheckInventoryError>;
|
package/src/api-internal.js
CHANGED
|
@@ -10882,6 +10882,7 @@ T['io.flow.internal.v0.models.shopify_check_inventory_error'] = PropTypes.exact(
|
|
|
10882
10882
|
numbers: PropTypes.arrayOf(PropTypes.string),
|
|
10883
10883
|
});
|
|
10884
10884
|
|
|
10885
|
+
T['io.flow.internal.v0.enums.catalog_publication_owner'] = PropTypes.oneOf(['shopify', 'globale']);
|
|
10885
10886
|
T['io.flow.fulfillment.v0.enums.ratecard_owner'] = PropTypes.oneOf(['flow', 'organization']);
|
|
10886
10887
|
|
|
10887
10888
|
T['io.flow.ratecard.v0.models.ratecard_summary'] = PropTypes.exact({
|
|
@@ -17472,9 +17473,14 @@ T['io.flow.internal.v0.models.transaction_reference'] = PropTypes.exact({
|
|
|
17472
17473
|
id: PropTypes.string.isRequired,
|
|
17473
17474
|
});
|
|
17474
17475
|
|
|
17476
|
+
T['io.flow.internal.v0.models.shopify_catalog_publication'] = PropTypes.exact({
|
|
17477
|
+
owner: T['io.flow.internal.v0.enums.catalog_publication_owner'].isRequired,
|
|
17478
|
+
});
|
|
17479
|
+
|
|
17475
17480
|
T['io.flow.internal.v0.models.shopify_metadata'] = PropTypes.exact({
|
|
17476
17481
|
domain: PropTypes.string.isRequired,
|
|
17477
17482
|
myshopify_domain: PropTypes.string.isRequired,
|
|
17483
|
+
catalog_publication: T['io.flow.internal.v0.models.shopify_catalog_publication'],
|
|
17478
17484
|
token: PropTypes.string.isRequired,
|
|
17479
17485
|
});
|
|
17480
17486
|
|
|
@@ -24769,6 +24775,7 @@ T['io.flow.internal.v0.models.restriction_product'] = PropTypes.exact({
|
|
|
24769
24775
|
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
24770
24776
|
primary_item_number: PropTypes.string,
|
|
24771
24777
|
description: PropTypes.string.isRequired,
|
|
24778
|
+
category: PropTypes.string,
|
|
24772
24779
|
categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
24773
24780
|
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
|
|
24774
24781
|
thumbnails: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
|
|
@@ -24790,6 +24797,7 @@ T['io.flow.internal.v0.models.restriction_item'] = PropTypes.exact({
|
|
|
24790
24797
|
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
24791
24798
|
hs_code: PropTypes.string,
|
|
24792
24799
|
description: PropTypes.string.isRequired,
|
|
24800
|
+
category: PropTypes.string,
|
|
24793
24801
|
categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
24794
24802
|
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
|
|
24795
24803
|
thumbnails: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
|
|
@@ -30633,6 +30641,7 @@ export const catalogItemIndexTask = T['io.flow.internal.v0.models.catalog_item_i
|
|
|
30633
30641
|
export const catalogItemRegionAvailabilities = T['io.flow.internal.v0.models.catalog_item_region_availabilities'];
|
|
30634
30642
|
export const catalogItemRegionAvailabilitiesData = T['io.flow.internal.v0.models.catalog_item_region_availabilities_data'];
|
|
30635
30643
|
export const catalogItemRegionAvailabilitiesPublished = T['io.flow.internal.v0.models.catalog_item_region_availabilities_published'];
|
|
30644
|
+
export const catalogPublicationOwner = T['io.flow.internal.v0.enums.catalog_publication_owner'];
|
|
30636
30645
|
export const catalogPublicationSyncValidationError = T['io.flow.internal.v0.models.catalog_publication_sync_validation_error'];
|
|
30637
30646
|
export const catalogSettings = T['io.flow.internal.v0.models.catalog_settings'];
|
|
30638
30647
|
export const catalogSettingsDeleted = T['io.flow.internal.v0.models.catalog_settings_deleted'];
|
|
@@ -31897,6 +31906,7 @@ export const shippingPricing = T['io.flow.internal.v0.models.shipping_pricing'];
|
|
|
31897
31906
|
export const shop = T['io.flow.internal.v0.models.shop'];
|
|
31898
31907
|
export const shopForm = T['io.flow.internal.v0.models.shop_form'];
|
|
31899
31908
|
export const shopVersion = T['io.flow.internal.v0.models.shop_version'];
|
|
31909
|
+
export const shopifyCatalogPublication = T['io.flow.internal.v0.models.shopify_catalog_publication'];
|
|
31900
31910
|
export const shopifyChannelOrganizationToken = T['io.flow.internal.v0.models.shopify_channel_organization_token'];
|
|
31901
31911
|
export const shopifyChannelOrganizationTokens = T['io.flow.internal.v0.models.shopify_channel_organization_tokens'];
|
|
31902
31912
|
export const shopifyCheckInventoryError = T['io.flow.internal.v0.models.shopify_check_inventory_error'];
|