@gofynd/fdk-client-javascript 3.10.0 → 3.12.0
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/README.md +1 -1
- package/package.json +1 -1
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +16 -6
- package/sdk/application/Catalog/CatalogApplicationClient.js +71 -12
- package/sdk/common/Constant.d.ts +5 -0
- package/sdk/common/Constant.js +5 -0
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +3 -2
- package/sdk/partner/Theme/ThemePartnerModel.js +5 -2
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +80 -80
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +48 -48
- package/sdk/platform/Cart/CartPlatformModel.d.ts +193 -35
- package/sdk/platform/Cart/CartPlatformModel.js +103 -46
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +14 -48
- package/sdk/platform/Catalog/CatalogPlatformClient.js +85 -338
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +210 -765
- package/sdk/platform/Catalog/CatalogPlatformModel.js +112 -394
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +15 -71
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +14 -60
- package/sdk/platform/Content/ContentPlatformModel.d.ts +3 -2
- package/sdk/platform/Content/ContentPlatformModel.js +5 -2
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +36 -0
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +252 -0
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +34 -1
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +42 -0
- package/sdk/platform/Order/OrderPlatformClient.d.ts +70 -8
- package/sdk/platform/Order/OrderPlatformClient.js +454 -8
- package/sdk/platform/Order/OrderPlatformModel.d.ts +1851 -431
- package/sdk/platform/Order/OrderPlatformModel.js +1171 -448
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +150 -16
- package/sdk/platform/Order/OrderPlatformValidator.js +105 -9
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +3 -2
- package/sdk/platform/Theme/ThemePlatformModel.js +5 -2
- package/sdk/platform/User/UserPlatformModel.d.ts +2 -2
- package/sdk/platform/User/UserPlatformModel.js +2 -2
- package/utility.d.ts +3 -0
- package/utility.js +7 -0
|
@@ -1754,51 +1754,6 @@ export = CatalogPlatformModel;
|
|
|
1754
1754
|
* @property {CompanyOptIn[]} items
|
|
1755
1755
|
* @property {Page} page
|
|
1756
1756
|
*/
|
|
1757
|
-
/**
|
|
1758
|
-
* @typedef GetProductBundleCreateResponseSchema
|
|
1759
|
-
* @property {string} choice - Specifies the type of bundle, e.g., single or multi.
|
|
1760
|
-
* @property {number} [company_id] - Unique identifier for the company that owns
|
|
1761
|
-
* the product bundle.
|
|
1762
|
-
* @property {CreatedBy} [created_by]
|
|
1763
|
-
* @property {string} [created_on] - Timestamp when the product bundle was created.
|
|
1764
|
-
* @property {string} [id] - Unique identifier for the product bundle.
|
|
1765
|
-
* @property {boolean} is_active - Indicates if the product bundle is active or not.
|
|
1766
|
-
* @property {string} [logo] - URL of the product bundle's logo, or null if not available.
|
|
1767
|
-
* @property {Object} [meta] - Additional metadata about the product bundle.
|
|
1768
|
-
* @property {ModifiedBy} [modified_by]
|
|
1769
|
-
* @property {string} [modified_on] - Timestamp when the product bundle was last modified.
|
|
1770
|
-
* @property {string} name - Name of the product bundle.
|
|
1771
|
-
* @property {string[]} [page_visibility] - Visibility settings for the product
|
|
1772
|
-
* bundle across different pages.
|
|
1773
|
-
* @property {ProductBundleItem[]} products - List of products that are part of
|
|
1774
|
-
* the product bundle.
|
|
1775
|
-
* @property {boolean} [same_store_assignment] - Indicates whether all products
|
|
1776
|
-
* in the bundle belong to the same store.
|
|
1777
|
-
* @property {string} slug - Unique slug used to identify the product bundle in URLs.
|
|
1778
|
-
*/
|
|
1779
|
-
/**
|
|
1780
|
-
* @typedef GetProductBundleListingResponseSchema
|
|
1781
|
-
* @property {GetProductBundleCreateResponseSchema[]} [items] - List of product
|
|
1782
|
-
* bundles that are returned in the response.
|
|
1783
|
-
* @property {Page} [page]
|
|
1784
|
-
*/
|
|
1785
|
-
/**
|
|
1786
|
-
* @typedef GetProductBundleResponseSchema
|
|
1787
|
-
* @property {string} [choice] - Specifies the type of product bundle, e.g.,
|
|
1788
|
-
* 'single' or 'multi'.
|
|
1789
|
-
* @property {number} [company_id] - The unique identifier of the company that
|
|
1790
|
-
* owns the product bundle.
|
|
1791
|
-
* @property {boolean} [is_active] - Indicates whether the product bundle is active.
|
|
1792
|
-
* @property {string} [logo] - URL of the logo associated with the product bundle.
|
|
1793
|
-
* @property {Object} [meta] - Additional metadata for the product bundle.
|
|
1794
|
-
* @property {string} [name] - The name of the product bundle.
|
|
1795
|
-
* @property {string[]} [page_visibility] - List of pages where the product
|
|
1796
|
-
* bundle is visible, e.g., 'pdp'.
|
|
1797
|
-
* @property {GetProducts[]} [products] - A list of products included in the bundle.
|
|
1798
|
-
* @property {boolean} [same_store_assignment] - Indicates whether all products
|
|
1799
|
-
* in the bundle are assigned to the same store.
|
|
1800
|
-
* @property {string} [slug] - Unique URL-friendly identifier for the product bundle.
|
|
1801
|
-
*/
|
|
1802
1757
|
/**
|
|
1803
1758
|
* @typedef GetProducts
|
|
1804
1759
|
* @property {boolean} [allow_remove] - Indicates whether the product can be
|
|
@@ -2645,6 +2600,13 @@ export = CatalogPlatformModel;
|
|
|
2645
2600
|
* @property {string} [url] - The URL where the media file is hosted, typically
|
|
2646
2601
|
* a link to an image or video resource.
|
|
2647
2602
|
*/
|
|
2603
|
+
/**
|
|
2604
|
+
* @typedef BundleDetails
|
|
2605
|
+
* @property {string} seller_identifier - Seller identifier of child sku.
|
|
2606
|
+
* @property {number} net_quantity - The net quantity of the product in the bundle.
|
|
2607
|
+
* @property {boolean} [is_base] - Indicates whether this product is the base
|
|
2608
|
+
* product in the bundle.
|
|
2609
|
+
*/
|
|
2648
2610
|
/**
|
|
2649
2611
|
* @typedef Meta
|
|
2650
2612
|
* @property {Object} [headers]
|
|
@@ -2976,132 +2938,13 @@ export = CatalogPlatformModel;
|
|
|
2976
2938
|
* @property {Object} [items]
|
|
2977
2939
|
* @property {Page} [page]
|
|
2978
2940
|
*/
|
|
2979
|
-
/**
|
|
2980
|
-
* @typedef ProductBundleItem
|
|
2981
|
-
* @property {boolean} [allow_remove] - Indicates whether the product can be
|
|
2982
|
-
* removed from the bundle.
|
|
2983
|
-
* @property {boolean} [auto_add_to_cart] - Specifies if the product is
|
|
2984
|
-
* automatically added to the cart.
|
|
2985
|
-
* @property {boolean} [auto_select] - Indicates if the product is automatically
|
|
2986
|
-
* selected in the bundle.
|
|
2987
|
-
* @property {number} max_quantity - Maximum quantity of the product that can be
|
|
2988
|
-
* added to the bundle.
|
|
2989
|
-
* @property {number} min_quantity - Minimum quantity of the product that must
|
|
2990
|
-
* be added to the bundle.
|
|
2991
|
-
* @property {number} product_uid - Unique identifier for the product.
|
|
2992
|
-
*/
|
|
2993
|
-
/**
|
|
2994
|
-
* @typedef ProductBundleRequestSchema
|
|
2995
|
-
* @property {string} choice - Specifies the type of product bundle (e.g.,
|
|
2996
|
-
* 'single' or 'multi').
|
|
2997
|
-
* @property {number} [company_id] - The unique identifier of the company to
|
|
2998
|
-
* which the product bundle belongs.
|
|
2999
|
-
* @property {Object} [created_by] - Information about the user who created the
|
|
3000
|
-
* product bundle, including user ID and username.
|
|
3001
|
-
* @property {string} [created_on] - The timestamp when the product bundle was created.
|
|
3002
|
-
* @property {boolean} is_active - Indicates whether the product bundle is
|
|
3003
|
-
* currently active.
|
|
3004
|
-
* @property {string} [logo] - URL of the logo associated with the product
|
|
3005
|
-
* bundle, if available. Can be null.
|
|
3006
|
-
* @property {Object} [meta] - Additional metadata for the product bundle.
|
|
3007
|
-
* @property {Object} [modified_by] - Information about the user who last
|
|
3008
|
-
* modified the product bundle, including user ID and username.
|
|
3009
|
-
* @property {string} [modified_on] - The timestamp when the product bundle was
|
|
3010
|
-
* last modified.
|
|
3011
|
-
* @property {string} name - The name of the product bundle.
|
|
3012
|
-
* @property {string[]} [page_visibility] - Pages where the product bundle is
|
|
3013
|
-
* visible (e.g., 'pdp' for product display page).
|
|
3014
|
-
* @property {ProductBundleItem[]} products - A list of products included in the
|
|
3015
|
-
* bundle. A maximum of 10 products can be added.
|
|
3016
|
-
* @property {boolean} [same_store_assignment] - Indicates whether all products
|
|
3017
|
-
* in the bundle are assigned to the same store.
|
|
3018
|
-
* @property {string} slug - A URL-friendly unique identifier for the product bundle.
|
|
3019
|
-
*/
|
|
3020
|
-
/**
|
|
3021
|
-
* @typedef ProductBundleUpdateRequestSchema
|
|
3022
|
-
* @property {string} choice - Specifies the type of product bundle (e.g.,
|
|
3023
|
-
* 'single' or 'multi').
|
|
3024
|
-
* @property {number} [company_id] - The unique identifier of the company to
|
|
3025
|
-
* which the product bundle belongs.
|
|
3026
|
-
* @property {boolean} is_active - Indicates whether the product bundle is
|
|
3027
|
-
* currently active.
|
|
3028
|
-
* @property {string} [logo] - URL of the logo associated with the product
|
|
3029
|
-
* bundle, if available. Can be null.
|
|
3030
|
-
* @property {Object} [meta] - Additional metadata for the product bundle.
|
|
3031
|
-
* @property {string} name - The name of the product bundle.
|
|
3032
|
-
* @property {string[]} [page_visibility] - Pages where the product bundle is
|
|
3033
|
-
* visible (e.g., 'pdp' for product display page).
|
|
3034
|
-
* @property {ProductBundleItem[]} products - A list of products included in the
|
|
3035
|
-
* bundle. A maximum of 10 products can be added.
|
|
3036
|
-
* @property {boolean} [same_store_assignment] - Indicates whether all products
|
|
3037
|
-
* in the bundle are assigned to the same store.
|
|
3038
|
-
* @property {string} slug - A URL-friendly unique identifier for the product bundle.
|
|
3039
|
-
*/
|
|
3040
2941
|
/**
|
|
3041
2942
|
* @typedef ProductConfigurationDownloads
|
|
3042
2943
|
* @property {Object[]} [data]
|
|
3043
2944
|
* @property {boolean} [multivalue]
|
|
3044
2945
|
*/
|
|
3045
2946
|
/**
|
|
3046
|
-
* @typedef
|
|
3047
|
-
* @property {Object} [_custom_json] - Custom JSON data that can be used for
|
|
3048
|
-
* additional product properties.
|
|
3049
|
-
* @property {string} [action] - The action to perform wrt to the product (e.g.,
|
|
3050
|
-
* upsert, update, delete).
|
|
3051
|
-
* @property {Object} [attributes] - Additional attributes related to the product.
|
|
3052
|
-
* @property {number} brand_uid - Unique identifier for the product's brand.
|
|
3053
|
-
* @property {string} [bulk_job_id] - Job ID associated with bulk operations.
|
|
3054
|
-
* @property {string} category_slug - The category to which the product belongs.
|
|
3055
|
-
* @property {string} [change_request_id] - Change request identifier for product updates.
|
|
3056
|
-
* @property {number} company_id - Unique identifier for the company associated
|
|
3057
|
-
* with the product.
|
|
3058
|
-
* @property {string} country_of_origin - The country where the product was
|
|
3059
|
-
* manufactured or sourced.
|
|
3060
|
-
* @property {string} currency - The currency in which the product's price is listed.
|
|
3061
|
-
* @property {CustomOrder} [custom_order]
|
|
3062
|
-
* @property {number[]} departments - List of department IDs associated with the product.
|
|
3063
|
-
* @property {string} [description] - A detailed description of the product.
|
|
3064
|
-
* @property {string[]} [highlights] - Product highlights or key features.
|
|
3065
|
-
* @property {boolean} [is_active] - Flag to indicate if the product is active.
|
|
3066
|
-
* @property {boolean} [is_dependent] - Flag to indicate if the product is
|
|
3067
|
-
* dependent on other products.
|
|
3068
|
-
* @property {boolean} [is_image_less_product] - Flag to indicate if the product
|
|
3069
|
-
* does not have associated images.
|
|
3070
|
-
* @property {boolean} [is_set] - Flag to indicate if the product is part of a set.
|
|
3071
|
-
* @property {string} item_code - Unique item code or SKU of the product.
|
|
3072
|
-
* @property {string} item_type - Type of the product (e.g., standard, set,
|
|
3073
|
-
* composite, digital).
|
|
3074
|
-
* @property {Media[]} [media] - List of media URLs (images, videos) associated
|
|
3075
|
-
* with the product.
|
|
3076
|
-
* @property {boolean} [multi_size] - Indicates if the product supports multiple sizes.
|
|
3077
|
-
* @property {string} name - The name of the product.
|
|
3078
|
-
* @property {NetQuantity} [net_quantity]
|
|
3079
|
-
* @property {number} [no_of_boxes] - Number of boxes required to package the product.
|
|
3080
|
-
* @property {string[]} [product_group_tag] - Tags to group products together
|
|
3081
|
-
* for classification.
|
|
3082
|
-
* @property {ProductPublish} [product_publish]
|
|
3083
|
-
* @property {string} [requester] - The role requesting the product operation
|
|
3084
|
-
* (admin or user).
|
|
3085
|
-
* @property {ReturnConfig} return_config
|
|
3086
|
-
* @property {string} [short_description] - A short description of the product,
|
|
3087
|
-
* up to 50 characters.
|
|
3088
|
-
* @property {string} [size_guide] - Identifier for the product's size guide.
|
|
3089
|
-
* @property {Object[]} sizes - List of sizes available for the product.
|
|
3090
|
-
* @property {string} slug - URL-friendly identifier for the product.
|
|
3091
|
-
* @property {string[]} [tags] - List of tags associated with the product.
|
|
3092
|
-
* @property {TaxIdentifier} tax_identifier
|
|
3093
|
-
* @property {string} [hs_code] - HS Code for the product.
|
|
3094
|
-
* @property {TeaserTag} [teaser_tag]
|
|
3095
|
-
* @property {string} template_tag - Template tag for the product, used for
|
|
3096
|
-
* classification.
|
|
3097
|
-
* @property {Trader[]} trader - List of traders associated with the product.
|
|
3098
|
-
* @property {number} [uid] - Unique identifier for the product.
|
|
3099
|
-
* @property {Object} [variant_group] - Variant group information for the product.
|
|
3100
|
-
* @property {Object} [variant_media] - Media related to product variants.
|
|
3101
|
-
* @property {Object} [variants] - Variants information for the product.
|
|
3102
|
-
*/
|
|
3103
|
-
/**
|
|
3104
|
-
* @typedef ProductCreateSchemaV2
|
|
2947
|
+
* @typedef ProductCreateSchemaV3
|
|
3105
2948
|
* @property {Object} [_custom_json] - Custom JSON data that can be used for
|
|
3106
2949
|
* additional product properties.
|
|
3107
2950
|
* @property {string} [action] - The action to perform wrt to the product (e.g.,
|
|
@@ -3127,8 +2970,11 @@ export = CatalogPlatformModel;
|
|
|
3127
2970
|
* does not have associated images.
|
|
3128
2971
|
* @property {boolean} [is_set] - Flag to indicate if the product is part of a set.
|
|
3129
2972
|
* @property {string} item_code - Unique item code or SKU of the product.
|
|
3130
|
-
* @property {string} item_type -
|
|
3131
|
-
* composite, digital
|
|
2973
|
+
* @property {string} item_type - Specifies the type of product, such as
|
|
2974
|
+
* standard, set, composite, digital, virtual_bundle, or physical_bundle. For
|
|
2975
|
+
* bundle types (virtual_bundle or physical_bundle), use the category,
|
|
2976
|
+
* department, and brand of the base child SKU. In this case, attributes are
|
|
2977
|
+
* optional. The bundle_details attribute must be included for bundle types.
|
|
3132
2978
|
* @property {Media[]} [media] - List of media URLs (images, videos) associated
|
|
3133
2979
|
* with the product.
|
|
3134
2980
|
* @property {boolean} [multi_size] - Indicates if the product supports multiple sizes.
|
|
@@ -3147,7 +2993,7 @@ export = CatalogPlatformModel;
|
|
|
3147
2993
|
* @property {Object[]} sizes - List of sizes available for the product.
|
|
3148
2994
|
* @property {string} slug - URL-friendly identifier for the product.
|
|
3149
2995
|
* @property {string[]} [tags] - List of tags associated with the product.
|
|
3150
|
-
* @property {
|
|
2996
|
+
* @property {TaxIdentifierV3} tax_identifier
|
|
3151
2997
|
* @property {TeaserTag} [teaser_tag]
|
|
3152
2998
|
* @property {string} template_tag - Template tag for the product, used for
|
|
3153
2999
|
* classification.
|
|
@@ -3155,9 +3001,13 @@ export = CatalogPlatformModel;
|
|
|
3155
3001
|
* @property {Object} [variant_group] - Variant group information for the product.
|
|
3156
3002
|
* @property {Object} [variant_media] - Media related to product variants.
|
|
3157
3003
|
* @property {Object} [variants] - Variants information for the product.
|
|
3004
|
+
* @property {string} [hs_code] - HS Code for the product. This is required for
|
|
3005
|
+
* indian companies.
|
|
3006
|
+
* @property {BundleDetails[]} [bundle_details] - List of bundle details for
|
|
3007
|
+
* products that are part of a bundle.
|
|
3158
3008
|
*/
|
|
3159
3009
|
/**
|
|
3160
|
-
* @typedef
|
|
3010
|
+
* @typedef ProductUpdateSchemaV3
|
|
3161
3011
|
* @property {Object} [_custom_json] - Custom JSON data that can be used for
|
|
3162
3012
|
* additional product properties.
|
|
3163
3013
|
* @property {string} [action] - The action to perform wrt to the product (e.g.,
|
|
@@ -3183,8 +3033,11 @@ export = CatalogPlatformModel;
|
|
|
3183
3033
|
* does not have associated images.
|
|
3184
3034
|
* @property {boolean} [is_set] - Flag to indicate if the product is part of a set.
|
|
3185
3035
|
* @property {string} item_code - Unique item code or SKU of the product.
|
|
3186
|
-
* @property {string} item_type -
|
|
3187
|
-
* composite, digital
|
|
3036
|
+
* @property {string} item_type - Specifies the type of product, such as
|
|
3037
|
+
* standard, set, composite, digital, virtual_bundle, or physical_bundle. For
|
|
3038
|
+
* bundle types (virtual_bundle or physical_bundle), use the category,
|
|
3039
|
+
* department, and brand of the base child SKU. In this case, attributes are
|
|
3040
|
+
* optional. The bundle_details attribute must be included for bundle types.
|
|
3188
3041
|
* @property {Media[]} [media] - List of media URLs (images, videos) associated
|
|
3189
3042
|
* with the product.
|
|
3190
3043
|
* @property {boolean} [multi_size] - Indicates if the product supports multiple sizes.
|
|
@@ -3204,75 +3057,76 @@ export = CatalogPlatformModel;
|
|
|
3204
3057
|
* @property {string} slug - URL-friendly identifier for the product.
|
|
3205
3058
|
* @property {string[]} [tags] - List of tags associated with the product.
|
|
3206
3059
|
* @property {TaxIdentifierV3} tax_identifier
|
|
3060
|
+
* @property {string} [hs_code] - HS Code for the product. This is required for
|
|
3061
|
+
* indian companies.
|
|
3207
3062
|
* @property {TeaserTag} [teaser_tag]
|
|
3208
3063
|
* @property {string} template_tag - Template tag for the product, used for
|
|
3209
3064
|
* classification.
|
|
3210
3065
|
* @property {Trader[]} trader - List of traders associated with the product.
|
|
3066
|
+
* @property {number} [uid] - Unique identifier for the product.
|
|
3211
3067
|
* @property {Object} [variant_group] - Variant group information for the product.
|
|
3212
3068
|
* @property {Object} [variant_media] - Media related to product variants.
|
|
3213
3069
|
* @property {Object} [variants] - Variants information for the product.
|
|
3214
|
-
* @property {
|
|
3215
|
-
*
|
|
3070
|
+
* @property {BundleDetails[]} [bundle_details] - List of bundle details for
|
|
3071
|
+
* products that are part of a bundle. This will have child skus along with
|
|
3072
|
+
* net quantity used in bundle formation.
|
|
3216
3073
|
*/
|
|
3217
3074
|
/**
|
|
3218
|
-
* @typedef
|
|
3075
|
+
* @typedef ProductPatchSchemaV3
|
|
3219
3076
|
* @property {Object} [_custom_json] - Custom JSON data that can be used for
|
|
3220
3077
|
* additional product properties.
|
|
3221
|
-
* @property {string} [action] - The action to perform wrt to the product (e.g.,
|
|
3222
|
-
* upsert, update, delete).
|
|
3223
3078
|
* @property {Object} [attributes] - Additional attributes related to the product.
|
|
3224
|
-
* @property {
|
|
3225
|
-
* @property {string} [bulk_job_id] - Job ID associated with bulk operations.
|
|
3226
|
-
* @property {string} category_slug - The category to which the product belongs.
|
|
3227
|
-
* @property {string} [change_request_id] - Change request identifier for product updates.
|
|
3228
|
-
* @property {number} company_id - Unique identifier for the company associated
|
|
3229
|
-
* with the product.
|
|
3230
|
-
* @property {string} country_of_origin - The country where the product was
|
|
3079
|
+
* @property {string} [country_of_origin] - The country where the product was
|
|
3231
3080
|
* manufactured or sourced.
|
|
3232
|
-
* @property {string} currency - The currency in which the product's price is listed.
|
|
3233
3081
|
* @property {CustomOrder} [custom_order]
|
|
3234
|
-
* @property {number[]} departments - List of department IDs associated with the product.
|
|
3235
3082
|
* @property {string} [description] - A detailed description of the product.
|
|
3083
|
+
* Provide base64 encoded value in input.
|
|
3236
3084
|
* @property {string[]} [highlights] - Product highlights or key features.
|
|
3237
3085
|
* @property {boolean} [is_active] - Flag to indicate if the product is active.
|
|
3238
3086
|
* @property {boolean} [is_dependent] - Flag to indicate if the product is
|
|
3239
3087
|
* dependent on other products.
|
|
3240
|
-
* @property {boolean} [is_image_less_product] - Flag to indicate if the product
|
|
3241
|
-
* does not have associated images.
|
|
3242
|
-
* @property {boolean} [is_set] - Flag to indicate if the product is part of a set.
|
|
3243
|
-
* @property {string} item_code - Unique item code or SKU of the product.
|
|
3244
|
-
* @property {string} item_type - Type of the product (e.g., standard, set,
|
|
3245
|
-
* composite, digital).
|
|
3246
3088
|
* @property {Media[]} [media] - List of media URLs (images, videos) associated
|
|
3247
3089
|
* with the product.
|
|
3248
3090
|
* @property {boolean} [multi_size] - Indicates if the product supports multiple sizes.
|
|
3249
|
-
* @property {string} name - The name of the product.
|
|
3091
|
+
* @property {string} [name] - The name of the product.
|
|
3250
3092
|
* @property {NetQuantity} [net_quantity]
|
|
3251
3093
|
* @property {number} [no_of_boxes] - Number of boxes required to package the product.
|
|
3252
3094
|
* @property {string[]} [product_group_tag] - Tags to group products together
|
|
3253
3095
|
* for classification.
|
|
3254
3096
|
* @property {ProductPublish} [product_publish]
|
|
3255
|
-
* @property {
|
|
3256
|
-
* (admin or user).
|
|
3257
|
-
* @property {ReturnConfig} return_config
|
|
3097
|
+
* @property {ReturnConfig} [return_config]
|
|
3258
3098
|
* @property {string} [short_description] - A short description of the product,
|
|
3259
3099
|
* up to 50 characters.
|
|
3260
3100
|
* @property {string} [size_guide] - Identifier for the product's size guide.
|
|
3261
|
-
* @property {
|
|
3262
|
-
* @property {string} slug - URL-friendly identifier for the product.
|
|
3101
|
+
* @property {ProductSizePatch[]} [sizes] - List of sizes available for the product.
|
|
3263
3102
|
* @property {string[]} [tags] - List of tags associated with the product.
|
|
3264
|
-
* @property {TaxIdentifierV3} tax_identifier
|
|
3103
|
+
* @property {TaxIdentifierV3} [tax_identifier]
|
|
3265
3104
|
* @property {string} [hs_code] - HS Code for the product. This is required for
|
|
3266
3105
|
* indian companies.
|
|
3267
3106
|
* @property {TeaserTag} [teaser_tag]
|
|
3268
|
-
* @property {string} template_tag - Template tag for the product, used for
|
|
3107
|
+
* @property {string} [template_tag] - Template tag for the product, used for
|
|
3269
3108
|
* classification.
|
|
3270
|
-
* @property {Trader[]} trader - List of traders associated with the product.
|
|
3271
|
-
* @property {number} [uid] - Unique identifier for the product.
|
|
3109
|
+
* @property {Trader[]} [trader] - List of traders associated with the product.
|
|
3272
3110
|
* @property {Object} [variant_group] - Variant group information for the product.
|
|
3273
3111
|
* @property {Object} [variant_media] - Media related to product variants.
|
|
3274
3112
|
* @property {Object} [variants] - Variants information for the product.
|
|
3275
3113
|
*/
|
|
3114
|
+
/**
|
|
3115
|
+
* @typedef ProductSizePatch
|
|
3116
|
+
* @property {number} [item_width] - Width of the item in the specified dimension unit.
|
|
3117
|
+
* @property {number} [item_height] - Height of the item in the specified dimension unit.
|
|
3118
|
+
* @property {number} [item_weight] - Weight of the item in the specified weight unit.
|
|
3119
|
+
* @property {number} [price] - Listed price of the product before discounts.
|
|
3120
|
+
* @property {boolean} [track_inventory] - Indicates whether inventory tracking
|
|
3121
|
+
* is enabled for this item.
|
|
3122
|
+
* @property {Object} [_custom_json] - Custom attributes or additional metadata
|
|
3123
|
+
* for the product.
|
|
3124
|
+
* @property {string} [seller_identifier] - Unique identifier assigned by the
|
|
3125
|
+
* seller for this product or size variant.
|
|
3126
|
+
* @property {number} [item_length] - Length of the item in the specified dimension unit.
|
|
3127
|
+
* @property {number} [price_effective] - Effective or discounted price after
|
|
3128
|
+
* applying promotions.
|
|
3129
|
+
*/
|
|
3276
3130
|
/**
|
|
3277
3131
|
* @typedef ProductDetail
|
|
3278
3132
|
* @property {Object} [attributes] - Key-value pairs representing various
|
|
@@ -3656,6 +3510,9 @@ export = CatalogPlatformModel;
|
|
|
3656
3510
|
* typically used in business transactions.
|
|
3657
3511
|
* @property {boolean} [track_inventory] - Indicates if inventory is being
|
|
3658
3512
|
* tracked for this size.
|
|
3513
|
+
* @property {BundleDetails[]} [bundle_details] - List of bundle details for
|
|
3514
|
+
* products that are part of a bundle. This will have child skus along with
|
|
3515
|
+
* net quantity used in bundle formation.
|
|
3659
3516
|
*/
|
|
3660
3517
|
/**
|
|
3661
3518
|
* @typedef ProductSchemaV2
|
|
@@ -3713,7 +3570,8 @@ export = CatalogPlatformModel;
|
|
|
3713
3570
|
* @property {string} [item_code] - Unique code used to identify the product,
|
|
3714
3571
|
* often used internally or by sellers.
|
|
3715
3572
|
* @property {string} [item_type] - Describes the type of product (e.g.,
|
|
3716
|
-
* "standard" or "set").
|
|
3573
|
+
* "standard" or "set"). In case of bundle items type will be
|
|
3574
|
+
* ("virtual_bundle" or "physical_bundle")
|
|
3717
3575
|
* @property {string[]} [l3_mapping] - Hierarchical mapping of the product to
|
|
3718
3576
|
* categories (e.g., "electronics>qled_television").
|
|
3719
3577
|
* @property {Media[]} [media] - Media assets associated with the product, such
|
|
@@ -4793,12 +4651,13 @@ export = CatalogPlatformModel;
|
|
|
4793
4651
|
* | "shipping-policy"
|
|
4794
4652
|
* | "return-policy"
|
|
4795
4653
|
* | "order-status"
|
|
4796
|
-
* | "locate-us"
|
|
4654
|
+
* | "locate-us"
|
|
4655
|
+
* | "single-page-checkout"} PageType
|
|
4797
4656
|
*/
|
|
4798
4657
|
declare class CatalogPlatformModel {
|
|
4799
4658
|
}
|
|
4800
4659
|
declare namespace CatalogPlatformModel {
|
|
4801
|
-
export { Action, ValidationErrors, AllSizes, AllowSingleRequestSchema, AppCatalogConfiguration, AppCategoryReturnConfig, AppCategoryReturnConfigResponseSchema, AppConfiguration, AppConfigurationDetail, AppConfigurationsSort, ApplicationBrandJson, ApplicationCategoryJson, ApplicationDepartment, ApplicationDepartmentJson, ApplicationDepartmentListingResponseSchema, ApplicationItemMOQ, Scores, ApplicationItemMeta, ApplicationItemSeoSitemap, ApplicationItemSEO, ApplicationProductsSchema, ApplicationProductListingResponseSchema, ApplicationStoreJson, AppReturnConfigResponseSchema, ArticleAssignment, ArticleAssignment1, ArticleQuery, ArticleStoreResponseSchema, AssignStore, AssignStoreArticle, AttributeDetailsGroup, AttributeMaster, AttributeMasterDetails, AttributeMasterFilter, AttributeMasterMandatoryDetails, AttributeMasterMeta, AttributeMasterSchema, AttributeSchemaRange, AutoCompleteMedia, AutocompleteAction, AutocompletePageAction, AutocompleteResult, BannerImage, BaseAppCategoryReturnConfig, BaseAppCategoryReturnConfigResponseSchema, Brand, BrandItem, BrandListingResponseSchema, ApplicationBrandListingItemSchema, ApplicationBrandListingSchema, ApplicationCategoryListingSchema, ApplicationCategoryListingItemSchema, BrandMeta, InventoryBrandMeta, BulkAssetResponseSchema, BulkHsnResponseSchema, BulkHsnUpsert, BulkInventoryGet, FailedRecord, BulkInventoryGetItems, BulkMeta, BulkProductJob, BulkJob, BulkProductRequestSchema, BulkResponseSchema, CatalogInsightBrand, CatalogInsightItem, CatalogInsightResponseSchema, CategoriesResponseSchema, Category, CategoryItems, CategoryListingResponseSchema, CategoryMapping, CategoryMappingValues, CategoryResponseSchema, Child, CollectionBadge, CollectionBanner, CollectionCreateResponseSchema, CollectionDetailResponseSchema, CollectionImage, CollectionItem, CollectionItemUpdate, CollectionListingFilter, CollectionListingFilterTag, CollectionListingFilterType, CollectionQuery, CollectionSchedule, CompanyBrandDetail, CompanyMeta, InventoryCompanyMeta, CompanyOptIn, ConfigErrorResponseSchema, ConfigSuccessResponseSchema, ConfigurationBucketPoints, ConfigurationListing, ConfigurationListingFilter, ConfigurationListingFilterConfig, ConfigurationListingFilterValue, ConfigurationListingSort, ConfigurationListingSortConfig, ConfigurationProduct, ConfigurationProductConfig, ConfigurationProductSimilar, ConfigurationProductVariant, ConfigurationProductVariantConfig, CreateAutocompleteKeyword, CreateAutocompleteWordsResponseSchema, CreateCollection, CreateSearchConfigurationRequestSchema, CreateSearchConfigurationResponseSchema, CreateSearchKeyword, CreateUpdateAppReturnConfig, CrossSellingData, CrossSellingResponseSchema, CustomOrder, DateMeta, DefaultKeyRequestSchema, DeleteAppCategoryReturnConfig, DeleteResponseSchema, DeleteSearchConfigurationResponseSchema, Department, DepartmentCategoryTree, DepartmentErrorResponseSchema, DepartmentIdentifier, DepartmentResponseSchema, DepartmentsResponseSchema, DimensionResponseSchema, InventoryDimensionResponseSchema, Document, EntityConfiguration, ErrorResponseSchema, FilerList, RawProduct, RawProductListingResponseSchema, GTIN, AttributeDetail, LatLong, ApplicationLocationAddressSchema, GetAddressSchema, GetAllSizes, GetAppCatalogConfiguration, GetAppCatalogEntityConfiguration, GetAutocompleteWordsData, GetAutocompleteWordsResponseSchema, GetCatalogConfigurationDetailsProduct, GetCatalogConfigurationDetailsSchemaListing, GetCatalogConfigurationMetaData, GetCollectionDetailNest, GetCollectionItemsResponseSchema, GetCollectionListingResponseSchema, GetCollectionQueryOptionResponseSchema, GetCompanySchema, ConditionItem, DataItem, ValueTypeItem, SortTypeItem, GetConfigMetadataResponseSchema, GetConfigMetadataValues, GetConfigResponseSchema, ConfigItem, AttributeConfig, GetDepartment, GetInventories, GetInventoriesResponseSchema, GetLocationSchema, GetOptInPlatform, GetProductBundleCreateResponseSchema, GetProductBundleListingResponseSchema, GetProductBundleResponseSchema, GetProducts, ProductDetails, GetCollectionDetailResponseSchema, CommonResponseSchemaCollection, GetQueryFiltersKeysResponseSchema, GetQueryFiltersResponseSchema, GetCollectionItemsResponseSchemaV2, Page1, CollectionItemSchemaV2, CollectionItemUpdateSchema, CollectionQuerySchemaV2, ProductDetailV2, GetSearchConfigurationResponseSchema, GetSearchWordsData, GetSearchWordsDetailResponseSchema, GetSearchWordsResponseSchema, GlobalValidation, Guide, HSNCodesResponseSchema, HSNData, CreatedBySchema, ModifiedBySchema, HSNDataInsertV2, Hierarchy, HsnCode, HsnCodesListingResponseSchemaV2, HsnCodesObject, HsnUpsert, Image, ImageUrls, InvSize, InventoryBulkRequestSchema, InventoryConfig, InventoryCreateRequestSchema, InventoryExportAdvanceOption, InventoryExportFilter, InventoryExportJob, InventoryExportJobListResponseSchema, InventoryExportQuantityFilter, InventoryExportRequestSchema, InventoryExportResponseSchema, InventoryFailedReason, InventoryJobDetailResponseSchema, InventoryJobFilters, InventoryJobPayload, InventoryPage, AddInventoryRequestPayload, InventoryPayload, InventoryRequestSchema, InventoryRequestSchemaV2, InventoryResponseSchema, InventoryResponseItem, InventoryResponsePaginated, InventorySellerIdentifierResponsePaginated, ApplicationInventorySellerIdentifierResponsePaginated, InventorySellerResponseSchema, ApplicationInventorySellerResponseSchema, InventorySet, InventoryStockResponseSchema, InventoryUpdateResponseSchema, InventoryValidationResponseSchema, InvoiceCredSchema, InvoiceDetailsSchema, ItemQuery, Items, LimitedProductData, SizeGuideItem, ListSizeGuide, LocationDayWiseSchema, LocationIntegrationType, LocationListSchema, LocationManagerSchema, LocationTimingSchema, Logo, MOQData, ManufacturerResponseSchema, InventoryManufacturerResponseSchema, Media, Media1, DepartmentMedia, BrandMedia, Meta, MetaDataListingFilterMetaResponseSchema, MetaDataListingFilterResponseSchema, MetaDataListingResponseSchema, MetaDataListingSortMetaResponseSchema, MetaDataListingSortResponseSchema, MetaFields, NetQuantity, NetQuantityResponseSchema, NextSchedule, LocationPriceRequestSchema, LocationQuantityRequestSchema, LocationPriceQuantitySuccessResponseSchema, OptInPostRequestSchema, OptinCompanyBrandDetailsView, OptinCompanyDetail, OptinCompanyMetrics, OptinStoreDetails, OwnerAppItemResponseSchema, PTErrorResponseSchema, Page, PageResponseSchema, PageResponseType, Price, ProductListingDetailPrice, PriceArticle, PriceMeta, ProdcutTemplateCategoriesResponseSchema, Product, ProductAttributesResponseSchema, ProductBrand, ProductBulkAssets, ProductBulkRequestSchema, ProductBulkRequestList, ProductBundleItem, ProductBundleRequestSchema, ProductBundleUpdateRequestSchema, ProductConfigurationDownloads, ProductUpdateSchemaV2, ProductCreateSchemaV2, ProductCreateSchemaV3, ProductUpdateSchemaV3, ProductDetail, ProductDetailAttribute, ProductDetailGroupedAttribute, ProductDownloadsResponseSchema, CollectionProductFilters, ProductFilters, GetQueryFiltersValuesResponseSchema, ProductFiltersKeysOnly, ProductFiltersKey, ProductQueryFiltersValue, CollectionProductFiltersValue, ProductFiltersValue, CollectionProductListingDetail, ProductCategory, ApplicationCategoryAction, ApplicationCategoryItem, ApplicationProductMedia, ApplicationProductCategoryItem, CategoryPageAction, CategoryQuery, CategoryImage, ProductListingDetail, ActionObject, PageAction, ProductListingPrice, ProductListingResponseSchema, ProductListingResponseV2, ProductPublish, ProductPublished, ProductReturnConfigSchema, ProductReturnConfigBaseSchema, Identifier, SizeDetails, ProductSchemaV2, ProductSize, ProductSizeDeleteDataResponseSchema, ProductSizeDeleteResponseSchema, CollectionProductSortOn, ProductSortOn, ProductTagsViewResponseSchema, CreatedBy, ModifiedBy, ProductTemplate, ProductTemplateDownloadsExport, ProductTemplateExportFilterRequestSchema, ProductTemplateExportResponseSchema, ProductVariants, ProductVariantsResponseSchema, Properties, Quantities, QuantitiesArticle, Quantity, QuantityBase, ReturnConfig, InventoryReturnConfig, ReturnConfig2, ReturnConfigResponseSchema, Sitemap, PageQuery, ApplicationCollectionItemSeoPage, ApplicationCollectionItemSeoAction, ApplicationItemSeoAction, ApplicationItemSeoBreadcrumbs, ApplicationCollectionItemSeoBreadcrumbs, ApplicationItemSeoMetaTagItem, ApplicationItemSeoMetaTags, Metatags, SizePromotionThreshold, SEOData, SearchKeywordResult, SearchableAttribute, SecondLevelChild, SellerPhoneNumber, CollectionSeoDetail, SeoDetail, SetSize, SingleCategoryResponseSchema, SingleProductResponseSchema, Size, SizeDistribution, SizeGuideResponseSchema, StoreAssignResponseSchema, StoreDetail, StoreMeta, SuccessResponseSchema, SuccessResponseObject, TaxIdentifier, TaxIdentifierV3, TaxSlab, TeaserTag, TemplateDetails, TemplateGlobalValidationData, TemplateValidationData, TemplatesResponseSchema, TemplatesGlobalValidationResponseSchema, TemplatesValidationResponseSchema, ThirdLevelChild, Trader, Trader1, TraderResponseSchema, UpdateCollection, UpdateSearchConfigurationRequestSchema, UpdateSearchConfigurationResponseSchema, CreateMarketplaceOptinResponseSchema, UserCommon, UserDetail, UserDetail1, UserInfo, UserSchema, RequestUserSchema, ValidateIdentifier, ValidateProduct, ValidateSizeGuide, VerifiedBy, WeightResponseSchema, InventoryWeightResponseSchema, BulkInventoryJob, Marketplaces, GetAllMarketplaces, UpdateMarketplaceOptinRequestSchema, UpdateMarketplaceOptinResponseSchema, Filters, FollowedProducts, FollowProduct, TaxReqBodyRule, TaxThreshold, TaxComponent, TaxComponentResponseSchema, TaxComponentName, CreateTaxComponentNameRequestSchema, TaxReqBodyVersion, CreateTaxRequestBody, TaxVersion, UpdateTaxVersionRequestBody, CreateTaxVersionRequestBody, TaxRule, TaxVersionDetail, CreateTax, UpdateTaxVersion, UpdateTaxRequestBody, TaxRuleItem, TaxRules, TaxVersionPastData, TaxRuleVersion, HSCodeItem, HSCodes, GetTaxComponents, ActionPage, ValidationError, Price1, MultiCategoriesSchema, NetQuantitySchema, CustomMeta, TaxStatusEnum, HsTypeEnum, PageType };
|
|
4660
|
+
export { Action, ValidationErrors, AllSizes, AllowSingleRequestSchema, AppCatalogConfiguration, AppCategoryReturnConfig, AppCategoryReturnConfigResponseSchema, AppConfiguration, AppConfigurationDetail, AppConfigurationsSort, ApplicationBrandJson, ApplicationCategoryJson, ApplicationDepartment, ApplicationDepartmentJson, ApplicationDepartmentListingResponseSchema, ApplicationItemMOQ, Scores, ApplicationItemMeta, ApplicationItemSeoSitemap, ApplicationItemSEO, ApplicationProductsSchema, ApplicationProductListingResponseSchema, ApplicationStoreJson, AppReturnConfigResponseSchema, ArticleAssignment, ArticleAssignment1, ArticleQuery, ArticleStoreResponseSchema, AssignStore, AssignStoreArticle, AttributeDetailsGroup, AttributeMaster, AttributeMasterDetails, AttributeMasterFilter, AttributeMasterMandatoryDetails, AttributeMasterMeta, AttributeMasterSchema, AttributeSchemaRange, AutoCompleteMedia, AutocompleteAction, AutocompletePageAction, AutocompleteResult, BannerImage, BaseAppCategoryReturnConfig, BaseAppCategoryReturnConfigResponseSchema, Brand, BrandItem, BrandListingResponseSchema, ApplicationBrandListingItemSchema, ApplicationBrandListingSchema, ApplicationCategoryListingSchema, ApplicationCategoryListingItemSchema, BrandMeta, InventoryBrandMeta, BulkAssetResponseSchema, BulkHsnResponseSchema, BulkHsnUpsert, BulkInventoryGet, FailedRecord, BulkInventoryGetItems, BulkMeta, BulkProductJob, BulkJob, BulkProductRequestSchema, BulkResponseSchema, CatalogInsightBrand, CatalogInsightItem, CatalogInsightResponseSchema, CategoriesResponseSchema, Category, CategoryItems, CategoryListingResponseSchema, CategoryMapping, CategoryMappingValues, CategoryResponseSchema, Child, CollectionBadge, CollectionBanner, CollectionCreateResponseSchema, CollectionDetailResponseSchema, CollectionImage, CollectionItem, CollectionItemUpdate, CollectionListingFilter, CollectionListingFilterTag, CollectionListingFilterType, CollectionQuery, CollectionSchedule, CompanyBrandDetail, CompanyMeta, InventoryCompanyMeta, CompanyOptIn, ConfigErrorResponseSchema, ConfigSuccessResponseSchema, ConfigurationBucketPoints, ConfigurationListing, ConfigurationListingFilter, ConfigurationListingFilterConfig, ConfigurationListingFilterValue, ConfigurationListingSort, ConfigurationListingSortConfig, ConfigurationProduct, ConfigurationProductConfig, ConfigurationProductSimilar, ConfigurationProductVariant, ConfigurationProductVariantConfig, CreateAutocompleteKeyword, CreateAutocompleteWordsResponseSchema, CreateCollection, CreateSearchConfigurationRequestSchema, CreateSearchConfigurationResponseSchema, CreateSearchKeyword, CreateUpdateAppReturnConfig, CrossSellingData, CrossSellingResponseSchema, CustomOrder, DateMeta, DefaultKeyRequestSchema, DeleteAppCategoryReturnConfig, DeleteResponseSchema, DeleteSearchConfigurationResponseSchema, Department, DepartmentCategoryTree, DepartmentErrorResponseSchema, DepartmentIdentifier, DepartmentResponseSchema, DepartmentsResponseSchema, DimensionResponseSchema, InventoryDimensionResponseSchema, Document, EntityConfiguration, ErrorResponseSchema, FilerList, RawProduct, RawProductListingResponseSchema, GTIN, AttributeDetail, LatLong, ApplicationLocationAddressSchema, GetAddressSchema, GetAllSizes, GetAppCatalogConfiguration, GetAppCatalogEntityConfiguration, GetAutocompleteWordsData, GetAutocompleteWordsResponseSchema, GetCatalogConfigurationDetailsProduct, GetCatalogConfigurationDetailsSchemaListing, GetCatalogConfigurationMetaData, GetCollectionDetailNest, GetCollectionItemsResponseSchema, GetCollectionListingResponseSchema, GetCollectionQueryOptionResponseSchema, GetCompanySchema, ConditionItem, DataItem, ValueTypeItem, SortTypeItem, GetConfigMetadataResponseSchema, GetConfigMetadataValues, GetConfigResponseSchema, ConfigItem, AttributeConfig, GetDepartment, GetInventories, GetInventoriesResponseSchema, GetLocationSchema, GetOptInPlatform, GetProducts, ProductDetails, GetCollectionDetailResponseSchema, CommonResponseSchemaCollection, GetQueryFiltersKeysResponseSchema, GetQueryFiltersResponseSchema, GetCollectionItemsResponseSchemaV2, Page1, CollectionItemSchemaV2, CollectionItemUpdateSchema, CollectionQuerySchemaV2, ProductDetailV2, GetSearchConfigurationResponseSchema, GetSearchWordsData, GetSearchWordsDetailResponseSchema, GetSearchWordsResponseSchema, GlobalValidation, Guide, HSNCodesResponseSchema, HSNData, CreatedBySchema, ModifiedBySchema, HSNDataInsertV2, Hierarchy, HsnCode, HsnCodesListingResponseSchemaV2, HsnCodesObject, HsnUpsert, Image, ImageUrls, InvSize, InventoryBulkRequestSchema, InventoryConfig, InventoryCreateRequestSchema, InventoryExportAdvanceOption, InventoryExportFilter, InventoryExportJob, InventoryExportJobListResponseSchema, InventoryExportQuantityFilter, InventoryExportRequestSchema, InventoryExportResponseSchema, InventoryFailedReason, InventoryJobDetailResponseSchema, InventoryJobFilters, InventoryJobPayload, InventoryPage, AddInventoryRequestPayload, InventoryPayload, InventoryRequestSchema, InventoryRequestSchemaV2, InventoryResponseSchema, InventoryResponseItem, InventoryResponsePaginated, InventorySellerIdentifierResponsePaginated, ApplicationInventorySellerIdentifierResponsePaginated, InventorySellerResponseSchema, ApplicationInventorySellerResponseSchema, InventorySet, InventoryStockResponseSchema, InventoryUpdateResponseSchema, InventoryValidationResponseSchema, InvoiceCredSchema, InvoiceDetailsSchema, ItemQuery, Items, LimitedProductData, SizeGuideItem, ListSizeGuide, LocationDayWiseSchema, LocationIntegrationType, LocationListSchema, LocationManagerSchema, LocationTimingSchema, Logo, MOQData, ManufacturerResponseSchema, InventoryManufacturerResponseSchema, Media, Media1, DepartmentMedia, BrandMedia, BundleDetails, Meta, MetaDataListingFilterMetaResponseSchema, MetaDataListingFilterResponseSchema, MetaDataListingResponseSchema, MetaDataListingSortMetaResponseSchema, MetaDataListingSortResponseSchema, MetaFields, NetQuantity, NetQuantityResponseSchema, NextSchedule, LocationPriceRequestSchema, LocationQuantityRequestSchema, LocationPriceQuantitySuccessResponseSchema, OptInPostRequestSchema, OptinCompanyBrandDetailsView, OptinCompanyDetail, OptinCompanyMetrics, OptinStoreDetails, OwnerAppItemResponseSchema, PTErrorResponseSchema, Page, PageResponseSchema, PageResponseType, Price, ProductListingDetailPrice, PriceArticle, PriceMeta, ProdcutTemplateCategoriesResponseSchema, Product, ProductAttributesResponseSchema, ProductBrand, ProductBulkAssets, ProductBulkRequestSchema, ProductBulkRequestList, ProductConfigurationDownloads, ProductCreateSchemaV3, ProductUpdateSchemaV3, ProductPatchSchemaV3, ProductSizePatch, ProductDetail, ProductDetailAttribute, ProductDetailGroupedAttribute, ProductDownloadsResponseSchema, CollectionProductFilters, ProductFilters, GetQueryFiltersValuesResponseSchema, ProductFiltersKeysOnly, ProductFiltersKey, ProductQueryFiltersValue, CollectionProductFiltersValue, ProductFiltersValue, CollectionProductListingDetail, ProductCategory, ApplicationCategoryAction, ApplicationCategoryItem, ApplicationProductMedia, ApplicationProductCategoryItem, CategoryPageAction, CategoryQuery, CategoryImage, ProductListingDetail, ActionObject, PageAction, ProductListingPrice, ProductListingResponseSchema, ProductListingResponseV2, ProductPublish, ProductPublished, ProductReturnConfigSchema, ProductReturnConfigBaseSchema, Identifier, SizeDetails, ProductSchemaV2, ProductSize, ProductSizeDeleteDataResponseSchema, ProductSizeDeleteResponseSchema, CollectionProductSortOn, ProductSortOn, ProductTagsViewResponseSchema, CreatedBy, ModifiedBy, ProductTemplate, ProductTemplateDownloadsExport, ProductTemplateExportFilterRequestSchema, ProductTemplateExportResponseSchema, ProductVariants, ProductVariantsResponseSchema, Properties, Quantities, QuantitiesArticle, Quantity, QuantityBase, ReturnConfig, InventoryReturnConfig, ReturnConfig2, ReturnConfigResponseSchema, Sitemap, PageQuery, ApplicationCollectionItemSeoPage, ApplicationCollectionItemSeoAction, ApplicationItemSeoAction, ApplicationItemSeoBreadcrumbs, ApplicationCollectionItemSeoBreadcrumbs, ApplicationItemSeoMetaTagItem, ApplicationItemSeoMetaTags, Metatags, SizePromotionThreshold, SEOData, SearchKeywordResult, SearchableAttribute, SecondLevelChild, SellerPhoneNumber, CollectionSeoDetail, SeoDetail, SetSize, SingleCategoryResponseSchema, SingleProductResponseSchema, Size, SizeDistribution, SizeGuideResponseSchema, StoreAssignResponseSchema, StoreDetail, StoreMeta, SuccessResponseSchema, SuccessResponseObject, TaxIdentifier, TaxIdentifierV3, TaxSlab, TeaserTag, TemplateDetails, TemplateGlobalValidationData, TemplateValidationData, TemplatesResponseSchema, TemplatesGlobalValidationResponseSchema, TemplatesValidationResponseSchema, ThirdLevelChild, Trader, Trader1, TraderResponseSchema, UpdateCollection, UpdateSearchConfigurationRequestSchema, UpdateSearchConfigurationResponseSchema, CreateMarketplaceOptinResponseSchema, UserCommon, UserDetail, UserDetail1, UserInfo, UserSchema, RequestUserSchema, ValidateIdentifier, ValidateProduct, ValidateSizeGuide, VerifiedBy, WeightResponseSchema, InventoryWeightResponseSchema, BulkInventoryJob, Marketplaces, GetAllMarketplaces, UpdateMarketplaceOptinRequestSchema, UpdateMarketplaceOptinResponseSchema, Filters, FollowedProducts, FollowProduct, TaxReqBodyRule, TaxThreshold, TaxComponent, TaxComponentResponseSchema, TaxComponentName, CreateTaxComponentNameRequestSchema, TaxReqBodyVersion, CreateTaxRequestBody, TaxVersion, UpdateTaxVersionRequestBody, CreateTaxVersionRequestBody, TaxRule, TaxVersionDetail, CreateTax, UpdateTaxVersion, UpdateTaxRequestBody, TaxRuleItem, TaxRules, TaxVersionPastData, TaxRuleVersion, HSCodeItem, HSCodes, GetTaxComponents, ActionPage, ValidationError, Price1, MultiCategoriesSchema, NetQuantitySchema, CustomMeta, TaxStatusEnum, HsTypeEnum, PageType };
|
|
4802
4661
|
}
|
|
4803
4662
|
/** @returns {Action} */
|
|
4804
4663
|
declare function Action(): Action;
|
|
@@ -8390,126 +8249,6 @@ type GetOptInPlatform = {
|
|
|
8390
8249
|
items: CompanyOptIn[];
|
|
8391
8250
|
page: Page;
|
|
8392
8251
|
};
|
|
8393
|
-
/** @returns {GetProductBundleCreateResponseSchema} */
|
|
8394
|
-
declare function GetProductBundleCreateResponseSchema(): GetProductBundleCreateResponseSchema;
|
|
8395
|
-
type GetProductBundleCreateResponseSchema = {
|
|
8396
|
-
/**
|
|
8397
|
-
* - Specifies the type of bundle, e.g., single or multi.
|
|
8398
|
-
*/
|
|
8399
|
-
choice: string;
|
|
8400
|
-
/**
|
|
8401
|
-
* - Unique identifier for the company that owns
|
|
8402
|
-
* the product bundle.
|
|
8403
|
-
*/
|
|
8404
|
-
company_id?: number;
|
|
8405
|
-
created_by?: CreatedBy;
|
|
8406
|
-
/**
|
|
8407
|
-
* - Timestamp when the product bundle was created.
|
|
8408
|
-
*/
|
|
8409
|
-
created_on?: string;
|
|
8410
|
-
/**
|
|
8411
|
-
* - Unique identifier for the product bundle.
|
|
8412
|
-
*/
|
|
8413
|
-
id?: string;
|
|
8414
|
-
/**
|
|
8415
|
-
* - Indicates if the product bundle is active or not.
|
|
8416
|
-
*/
|
|
8417
|
-
is_active: boolean;
|
|
8418
|
-
/**
|
|
8419
|
-
* - URL of the product bundle's logo, or null if not available.
|
|
8420
|
-
*/
|
|
8421
|
-
logo?: string;
|
|
8422
|
-
/**
|
|
8423
|
-
* - Additional metadata about the product bundle.
|
|
8424
|
-
*/
|
|
8425
|
-
meta?: any;
|
|
8426
|
-
modified_by?: ModifiedBy;
|
|
8427
|
-
/**
|
|
8428
|
-
* - Timestamp when the product bundle was last modified.
|
|
8429
|
-
*/
|
|
8430
|
-
modified_on?: string;
|
|
8431
|
-
/**
|
|
8432
|
-
* - Name of the product bundle.
|
|
8433
|
-
*/
|
|
8434
|
-
name: string;
|
|
8435
|
-
/**
|
|
8436
|
-
* - Visibility settings for the product
|
|
8437
|
-
* bundle across different pages.
|
|
8438
|
-
*/
|
|
8439
|
-
page_visibility?: string[];
|
|
8440
|
-
/**
|
|
8441
|
-
* - List of products that are part of
|
|
8442
|
-
* the product bundle.
|
|
8443
|
-
*/
|
|
8444
|
-
products: ProductBundleItem[];
|
|
8445
|
-
/**
|
|
8446
|
-
* - Indicates whether all products
|
|
8447
|
-
* in the bundle belong to the same store.
|
|
8448
|
-
*/
|
|
8449
|
-
same_store_assignment?: boolean;
|
|
8450
|
-
/**
|
|
8451
|
-
* - Unique slug used to identify the product bundle in URLs.
|
|
8452
|
-
*/
|
|
8453
|
-
slug: string;
|
|
8454
|
-
};
|
|
8455
|
-
/** @returns {GetProductBundleListingResponseSchema} */
|
|
8456
|
-
declare function GetProductBundleListingResponseSchema(): GetProductBundleListingResponseSchema;
|
|
8457
|
-
type GetProductBundleListingResponseSchema = {
|
|
8458
|
-
/**
|
|
8459
|
-
* - List of product
|
|
8460
|
-
* bundles that are returned in the response.
|
|
8461
|
-
*/
|
|
8462
|
-
items?: GetProductBundleCreateResponseSchema[];
|
|
8463
|
-
page?: Page;
|
|
8464
|
-
};
|
|
8465
|
-
/** @returns {GetProductBundleResponseSchema} */
|
|
8466
|
-
declare function GetProductBundleResponseSchema(): GetProductBundleResponseSchema;
|
|
8467
|
-
type GetProductBundleResponseSchema = {
|
|
8468
|
-
/**
|
|
8469
|
-
* - Specifies the type of product bundle, e.g.,
|
|
8470
|
-
* 'single' or 'multi'.
|
|
8471
|
-
*/
|
|
8472
|
-
choice?: string;
|
|
8473
|
-
/**
|
|
8474
|
-
* - The unique identifier of the company that
|
|
8475
|
-
* owns the product bundle.
|
|
8476
|
-
*/
|
|
8477
|
-
company_id?: number;
|
|
8478
|
-
/**
|
|
8479
|
-
* - Indicates whether the product bundle is active.
|
|
8480
|
-
*/
|
|
8481
|
-
is_active?: boolean;
|
|
8482
|
-
/**
|
|
8483
|
-
* - URL of the logo associated with the product bundle.
|
|
8484
|
-
*/
|
|
8485
|
-
logo?: string;
|
|
8486
|
-
/**
|
|
8487
|
-
* - Additional metadata for the product bundle.
|
|
8488
|
-
*/
|
|
8489
|
-
meta?: any;
|
|
8490
|
-
/**
|
|
8491
|
-
* - The name of the product bundle.
|
|
8492
|
-
*/
|
|
8493
|
-
name?: string;
|
|
8494
|
-
/**
|
|
8495
|
-
* - List of pages where the product
|
|
8496
|
-
* bundle is visible, e.g., 'pdp'.
|
|
8497
|
-
*/
|
|
8498
|
-
page_visibility?: string[];
|
|
8499
|
-
/**
|
|
8500
|
-
* - A list of products included in the bundle.
|
|
8501
|
-
*/
|
|
8502
|
-
products?: GetProducts[];
|
|
8503
|
-
/**
|
|
8504
|
-
* - Indicates whether all products
|
|
8505
|
-
* in the bundle are assigned to the same store.
|
|
8506
|
-
*/
|
|
8507
|
-
same_store_assignment?: boolean;
|
|
8508
|
-
/**
|
|
8509
|
-
* - Unique URL-friendly identifier for the product bundle.
|
|
8510
|
-
*/
|
|
8511
|
-
slug?: string;
|
|
8512
|
-
};
|
|
8513
8252
|
/** @returns {GetProducts} */
|
|
8514
8253
|
declare function GetProducts(): GetProducts;
|
|
8515
8254
|
type GetProducts = {
|
|
@@ -10436,6 +10175,23 @@ type BrandMedia = {
|
|
|
10436
10175
|
*/
|
|
10437
10176
|
url?: string;
|
|
10438
10177
|
};
|
|
10178
|
+
/** @returns {BundleDetails} */
|
|
10179
|
+
declare function BundleDetails(): BundleDetails;
|
|
10180
|
+
type BundleDetails = {
|
|
10181
|
+
/**
|
|
10182
|
+
* - Seller identifier of child sku.
|
|
10183
|
+
*/
|
|
10184
|
+
seller_identifier: string;
|
|
10185
|
+
/**
|
|
10186
|
+
* - The net quantity of the product in the bundle.
|
|
10187
|
+
*/
|
|
10188
|
+
net_quantity: number;
|
|
10189
|
+
/**
|
|
10190
|
+
* - Indicates whether this product is the base
|
|
10191
|
+
* product in the bundle.
|
|
10192
|
+
*/
|
|
10193
|
+
is_base?: boolean;
|
|
10194
|
+
};
|
|
10439
10195
|
/** @returns {Meta} */
|
|
10440
10196
|
declare function Meta(): Meta;
|
|
10441
10197
|
type Meta = {
|
|
@@ -11104,226 +10860,72 @@ type ProductBulkRequestList = {
|
|
|
11104
10860
|
items?: any;
|
|
11105
10861
|
page?: Page;
|
|
11106
10862
|
};
|
|
11107
|
-
/** @returns {
|
|
11108
|
-
declare function
|
|
11109
|
-
type
|
|
10863
|
+
/** @returns {ProductConfigurationDownloads} */
|
|
10864
|
+
declare function ProductConfigurationDownloads(): ProductConfigurationDownloads;
|
|
10865
|
+
type ProductConfigurationDownloads = {
|
|
10866
|
+
data?: any[];
|
|
10867
|
+
multivalue?: boolean;
|
|
10868
|
+
};
|
|
10869
|
+
/** @returns {ProductCreateSchemaV3} */
|
|
10870
|
+
declare function ProductCreateSchemaV3(): ProductCreateSchemaV3;
|
|
10871
|
+
type ProductCreateSchemaV3 = {
|
|
11110
10872
|
/**
|
|
11111
|
-
* -
|
|
11112
|
-
*
|
|
10873
|
+
* - Custom JSON data that can be used for
|
|
10874
|
+
* additional product properties.
|
|
11113
10875
|
*/
|
|
11114
|
-
|
|
10876
|
+
_custom_json?: any;
|
|
11115
10877
|
/**
|
|
11116
|
-
* -
|
|
11117
|
-
*
|
|
10878
|
+
* - The action to perform wrt to the product (e.g.,
|
|
10879
|
+
* upsert, update, delete).
|
|
11118
10880
|
*/
|
|
11119
|
-
|
|
10881
|
+
action?: string;
|
|
11120
10882
|
/**
|
|
11121
|
-
* -
|
|
11122
|
-
* selected in the bundle.
|
|
10883
|
+
* - Additional attributes related to the product.
|
|
11123
10884
|
*/
|
|
11124
|
-
|
|
10885
|
+
attributes?: any;
|
|
11125
10886
|
/**
|
|
11126
|
-
* -
|
|
11127
|
-
* added to the bundle.
|
|
10887
|
+
* - Unique identifier for the product's brand.
|
|
11128
10888
|
*/
|
|
11129
|
-
|
|
10889
|
+
brand_uid: number;
|
|
11130
10890
|
/**
|
|
11131
|
-
* -
|
|
11132
|
-
* be added to the bundle.
|
|
10891
|
+
* - Job ID associated with bulk operations.
|
|
11133
10892
|
*/
|
|
11134
|
-
|
|
10893
|
+
bulk_job_id?: string;
|
|
11135
10894
|
/**
|
|
11136
|
-
* -
|
|
10895
|
+
* - The category to which the product belongs.
|
|
11137
10896
|
*/
|
|
11138
|
-
|
|
11139
|
-
};
|
|
11140
|
-
/** @returns {ProductBundleRequestSchema} */
|
|
11141
|
-
declare function ProductBundleRequestSchema(): ProductBundleRequestSchema;
|
|
11142
|
-
type ProductBundleRequestSchema = {
|
|
10897
|
+
category_slug: string;
|
|
11143
10898
|
/**
|
|
11144
|
-
* -
|
|
11145
|
-
* 'single' or 'multi').
|
|
10899
|
+
* - Change request identifier for product updates.
|
|
11146
10900
|
*/
|
|
11147
|
-
|
|
10901
|
+
change_request_id?: string;
|
|
11148
10902
|
/**
|
|
11149
|
-
* -
|
|
11150
|
-
*
|
|
10903
|
+
* - Unique identifier for the company associated
|
|
10904
|
+
* with the product.
|
|
11151
10905
|
*/
|
|
11152
|
-
company_id
|
|
10906
|
+
company_id: number;
|
|
11153
10907
|
/**
|
|
11154
|
-
* -
|
|
11155
|
-
*
|
|
10908
|
+
* - The country where the product was
|
|
10909
|
+
* manufactured or sourced.
|
|
11156
10910
|
*/
|
|
11157
|
-
|
|
10911
|
+
country_of_origin: string;
|
|
11158
10912
|
/**
|
|
11159
|
-
* - The
|
|
10913
|
+
* - The currency in which the product's price is listed.
|
|
11160
10914
|
*/
|
|
11161
|
-
|
|
10915
|
+
currency: string;
|
|
10916
|
+
custom_order?: CustomOrder;
|
|
11162
10917
|
/**
|
|
11163
|
-
* -
|
|
11164
|
-
* currently active.
|
|
10918
|
+
* - List of department IDs associated with the product.
|
|
11165
10919
|
*/
|
|
11166
|
-
|
|
10920
|
+
departments: number[];
|
|
11167
10921
|
/**
|
|
11168
|
-
* -
|
|
11169
|
-
* bundle, if available. Can be null.
|
|
10922
|
+
* - A detailed description of the product.
|
|
11170
10923
|
*/
|
|
11171
|
-
|
|
10924
|
+
description?: string;
|
|
11172
10925
|
/**
|
|
11173
|
-
* -
|
|
10926
|
+
* - Product highlights or key features.
|
|
11174
10927
|
*/
|
|
11175
|
-
|
|
11176
|
-
/**
|
|
11177
|
-
* - Information about the user who last
|
|
11178
|
-
* modified the product bundle, including user ID and username.
|
|
11179
|
-
*/
|
|
11180
|
-
modified_by?: any;
|
|
11181
|
-
/**
|
|
11182
|
-
* - The timestamp when the product bundle was
|
|
11183
|
-
* last modified.
|
|
11184
|
-
*/
|
|
11185
|
-
modified_on?: string;
|
|
11186
|
-
/**
|
|
11187
|
-
* - The name of the product bundle.
|
|
11188
|
-
*/
|
|
11189
|
-
name: string;
|
|
11190
|
-
/**
|
|
11191
|
-
* - Pages where the product bundle is
|
|
11192
|
-
* visible (e.g., 'pdp' for product display page).
|
|
11193
|
-
*/
|
|
11194
|
-
page_visibility?: string[];
|
|
11195
|
-
/**
|
|
11196
|
-
* - A list of products included in the
|
|
11197
|
-
* bundle. A maximum of 10 products can be added.
|
|
11198
|
-
*/
|
|
11199
|
-
products: ProductBundleItem[];
|
|
11200
|
-
/**
|
|
11201
|
-
* - Indicates whether all products
|
|
11202
|
-
* in the bundle are assigned to the same store.
|
|
11203
|
-
*/
|
|
11204
|
-
same_store_assignment?: boolean;
|
|
11205
|
-
/**
|
|
11206
|
-
* - A URL-friendly unique identifier for the product bundle.
|
|
11207
|
-
*/
|
|
11208
|
-
slug: string;
|
|
11209
|
-
};
|
|
11210
|
-
/** @returns {ProductBundleUpdateRequestSchema} */
|
|
11211
|
-
declare function ProductBundleUpdateRequestSchema(): ProductBundleUpdateRequestSchema;
|
|
11212
|
-
type ProductBundleUpdateRequestSchema = {
|
|
11213
|
-
/**
|
|
11214
|
-
* - Specifies the type of product bundle (e.g.,
|
|
11215
|
-
* 'single' or 'multi').
|
|
11216
|
-
*/
|
|
11217
|
-
choice: string;
|
|
11218
|
-
/**
|
|
11219
|
-
* - The unique identifier of the company to
|
|
11220
|
-
* which the product bundle belongs.
|
|
11221
|
-
*/
|
|
11222
|
-
company_id?: number;
|
|
11223
|
-
/**
|
|
11224
|
-
* - Indicates whether the product bundle is
|
|
11225
|
-
* currently active.
|
|
11226
|
-
*/
|
|
11227
|
-
is_active: boolean;
|
|
11228
|
-
/**
|
|
11229
|
-
* - URL of the logo associated with the product
|
|
11230
|
-
* bundle, if available. Can be null.
|
|
11231
|
-
*/
|
|
11232
|
-
logo?: string;
|
|
11233
|
-
/**
|
|
11234
|
-
* - Additional metadata for the product bundle.
|
|
11235
|
-
*/
|
|
11236
|
-
meta?: any;
|
|
11237
|
-
/**
|
|
11238
|
-
* - The name of the product bundle.
|
|
11239
|
-
*/
|
|
11240
|
-
name: string;
|
|
11241
|
-
/**
|
|
11242
|
-
* - Pages where the product bundle is
|
|
11243
|
-
* visible (e.g., 'pdp' for product display page).
|
|
11244
|
-
*/
|
|
11245
|
-
page_visibility?: string[];
|
|
11246
|
-
/**
|
|
11247
|
-
* - A list of products included in the
|
|
11248
|
-
* bundle. A maximum of 10 products can be added.
|
|
11249
|
-
*/
|
|
11250
|
-
products: ProductBundleItem[];
|
|
11251
|
-
/**
|
|
11252
|
-
* - Indicates whether all products
|
|
11253
|
-
* in the bundle are assigned to the same store.
|
|
11254
|
-
*/
|
|
11255
|
-
same_store_assignment?: boolean;
|
|
11256
|
-
/**
|
|
11257
|
-
* - A URL-friendly unique identifier for the product bundle.
|
|
11258
|
-
*/
|
|
11259
|
-
slug: string;
|
|
11260
|
-
};
|
|
11261
|
-
/** @returns {ProductConfigurationDownloads} */
|
|
11262
|
-
declare function ProductConfigurationDownloads(): ProductConfigurationDownloads;
|
|
11263
|
-
type ProductConfigurationDownloads = {
|
|
11264
|
-
data?: any[];
|
|
11265
|
-
multivalue?: boolean;
|
|
11266
|
-
};
|
|
11267
|
-
/** @returns {ProductUpdateSchemaV2} */
|
|
11268
|
-
declare function ProductUpdateSchemaV2(): ProductUpdateSchemaV2;
|
|
11269
|
-
type ProductUpdateSchemaV2 = {
|
|
11270
|
-
/**
|
|
11271
|
-
* - Custom JSON data that can be used for
|
|
11272
|
-
* additional product properties.
|
|
11273
|
-
*/
|
|
11274
|
-
_custom_json?: any;
|
|
11275
|
-
/**
|
|
11276
|
-
* - The action to perform wrt to the product (e.g.,
|
|
11277
|
-
* upsert, update, delete).
|
|
11278
|
-
*/
|
|
11279
|
-
action?: string;
|
|
11280
|
-
/**
|
|
11281
|
-
* - Additional attributes related to the product.
|
|
11282
|
-
*/
|
|
11283
|
-
attributes?: any;
|
|
11284
|
-
/**
|
|
11285
|
-
* - Unique identifier for the product's brand.
|
|
11286
|
-
*/
|
|
11287
|
-
brand_uid: number;
|
|
11288
|
-
/**
|
|
11289
|
-
* - Job ID associated with bulk operations.
|
|
11290
|
-
*/
|
|
11291
|
-
bulk_job_id?: string;
|
|
11292
|
-
/**
|
|
11293
|
-
* - The category to which the product belongs.
|
|
11294
|
-
*/
|
|
11295
|
-
category_slug: string;
|
|
11296
|
-
/**
|
|
11297
|
-
* - Change request identifier for product updates.
|
|
11298
|
-
*/
|
|
11299
|
-
change_request_id?: string;
|
|
11300
|
-
/**
|
|
11301
|
-
* - Unique identifier for the company associated
|
|
11302
|
-
* with the product.
|
|
11303
|
-
*/
|
|
11304
|
-
company_id: number;
|
|
11305
|
-
/**
|
|
11306
|
-
* - The country where the product was
|
|
11307
|
-
* manufactured or sourced.
|
|
11308
|
-
*/
|
|
11309
|
-
country_of_origin: string;
|
|
11310
|
-
/**
|
|
11311
|
-
* - The currency in which the product's price is listed.
|
|
11312
|
-
*/
|
|
11313
|
-
currency: string;
|
|
11314
|
-
custom_order?: CustomOrder;
|
|
11315
|
-
/**
|
|
11316
|
-
* - List of department IDs associated with the product.
|
|
11317
|
-
*/
|
|
11318
|
-
departments: number[];
|
|
11319
|
-
/**
|
|
11320
|
-
* - A detailed description of the product.
|
|
11321
|
-
*/
|
|
11322
|
-
description?: string;
|
|
11323
|
-
/**
|
|
11324
|
-
* - Product highlights or key features.
|
|
11325
|
-
*/
|
|
11326
|
-
highlights?: string[];
|
|
10928
|
+
highlights?: string[];
|
|
11327
10929
|
/**
|
|
11328
10930
|
* - Flag to indicate if the product is active.
|
|
11329
10931
|
*/
|
|
@@ -11347,8 +10949,11 @@ type ProductUpdateSchemaV2 = {
|
|
|
11347
10949
|
*/
|
|
11348
10950
|
item_code: string;
|
|
11349
10951
|
/**
|
|
11350
|
-
* -
|
|
11351
|
-
* composite, digital
|
|
10952
|
+
* - Specifies the type of product, such as
|
|
10953
|
+
* standard, set, composite, digital, virtual_bundle, or physical_bundle. For
|
|
10954
|
+
* bundle types (virtual_bundle or physical_bundle), use the category,
|
|
10955
|
+
* department, and brand of the base child SKU. In this case, attributes are
|
|
10956
|
+
* optional. The bundle_details attribute must be included for bundle types.
|
|
11352
10957
|
*/
|
|
11353
10958
|
item_type: string;
|
|
11354
10959
|
/**
|
|
@@ -11402,11 +11007,7 @@ type ProductUpdateSchemaV2 = {
|
|
|
11402
11007
|
* - List of tags associated with the product.
|
|
11403
11008
|
*/
|
|
11404
11009
|
tags?: string[];
|
|
11405
|
-
tax_identifier:
|
|
11406
|
-
/**
|
|
11407
|
-
* - HS Code for the product.
|
|
11408
|
-
*/
|
|
11409
|
-
hs_code?: string;
|
|
11010
|
+
tax_identifier: TaxIdentifierV3;
|
|
11410
11011
|
teaser_tag?: TeaserTag;
|
|
11411
11012
|
/**
|
|
11412
11013
|
* - Template tag for the product, used for
|
|
@@ -11417,10 +11018,6 @@ type ProductUpdateSchemaV2 = {
|
|
|
11417
11018
|
* - List of traders associated with the product.
|
|
11418
11019
|
*/
|
|
11419
11020
|
trader: Trader[];
|
|
11420
|
-
/**
|
|
11421
|
-
* - Unique identifier for the product.
|
|
11422
|
-
*/
|
|
11423
|
-
uid?: number;
|
|
11424
11021
|
/**
|
|
11425
11022
|
* - Variant group information for the product.
|
|
11426
11023
|
*/
|
|
@@ -11433,10 +11030,20 @@ type ProductUpdateSchemaV2 = {
|
|
|
11433
11030
|
* - Variants information for the product.
|
|
11434
11031
|
*/
|
|
11435
11032
|
variants?: any;
|
|
11033
|
+
/**
|
|
11034
|
+
* - HS Code for the product. This is required for
|
|
11035
|
+
* indian companies.
|
|
11036
|
+
*/
|
|
11037
|
+
hs_code?: string;
|
|
11038
|
+
/**
|
|
11039
|
+
* - List of bundle details for
|
|
11040
|
+
* products that are part of a bundle.
|
|
11041
|
+
*/
|
|
11042
|
+
bundle_details?: BundleDetails[];
|
|
11436
11043
|
};
|
|
11437
|
-
/** @returns {
|
|
11438
|
-
declare function
|
|
11439
|
-
type
|
|
11044
|
+
/** @returns {ProductUpdateSchemaV3} */
|
|
11045
|
+
declare function ProductUpdateSchemaV3(): ProductUpdateSchemaV3;
|
|
11046
|
+
type ProductUpdateSchemaV3 = {
|
|
11440
11047
|
/**
|
|
11441
11048
|
* - Custom JSON data that can be used for
|
|
11442
11049
|
* additional product properties.
|
|
@@ -11517,8 +11124,11 @@ type ProductCreateSchemaV2 = {
|
|
|
11517
11124
|
*/
|
|
11518
11125
|
item_code: string;
|
|
11519
11126
|
/**
|
|
11520
|
-
* -
|
|
11521
|
-
* composite, digital
|
|
11127
|
+
* - Specifies the type of product, such as
|
|
11128
|
+
* standard, set, composite, digital, virtual_bundle, or physical_bundle. For
|
|
11129
|
+
* bundle types (virtual_bundle or physical_bundle), use the category,
|
|
11130
|
+
* department, and brand of the base child SKU. In this case, attributes are
|
|
11131
|
+
* optional. The bundle_details attribute must be included for bundle types.
|
|
11522
11132
|
*/
|
|
11523
11133
|
item_type: string;
|
|
11524
11134
|
/**
|
|
@@ -11572,7 +11182,12 @@ type ProductCreateSchemaV2 = {
|
|
|
11572
11182
|
* - List of tags associated with the product.
|
|
11573
11183
|
*/
|
|
11574
11184
|
tags?: string[];
|
|
11575
|
-
tax_identifier:
|
|
11185
|
+
tax_identifier: TaxIdentifierV3;
|
|
11186
|
+
/**
|
|
11187
|
+
* - HS Code for the product. This is required for
|
|
11188
|
+
* indian companies.
|
|
11189
|
+
*/
|
|
11190
|
+
hs_code?: string;
|
|
11576
11191
|
teaser_tag?: TeaserTag;
|
|
11577
11192
|
/**
|
|
11578
11193
|
* - Template tag for the product, used for
|
|
@@ -11583,6 +11198,10 @@ type ProductCreateSchemaV2 = {
|
|
|
11583
11198
|
* - List of traders associated with the product.
|
|
11584
11199
|
*/
|
|
11585
11200
|
trader: Trader[];
|
|
11201
|
+
/**
|
|
11202
|
+
* - Unique identifier for the product.
|
|
11203
|
+
*/
|
|
11204
|
+
uid?: number;
|
|
11586
11205
|
/**
|
|
11587
11206
|
* - Variant group information for the product.
|
|
11588
11207
|
*/
|
|
@@ -11595,61 +11214,34 @@ type ProductCreateSchemaV2 = {
|
|
|
11595
11214
|
* - Variants information for the product.
|
|
11596
11215
|
*/
|
|
11597
11216
|
variants?: any;
|
|
11217
|
+
/**
|
|
11218
|
+
* - List of bundle details for
|
|
11219
|
+
* products that are part of a bundle. This will have child skus along with
|
|
11220
|
+
* net quantity used in bundle formation.
|
|
11221
|
+
*/
|
|
11222
|
+
bundle_details?: BundleDetails[];
|
|
11598
11223
|
};
|
|
11599
|
-
/** @returns {
|
|
11600
|
-
declare function
|
|
11601
|
-
type
|
|
11224
|
+
/** @returns {ProductPatchSchemaV3} */
|
|
11225
|
+
declare function ProductPatchSchemaV3(): ProductPatchSchemaV3;
|
|
11226
|
+
type ProductPatchSchemaV3 = {
|
|
11602
11227
|
/**
|
|
11603
11228
|
* - Custom JSON data that can be used for
|
|
11604
11229
|
* additional product properties.
|
|
11605
11230
|
*/
|
|
11606
11231
|
_custom_json?: any;
|
|
11607
|
-
/**
|
|
11608
|
-
* - The action to perform wrt to the product (e.g.,
|
|
11609
|
-
* upsert, update, delete).
|
|
11610
|
-
*/
|
|
11611
|
-
action?: string;
|
|
11612
11232
|
/**
|
|
11613
11233
|
* - Additional attributes related to the product.
|
|
11614
11234
|
*/
|
|
11615
11235
|
attributes?: any;
|
|
11616
|
-
/**
|
|
11617
|
-
* - Unique identifier for the product's brand.
|
|
11618
|
-
*/
|
|
11619
|
-
brand_uid: number;
|
|
11620
|
-
/**
|
|
11621
|
-
* - Job ID associated with bulk operations.
|
|
11622
|
-
*/
|
|
11623
|
-
bulk_job_id?: string;
|
|
11624
|
-
/**
|
|
11625
|
-
* - The category to which the product belongs.
|
|
11626
|
-
*/
|
|
11627
|
-
category_slug: string;
|
|
11628
|
-
/**
|
|
11629
|
-
* - Change request identifier for product updates.
|
|
11630
|
-
*/
|
|
11631
|
-
change_request_id?: string;
|
|
11632
|
-
/**
|
|
11633
|
-
* - Unique identifier for the company associated
|
|
11634
|
-
* with the product.
|
|
11635
|
-
*/
|
|
11636
|
-
company_id: number;
|
|
11637
11236
|
/**
|
|
11638
11237
|
* - The country where the product was
|
|
11639
11238
|
* manufactured or sourced.
|
|
11640
11239
|
*/
|
|
11641
|
-
country_of_origin
|
|
11642
|
-
/**
|
|
11643
|
-
* - The currency in which the product's price is listed.
|
|
11644
|
-
*/
|
|
11645
|
-
currency: string;
|
|
11240
|
+
country_of_origin?: string;
|
|
11646
11241
|
custom_order?: CustomOrder;
|
|
11647
|
-
/**
|
|
11648
|
-
* - List of department IDs associated with the product.
|
|
11649
|
-
*/
|
|
11650
|
-
departments: number[];
|
|
11651
11242
|
/**
|
|
11652
11243
|
* - A detailed description of the product.
|
|
11244
|
+
* Provide base64 encoded value in input.
|
|
11653
11245
|
*/
|
|
11654
11246
|
description?: string;
|
|
11655
11247
|
/**
|
|
@@ -11665,24 +11257,6 @@ type ProductCreateSchemaV3 = {
|
|
|
11665
11257
|
* dependent on other products.
|
|
11666
11258
|
*/
|
|
11667
11259
|
is_dependent?: boolean;
|
|
11668
|
-
/**
|
|
11669
|
-
* - Flag to indicate if the product
|
|
11670
|
-
* does not have associated images.
|
|
11671
|
-
*/
|
|
11672
|
-
is_image_less_product?: boolean;
|
|
11673
|
-
/**
|
|
11674
|
-
* - Flag to indicate if the product is part of a set.
|
|
11675
|
-
*/
|
|
11676
|
-
is_set?: boolean;
|
|
11677
|
-
/**
|
|
11678
|
-
* - Unique item code or SKU of the product.
|
|
11679
|
-
*/
|
|
11680
|
-
item_code: string;
|
|
11681
|
-
/**
|
|
11682
|
-
* - Type of the product (e.g., standard, set,
|
|
11683
|
-
* composite, digital).
|
|
11684
|
-
*/
|
|
11685
|
-
item_type: string;
|
|
11686
11260
|
/**
|
|
11687
11261
|
* - List of media URLs (images, videos) associated
|
|
11688
11262
|
* with the product.
|
|
@@ -11695,7 +11269,7 @@ type ProductCreateSchemaV3 = {
|
|
|
11695
11269
|
/**
|
|
11696
11270
|
* - The name of the product.
|
|
11697
11271
|
*/
|
|
11698
|
-
name
|
|
11272
|
+
name?: string;
|
|
11699
11273
|
net_quantity?: NetQuantity;
|
|
11700
11274
|
/**
|
|
11701
11275
|
* - Number of boxes required to package the product.
|
|
@@ -11707,12 +11281,7 @@ type ProductCreateSchemaV3 = {
|
|
|
11707
11281
|
*/
|
|
11708
11282
|
product_group_tag?: string[];
|
|
11709
11283
|
product_publish?: ProductPublish;
|
|
11710
|
-
|
|
11711
|
-
* - The role requesting the product operation
|
|
11712
|
-
* (admin or user).
|
|
11713
|
-
*/
|
|
11714
|
-
requester?: string;
|
|
11715
|
-
return_config: ReturnConfig;
|
|
11284
|
+
return_config?: ReturnConfig;
|
|
11716
11285
|
/**
|
|
11717
11286
|
* - A short description of the product,
|
|
11718
11287
|
* up to 50 characters.
|
|
@@ -11725,26 +11294,27 @@ type ProductCreateSchemaV3 = {
|
|
|
11725
11294
|
/**
|
|
11726
11295
|
* - List of sizes available for the product.
|
|
11727
11296
|
*/
|
|
11728
|
-
sizes
|
|
11729
|
-
/**
|
|
11730
|
-
* - URL-friendly identifier for the product.
|
|
11731
|
-
*/
|
|
11732
|
-
slug: string;
|
|
11297
|
+
sizes?: ProductSizePatch[];
|
|
11733
11298
|
/**
|
|
11734
11299
|
* - List of tags associated with the product.
|
|
11735
11300
|
*/
|
|
11736
11301
|
tags?: string[];
|
|
11737
|
-
tax_identifier
|
|
11302
|
+
tax_identifier?: TaxIdentifierV3;
|
|
11303
|
+
/**
|
|
11304
|
+
* - HS Code for the product. This is required for
|
|
11305
|
+
* indian companies.
|
|
11306
|
+
*/
|
|
11307
|
+
hs_code?: string;
|
|
11738
11308
|
teaser_tag?: TeaserTag;
|
|
11739
11309
|
/**
|
|
11740
11310
|
* - Template tag for the product, used for
|
|
11741
11311
|
* classification.
|
|
11742
11312
|
*/
|
|
11743
|
-
template_tag
|
|
11313
|
+
template_tag?: string;
|
|
11744
11314
|
/**
|
|
11745
11315
|
* - List of traders associated with the product.
|
|
11746
11316
|
*/
|
|
11747
|
-
trader
|
|
11317
|
+
trader?: Trader[];
|
|
11748
11318
|
/**
|
|
11749
11319
|
* - Variant group information for the product.
|
|
11750
11320
|
*/
|
|
@@ -11757,182 +11327,50 @@ type ProductCreateSchemaV3 = {
|
|
|
11757
11327
|
* - Variants information for the product.
|
|
11758
11328
|
*/
|
|
11759
11329
|
variants?: any;
|
|
11760
|
-
/**
|
|
11761
|
-
* - HS Code for the product. This is required for
|
|
11762
|
-
* indian companies.
|
|
11763
|
-
*/
|
|
11764
|
-
hs_code?: string;
|
|
11765
11330
|
};
|
|
11766
|
-
/** @returns {
|
|
11767
|
-
declare function
|
|
11768
|
-
type
|
|
11769
|
-
/**
|
|
11770
|
-
* - Custom JSON data that can be used for
|
|
11771
|
-
* additional product properties.
|
|
11772
|
-
*/
|
|
11773
|
-
_custom_json?: any;
|
|
11774
|
-
/**
|
|
11775
|
-
* - The action to perform wrt to the product (e.g.,
|
|
11776
|
-
* upsert, update, delete).
|
|
11777
|
-
*/
|
|
11778
|
-
action?: string;
|
|
11779
|
-
/**
|
|
11780
|
-
* - Additional attributes related to the product.
|
|
11781
|
-
*/
|
|
11782
|
-
attributes?: any;
|
|
11331
|
+
/** @returns {ProductSizePatch} */
|
|
11332
|
+
declare function ProductSizePatch(): ProductSizePatch;
|
|
11333
|
+
type ProductSizePatch = {
|
|
11783
11334
|
/**
|
|
11784
|
-
* -
|
|
11785
|
-
*/
|
|
11786
|
-
brand_uid: number;
|
|
11787
|
-
/**
|
|
11788
|
-
* - Job ID associated with bulk operations.
|
|
11789
|
-
*/
|
|
11790
|
-
bulk_job_id?: string;
|
|
11791
|
-
/**
|
|
11792
|
-
* - The category to which the product belongs.
|
|
11793
|
-
*/
|
|
11794
|
-
category_slug: string;
|
|
11795
|
-
/**
|
|
11796
|
-
* - Change request identifier for product updates.
|
|
11797
|
-
*/
|
|
11798
|
-
change_request_id?: string;
|
|
11799
|
-
/**
|
|
11800
|
-
* - Unique identifier for the company associated
|
|
11801
|
-
* with the product.
|
|
11802
|
-
*/
|
|
11803
|
-
company_id: number;
|
|
11804
|
-
/**
|
|
11805
|
-
* - The country where the product was
|
|
11806
|
-
* manufactured or sourced.
|
|
11807
|
-
*/
|
|
11808
|
-
country_of_origin: string;
|
|
11809
|
-
/**
|
|
11810
|
-
* - The currency in which the product's price is listed.
|
|
11811
|
-
*/
|
|
11812
|
-
currency: string;
|
|
11813
|
-
custom_order?: CustomOrder;
|
|
11814
|
-
/**
|
|
11815
|
-
* - List of department IDs associated with the product.
|
|
11816
|
-
*/
|
|
11817
|
-
departments: number[];
|
|
11818
|
-
/**
|
|
11819
|
-
* - A detailed description of the product.
|
|
11820
|
-
*/
|
|
11821
|
-
description?: string;
|
|
11822
|
-
/**
|
|
11823
|
-
* - Product highlights or key features.
|
|
11824
|
-
*/
|
|
11825
|
-
highlights?: string[];
|
|
11826
|
-
/**
|
|
11827
|
-
* - Flag to indicate if the product is active.
|
|
11828
|
-
*/
|
|
11829
|
-
is_active?: boolean;
|
|
11830
|
-
/**
|
|
11831
|
-
* - Flag to indicate if the product is
|
|
11832
|
-
* dependent on other products.
|
|
11335
|
+
* - Width of the item in the specified dimension unit.
|
|
11833
11336
|
*/
|
|
11834
|
-
|
|
11835
|
-
/**
|
|
11836
|
-
* - Flag to indicate if the product
|
|
11837
|
-
* does not have associated images.
|
|
11838
|
-
*/
|
|
11839
|
-
is_image_less_product?: boolean;
|
|
11840
|
-
/**
|
|
11841
|
-
* - Flag to indicate if the product is part of a set.
|
|
11842
|
-
*/
|
|
11843
|
-
is_set?: boolean;
|
|
11844
|
-
/**
|
|
11845
|
-
* - Unique item code or SKU of the product.
|
|
11846
|
-
*/
|
|
11847
|
-
item_code: string;
|
|
11848
|
-
/**
|
|
11849
|
-
* - Type of the product (e.g., standard, set,
|
|
11850
|
-
* composite, digital).
|
|
11851
|
-
*/
|
|
11852
|
-
item_type: string;
|
|
11853
|
-
/**
|
|
11854
|
-
* - List of media URLs (images, videos) associated
|
|
11855
|
-
* with the product.
|
|
11856
|
-
*/
|
|
11857
|
-
media?: Media[];
|
|
11858
|
-
/**
|
|
11859
|
-
* - Indicates if the product supports multiple sizes.
|
|
11860
|
-
*/
|
|
11861
|
-
multi_size?: boolean;
|
|
11862
|
-
/**
|
|
11863
|
-
* - The name of the product.
|
|
11864
|
-
*/
|
|
11865
|
-
name: string;
|
|
11866
|
-
net_quantity?: NetQuantity;
|
|
11867
|
-
/**
|
|
11868
|
-
* - Number of boxes required to package the product.
|
|
11869
|
-
*/
|
|
11870
|
-
no_of_boxes?: number;
|
|
11871
|
-
/**
|
|
11872
|
-
* - Tags to group products together
|
|
11873
|
-
* for classification.
|
|
11874
|
-
*/
|
|
11875
|
-
product_group_tag?: string[];
|
|
11876
|
-
product_publish?: ProductPublish;
|
|
11877
|
-
/**
|
|
11878
|
-
* - The role requesting the product operation
|
|
11879
|
-
* (admin or user).
|
|
11880
|
-
*/
|
|
11881
|
-
requester?: string;
|
|
11882
|
-
return_config: ReturnConfig;
|
|
11883
|
-
/**
|
|
11884
|
-
* - A short description of the product,
|
|
11885
|
-
* up to 50 characters.
|
|
11886
|
-
*/
|
|
11887
|
-
short_description?: string;
|
|
11888
|
-
/**
|
|
11889
|
-
* - Identifier for the product's size guide.
|
|
11890
|
-
*/
|
|
11891
|
-
size_guide?: string;
|
|
11892
|
-
/**
|
|
11893
|
-
* - List of sizes available for the product.
|
|
11894
|
-
*/
|
|
11895
|
-
sizes: any[];
|
|
11896
|
-
/**
|
|
11897
|
-
* - URL-friendly identifier for the product.
|
|
11898
|
-
*/
|
|
11899
|
-
slug: string;
|
|
11337
|
+
item_width?: number;
|
|
11900
11338
|
/**
|
|
11901
|
-
* -
|
|
11339
|
+
* - Height of the item in the specified dimension unit.
|
|
11902
11340
|
*/
|
|
11903
|
-
|
|
11904
|
-
tax_identifier: TaxIdentifierV3;
|
|
11341
|
+
item_height?: number;
|
|
11905
11342
|
/**
|
|
11906
|
-
* -
|
|
11907
|
-
* indian companies.
|
|
11343
|
+
* - Weight of the item in the specified weight unit.
|
|
11908
11344
|
*/
|
|
11909
|
-
|
|
11910
|
-
teaser_tag?: TeaserTag;
|
|
11345
|
+
item_weight?: number;
|
|
11911
11346
|
/**
|
|
11912
|
-
* -
|
|
11913
|
-
* classification.
|
|
11347
|
+
* - Listed price of the product before discounts.
|
|
11914
11348
|
*/
|
|
11915
|
-
|
|
11349
|
+
price?: number;
|
|
11916
11350
|
/**
|
|
11917
|
-
* -
|
|
11351
|
+
* - Indicates whether inventory tracking
|
|
11352
|
+
* is enabled for this item.
|
|
11918
11353
|
*/
|
|
11919
|
-
|
|
11354
|
+
track_inventory?: boolean;
|
|
11920
11355
|
/**
|
|
11921
|
-
* -
|
|
11356
|
+
* - Custom attributes or additional metadata
|
|
11357
|
+
* for the product.
|
|
11922
11358
|
*/
|
|
11923
|
-
|
|
11359
|
+
_custom_json?: any;
|
|
11924
11360
|
/**
|
|
11925
|
-
* -
|
|
11361
|
+
* - Unique identifier assigned by the
|
|
11362
|
+
* seller for this product or size variant.
|
|
11926
11363
|
*/
|
|
11927
|
-
|
|
11364
|
+
seller_identifier?: string;
|
|
11928
11365
|
/**
|
|
11929
|
-
* -
|
|
11366
|
+
* - Length of the item in the specified dimension unit.
|
|
11930
11367
|
*/
|
|
11931
|
-
|
|
11368
|
+
item_length?: number;
|
|
11932
11369
|
/**
|
|
11933
|
-
* -
|
|
11370
|
+
* - Effective or discounted price after
|
|
11371
|
+
* applying promotions.
|
|
11934
11372
|
*/
|
|
11935
|
-
|
|
11373
|
+
price_effective?: number;
|
|
11936
11374
|
};
|
|
11937
11375
|
/** @returns {ProductDetail} */
|
|
11938
11376
|
declare function ProductDetail(): ProductDetail;
|
|
@@ -12923,6 +12361,12 @@ type SizeDetails = {
|
|
|
12923
12361
|
* tracked for this size.
|
|
12924
12362
|
*/
|
|
12925
12363
|
track_inventory?: boolean;
|
|
12364
|
+
/**
|
|
12365
|
+
* - List of bundle details for
|
|
12366
|
+
* products that are part of a bundle. This will have child skus along with
|
|
12367
|
+
* net quantity used in bundle formation.
|
|
12368
|
+
*/
|
|
12369
|
+
bundle_details?: BundleDetails[];
|
|
12926
12370
|
};
|
|
12927
12371
|
/** @returns {ProductSchemaV2} */
|
|
12928
12372
|
declare function ProductSchemaV2(): ProductSchemaV2;
|
|
@@ -13072,7 +12516,8 @@ type ProductSchemaV2 = {
|
|
|
13072
12516
|
item_code?: string;
|
|
13073
12517
|
/**
|
|
13074
12518
|
* - Describes the type of product (e.g.,
|
|
13075
|
-
* "standard" or "set").
|
|
12519
|
+
* "standard" or "set"). In case of bundle items type will be
|
|
12520
|
+
* ("virtual_bundle" or "physical_bundle")
|
|
13076
12521
|
*/
|
|
13077
12522
|
item_type?: string;
|
|
13078
12523
|
/**
|
|
@@ -15104,4 +14549,4 @@ type HsTypeEnum = "HS" | "SAC";
|
|
|
15104
14549
|
* @returns {PageType}
|
|
15105
14550
|
*/
|
|
15106
14551
|
declare function PageType(): PageType;
|
|
15107
|
-
type PageType = "about-us" | "addresses" | "blog" | "brands" | "cards" | "cart" | "categories" | "brand" | "category" | "collection" | "collections" | "custom" | "contact-us" | "external" | "faq" | "freshchat" | "home" | "notification-settings" | "orders" | "page" | "policy" | "product" | "product-request" | "products" | "profile" | "profile-order-shipment" | "profile-basic" | "profile-company" | "profile-emails" | "profile-phones" | "rate-us" | "refer-earn" | "settings" | "shared-cart" | "tnc" | "track-order" | "wishlist" | "sections" | "form" | "cart-delivery" | "cart-payment" | "cart-review" | "login" | "register" | "shipping-policy" | "return-policy" | "order-status" | "locate-us";
|
|
14552
|
+
type PageType = "about-us" | "addresses" | "blog" | "brands" | "cards" | "cart" | "categories" | "brand" | "category" | "collection" | "collections" | "custom" | "contact-us" | "external" | "faq" | "freshchat" | "home" | "notification-settings" | "orders" | "page" | "policy" | "product" | "product-request" | "products" | "profile" | "profile-order-shipment" | "profile-basic" | "profile-company" | "profile-emails" | "profile-phones" | "rate-us" | "refer-earn" | "settings" | "shared-cart" | "tnc" | "track-order" | "wishlist" | "sections" | "form" | "cart-delivery" | "cart-payment" | "cart-review" | "login" | "register" | "shipping-policy" | "return-policy" | "order-status" | "locate-us" | "single-page-checkout";
|