@gofynd/fdk-client-javascript 1.4.12 → 1.4.14
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 +2 -2
- package/sdk/application/ApplicationClient.d.ts +2 -0
- package/sdk/application/ApplicationClient.js +2 -0
- package/sdk/application/Cart/CartApplicationClient.d.ts +60 -53
- package/sdk/application/Cart/CartApplicationClient.js +130 -53
- package/sdk/application/Cart/CartApplicationModel.d.ts +489 -143
- package/sdk/application/Cart/CartApplicationModel.js +380 -159
- package/sdk/application/Cart/CartApplicationValidator.d.ts +38 -19
- package/sdk/application/Cart/CartApplicationValidator.js +34 -18
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +88 -68
- package/sdk/application/Catalog/CatalogApplicationClient.js +114 -94
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +194 -142
- package/sdk/application/Catalog/CatalogApplicationModel.js +171 -133
- package/sdk/application/Common/CommonApplicationClient.d.ts +3 -2
- package/sdk/application/Common/CommonApplicationClient.js +6 -5
- package/sdk/application/Common/CommonApplicationModel.d.ts +9 -9
- package/sdk/application/Common/CommonApplicationModel.js +6 -6
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +34 -27
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +34 -27
- package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +45 -57
- package/sdk/application/Configuration/ConfigurationApplicationModel.js +35 -47
- package/sdk/application/Configuration/ConfigurationApplicationValidator.d.ts +2 -2
- package/sdk/application/Configuration/ConfigurationApplicationValidator.js +2 -2
- package/sdk/application/Content/ContentApplicationClient.d.ts +23 -33
- package/sdk/application/Content/ContentApplicationClient.js +54 -75
- package/sdk/application/Content/ContentApplicationModel.d.ts +96 -39
- package/sdk/application/Content/ContentApplicationModel.js +88 -34
- package/sdk/application/Content/ContentApplicationValidator.d.ts +23 -17
- package/sdk/application/Content/ContentApplicationValidator.js +15 -10
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +9 -8
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +14 -13
- package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +23 -25
- package/sdk/application/FileStorage/FileStorageApplicationModel.js +16 -18
- package/sdk/application/FileStorage/FileStorageApplicationValidator.d.ts +6 -6
- package/sdk/application/FileStorage/FileStorageApplicationValidator.js +6 -6
- package/sdk/application/Finance/FinanceApplicationClient.d.ts +36 -0
- package/sdk/application/Finance/FinanceApplicationClient.js +202 -0
- package/sdk/application/Finance/FinanceApplicationModel.d.ts +289 -0
- package/sdk/application/Finance/FinanceApplicationModel.js +208 -0
- package/sdk/application/Finance/FinanceApplicationValidator.d.ts +25 -0
- package/sdk/application/Finance/FinanceApplicationValidator.js +31 -0
- package/sdk/application/Lead/LeadApplicationClient.d.ts +2 -3
- package/sdk/application/Lead/LeadApplicationClient.js +2 -3
- package/sdk/application/Lead/LeadApplicationModel.d.ts +11 -11
- package/sdk/application/Lead/LeadApplicationModel.js +19 -19
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +39 -16
- package/sdk/application/Logistic/LogisticApplicationClient.js +189 -21
- package/sdk/application/Logistic/LogisticApplicationModel.d.ts +532 -173
- package/sdk/application/Logistic/LogisticApplicationModel.js +409 -139
- package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +54 -9
- package/sdk/application/Logistic/LogisticApplicationValidator.js +42 -8
- package/sdk/application/Order/OrderApplicationClient.d.ts +24 -10
- package/sdk/application/Order/OrderApplicationClient.js +96 -13
- package/sdk/application/Order/OrderApplicationModel.d.ts +434 -102
- package/sdk/application/Order/OrderApplicationModel.js +278 -73
- package/sdk/application/Order/OrderApplicationValidator.d.ts +17 -3
- package/sdk/application/Order/OrderApplicationValidator.js +15 -2
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +96 -99
- package/sdk/application/Payment/PaymentApplicationClient.js +111 -114
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +293 -289
- package/sdk/application/Payment/PaymentApplicationModel.js +243 -241
- package/sdk/application/Payment/PaymentApplicationValidator.d.ts +46 -46
- package/sdk/application/Payment/PaymentApplicationValidator.js +46 -46
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +13 -16
- package/sdk/application/Rewards/RewardsApplicationClient.js +19 -22
- package/sdk/application/Rewards/RewardsApplicationModel.d.ts +37 -37
- package/sdk/application/Rewards/RewardsApplicationModel.js +29 -29
- package/sdk/application/Rewards/RewardsApplicationValidator.d.ts +6 -6
- package/sdk/application/Rewards/RewardsApplicationValidator.js +6 -6
- package/sdk/application/Share/ShareApplicationModel.js +1 -1
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +2 -2
- package/sdk/application/Theme/ThemeApplicationClient.js +8 -6
- package/sdk/application/Theme/ThemeApplicationModel.d.ts +51 -19
- package/sdk/application/Theme/ThemeApplicationModel.js +47 -24
- package/sdk/application/Theme/ThemeApplicationValidator.d.ts +16 -3
- package/sdk/application/Theme/ThemeApplicationValidator.js +9 -2
- package/sdk/application/User/UserApplicationClient.d.ts +10 -10
- package/sdk/application/User/UserApplicationClient.js +10 -10
- package/sdk/application/User/UserApplicationModel.d.ts +17 -17
- package/sdk/application/User/UserApplicationModel.js +16 -16
- package/sdk/application/User/UserApplicationValidator.d.ts +2 -2
- package/sdk/application/User/UserApplicationValidator.js +2 -2
- package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
- package/sdk/application/Webhook/WebhookApplicationClient.js +4 -4
- package/sdk/application/Webhook/WebhookApplicationModel.d.ts +11 -9
- package/sdk/application/Webhook/WebhookApplicationModel.js +8 -6
- package/sdk/application/Webhook/WebhookApplicationValidator.d.ts +2 -2
- package/sdk/application/Webhook/WebhookApplicationValidator.js +2 -2
- package/sdk/application/index.d.ts +1 -0
- package/sdk/application/index.js +2 -0
- package/sdk/common/Clickstream.js +12 -0
- package/sdk/common/Constant.d.ts +5 -0
- package/sdk/common/Constant.js +5 -0
- package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +86 -12
- package/sdk/partner/FileStorage/FileStoragePartnerClient.js +582 -24
- package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +116 -19
- package/sdk/partner/FileStorage/FileStoragePartnerModel.js +121 -14
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +8 -1
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +51 -4
- package/sdk/partner/Lead/LeadPartnerClient.d.ts +2 -2
- package/sdk/partner/Lead/LeadPartnerClient.js +2 -2
- package/sdk/partner/Lead/LeadPartnerModel.d.ts +5 -5
- package/sdk/partner/Lead/LeadPartnerModel.js +15 -15
- package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +126 -20
- package/sdk/partner/Logistics/LogisticsPartnerClient.js +970 -20
- package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +767 -85
- package/sdk/partner/Logistics/LogisticsPartnerModel.js +429 -76
- package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +10 -0
- package/sdk/partner/Logistics/LogisticsPartnerValidator.js +120 -6
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +8 -10
- package/sdk/partner/Theme/ThemePartnerClient.js +14 -16
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +99 -39
- package/sdk/partner/Theme/ThemePartnerModel.js +95 -38
- package/sdk/partner/Theme/ThemePartnerValidator.js +4 -4
- package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +28 -18
- package/sdk/partner/Webhook/WebhookPartnerClient.js +103 -18
- package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +612 -179
- package/sdk/partner/Webhook/WebhookPartnerModel.js +253 -150
- package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +1 -0
- package/sdk/partner/Webhook/WebhookPartnerValidator.js +11 -3
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +5 -4
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +14 -8
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +59 -9
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +40 -4
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +2 -32
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +3 -243
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +11 -130
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +12 -152
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -39
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +0 -35
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +12 -12
- package/sdk/platform/Billing/BillingPlatformClient.js +15 -15
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +443 -388
- package/sdk/platform/Billing/BillingPlatformModel.js +280 -263
- package/sdk/platform/Billing/BillingPlatformValidator.d.ts +16 -18
- package/sdk/platform/Billing/BillingPlatformValidator.js +8 -9
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +134 -103
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +407 -112
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +111 -65
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +106 -44
- package/sdk/platform/Cart/CartPlatformModel.d.ts +4978 -1303
- package/sdk/platform/Cart/CartPlatformModel.js +1922 -1217
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +192 -164
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +371 -343
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +99 -99
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +54 -54
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +139 -116
- package/sdk/platform/Catalog/CatalogPlatformClient.js +191 -168
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +1374 -749
- package/sdk/platform/Catalog/CatalogPlatformModel.js +1241 -830
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +18 -18
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +18 -18
- package/sdk/platform/Common/CommonPlatformClient.d.ts +3 -2
- package/sdk/platform/Common/CommonPlatformClient.js +3 -2
- package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
- package/sdk/platform/Common/CommonPlatformModel.js +6 -6
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +16 -17
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +16 -17
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +8 -8
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +8 -8
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +43 -33
- package/sdk/platform/Communication/CommunicationPlatformModel.js +38 -34
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +46 -42
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +47 -43
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +223 -223
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +210 -212
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +12 -12
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +12 -12
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +46 -33
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +67 -54
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +18 -18
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +18 -18
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +45 -24
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +134 -30
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +283 -124
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +219 -94
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +37 -9
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +27 -8
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +124 -141
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +449 -422
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +179 -141
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +168 -130
- package/sdk/platform/Content/ContentPlatformClient.d.ts +142 -106
- package/sdk/platform/Content/ContentPlatformClient.js +523 -336
- package/sdk/platform/Content/ContentPlatformModel.d.ts +1244 -397
- package/sdk/platform/Content/ContentPlatformModel.js +526 -392
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +168 -117
- package/sdk/platform/Content/ContentPlatformValidator.js +162 -108
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +14 -12
- package/sdk/platform/Discount/DiscountPlatformClient.js +14 -12
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +13 -13
- package/sdk/platform/Discount/DiscountPlatformModel.js +12 -12
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
- package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +94 -36
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +462 -60
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +62 -15
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +75 -13
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +19 -19
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +21 -21
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +370 -101
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +313 -84
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +2 -2
- package/sdk/platform/Lead/LeadPlatformClient.js +2 -2
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +5 -5
- package/sdk/platform/Lead/LeadPlatformModel.js +16 -16
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +15 -4
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +83 -5
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +25 -4
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +16 -3
- package/sdk/platform/Order/OrderPlatformClient.d.ts +138 -101
- package/sdk/platform/Order/OrderPlatformClient.js +267 -203
- package/sdk/platform/Order/OrderPlatformModel.d.ts +4497 -877
- package/sdk/platform/Order/OrderPlatformModel.js +2336 -812
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +147 -50
- package/sdk/platform/Order/OrderPlatformValidator.js +75 -46
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +6 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +9 -7
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
- package/sdk/platform/Partner/PartnerPlatformModel.js +8 -8
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +93 -105
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +129 -141
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +48 -48
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +48 -48
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +20 -20
- package/sdk/platform/Payment/PaymentPlatformClient.js +20 -20
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +327 -313
- package/sdk/platform/Payment/PaymentPlatformModel.js +283 -273
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +8 -8
- package/sdk/platform/Payment/PaymentPlatformValidator.js +8 -8
- package/sdk/platform/PlatformClient.d.ts +0 -2
- package/sdk/platform/PlatformClient.js +0 -4
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +9 -9
- package/sdk/platform/Rewards/RewardsPlatformModel.js +8 -8
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +45 -35
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +117 -38
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +22 -13
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +24 -12
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +40 -46
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +58 -64
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +602 -341
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +483 -284
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +8 -8
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +8 -8
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +2 -2
- package/sdk/platform/Share/SharePlatformApplicationClient.js +2 -2
- package/sdk/platform/Share/SharePlatformModel.d.ts +36 -5
- package/sdk/platform/Share/SharePlatformModel.js +27 -4
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +3 -3
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +8 -4
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +5 -0
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +2 -0
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +40 -13
- package/sdk/platform/Theme/ThemePlatformModel.js +38 -17
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +12 -12
- package/sdk/platform/User/UserPlatformApplicationClient.js +12 -12
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +2 -2
- package/sdk/platform/User/UserPlatformApplicationValidator.js +2 -2
- package/sdk/platform/User/UserPlatformModel.d.ts +21 -21
- package/sdk/platform/User/UserPlatformModel.js +23 -23
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +25 -78
- package/sdk/platform/Webhook/WebhookPlatformClient.js +75 -470
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +720 -427
- package/sdk/platform/Webhook/WebhookPlatformModel.js +410 -386
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +10 -55
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +12 -72
- package/sdk/platform/index.d.ts +0 -1
- package/sdk/platform/index.js +0 -2
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +3 -2
- package/sdk/public/Configuration/ConfigurationPublicClient.js +6 -5
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +9 -9
- package/sdk/public/Configuration/ConfigurationPublicModel.js +6 -6
- package/sdk/public/Content/ContentPublicClient.d.ts +112 -2
- package/sdk/public/Content/ContentPublicClient.js +791 -5
- package/sdk/public/Content/ContentPublicModel.d.ts +549 -3
- package/sdk/public/Content/ContentPublicModel.js +649 -3
- package/sdk/public/Content/ContentPublicValidator.d.ts +69 -3
- package/sdk/public/Content/ContentPublicValidator.js +88 -2
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
- package/sdk/public/Webhook/WebhookPublicClient.js +8 -8
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +21 -21
- package/sdk/public/Webhook/WebhookPublicModel.js +15 -15
- package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
- package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +0 -320
- package/sdk/platform/Finance/FinancePlatformClient.js +0 -2333
- package/sdk/platform/Finance/FinancePlatformModel.d.ts +0 -2890
- package/sdk/platform/Finance/FinancePlatformModel.js +0 -2148
- package/sdk/platform/Finance/FinancePlatformValidator.d.ts +0 -284
- package/sdk/platform/Finance/FinancePlatformValidator.js +0 -354
|
@@ -17,7 +17,7 @@ export = CatalogPlatformModel;
|
|
|
17
17
|
* @property {string} size
|
|
18
18
|
*/
|
|
19
19
|
/**
|
|
20
|
-
* @typedef
|
|
20
|
+
* @typedef AllowSingleRequestSchema
|
|
21
21
|
* @property {boolean} allow_single
|
|
22
22
|
*/
|
|
23
23
|
/**
|
|
@@ -37,16 +37,15 @@ export = CatalogPlatformModel;
|
|
|
37
37
|
/**
|
|
38
38
|
* @typedef AppCategoryReturnConfig
|
|
39
39
|
* @property {number} category_id - Unique identifier for L3 category
|
|
40
|
-
* @property {
|
|
41
|
-
* configuration details
|
|
40
|
+
* @property {ProductReturnConfigBaseSchema} return_config - Return configuration details
|
|
42
41
|
*/
|
|
43
42
|
/**
|
|
44
|
-
* @typedef
|
|
43
|
+
* @typedef AppCategoryReturnConfigResponseSchema
|
|
45
44
|
* @property {string} [app_id] - Channel identifier
|
|
46
45
|
* @property {number} [category_id] - Unique identifer of L3 category
|
|
47
46
|
* @property {string} [logo]
|
|
48
47
|
* @property {string} [name] - Name of L3 category
|
|
49
|
-
* @property {
|
|
48
|
+
* @property {ProductReturnConfigBaseSchema} [return_config]
|
|
50
49
|
*/
|
|
51
50
|
/**
|
|
52
51
|
* @typedef AppConfiguration
|
|
@@ -106,7 +105,7 @@ export = CatalogPlatformModel;
|
|
|
106
105
|
* @property {Object} _custom_json
|
|
107
106
|
*/
|
|
108
107
|
/**
|
|
109
|
-
* @typedef
|
|
108
|
+
* @typedef ApplicationDepartmentListingResponseSchema
|
|
110
109
|
* @property {ApplicationDepartment[]} [items]
|
|
111
110
|
* @property {Page} page
|
|
112
111
|
*/
|
|
@@ -146,9 +145,102 @@ export = CatalogPlatformModel;
|
|
|
146
145
|
* @property {string} [canonical_url]
|
|
147
146
|
*/
|
|
148
147
|
/**
|
|
149
|
-
* @typedef
|
|
148
|
+
* @typedef ApplicationProductsSchema
|
|
149
|
+
* @property {Object} [attributes] - Additional attributes of the product, such
|
|
150
|
+
* as custom properties or features.
|
|
151
|
+
* @property {ProductBrand} [brand]
|
|
152
|
+
* @property {string} [color]
|
|
153
|
+
* @property {string} [description] - A detailed description of the product.
|
|
154
|
+
* @property {string} [discount] - The discount applied to the product.
|
|
155
|
+
* @property {boolean} [has_variant] - Indicates whether the product has
|
|
156
|
+
* variants, such as different sizes or colors.
|
|
157
|
+
* @property {string[]} [highlights] - Key highlights of the product.
|
|
158
|
+
* @property {string} image_nature - The nature of the product image, indicating
|
|
159
|
+
* if it's the default or a standard image.
|
|
160
|
+
* @property {string} item_code - A unique code assigned to the product item at
|
|
161
|
+
* company and brand level.
|
|
162
|
+
* @property {string} item_type - The type of the product, defining its nature.
|
|
163
|
+
* @property {Media[]} [medias] - A list of media items associated with the
|
|
164
|
+
* product, such as images or videos.
|
|
165
|
+
* @property {string} name - The name of the product.
|
|
166
|
+
* @property {ProductListingPrice} [price]
|
|
167
|
+
* @property {string} [product_online_date] - The date and time when the product
|
|
168
|
+
* becomes available online.
|
|
169
|
+
* @property {Object} [promo_meta] - Metadata related to any promotions
|
|
170
|
+
* associated with the product.
|
|
171
|
+
* @property {number} [rating] - The average rating of the product, typically
|
|
172
|
+
* based on customer reviews.
|
|
173
|
+
* @property {number} [rating_count] - The total number of ratings the product
|
|
174
|
+
* has received.
|
|
175
|
+
* @property {boolean} [sellable] - Indicates whether the product is available for sale.
|
|
176
|
+
* @property {string} [short_description] - A brief description of the product.
|
|
177
|
+
* @property {string[]} [similars] - A list of similar products.
|
|
178
|
+
* @property {string} slug - A URL-friendly string representing the product.
|
|
179
|
+
* @property {Object} [teaser_tag] - A teaser tag object providing short
|
|
180
|
+
* promotional information about the product.
|
|
181
|
+
* @property {string[]} [tryouts] - A list of tryout options or samples
|
|
182
|
+
* available for the product.
|
|
183
|
+
* @property {string} [type] - The type or category of the product.
|
|
184
|
+
* @property {number} uid - A unique identifier for the product.
|
|
185
|
+
* @property {number} [popularity] - A numerical value indicating the popularity
|
|
186
|
+
* of the product.
|
|
187
|
+
* @property {number} brand_uid - The unique identifier for the brand associated
|
|
188
|
+
* with the product.
|
|
189
|
+
* @property {number} category_uid - The unique identifier for the category to
|
|
190
|
+
* which the product belongs.
|
|
191
|
+
* @property {number} [verification_status] - The verification status of the
|
|
192
|
+
* product, typically represented as an integer.
|
|
193
|
+
* @property {string} [channel_identifier] - The identifier for the sales
|
|
194
|
+
* channel through which the product is sold.
|
|
195
|
+
* @property {string} [category_slug] - A URL-friendly string representing the
|
|
196
|
+
* product's category.
|
|
197
|
+
* @property {string} [size_guide] - A guide or chart providing size information
|
|
198
|
+
* for the product.
|
|
199
|
+
* @property {number[]} l3_categories - A list of L3 category IDs of the product.
|
|
200
|
+
* @property {number[]} [store_ids] - A list of store IDs where the product is available.
|
|
201
|
+
* @property {number[]} [company_ids] - A list of company IDs associated with the product.
|
|
202
|
+
* @property {number[]} departments - A list of department IDs where the product
|
|
203
|
+
* is categorized.
|
|
204
|
+
* @property {string[]} [tags] - A list of tags or keywords associated with the product.
|
|
205
|
+
* @property {string[]} [l3_category_names] - A list of names of L3 categories
|
|
206
|
+
* of the product.
|
|
207
|
+
* @property {string[]} [sizes] - A list of available sizes for the product.
|
|
208
|
+
* @property {string[]} [product_group_tag] - Tags that group the product with
|
|
209
|
+
* other similar products.
|
|
210
|
+
* @property {boolean} multi_size - Indicates whether the product is available
|
|
211
|
+
* in multiple sizes.
|
|
212
|
+
* @property {boolean} is_gift - Indicates whether the product can be considered
|
|
213
|
+
* as a gift.
|
|
214
|
+
* @property {boolean} is_cod - Indicates whether the product is eligible for
|
|
215
|
+
* cash on delivery (COD).
|
|
216
|
+
* @property {boolean} is_dependent - Indicates whether the product depends on
|
|
217
|
+
* another product.
|
|
218
|
+
* @property {boolean} is_available - Indicates whether the product is currently
|
|
219
|
+
* available for purchase.
|
|
220
|
+
* @property {ApplicationItemMOQ} moq
|
|
221
|
+
* @property {ApplicationItemSEO} seo
|
|
222
|
+
* @property {Object} [variants] - An object containing details about the
|
|
223
|
+
* product variants.
|
|
224
|
+
* @property {Object} [variant_media] - Media items specific to the product variants.
|
|
225
|
+
* @property {Object} [variant_group] - A group identifier for products that are
|
|
226
|
+
* variants of one another.
|
|
227
|
+
* @property {MultiCategoriesSchema[]} [multi_categories]
|
|
228
|
+
* @property {string} [template_tag] - Tag used for categorizing or templating purposes.
|
|
229
|
+
* @property {Object} [net_quantity] - Net quantity details for the product.
|
|
230
|
+
* @property {CustomOrder} [custom_order]
|
|
231
|
+
* @property {string} country_of_origin - Country where the product is
|
|
232
|
+
* manufactured or sourced from.
|
|
233
|
+
* @property {Object} [_custom_json] - Custom JSON data associated with the product.
|
|
234
|
+
* @property {string[]} [identifiers] - Identifiers associated with the product.
|
|
235
|
+
* @property {number} [item_id] - Unique identifier for the item.
|
|
236
|
+
* @property {CustomMeta[]} [_custom_meta] - Custom meta associated with the product.
|
|
237
|
+
* @property {number} [discount_percentage] - The discount applied to the
|
|
238
|
+
* product in percentage.
|
|
239
|
+
*/
|
|
240
|
+
/**
|
|
241
|
+
* @typedef ApplicationProductListingResponseSchema
|
|
150
242
|
* @property {ProductFilters[]} [filters]
|
|
151
|
-
* @property {
|
|
243
|
+
* @property {ApplicationProductsSchema[]} [items]
|
|
152
244
|
* @property {Object} [operators]
|
|
153
245
|
* @property {Page} page
|
|
154
246
|
* @property {ProductSortOn[]} [sort_on]
|
|
@@ -158,7 +250,7 @@ export = CatalogPlatformModel;
|
|
|
158
250
|
* @property {Object} _custom_json
|
|
159
251
|
*/
|
|
160
252
|
/**
|
|
161
|
-
* @typedef
|
|
253
|
+
* @typedef AppReturnConfigResponseSchema
|
|
162
254
|
* @property {string} [app_id] - Channel identifier
|
|
163
255
|
* @property {number} [category_count] - Count of L3 category return config set
|
|
164
256
|
* for application
|
|
@@ -186,7 +278,7 @@ export = CatalogPlatformModel;
|
|
|
186
278
|
* @property {string} size
|
|
187
279
|
*/
|
|
188
280
|
/**
|
|
189
|
-
* @typedef
|
|
281
|
+
* @typedef ArticleStoreResponseSchema
|
|
190
282
|
* @property {string} [name]
|
|
191
283
|
* @property {string} [store_code]
|
|
192
284
|
* @property {string} [store_type]
|
|
@@ -250,7 +342,7 @@ export = CatalogPlatformModel;
|
|
|
250
342
|
* @property {AttributeMasterMandatoryDetails} mandatory_details
|
|
251
343
|
*/
|
|
252
344
|
/**
|
|
253
|
-
* @typedef
|
|
345
|
+
* @typedef AttributeMasterSchema
|
|
254
346
|
* @property {Object} [created_by]
|
|
255
347
|
* @property {string} [created_on]
|
|
256
348
|
* @property {string[]} departments
|
|
@@ -310,14 +402,12 @@ export = CatalogPlatformModel;
|
|
|
310
402
|
*/
|
|
311
403
|
/**
|
|
312
404
|
* @typedef BaseAppCategoryReturnConfig
|
|
313
|
-
* @property {string} app_id - Channel identifier
|
|
314
|
-
* @property {number} company_id - Unique identifer of company
|
|
315
405
|
* @property {AppCategoryReturnConfig[]} data - Category level return config details
|
|
316
406
|
*/
|
|
317
407
|
/**
|
|
318
|
-
* @typedef
|
|
319
|
-
* @property {
|
|
320
|
-
* @property {
|
|
408
|
+
* @typedef BaseAppCategoryReturnConfigResponseSchema
|
|
409
|
+
* @property {AppCategoryReturnConfigResponseSchema[]} [data]
|
|
410
|
+
* @property {PageResponseSchema} [page]
|
|
321
411
|
*/
|
|
322
412
|
/**
|
|
323
413
|
* @typedef Brand
|
|
@@ -337,7 +427,53 @@ export = CatalogPlatformModel;
|
|
|
337
427
|
* @property {number} [uid]
|
|
338
428
|
*/
|
|
339
429
|
/**
|
|
340
|
-
* @typedef
|
|
430
|
+
* @typedef ApplicationCategoryListingSchema
|
|
431
|
+
* @property {ApplicationCategoryListingItemSchema[]} [items]
|
|
432
|
+
* @property {Page} [page]
|
|
433
|
+
*/
|
|
434
|
+
/**
|
|
435
|
+
* @typedef ApplicationCategoryListingItemSchema
|
|
436
|
+
* @property {string} [name] - Name of the category.
|
|
437
|
+
* @property {string} [logo] - URL of the category's logo.
|
|
438
|
+
* @property {number[]} [departments] - List of department IDs.
|
|
439
|
+
* @property {string} [attr_name] - Attribute name of the category.
|
|
440
|
+
* @property {string} [landscape_url] - URL of the landscape banner.
|
|
441
|
+
* @property {string} [portrait_url] - URL of the portrait banner.
|
|
442
|
+
* @property {Object} [_custom_json] - Custom JSON object for additional data.
|
|
443
|
+
* @property {number} [priority] - Priority of the category.
|
|
444
|
+
* @property {CreatedBy} [created_by]
|
|
445
|
+
* @property {string} [created_on] - Timestamp when the category was created.
|
|
446
|
+
* @property {ModifiedBy} [modified_by]
|
|
447
|
+
* @property {string} [modified_on] - Timestamp when the category was last modified.
|
|
448
|
+
* @property {string} [app_id] - Application ID associated with the category.
|
|
449
|
+
* @property {boolean} [is_active] - Indicates whether the category is active.
|
|
450
|
+
* @property {number} [uid] - Unique identifier of the category.
|
|
451
|
+
*/
|
|
452
|
+
/**
|
|
453
|
+
* @typedef ApplicationBrandListingSchema
|
|
454
|
+
* @property {ApplicationBrandListingItemSchema[]} [items]
|
|
455
|
+
* @property {Page} [page]
|
|
456
|
+
*/
|
|
457
|
+
/**
|
|
458
|
+
* @typedef ApplicationBrandListingItemSchema
|
|
459
|
+
* @property {Object} [_custom_json] - Custom JSON object for additional data.
|
|
460
|
+
* @property {Object} [_locale_language] - Custom object for locale-specific
|
|
461
|
+
* language data.
|
|
462
|
+
* @property {string} [brand_banner_portrait_url] - URL of the brand's portrait banner.
|
|
463
|
+
* @property {string} [brand_banner_url] - URL of the brand's landscape banner.
|
|
464
|
+
* @property {string} [brand_logo_url] - URL of the brand's logo.
|
|
465
|
+
* @property {string} [description] - Description of the brand.
|
|
466
|
+
* @property {string} [name] - Name of the brand.
|
|
467
|
+
* @property {string} [slug_key] - Unique slug key for the brand.
|
|
468
|
+
* @property {number} [priority] - Priority of the brand in listing.
|
|
469
|
+
* @property {number} [uid] - Unique identifier of the brand.
|
|
470
|
+
* @property {string} [created_on] - Timestamp when the category was created.
|
|
471
|
+
* @property {string} [last_updated] - Timestamp when the category was created.
|
|
472
|
+
* @property {boolean} [is_active] - Indicates if the brand is active.
|
|
473
|
+
* @property {number[]} [departments] - List of department IDs associated with the brand.
|
|
474
|
+
*/
|
|
475
|
+
/**
|
|
476
|
+
* @typedef BrandListingResponseSchema
|
|
341
477
|
* @property {BrandItem[]} [items]
|
|
342
478
|
* @property {Page} page
|
|
343
479
|
*/
|
|
@@ -352,12 +488,12 @@ export = CatalogPlatformModel;
|
|
|
352
488
|
* @property {string} [name]
|
|
353
489
|
*/
|
|
354
490
|
/**
|
|
355
|
-
* @typedef
|
|
491
|
+
* @typedef BulkAssetResponseSchema
|
|
356
492
|
* @property {Items[]} [items]
|
|
357
493
|
* @property {Page} [page]
|
|
358
494
|
*/
|
|
359
495
|
/**
|
|
360
|
-
* @typedef
|
|
496
|
+
* @typedef BulkHsnResponseSchema
|
|
361
497
|
* @property {boolean} [success] - Flag indicating the success status of the
|
|
362
498
|
* bulk HSN operation.
|
|
363
499
|
*/
|
|
@@ -422,14 +558,14 @@ export = CatalogPlatformModel;
|
|
|
422
558
|
* @property {string} [tracking_url]
|
|
423
559
|
*/
|
|
424
560
|
/**
|
|
425
|
-
* @typedef
|
|
561
|
+
* @typedef BulkProductRequestSchema
|
|
426
562
|
* @property {string} batch_id
|
|
427
563
|
* @property {number} company_id
|
|
428
564
|
* @property {Object[]} data
|
|
429
565
|
* @property {string} template_tag
|
|
430
566
|
*/
|
|
431
567
|
/**
|
|
432
|
-
* @typedef
|
|
568
|
+
* @typedef BulkResponseSchema
|
|
433
569
|
* @property {string} batch_id
|
|
434
570
|
* @property {UserInfo1} [created_by] - The user who created the item.
|
|
435
571
|
* @property {string} created_on - The date and time when the item was created.
|
|
@@ -453,12 +589,12 @@ export = CatalogPlatformModel;
|
|
|
453
589
|
* @property {number} [sellable_count]
|
|
454
590
|
*/
|
|
455
591
|
/**
|
|
456
|
-
* @typedef
|
|
592
|
+
* @typedef CatalogInsightResponseSchema
|
|
457
593
|
* @property {CatalogInsightBrand} [brand_distribution]
|
|
458
594
|
* @property {CatalogInsightItem} [item]
|
|
459
595
|
*/
|
|
460
596
|
/**
|
|
461
|
-
* @typedef
|
|
597
|
+
* @typedef CategoriesResponseSchema
|
|
462
598
|
* @property {string} [name]
|
|
463
599
|
* @property {string} [slug]
|
|
464
600
|
* @property {string} [slug_key]
|
|
@@ -501,7 +637,7 @@ export = CatalogPlatformModel;
|
|
|
501
637
|
* @property {number} [uid]
|
|
502
638
|
*/
|
|
503
639
|
/**
|
|
504
|
-
* @typedef
|
|
640
|
+
* @typedef CategoryListingResponseSchema
|
|
505
641
|
* @property {DepartmentCategoryTree[]} [data]
|
|
506
642
|
* @property {DepartmentIdentifier[]} [departments]
|
|
507
643
|
*/
|
|
@@ -521,7 +657,7 @@ export = CatalogPlatformModel;
|
|
|
521
657
|
* @property {string} name - It is the name of the Category in the respective platform.
|
|
522
658
|
*/
|
|
523
659
|
/**
|
|
524
|
-
* @typedef
|
|
660
|
+
* @typedef CategoryResponseSchema
|
|
525
661
|
* @property {Category[]} [items]
|
|
526
662
|
* @property {Page} [page]
|
|
527
663
|
*/
|
|
@@ -546,7 +682,7 @@ export = CatalogPlatformModel;
|
|
|
546
682
|
* @property {CollectionImage} portrait
|
|
547
683
|
*/
|
|
548
684
|
/**
|
|
549
|
-
* @typedef
|
|
685
|
+
* @typedef CollectionCreateResponseSchema
|
|
550
686
|
* @property {string} [uid]
|
|
551
687
|
* @property {Object} [_schedule]
|
|
552
688
|
* @property {boolean} [allow_facets]
|
|
@@ -569,7 +705,7 @@ export = CatalogPlatformModel;
|
|
|
569
705
|
* @property {string[]} [visible_facets_keys]
|
|
570
706
|
*/
|
|
571
707
|
/**
|
|
572
|
-
* @typedef
|
|
708
|
+
* @typedef CollectionDetailResponseSchema
|
|
573
709
|
* @property {Object} [_schedule]
|
|
574
710
|
* @property {boolean} [allow_facets]
|
|
575
711
|
* @property {boolean} [allow_sort]
|
|
@@ -671,11 +807,11 @@ export = CatalogPlatformModel;
|
|
|
671
807
|
* @property {number[]} store_ids
|
|
672
808
|
*/
|
|
673
809
|
/**
|
|
674
|
-
* @typedef
|
|
810
|
+
* @typedef ConfigErrorResponseSchema
|
|
675
811
|
* @property {string} message
|
|
676
812
|
*/
|
|
677
813
|
/**
|
|
678
|
-
* @typedef
|
|
814
|
+
* @typedef ConfigSuccessResponseSchema
|
|
679
815
|
* @property {string} message
|
|
680
816
|
*/
|
|
681
817
|
/**
|
|
@@ -770,7 +906,7 @@ export = CatalogPlatformModel;
|
|
|
770
906
|
* @property {string[]} [words]
|
|
771
907
|
*/
|
|
772
908
|
/**
|
|
773
|
-
* @typedef
|
|
909
|
+
* @typedef CreateAutocompleteWordsResponseSchema
|
|
774
910
|
* @property {Object} [_custom_json]
|
|
775
911
|
* @property {string} [app_id]
|
|
776
912
|
* @property {Object[]} [results]
|
|
@@ -805,18 +941,16 @@ export = CatalogPlatformModel;
|
|
|
805
941
|
* @property {string[]} [visible_facets_keys]
|
|
806
942
|
*/
|
|
807
943
|
/**
|
|
808
|
-
* @typedef
|
|
944
|
+
* @typedef CreateSearchConfigurationRequestSchema
|
|
809
945
|
* @property {string} application_id - The application id where custom search
|
|
810
946
|
* configuration is set
|
|
811
947
|
* @property {number} company_id - The company id where custom search configuration is set
|
|
812
|
-
* @property {
|
|
813
|
-
* configuration.
|
|
948
|
+
* @property {UserSchema} [created_by] - The user who created the search configuration.
|
|
814
949
|
* @property {string} [created_on] - The date and time when the search
|
|
815
950
|
* configuration was created.
|
|
816
951
|
* @property {boolean} [is_proximity_enabled] - Flag indicating if proximity
|
|
817
952
|
* search is enabled for this attribute.
|
|
818
|
-
* @property {
|
|
819
|
-
* configuration.
|
|
953
|
+
* @property {UserSchema} [modified_by] - The user who modified the search configuration.
|
|
820
954
|
* @property {string} [modified_on] - The date and time when the search
|
|
821
955
|
* configuration was last modified.
|
|
822
956
|
* @property {number} [proximity] - Proximity distance configuration
|
|
@@ -824,7 +958,7 @@ export = CatalogPlatformModel;
|
|
|
824
958
|
* attributes defined on the application.
|
|
825
959
|
*/
|
|
826
960
|
/**
|
|
827
|
-
* @typedef
|
|
961
|
+
* @typedef CreateSearchConfigurationResponseSchema
|
|
828
962
|
* @property {boolean} [success]
|
|
829
963
|
*/
|
|
830
964
|
/**
|
|
@@ -837,8 +971,6 @@ export = CatalogPlatformModel;
|
|
|
837
971
|
*/
|
|
838
972
|
/**
|
|
839
973
|
* @typedef CreateUpdateAppReturnConfig
|
|
840
|
-
* @property {string} app_id - Channel identifier
|
|
841
|
-
* @property {number} company_id - Unique identifer of company
|
|
842
974
|
* @property {string} return_config_level - Return configurtion Level
|
|
843
975
|
* category|product|no-return
|
|
844
976
|
*/
|
|
@@ -848,15 +980,18 @@ export = CatalogPlatformModel;
|
|
|
848
980
|
* @property {number} [products]
|
|
849
981
|
*/
|
|
850
982
|
/**
|
|
851
|
-
* @typedef
|
|
983
|
+
* @typedef CrossSellingResponseSchema
|
|
852
984
|
* @property {CatalogInsightBrand} [brand_distribution]
|
|
853
985
|
* @property {CrossSellingData} [data]
|
|
854
986
|
*/
|
|
855
987
|
/**
|
|
856
988
|
* @typedef CustomOrder
|
|
857
|
-
* @property {
|
|
858
|
-
*
|
|
859
|
-
* @property {
|
|
989
|
+
* @property {string} [manufacturing_time_unit] - Unit of time for manufacturing
|
|
990
|
+
* (e.g., days, weeks).
|
|
991
|
+
* @property {boolean} is_custom_order - Indicates if the product is available
|
|
992
|
+
* for custom orders.
|
|
993
|
+
* @property {number} [manufacturing_time] - Time required for manufacturing in
|
|
994
|
+
* the specified unit.
|
|
860
995
|
*/
|
|
861
996
|
/**
|
|
862
997
|
* @typedef DateMeta
|
|
@@ -866,21 +1001,19 @@ export = CatalogPlatformModel;
|
|
|
866
1001
|
* @property {string} [modified_on]
|
|
867
1002
|
*/
|
|
868
1003
|
/**
|
|
869
|
-
* @typedef
|
|
1004
|
+
* @typedef DefaultKeyRequestSchema
|
|
870
1005
|
* @property {string} default_key
|
|
871
1006
|
*/
|
|
872
1007
|
/**
|
|
873
1008
|
* @typedef DeleteAppCategoryReturnConfig
|
|
874
|
-
* @property {string} app_id - Channel identifier
|
|
875
1009
|
* @property {number[]} category_ids - List of category_ids to be deleted.
|
|
876
|
-
* @property {number} company_id - Unique identifer of company
|
|
877
1010
|
*/
|
|
878
1011
|
/**
|
|
879
|
-
* @typedef
|
|
1012
|
+
* @typedef DeleteResponseSchema
|
|
880
1013
|
* @property {string} [message]
|
|
881
1014
|
*/
|
|
882
1015
|
/**
|
|
883
|
-
* @typedef
|
|
1016
|
+
* @typedef DeleteSearchConfigurationResponseSchema
|
|
884
1017
|
* @property {boolean} [success]
|
|
885
1018
|
*/
|
|
886
1019
|
/**
|
|
@@ -897,7 +1030,7 @@ export = CatalogPlatformModel;
|
|
|
897
1030
|
* @property {CategoryItems[]} [items]
|
|
898
1031
|
*/
|
|
899
1032
|
/**
|
|
900
|
-
* @typedef
|
|
1033
|
+
* @typedef DepartmentErrorResponseSchema
|
|
901
1034
|
* @property {string} [code]
|
|
902
1035
|
* @property {Object} [errors]
|
|
903
1036
|
* @property {string} [message]
|
|
@@ -910,16 +1043,16 @@ export = CatalogPlatformModel;
|
|
|
910
1043
|
* @property {number} [uid]
|
|
911
1044
|
*/
|
|
912
1045
|
/**
|
|
913
|
-
* @typedef
|
|
1046
|
+
* @typedef DepartmentResponseSchema
|
|
914
1047
|
* @property {Department[]} [items]
|
|
915
1048
|
*/
|
|
916
1049
|
/**
|
|
917
|
-
* @typedef
|
|
1050
|
+
* @typedef DepartmentsResponseSchema
|
|
918
1051
|
* @property {GetDepartment[]} [items]
|
|
919
1052
|
* @property {Page} [page]
|
|
920
1053
|
*/
|
|
921
1054
|
/**
|
|
922
|
-
* @typedef
|
|
1055
|
+
* @typedef DimensionResponseSchema
|
|
923
1056
|
* @property {number} height - The height dimension.
|
|
924
1057
|
* @property {boolean} is_default - Indicates if it is the default dimension.
|
|
925
1058
|
* @property {number} length - The length dimension.
|
|
@@ -951,7 +1084,7 @@ export = CatalogPlatformModel;
|
|
|
951
1084
|
* @property {GetCatalogConfigurationDetailsProduct} [product]
|
|
952
1085
|
*/
|
|
953
1086
|
/**
|
|
954
|
-
* @typedef
|
|
1087
|
+
* @typedef ErrorResponseSchema
|
|
955
1088
|
* @property {string} [code]
|
|
956
1089
|
* @property {string} [error]
|
|
957
1090
|
* @property {string} [message]
|
|
@@ -1004,20 +1137,20 @@ export = CatalogPlatformModel;
|
|
|
1004
1137
|
* @property {Object} [moq]
|
|
1005
1138
|
* @property {boolean} [multi_size]
|
|
1006
1139
|
* @property {string} [name]
|
|
1007
|
-
* @property {
|
|
1140
|
+
* @property {NetQuantityResponseSchema} [net_quantity]
|
|
1008
1141
|
* @property {number} [no_of_boxes]
|
|
1009
1142
|
* @property {string} [pending]
|
|
1010
1143
|
* @property {string} [primary_color]
|
|
1011
1144
|
* @property {string[]} [product_group_tag]
|
|
1012
1145
|
* @property {ProductPublished} [product_publish]
|
|
1013
|
-
* @property {
|
|
1146
|
+
* @property {ReturnConfigResponseSchema} [return_config]
|
|
1014
1147
|
* @property {string} [short_description]
|
|
1015
1148
|
* @property {string} [size_guide]
|
|
1016
1149
|
* @property {Object[]} [sizes]
|
|
1017
1150
|
* @property {string} [slug]
|
|
1018
1151
|
* @property {string} [stage]
|
|
1019
1152
|
* @property {string[]} [tags]
|
|
1020
|
-
* @property {
|
|
1153
|
+
* @property {TaxIdentifier} [tax_identifier]
|
|
1021
1154
|
* @property {Object} [teaser_tag]
|
|
1022
1155
|
* @property {string} [template_tag]
|
|
1023
1156
|
* @property {Trader[]} [trader]
|
|
@@ -1030,7 +1163,7 @@ export = CatalogPlatformModel;
|
|
|
1030
1163
|
* @property {string[]} [store_id_list]
|
|
1031
1164
|
*/
|
|
1032
1165
|
/**
|
|
1033
|
-
* @typedef
|
|
1166
|
+
* @typedef RawProductListingResponseSchema
|
|
1034
1167
|
* @property {RawProduct[]} [items]
|
|
1035
1168
|
* @property {Page} [page]
|
|
1036
1169
|
*/
|
|
@@ -1056,7 +1189,7 @@ export = CatalogPlatformModel;
|
|
|
1056
1189
|
* @property {string} [slug]
|
|
1057
1190
|
*/
|
|
1058
1191
|
/**
|
|
1059
|
-
* @typedef
|
|
1192
|
+
* @typedef GetAddressSchema
|
|
1060
1193
|
* @property {string} [address1]
|
|
1061
1194
|
* @property {string} [address2]
|
|
1062
1195
|
* @property {string} [address_type]
|
|
@@ -1092,7 +1225,7 @@ export = CatalogPlatformModel;
|
|
|
1092
1225
|
* @property {string[]} [words]
|
|
1093
1226
|
*/
|
|
1094
1227
|
/**
|
|
1095
|
-
* @typedef
|
|
1228
|
+
* @typedef GetAutocompleteWordsResponseSchema
|
|
1096
1229
|
* @property {GetAutocompleteWordsData[]} [items]
|
|
1097
1230
|
* @property {Page} [page]
|
|
1098
1231
|
*/
|
|
@@ -1110,7 +1243,7 @@ export = CatalogPlatformModel;
|
|
|
1110
1243
|
*/
|
|
1111
1244
|
/**
|
|
1112
1245
|
* @typedef GetCatalogConfigurationMetaData
|
|
1113
|
-
* @property {
|
|
1246
|
+
* @property {MetaDataListingResponseSchema} [listing]
|
|
1114
1247
|
* @property {GetCatalogConfigurationDetailsProduct} [product]
|
|
1115
1248
|
*/
|
|
1116
1249
|
/**
|
|
@@ -1137,27 +1270,27 @@ export = CatalogPlatformModel;
|
|
|
1137
1270
|
* @property {string[]} [visible_facets_keys]
|
|
1138
1271
|
*/
|
|
1139
1272
|
/**
|
|
1140
|
-
* @typedef
|
|
1273
|
+
* @typedef GetCollectionItemsResponseSchema
|
|
1141
1274
|
* @property {ProductFilters[]} [filters]
|
|
1142
|
-
* @property {
|
|
1275
|
+
* @property {ApplicationProductsSchema[]} [items]
|
|
1143
1276
|
* @property {Page} [page]
|
|
1144
1277
|
* @property {ProductSortOn[]} [sort_on]
|
|
1145
1278
|
*/
|
|
1146
1279
|
/**
|
|
1147
|
-
* @typedef
|
|
1280
|
+
* @typedef GetCollectionListingResponseSchema
|
|
1148
1281
|
* @property {CollectionListingFilter} [filters]
|
|
1149
1282
|
* @property {GetCollectionDetailNest[]} [items]
|
|
1150
1283
|
* @property {Page} [page]
|
|
1151
1284
|
*/
|
|
1152
1285
|
/**
|
|
1153
|
-
* @typedef
|
|
1286
|
+
* @typedef GetCollectionQueryOptionResponseSchema
|
|
1154
1287
|
* @property {ProductFilters[]} [filters]
|
|
1155
1288
|
* @property {Object} operators
|
|
1156
1289
|
* @property {ProductSortOn[]} [sort_on]
|
|
1157
1290
|
*/
|
|
1158
1291
|
/**
|
|
1159
|
-
* @typedef
|
|
1160
|
-
* @property {
|
|
1292
|
+
* @typedef GetCompanySchema
|
|
1293
|
+
* @property {GetAddressSchema[]} [addresses]
|
|
1161
1294
|
* @property {string} [business_type]
|
|
1162
1295
|
* @property {string} [company_type]
|
|
1163
1296
|
* @property {UserSerializer2} [created_by]
|
|
@@ -1194,7 +1327,7 @@ export = CatalogPlatformModel;
|
|
|
1194
1327
|
* @property {string} [display]
|
|
1195
1328
|
*/
|
|
1196
1329
|
/**
|
|
1197
|
-
* @typedef
|
|
1330
|
+
* @typedef GetConfigMetadataResponseSchema
|
|
1198
1331
|
* @property {ConditionItem[]} [condition]
|
|
1199
1332
|
* @property {DataItem[]} data
|
|
1200
1333
|
* @property {Page} [page]
|
|
@@ -1206,7 +1339,7 @@ export = CatalogPlatformModel;
|
|
|
1206
1339
|
* @property {SortTypeItem[]} [sort]
|
|
1207
1340
|
*/
|
|
1208
1341
|
/**
|
|
1209
|
-
* @typedef
|
|
1342
|
+
* @typedef GetConfigResponseSchema
|
|
1210
1343
|
* @property {Object[]} data
|
|
1211
1344
|
* @property {PageResponseType} page
|
|
1212
1345
|
*/
|
|
@@ -1238,7 +1371,7 @@ export = CatalogPlatformModel;
|
|
|
1238
1371
|
* @property {DimensionResponse1} [dimension]
|
|
1239
1372
|
* @property {string} [expiration_date]
|
|
1240
1373
|
* @property {string} [id]
|
|
1241
|
-
* @property {
|
|
1374
|
+
* @property {Identifier} [identifier]
|
|
1242
1375
|
* @property {string} [inventory_updated_on]
|
|
1243
1376
|
* @property {boolean} [is_set]
|
|
1244
1377
|
* @property {number} [item_id]
|
|
@@ -1251,9 +1384,9 @@ export = CatalogPlatformModel;
|
|
|
1251
1384
|
* @property {string} [seller_identifier]
|
|
1252
1385
|
* @property {string} [size]
|
|
1253
1386
|
* @property {string} [stage]
|
|
1254
|
-
* @property {
|
|
1387
|
+
* @property {ArticleStoreResponseSchema} [store]
|
|
1255
1388
|
* @property {string[]} [tags]
|
|
1256
|
-
* @property {
|
|
1389
|
+
* @property {TaxIdentifier} [tax_identifier]
|
|
1257
1390
|
* @property {number} [total_quantity]
|
|
1258
1391
|
* @property {string} [trace_id]
|
|
1259
1392
|
* @property {boolean} [track_inventory]
|
|
@@ -1262,33 +1395,33 @@ export = CatalogPlatformModel;
|
|
|
1262
1395
|
* @property {WeightResponse1} [weight]
|
|
1263
1396
|
*/
|
|
1264
1397
|
/**
|
|
1265
|
-
* @typedef
|
|
1398
|
+
* @typedef GetInventoriesResponseSchema
|
|
1266
1399
|
* @property {GetInventories[]} [items]
|
|
1267
1400
|
* @property {Page} [page]
|
|
1268
1401
|
*/
|
|
1269
1402
|
/**
|
|
1270
|
-
* @typedef
|
|
1403
|
+
* @typedef GetLocationSchema
|
|
1271
1404
|
* @property {Object} [_custom_json]
|
|
1272
|
-
* @property {
|
|
1405
|
+
* @property {GetAddressSchema} address
|
|
1273
1406
|
* @property {string} code
|
|
1274
|
-
* @property {
|
|
1407
|
+
* @property {GetCompanySchema} [company]
|
|
1275
1408
|
* @property {SellerPhoneNumber[]} [contact_numbers]
|
|
1276
1409
|
* @property {UserSerializer3} [created_by]
|
|
1277
1410
|
* @property {string} [created_on]
|
|
1278
1411
|
* @property {string} display_name
|
|
1279
1412
|
* @property {Document[]} [documents]
|
|
1280
|
-
* @property {
|
|
1413
|
+
* @property {InvoiceDetailsSchema} [gst_credentials]
|
|
1281
1414
|
* @property {LocationIntegrationType} [integration_type]
|
|
1282
|
-
* @property {
|
|
1415
|
+
* @property {LocationManagerSchema} [manager]
|
|
1283
1416
|
* @property {UserSerializer3} [modified_by]
|
|
1284
1417
|
* @property {string} [modified_on]
|
|
1285
1418
|
* @property {string} name
|
|
1286
1419
|
* @property {string[]} [notification_emails]
|
|
1287
1420
|
* @property {string} phone_number
|
|
1288
|
-
* @property {
|
|
1421
|
+
* @property {ProductReturnConfigSchema} [product_return_config]
|
|
1289
1422
|
* @property {string} [stage]
|
|
1290
1423
|
* @property {string} [store_type]
|
|
1291
|
-
* @property {
|
|
1424
|
+
* @property {LocationDayWiseSchema[]} [timing]
|
|
1292
1425
|
* @property {number} [uid]
|
|
1293
1426
|
* @property {UserSerializer3} [verified_by]
|
|
1294
1427
|
* @property {string} [verified_on]
|
|
@@ -1300,7 +1433,7 @@ export = CatalogPlatformModel;
|
|
|
1300
1433
|
* @property {Page} page
|
|
1301
1434
|
*/
|
|
1302
1435
|
/**
|
|
1303
|
-
* @typedef
|
|
1436
|
+
* @typedef GetProductBundleCreateResponseSchema
|
|
1304
1437
|
* @property {string} choice
|
|
1305
1438
|
* @property {number} [company_id]
|
|
1306
1439
|
* @property {Object} [created_by]
|
|
@@ -1318,12 +1451,12 @@ export = CatalogPlatformModel;
|
|
|
1318
1451
|
* @property {string} slug
|
|
1319
1452
|
*/
|
|
1320
1453
|
/**
|
|
1321
|
-
* @typedef
|
|
1322
|
-
* @property {
|
|
1454
|
+
* @typedef GetProductBundleListingResponseSchema
|
|
1455
|
+
* @property {GetProductBundleCreateResponseSchema[]} [items]
|
|
1323
1456
|
* @property {Page} [page]
|
|
1324
1457
|
*/
|
|
1325
1458
|
/**
|
|
1326
|
-
* @typedef
|
|
1459
|
+
* @typedef GetProductBundleResponseSchema
|
|
1327
1460
|
* @property {string} [choice]
|
|
1328
1461
|
* @property {number} [company_id]
|
|
1329
1462
|
* @property {boolean} [is_active]
|
|
@@ -1348,7 +1481,7 @@ export = CatalogPlatformModel;
|
|
|
1348
1481
|
* @property {Size[]} [sizes]
|
|
1349
1482
|
*/
|
|
1350
1483
|
/**
|
|
1351
|
-
* @typedef
|
|
1484
|
+
* @typedef GetCollectionDetailResponseSchema
|
|
1352
1485
|
* @property {Object} [_custom_json]
|
|
1353
1486
|
* @property {Object} [_locale_language]
|
|
1354
1487
|
* @property {CollectionSchedule} [_schedule]
|
|
@@ -1380,13 +1513,13 @@ export = CatalogPlatformModel;
|
|
|
1380
1513
|
* @property {string} [message]
|
|
1381
1514
|
*/
|
|
1382
1515
|
/**
|
|
1383
|
-
* @typedef
|
|
1516
|
+
* @typedef GetQueryFiltersKeysResponseSchema
|
|
1384
1517
|
* @property {ProductFiltersKeysOnly[]} [filters]
|
|
1385
1518
|
* @property {Object} operators
|
|
1386
1519
|
* @property {ProductSortOn[]} [sort_on]
|
|
1387
1520
|
*/
|
|
1388
1521
|
/**
|
|
1389
|
-
* @typedef
|
|
1522
|
+
* @typedef GetQueryFiltersResponseSchema
|
|
1390
1523
|
* @property {ProductFilters[]} [filters]
|
|
1391
1524
|
* @property {Object} operators
|
|
1392
1525
|
* @property {ProductSortOn[]} [sort_on]
|
|
@@ -1445,18 +1578,16 @@ export = CatalogPlatformModel;
|
|
|
1445
1578
|
* @property {number} [uid]
|
|
1446
1579
|
*/
|
|
1447
1580
|
/**
|
|
1448
|
-
* @typedef
|
|
1581
|
+
* @typedef GetSearchConfigurationResponseSchema
|
|
1449
1582
|
* @property {string} application_id - The application id where custom search
|
|
1450
1583
|
* configuration is set
|
|
1451
1584
|
* @property {number} company_id - The company id where custom search configuration is set
|
|
1452
|
-
* @property {
|
|
1453
|
-
* configuration.
|
|
1585
|
+
* @property {UserSchema} [created_by] - The user who created the search configuration.
|
|
1454
1586
|
* @property {string} [created_on] - The date and time when the search
|
|
1455
1587
|
* configuration was created.
|
|
1456
1588
|
* @property {boolean} [is_proximity_enabled] - Flag indicating if proximity
|
|
1457
1589
|
* search is enabled for this attribute.
|
|
1458
|
-
* @property {
|
|
1459
|
-
* configuration.
|
|
1590
|
+
* @property {UserSchema} [modified_by] - The user who modified the search configuration.
|
|
1460
1591
|
* @property {string} [modified_on] - The date and time when the search
|
|
1461
1592
|
* configuration was last modified.
|
|
1462
1593
|
* @property {number} [proximity] - Proximity distance configuration
|
|
@@ -1473,12 +1604,12 @@ export = CatalogPlatformModel;
|
|
|
1473
1604
|
* @property {string[]} [words]
|
|
1474
1605
|
*/
|
|
1475
1606
|
/**
|
|
1476
|
-
* @typedef
|
|
1607
|
+
* @typedef GetSearchWordsDetailResponseSchema
|
|
1477
1608
|
* @property {GetSearchWordsData} [items]
|
|
1478
1609
|
* @property {Page} [page]
|
|
1479
1610
|
*/
|
|
1480
1611
|
/**
|
|
1481
|
-
* @typedef
|
|
1612
|
+
* @typedef GetSearchWordsResponseSchema
|
|
1482
1613
|
* @property {GetSearchWordsData[]} [items]
|
|
1483
1614
|
* @property {Page} [page]
|
|
1484
1615
|
*/
|
|
@@ -1496,7 +1627,7 @@ export = CatalogPlatformModel;
|
|
|
1496
1627
|
* @property {Meta} [meta]
|
|
1497
1628
|
*/
|
|
1498
1629
|
/**
|
|
1499
|
-
* @typedef
|
|
1630
|
+
* @typedef HSNCodesResponseSchema
|
|
1500
1631
|
* @property {HSNData} [data]
|
|
1501
1632
|
* @property {string} [message]
|
|
1502
1633
|
*/
|
|
@@ -1535,7 +1666,7 @@ export = CatalogPlatformModel;
|
|
|
1535
1666
|
/**
|
|
1536
1667
|
* @typedef HsnCodesListingResponseSchemaV2
|
|
1537
1668
|
* @property {HSNDataInsertV2[]} [items]
|
|
1538
|
-
* @property {
|
|
1669
|
+
* @property {PageResponseSchema} [page]
|
|
1539
1670
|
*/
|
|
1540
1671
|
/**
|
|
1541
1672
|
* @typedef HsnCodesObject
|
|
@@ -1555,7 +1686,7 @@ export = CatalogPlatformModel;
|
|
|
1555
1686
|
/**
|
|
1556
1687
|
* @typedef HsnUpsert
|
|
1557
1688
|
* @property {number} company_id - The ID of the company.
|
|
1558
|
-
* @property {string} hs2_code - The HS2 code.
|
|
1689
|
+
* @property {string} [hs2_code] - The HS2 code.
|
|
1559
1690
|
* @property {string} hsn_code - The HSN code.
|
|
1560
1691
|
* @property {boolean} [is_active] - Flag indicating whether the entry is active.
|
|
1561
1692
|
* @property {number} tax1 - The first tax rate.
|
|
@@ -1601,7 +1732,7 @@ export = CatalogPlatformModel;
|
|
|
1601
1732
|
* @property {string} store_code
|
|
1602
1733
|
*/
|
|
1603
1734
|
/**
|
|
1604
|
-
* @typedef
|
|
1735
|
+
* @typedef InventoryBulkRequestSchema
|
|
1605
1736
|
* @property {string} batch_id
|
|
1606
1737
|
* @property {number} company_id
|
|
1607
1738
|
* @property {InventoryJobPayload[]} sizes
|
|
@@ -1613,7 +1744,7 @@ export = CatalogPlatformModel;
|
|
|
1613
1744
|
* @property {boolean} [multivalues]
|
|
1614
1745
|
*/
|
|
1615
1746
|
/**
|
|
1616
|
-
* @typedef
|
|
1747
|
+
* @typedef InventoryCreateRequestSchema
|
|
1617
1748
|
* @property {string[]} [data] - The list of attributes that you want to extract
|
|
1618
1749
|
* in the export job.
|
|
1619
1750
|
* @property {InventoryExportFilter} filters - This filters that are applied for
|
|
@@ -1654,9 +1785,9 @@ export = CatalogPlatformModel;
|
|
|
1654
1785
|
* @property {string} [url] - URL odf the exported file.
|
|
1655
1786
|
*/
|
|
1656
1787
|
/**
|
|
1657
|
-
* @typedef
|
|
1658
|
-
* @property {
|
|
1659
|
-
* all the jobs.
|
|
1788
|
+
* @typedef InventoryExportJobListResponseSchema
|
|
1789
|
+
* @property {InventoryJobDetailResponseSchema} items - This is the list/history
|
|
1790
|
+
* of all the jobs.
|
|
1660
1791
|
* @property {Page} [page]
|
|
1661
1792
|
*/
|
|
1662
1793
|
/**
|
|
@@ -1666,16 +1797,16 @@ export = CatalogPlatformModel;
|
|
|
1666
1797
|
* @property {string} operators - Condition for the quantity that needs to be exported.
|
|
1667
1798
|
*/
|
|
1668
1799
|
/**
|
|
1669
|
-
* @typedef
|
|
1800
|
+
* @typedef InventoryExportRequestSchema
|
|
1670
1801
|
* @property {number[]} [brand]
|
|
1671
1802
|
* @property {number[]} [store]
|
|
1672
1803
|
* @property {string} [type]
|
|
1673
1804
|
*/
|
|
1674
1805
|
/**
|
|
1675
|
-
* @typedef
|
|
1806
|
+
* @typedef InventoryExportResponseSchema
|
|
1676
1807
|
* @property {string} [created_by] - The user that created the job.
|
|
1677
1808
|
* @property {string} [created_on] - Creation datetime of the job
|
|
1678
|
-
* @property {
|
|
1809
|
+
* @property {Filters} [filters]
|
|
1679
1810
|
* @property {string} [modified_on] - Modification date of the job
|
|
1680
1811
|
* @property {string[]} [notification_emails] - The notification emails for the job.
|
|
1681
1812
|
* @property {number} seller_id - The seller id that needs to be exported.
|
|
@@ -1689,7 +1820,7 @@ export = CatalogPlatformModel;
|
|
|
1689
1820
|
* @property {string} message - It is the message of the activity performed.
|
|
1690
1821
|
*/
|
|
1691
1822
|
/**
|
|
1692
|
-
* @typedef
|
|
1823
|
+
* @typedef InventoryJobDetailResponseSchema
|
|
1693
1824
|
* @property {UserDetail} [cancelled_by] - This is the user detail of the user
|
|
1694
1825
|
* who cancelled the job.
|
|
1695
1826
|
* @property {string} [cancelled_on] - This is the timestamp of the cacellation
|
|
@@ -1761,7 +1892,7 @@ export = CatalogPlatformModel;
|
|
|
1761
1892
|
* @property {string} [trace_id] - The trace ID of the inventory payload.
|
|
1762
1893
|
*/
|
|
1763
1894
|
/**
|
|
1764
|
-
* @typedef
|
|
1895
|
+
* @typedef InventoryRequestSchema
|
|
1765
1896
|
* @property {number} company_id
|
|
1766
1897
|
* @property {ItemQuery} item
|
|
1767
1898
|
* @property {InvSize[]} sizes
|
|
@@ -1773,7 +1904,7 @@ export = CatalogPlatformModel;
|
|
|
1773
1904
|
* @property {InventoryPayload[]} [payload] - The list of inventory payloads.
|
|
1774
1905
|
*/
|
|
1775
1906
|
/**
|
|
1776
|
-
* @typedef
|
|
1907
|
+
* @typedef InventoryResponseSchema
|
|
1777
1908
|
* @property {string} [currency]
|
|
1778
1909
|
* @property {Object} [identifiers]
|
|
1779
1910
|
* @property {string} [inventory_updated_on]
|
|
@@ -1795,16 +1926,16 @@ export = CatalogPlatformModel;
|
|
|
1795
1926
|
*/
|
|
1796
1927
|
/**
|
|
1797
1928
|
* @typedef InventoryResponsePaginated
|
|
1798
|
-
* @property {
|
|
1929
|
+
* @property {InventoryResponseSchema[]} [items]
|
|
1799
1930
|
* @property {Page} [page]
|
|
1800
1931
|
*/
|
|
1801
1932
|
/**
|
|
1802
1933
|
* @typedef InventorySellerIdentifierResponsePaginated
|
|
1803
|
-
* @property {
|
|
1934
|
+
* @property {InventorySellerResponseSchema[]} [items]
|
|
1804
1935
|
* @property {Page} [page]
|
|
1805
1936
|
*/
|
|
1806
1937
|
/**
|
|
1807
|
-
* @typedef
|
|
1938
|
+
* @typedef InventorySellerResponseSchema
|
|
1808
1939
|
* @property {Object} [_custom_json] - Custom JSON data for the article.
|
|
1809
1940
|
* @property {string} [added_on_store] - The date and time when the article was
|
|
1810
1941
|
* added to the store.
|
|
@@ -1812,7 +1943,7 @@ export = CatalogPlatformModel;
|
|
|
1812
1943
|
* @property {CompanyMeta} company - The metadata of the company.
|
|
1813
1944
|
* @property {string} country_of_origin - The country of origin of the article.
|
|
1814
1945
|
* @property {string} [created_by] - The user who created the article.
|
|
1815
|
-
* @property {
|
|
1946
|
+
* @property {DimensionResponseSchema} dimension - The dimensions of the article.
|
|
1816
1947
|
* @property {string} [expiration_date] - The expiration date of the article.
|
|
1817
1948
|
* @property {boolean} fragile - Indicates if the article is fragile.
|
|
1818
1949
|
* @property {string} fynd_article_code - The Fynd article code.
|
|
@@ -1822,7 +1953,7 @@ export = CatalogPlatformModel;
|
|
|
1822
1953
|
* @property {boolean} [is_active] - Indicates if the article is active.
|
|
1823
1954
|
* @property {boolean} [is_set]
|
|
1824
1955
|
* @property {number} item_id - The ID of the item.
|
|
1825
|
-
* @property {
|
|
1956
|
+
* @property {ManufacturerResponseSchema} manufacturer - The manufacturer of the article.
|
|
1826
1957
|
* @property {Object} [meta] - Additional metadata for the article.
|
|
1827
1958
|
* @property {string} [modified_by] - The user who modified the article.
|
|
1828
1959
|
* @property {PriceMeta} price - The price metadata of the article.
|
|
@@ -1835,14 +1966,14 @@ export = CatalogPlatformModel;
|
|
|
1835
1966
|
* @property {string} [stage] - The stage of the article.
|
|
1836
1967
|
* @property {StoreMeta} store - The metadata of the store.
|
|
1837
1968
|
* @property {string[]} [tags] - The tags associated with the article.
|
|
1838
|
-
* @property {
|
|
1969
|
+
* @property {TaxIdentifier} [tax_identifier]
|
|
1839
1970
|
* @property {number} total_quantity - The total quantity of the article.
|
|
1840
1971
|
* @property {string} [trace_id] - The trace ID of the article.
|
|
1841
1972
|
* @property {boolean} [track_inventory] - Indicates if the inventory is tracked
|
|
1842
1973
|
* for the article.
|
|
1843
1974
|
* @property {Trader1[]} [trader] - The traders associated with the article.
|
|
1844
1975
|
* @property {string} uid - The unique identifier of the article.
|
|
1845
|
-
* @property {
|
|
1976
|
+
* @property {WeightResponseSchema} weight - The weight of the article.
|
|
1846
1977
|
*/
|
|
1847
1978
|
/**
|
|
1848
1979
|
* @typedef InventorySet
|
|
@@ -1851,30 +1982,30 @@ export = CatalogPlatformModel;
|
|
|
1851
1982
|
* @property {SizeDistribution} size_distribution
|
|
1852
1983
|
*/
|
|
1853
1984
|
/**
|
|
1854
|
-
* @typedef
|
|
1985
|
+
* @typedef InventoryStockResponseSchema
|
|
1855
1986
|
* @property {Object[]} [items]
|
|
1856
1987
|
* @property {InventoryPage} page
|
|
1857
1988
|
*/
|
|
1858
1989
|
/**
|
|
1859
|
-
* @typedef
|
|
1990
|
+
* @typedef InventoryUpdateResponseSchema
|
|
1860
1991
|
* @property {InventoryResponseItem[]} [items]
|
|
1861
1992
|
* @property {string} message - It is the success message of the inventory update.
|
|
1862
1993
|
*/
|
|
1863
1994
|
/**
|
|
1864
|
-
* @typedef
|
|
1995
|
+
* @typedef InventoryValidationResponseSchema
|
|
1865
1996
|
* @property {Object} [data]
|
|
1866
1997
|
* @property {string} [message]
|
|
1867
1998
|
*/
|
|
1868
1999
|
/**
|
|
1869
|
-
* @typedef
|
|
2000
|
+
* @typedef InvoiceCredSchema
|
|
1870
2001
|
* @property {boolean} [enabled]
|
|
1871
2002
|
* @property {string} [password]
|
|
1872
2003
|
* @property {string} [username]
|
|
1873
2004
|
*/
|
|
1874
2005
|
/**
|
|
1875
|
-
* @typedef
|
|
1876
|
-
* @property {
|
|
1877
|
-
* @property {
|
|
2006
|
+
* @typedef InvoiceDetailsSchema
|
|
2007
|
+
* @property {InvoiceCredSchema} [e_invoice]
|
|
2008
|
+
* @property {InvoiceCredSchema} [e_waybill]
|
|
1878
2009
|
*/
|
|
1879
2010
|
/**
|
|
1880
2011
|
* @typedef ItemQuery
|
|
@@ -1923,30 +2054,29 @@ export = CatalogPlatformModel;
|
|
|
1923
2054
|
* @property {Object} [page]
|
|
1924
2055
|
*/
|
|
1925
2056
|
/**
|
|
1926
|
-
* @typedef
|
|
1927
|
-
* @property {
|
|
2057
|
+
* @typedef LocationDayWiseSchema
|
|
2058
|
+
* @property {LocationTimingSchema} [closing]
|
|
1928
2059
|
* @property {boolean} open
|
|
1929
|
-
* @property {
|
|
2060
|
+
* @property {LocationTimingSchema} [opening]
|
|
1930
2061
|
* @property {string} weekday
|
|
1931
2062
|
*/
|
|
1932
2063
|
/**
|
|
1933
2064
|
* @typedef LocationIntegrationType
|
|
1934
2065
|
* @property {string} [inventory]
|
|
1935
|
-
* @property {string} [order]
|
|
1936
2066
|
*/
|
|
1937
2067
|
/**
|
|
1938
|
-
* @typedef
|
|
1939
|
-
* @property {
|
|
2068
|
+
* @typedef LocationListSchema
|
|
2069
|
+
* @property {GetLocationSchema[]} [items]
|
|
1940
2070
|
* @property {Page} [page]
|
|
1941
2071
|
*/
|
|
1942
2072
|
/**
|
|
1943
|
-
* @typedef
|
|
2073
|
+
* @typedef LocationManagerSchema
|
|
1944
2074
|
* @property {string} [email]
|
|
1945
2075
|
* @property {SellerPhoneNumber} mobile_no
|
|
1946
2076
|
* @property {string} [name]
|
|
1947
2077
|
*/
|
|
1948
2078
|
/**
|
|
1949
|
-
* @typedef
|
|
2079
|
+
* @typedef LocationTimingSchema
|
|
1950
2080
|
* @property {number} [hour]
|
|
1951
2081
|
* @property {number} [minute]
|
|
1952
2082
|
*/
|
|
@@ -1964,7 +2094,7 @@ export = CatalogPlatformModel;
|
|
|
1964
2094
|
* @property {number} [minimum]
|
|
1965
2095
|
*/
|
|
1966
2096
|
/**
|
|
1967
|
-
* @typedef
|
|
2097
|
+
* @typedef ManufacturerResponseSchema
|
|
1968
2098
|
* @property {string} address - The address of the manufacturer.
|
|
1969
2099
|
* @property {boolean} is_default - Indicates if it is the default manufacturer.
|
|
1970
2100
|
* @property {string} name - The name of the manufacturer.
|
|
@@ -1977,9 +2107,14 @@ export = CatalogPlatformModel;
|
|
|
1977
2107
|
*/
|
|
1978
2108
|
/**
|
|
1979
2109
|
* @typedef Media
|
|
1980
|
-
* @property {Object} [meta]
|
|
1981
|
-
*
|
|
1982
|
-
* @property {string}
|
|
2110
|
+
* @property {Object} [meta] - A metadata object containing additional
|
|
2111
|
+
* information about the media, such as dimensions, format, or other relevant details.
|
|
2112
|
+
* @property {string} [type] - The type of media.
|
|
2113
|
+
* @property {string} url - The URL where the media can be accessed.
|
|
2114
|
+
* @property {string} [alt] - The alternative text for the media, used for
|
|
2115
|
+
* accessibility and as a fallback when the media cannot be displayed.
|
|
2116
|
+
* @property {string} [thumbnail] - The URL of the thumbnail image, typically a
|
|
2117
|
+
* smaller or lower-resolution version of the main media.
|
|
1983
2118
|
*/
|
|
1984
2119
|
/**
|
|
1985
2120
|
* @typedef Media1
|
|
@@ -2000,29 +2135,29 @@ export = CatalogPlatformModel;
|
|
|
2000
2135
|
* @property {Object[]} [values]
|
|
2001
2136
|
*/
|
|
2002
2137
|
/**
|
|
2003
|
-
* @typedef
|
|
2138
|
+
* @typedef MetaDataListingFilterMetaResponseSchema
|
|
2004
2139
|
* @property {string} [display]
|
|
2005
2140
|
* @property {string[]} [filter_types]
|
|
2006
2141
|
* @property {string} [key]
|
|
2007
2142
|
* @property {Object[]} [units]
|
|
2008
2143
|
*/
|
|
2009
2144
|
/**
|
|
2010
|
-
* @typedef
|
|
2011
|
-
* @property {
|
|
2145
|
+
* @typedef MetaDataListingFilterResponseSchema
|
|
2146
|
+
* @property {MetaDataListingFilterMetaResponseSchema[]} [data]
|
|
2012
2147
|
*/
|
|
2013
2148
|
/**
|
|
2014
|
-
* @typedef
|
|
2015
|
-
* @property {
|
|
2016
|
-
* @property {
|
|
2149
|
+
* @typedef MetaDataListingResponseSchema
|
|
2150
|
+
* @property {MetaDataListingFilterResponseSchema} filter
|
|
2151
|
+
* @property {MetaDataListingSortResponseSchema} sort
|
|
2017
2152
|
*/
|
|
2018
2153
|
/**
|
|
2019
|
-
* @typedef
|
|
2154
|
+
* @typedef MetaDataListingSortMetaResponseSchema
|
|
2020
2155
|
* @property {string} [display]
|
|
2021
2156
|
* @property {string} [key]
|
|
2022
2157
|
*/
|
|
2023
2158
|
/**
|
|
2024
|
-
* @typedef
|
|
2025
|
-
* @property {
|
|
2159
|
+
* @typedef MetaDataListingSortResponseSchema
|
|
2160
|
+
* @property {MetaDataListingSortMetaResponseSchema[]} [data]
|
|
2026
2161
|
*/
|
|
2027
2162
|
/**
|
|
2028
2163
|
* @typedef MetaFields
|
|
@@ -2038,7 +2173,7 @@ export = CatalogPlatformModel;
|
|
|
2038
2173
|
* @property {number} [value] - The value of the net quantity of the product.
|
|
2039
2174
|
*/
|
|
2040
2175
|
/**
|
|
2041
|
-
* @typedef
|
|
2176
|
+
* @typedef NetQuantityResponseSchema
|
|
2042
2177
|
* @property {string} [unit]
|
|
2043
2178
|
* @property {number} [value]
|
|
2044
2179
|
*/
|
|
@@ -2048,7 +2183,7 @@ export = CatalogPlatformModel;
|
|
|
2048
2183
|
* @property {string} [start]
|
|
2049
2184
|
*/
|
|
2050
2185
|
/**
|
|
2051
|
-
* @typedef
|
|
2186
|
+
* @typedef OptInPostRequestSchema
|
|
2052
2187
|
* @property {number[]} [brand_ids]
|
|
2053
2188
|
* @property {number} [company_id]
|
|
2054
2189
|
* @property {boolean} [enabled]
|
|
@@ -2080,7 +2215,7 @@ export = CatalogPlatformModel;
|
|
|
2080
2215
|
* @property {Page} [page]
|
|
2081
2216
|
*/
|
|
2082
2217
|
/**
|
|
2083
|
-
* @typedef
|
|
2218
|
+
* @typedef OwnerAppItemResponseSchema
|
|
2084
2219
|
* @property {Object} [alt_text]
|
|
2085
2220
|
* @property {boolean} [is_cod]
|
|
2086
2221
|
* @property {boolean} [is_gift]
|
|
@@ -2090,7 +2225,7 @@ export = CatalogPlatformModel;
|
|
|
2090
2225
|
* @property {MetaFields[]} [_custom_meta] - Custom meta fields for the item
|
|
2091
2226
|
*/
|
|
2092
2227
|
/**
|
|
2093
|
-
* @typedef
|
|
2228
|
+
* @typedef PTErrorResponseSchema
|
|
2094
2229
|
* @property {string} [code]
|
|
2095
2230
|
* @property {Object} [errors]
|
|
2096
2231
|
* @property {string} [message]
|
|
@@ -2108,7 +2243,7 @@ export = CatalogPlatformModel;
|
|
|
2108
2243
|
* @property {number} [size] - The number of items per page.
|
|
2109
2244
|
*/
|
|
2110
2245
|
/**
|
|
2111
|
-
* @typedef
|
|
2246
|
+
* @typedef PageResponseSchema
|
|
2112
2247
|
* @property {string} [current] - It is the current page of the page response schema.
|
|
2113
2248
|
* @property {boolean} [has_next] - It is the bool indicates if there is a next page.
|
|
2114
2249
|
* @property {boolean} [has_previous] - It is the bool indicates if there is a
|
|
@@ -2117,15 +2252,6 @@ export = CatalogPlatformModel;
|
|
|
2117
2252
|
* the filter.
|
|
2118
2253
|
* @property {number} [size] - It is the size of each page.
|
|
2119
2254
|
*/
|
|
2120
|
-
/**
|
|
2121
|
-
* @typedef PageResponse1
|
|
2122
|
-
* @property {number} [current]
|
|
2123
|
-
* @property {boolean} [has_next]
|
|
2124
|
-
* @property {boolean} [has_previous]
|
|
2125
|
-
* @property {number} [item_total]
|
|
2126
|
-
* @property {number} [size]
|
|
2127
|
-
* @property {string} [type]
|
|
2128
|
-
*/
|
|
2129
2255
|
/**
|
|
2130
2256
|
* @typedef PageResponseType
|
|
2131
2257
|
* @property {number} current
|
|
@@ -2141,13 +2267,6 @@ export = CatalogPlatformModel;
|
|
|
2141
2267
|
* @property {number} [min_effective]
|
|
2142
2268
|
* @property {number} [min_marked]
|
|
2143
2269
|
*/
|
|
2144
|
-
/**
|
|
2145
|
-
* @typedef Price1
|
|
2146
|
-
* @property {string} [currency_code]
|
|
2147
|
-
* @property {string} [currency_symbol]
|
|
2148
|
-
* @property {number} [max]
|
|
2149
|
-
* @property {number} [min]
|
|
2150
|
-
*/
|
|
2151
2270
|
/**
|
|
2152
2271
|
* @typedef PriceArticle
|
|
2153
2272
|
* @property {string} [currency]
|
|
@@ -2166,8 +2285,8 @@ export = CatalogPlatformModel;
|
|
|
2166
2285
|
* @property {string} [updated_at] - The date and time of the last update.
|
|
2167
2286
|
*/
|
|
2168
2287
|
/**
|
|
2169
|
-
* @typedef
|
|
2170
|
-
* @property {
|
|
2288
|
+
* @typedef ProdcutTemplateCategoriesResponseSchema
|
|
2289
|
+
* @property {CategoriesResponseSchema[]} [items]
|
|
2171
2290
|
* @property {Page} [page]
|
|
2172
2291
|
*/
|
|
2173
2292
|
/**
|
|
@@ -2211,20 +2330,20 @@ export = CatalogPlatformModel;
|
|
|
2211
2330
|
* @property {Object} [moq]
|
|
2212
2331
|
* @property {boolean} [multi_size]
|
|
2213
2332
|
* @property {string} [name]
|
|
2214
|
-
* @property {
|
|
2333
|
+
* @property {NetQuantityResponseSchema} [net_quantity]
|
|
2215
2334
|
* @property {number} [no_of_boxes]
|
|
2216
2335
|
* @property {string} [pending]
|
|
2217
2336
|
* @property {string} [primary_color]
|
|
2218
2337
|
* @property {string[]} [product_group_tag]
|
|
2219
2338
|
* @property {ProductPublished} [product_publish]
|
|
2220
|
-
* @property {
|
|
2339
|
+
* @property {ReturnConfigResponseSchema} [return_config]
|
|
2221
2340
|
* @property {string} [short_description]
|
|
2222
2341
|
* @property {string} [size_guide]
|
|
2223
2342
|
* @property {Object[]} [sizes]
|
|
2224
2343
|
* @property {string} [slug]
|
|
2225
2344
|
* @property {string} [stage]
|
|
2226
2345
|
* @property {string[]} [tags]
|
|
2227
|
-
* @property {
|
|
2346
|
+
* @property {TaxIdentifier} [tax_identifier]
|
|
2228
2347
|
* @property {Object} [teaser_tag]
|
|
2229
2348
|
* @property {string} [template_tag]
|
|
2230
2349
|
* @property {Trader[]} [trader]
|
|
@@ -2236,8 +2355,8 @@ export = CatalogPlatformModel;
|
|
|
2236
2355
|
* @property {string} [verified_on]
|
|
2237
2356
|
*/
|
|
2238
2357
|
/**
|
|
2239
|
-
* @typedef
|
|
2240
|
-
* @property {
|
|
2358
|
+
* @typedef ProductAttributesResponseSchema
|
|
2359
|
+
* @property {AttributeMasterSchema[]} items
|
|
2241
2360
|
*/
|
|
2242
2361
|
/**
|
|
2243
2362
|
* @typedef ProductBrand
|
|
@@ -2254,7 +2373,7 @@ export = CatalogPlatformModel;
|
|
|
2254
2373
|
* @property {Object} user
|
|
2255
2374
|
*/
|
|
2256
2375
|
/**
|
|
2257
|
-
* @typedef
|
|
2376
|
+
* @typedef ProductBulkRequestSchema
|
|
2258
2377
|
* @property {number} [cancelled]
|
|
2259
2378
|
* @property {Object[]} [cancelled_records]
|
|
2260
2379
|
* @property {number} [company_id]
|
|
@@ -2274,7 +2393,7 @@ export = CatalogPlatformModel;
|
|
|
2274
2393
|
*/
|
|
2275
2394
|
/**
|
|
2276
2395
|
* @typedef ProductBulkRequestList
|
|
2277
|
-
* @property {
|
|
2396
|
+
* @property {Object} [items]
|
|
2278
2397
|
* @property {Page} [page]
|
|
2279
2398
|
*/
|
|
2280
2399
|
/**
|
|
@@ -2287,7 +2406,7 @@ export = CatalogPlatformModel;
|
|
|
2287
2406
|
* @property {number} product_uid
|
|
2288
2407
|
*/
|
|
2289
2408
|
/**
|
|
2290
|
-
* @typedef
|
|
2409
|
+
* @typedef ProductBundleRequestSchema
|
|
2291
2410
|
* @property {string} choice
|
|
2292
2411
|
* @property {number} [company_id]
|
|
2293
2412
|
* @property {Object} [created_by]
|
|
@@ -2304,7 +2423,7 @@ export = CatalogPlatformModel;
|
|
|
2304
2423
|
* @property {string} slug
|
|
2305
2424
|
*/
|
|
2306
2425
|
/**
|
|
2307
|
-
* @typedef
|
|
2426
|
+
* @typedef ProductBundleUpdateRequestSchema
|
|
2308
2427
|
* @property {string} choice
|
|
2309
2428
|
* @property {number} [company_id]
|
|
2310
2429
|
* @property {boolean} is_active
|
|
@@ -2406,8 +2525,8 @@ export = CatalogPlatformModel;
|
|
|
2406
2525
|
* @property {string} [title]
|
|
2407
2526
|
*/
|
|
2408
2527
|
/**
|
|
2409
|
-
* @typedef
|
|
2410
|
-
* @property {
|
|
2528
|
+
* @typedef ProductDownloadsResponseSchema
|
|
2529
|
+
* @property {ProductTemplateExportResponseSchema[]} [items] - The items of the job.
|
|
2411
2530
|
* @property {Page} [page]
|
|
2412
2531
|
*/
|
|
2413
2532
|
/**
|
|
@@ -2416,7 +2535,7 @@ export = CatalogPlatformModel;
|
|
|
2416
2535
|
* @property {ProductFiltersValue[]} values
|
|
2417
2536
|
*/
|
|
2418
2537
|
/**
|
|
2419
|
-
* @typedef
|
|
2538
|
+
* @typedef GetQueryFiltersValuesResponseSchema
|
|
2420
2539
|
* @property {ProductFiltersValue[]} values
|
|
2421
2540
|
* @property {Page} page
|
|
2422
2541
|
*/
|
|
@@ -2448,41 +2567,7 @@ export = CatalogPlatformModel;
|
|
|
2448
2567
|
* @property {Object} value
|
|
2449
2568
|
*/
|
|
2450
2569
|
/**
|
|
2451
|
-
* @typedef
|
|
2452
|
-
* @property {Object} [attributes]
|
|
2453
|
-
* @property {ProductBrand} [brand]
|
|
2454
|
-
* @property {string} [color]
|
|
2455
|
-
* @property {string} [description]
|
|
2456
|
-
* @property {string} [discount]
|
|
2457
|
-
* @property {ProductDetailGroupedAttribute[]} [grouped_attributes]
|
|
2458
|
-
* @property {boolean} [has_variant]
|
|
2459
|
-
* @property {string[]} [highlights]
|
|
2460
|
-
* @property {string} [image_nature]
|
|
2461
|
-
* @property {string} [item_code]
|
|
2462
|
-
* @property {string} [item_type]
|
|
2463
|
-
* @property {Media[]} [medias]
|
|
2464
|
-
* @property {string} [name]
|
|
2465
|
-
* @property {ProductListingPrice} [price]
|
|
2466
|
-
* @property {string} [product_online_date]
|
|
2467
|
-
* @property {Object} [promo_meta]
|
|
2468
|
-
* @property {number} [rating]
|
|
2469
|
-
* @property {number} [rating_count]
|
|
2470
|
-
* @property {boolean} [sellable]
|
|
2471
|
-
* @property {string} [short_description]
|
|
2472
|
-
* @property {string[]} [similars]
|
|
2473
|
-
* @property {string} slug
|
|
2474
|
-
* @property {Object} [teaser_tag]
|
|
2475
|
-
* @property {string[]} [tryouts]
|
|
2476
|
-
* @property {string} [type]
|
|
2477
|
-
* @property {number} [uid]
|
|
2478
|
-
*/
|
|
2479
|
-
/**
|
|
2480
|
-
* @typedef ProductListingPrice
|
|
2481
|
-
* @property {Price1} [effective]
|
|
2482
|
-
* @property {Price1} [marked]
|
|
2483
|
-
*/
|
|
2484
|
-
/**
|
|
2485
|
-
* @typedef ProductListingResponse
|
|
2570
|
+
* @typedef ProductListingResponseSchema
|
|
2486
2571
|
* @property {Product[]} [items]
|
|
2487
2572
|
* @property {Page} [page]
|
|
2488
2573
|
*/
|
|
@@ -2507,12 +2592,12 @@ export = CatalogPlatformModel;
|
|
|
2507
2592
|
* @property {number} [product_online_date]
|
|
2508
2593
|
*/
|
|
2509
2594
|
/**
|
|
2510
|
-
* @typedef
|
|
2595
|
+
* @typedef ProductReturnConfigSchema
|
|
2511
2596
|
* @property {boolean} [on_same_store]
|
|
2512
2597
|
* @property {number} [store_uid]
|
|
2513
2598
|
*/
|
|
2514
2599
|
/**
|
|
2515
|
-
* @typedef
|
|
2600
|
+
* @typedef ProductReturnConfigBaseSchema
|
|
2516
2601
|
* @property {boolean} returnable - Boolean Flag for item returnable
|
|
2517
2602
|
* @property {number} time - Valid return time for an item
|
|
2518
2603
|
* @property {string} unit - Unit of return config days|hours
|
|
@@ -2558,20 +2643,20 @@ export = CatalogPlatformModel;
|
|
|
2558
2643
|
* @property {Object} [moq]
|
|
2559
2644
|
* @property {boolean} [multi_size]
|
|
2560
2645
|
* @property {string} [name]
|
|
2561
|
-
* @property {
|
|
2646
|
+
* @property {NetQuantityResponseSchema} [net_quantity]
|
|
2562
2647
|
* @property {number} [no_of_boxes]
|
|
2563
2648
|
* @property {string} [pending]
|
|
2564
2649
|
* @property {string} [primary_color]
|
|
2565
2650
|
* @property {string[]} [product_group_tag]
|
|
2566
2651
|
* @property {ProductPublish} [product_publish]
|
|
2567
|
-
* @property {
|
|
2652
|
+
* @property {ReturnConfigResponseSchema} [return_config]
|
|
2568
2653
|
* @property {string} [short_description]
|
|
2569
2654
|
* @property {string} [size_guide]
|
|
2570
2655
|
* @property {Object[]} [sizes]
|
|
2571
2656
|
* @property {string} [slug]
|
|
2572
2657
|
* @property {string} [stage]
|
|
2573
2658
|
* @property {string[]} [tags]
|
|
2574
|
-
* @property {
|
|
2659
|
+
* @property {TaxIdentifier} [tax_identifier]
|
|
2575
2660
|
* @property {Object} [teaser_tag]
|
|
2576
2661
|
* @property {string} [template_tag]
|
|
2577
2662
|
* @property {Trader[]} [trader]
|
|
@@ -2588,14 +2673,14 @@ export = CatalogPlatformModel;
|
|
|
2588
2673
|
* @property {number} min
|
|
2589
2674
|
*/
|
|
2590
2675
|
/**
|
|
2591
|
-
* @typedef
|
|
2676
|
+
* @typedef ProductSizeDeleteDataResponseSchema
|
|
2592
2677
|
* @property {number} [company_id]
|
|
2593
2678
|
* @property {number} [item_id]
|
|
2594
2679
|
* @property {string} [size]
|
|
2595
2680
|
*/
|
|
2596
2681
|
/**
|
|
2597
|
-
* @typedef
|
|
2598
|
-
* @property {
|
|
2682
|
+
* @typedef ProductSizeDeleteResponseSchema
|
|
2683
|
+
* @property {ProductSizeDeleteDataResponseSchema} [data]
|
|
2599
2684
|
* @property {boolean} [success]
|
|
2600
2685
|
*/
|
|
2601
2686
|
/**
|
|
@@ -2605,7 +2690,7 @@ export = CatalogPlatformModel;
|
|
|
2605
2690
|
* @property {string} [value]
|
|
2606
2691
|
*/
|
|
2607
2692
|
/**
|
|
2608
|
-
* @typedef
|
|
2693
|
+
* @typedef ProductTagsViewResponseSchema
|
|
2609
2694
|
* @property {string[]} [items]
|
|
2610
2695
|
*/
|
|
2611
2696
|
/**
|
|
@@ -2629,14 +2714,14 @@ export = CatalogPlatformModel;
|
|
|
2629
2714
|
*/
|
|
2630
2715
|
/**
|
|
2631
2716
|
* @typedef ProductTemplateDownloadsExport
|
|
2632
|
-
* @property {
|
|
2717
|
+
* @property {ProductTemplateExportFilterRequestSchema} [filters] - This is the
|
|
2633
2718
|
* filters of the file for the export.
|
|
2634
2719
|
* @property {string[]} [notification_emails] - The list of the emails to be
|
|
2635
2720
|
* notified after the completion of the job.
|
|
2636
2721
|
* @property {string} [type] - This is the type of the file for the export.
|
|
2637
2722
|
*/
|
|
2638
2723
|
/**
|
|
2639
|
-
* @typedef
|
|
2724
|
+
* @typedef ProductTemplateExportFilterRequestSchema
|
|
2640
2725
|
* @property {string[]} [brands] - The list of the brands that needs to be exported.
|
|
2641
2726
|
* @property {string[]} catalogue_types - The list of the type of the catalog
|
|
2642
2727
|
* such as set, standard and composite.
|
|
@@ -2647,7 +2732,7 @@ export = CatalogPlatformModel;
|
|
|
2647
2732
|
* to be exported.
|
|
2648
2733
|
*/
|
|
2649
2734
|
/**
|
|
2650
|
-
* @typedef
|
|
2735
|
+
* @typedef ProductTemplateExportResponseSchema
|
|
2651
2736
|
* @property {string} [completed_on] - Completion datetime of the job
|
|
2652
2737
|
* @property {UserInfo1} [created_by] - The user that created the job.
|
|
2653
2738
|
* @property {Object} [filters] - The filters that needs to be exported.
|
|
@@ -2669,7 +2754,7 @@ export = CatalogPlatformModel;
|
|
|
2669
2754
|
* @property {number} [uid]
|
|
2670
2755
|
*/
|
|
2671
2756
|
/**
|
|
2672
|
-
* @typedef
|
|
2757
|
+
* @typedef ProductVariantsResponseSchema
|
|
2673
2758
|
* @property {Page} [page]
|
|
2674
2759
|
* @property {ProductVariants[]} [variants]
|
|
2675
2760
|
*/
|
|
@@ -2748,7 +2833,7 @@ export = CatalogPlatformModel;
|
|
|
2748
2833
|
* @property {string} [unit]
|
|
2749
2834
|
*/
|
|
2750
2835
|
/**
|
|
2751
|
-
* @typedef
|
|
2836
|
+
* @typedef ReturnConfigResponseSchema
|
|
2752
2837
|
* @property {boolean} [returnable]
|
|
2753
2838
|
* @property {number} [time]
|
|
2754
2839
|
* @property {string} [unit]
|
|
@@ -2841,11 +2926,11 @@ export = CatalogPlatformModel;
|
|
|
2841
2926
|
* @property {string} size
|
|
2842
2927
|
*/
|
|
2843
2928
|
/**
|
|
2844
|
-
* @typedef
|
|
2929
|
+
* @typedef SingleCategoryResponseSchema
|
|
2845
2930
|
* @property {Category} [data]
|
|
2846
2931
|
*/
|
|
2847
2932
|
/**
|
|
2848
|
-
* @typedef
|
|
2933
|
+
* @typedef SingleProductResponseSchema
|
|
2849
2934
|
* @property {ProductSchemaV2} [data]
|
|
2850
2935
|
*/
|
|
2851
2936
|
/**
|
|
@@ -2860,7 +2945,7 @@ export = CatalogPlatformModel;
|
|
|
2860
2945
|
* @property {SetSize[]} sizes
|
|
2861
2946
|
*/
|
|
2862
2947
|
/**
|
|
2863
|
-
* @typedef
|
|
2948
|
+
* @typedef SizeGuideResponseSchema
|
|
2864
2949
|
* @property {boolean} [active]
|
|
2865
2950
|
* @property {number} [brand_id]
|
|
2866
2951
|
* @property {number} [company_id]
|
|
@@ -2876,7 +2961,7 @@ export = CatalogPlatformModel;
|
|
|
2876
2961
|
* @property {string} [title]
|
|
2877
2962
|
*/
|
|
2878
2963
|
/**
|
|
2879
|
-
* @typedef
|
|
2964
|
+
* @typedef StoreAssignResponseSchema
|
|
2880
2965
|
* @property {string} [_id]
|
|
2881
2966
|
* @property {ArticleAssignment1} article_assignment
|
|
2882
2967
|
* @property {number} [company_id]
|
|
@@ -2916,7 +3001,7 @@ export = CatalogPlatformModel;
|
|
|
2916
3001
|
* @property {number} id
|
|
2917
3002
|
*/
|
|
2918
3003
|
/**
|
|
2919
|
-
* @typedef
|
|
3004
|
+
* @typedef SuccessResponseSchema
|
|
2920
3005
|
* @property {boolean} [success]
|
|
2921
3006
|
*/
|
|
2922
3007
|
/**
|
|
@@ -2964,12 +3049,12 @@ export = CatalogPlatformModel;
|
|
|
2964
3049
|
* @property {Object} [template_validation]
|
|
2965
3050
|
*/
|
|
2966
3051
|
/**
|
|
2967
|
-
* @typedef
|
|
3052
|
+
* @typedef TemplatesResponseSchema
|
|
2968
3053
|
* @property {ProductTemplate} [items]
|
|
2969
3054
|
* @property {Page} [page]
|
|
2970
3055
|
*/
|
|
2971
3056
|
/**
|
|
2972
|
-
* @typedef
|
|
3057
|
+
* @typedef TemplatesValidationResponseSchema
|
|
2973
3058
|
* @property {TemplateValidationData} [data]
|
|
2974
3059
|
* @property {TemplateDetails} [template_details]
|
|
2975
3060
|
*/
|
|
@@ -3028,18 +3113,16 @@ export = CatalogPlatformModel;
|
|
|
3028
3113
|
* @property {string[]} [visible_facets_keys]
|
|
3029
3114
|
*/
|
|
3030
3115
|
/**
|
|
3031
|
-
* @typedef
|
|
3116
|
+
* @typedef UpdateSearchConfigurationRequestSchema
|
|
3032
3117
|
* @property {string} application_id - The application id where custom search
|
|
3033
3118
|
* configuration is set
|
|
3034
3119
|
* @property {number} company_id - The company id where custom search configuration is set
|
|
3035
|
-
* @property {
|
|
3036
|
-
* configuration.
|
|
3120
|
+
* @property {UserSchema} [created_by] - The user who created the search configuration.
|
|
3037
3121
|
* @property {string} [created_on] - The date and time when the search
|
|
3038
3122
|
* configuration was created.
|
|
3039
3123
|
* @property {boolean} [is_proximity_enabled] - Flag indicating if proximity
|
|
3040
3124
|
* search is enabled for this attribute.
|
|
3041
|
-
* @property {
|
|
3042
|
-
* configuration.
|
|
3125
|
+
* @property {UserSchema} [modified_by] - The user who modified the search configuration.
|
|
3043
3126
|
* @property {string} [modified_on] - The date and time when the search
|
|
3044
3127
|
* configuration was last modified.
|
|
3045
3128
|
* @property {number} [proximity] - Proximity distance configuration
|
|
@@ -3047,11 +3130,11 @@ export = CatalogPlatformModel;
|
|
|
3047
3130
|
* attributes defined on the application.
|
|
3048
3131
|
*/
|
|
3049
3132
|
/**
|
|
3050
|
-
* @typedef
|
|
3133
|
+
* @typedef UpdateSearchConfigurationResponseSchema
|
|
3051
3134
|
* @property {boolean} [success]
|
|
3052
3135
|
*/
|
|
3053
3136
|
/**
|
|
3054
|
-
* @typedef
|
|
3137
|
+
* @typedef CreateMarketplaceOptinResponseSchema
|
|
3055
3138
|
* @property {number[]} [store_ids]
|
|
3056
3139
|
* @property {number[]} [brand_ids]
|
|
3057
3140
|
* @property {number} [company_id]
|
|
@@ -3096,7 +3179,7 @@ export = CatalogPlatformModel;
|
|
|
3096
3179
|
* @property {string} [username] - The username of the user.
|
|
3097
3180
|
*/
|
|
3098
3181
|
/**
|
|
3099
|
-
* @typedef
|
|
3182
|
+
* @typedef UserSchema
|
|
3100
3183
|
* @property {string} [contact] - The contact information of the user.
|
|
3101
3184
|
* @property {string} [user_id] - The unique ID of the user.
|
|
3102
3185
|
* @property {string} [username] - The username of the user.
|
|
@@ -3155,7 +3238,7 @@ export = CatalogPlatformModel;
|
|
|
3155
3238
|
* @property {string} [username]
|
|
3156
3239
|
*/
|
|
3157
3240
|
/**
|
|
3158
|
-
* @typedef
|
|
3241
|
+
* @typedef WeightResponseSchema
|
|
3159
3242
|
* @property {boolean} is_default - Indicates if it is the default weight.
|
|
3160
3243
|
* @property {number} shipping - The shipping weight.
|
|
3161
3244
|
* @property {string} unit - The unit of weight.
|
|
@@ -3170,6 +3253,11 @@ export = CatalogPlatformModel;
|
|
|
3170
3253
|
* @property {string} [username]
|
|
3171
3254
|
* @property {string} [user_id]
|
|
3172
3255
|
*/
|
|
3256
|
+
/**
|
|
3257
|
+
* @typedef ModifiedBy
|
|
3258
|
+
* @property {string} [username]
|
|
3259
|
+
* @property {string} [user_id]
|
|
3260
|
+
*/
|
|
3173
3261
|
/**
|
|
3174
3262
|
* @typedef Marketplaces
|
|
3175
3263
|
* @property {number[]} [brand_ids]
|
|
@@ -3191,7 +3279,7 @@ export = CatalogPlatformModel;
|
|
|
3191
3279
|
* @property {Page} [page]
|
|
3192
3280
|
*/
|
|
3193
3281
|
/**
|
|
3194
|
-
* @typedef
|
|
3282
|
+
* @typedef UpdateMarketplaceOptinRequestSchema
|
|
3195
3283
|
* @property {number[]} [brand_ids]
|
|
3196
3284
|
* @property {number} [company_id]
|
|
3197
3285
|
* @property {boolean} [enabled]
|
|
@@ -3200,7 +3288,7 @@ export = CatalogPlatformModel;
|
|
|
3200
3288
|
* @property {number[]} [store_ids]
|
|
3201
3289
|
*/
|
|
3202
3290
|
/**
|
|
3203
|
-
* @typedef
|
|
3291
|
+
* @typedef UpdateMarketplaceOptinResponseSchema
|
|
3204
3292
|
* @property {number[]} [brand_ids]
|
|
3205
3293
|
* @property {number} [company_id]
|
|
3206
3294
|
* @property {string} [app_id]
|
|
@@ -3211,6 +3299,27 @@ export = CatalogPlatformModel;
|
|
|
3211
3299
|
* @property {CreatedBy} [created_by]
|
|
3212
3300
|
* @property {CreatedBy} [modified_by]
|
|
3213
3301
|
*/
|
|
3302
|
+
/**
|
|
3303
|
+
* @typedef Identifier
|
|
3304
|
+
* @property {string} [ean] - The European Article Number (EAN) of the item.
|
|
3305
|
+
* @property {string} [sku_code] - The Stock Keeping Unit (SKU) code of the item.
|
|
3306
|
+
* @property {string} [alu] - The Alternative Lookup Product of the item.
|
|
3307
|
+
* @property {string} [upc] - Universal Product Code of the item.
|
|
3308
|
+
* @property {string} [isbn] - ISBN (International Standard Book Number) is a
|
|
3309
|
+
* unique identifier used globally to identify books and other non-periodical
|
|
3310
|
+
* publications
|
|
3311
|
+
*/
|
|
3312
|
+
/**
|
|
3313
|
+
* @typedef Filters
|
|
3314
|
+
* @property {string[]} [brands] - The list of all the brands selected.
|
|
3315
|
+
* @property {string} [from_date] - The modified-on date from which the data
|
|
3316
|
+
* needs to be exported.
|
|
3317
|
+
* @property {InventoryExportQuantityFilter} [quantity] - The quantity range
|
|
3318
|
+
* that needs to be exported.
|
|
3319
|
+
* @property {string[]} [stores] - The list of all the stores selected.
|
|
3320
|
+
* @property {string} [to_date] - The modified-on date till when the data needs
|
|
3321
|
+
* to be exported.
|
|
3322
|
+
*/
|
|
3214
3323
|
/**
|
|
3215
3324
|
* @typedef ActionPage
|
|
3216
3325
|
* @property {Object} [params] - Parameters that should be considered in path.
|
|
@@ -3218,6 +3327,68 @@ export = CatalogPlatformModel;
|
|
|
3218
3327
|
* @property {string} [url] - The URL for the action.
|
|
3219
3328
|
* @property {PageType} type
|
|
3220
3329
|
*/
|
|
3330
|
+
/**
|
|
3331
|
+
* @typedef ProductListingPrice
|
|
3332
|
+
* @property {Price1} [effective]
|
|
3333
|
+
* @property {Price1} [marked]
|
|
3334
|
+
* @property {Price1} [selling]
|
|
3335
|
+
*/
|
|
3336
|
+
/**
|
|
3337
|
+
* @typedef Price1
|
|
3338
|
+
* @property {CurrencyCodeEnum} [currency_code]
|
|
3339
|
+
* @property {string} [currency_symbol]
|
|
3340
|
+
* @property {number} [max]
|
|
3341
|
+
* @property {number} [min]
|
|
3342
|
+
*/
|
|
3343
|
+
/**
|
|
3344
|
+
* @typedef MultiCategoriesSchema
|
|
3345
|
+
* @property {number} [l1] - The ID of the Level 1 (L1) category of the product.
|
|
3346
|
+
* @property {number} [l2] - The ID of the Level 2 (L2) category of the product.
|
|
3347
|
+
* @property {number} [l3] - The ID of the Level 3 (L3) category of the product.
|
|
3348
|
+
* @property {boolean} [is_active] - Indicates whether the L3 category of the
|
|
3349
|
+
* product is currently active.
|
|
3350
|
+
* @property {number} [department] - The department associated with the L3
|
|
3351
|
+
* category of the product.
|
|
3352
|
+
*/
|
|
3353
|
+
/**
|
|
3354
|
+
* @typedef CustomMeta
|
|
3355
|
+
* @property {string} key - The key of the metadata. Should be a non-empty
|
|
3356
|
+
* string and length should not exceed 30 characters.
|
|
3357
|
+
* @property {string} value - The value of the metadata. Should be a non-empty
|
|
3358
|
+
* string and length should not exceed 100 characters.
|
|
3359
|
+
*/
|
|
3360
|
+
/**
|
|
3361
|
+
* @typedef {| "browntape_v2"
|
|
3362
|
+
* | "easyops"
|
|
3363
|
+
* | "holisol"
|
|
3364
|
+
* | "logic"
|
|
3365
|
+
* | "tcnss"
|
|
3366
|
+
* | "increff"
|
|
3367
|
+
* | "liberty"
|
|
3368
|
+
* | "browntape"
|
|
3369
|
+
* | "easyecom"
|
|
3370
|
+
* | "major_brands"
|
|
3371
|
+
* | "jiopos"
|
|
3372
|
+
* | "jockey"
|
|
3373
|
+
* | "omsguru"
|
|
3374
|
+
* | "pulse"
|
|
3375
|
+
* | "sellerware"
|
|
3376
|
+
* | "unicommerce"
|
|
3377
|
+
* | "ethos"
|
|
3378
|
+
* | "sarasuole"
|
|
3379
|
+
* | "vajor"
|
|
3380
|
+
* | "vinculum"
|
|
3381
|
+
* | "jiomart_pos"
|
|
3382
|
+
* | "rbl_sap"
|
|
3383
|
+
* | "ginesys-pos"
|
|
3384
|
+
* | "fyndpos"
|
|
3385
|
+
* | "jiopos_openapi"
|
|
3386
|
+
* | "jiopos_hamleys"
|
|
3387
|
+
* | "westelm"
|
|
3388
|
+
* | "rbl_sap_furniture"
|
|
3389
|
+
* | "vinculum_v2"
|
|
3390
|
+
* | "wizapp"} order
|
|
3391
|
+
*/
|
|
3221
3392
|
/**
|
|
3222
3393
|
* @typedef {| "about-us"
|
|
3223
3394
|
* | "addresses"
|
|
@@ -3265,12 +3436,14 @@ export = CatalogPlatformModel;
|
|
|
3265
3436
|
* | "register"
|
|
3266
3437
|
* | "shipping-policy"
|
|
3267
3438
|
* | "return-policy"
|
|
3268
|
-
* | "order-status"
|
|
3439
|
+
* | "order-status"
|
|
3440
|
+
* | "locate-us"} PageType
|
|
3269
3441
|
*/
|
|
3442
|
+
/** @typedef {"INR" | "USD" | "EUR"} CurrencyCodeEnum */
|
|
3270
3443
|
declare class CatalogPlatformModel {
|
|
3271
3444
|
}
|
|
3272
3445
|
declare namespace CatalogPlatformModel {
|
|
3273
|
-
export { Action, AllSizes,
|
|
3446
|
+
export { Action, AllSizes, AllowSingleRequestSchema, AppCatalogConfiguration, AppCategoryReturnConfig, AppCategoryReturnConfigResponseSchema, AppConfiguration, AppConfigurationDetail, AppConfigurationsSort, ApplicationBrandJson, ApplicationCategoryJson, ApplicationDepartment, ApplicationDepartmentJson, ApplicationDepartmentListingResponseSchema, ApplicationItemMOQ, 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, ApplicationCategoryListingSchema, ApplicationCategoryListingItemSchema, ApplicationBrandListingSchema, ApplicationBrandListingItemSchema, BrandListingResponseSchema, BrandMeta, BrandMeta1, BulkAssetResponseSchema, BulkHsnResponseSchema, BulkHsnUpsert, BulkInventoryGet, FailedRecord, BulkInventoryGetItems, 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, CompanyMeta1, 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, DimensionResponse1, Document, EntityConfiguration, ErrorResponseSchema, FilerList, RawProduct, RawProductListingResponseSchema, GTIN, AttributeDetail, GetAddressSchema, GetAllSizes, GetAppCatalogConfiguration, GetAppCatalogEntityConfiguration, GetAutocompleteWordsData, GetAutocompleteWordsResponseSchema, GetCatalogConfigurationDetailsProduct, GetCatalogConfigurationDetailsSchemaListing, GetCatalogConfigurationMetaData, GetCollectionDetailNest, GetCollectionItemsResponseSchema, GetCollectionListingResponseSchema, GetCollectionQueryOptionResponseSchema, GetCompanySchema, ConditionItem, DataItem, ValueTypeItem, SortTypeItem, GetConfigMetadataResponseSchema, GetConfigMetadataValues, GetConfigResponseSchema, GetDepartment, GetInventories, GetInventoriesResponseSchema, GetLocationSchema, GetOptInPlatform, GetProductBundleCreateResponseSchema, GetProductBundleListingResponseSchema, GetProductBundleResponseSchema, GetProducts, GetCollectionDetailResponseSchema, CommonResponseSchemaCollection, GetQueryFiltersKeysResponseSchema, GetQueryFiltersResponseSchema, GetCollectionItemsResponseSchemaV2, Page1, CollectionItemSchemaV2, CollectionItemUpdateSchema, CollectionQuerySchemaV2, ProductDetailV2, GetSearchConfigurationResponseSchema, GetSearchWordsData, GetSearchWordsDetailResponseSchema, GetSearchWordsResponseSchema, GlobalValidation, Guide, HSNCodesResponseSchema, HSNData, HSNDataInsertV2, Hierarchy, HsnCode, HsnCodesListingResponseSchemaV2, HsnCodesObject, HsnUpsert, Image, ImageUrls, InvSize, InventoryBulkRequestSchema, InventoryConfig, InventoryCreateRequestSchema, InventoryExportAdvanceOption, InventoryExportFilter, InventoryExportJob, InventoryExportJobListResponseSchema, InventoryExportQuantityFilter, InventoryExportRequestSchema, InventoryExportResponseSchema, InventoryFailedReason, InventoryJobDetailResponseSchema, InventoryJobFilters, InventoryJobPayload, InventoryPage, InventoryPayload, InventoryRequestSchema, InventoryRequestSchemaV2, InventoryResponseSchema, InventoryResponseItem, InventoryResponsePaginated, InventorySellerIdentifierResponsePaginated, InventorySellerResponseSchema, InventorySet, InventoryStockResponseSchema, InventoryUpdateResponseSchema, InventoryValidationResponseSchema, InvoiceCredSchema, InvoiceDetailsSchema, ItemQuery, Items, LimitedProductData, ListSizeGuide, LocationDayWiseSchema, LocationIntegrationType, LocationListSchema, LocationManagerSchema, LocationTimingSchema, Logo, MOQData, ManufacturerResponseSchema, ManufacturerResponse1, Media, Media1, Media2, Meta, MetaDataListingFilterMetaResponseSchema, MetaDataListingFilterResponseSchema, MetaDataListingResponseSchema, MetaDataListingSortMetaResponseSchema, MetaDataListingSortResponseSchema, MetaFields, NetQuantity, NetQuantityResponseSchema, NextSchedule, OptInPostRequestSchema, OptinCompanyBrandDetailsView, OptinCompanyDetail, OptinCompanyMetrics, OptinStoreDetails, OwnerAppItemResponseSchema, PTErrorResponseSchema, Page, PageResponseSchema, PageResponseType, Price, PriceArticle, PriceMeta, ProdcutTemplateCategoriesResponseSchema, Product, ProductAttributesResponseSchema, ProductBrand, ProductBulkAssets, ProductBulkRequestSchema, ProductBulkRequestList, ProductBundleItem, ProductBundleRequestSchema, ProductBundleUpdateRequestSchema, ProductConfigurationDownloads, ProductCreateUpdateSchemaV2, ProductDetail, ProductDetailAttribute, ProductDetailGroupedAttribute, ProductDownloadsResponseSchema, ProductFilters, GetQueryFiltersValuesResponseSchema, ProductFiltersKeysOnly, ProductFiltersKey, ProductFiltersValue, ProductListingResponseSchema, ProductListingResponseV2, ProductPublish, ProductPublish1, ProductPublished, ProductReturnConfigSchema, ProductReturnConfigBaseSchema, ProductSchemaV2, ProductSize, ProductSizeDeleteDataResponseSchema, ProductSizeDeleteResponseSchema, ProductSortOn, ProductTagsViewResponseSchema, ProductTemplate, ProductTemplateDownloadsExport, ProductTemplateExportFilterRequestSchema, ProductTemplateExportResponseSchema, ProductVariants, ProductVariantsResponseSchema, Properties, Quantities, QuantitiesArticle, Quantity, QuantityBase, ReturnConfig, ReturnConfig1, ReturnConfig2, ReturnConfigResponseSchema, Sitemap, ApplicationItemSeoAction, ApplicationItemSeoBreadcrumbs, ApplicationItemSeoMetaTagItem, ApplicationItemSeoMetaTags, Metatags, SizePromotionThreshold, SEOData, SearchKeywordResult, SearchableAttribute, SecondLevelChild, SellerPhoneNumber, SeoDetail, SetSize, SingleCategoryResponseSchema, SingleProductResponseSchema, Size, SizeDistribution, SizeGuideResponseSchema, StoreAssignResponseSchema, StoreDetail, StoreMeta, SuccessResponseSchema, SuccessResponse1, TaxIdentifier, TaxSlab, TeaserTag, TemplateDetails, TemplateValidationData, TemplatesResponseSchema, TemplatesValidationResponseSchema, ThirdLevelChild, Trader, Trader1, Trader2, UpdateCollection, UpdateSearchConfigurationRequestSchema, UpdateSearchConfigurationResponseSchema, CreateMarketplaceOptinResponseSchema, UserCommon, UserDetail, UserDetail1, UserInfo, UserInfo1, UserSchema, UserSerializer1, UserSerializer2, UserSerializer3, ValidateIdentifier, ValidateProduct, ValidateSizeGuide, VerifiedBy, WeightResponseSchema, WeightResponse1, CreatedBy, ModifiedBy, Marketplaces, GetAllMarketplaces, UpdateMarketplaceOptinRequestSchema, UpdateMarketplaceOptinResponseSchema, Identifier, Filters, ActionPage, ProductListingPrice, Price1, MultiCategoriesSchema, CustomMeta, order, PageType, CurrencyCodeEnum };
|
|
3274
3447
|
}
|
|
3275
3448
|
/** @returns {Action} */
|
|
3276
3449
|
declare function Action(): Action;
|
|
@@ -3294,9 +3467,9 @@ type AllSizes = {
|
|
|
3294
3467
|
item_width: number;
|
|
3295
3468
|
size: string;
|
|
3296
3469
|
};
|
|
3297
|
-
/** @returns {
|
|
3298
|
-
declare function
|
|
3299
|
-
type
|
|
3470
|
+
/** @returns {AllowSingleRequestSchema} */
|
|
3471
|
+
declare function AllowSingleRequestSchema(): AllowSingleRequestSchema;
|
|
3472
|
+
type AllowSingleRequestSchema = {
|
|
3300
3473
|
allow_single: boolean;
|
|
3301
3474
|
};
|
|
3302
3475
|
/** @returns {AppCatalogConfiguration} */
|
|
@@ -3322,14 +3495,13 @@ type AppCategoryReturnConfig = {
|
|
|
3322
3495
|
*/
|
|
3323
3496
|
category_id: number;
|
|
3324
3497
|
/**
|
|
3325
|
-
* - Return
|
|
3326
|
-
* configuration details
|
|
3498
|
+
* - Return configuration details
|
|
3327
3499
|
*/
|
|
3328
|
-
return_config:
|
|
3500
|
+
return_config: ProductReturnConfigBaseSchema;
|
|
3329
3501
|
};
|
|
3330
|
-
/** @returns {
|
|
3331
|
-
declare function
|
|
3332
|
-
type
|
|
3502
|
+
/** @returns {AppCategoryReturnConfigResponseSchema} */
|
|
3503
|
+
declare function AppCategoryReturnConfigResponseSchema(): AppCategoryReturnConfigResponseSchema;
|
|
3504
|
+
type AppCategoryReturnConfigResponseSchema = {
|
|
3333
3505
|
/**
|
|
3334
3506
|
* - Channel identifier
|
|
3335
3507
|
*/
|
|
@@ -3343,7 +3515,7 @@ type AppCategoryReturnConfigResponse = {
|
|
|
3343
3515
|
* - Name of L3 category
|
|
3344
3516
|
*/
|
|
3345
3517
|
name?: string;
|
|
3346
|
-
return_config?:
|
|
3518
|
+
return_config?: ProductReturnConfigBaseSchema;
|
|
3347
3519
|
};
|
|
3348
3520
|
/** @returns {AppConfiguration} */
|
|
3349
3521
|
declare function AppConfiguration(): AppConfiguration;
|
|
@@ -3409,9 +3581,9 @@ declare function ApplicationDepartmentJson(): ApplicationDepartmentJson;
|
|
|
3409
3581
|
type ApplicationDepartmentJson = {
|
|
3410
3582
|
_custom_json: any;
|
|
3411
3583
|
};
|
|
3412
|
-
/** @returns {
|
|
3413
|
-
declare function
|
|
3414
|
-
type
|
|
3584
|
+
/** @returns {ApplicationDepartmentListingResponseSchema} */
|
|
3585
|
+
declare function ApplicationDepartmentListingResponseSchema(): ApplicationDepartmentListingResponseSchema;
|
|
3586
|
+
type ApplicationDepartmentListingResponseSchema = {
|
|
3415
3587
|
items?: ApplicationDepartment[];
|
|
3416
3588
|
page: Page;
|
|
3417
3589
|
};
|
|
@@ -3499,11 +3671,264 @@ type ApplicationItemSEO = {
|
|
|
3499
3671
|
meta_tags?: ApplicationItemSeoMetaTags[];
|
|
3500
3672
|
canonical_url?: string;
|
|
3501
3673
|
};
|
|
3502
|
-
/** @returns {
|
|
3503
|
-
declare function
|
|
3504
|
-
type
|
|
3674
|
+
/** @returns {ApplicationProductsSchema} */
|
|
3675
|
+
declare function ApplicationProductsSchema(): ApplicationProductsSchema;
|
|
3676
|
+
type ApplicationProductsSchema = {
|
|
3677
|
+
/**
|
|
3678
|
+
* - Additional attributes of the product, such
|
|
3679
|
+
* as custom properties or features.
|
|
3680
|
+
*/
|
|
3681
|
+
attributes?: any;
|
|
3682
|
+
brand?: ProductBrand;
|
|
3683
|
+
color?: string;
|
|
3684
|
+
/**
|
|
3685
|
+
* - A detailed description of the product.
|
|
3686
|
+
*/
|
|
3687
|
+
description?: string;
|
|
3688
|
+
/**
|
|
3689
|
+
* - The discount applied to the product.
|
|
3690
|
+
*/
|
|
3691
|
+
discount?: string;
|
|
3692
|
+
/**
|
|
3693
|
+
* - Indicates whether the product has
|
|
3694
|
+
* variants, such as different sizes or colors.
|
|
3695
|
+
*/
|
|
3696
|
+
has_variant?: boolean;
|
|
3697
|
+
/**
|
|
3698
|
+
* - Key highlights of the product.
|
|
3699
|
+
*/
|
|
3700
|
+
highlights?: string[];
|
|
3701
|
+
/**
|
|
3702
|
+
* - The nature of the product image, indicating
|
|
3703
|
+
* if it's the default or a standard image.
|
|
3704
|
+
*/
|
|
3705
|
+
image_nature: string;
|
|
3706
|
+
/**
|
|
3707
|
+
* - A unique code assigned to the product item at
|
|
3708
|
+
* company and brand level.
|
|
3709
|
+
*/
|
|
3710
|
+
item_code: string;
|
|
3711
|
+
/**
|
|
3712
|
+
* - The type of the product, defining its nature.
|
|
3713
|
+
*/
|
|
3714
|
+
item_type: string;
|
|
3715
|
+
/**
|
|
3716
|
+
* - A list of media items associated with the
|
|
3717
|
+
* product, such as images or videos.
|
|
3718
|
+
*/
|
|
3719
|
+
medias?: Media[];
|
|
3720
|
+
/**
|
|
3721
|
+
* - The name of the product.
|
|
3722
|
+
*/
|
|
3723
|
+
name: string;
|
|
3724
|
+
price?: ProductListingPrice;
|
|
3725
|
+
/**
|
|
3726
|
+
* - The date and time when the product
|
|
3727
|
+
* becomes available online.
|
|
3728
|
+
*/
|
|
3729
|
+
product_online_date?: string;
|
|
3730
|
+
/**
|
|
3731
|
+
* - Metadata related to any promotions
|
|
3732
|
+
* associated with the product.
|
|
3733
|
+
*/
|
|
3734
|
+
promo_meta?: any;
|
|
3735
|
+
/**
|
|
3736
|
+
* - The average rating of the product, typically
|
|
3737
|
+
* based on customer reviews.
|
|
3738
|
+
*/
|
|
3739
|
+
rating?: number;
|
|
3740
|
+
/**
|
|
3741
|
+
* - The total number of ratings the product
|
|
3742
|
+
* has received.
|
|
3743
|
+
*/
|
|
3744
|
+
rating_count?: number;
|
|
3745
|
+
/**
|
|
3746
|
+
* - Indicates whether the product is available for sale.
|
|
3747
|
+
*/
|
|
3748
|
+
sellable?: boolean;
|
|
3749
|
+
/**
|
|
3750
|
+
* - A brief description of the product.
|
|
3751
|
+
*/
|
|
3752
|
+
short_description?: string;
|
|
3753
|
+
/**
|
|
3754
|
+
* - A list of similar products.
|
|
3755
|
+
*/
|
|
3756
|
+
similars?: string[];
|
|
3757
|
+
/**
|
|
3758
|
+
* - A URL-friendly string representing the product.
|
|
3759
|
+
*/
|
|
3760
|
+
slug: string;
|
|
3761
|
+
/**
|
|
3762
|
+
* - A teaser tag object providing short
|
|
3763
|
+
* promotional information about the product.
|
|
3764
|
+
*/
|
|
3765
|
+
teaser_tag?: any;
|
|
3766
|
+
/**
|
|
3767
|
+
* - A list of tryout options or samples
|
|
3768
|
+
* available for the product.
|
|
3769
|
+
*/
|
|
3770
|
+
tryouts?: string[];
|
|
3771
|
+
/**
|
|
3772
|
+
* - The type or category of the product.
|
|
3773
|
+
*/
|
|
3774
|
+
type?: string;
|
|
3775
|
+
/**
|
|
3776
|
+
* - A unique identifier for the product.
|
|
3777
|
+
*/
|
|
3778
|
+
uid: number;
|
|
3779
|
+
/**
|
|
3780
|
+
* - A numerical value indicating the popularity
|
|
3781
|
+
* of the product.
|
|
3782
|
+
*/
|
|
3783
|
+
popularity?: number;
|
|
3784
|
+
/**
|
|
3785
|
+
* - The unique identifier for the brand associated
|
|
3786
|
+
* with the product.
|
|
3787
|
+
*/
|
|
3788
|
+
brand_uid: number;
|
|
3789
|
+
/**
|
|
3790
|
+
* - The unique identifier for the category to
|
|
3791
|
+
* which the product belongs.
|
|
3792
|
+
*/
|
|
3793
|
+
category_uid: number;
|
|
3794
|
+
/**
|
|
3795
|
+
* - The verification status of the
|
|
3796
|
+
* product, typically represented as an integer.
|
|
3797
|
+
*/
|
|
3798
|
+
verification_status?: number;
|
|
3799
|
+
/**
|
|
3800
|
+
* - The identifier for the sales
|
|
3801
|
+
* channel through which the product is sold.
|
|
3802
|
+
*/
|
|
3803
|
+
channel_identifier?: string;
|
|
3804
|
+
/**
|
|
3805
|
+
* - A URL-friendly string representing the
|
|
3806
|
+
* product's category.
|
|
3807
|
+
*/
|
|
3808
|
+
category_slug?: string;
|
|
3809
|
+
/**
|
|
3810
|
+
* - A guide or chart providing size information
|
|
3811
|
+
* for the product.
|
|
3812
|
+
*/
|
|
3813
|
+
size_guide?: string;
|
|
3814
|
+
/**
|
|
3815
|
+
* - A list of L3 category IDs of the product.
|
|
3816
|
+
*/
|
|
3817
|
+
l3_categories: number[];
|
|
3818
|
+
/**
|
|
3819
|
+
* - A list of store IDs where the product is available.
|
|
3820
|
+
*/
|
|
3821
|
+
store_ids?: number[];
|
|
3822
|
+
/**
|
|
3823
|
+
* - A list of company IDs associated with the product.
|
|
3824
|
+
*/
|
|
3825
|
+
company_ids?: number[];
|
|
3826
|
+
/**
|
|
3827
|
+
* - A list of department IDs where the product
|
|
3828
|
+
* is categorized.
|
|
3829
|
+
*/
|
|
3830
|
+
departments: number[];
|
|
3831
|
+
/**
|
|
3832
|
+
* - A list of tags or keywords associated with the product.
|
|
3833
|
+
*/
|
|
3834
|
+
tags?: string[];
|
|
3835
|
+
/**
|
|
3836
|
+
* - A list of names of L3 categories
|
|
3837
|
+
* of the product.
|
|
3838
|
+
*/
|
|
3839
|
+
l3_category_names?: string[];
|
|
3840
|
+
/**
|
|
3841
|
+
* - A list of available sizes for the product.
|
|
3842
|
+
*/
|
|
3843
|
+
sizes?: string[];
|
|
3844
|
+
/**
|
|
3845
|
+
* - Tags that group the product with
|
|
3846
|
+
* other similar products.
|
|
3847
|
+
*/
|
|
3848
|
+
product_group_tag?: string[];
|
|
3849
|
+
/**
|
|
3850
|
+
* - Indicates whether the product is available
|
|
3851
|
+
* in multiple sizes.
|
|
3852
|
+
*/
|
|
3853
|
+
multi_size: boolean;
|
|
3854
|
+
/**
|
|
3855
|
+
* - Indicates whether the product can be considered
|
|
3856
|
+
* as a gift.
|
|
3857
|
+
*/
|
|
3858
|
+
is_gift: boolean;
|
|
3859
|
+
/**
|
|
3860
|
+
* - Indicates whether the product is eligible for
|
|
3861
|
+
* cash on delivery (COD).
|
|
3862
|
+
*/
|
|
3863
|
+
is_cod: boolean;
|
|
3864
|
+
/**
|
|
3865
|
+
* - Indicates whether the product depends on
|
|
3866
|
+
* another product.
|
|
3867
|
+
*/
|
|
3868
|
+
is_dependent: boolean;
|
|
3869
|
+
/**
|
|
3870
|
+
* - Indicates whether the product is currently
|
|
3871
|
+
* available for purchase.
|
|
3872
|
+
*/
|
|
3873
|
+
is_available: boolean;
|
|
3874
|
+
moq: ApplicationItemMOQ;
|
|
3875
|
+
seo: ApplicationItemSEO;
|
|
3876
|
+
/**
|
|
3877
|
+
* - An object containing details about the
|
|
3878
|
+
* product variants.
|
|
3879
|
+
*/
|
|
3880
|
+
variants?: any;
|
|
3881
|
+
/**
|
|
3882
|
+
* - Media items specific to the product variants.
|
|
3883
|
+
*/
|
|
3884
|
+
variant_media?: any;
|
|
3885
|
+
/**
|
|
3886
|
+
* - A group identifier for products that are
|
|
3887
|
+
* variants of one another.
|
|
3888
|
+
*/
|
|
3889
|
+
variant_group?: any;
|
|
3890
|
+
multi_categories?: MultiCategoriesSchema[];
|
|
3891
|
+
/**
|
|
3892
|
+
* - Tag used for categorizing or templating purposes.
|
|
3893
|
+
*/
|
|
3894
|
+
template_tag?: string;
|
|
3895
|
+
/**
|
|
3896
|
+
* - Net quantity details for the product.
|
|
3897
|
+
*/
|
|
3898
|
+
net_quantity?: any;
|
|
3899
|
+
custom_order?: CustomOrder;
|
|
3900
|
+
/**
|
|
3901
|
+
* - Country where the product is
|
|
3902
|
+
* manufactured or sourced from.
|
|
3903
|
+
*/
|
|
3904
|
+
country_of_origin: string;
|
|
3905
|
+
/**
|
|
3906
|
+
* - Custom JSON data associated with the product.
|
|
3907
|
+
*/
|
|
3908
|
+
_custom_json?: any;
|
|
3909
|
+
/**
|
|
3910
|
+
* - Identifiers associated with the product.
|
|
3911
|
+
*/
|
|
3912
|
+
identifiers?: string[];
|
|
3913
|
+
/**
|
|
3914
|
+
* - Unique identifier for the item.
|
|
3915
|
+
*/
|
|
3916
|
+
item_id?: number;
|
|
3917
|
+
/**
|
|
3918
|
+
* - Custom meta associated with the product.
|
|
3919
|
+
*/
|
|
3920
|
+
_custom_meta?: CustomMeta[];
|
|
3921
|
+
/**
|
|
3922
|
+
* - The discount applied to the
|
|
3923
|
+
* product in percentage.
|
|
3924
|
+
*/
|
|
3925
|
+
discount_percentage?: number;
|
|
3926
|
+
};
|
|
3927
|
+
/** @returns {ApplicationProductListingResponseSchema} */
|
|
3928
|
+
declare function ApplicationProductListingResponseSchema(): ApplicationProductListingResponseSchema;
|
|
3929
|
+
type ApplicationProductListingResponseSchema = {
|
|
3505
3930
|
filters?: ProductFilters[];
|
|
3506
|
-
items?:
|
|
3931
|
+
items?: ApplicationProductsSchema[];
|
|
3507
3932
|
operators?: any;
|
|
3508
3933
|
page: Page;
|
|
3509
3934
|
sort_on?: ProductSortOn[];
|
|
@@ -3513,9 +3938,9 @@ declare function ApplicationStoreJson(): ApplicationStoreJson;
|
|
|
3513
3938
|
type ApplicationStoreJson = {
|
|
3514
3939
|
_custom_json: any;
|
|
3515
3940
|
};
|
|
3516
|
-
/** @returns {
|
|
3517
|
-
declare function
|
|
3518
|
-
type
|
|
3941
|
+
/** @returns {AppReturnConfigResponseSchema} */
|
|
3942
|
+
declare function AppReturnConfigResponseSchema(): AppReturnConfigResponseSchema;
|
|
3943
|
+
type AppReturnConfigResponseSchema = {
|
|
3519
3944
|
/**
|
|
3520
3945
|
* - Channel identifier
|
|
3521
3946
|
*/
|
|
@@ -3566,9 +3991,9 @@ type ArticleQuery = {
|
|
|
3566
3991
|
item_id: number;
|
|
3567
3992
|
size: string;
|
|
3568
3993
|
};
|
|
3569
|
-
/** @returns {
|
|
3570
|
-
declare function
|
|
3571
|
-
type
|
|
3994
|
+
/** @returns {ArticleStoreResponseSchema} */
|
|
3995
|
+
declare function ArticleStoreResponseSchema(): ArticleStoreResponseSchema;
|
|
3996
|
+
type ArticleStoreResponseSchema = {
|
|
3572
3997
|
name?: string;
|
|
3573
3998
|
store_code?: string;
|
|
3574
3999
|
store_type?: string;
|
|
@@ -3639,9 +4064,9 @@ type AttributeMasterMeta = {
|
|
|
3639
4064
|
enriched?: boolean;
|
|
3640
4065
|
mandatory_details: AttributeMasterMandatoryDetails;
|
|
3641
4066
|
};
|
|
3642
|
-
/** @returns {
|
|
3643
|
-
declare function
|
|
3644
|
-
type
|
|
4067
|
+
/** @returns {AttributeMasterSchema} */
|
|
4068
|
+
declare function AttributeMasterSchema(): AttributeMasterSchema;
|
|
4069
|
+
type AttributeMasterSchema = {
|
|
3645
4070
|
created_by?: any;
|
|
3646
4071
|
created_on?: string;
|
|
3647
4072
|
departments: string[];
|
|
@@ -3708,24 +4133,16 @@ type BannerImage = {
|
|
|
3708
4133
|
/** @returns {BaseAppCategoryReturnConfig} */
|
|
3709
4134
|
declare function BaseAppCategoryReturnConfig(): BaseAppCategoryReturnConfig;
|
|
3710
4135
|
type BaseAppCategoryReturnConfig = {
|
|
3711
|
-
/**
|
|
3712
|
-
* - Channel identifier
|
|
3713
|
-
*/
|
|
3714
|
-
app_id: string;
|
|
3715
|
-
/**
|
|
3716
|
-
* - Unique identifer of company
|
|
3717
|
-
*/
|
|
3718
|
-
company_id: number;
|
|
3719
4136
|
/**
|
|
3720
4137
|
* - Category level return config details
|
|
3721
4138
|
*/
|
|
3722
4139
|
data: AppCategoryReturnConfig[];
|
|
3723
4140
|
};
|
|
3724
|
-
/** @returns {
|
|
3725
|
-
declare function
|
|
3726
|
-
type
|
|
3727
|
-
data?:
|
|
3728
|
-
page?:
|
|
4141
|
+
/** @returns {BaseAppCategoryReturnConfigResponseSchema} */
|
|
4142
|
+
declare function BaseAppCategoryReturnConfigResponseSchema(): BaseAppCategoryReturnConfigResponseSchema;
|
|
4143
|
+
type BaseAppCategoryReturnConfigResponseSchema = {
|
|
4144
|
+
data?: AppCategoryReturnConfigResponseSchema[];
|
|
4145
|
+
page?: PageResponseSchema;
|
|
3729
4146
|
};
|
|
3730
4147
|
/** @returns {Brand} */
|
|
3731
4148
|
declare function Brand(): Brand;
|
|
@@ -3746,9 +4163,140 @@ type BrandItem = {
|
|
|
3746
4163
|
slug?: string;
|
|
3747
4164
|
uid?: number;
|
|
3748
4165
|
};
|
|
3749
|
-
/** @returns {
|
|
3750
|
-
declare function
|
|
3751
|
-
type
|
|
4166
|
+
/** @returns {ApplicationCategoryListingSchema} */
|
|
4167
|
+
declare function ApplicationCategoryListingSchema(): ApplicationCategoryListingSchema;
|
|
4168
|
+
type ApplicationCategoryListingSchema = {
|
|
4169
|
+
items?: ApplicationCategoryListingItemSchema[];
|
|
4170
|
+
page?: Page;
|
|
4171
|
+
};
|
|
4172
|
+
/** @returns {ApplicationCategoryListingItemSchema} */
|
|
4173
|
+
declare function ApplicationCategoryListingItemSchema(): ApplicationCategoryListingItemSchema;
|
|
4174
|
+
type ApplicationCategoryListingItemSchema = {
|
|
4175
|
+
/**
|
|
4176
|
+
* - Name of the category.
|
|
4177
|
+
*/
|
|
4178
|
+
name?: string;
|
|
4179
|
+
/**
|
|
4180
|
+
* - URL of the category's logo.
|
|
4181
|
+
*/
|
|
4182
|
+
logo?: string;
|
|
4183
|
+
/**
|
|
4184
|
+
* - List of department IDs.
|
|
4185
|
+
*/
|
|
4186
|
+
departments?: number[];
|
|
4187
|
+
/**
|
|
4188
|
+
* - Attribute name of the category.
|
|
4189
|
+
*/
|
|
4190
|
+
attr_name?: string;
|
|
4191
|
+
/**
|
|
4192
|
+
* - URL of the landscape banner.
|
|
4193
|
+
*/
|
|
4194
|
+
landscape_url?: string;
|
|
4195
|
+
/**
|
|
4196
|
+
* - URL of the portrait banner.
|
|
4197
|
+
*/
|
|
4198
|
+
portrait_url?: string;
|
|
4199
|
+
/**
|
|
4200
|
+
* - Custom JSON object for additional data.
|
|
4201
|
+
*/
|
|
4202
|
+
_custom_json?: any;
|
|
4203
|
+
/**
|
|
4204
|
+
* - Priority of the category.
|
|
4205
|
+
*/
|
|
4206
|
+
priority?: number;
|
|
4207
|
+
created_by?: CreatedBy;
|
|
4208
|
+
/**
|
|
4209
|
+
* - Timestamp when the category was created.
|
|
4210
|
+
*/
|
|
4211
|
+
created_on?: string;
|
|
4212
|
+
modified_by?: ModifiedBy;
|
|
4213
|
+
/**
|
|
4214
|
+
* - Timestamp when the category was last modified.
|
|
4215
|
+
*/
|
|
4216
|
+
modified_on?: string;
|
|
4217
|
+
/**
|
|
4218
|
+
* - Application ID associated with the category.
|
|
4219
|
+
*/
|
|
4220
|
+
app_id?: string;
|
|
4221
|
+
/**
|
|
4222
|
+
* - Indicates whether the category is active.
|
|
4223
|
+
*/
|
|
4224
|
+
is_active?: boolean;
|
|
4225
|
+
/**
|
|
4226
|
+
* - Unique identifier of the category.
|
|
4227
|
+
*/
|
|
4228
|
+
uid?: number;
|
|
4229
|
+
};
|
|
4230
|
+
/** @returns {ApplicationBrandListingSchema} */
|
|
4231
|
+
declare function ApplicationBrandListingSchema(): ApplicationBrandListingSchema;
|
|
4232
|
+
type ApplicationBrandListingSchema = {
|
|
4233
|
+
items?: ApplicationBrandListingItemSchema[];
|
|
4234
|
+
page?: Page;
|
|
4235
|
+
};
|
|
4236
|
+
/** @returns {ApplicationBrandListingItemSchema} */
|
|
4237
|
+
declare function ApplicationBrandListingItemSchema(): ApplicationBrandListingItemSchema;
|
|
4238
|
+
type ApplicationBrandListingItemSchema = {
|
|
4239
|
+
/**
|
|
4240
|
+
* - Custom JSON object for additional data.
|
|
4241
|
+
*/
|
|
4242
|
+
_custom_json?: any;
|
|
4243
|
+
/**
|
|
4244
|
+
* - Custom object for locale-specific
|
|
4245
|
+
* language data.
|
|
4246
|
+
*/
|
|
4247
|
+
_locale_language?: any;
|
|
4248
|
+
/**
|
|
4249
|
+
* - URL of the brand's portrait banner.
|
|
4250
|
+
*/
|
|
4251
|
+
brand_banner_portrait_url?: string;
|
|
4252
|
+
/**
|
|
4253
|
+
* - URL of the brand's landscape banner.
|
|
4254
|
+
*/
|
|
4255
|
+
brand_banner_url?: string;
|
|
4256
|
+
/**
|
|
4257
|
+
* - URL of the brand's logo.
|
|
4258
|
+
*/
|
|
4259
|
+
brand_logo_url?: string;
|
|
4260
|
+
/**
|
|
4261
|
+
* - Description of the brand.
|
|
4262
|
+
*/
|
|
4263
|
+
description?: string;
|
|
4264
|
+
/**
|
|
4265
|
+
* - Name of the brand.
|
|
4266
|
+
*/
|
|
4267
|
+
name?: string;
|
|
4268
|
+
/**
|
|
4269
|
+
* - Unique slug key for the brand.
|
|
4270
|
+
*/
|
|
4271
|
+
slug_key?: string;
|
|
4272
|
+
/**
|
|
4273
|
+
* - Priority of the brand in listing.
|
|
4274
|
+
*/
|
|
4275
|
+
priority?: number;
|
|
4276
|
+
/**
|
|
4277
|
+
* - Unique identifier of the brand.
|
|
4278
|
+
*/
|
|
4279
|
+
uid?: number;
|
|
4280
|
+
/**
|
|
4281
|
+
* - Timestamp when the category was created.
|
|
4282
|
+
*/
|
|
4283
|
+
created_on?: string;
|
|
4284
|
+
/**
|
|
4285
|
+
* - Timestamp when the category was created.
|
|
4286
|
+
*/
|
|
4287
|
+
last_updated?: string;
|
|
4288
|
+
/**
|
|
4289
|
+
* - Indicates if the brand is active.
|
|
4290
|
+
*/
|
|
4291
|
+
is_active?: boolean;
|
|
4292
|
+
/**
|
|
4293
|
+
* - List of department IDs associated with the brand.
|
|
4294
|
+
*/
|
|
4295
|
+
departments?: number[];
|
|
4296
|
+
};
|
|
4297
|
+
/** @returns {BrandListingResponseSchema} */
|
|
4298
|
+
declare function BrandListingResponseSchema(): BrandListingResponseSchema;
|
|
4299
|
+
type BrandListingResponseSchema = {
|
|
3752
4300
|
items?: BrandItem[];
|
|
3753
4301
|
page: Page;
|
|
3754
4302
|
};
|
|
@@ -3764,15 +4312,15 @@ type BrandMeta1 = {
|
|
|
3764
4312
|
id?: number;
|
|
3765
4313
|
name?: string;
|
|
3766
4314
|
};
|
|
3767
|
-
/** @returns {
|
|
3768
|
-
declare function
|
|
3769
|
-
type
|
|
4315
|
+
/** @returns {BulkAssetResponseSchema} */
|
|
4316
|
+
declare function BulkAssetResponseSchema(): BulkAssetResponseSchema;
|
|
4317
|
+
type BulkAssetResponseSchema = {
|
|
3770
4318
|
items?: Items[];
|
|
3771
4319
|
page?: Page;
|
|
3772
4320
|
};
|
|
3773
|
-
/** @returns {
|
|
3774
|
-
declare function
|
|
3775
|
-
type
|
|
4321
|
+
/** @returns {BulkHsnResponseSchema} */
|
|
4322
|
+
declare function BulkHsnResponseSchema(): BulkHsnResponseSchema;
|
|
4323
|
+
type BulkHsnResponseSchema = {
|
|
3776
4324
|
/**
|
|
3777
4325
|
* - Flag indicating the success status of the
|
|
3778
4326
|
* bulk HSN operation.
|
|
@@ -3860,17 +4408,17 @@ type BulkJob = {
|
|
|
3860
4408
|
total?: number;
|
|
3861
4409
|
tracking_url?: string;
|
|
3862
4410
|
};
|
|
3863
|
-
/** @returns {
|
|
3864
|
-
declare function
|
|
3865
|
-
type
|
|
4411
|
+
/** @returns {BulkProductRequestSchema} */
|
|
4412
|
+
declare function BulkProductRequestSchema(): BulkProductRequestSchema;
|
|
4413
|
+
type BulkProductRequestSchema = {
|
|
3866
4414
|
batch_id: string;
|
|
3867
4415
|
company_id: number;
|
|
3868
4416
|
data: any[];
|
|
3869
4417
|
template_tag: string;
|
|
3870
4418
|
};
|
|
3871
|
-
/** @returns {
|
|
3872
|
-
declare function
|
|
3873
|
-
type
|
|
4419
|
+
/** @returns {BulkResponseSchema} */
|
|
4420
|
+
declare function BulkResponseSchema(): BulkResponseSchema;
|
|
4421
|
+
type BulkResponseSchema = {
|
|
3874
4422
|
batch_id: string;
|
|
3875
4423
|
/**
|
|
3876
4424
|
* - The user who created the item.
|
|
@@ -3910,15 +4458,15 @@ type CatalogInsightItem = {
|
|
|
3910
4458
|
out_of_stock_count?: number;
|
|
3911
4459
|
sellable_count?: number;
|
|
3912
4460
|
};
|
|
3913
|
-
/** @returns {
|
|
3914
|
-
declare function
|
|
3915
|
-
type
|
|
4461
|
+
/** @returns {CatalogInsightResponseSchema} */
|
|
4462
|
+
declare function CatalogInsightResponseSchema(): CatalogInsightResponseSchema;
|
|
4463
|
+
type CatalogInsightResponseSchema = {
|
|
3916
4464
|
brand_distribution?: CatalogInsightBrand;
|
|
3917
4465
|
item?: CatalogInsightItem;
|
|
3918
4466
|
};
|
|
3919
|
-
/** @returns {
|
|
3920
|
-
declare function
|
|
3921
|
-
type
|
|
4467
|
+
/** @returns {CategoriesResponseSchema} */
|
|
4468
|
+
declare function CategoriesResponseSchema(): CategoriesResponseSchema;
|
|
4469
|
+
type CategoriesResponseSchema = {
|
|
3922
4470
|
name?: string;
|
|
3923
4471
|
slug?: string;
|
|
3924
4472
|
slug_key?: string;
|
|
@@ -4013,9 +4561,9 @@ type CategoryItems = {
|
|
|
4013
4561
|
slug?: string;
|
|
4014
4562
|
uid?: number;
|
|
4015
4563
|
};
|
|
4016
|
-
/** @returns {
|
|
4017
|
-
declare function
|
|
4018
|
-
type
|
|
4564
|
+
/** @returns {CategoryListingResponseSchema} */
|
|
4565
|
+
declare function CategoryListingResponseSchema(): CategoryListingResponseSchema;
|
|
4566
|
+
type CategoryListingResponseSchema = {
|
|
4019
4567
|
data?: DepartmentCategoryTree[];
|
|
4020
4568
|
departments?: DepartmentIdentifier[];
|
|
4021
4569
|
};
|
|
@@ -4051,9 +4599,9 @@ type CategoryMappingValues = {
|
|
|
4051
4599
|
*/
|
|
4052
4600
|
name: string;
|
|
4053
4601
|
};
|
|
4054
|
-
/** @returns {
|
|
4055
|
-
declare function
|
|
4056
|
-
type
|
|
4602
|
+
/** @returns {CategoryResponseSchema} */
|
|
4603
|
+
declare function CategoryResponseSchema(): CategoryResponseSchema;
|
|
4604
|
+
type CategoryResponseSchema = {
|
|
4057
4605
|
items?: Category[];
|
|
4058
4606
|
page?: Page;
|
|
4059
4607
|
};
|
|
@@ -4080,9 +4628,9 @@ type CollectionBanner = {
|
|
|
4080
4628
|
landscape: CollectionImage;
|
|
4081
4629
|
portrait: CollectionImage;
|
|
4082
4630
|
};
|
|
4083
|
-
/** @returns {
|
|
4084
|
-
declare function
|
|
4085
|
-
type
|
|
4631
|
+
/** @returns {CollectionCreateResponseSchema} */
|
|
4632
|
+
declare function CollectionCreateResponseSchema(): CollectionCreateResponseSchema;
|
|
4633
|
+
type CollectionCreateResponseSchema = {
|
|
4086
4634
|
uid?: string;
|
|
4087
4635
|
_schedule?: any;
|
|
4088
4636
|
allow_facets?: boolean;
|
|
@@ -4104,9 +4652,9 @@ type CollectionCreateResponse = {
|
|
|
4104
4652
|
type?: string;
|
|
4105
4653
|
visible_facets_keys?: string[];
|
|
4106
4654
|
};
|
|
4107
|
-
/** @returns {
|
|
4108
|
-
declare function
|
|
4109
|
-
type
|
|
4655
|
+
/** @returns {CollectionDetailResponseSchema} */
|
|
4656
|
+
declare function CollectionDetailResponseSchema(): CollectionDetailResponseSchema;
|
|
4657
|
+
type CollectionDetailResponseSchema = {
|
|
4110
4658
|
_schedule?: any;
|
|
4111
4659
|
allow_facets?: boolean;
|
|
4112
4660
|
allow_sort?: boolean;
|
|
@@ -4228,14 +4776,14 @@ type CompanyOptIn = {
|
|
|
4228
4776
|
platform: string;
|
|
4229
4777
|
store_ids: number[];
|
|
4230
4778
|
};
|
|
4231
|
-
/** @returns {
|
|
4232
|
-
declare function
|
|
4233
|
-
type
|
|
4779
|
+
/** @returns {ConfigErrorResponseSchema} */
|
|
4780
|
+
declare function ConfigErrorResponseSchema(): ConfigErrorResponseSchema;
|
|
4781
|
+
type ConfigErrorResponseSchema = {
|
|
4234
4782
|
message: string;
|
|
4235
4783
|
};
|
|
4236
|
-
/** @returns {
|
|
4237
|
-
declare function
|
|
4238
|
-
type
|
|
4784
|
+
/** @returns {ConfigSuccessResponseSchema} */
|
|
4785
|
+
declare function ConfigSuccessResponseSchema(): ConfigSuccessResponseSchema;
|
|
4786
|
+
type ConfigSuccessResponseSchema = {
|
|
4239
4787
|
message: string;
|
|
4240
4788
|
};
|
|
4241
4789
|
/** @returns {ConfigurationBucketPoints} */
|
|
@@ -4342,9 +4890,9 @@ type CreateAutocompleteKeyword = {
|
|
|
4342
4890
|
results?: AutocompleteResult[];
|
|
4343
4891
|
words?: string[];
|
|
4344
4892
|
};
|
|
4345
|
-
/** @returns {
|
|
4346
|
-
declare function
|
|
4347
|
-
type
|
|
4893
|
+
/** @returns {CreateAutocompleteWordsResponseSchema} */
|
|
4894
|
+
declare function CreateAutocompleteWordsResponseSchema(): CreateAutocompleteWordsResponseSchema;
|
|
4895
|
+
type CreateAutocompleteWordsResponseSchema = {
|
|
4348
4896
|
_custom_json?: any;
|
|
4349
4897
|
app_id?: string;
|
|
4350
4898
|
results?: any[];
|
|
@@ -4379,9 +4927,9 @@ type CreateCollection = {
|
|
|
4379
4927
|
type: string;
|
|
4380
4928
|
visible_facets_keys?: string[];
|
|
4381
4929
|
};
|
|
4382
|
-
/** @returns {
|
|
4383
|
-
declare function
|
|
4384
|
-
type
|
|
4930
|
+
/** @returns {CreateSearchConfigurationRequestSchema} */
|
|
4931
|
+
declare function CreateSearchConfigurationRequestSchema(): CreateSearchConfigurationRequestSchema;
|
|
4932
|
+
type CreateSearchConfigurationRequestSchema = {
|
|
4385
4933
|
/**
|
|
4386
4934
|
* - The application id where custom search
|
|
4387
4935
|
* configuration is set
|
|
@@ -4392,10 +4940,9 @@ type CreateSearchConfigurationRequest = {
|
|
|
4392
4940
|
*/
|
|
4393
4941
|
company_id: number;
|
|
4394
4942
|
/**
|
|
4395
|
-
* - The user who created the search
|
|
4396
|
-
* configuration.
|
|
4943
|
+
* - The user who created the search configuration.
|
|
4397
4944
|
*/
|
|
4398
|
-
created_by?:
|
|
4945
|
+
created_by?: UserSchema;
|
|
4399
4946
|
/**
|
|
4400
4947
|
* - The date and time when the search
|
|
4401
4948
|
* configuration was created.
|
|
@@ -4407,10 +4954,9 @@ type CreateSearchConfigurationRequest = {
|
|
|
4407
4954
|
*/
|
|
4408
4955
|
is_proximity_enabled?: boolean;
|
|
4409
4956
|
/**
|
|
4410
|
-
* - The user who modified the search
|
|
4411
|
-
* configuration.
|
|
4957
|
+
* - The user who modified the search configuration.
|
|
4412
4958
|
*/
|
|
4413
|
-
modified_by?:
|
|
4959
|
+
modified_by?: UserSchema;
|
|
4414
4960
|
/**
|
|
4415
4961
|
* - The date and time when the search
|
|
4416
4962
|
* configuration was last modified.
|
|
@@ -4426,9 +4972,9 @@ type CreateSearchConfigurationRequest = {
|
|
|
4426
4972
|
*/
|
|
4427
4973
|
searchable_attributes?: SearchableAttribute[];
|
|
4428
4974
|
};
|
|
4429
|
-
/** @returns {
|
|
4430
|
-
declare function
|
|
4431
|
-
type
|
|
4975
|
+
/** @returns {CreateSearchConfigurationResponseSchema} */
|
|
4976
|
+
declare function CreateSearchConfigurationResponseSchema(): CreateSearchConfigurationResponseSchema;
|
|
4977
|
+
type CreateSearchConfigurationResponseSchema = {
|
|
4432
4978
|
success?: boolean;
|
|
4433
4979
|
};
|
|
4434
4980
|
/** @returns {CreateSearchKeyword} */
|
|
@@ -4443,14 +4989,6 @@ type CreateSearchKeyword = {
|
|
|
4443
4989
|
/** @returns {CreateUpdateAppReturnConfig} */
|
|
4444
4990
|
declare function CreateUpdateAppReturnConfig(): CreateUpdateAppReturnConfig;
|
|
4445
4991
|
type CreateUpdateAppReturnConfig = {
|
|
4446
|
-
/**
|
|
4447
|
-
* - Channel identifier
|
|
4448
|
-
*/
|
|
4449
|
-
app_id: string;
|
|
4450
|
-
/**
|
|
4451
|
-
* - Unique identifer of company
|
|
4452
|
-
*/
|
|
4453
|
-
company_id: number;
|
|
4454
4992
|
/**
|
|
4455
4993
|
* - Return configurtion Level
|
|
4456
4994
|
* category|product|no-return
|
|
@@ -4463,18 +5001,30 @@ type CrossSellingData = {
|
|
|
4463
5001
|
articles?: number;
|
|
4464
5002
|
products?: number;
|
|
4465
5003
|
};
|
|
4466
|
-
/** @returns {
|
|
4467
|
-
declare function
|
|
4468
|
-
type
|
|
5004
|
+
/** @returns {CrossSellingResponseSchema} */
|
|
5005
|
+
declare function CrossSellingResponseSchema(): CrossSellingResponseSchema;
|
|
5006
|
+
type CrossSellingResponseSchema = {
|
|
4469
5007
|
brand_distribution?: CatalogInsightBrand;
|
|
4470
5008
|
data?: CrossSellingData;
|
|
4471
5009
|
};
|
|
4472
5010
|
/** @returns {CustomOrder} */
|
|
4473
5011
|
declare function CustomOrder(): CustomOrder;
|
|
4474
5012
|
type CustomOrder = {
|
|
4475
|
-
|
|
4476
|
-
|
|
5013
|
+
/**
|
|
5014
|
+
* - Unit of time for manufacturing
|
|
5015
|
+
* (e.g., days, weeks).
|
|
5016
|
+
*/
|
|
4477
5017
|
manufacturing_time_unit?: string;
|
|
5018
|
+
/**
|
|
5019
|
+
* - Indicates if the product is available
|
|
5020
|
+
* for custom orders.
|
|
5021
|
+
*/
|
|
5022
|
+
is_custom_order: boolean;
|
|
5023
|
+
/**
|
|
5024
|
+
* - Time required for manufacturing in
|
|
5025
|
+
* the specified unit.
|
|
5026
|
+
*/
|
|
5027
|
+
manufacturing_time?: number;
|
|
4478
5028
|
};
|
|
4479
5029
|
/** @returns {DateMeta} */
|
|
4480
5030
|
declare function DateMeta(): DateMeta;
|
|
@@ -4484,35 +5034,27 @@ type DateMeta = {
|
|
|
4484
5034
|
inventory_updated_on?: string;
|
|
4485
5035
|
modified_on?: string;
|
|
4486
5036
|
};
|
|
4487
|
-
/** @returns {
|
|
4488
|
-
declare function
|
|
4489
|
-
type
|
|
5037
|
+
/** @returns {DefaultKeyRequestSchema} */
|
|
5038
|
+
declare function DefaultKeyRequestSchema(): DefaultKeyRequestSchema;
|
|
5039
|
+
type DefaultKeyRequestSchema = {
|
|
4490
5040
|
default_key: string;
|
|
4491
5041
|
};
|
|
4492
5042
|
/** @returns {DeleteAppCategoryReturnConfig} */
|
|
4493
5043
|
declare function DeleteAppCategoryReturnConfig(): DeleteAppCategoryReturnConfig;
|
|
4494
5044
|
type DeleteAppCategoryReturnConfig = {
|
|
4495
|
-
/**
|
|
4496
|
-
* - Channel identifier
|
|
4497
|
-
*/
|
|
4498
|
-
app_id: string;
|
|
4499
5045
|
/**
|
|
4500
5046
|
* - List of category_ids to be deleted.
|
|
4501
5047
|
*/
|
|
4502
5048
|
category_ids: number[];
|
|
4503
|
-
/**
|
|
4504
|
-
* - Unique identifer of company
|
|
4505
|
-
*/
|
|
4506
|
-
company_id: number;
|
|
4507
5049
|
};
|
|
4508
|
-
/** @returns {
|
|
4509
|
-
declare function
|
|
4510
|
-
type
|
|
5050
|
+
/** @returns {DeleteResponseSchema} */
|
|
5051
|
+
declare function DeleteResponseSchema(): DeleteResponseSchema;
|
|
5052
|
+
type DeleteResponseSchema = {
|
|
4511
5053
|
message?: string;
|
|
4512
5054
|
};
|
|
4513
|
-
/** @returns {
|
|
4514
|
-
declare function
|
|
4515
|
-
type
|
|
5055
|
+
/** @returns {DeleteSearchConfigurationResponseSchema} */
|
|
5056
|
+
declare function DeleteSearchConfigurationResponseSchema(): DeleteSearchConfigurationResponseSchema;
|
|
5057
|
+
type DeleteSearchConfigurationResponseSchema = {
|
|
4516
5058
|
success?: boolean;
|
|
4517
5059
|
};
|
|
4518
5060
|
/** @returns {Department} */
|
|
@@ -4530,9 +5072,9 @@ type DepartmentCategoryTree = {
|
|
|
4530
5072
|
department?: string;
|
|
4531
5073
|
items?: CategoryItems[];
|
|
4532
5074
|
};
|
|
4533
|
-
/** @returns {
|
|
4534
|
-
declare function
|
|
4535
|
-
type
|
|
5075
|
+
/** @returns {DepartmentErrorResponseSchema} */
|
|
5076
|
+
declare function DepartmentErrorResponseSchema(): DepartmentErrorResponseSchema;
|
|
5077
|
+
type DepartmentErrorResponseSchema = {
|
|
4536
5078
|
code?: string;
|
|
4537
5079
|
errors?: any;
|
|
4538
5080
|
message?: string;
|
|
@@ -4545,20 +5087,20 @@ type DepartmentIdentifier = {
|
|
|
4545
5087
|
slug?: string;
|
|
4546
5088
|
uid?: number;
|
|
4547
5089
|
};
|
|
4548
|
-
/** @returns {
|
|
4549
|
-
declare function
|
|
4550
|
-
type
|
|
5090
|
+
/** @returns {DepartmentResponseSchema} */
|
|
5091
|
+
declare function DepartmentResponseSchema(): DepartmentResponseSchema;
|
|
5092
|
+
type DepartmentResponseSchema = {
|
|
4551
5093
|
items?: Department[];
|
|
4552
5094
|
};
|
|
4553
|
-
/** @returns {
|
|
4554
|
-
declare function
|
|
4555
|
-
type
|
|
5095
|
+
/** @returns {DepartmentsResponseSchema} */
|
|
5096
|
+
declare function DepartmentsResponseSchema(): DepartmentsResponseSchema;
|
|
5097
|
+
type DepartmentsResponseSchema = {
|
|
4556
5098
|
items?: GetDepartment[];
|
|
4557
5099
|
page?: Page;
|
|
4558
5100
|
};
|
|
4559
|
-
/** @returns {
|
|
4560
|
-
declare function
|
|
4561
|
-
type
|
|
5101
|
+
/** @returns {DimensionResponseSchema} */
|
|
5102
|
+
declare function DimensionResponseSchema(): DimensionResponseSchema;
|
|
5103
|
+
type DimensionResponseSchema = {
|
|
4562
5104
|
/**
|
|
4563
5105
|
* - The height dimension.
|
|
4564
5106
|
*/
|
|
@@ -4607,9 +5149,9 @@ type EntityConfiguration = {
|
|
|
4607
5149
|
listing?: GetCatalogConfigurationDetailsSchemaListing;
|
|
4608
5150
|
product?: GetCatalogConfigurationDetailsProduct;
|
|
4609
5151
|
};
|
|
4610
|
-
/** @returns {
|
|
4611
|
-
declare function
|
|
4612
|
-
type
|
|
5152
|
+
/** @returns {ErrorResponseSchema} */
|
|
5153
|
+
declare function ErrorResponseSchema(): ErrorResponseSchema;
|
|
5154
|
+
type ErrorResponseSchema = {
|
|
4613
5155
|
code?: string;
|
|
4614
5156
|
error?: string;
|
|
4615
5157
|
message?: string;
|
|
@@ -4664,20 +5206,20 @@ type RawProduct = {
|
|
|
4664
5206
|
moq?: any;
|
|
4665
5207
|
multi_size?: boolean;
|
|
4666
5208
|
name?: string;
|
|
4667
|
-
net_quantity?:
|
|
5209
|
+
net_quantity?: NetQuantityResponseSchema;
|
|
4668
5210
|
no_of_boxes?: number;
|
|
4669
5211
|
pending?: string;
|
|
4670
5212
|
primary_color?: string;
|
|
4671
5213
|
product_group_tag?: string[];
|
|
4672
5214
|
product_publish?: ProductPublished;
|
|
4673
|
-
return_config?:
|
|
5215
|
+
return_config?: ReturnConfigResponseSchema;
|
|
4674
5216
|
short_description?: string;
|
|
4675
5217
|
size_guide?: string;
|
|
4676
5218
|
sizes?: any[];
|
|
4677
5219
|
slug?: string;
|
|
4678
5220
|
stage?: string;
|
|
4679
5221
|
tags?: string[];
|
|
4680
|
-
tax_identifier?:
|
|
5222
|
+
tax_identifier?: TaxIdentifier;
|
|
4681
5223
|
teaser_tag?: any;
|
|
4682
5224
|
template_tag?: string;
|
|
4683
5225
|
trader?: Trader[];
|
|
@@ -4689,9 +5231,9 @@ type RawProduct = {
|
|
|
4689
5231
|
verified_on?: string;
|
|
4690
5232
|
store_id_list?: string[];
|
|
4691
5233
|
};
|
|
4692
|
-
/** @returns {
|
|
4693
|
-
declare function
|
|
4694
|
-
type
|
|
5234
|
+
/** @returns {RawProductListingResponseSchema} */
|
|
5235
|
+
declare function RawProductListingResponseSchema(): RawProductListingResponseSchema;
|
|
5236
|
+
type RawProductListingResponseSchema = {
|
|
4695
5237
|
items?: RawProduct[];
|
|
4696
5238
|
page?: Page;
|
|
4697
5239
|
};
|
|
@@ -4718,9 +5260,9 @@ type AttributeDetail = {
|
|
|
4718
5260
|
schema?: AttributeMaster;
|
|
4719
5261
|
slug?: string;
|
|
4720
5262
|
};
|
|
4721
|
-
/** @returns {
|
|
4722
|
-
declare function
|
|
4723
|
-
type
|
|
5263
|
+
/** @returns {GetAddressSchema} */
|
|
5264
|
+
declare function GetAddressSchema(): GetAddressSchema;
|
|
5265
|
+
type GetAddressSchema = {
|
|
4724
5266
|
address1?: string;
|
|
4725
5267
|
address2?: string;
|
|
4726
5268
|
address_type?: string;
|
|
@@ -4759,9 +5301,9 @@ type GetAutocompleteWordsData = {
|
|
|
4759
5301
|
uid?: string;
|
|
4760
5302
|
words?: string[];
|
|
4761
5303
|
};
|
|
4762
|
-
/** @returns {
|
|
4763
|
-
declare function
|
|
4764
|
-
type
|
|
5304
|
+
/** @returns {GetAutocompleteWordsResponseSchema} */
|
|
5305
|
+
declare function GetAutocompleteWordsResponseSchema(): GetAutocompleteWordsResponseSchema;
|
|
5306
|
+
type GetAutocompleteWordsResponseSchema = {
|
|
4765
5307
|
items?: GetAutocompleteWordsData[];
|
|
4766
5308
|
page?: Page;
|
|
4767
5309
|
};
|
|
@@ -4782,7 +5324,7 @@ type GetCatalogConfigurationDetailsSchemaListing = {
|
|
|
4782
5324
|
/** @returns {GetCatalogConfigurationMetaData} */
|
|
4783
5325
|
declare function GetCatalogConfigurationMetaData(): GetCatalogConfigurationMetaData;
|
|
4784
5326
|
type GetCatalogConfigurationMetaData = {
|
|
4785
|
-
listing?:
|
|
5327
|
+
listing?: MetaDataListingResponseSchema;
|
|
4786
5328
|
product?: GetCatalogConfigurationDetailsProduct;
|
|
4787
5329
|
};
|
|
4788
5330
|
/** @returns {GetCollectionDetailNest} */
|
|
@@ -4809,32 +5351,32 @@ type GetCollectionDetailNest = {
|
|
|
4809
5351
|
uid?: string;
|
|
4810
5352
|
visible_facets_keys?: string[];
|
|
4811
5353
|
};
|
|
4812
|
-
/** @returns {
|
|
4813
|
-
declare function
|
|
4814
|
-
type
|
|
5354
|
+
/** @returns {GetCollectionItemsResponseSchema} */
|
|
5355
|
+
declare function GetCollectionItemsResponseSchema(): GetCollectionItemsResponseSchema;
|
|
5356
|
+
type GetCollectionItemsResponseSchema = {
|
|
4815
5357
|
filters?: ProductFilters[];
|
|
4816
|
-
items?:
|
|
5358
|
+
items?: ApplicationProductsSchema[];
|
|
4817
5359
|
page?: Page;
|
|
4818
5360
|
sort_on?: ProductSortOn[];
|
|
4819
5361
|
};
|
|
4820
|
-
/** @returns {
|
|
4821
|
-
declare function
|
|
4822
|
-
type
|
|
5362
|
+
/** @returns {GetCollectionListingResponseSchema} */
|
|
5363
|
+
declare function GetCollectionListingResponseSchema(): GetCollectionListingResponseSchema;
|
|
5364
|
+
type GetCollectionListingResponseSchema = {
|
|
4823
5365
|
filters?: CollectionListingFilter;
|
|
4824
5366
|
items?: GetCollectionDetailNest[];
|
|
4825
5367
|
page?: Page;
|
|
4826
5368
|
};
|
|
4827
|
-
/** @returns {
|
|
4828
|
-
declare function
|
|
4829
|
-
type
|
|
5369
|
+
/** @returns {GetCollectionQueryOptionResponseSchema} */
|
|
5370
|
+
declare function GetCollectionQueryOptionResponseSchema(): GetCollectionQueryOptionResponseSchema;
|
|
5371
|
+
type GetCollectionQueryOptionResponseSchema = {
|
|
4830
5372
|
filters?: ProductFilters[];
|
|
4831
5373
|
operators: any;
|
|
4832
5374
|
sort_on?: ProductSortOn[];
|
|
4833
5375
|
};
|
|
4834
|
-
/** @returns {
|
|
4835
|
-
declare function
|
|
4836
|
-
type
|
|
4837
|
-
addresses?:
|
|
5376
|
+
/** @returns {GetCompanySchema} */
|
|
5377
|
+
declare function GetCompanySchema(): GetCompanySchema;
|
|
5378
|
+
type GetCompanySchema = {
|
|
5379
|
+
addresses?: GetAddressSchema[];
|
|
4838
5380
|
business_type?: string;
|
|
4839
5381
|
company_type?: string;
|
|
4840
5382
|
created_by?: UserSerializer2;
|
|
@@ -4874,9 +5416,9 @@ type SortTypeItem = {
|
|
|
4874
5416
|
key?: string;
|
|
4875
5417
|
display?: string;
|
|
4876
5418
|
};
|
|
4877
|
-
/** @returns {
|
|
4878
|
-
declare function
|
|
4879
|
-
type
|
|
5419
|
+
/** @returns {GetConfigMetadataResponseSchema} */
|
|
5420
|
+
declare function GetConfigMetadataResponseSchema(): GetConfigMetadataResponseSchema;
|
|
5421
|
+
type GetConfigMetadataResponseSchema = {
|
|
4880
5422
|
condition?: ConditionItem[];
|
|
4881
5423
|
data: DataItem[];
|
|
4882
5424
|
page?: Page;
|
|
@@ -4888,9 +5430,9 @@ type GetConfigMetadataValues = {
|
|
|
4888
5430
|
type?: ValueTypeItem[];
|
|
4889
5431
|
sort?: SortTypeItem[];
|
|
4890
5432
|
};
|
|
4891
|
-
/** @returns {
|
|
4892
|
-
declare function
|
|
4893
|
-
type
|
|
5433
|
+
/** @returns {GetConfigResponseSchema} */
|
|
5434
|
+
declare function GetConfigResponseSchema(): GetConfigResponseSchema;
|
|
5435
|
+
type GetConfigResponseSchema = {
|
|
4894
5436
|
data: any[];
|
|
4895
5437
|
page: PageResponseType;
|
|
4896
5438
|
};
|
|
@@ -4924,7 +5466,7 @@ type GetInventories = {
|
|
|
4924
5466
|
dimension?: DimensionResponse1;
|
|
4925
5467
|
expiration_date?: string;
|
|
4926
5468
|
id?: string;
|
|
4927
|
-
identifier?:
|
|
5469
|
+
identifier?: Identifier;
|
|
4928
5470
|
inventory_updated_on?: string;
|
|
4929
5471
|
is_set?: boolean;
|
|
4930
5472
|
item_id?: number;
|
|
@@ -4937,9 +5479,9 @@ type GetInventories = {
|
|
|
4937
5479
|
seller_identifier?: string;
|
|
4938
5480
|
size?: string;
|
|
4939
5481
|
stage?: string;
|
|
4940
|
-
store?:
|
|
5482
|
+
store?: ArticleStoreResponseSchema;
|
|
4941
5483
|
tags?: string[];
|
|
4942
|
-
tax_identifier?:
|
|
5484
|
+
tax_identifier?: TaxIdentifier;
|
|
4943
5485
|
total_quantity?: number;
|
|
4944
5486
|
trace_id?: string;
|
|
4945
5487
|
track_inventory?: boolean;
|
|
@@ -4947,36 +5489,36 @@ type GetInventories = {
|
|
|
4947
5489
|
uid?: string;
|
|
4948
5490
|
weight?: WeightResponse1;
|
|
4949
5491
|
};
|
|
4950
|
-
/** @returns {
|
|
4951
|
-
declare function
|
|
4952
|
-
type
|
|
5492
|
+
/** @returns {GetInventoriesResponseSchema} */
|
|
5493
|
+
declare function GetInventoriesResponseSchema(): GetInventoriesResponseSchema;
|
|
5494
|
+
type GetInventoriesResponseSchema = {
|
|
4953
5495
|
items?: GetInventories[];
|
|
4954
5496
|
page?: Page;
|
|
4955
5497
|
};
|
|
4956
|
-
/** @returns {
|
|
4957
|
-
declare function
|
|
4958
|
-
type
|
|
5498
|
+
/** @returns {GetLocationSchema} */
|
|
5499
|
+
declare function GetLocationSchema(): GetLocationSchema;
|
|
5500
|
+
type GetLocationSchema = {
|
|
4959
5501
|
_custom_json?: any;
|
|
4960
|
-
address:
|
|
5502
|
+
address: GetAddressSchema;
|
|
4961
5503
|
code: string;
|
|
4962
|
-
company?:
|
|
5504
|
+
company?: GetCompanySchema;
|
|
4963
5505
|
contact_numbers?: SellerPhoneNumber[];
|
|
4964
5506
|
created_by?: UserSerializer3;
|
|
4965
5507
|
created_on?: string;
|
|
4966
5508
|
display_name: string;
|
|
4967
5509
|
documents?: Document[];
|
|
4968
|
-
gst_credentials?:
|
|
5510
|
+
gst_credentials?: InvoiceDetailsSchema;
|
|
4969
5511
|
integration_type?: LocationIntegrationType;
|
|
4970
|
-
manager?:
|
|
5512
|
+
manager?: LocationManagerSchema;
|
|
4971
5513
|
modified_by?: UserSerializer3;
|
|
4972
5514
|
modified_on?: string;
|
|
4973
5515
|
name: string;
|
|
4974
5516
|
notification_emails?: string[];
|
|
4975
5517
|
phone_number: string;
|
|
4976
|
-
product_return_config?:
|
|
5518
|
+
product_return_config?: ProductReturnConfigSchema;
|
|
4977
5519
|
stage?: string;
|
|
4978
5520
|
store_type?: string;
|
|
4979
|
-
timing?:
|
|
5521
|
+
timing?: LocationDayWiseSchema[];
|
|
4980
5522
|
uid?: number;
|
|
4981
5523
|
verified_by?: UserSerializer3;
|
|
4982
5524
|
verified_on?: string;
|
|
@@ -4988,9 +5530,9 @@ type GetOptInPlatform = {
|
|
|
4988
5530
|
items: CompanyOptIn[];
|
|
4989
5531
|
page: Page;
|
|
4990
5532
|
};
|
|
4991
|
-
/** @returns {
|
|
4992
|
-
declare function
|
|
4993
|
-
type
|
|
5533
|
+
/** @returns {GetProductBundleCreateResponseSchema} */
|
|
5534
|
+
declare function GetProductBundleCreateResponseSchema(): GetProductBundleCreateResponseSchema;
|
|
5535
|
+
type GetProductBundleCreateResponseSchema = {
|
|
4994
5536
|
choice: string;
|
|
4995
5537
|
company_id?: number;
|
|
4996
5538
|
created_by?: any;
|
|
@@ -5007,15 +5549,15 @@ type GetProductBundleCreateResponse = {
|
|
|
5007
5549
|
same_store_assignment?: boolean;
|
|
5008
5550
|
slug: string;
|
|
5009
5551
|
};
|
|
5010
|
-
/** @returns {
|
|
5011
|
-
declare function
|
|
5012
|
-
type
|
|
5013
|
-
items?:
|
|
5552
|
+
/** @returns {GetProductBundleListingResponseSchema} */
|
|
5553
|
+
declare function GetProductBundleListingResponseSchema(): GetProductBundleListingResponseSchema;
|
|
5554
|
+
type GetProductBundleListingResponseSchema = {
|
|
5555
|
+
items?: GetProductBundleCreateResponseSchema[];
|
|
5014
5556
|
page?: Page;
|
|
5015
5557
|
};
|
|
5016
|
-
/** @returns {
|
|
5017
|
-
declare function
|
|
5018
|
-
type
|
|
5558
|
+
/** @returns {GetProductBundleResponseSchema} */
|
|
5559
|
+
declare function GetProductBundleResponseSchema(): GetProductBundleResponseSchema;
|
|
5560
|
+
type GetProductBundleResponseSchema = {
|
|
5019
5561
|
choice?: string;
|
|
5020
5562
|
company_id?: number;
|
|
5021
5563
|
is_active?: boolean;
|
|
@@ -5040,9 +5582,9 @@ type GetProducts = {
|
|
|
5040
5582
|
product_uid?: number;
|
|
5041
5583
|
sizes?: Size[];
|
|
5042
5584
|
};
|
|
5043
|
-
/** @returns {
|
|
5044
|
-
declare function
|
|
5045
|
-
type
|
|
5585
|
+
/** @returns {GetCollectionDetailResponseSchema} */
|
|
5586
|
+
declare function GetCollectionDetailResponseSchema(): GetCollectionDetailResponseSchema;
|
|
5587
|
+
type GetCollectionDetailResponseSchema = {
|
|
5046
5588
|
_custom_json?: any;
|
|
5047
5589
|
_locale_language?: any;
|
|
5048
5590
|
_schedule?: CollectionSchedule;
|
|
@@ -5074,16 +5616,16 @@ declare function CommonResponseSchemaCollection(): CommonResponseSchemaCollectio
|
|
|
5074
5616
|
type CommonResponseSchemaCollection = {
|
|
5075
5617
|
message?: string;
|
|
5076
5618
|
};
|
|
5077
|
-
/** @returns {
|
|
5078
|
-
declare function
|
|
5079
|
-
type
|
|
5619
|
+
/** @returns {GetQueryFiltersKeysResponseSchema} */
|
|
5620
|
+
declare function GetQueryFiltersKeysResponseSchema(): GetQueryFiltersKeysResponseSchema;
|
|
5621
|
+
type GetQueryFiltersKeysResponseSchema = {
|
|
5080
5622
|
filters?: ProductFiltersKeysOnly[];
|
|
5081
5623
|
operators: any;
|
|
5082
5624
|
sort_on?: ProductSortOn[];
|
|
5083
5625
|
};
|
|
5084
|
-
/** @returns {
|
|
5085
|
-
declare function
|
|
5086
|
-
type
|
|
5626
|
+
/** @returns {GetQueryFiltersResponseSchema} */
|
|
5627
|
+
declare function GetQueryFiltersResponseSchema(): GetQueryFiltersResponseSchema;
|
|
5628
|
+
type GetQueryFiltersResponseSchema = {
|
|
5087
5629
|
filters?: ProductFilters[];
|
|
5088
5630
|
operators: any;
|
|
5089
5631
|
sort_on?: ProductSortOn[];
|
|
@@ -5156,9 +5698,9 @@ type ProductDetailV2 = {
|
|
|
5156
5698
|
slug: string;
|
|
5157
5699
|
uid?: number;
|
|
5158
5700
|
};
|
|
5159
|
-
/** @returns {
|
|
5160
|
-
declare function
|
|
5161
|
-
type
|
|
5701
|
+
/** @returns {GetSearchConfigurationResponseSchema} */
|
|
5702
|
+
declare function GetSearchConfigurationResponseSchema(): GetSearchConfigurationResponseSchema;
|
|
5703
|
+
type GetSearchConfigurationResponseSchema = {
|
|
5162
5704
|
/**
|
|
5163
5705
|
* - The application id where custom search
|
|
5164
5706
|
* configuration is set
|
|
@@ -5169,10 +5711,9 @@ type GetSearchConfigurationResponse = {
|
|
|
5169
5711
|
*/
|
|
5170
5712
|
company_id: number;
|
|
5171
5713
|
/**
|
|
5172
|
-
* - The user who created the search
|
|
5173
|
-
* configuration.
|
|
5714
|
+
* - The user who created the search configuration.
|
|
5174
5715
|
*/
|
|
5175
|
-
created_by?:
|
|
5716
|
+
created_by?: UserSchema;
|
|
5176
5717
|
/**
|
|
5177
5718
|
* - The date and time when the search
|
|
5178
5719
|
* configuration was created.
|
|
@@ -5184,10 +5725,9 @@ type GetSearchConfigurationResponse = {
|
|
|
5184
5725
|
*/
|
|
5185
5726
|
is_proximity_enabled?: boolean;
|
|
5186
5727
|
/**
|
|
5187
|
-
* - The user who modified the search
|
|
5188
|
-
* configuration.
|
|
5728
|
+
* - The user who modified the search configuration.
|
|
5189
5729
|
*/
|
|
5190
|
-
modified_by?:
|
|
5730
|
+
modified_by?: UserSchema;
|
|
5191
5731
|
/**
|
|
5192
5732
|
* - The date and time when the search
|
|
5193
5733
|
* configuration was last modified.
|
|
@@ -5213,15 +5753,15 @@ type GetSearchWordsData = {
|
|
|
5213
5753
|
uid?: string;
|
|
5214
5754
|
words?: string[];
|
|
5215
5755
|
};
|
|
5216
|
-
/** @returns {
|
|
5217
|
-
declare function
|
|
5218
|
-
type
|
|
5756
|
+
/** @returns {GetSearchWordsDetailResponseSchema} */
|
|
5757
|
+
declare function GetSearchWordsDetailResponseSchema(): GetSearchWordsDetailResponseSchema;
|
|
5758
|
+
type GetSearchWordsDetailResponseSchema = {
|
|
5219
5759
|
items?: GetSearchWordsData;
|
|
5220
5760
|
page?: Page;
|
|
5221
5761
|
};
|
|
5222
|
-
/** @returns {
|
|
5223
|
-
declare function
|
|
5224
|
-
type
|
|
5762
|
+
/** @returns {GetSearchWordsResponseSchema} */
|
|
5763
|
+
declare function GetSearchWordsResponseSchema(): GetSearchWordsResponseSchema;
|
|
5764
|
+
type GetSearchWordsResponseSchema = {
|
|
5225
5765
|
items?: GetSearchWordsData[];
|
|
5226
5766
|
page?: Page;
|
|
5227
5767
|
};
|
|
@@ -5240,9 +5780,9 @@ declare function Guide(): Guide;
|
|
|
5240
5780
|
type Guide = {
|
|
5241
5781
|
meta?: Meta;
|
|
5242
5782
|
};
|
|
5243
|
-
/** @returns {
|
|
5244
|
-
declare function
|
|
5245
|
-
type
|
|
5783
|
+
/** @returns {HSNCodesResponseSchema} */
|
|
5784
|
+
declare function HSNCodesResponseSchema(): HSNCodesResponseSchema;
|
|
5785
|
+
type HSNCodesResponseSchema = {
|
|
5246
5786
|
data?: HSNData;
|
|
5247
5787
|
message?: string;
|
|
5248
5788
|
};
|
|
@@ -5331,7 +5871,7 @@ type HsnCode = {
|
|
|
5331
5871
|
declare function HsnCodesListingResponseSchemaV2(): HsnCodesListingResponseSchemaV2;
|
|
5332
5872
|
type HsnCodesListingResponseSchemaV2 = {
|
|
5333
5873
|
items?: HSNDataInsertV2[];
|
|
5334
|
-
page?:
|
|
5874
|
+
page?: PageResponseSchema;
|
|
5335
5875
|
};
|
|
5336
5876
|
/** @returns {HsnCodesObject} */
|
|
5337
5877
|
declare function HsnCodesObject(): HsnCodesObject;
|
|
@@ -5392,7 +5932,7 @@ type HsnUpsert = {
|
|
|
5392
5932
|
/**
|
|
5393
5933
|
* - The HS2 code.
|
|
5394
5934
|
*/
|
|
5395
|
-
hs2_code
|
|
5935
|
+
hs2_code?: string;
|
|
5396
5936
|
/**
|
|
5397
5937
|
* - The HSN code.
|
|
5398
5938
|
*/
|
|
@@ -5488,9 +6028,9 @@ type InvSize = {
|
|
|
5488
6028
|
size: string;
|
|
5489
6029
|
store_code: string;
|
|
5490
6030
|
};
|
|
5491
|
-
/** @returns {
|
|
5492
|
-
declare function
|
|
5493
|
-
type
|
|
6031
|
+
/** @returns {InventoryBulkRequestSchema} */
|
|
6032
|
+
declare function InventoryBulkRequestSchema(): InventoryBulkRequestSchema;
|
|
6033
|
+
type InventoryBulkRequestSchema = {
|
|
5494
6034
|
batch_id: string;
|
|
5495
6035
|
company_id: number;
|
|
5496
6036
|
sizes: InventoryJobPayload[];
|
|
@@ -5502,9 +6042,9 @@ type InventoryConfig = {
|
|
|
5502
6042
|
data?: FilerList[];
|
|
5503
6043
|
multivalues?: boolean;
|
|
5504
6044
|
};
|
|
5505
|
-
/** @returns {
|
|
5506
|
-
declare function
|
|
5507
|
-
type
|
|
6045
|
+
/** @returns {InventoryCreateRequestSchema} */
|
|
6046
|
+
declare function InventoryCreateRequestSchema(): InventoryCreateRequestSchema;
|
|
6047
|
+
type InventoryCreateRequestSchema = {
|
|
5508
6048
|
/**
|
|
5509
6049
|
* - The list of attributes that you want to extract
|
|
5510
6050
|
* in the export job.
|
|
@@ -5598,14 +6138,14 @@ type InventoryExportJob = {
|
|
|
5598
6138
|
*/
|
|
5599
6139
|
url?: string;
|
|
5600
6140
|
};
|
|
5601
|
-
/** @returns {
|
|
5602
|
-
declare function
|
|
5603
|
-
type
|
|
6141
|
+
/** @returns {InventoryExportJobListResponseSchema} */
|
|
6142
|
+
declare function InventoryExportJobListResponseSchema(): InventoryExportJobListResponseSchema;
|
|
6143
|
+
type InventoryExportJobListResponseSchema = {
|
|
5604
6144
|
/**
|
|
5605
|
-
* - This is the list/history
|
|
5606
|
-
* all the jobs.
|
|
6145
|
+
* - This is the list/history
|
|
6146
|
+
* of all the jobs.
|
|
5607
6147
|
*/
|
|
5608
|
-
items:
|
|
6148
|
+
items: InventoryJobDetailResponseSchema;
|
|
5609
6149
|
page?: Page;
|
|
5610
6150
|
};
|
|
5611
6151
|
/** @returns {InventoryExportQuantityFilter} */
|
|
@@ -5624,16 +6164,16 @@ type InventoryExportQuantityFilter = {
|
|
|
5624
6164
|
*/
|
|
5625
6165
|
operators: string;
|
|
5626
6166
|
};
|
|
5627
|
-
/** @returns {
|
|
5628
|
-
declare function
|
|
5629
|
-
type
|
|
6167
|
+
/** @returns {InventoryExportRequestSchema} */
|
|
6168
|
+
declare function InventoryExportRequestSchema(): InventoryExportRequestSchema;
|
|
6169
|
+
type InventoryExportRequestSchema = {
|
|
5630
6170
|
brand?: number[];
|
|
5631
6171
|
store?: number[];
|
|
5632
6172
|
type?: string;
|
|
5633
6173
|
};
|
|
5634
|
-
/** @returns {
|
|
5635
|
-
declare function
|
|
5636
|
-
type
|
|
6174
|
+
/** @returns {InventoryExportResponseSchema} */
|
|
6175
|
+
declare function InventoryExportResponseSchema(): InventoryExportResponseSchema;
|
|
6176
|
+
type InventoryExportResponseSchema = {
|
|
5637
6177
|
/**
|
|
5638
6178
|
* - The user that created the job.
|
|
5639
6179
|
*/
|
|
@@ -5642,10 +6182,7 @@ type InventoryExportResponse = {
|
|
|
5642
6182
|
* - Creation datetime of the job
|
|
5643
6183
|
*/
|
|
5644
6184
|
created_on?: string;
|
|
5645
|
-
|
|
5646
|
-
* - The filters that needs to be exported.
|
|
5647
|
-
*/
|
|
5648
|
-
filters?: any;
|
|
6185
|
+
filters?: Filters;
|
|
5649
6186
|
/**
|
|
5650
6187
|
* - Modification date of the job
|
|
5651
6188
|
*/
|
|
@@ -5683,9 +6220,9 @@ type InventoryFailedReason = {
|
|
|
5683
6220
|
*/
|
|
5684
6221
|
message: string;
|
|
5685
6222
|
};
|
|
5686
|
-
/** @returns {
|
|
5687
|
-
declare function
|
|
5688
|
-
type
|
|
6223
|
+
/** @returns {InventoryJobDetailResponseSchema} */
|
|
6224
|
+
declare function InventoryJobDetailResponseSchema(): InventoryJobDetailResponseSchema;
|
|
6225
|
+
type InventoryJobDetailResponseSchema = {
|
|
5689
6226
|
/**
|
|
5690
6227
|
* - This is the user detail of the user
|
|
5691
6228
|
* who cancelled the job.
|
|
@@ -5880,9 +6417,9 @@ type InventoryPayload = {
|
|
|
5880
6417
|
*/
|
|
5881
6418
|
trace_id?: string;
|
|
5882
6419
|
};
|
|
5883
|
-
/** @returns {
|
|
5884
|
-
declare function
|
|
5885
|
-
type
|
|
6420
|
+
/** @returns {InventoryRequestSchema} */
|
|
6421
|
+
declare function InventoryRequestSchema(): InventoryRequestSchema;
|
|
6422
|
+
type InventoryRequestSchema = {
|
|
5886
6423
|
company_id: number;
|
|
5887
6424
|
item: ItemQuery;
|
|
5888
6425
|
sizes: InvSize[];
|
|
@@ -5903,9 +6440,9 @@ type InventoryRequestSchemaV2 = {
|
|
|
5903
6440
|
*/
|
|
5904
6441
|
payload?: InventoryPayload[];
|
|
5905
6442
|
};
|
|
5906
|
-
/** @returns {
|
|
5907
|
-
declare function
|
|
5908
|
-
type
|
|
6443
|
+
/** @returns {InventoryResponseSchema} */
|
|
6444
|
+
declare function InventoryResponseSchema(): InventoryResponseSchema;
|
|
6445
|
+
type InventoryResponseSchema = {
|
|
5909
6446
|
currency?: string;
|
|
5910
6447
|
identifiers?: any;
|
|
5911
6448
|
inventory_updated_on?: string;
|
|
@@ -5929,18 +6466,18 @@ type InventoryResponseItem = {
|
|
|
5929
6466
|
/** @returns {InventoryResponsePaginated} */
|
|
5930
6467
|
declare function InventoryResponsePaginated(): InventoryResponsePaginated;
|
|
5931
6468
|
type InventoryResponsePaginated = {
|
|
5932
|
-
items?:
|
|
6469
|
+
items?: InventoryResponseSchema[];
|
|
5933
6470
|
page?: Page;
|
|
5934
6471
|
};
|
|
5935
6472
|
/** @returns {InventorySellerIdentifierResponsePaginated} */
|
|
5936
6473
|
declare function InventorySellerIdentifierResponsePaginated(): InventorySellerIdentifierResponsePaginated;
|
|
5937
6474
|
type InventorySellerIdentifierResponsePaginated = {
|
|
5938
|
-
items?:
|
|
6475
|
+
items?: InventorySellerResponseSchema[];
|
|
5939
6476
|
page?: Page;
|
|
5940
6477
|
};
|
|
5941
|
-
/** @returns {
|
|
5942
|
-
declare function
|
|
5943
|
-
type
|
|
6478
|
+
/** @returns {InventorySellerResponseSchema} */
|
|
6479
|
+
declare function InventorySellerResponseSchema(): InventorySellerResponseSchema;
|
|
6480
|
+
type InventorySellerResponseSchema = {
|
|
5944
6481
|
/**
|
|
5945
6482
|
* - Custom JSON data for the article.
|
|
5946
6483
|
*/
|
|
@@ -5969,7 +6506,7 @@ type InventorySellerResponse = {
|
|
|
5969
6506
|
/**
|
|
5970
6507
|
* - The dimensions of the article.
|
|
5971
6508
|
*/
|
|
5972
|
-
dimension:
|
|
6509
|
+
dimension: DimensionResponseSchema;
|
|
5973
6510
|
/**
|
|
5974
6511
|
* - The expiration date of the article.
|
|
5975
6512
|
*/
|
|
@@ -6006,7 +6543,7 @@ type InventorySellerResponse = {
|
|
|
6006
6543
|
/**
|
|
6007
6544
|
* - The manufacturer of the article.
|
|
6008
6545
|
*/
|
|
6009
|
-
manufacturer:
|
|
6546
|
+
manufacturer: ManufacturerResponseSchema;
|
|
6010
6547
|
/**
|
|
6011
6548
|
* - Additional metadata for the article.
|
|
6012
6549
|
*/
|
|
@@ -6049,10 +6586,7 @@ type InventorySellerResponse = {
|
|
|
6049
6586
|
* - The tags associated with the article.
|
|
6050
6587
|
*/
|
|
6051
6588
|
tags?: string[];
|
|
6052
|
-
|
|
6053
|
-
* - The tax identifier of the article.
|
|
6054
|
-
*/
|
|
6055
|
-
tax_identifier?: any;
|
|
6589
|
+
tax_identifier?: TaxIdentifier;
|
|
6056
6590
|
/**
|
|
6057
6591
|
* - The total quantity of the article.
|
|
6058
6592
|
*/
|
|
@@ -6077,7 +6611,7 @@ type InventorySellerResponse = {
|
|
|
6077
6611
|
/**
|
|
6078
6612
|
* - The weight of the article.
|
|
6079
6613
|
*/
|
|
6080
|
-
weight:
|
|
6614
|
+
weight: WeightResponseSchema;
|
|
6081
6615
|
};
|
|
6082
6616
|
/** @returns {InventorySet} */
|
|
6083
6617
|
declare function InventorySet(): InventorySet;
|
|
@@ -6086,39 +6620,39 @@ type InventorySet = {
|
|
|
6086
6620
|
quantity?: number;
|
|
6087
6621
|
size_distribution: SizeDistribution;
|
|
6088
6622
|
};
|
|
6089
|
-
/** @returns {
|
|
6090
|
-
declare function
|
|
6091
|
-
type
|
|
6623
|
+
/** @returns {InventoryStockResponseSchema} */
|
|
6624
|
+
declare function InventoryStockResponseSchema(): InventoryStockResponseSchema;
|
|
6625
|
+
type InventoryStockResponseSchema = {
|
|
6092
6626
|
items?: any[];
|
|
6093
6627
|
page: InventoryPage;
|
|
6094
6628
|
};
|
|
6095
|
-
/** @returns {
|
|
6096
|
-
declare function
|
|
6097
|
-
type
|
|
6629
|
+
/** @returns {InventoryUpdateResponseSchema} */
|
|
6630
|
+
declare function InventoryUpdateResponseSchema(): InventoryUpdateResponseSchema;
|
|
6631
|
+
type InventoryUpdateResponseSchema = {
|
|
6098
6632
|
items?: InventoryResponseItem[];
|
|
6099
6633
|
/**
|
|
6100
6634
|
* - It is the success message of the inventory update.
|
|
6101
6635
|
*/
|
|
6102
6636
|
message: string;
|
|
6103
6637
|
};
|
|
6104
|
-
/** @returns {
|
|
6105
|
-
declare function
|
|
6106
|
-
type
|
|
6638
|
+
/** @returns {InventoryValidationResponseSchema} */
|
|
6639
|
+
declare function InventoryValidationResponseSchema(): InventoryValidationResponseSchema;
|
|
6640
|
+
type InventoryValidationResponseSchema = {
|
|
6107
6641
|
data?: any;
|
|
6108
6642
|
message?: string;
|
|
6109
6643
|
};
|
|
6110
|
-
/** @returns {
|
|
6111
|
-
declare function
|
|
6112
|
-
type
|
|
6644
|
+
/** @returns {InvoiceCredSchema} */
|
|
6645
|
+
declare function InvoiceCredSchema(): InvoiceCredSchema;
|
|
6646
|
+
type InvoiceCredSchema = {
|
|
6113
6647
|
enabled?: boolean;
|
|
6114
6648
|
password?: string;
|
|
6115
6649
|
username?: string;
|
|
6116
6650
|
};
|
|
6117
|
-
/** @returns {
|
|
6118
|
-
declare function
|
|
6119
|
-
type
|
|
6120
|
-
e_invoice?:
|
|
6121
|
-
e_waybill?:
|
|
6651
|
+
/** @returns {InvoiceDetailsSchema} */
|
|
6652
|
+
declare function InvoiceDetailsSchema(): InvoiceDetailsSchema;
|
|
6653
|
+
type InvoiceDetailsSchema = {
|
|
6654
|
+
e_invoice?: InvoiceCredSchema;
|
|
6655
|
+
e_waybill?: InvoiceCredSchema;
|
|
6122
6656
|
};
|
|
6123
6657
|
/** @returns {ItemQuery} */
|
|
6124
6658
|
declare function ItemQuery(): ItemQuery;
|
|
@@ -6170,36 +6704,35 @@ type ListSizeGuide = {
|
|
|
6170
6704
|
items?: any[];
|
|
6171
6705
|
page?: any;
|
|
6172
6706
|
};
|
|
6173
|
-
/** @returns {
|
|
6174
|
-
declare function
|
|
6175
|
-
type
|
|
6176
|
-
closing?:
|
|
6707
|
+
/** @returns {LocationDayWiseSchema} */
|
|
6708
|
+
declare function LocationDayWiseSchema(): LocationDayWiseSchema;
|
|
6709
|
+
type LocationDayWiseSchema = {
|
|
6710
|
+
closing?: LocationTimingSchema;
|
|
6177
6711
|
open: boolean;
|
|
6178
|
-
opening?:
|
|
6712
|
+
opening?: LocationTimingSchema;
|
|
6179
6713
|
weekday: string;
|
|
6180
6714
|
};
|
|
6181
6715
|
/** @returns {LocationIntegrationType} */
|
|
6182
6716
|
declare function LocationIntegrationType(): LocationIntegrationType;
|
|
6183
6717
|
type LocationIntegrationType = {
|
|
6184
6718
|
inventory?: string;
|
|
6185
|
-
order?: string;
|
|
6186
6719
|
};
|
|
6187
|
-
/** @returns {
|
|
6188
|
-
declare function
|
|
6189
|
-
type
|
|
6190
|
-
items?:
|
|
6720
|
+
/** @returns {LocationListSchema} */
|
|
6721
|
+
declare function LocationListSchema(): LocationListSchema;
|
|
6722
|
+
type LocationListSchema = {
|
|
6723
|
+
items?: GetLocationSchema[];
|
|
6191
6724
|
page?: Page;
|
|
6192
6725
|
};
|
|
6193
|
-
/** @returns {
|
|
6194
|
-
declare function
|
|
6195
|
-
type
|
|
6726
|
+
/** @returns {LocationManagerSchema} */
|
|
6727
|
+
declare function LocationManagerSchema(): LocationManagerSchema;
|
|
6728
|
+
type LocationManagerSchema = {
|
|
6196
6729
|
email?: string;
|
|
6197
6730
|
mobile_no: SellerPhoneNumber;
|
|
6198
6731
|
name?: string;
|
|
6199
6732
|
};
|
|
6200
|
-
/** @returns {
|
|
6201
|
-
declare function
|
|
6202
|
-
type
|
|
6733
|
+
/** @returns {LocationTimingSchema} */
|
|
6734
|
+
declare function LocationTimingSchema(): LocationTimingSchema;
|
|
6735
|
+
type LocationTimingSchema = {
|
|
6203
6736
|
hour?: number;
|
|
6204
6737
|
minute?: number;
|
|
6205
6738
|
};
|
|
@@ -6218,9 +6751,9 @@ type MOQData = {
|
|
|
6218
6751
|
maximum?: number;
|
|
6219
6752
|
minimum?: number;
|
|
6220
6753
|
};
|
|
6221
|
-
/** @returns {
|
|
6222
|
-
declare function
|
|
6223
|
-
type
|
|
6754
|
+
/** @returns {ManufacturerResponseSchema} */
|
|
6755
|
+
declare function ManufacturerResponseSchema(): ManufacturerResponseSchema;
|
|
6756
|
+
type ManufacturerResponseSchema = {
|
|
6224
6757
|
/**
|
|
6225
6758
|
* - The address of the manufacturer.
|
|
6226
6759
|
*/
|
|
@@ -6244,9 +6777,29 @@ type ManufacturerResponse1 = {
|
|
|
6244
6777
|
/** @returns {Media} */
|
|
6245
6778
|
declare function Media(): Media;
|
|
6246
6779
|
type Media = {
|
|
6780
|
+
/**
|
|
6781
|
+
* - A metadata object containing additional
|
|
6782
|
+
* information about the media, such as dimensions, format, or other relevant details.
|
|
6783
|
+
*/
|
|
6247
6784
|
meta?: any;
|
|
6785
|
+
/**
|
|
6786
|
+
* - The type of media.
|
|
6787
|
+
*/
|
|
6248
6788
|
type?: string;
|
|
6789
|
+
/**
|
|
6790
|
+
* - The URL where the media can be accessed.
|
|
6791
|
+
*/
|
|
6249
6792
|
url: string;
|
|
6793
|
+
/**
|
|
6794
|
+
* - The alternative text for the media, used for
|
|
6795
|
+
* accessibility and as a fallback when the media cannot be displayed.
|
|
6796
|
+
*/
|
|
6797
|
+
alt?: string;
|
|
6798
|
+
/**
|
|
6799
|
+
* - The URL of the thumbnail image, typically a
|
|
6800
|
+
* smaller or lower-resolution version of the main media.
|
|
6801
|
+
*/
|
|
6802
|
+
thumbnail?: string;
|
|
6250
6803
|
};
|
|
6251
6804
|
/** @returns {Media1} */
|
|
6252
6805
|
declare function Media1(): Media1;
|
|
@@ -6278,35 +6831,35 @@ type Meta = {
|
|
|
6278
6831
|
unit?: string;
|
|
6279
6832
|
values?: any[];
|
|
6280
6833
|
};
|
|
6281
|
-
/** @returns {
|
|
6282
|
-
declare function
|
|
6283
|
-
type
|
|
6834
|
+
/** @returns {MetaDataListingFilterMetaResponseSchema} */
|
|
6835
|
+
declare function MetaDataListingFilterMetaResponseSchema(): MetaDataListingFilterMetaResponseSchema;
|
|
6836
|
+
type MetaDataListingFilterMetaResponseSchema = {
|
|
6284
6837
|
display?: string;
|
|
6285
6838
|
filter_types?: string[];
|
|
6286
6839
|
key?: string;
|
|
6287
6840
|
units?: any[];
|
|
6288
6841
|
};
|
|
6289
|
-
/** @returns {
|
|
6290
|
-
declare function
|
|
6291
|
-
type
|
|
6292
|
-
data?:
|
|
6842
|
+
/** @returns {MetaDataListingFilterResponseSchema} */
|
|
6843
|
+
declare function MetaDataListingFilterResponseSchema(): MetaDataListingFilterResponseSchema;
|
|
6844
|
+
type MetaDataListingFilterResponseSchema = {
|
|
6845
|
+
data?: MetaDataListingFilterMetaResponseSchema[];
|
|
6293
6846
|
};
|
|
6294
|
-
/** @returns {
|
|
6295
|
-
declare function
|
|
6296
|
-
type
|
|
6297
|
-
filter:
|
|
6298
|
-
sort:
|
|
6847
|
+
/** @returns {MetaDataListingResponseSchema} */
|
|
6848
|
+
declare function MetaDataListingResponseSchema(): MetaDataListingResponseSchema;
|
|
6849
|
+
type MetaDataListingResponseSchema = {
|
|
6850
|
+
filter: MetaDataListingFilterResponseSchema;
|
|
6851
|
+
sort: MetaDataListingSortResponseSchema;
|
|
6299
6852
|
};
|
|
6300
|
-
/** @returns {
|
|
6301
|
-
declare function
|
|
6302
|
-
type
|
|
6853
|
+
/** @returns {MetaDataListingSortMetaResponseSchema} */
|
|
6854
|
+
declare function MetaDataListingSortMetaResponseSchema(): MetaDataListingSortMetaResponseSchema;
|
|
6855
|
+
type MetaDataListingSortMetaResponseSchema = {
|
|
6303
6856
|
display?: string;
|
|
6304
6857
|
key?: string;
|
|
6305
6858
|
};
|
|
6306
|
-
/** @returns {
|
|
6307
|
-
declare function
|
|
6308
|
-
type
|
|
6309
|
-
data?:
|
|
6859
|
+
/** @returns {MetaDataListingSortResponseSchema} */
|
|
6860
|
+
declare function MetaDataListingSortResponseSchema(): MetaDataListingSortResponseSchema;
|
|
6861
|
+
type MetaDataListingSortResponseSchema = {
|
|
6862
|
+
data?: MetaDataListingSortMetaResponseSchema[];
|
|
6310
6863
|
};
|
|
6311
6864
|
/** @returns {MetaFields} */
|
|
6312
6865
|
declare function MetaFields(): MetaFields;
|
|
@@ -6335,9 +6888,9 @@ type NetQuantity = {
|
|
|
6335
6888
|
*/
|
|
6336
6889
|
value?: number;
|
|
6337
6890
|
};
|
|
6338
|
-
/** @returns {
|
|
6339
|
-
declare function
|
|
6340
|
-
type
|
|
6891
|
+
/** @returns {NetQuantityResponseSchema} */
|
|
6892
|
+
declare function NetQuantityResponseSchema(): NetQuantityResponseSchema;
|
|
6893
|
+
type NetQuantityResponseSchema = {
|
|
6341
6894
|
unit?: string;
|
|
6342
6895
|
value?: number;
|
|
6343
6896
|
};
|
|
@@ -6347,9 +6900,9 @@ type NextSchedule = {
|
|
|
6347
6900
|
end?: string;
|
|
6348
6901
|
start?: string;
|
|
6349
6902
|
};
|
|
6350
|
-
/** @returns {
|
|
6351
|
-
declare function
|
|
6352
|
-
type
|
|
6903
|
+
/** @returns {OptInPostRequestSchema} */
|
|
6904
|
+
declare function OptInPostRequestSchema(): OptInPostRequestSchema;
|
|
6905
|
+
type OptInPostRequestSchema = {
|
|
6353
6906
|
brand_ids?: number[];
|
|
6354
6907
|
company_id?: number;
|
|
6355
6908
|
enabled?: boolean;
|
|
@@ -6384,9 +6937,9 @@ type OptinStoreDetails = {
|
|
|
6384
6937
|
items?: StoreDetail[];
|
|
6385
6938
|
page?: Page;
|
|
6386
6939
|
};
|
|
6387
|
-
/** @returns {
|
|
6388
|
-
declare function
|
|
6389
|
-
type
|
|
6940
|
+
/** @returns {OwnerAppItemResponseSchema} */
|
|
6941
|
+
declare function OwnerAppItemResponseSchema(): OwnerAppItemResponseSchema;
|
|
6942
|
+
type OwnerAppItemResponseSchema = {
|
|
6390
6943
|
alt_text?: any;
|
|
6391
6944
|
is_cod?: boolean;
|
|
6392
6945
|
is_gift?: boolean;
|
|
@@ -6401,9 +6954,9 @@ type OwnerAppItemResponse = {
|
|
|
6401
6954
|
*/
|
|
6402
6955
|
_custom_meta?: MetaFields[];
|
|
6403
6956
|
};
|
|
6404
|
-
/** @returns {
|
|
6405
|
-
declare function
|
|
6406
|
-
type
|
|
6957
|
+
/** @returns {PTErrorResponseSchema} */
|
|
6958
|
+
declare function PTErrorResponseSchema(): PTErrorResponseSchema;
|
|
6959
|
+
type PTErrorResponseSchema = {
|
|
6407
6960
|
code?: string;
|
|
6408
6961
|
errors?: any;
|
|
6409
6962
|
message?: string;
|
|
@@ -6442,9 +6995,9 @@ type Page = {
|
|
|
6442
6995
|
*/
|
|
6443
6996
|
size?: number;
|
|
6444
6997
|
};
|
|
6445
|
-
/** @returns {
|
|
6446
|
-
declare function
|
|
6447
|
-
type
|
|
6998
|
+
/** @returns {PageResponseSchema} */
|
|
6999
|
+
declare function PageResponseSchema(): PageResponseSchema;
|
|
7000
|
+
type PageResponseSchema = {
|
|
6448
7001
|
/**
|
|
6449
7002
|
* - It is the current page of the page response schema.
|
|
6450
7003
|
*/
|
|
@@ -6468,16 +7021,6 @@ type PageResponse = {
|
|
|
6468
7021
|
*/
|
|
6469
7022
|
size?: number;
|
|
6470
7023
|
};
|
|
6471
|
-
/** @returns {PageResponse1} */
|
|
6472
|
-
declare function PageResponse1(): PageResponse1;
|
|
6473
|
-
type PageResponse1 = {
|
|
6474
|
-
current?: number;
|
|
6475
|
-
has_next?: boolean;
|
|
6476
|
-
has_previous?: boolean;
|
|
6477
|
-
item_total?: number;
|
|
6478
|
-
size?: number;
|
|
6479
|
-
type?: string;
|
|
6480
|
-
};
|
|
6481
7024
|
/** @returns {PageResponseType} */
|
|
6482
7025
|
declare function PageResponseType(): PageResponseType;
|
|
6483
7026
|
type PageResponseType = {
|
|
@@ -6495,14 +7038,6 @@ type Price = {
|
|
|
6495
7038
|
min_effective?: number;
|
|
6496
7039
|
min_marked?: number;
|
|
6497
7040
|
};
|
|
6498
|
-
/** @returns {Price1} */
|
|
6499
|
-
declare function Price1(): Price1;
|
|
6500
|
-
type Price1 = {
|
|
6501
|
-
currency_code?: string;
|
|
6502
|
-
currency_symbol?: string;
|
|
6503
|
-
max?: number;
|
|
6504
|
-
min?: number;
|
|
6505
|
-
};
|
|
6506
7041
|
/** @returns {PriceArticle} */
|
|
6507
7042
|
declare function PriceArticle(): PriceArticle;
|
|
6508
7043
|
type PriceArticle = {
|
|
@@ -6540,10 +7075,10 @@ type PriceMeta = {
|
|
|
6540
7075
|
*/
|
|
6541
7076
|
updated_at?: string;
|
|
6542
7077
|
};
|
|
6543
|
-
/** @returns {
|
|
6544
|
-
declare function
|
|
6545
|
-
type
|
|
6546
|
-
items?:
|
|
7078
|
+
/** @returns {ProdcutTemplateCategoriesResponseSchema} */
|
|
7079
|
+
declare function ProdcutTemplateCategoriesResponseSchema(): ProdcutTemplateCategoriesResponseSchema;
|
|
7080
|
+
type ProdcutTemplateCategoriesResponseSchema = {
|
|
7081
|
+
items?: CategoriesResponseSchema[];
|
|
6547
7082
|
page?: Page;
|
|
6548
7083
|
};
|
|
6549
7084
|
/** @returns {Product} */
|
|
@@ -6588,20 +7123,20 @@ type Product = {
|
|
|
6588
7123
|
moq?: any;
|
|
6589
7124
|
multi_size?: boolean;
|
|
6590
7125
|
name?: string;
|
|
6591
|
-
net_quantity?:
|
|
7126
|
+
net_quantity?: NetQuantityResponseSchema;
|
|
6592
7127
|
no_of_boxes?: number;
|
|
6593
7128
|
pending?: string;
|
|
6594
7129
|
primary_color?: string;
|
|
6595
7130
|
product_group_tag?: string[];
|
|
6596
7131
|
product_publish?: ProductPublished;
|
|
6597
|
-
return_config?:
|
|
7132
|
+
return_config?: ReturnConfigResponseSchema;
|
|
6598
7133
|
short_description?: string;
|
|
6599
7134
|
size_guide?: string;
|
|
6600
7135
|
sizes?: any[];
|
|
6601
7136
|
slug?: string;
|
|
6602
7137
|
stage?: string;
|
|
6603
7138
|
tags?: string[];
|
|
6604
|
-
tax_identifier?:
|
|
7139
|
+
tax_identifier?: TaxIdentifier;
|
|
6605
7140
|
teaser_tag?: any;
|
|
6606
7141
|
template_tag?: string;
|
|
6607
7142
|
trader?: Trader[];
|
|
@@ -6612,10 +7147,10 @@ type Product = {
|
|
|
6612
7147
|
verified_by?: VerifiedBy;
|
|
6613
7148
|
verified_on?: string;
|
|
6614
7149
|
};
|
|
6615
|
-
/** @returns {
|
|
6616
|
-
declare function
|
|
6617
|
-
type
|
|
6618
|
-
items:
|
|
7150
|
+
/** @returns {ProductAttributesResponseSchema} */
|
|
7151
|
+
declare function ProductAttributesResponseSchema(): ProductAttributesResponseSchema;
|
|
7152
|
+
type ProductAttributesResponseSchema = {
|
|
7153
|
+
items: AttributeMasterSchema[];
|
|
6619
7154
|
};
|
|
6620
7155
|
/** @returns {ProductBrand} */
|
|
6621
7156
|
declare function ProductBrand(): ProductBrand;
|
|
@@ -6633,9 +7168,9 @@ type ProductBulkAssets = {
|
|
|
6633
7168
|
url: string;
|
|
6634
7169
|
user: any;
|
|
6635
7170
|
};
|
|
6636
|
-
/** @returns {
|
|
6637
|
-
declare function
|
|
6638
|
-
type
|
|
7171
|
+
/** @returns {ProductBulkRequestSchema} */
|
|
7172
|
+
declare function ProductBulkRequestSchema(): ProductBulkRequestSchema;
|
|
7173
|
+
type ProductBulkRequestSchema = {
|
|
6639
7174
|
cancelled?: number;
|
|
6640
7175
|
cancelled_records?: any[];
|
|
6641
7176
|
company_id?: number;
|
|
@@ -6656,7 +7191,7 @@ type ProductBulkRequest = {
|
|
|
6656
7191
|
/** @returns {ProductBulkRequestList} */
|
|
6657
7192
|
declare function ProductBulkRequestList(): ProductBulkRequestList;
|
|
6658
7193
|
type ProductBulkRequestList = {
|
|
6659
|
-
items?:
|
|
7194
|
+
items?: any;
|
|
6660
7195
|
page?: Page;
|
|
6661
7196
|
};
|
|
6662
7197
|
/** @returns {ProductBundleItem} */
|
|
@@ -6669,9 +7204,9 @@ type ProductBundleItem = {
|
|
|
6669
7204
|
min_quantity: number;
|
|
6670
7205
|
product_uid: number;
|
|
6671
7206
|
};
|
|
6672
|
-
/** @returns {
|
|
6673
|
-
declare function
|
|
6674
|
-
type
|
|
7207
|
+
/** @returns {ProductBundleRequestSchema} */
|
|
7208
|
+
declare function ProductBundleRequestSchema(): ProductBundleRequestSchema;
|
|
7209
|
+
type ProductBundleRequestSchema = {
|
|
6675
7210
|
choice: string;
|
|
6676
7211
|
company_id?: number;
|
|
6677
7212
|
created_by?: any;
|
|
@@ -6687,9 +7222,9 @@ type ProductBundleRequest = {
|
|
|
6687
7222
|
same_store_assignment?: boolean;
|
|
6688
7223
|
slug: string;
|
|
6689
7224
|
};
|
|
6690
|
-
/** @returns {
|
|
6691
|
-
declare function
|
|
6692
|
-
type
|
|
7225
|
+
/** @returns {ProductBundleUpdateRequestSchema} */
|
|
7226
|
+
declare function ProductBundleUpdateRequestSchema(): ProductBundleUpdateRequestSchema;
|
|
7227
|
+
type ProductBundleUpdateRequestSchema = {
|
|
6693
7228
|
choice: string;
|
|
6694
7229
|
company_id?: number;
|
|
6695
7230
|
is_active: boolean;
|
|
@@ -6795,13 +7330,13 @@ type ProductDetailGroupedAttribute = {
|
|
|
6795
7330
|
details?: ProductDetailAttribute[];
|
|
6796
7331
|
title?: string;
|
|
6797
7332
|
};
|
|
6798
|
-
/** @returns {
|
|
6799
|
-
declare function
|
|
6800
|
-
type
|
|
7333
|
+
/** @returns {ProductDownloadsResponseSchema} */
|
|
7334
|
+
declare function ProductDownloadsResponseSchema(): ProductDownloadsResponseSchema;
|
|
7335
|
+
type ProductDownloadsResponseSchema = {
|
|
6801
7336
|
/**
|
|
6802
7337
|
* - The items of the job.
|
|
6803
7338
|
*/
|
|
6804
|
-
items?:
|
|
7339
|
+
items?: ProductTemplateExportResponseSchema[];
|
|
6805
7340
|
page?: Page;
|
|
6806
7341
|
};
|
|
6807
7342
|
/** @returns {ProductFilters} */
|
|
@@ -6810,9 +7345,9 @@ type ProductFilters = {
|
|
|
6810
7345
|
key: ProductFiltersKey;
|
|
6811
7346
|
values: ProductFiltersValue[];
|
|
6812
7347
|
};
|
|
6813
|
-
/** @returns {
|
|
6814
|
-
declare function
|
|
6815
|
-
type
|
|
7348
|
+
/** @returns {GetQueryFiltersValuesResponseSchema} */
|
|
7349
|
+
declare function GetQueryFiltersValuesResponseSchema(): GetQueryFiltersValuesResponseSchema;
|
|
7350
|
+
type GetQueryFiltersValuesResponseSchema = {
|
|
6816
7351
|
values: ProductFiltersValue[];
|
|
6817
7352
|
page: Page;
|
|
6818
7353
|
};
|
|
@@ -6846,45 +7381,9 @@ type ProductFiltersValue = {
|
|
|
6846
7381
|
selected_min?: number;
|
|
6847
7382
|
value: any;
|
|
6848
7383
|
};
|
|
6849
|
-
/** @returns {
|
|
6850
|
-
declare function
|
|
6851
|
-
type
|
|
6852
|
-
attributes?: any;
|
|
6853
|
-
brand?: ProductBrand;
|
|
6854
|
-
color?: string;
|
|
6855
|
-
description?: string;
|
|
6856
|
-
discount?: string;
|
|
6857
|
-
grouped_attributes?: ProductDetailGroupedAttribute[];
|
|
6858
|
-
has_variant?: boolean;
|
|
6859
|
-
highlights?: string[];
|
|
6860
|
-
image_nature?: string;
|
|
6861
|
-
item_code?: string;
|
|
6862
|
-
item_type?: string;
|
|
6863
|
-
medias?: Media[];
|
|
6864
|
-
name?: string;
|
|
6865
|
-
price?: ProductListingPrice;
|
|
6866
|
-
product_online_date?: string;
|
|
6867
|
-
promo_meta?: any;
|
|
6868
|
-
rating?: number;
|
|
6869
|
-
rating_count?: number;
|
|
6870
|
-
sellable?: boolean;
|
|
6871
|
-
short_description?: string;
|
|
6872
|
-
similars?: string[];
|
|
6873
|
-
slug: string;
|
|
6874
|
-
teaser_tag?: any;
|
|
6875
|
-
tryouts?: string[];
|
|
6876
|
-
type?: string;
|
|
6877
|
-
uid?: number;
|
|
6878
|
-
};
|
|
6879
|
-
/** @returns {ProductListingPrice} */
|
|
6880
|
-
declare function ProductListingPrice(): ProductListingPrice;
|
|
6881
|
-
type ProductListingPrice = {
|
|
6882
|
-
effective?: Price1;
|
|
6883
|
-
marked?: Price1;
|
|
6884
|
-
};
|
|
6885
|
-
/** @returns {ProductListingResponse} */
|
|
6886
|
-
declare function ProductListingResponse(): ProductListingResponse;
|
|
6887
|
-
type ProductListingResponse = {
|
|
7384
|
+
/** @returns {ProductListingResponseSchema} */
|
|
7385
|
+
declare function ProductListingResponseSchema(): ProductListingResponseSchema;
|
|
7386
|
+
type ProductListingResponseSchema = {
|
|
6888
7387
|
items?: Product[];
|
|
6889
7388
|
page?: Page;
|
|
6890
7389
|
};
|
|
@@ -6912,15 +7411,15 @@ type ProductPublished = {
|
|
|
6912
7411
|
is_set?: boolean;
|
|
6913
7412
|
product_online_date?: number;
|
|
6914
7413
|
};
|
|
6915
|
-
/** @returns {
|
|
6916
|
-
declare function
|
|
6917
|
-
type
|
|
7414
|
+
/** @returns {ProductReturnConfigSchema} */
|
|
7415
|
+
declare function ProductReturnConfigSchema(): ProductReturnConfigSchema;
|
|
7416
|
+
type ProductReturnConfigSchema = {
|
|
6918
7417
|
on_same_store?: boolean;
|
|
6919
7418
|
store_uid?: number;
|
|
6920
7419
|
};
|
|
6921
|
-
/** @returns {
|
|
6922
|
-
declare function
|
|
6923
|
-
type
|
|
7420
|
+
/** @returns {ProductReturnConfigBaseSchema} */
|
|
7421
|
+
declare function ProductReturnConfigBaseSchema(): ProductReturnConfigBaseSchema;
|
|
7422
|
+
type ProductReturnConfigBaseSchema = {
|
|
6924
7423
|
/**
|
|
6925
7424
|
* - Boolean Flag for item returnable
|
|
6926
7425
|
*/
|
|
@@ -6976,20 +7475,20 @@ type ProductSchemaV2 = {
|
|
|
6976
7475
|
moq?: any;
|
|
6977
7476
|
multi_size?: boolean;
|
|
6978
7477
|
name?: string;
|
|
6979
|
-
net_quantity?:
|
|
7478
|
+
net_quantity?: NetQuantityResponseSchema;
|
|
6980
7479
|
no_of_boxes?: number;
|
|
6981
7480
|
pending?: string;
|
|
6982
7481
|
primary_color?: string;
|
|
6983
7482
|
product_group_tag?: string[];
|
|
6984
7483
|
product_publish?: ProductPublish;
|
|
6985
|
-
return_config?:
|
|
7484
|
+
return_config?: ReturnConfigResponseSchema;
|
|
6986
7485
|
short_description?: string;
|
|
6987
7486
|
size_guide?: string;
|
|
6988
7487
|
sizes?: any[];
|
|
6989
7488
|
slug?: string;
|
|
6990
7489
|
stage?: string;
|
|
6991
7490
|
tags?: string[];
|
|
6992
|
-
tax_identifier?:
|
|
7491
|
+
tax_identifier?: TaxIdentifier;
|
|
6993
7492
|
teaser_tag?: any;
|
|
6994
7493
|
template_tag?: string;
|
|
6995
7494
|
trader?: Trader[];
|
|
@@ -7006,17 +7505,17 @@ type ProductSize = {
|
|
|
7006
7505
|
max: number;
|
|
7007
7506
|
min: number;
|
|
7008
7507
|
};
|
|
7009
|
-
/** @returns {
|
|
7010
|
-
declare function
|
|
7011
|
-
type
|
|
7508
|
+
/** @returns {ProductSizeDeleteDataResponseSchema} */
|
|
7509
|
+
declare function ProductSizeDeleteDataResponseSchema(): ProductSizeDeleteDataResponseSchema;
|
|
7510
|
+
type ProductSizeDeleteDataResponseSchema = {
|
|
7012
7511
|
company_id?: number;
|
|
7013
7512
|
item_id?: number;
|
|
7014
7513
|
size?: string;
|
|
7015
7514
|
};
|
|
7016
|
-
/** @returns {
|
|
7017
|
-
declare function
|
|
7018
|
-
type
|
|
7019
|
-
data?:
|
|
7515
|
+
/** @returns {ProductSizeDeleteResponseSchema} */
|
|
7516
|
+
declare function ProductSizeDeleteResponseSchema(): ProductSizeDeleteResponseSchema;
|
|
7517
|
+
type ProductSizeDeleteResponseSchema = {
|
|
7518
|
+
data?: ProductSizeDeleteDataResponseSchema;
|
|
7020
7519
|
success?: boolean;
|
|
7021
7520
|
};
|
|
7022
7521
|
/** @returns {ProductSortOn} */
|
|
@@ -7026,9 +7525,9 @@ type ProductSortOn = {
|
|
|
7026
7525
|
name?: string;
|
|
7027
7526
|
value?: string;
|
|
7028
7527
|
};
|
|
7029
|
-
/** @returns {
|
|
7030
|
-
declare function
|
|
7031
|
-
type
|
|
7528
|
+
/** @returns {ProductTagsViewResponseSchema} */
|
|
7529
|
+
declare function ProductTagsViewResponseSchema(): ProductTagsViewResponseSchema;
|
|
7530
|
+
type ProductTagsViewResponseSchema = {
|
|
7032
7531
|
items?: string[];
|
|
7033
7532
|
};
|
|
7034
7533
|
/** @returns {ProductTemplate} */
|
|
@@ -7058,7 +7557,7 @@ type ProductTemplateDownloadsExport = {
|
|
|
7058
7557
|
* - This is the
|
|
7059
7558
|
* filters of the file for the export.
|
|
7060
7559
|
*/
|
|
7061
|
-
filters?:
|
|
7560
|
+
filters?: ProductTemplateExportFilterRequestSchema;
|
|
7062
7561
|
/**
|
|
7063
7562
|
* - The list of the emails to be
|
|
7064
7563
|
* notified after the completion of the job.
|
|
@@ -7069,9 +7568,9 @@ type ProductTemplateDownloadsExport = {
|
|
|
7069
7568
|
*/
|
|
7070
7569
|
type?: string;
|
|
7071
7570
|
};
|
|
7072
|
-
/** @returns {
|
|
7073
|
-
declare function
|
|
7074
|
-
type
|
|
7571
|
+
/** @returns {ProductTemplateExportFilterRequestSchema} */
|
|
7572
|
+
declare function ProductTemplateExportFilterRequestSchema(): ProductTemplateExportFilterRequestSchema;
|
|
7573
|
+
type ProductTemplateExportFilterRequestSchema = {
|
|
7075
7574
|
/**
|
|
7076
7575
|
* - The list of the brands that needs to be exported.
|
|
7077
7576
|
*/
|
|
@@ -7096,9 +7595,9 @@ type ProductTemplateExportFilterRequest = {
|
|
|
7096
7595
|
*/
|
|
7097
7596
|
to_date?: string;
|
|
7098
7597
|
};
|
|
7099
|
-
/** @returns {
|
|
7100
|
-
declare function
|
|
7101
|
-
type
|
|
7598
|
+
/** @returns {ProductTemplateExportResponseSchema} */
|
|
7599
|
+
declare function ProductTemplateExportResponseSchema(): ProductTemplateExportResponseSchema;
|
|
7600
|
+
type ProductTemplateExportResponseSchema = {
|
|
7102
7601
|
/**
|
|
7103
7602
|
* - Completion datetime of the job
|
|
7104
7603
|
*/
|
|
@@ -7150,9 +7649,9 @@ type ProductVariants = {
|
|
|
7150
7649
|
name?: string;
|
|
7151
7650
|
uid?: number;
|
|
7152
7651
|
};
|
|
7153
|
-
/** @returns {
|
|
7154
|
-
declare function
|
|
7155
|
-
type
|
|
7652
|
+
/** @returns {ProductVariantsResponseSchema} */
|
|
7653
|
+
declare function ProductVariantsResponseSchema(): ProductVariantsResponseSchema;
|
|
7654
|
+
type ProductVariantsResponseSchema = {
|
|
7156
7655
|
page?: Page;
|
|
7157
7656
|
variants?: ProductVariants[];
|
|
7158
7657
|
};
|
|
@@ -7247,9 +7746,9 @@ type ReturnConfig2 = {
|
|
|
7247
7746
|
time?: number;
|
|
7248
7747
|
unit?: string;
|
|
7249
7748
|
};
|
|
7250
|
-
/** @returns {
|
|
7251
|
-
declare function
|
|
7252
|
-
type
|
|
7749
|
+
/** @returns {ReturnConfigResponseSchema} */
|
|
7750
|
+
declare function ReturnConfigResponseSchema(): ReturnConfigResponseSchema;
|
|
7751
|
+
type ReturnConfigResponseSchema = {
|
|
7253
7752
|
returnable?: boolean;
|
|
7254
7753
|
time?: number;
|
|
7255
7754
|
unit?: string;
|
|
@@ -7364,14 +7863,14 @@ type SetSize = {
|
|
|
7364
7863
|
pieces: number;
|
|
7365
7864
|
size: string;
|
|
7366
7865
|
};
|
|
7367
|
-
/** @returns {
|
|
7368
|
-
declare function
|
|
7369
|
-
type
|
|
7866
|
+
/** @returns {SingleCategoryResponseSchema} */
|
|
7867
|
+
declare function SingleCategoryResponseSchema(): SingleCategoryResponseSchema;
|
|
7868
|
+
type SingleCategoryResponseSchema = {
|
|
7370
7869
|
data?: Category;
|
|
7371
7870
|
};
|
|
7372
|
-
/** @returns {
|
|
7373
|
-
declare function
|
|
7374
|
-
type
|
|
7871
|
+
/** @returns {SingleProductResponseSchema} */
|
|
7872
|
+
declare function SingleProductResponseSchema(): SingleProductResponseSchema;
|
|
7873
|
+
type SingleProductResponseSchema = {
|
|
7375
7874
|
data?: ProductSchemaV2;
|
|
7376
7875
|
};
|
|
7377
7876
|
/** @returns {Size} */
|
|
@@ -7387,9 +7886,9 @@ declare function SizeDistribution(): SizeDistribution;
|
|
|
7387
7886
|
type SizeDistribution = {
|
|
7388
7887
|
sizes: SetSize[];
|
|
7389
7888
|
};
|
|
7390
|
-
/** @returns {
|
|
7391
|
-
declare function
|
|
7392
|
-
type
|
|
7889
|
+
/** @returns {SizeGuideResponseSchema} */
|
|
7890
|
+
declare function SizeGuideResponseSchema(): SizeGuideResponseSchema;
|
|
7891
|
+
type SizeGuideResponseSchema = {
|
|
7393
7892
|
active?: boolean;
|
|
7394
7893
|
brand_id?: number;
|
|
7395
7894
|
company_id?: number;
|
|
@@ -7404,9 +7903,9 @@ type SizeGuideResponse = {
|
|
|
7404
7903
|
tag?: string;
|
|
7405
7904
|
title?: string;
|
|
7406
7905
|
};
|
|
7407
|
-
/** @returns {
|
|
7408
|
-
declare function
|
|
7409
|
-
type
|
|
7906
|
+
/** @returns {StoreAssignResponseSchema} */
|
|
7907
|
+
declare function StoreAssignResponseSchema(): StoreAssignResponseSchema;
|
|
7908
|
+
type StoreAssignResponseSchema = {
|
|
7410
7909
|
_id?: string;
|
|
7411
7910
|
article_assignment: ArticleAssignment1;
|
|
7412
7911
|
company_id?: number;
|
|
@@ -7447,9 +7946,9 @@ declare function StoreMeta(): StoreMeta;
|
|
|
7447
7946
|
type StoreMeta = {
|
|
7448
7947
|
id: number;
|
|
7449
7948
|
};
|
|
7450
|
-
/** @returns {
|
|
7451
|
-
declare function
|
|
7452
|
-
type
|
|
7949
|
+
/** @returns {SuccessResponseSchema} */
|
|
7950
|
+
declare function SuccessResponseSchema(): SuccessResponseSchema;
|
|
7951
|
+
type SuccessResponseSchema = {
|
|
7453
7952
|
success?: boolean;
|
|
7454
7953
|
};
|
|
7455
7954
|
/** @returns {SuccessResponse1} */
|
|
@@ -7502,15 +8001,15 @@ type TemplateValidationData = {
|
|
|
7502
8001
|
global_validation?: GlobalValidation;
|
|
7503
8002
|
template_validation?: any;
|
|
7504
8003
|
};
|
|
7505
|
-
/** @returns {
|
|
7506
|
-
declare function
|
|
7507
|
-
type
|
|
8004
|
+
/** @returns {TemplatesResponseSchema} */
|
|
8005
|
+
declare function TemplatesResponseSchema(): TemplatesResponseSchema;
|
|
8006
|
+
type TemplatesResponseSchema = {
|
|
7508
8007
|
items?: ProductTemplate;
|
|
7509
8008
|
page?: Page;
|
|
7510
8009
|
};
|
|
7511
|
-
/** @returns {
|
|
7512
|
-
declare function
|
|
7513
|
-
type
|
|
8010
|
+
/** @returns {TemplatesValidationResponseSchema} */
|
|
8011
|
+
declare function TemplatesValidationResponseSchema(): TemplatesValidationResponseSchema;
|
|
8012
|
+
type TemplatesValidationResponseSchema = {
|
|
7514
8013
|
data?: TemplateValidationData;
|
|
7515
8014
|
template_details?: TemplateDetails;
|
|
7516
8015
|
};
|
|
@@ -7576,9 +8075,9 @@ type UpdateCollection = {
|
|
|
7576
8075
|
type?: string;
|
|
7577
8076
|
visible_facets_keys?: string[];
|
|
7578
8077
|
};
|
|
7579
|
-
/** @returns {
|
|
7580
|
-
declare function
|
|
7581
|
-
type
|
|
8078
|
+
/** @returns {UpdateSearchConfigurationRequestSchema} */
|
|
8079
|
+
declare function UpdateSearchConfigurationRequestSchema(): UpdateSearchConfigurationRequestSchema;
|
|
8080
|
+
type UpdateSearchConfigurationRequestSchema = {
|
|
7582
8081
|
/**
|
|
7583
8082
|
* - The application id where custom search
|
|
7584
8083
|
* configuration is set
|
|
@@ -7589,10 +8088,9 @@ type UpdateSearchConfigurationRequest = {
|
|
|
7589
8088
|
*/
|
|
7590
8089
|
company_id: number;
|
|
7591
8090
|
/**
|
|
7592
|
-
* - The user who created the search
|
|
7593
|
-
* configuration.
|
|
8091
|
+
* - The user who created the search configuration.
|
|
7594
8092
|
*/
|
|
7595
|
-
created_by?:
|
|
8093
|
+
created_by?: UserSchema;
|
|
7596
8094
|
/**
|
|
7597
8095
|
* - The date and time when the search
|
|
7598
8096
|
* configuration was created.
|
|
@@ -7604,10 +8102,9 @@ type UpdateSearchConfigurationRequest = {
|
|
|
7604
8102
|
*/
|
|
7605
8103
|
is_proximity_enabled?: boolean;
|
|
7606
8104
|
/**
|
|
7607
|
-
* - The user who modified the search
|
|
7608
|
-
* configuration.
|
|
8105
|
+
* - The user who modified the search configuration.
|
|
7609
8106
|
*/
|
|
7610
|
-
modified_by?:
|
|
8107
|
+
modified_by?: UserSchema;
|
|
7611
8108
|
/**
|
|
7612
8109
|
* - The date and time when the search
|
|
7613
8110
|
* configuration was last modified.
|
|
@@ -7623,14 +8120,14 @@ type UpdateSearchConfigurationRequest = {
|
|
|
7623
8120
|
*/
|
|
7624
8121
|
searchable_attributes?: SearchableAttribute[];
|
|
7625
8122
|
};
|
|
7626
|
-
/** @returns {
|
|
7627
|
-
declare function
|
|
7628
|
-
type
|
|
8123
|
+
/** @returns {UpdateSearchConfigurationResponseSchema} */
|
|
8124
|
+
declare function UpdateSearchConfigurationResponseSchema(): UpdateSearchConfigurationResponseSchema;
|
|
8125
|
+
type UpdateSearchConfigurationResponseSchema = {
|
|
7629
8126
|
success?: boolean;
|
|
7630
8127
|
};
|
|
7631
|
-
/** @returns {
|
|
7632
|
-
declare function
|
|
7633
|
-
type
|
|
8128
|
+
/** @returns {CreateMarketplaceOptinResponseSchema} */
|
|
8129
|
+
declare function CreateMarketplaceOptinResponseSchema(): CreateMarketplaceOptinResponseSchema;
|
|
8130
|
+
type CreateMarketplaceOptinResponseSchema = {
|
|
7634
8131
|
store_ids?: number[];
|
|
7635
8132
|
brand_ids?: number[];
|
|
7636
8133
|
company_id?: number;
|
|
@@ -7703,9 +8200,9 @@ type UserInfo1 = {
|
|
|
7703
8200
|
*/
|
|
7704
8201
|
username?: string;
|
|
7705
8202
|
};
|
|
7706
|
-
/** @returns {
|
|
7707
|
-
declare function
|
|
7708
|
-
type
|
|
8203
|
+
/** @returns {UserSchema} */
|
|
8204
|
+
declare function UserSchema(): UserSchema;
|
|
8205
|
+
type UserSchema = {
|
|
7709
8206
|
/**
|
|
7710
8207
|
* - The contact information of the user.
|
|
7711
8208
|
*/
|
|
@@ -7779,9 +8276,9 @@ type VerifiedBy = {
|
|
|
7779
8276
|
user_id?: string;
|
|
7780
8277
|
username?: string;
|
|
7781
8278
|
};
|
|
7782
|
-
/** @returns {
|
|
7783
|
-
declare function
|
|
7784
|
-
type
|
|
8279
|
+
/** @returns {WeightResponseSchema} */
|
|
8280
|
+
declare function WeightResponseSchema(): WeightResponseSchema;
|
|
8281
|
+
type WeightResponseSchema = {
|
|
7785
8282
|
/**
|
|
7786
8283
|
* - Indicates if it is the default weight.
|
|
7787
8284
|
*/
|
|
@@ -7807,6 +8304,12 @@ type CreatedBy = {
|
|
|
7807
8304
|
username?: string;
|
|
7808
8305
|
user_id?: string;
|
|
7809
8306
|
};
|
|
8307
|
+
/** @returns {ModifiedBy} */
|
|
8308
|
+
declare function ModifiedBy(): ModifiedBy;
|
|
8309
|
+
type ModifiedBy = {
|
|
8310
|
+
username?: string;
|
|
8311
|
+
user_id?: string;
|
|
8312
|
+
};
|
|
7810
8313
|
/** @returns {Marketplaces} */
|
|
7811
8314
|
declare function Marketplaces(): Marketplaces;
|
|
7812
8315
|
type Marketplaces = {
|
|
@@ -7829,9 +8332,9 @@ type GetAllMarketplaces = {
|
|
|
7829
8332
|
items?: Marketplaces[];
|
|
7830
8333
|
page?: Page;
|
|
7831
8334
|
};
|
|
7832
|
-
/** @returns {
|
|
7833
|
-
declare function
|
|
7834
|
-
type
|
|
8335
|
+
/** @returns {UpdateMarketplaceOptinRequestSchema} */
|
|
8336
|
+
declare function UpdateMarketplaceOptinRequestSchema(): UpdateMarketplaceOptinRequestSchema;
|
|
8337
|
+
type UpdateMarketplaceOptinRequestSchema = {
|
|
7835
8338
|
brand_ids?: number[];
|
|
7836
8339
|
company_id?: number;
|
|
7837
8340
|
enabled?: boolean;
|
|
@@ -7839,9 +8342,9 @@ type UpdateMarketplaceOptinRequest = {
|
|
|
7839
8342
|
platform?: string;
|
|
7840
8343
|
store_ids?: number[];
|
|
7841
8344
|
};
|
|
7842
|
-
/** @returns {
|
|
7843
|
-
declare function
|
|
7844
|
-
type
|
|
8345
|
+
/** @returns {UpdateMarketplaceOptinResponseSchema} */
|
|
8346
|
+
declare function UpdateMarketplaceOptinResponseSchema(): UpdateMarketplaceOptinResponseSchema;
|
|
8347
|
+
type UpdateMarketplaceOptinResponseSchema = {
|
|
7845
8348
|
brand_ids?: number[];
|
|
7846
8349
|
company_id?: number;
|
|
7847
8350
|
app_id?: string;
|
|
@@ -7852,6 +8355,59 @@ type UpdateMarketplaceOptinResponse = {
|
|
|
7852
8355
|
created_by?: CreatedBy;
|
|
7853
8356
|
modified_by?: CreatedBy;
|
|
7854
8357
|
};
|
|
8358
|
+
/** @returns {Identifier} */
|
|
8359
|
+
declare function Identifier(): Identifier;
|
|
8360
|
+
type Identifier = {
|
|
8361
|
+
/**
|
|
8362
|
+
* - The European Article Number (EAN) of the item.
|
|
8363
|
+
*/
|
|
8364
|
+
ean?: string;
|
|
8365
|
+
/**
|
|
8366
|
+
* - The Stock Keeping Unit (SKU) code of the item.
|
|
8367
|
+
*/
|
|
8368
|
+
sku_code?: string;
|
|
8369
|
+
/**
|
|
8370
|
+
* - The Alternative Lookup Product of the item.
|
|
8371
|
+
*/
|
|
8372
|
+
alu?: string;
|
|
8373
|
+
/**
|
|
8374
|
+
* - Universal Product Code of the item.
|
|
8375
|
+
*/
|
|
8376
|
+
upc?: string;
|
|
8377
|
+
/**
|
|
8378
|
+
* - ISBN (International Standard Book Number) is a
|
|
8379
|
+
* unique identifier used globally to identify books and other non-periodical
|
|
8380
|
+
* publications
|
|
8381
|
+
*/
|
|
8382
|
+
isbn?: string;
|
|
8383
|
+
};
|
|
8384
|
+
/** @returns {Filters} */
|
|
8385
|
+
declare function Filters(): Filters;
|
|
8386
|
+
type Filters = {
|
|
8387
|
+
/**
|
|
8388
|
+
* - The list of all the brands selected.
|
|
8389
|
+
*/
|
|
8390
|
+
brands?: string[];
|
|
8391
|
+
/**
|
|
8392
|
+
* - The modified-on date from which the data
|
|
8393
|
+
* needs to be exported.
|
|
8394
|
+
*/
|
|
8395
|
+
from_date?: string;
|
|
8396
|
+
/**
|
|
8397
|
+
* - The quantity range
|
|
8398
|
+
* that needs to be exported.
|
|
8399
|
+
*/
|
|
8400
|
+
quantity?: InventoryExportQuantityFilter;
|
|
8401
|
+
/**
|
|
8402
|
+
* - The list of all the stores selected.
|
|
8403
|
+
*/
|
|
8404
|
+
stores?: string[];
|
|
8405
|
+
/**
|
|
8406
|
+
* - The modified-on date till when the data needs
|
|
8407
|
+
* to be exported.
|
|
8408
|
+
*/
|
|
8409
|
+
to_date?: string;
|
|
8410
|
+
};
|
|
7855
8411
|
/** @returns {ActionPage} */
|
|
7856
8412
|
declare function ActionPage(): ActionPage;
|
|
7857
8413
|
type ActionPage = {
|
|
@@ -7869,10 +8425,79 @@ type ActionPage = {
|
|
|
7869
8425
|
url?: string;
|
|
7870
8426
|
type: PageType;
|
|
7871
8427
|
};
|
|
8428
|
+
/** @returns {ProductListingPrice} */
|
|
8429
|
+
declare function ProductListingPrice(): ProductListingPrice;
|
|
8430
|
+
type ProductListingPrice = {
|
|
8431
|
+
effective?: Price1;
|
|
8432
|
+
marked?: Price1;
|
|
8433
|
+
selling?: Price1;
|
|
8434
|
+
};
|
|
8435
|
+
/** @returns {Price1} */
|
|
8436
|
+
declare function Price1(): Price1;
|
|
8437
|
+
type Price1 = {
|
|
8438
|
+
currency_code?: CurrencyCodeEnum;
|
|
8439
|
+
currency_symbol?: string;
|
|
8440
|
+
max?: number;
|
|
8441
|
+
min?: number;
|
|
8442
|
+
};
|
|
8443
|
+
/** @returns {MultiCategoriesSchema} */
|
|
8444
|
+
declare function MultiCategoriesSchema(): MultiCategoriesSchema;
|
|
8445
|
+
type MultiCategoriesSchema = {
|
|
8446
|
+
/**
|
|
8447
|
+
* - The ID of the Level 1 (L1) category of the product.
|
|
8448
|
+
*/
|
|
8449
|
+
l1?: number;
|
|
8450
|
+
/**
|
|
8451
|
+
* - The ID of the Level 2 (L2) category of the product.
|
|
8452
|
+
*/
|
|
8453
|
+
l2?: number;
|
|
8454
|
+
/**
|
|
8455
|
+
* - The ID of the Level 3 (L3) category of the product.
|
|
8456
|
+
*/
|
|
8457
|
+
l3?: number;
|
|
8458
|
+
/**
|
|
8459
|
+
* - Indicates whether the L3 category of the
|
|
8460
|
+
* product is currently active.
|
|
8461
|
+
*/
|
|
8462
|
+
is_active?: boolean;
|
|
8463
|
+
/**
|
|
8464
|
+
* - The department associated with the L3
|
|
8465
|
+
* category of the product.
|
|
8466
|
+
*/
|
|
8467
|
+
department?: number;
|
|
8468
|
+
};
|
|
8469
|
+
/** @returns {CustomMeta} */
|
|
8470
|
+
declare function CustomMeta(): CustomMeta;
|
|
8471
|
+
type CustomMeta = {
|
|
8472
|
+
/**
|
|
8473
|
+
* - The key of the metadata. Should be a non-empty
|
|
8474
|
+
* string and length should not exceed 30 characters.
|
|
8475
|
+
*/
|
|
8476
|
+
key: string;
|
|
8477
|
+
/**
|
|
8478
|
+
* - The value of the metadata. Should be a non-empty
|
|
8479
|
+
* string and length should not exceed 100 characters.
|
|
8480
|
+
*/
|
|
8481
|
+
value: string;
|
|
8482
|
+
};
|
|
8483
|
+
/**
|
|
8484
|
+
* Enum: order Used By: Catalog
|
|
8485
|
+
*
|
|
8486
|
+
* @returns {order}
|
|
8487
|
+
*/
|
|
8488
|
+
declare function order(): order;
|
|
8489
|
+
type order = "browntape_v2" | "easyops" | "holisol" | "logic" | "tcnss" | "increff" | "liberty" | "browntape" | "easyecom" | "major_brands" | "jiopos" | "jockey" | "omsguru" | "pulse" | "sellerware" | "unicommerce" | "ethos" | "sarasuole" | "vajor" | "vinculum" | "jiomart_pos" | "rbl_sap" | "ginesys-pos" | "fyndpos" | "jiopos_openapi" | "jiopos_hamleys" | "westelm" | "rbl_sap_furniture" | "vinculum_v2" | "wizapp";
|
|
7872
8490
|
/**
|
|
7873
8491
|
* Enum: PageType Used By: Catalog
|
|
7874
8492
|
*
|
|
7875
8493
|
* @returns {PageType}
|
|
7876
8494
|
*/
|
|
7877
8495
|
declare function PageType(): PageType;
|
|
7878
|
-
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";
|
|
8496
|
+
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";
|
|
8497
|
+
/**
|
|
8498
|
+
* Enum: CurrencyCodeEnum Used By: Catalog
|
|
8499
|
+
*
|
|
8500
|
+
* @returns {CurrencyCodeEnum}
|
|
8501
|
+
*/
|
|
8502
|
+
declare function CurrencyCodeEnum(): CurrencyCodeEnum;
|
|
8503
|
+
type CurrencyCodeEnum = "INR" | "USD" | "EUR";
|