@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
|
@@ -162,7 +162,7 @@ export = CatalogApplicationModel;
|
|
|
162
162
|
* the product.
|
|
163
163
|
*/
|
|
164
164
|
/**
|
|
165
|
-
* @typedef
|
|
165
|
+
* @typedef ErrorResponseSchema
|
|
166
166
|
* @property {string} [error] - A brief description of the error.
|
|
167
167
|
*/
|
|
168
168
|
/**
|
|
@@ -264,13 +264,13 @@ export = CatalogApplicationModel;
|
|
|
264
264
|
* attributes.
|
|
265
265
|
*/
|
|
266
266
|
/**
|
|
267
|
-
* @typedef
|
|
267
|
+
* @typedef ProductsComparisonResponseSchema
|
|
268
268
|
* @property {ProductDetail[]} [items] - List of product details for comparison.
|
|
269
269
|
* @property {AttributeMetadata[]} [attributes_metadata] - Metadata about
|
|
270
270
|
* attributes used for comparing products.
|
|
271
271
|
*/
|
|
272
272
|
/**
|
|
273
|
-
* @typedef
|
|
273
|
+
* @typedef ProductCompareResponseSchema
|
|
274
274
|
* @property {string} [title] - Title or name of the comparison.
|
|
275
275
|
* @property {ProductDetail[]} [items] - List of product details for comparison.
|
|
276
276
|
* @property {AttributeMetadata[]} [attributes_metadata] - Metadata about
|
|
@@ -278,11 +278,11 @@ export = CatalogApplicationModel;
|
|
|
278
278
|
* @property {string} [subtitle] - Subtitle or additional description for the comparison.
|
|
279
279
|
*/
|
|
280
280
|
/**
|
|
281
|
-
* @typedef
|
|
282
|
-
* @property {
|
|
281
|
+
* @typedef ProductFrequentlyComparedSimilarResponseSchema
|
|
282
|
+
* @property {ProductCompareResponseSchema} [similars]
|
|
283
283
|
*/
|
|
284
284
|
/**
|
|
285
|
-
* @typedef
|
|
285
|
+
* @typedef ProductVariantItemResponseSchema
|
|
286
286
|
* @property {number} [uid] - Unique identifier for the product variant.
|
|
287
287
|
* @property {string} [color_name] - Name of the color for the variant.
|
|
288
288
|
* @property {string} [color] - Color code or representation for the variant.
|
|
@@ -299,20 +299,20 @@ export = CatalogApplicationModel;
|
|
|
299
299
|
* @property {ProductListingAction} [action]
|
|
300
300
|
*/
|
|
301
301
|
/**
|
|
302
|
-
* @typedef
|
|
302
|
+
* @typedef ProductVariantResponseSchema
|
|
303
303
|
* @property {string} [display_type] - The type of display for the product
|
|
304
304
|
* variant (e.g., image, text, image, color).
|
|
305
305
|
* @property {string} [header] - Header or title for the product variant section.
|
|
306
306
|
* @property {string} [group_id] - Group ID used to group variants.
|
|
307
|
-
* @property {
|
|
307
|
+
* @property {ProductVariantItemResponseSchema[]} [items] - List of product variant items.
|
|
308
308
|
* @property {string} [key] - Attribute identifier of the variant.
|
|
309
309
|
* @property {string} [logo] - URL or path to the logo associated with the
|
|
310
310
|
* product variant.
|
|
311
311
|
*/
|
|
312
312
|
/**
|
|
313
|
-
* @typedef
|
|
314
|
-
* @property {
|
|
315
|
-
* responses, each detailing a specific variant.
|
|
313
|
+
* @typedef ProductVariantsResponseSchema
|
|
314
|
+
* @property {ProductVariantResponseSchema[]} [variants] - A list of product
|
|
315
|
+
* variant responses, each detailing a specific variant.
|
|
316
316
|
*/
|
|
317
317
|
/**
|
|
318
318
|
* @typedef StoreDetail
|
|
@@ -348,10 +348,10 @@ export = CatalogApplicationModel;
|
|
|
348
348
|
* @property {CompanyDetail} [company]
|
|
349
349
|
* @property {number} [item_id] - NA.
|
|
350
350
|
* @property {Seller} [seller]
|
|
351
|
-
* @property {
|
|
351
|
+
* @property {Identifier} [identifier]
|
|
352
352
|
*/
|
|
353
353
|
/**
|
|
354
|
-
* @typedef
|
|
354
|
+
* @typedef ProductStockStatusResponseSchema
|
|
355
355
|
* @property {ProductStockStatusItem[]} [items] - NA.
|
|
356
356
|
*/
|
|
357
357
|
/**
|
|
@@ -370,10 +370,10 @@ export = CatalogApplicationModel;
|
|
|
370
370
|
* @property {Page} page
|
|
371
371
|
*/
|
|
372
372
|
/**
|
|
373
|
-
* @typedef
|
|
373
|
+
* @typedef ProductVariantListingResponseSchema
|
|
374
374
|
* @property {string} [header] - Header or title for the product variant section.
|
|
375
|
-
* @property {
|
|
376
|
-
* variant items.
|
|
375
|
+
* @property {ProductVariantItemResponseSchema[]} [items] - List of Upto 5
|
|
376
|
+
* product variant items.
|
|
377
377
|
* @property {number} [total] - The total number of product variants available.
|
|
378
378
|
* @property {string} [key] - Attribute identifier of the variant.
|
|
379
379
|
* @property {string} [display_type] - The type of display for the product
|
|
@@ -417,8 +417,8 @@ export = CatalogApplicationModel;
|
|
|
417
417
|
* @property {boolean} [sellable] - Indicates whether the product is available for sale.
|
|
418
418
|
* @property {Object} [attributes] - Additional attributes or characteristics of
|
|
419
419
|
* the product.
|
|
420
|
-
* @property {
|
|
421
|
-
* variants available for the product.
|
|
420
|
+
* @property {ProductVariantListingResponseSchema[]} [variants] - List of
|
|
421
|
+
* product variants available for the product.
|
|
422
422
|
* @property {string} [discount] - Discount details or percentage applied to the product.
|
|
423
423
|
* @property {string[]} [tryouts] - List of tryout options available for the product.
|
|
424
424
|
* @property {string[]} [identifiers] - List of seller identifiers for the product.
|
|
@@ -478,7 +478,7 @@ export = CatalogApplicationModel;
|
|
|
478
478
|
* @property {string} [display] - Display name or label for the sorting option.
|
|
479
479
|
*/
|
|
480
480
|
/**
|
|
481
|
-
* @typedef
|
|
481
|
+
* @typedef ProductListingResponseSchema
|
|
482
482
|
* @property {ProductListingDetail[]} [items] - List of product details included
|
|
483
483
|
* in the response.
|
|
484
484
|
* @property {ProductFilters[]} [filters] - List of filters available for
|
|
@@ -509,12 +509,12 @@ export = CatalogApplicationModel;
|
|
|
509
509
|
* @property {ProductListingAction} [action]
|
|
510
510
|
*/
|
|
511
511
|
/**
|
|
512
|
-
* @typedef
|
|
512
|
+
* @typedef BrandListingResponseSchema
|
|
513
513
|
* @property {BrandItem[]} [items] - List of brand items included in the response.
|
|
514
514
|
* @property {Page} page
|
|
515
515
|
*/
|
|
516
516
|
/**
|
|
517
|
-
* @typedef
|
|
517
|
+
* @typedef BrandDetailResponseSchema
|
|
518
518
|
* @property {Media} [logo]
|
|
519
519
|
* @property {number} [uid] - The unique identifier for the brand.
|
|
520
520
|
* @property {string} [description] - Detailed description of the brand,
|
|
@@ -582,12 +582,12 @@ export = CatalogApplicationModel;
|
|
|
582
582
|
* @property {string} [slug] - Slug or URL-friendly identifier for the department.
|
|
583
583
|
*/
|
|
584
584
|
/**
|
|
585
|
-
* @typedef
|
|
585
|
+
* @typedef CategoryListingResponseSchema
|
|
586
586
|
* @property {DepartmentCategoryTree[]} [data] - List of department category trees.
|
|
587
587
|
* @property {DepartmentIdentifier[]} [departments] - List of departments.
|
|
588
588
|
*/
|
|
589
589
|
/**
|
|
590
|
-
* @typedef
|
|
590
|
+
* @typedef CategoryMetaResponseSchema
|
|
591
591
|
* @property {Media} [logo]
|
|
592
592
|
* @property {number} [uid] - Unique identifier for the category.
|
|
593
593
|
* @property {ImageUrls} [banners]
|
|
@@ -596,7 +596,7 @@ export = CatalogApplicationModel;
|
|
|
596
596
|
* @property {string} [name] - Name of the category.
|
|
597
597
|
*/
|
|
598
598
|
/**
|
|
599
|
-
* @typedef
|
|
599
|
+
* @typedef HomeListingResponseSchema
|
|
600
600
|
* @property {ProductListingDetail[]} [items] - List of product details
|
|
601
601
|
* displayed on the home page.
|
|
602
602
|
* @property {Page} page
|
|
@@ -614,7 +614,7 @@ export = CatalogApplicationModel;
|
|
|
614
614
|
* used in the web address to access the department's page on the platform.
|
|
615
615
|
*/
|
|
616
616
|
/**
|
|
617
|
-
* @typedef
|
|
617
|
+
* @typedef DepartmentResponseSchema
|
|
618
618
|
* @property {Department[]} [items] - List of department detail objects.
|
|
619
619
|
*/
|
|
620
620
|
/**
|
|
@@ -628,7 +628,7 @@ export = CatalogApplicationModel;
|
|
|
628
628
|
* @property {ProductListingAction} [action]
|
|
629
629
|
*/
|
|
630
630
|
/**
|
|
631
|
-
* @typedef
|
|
631
|
+
* @typedef AutoCompleteResponseSchema
|
|
632
632
|
* @property {AutocompleteItem[]} [items] - List of autocomplete items suggested
|
|
633
633
|
* based on user input.
|
|
634
634
|
*/
|
|
@@ -699,7 +699,7 @@ export = CatalogApplicationModel;
|
|
|
699
699
|
* category or attribute for filtering.
|
|
700
700
|
*/
|
|
701
701
|
/**
|
|
702
|
-
* @typedef
|
|
702
|
+
* @typedef GetCollectionListingResponseSchema
|
|
703
703
|
* @property {GetCollectionDetailNest[]} [items] - An array of collection
|
|
704
704
|
* details. Each item in the array represents a collection with various
|
|
705
705
|
* attributes and configurations.
|
|
@@ -707,7 +707,7 @@ export = CatalogApplicationModel;
|
|
|
707
707
|
* @property {Page} page
|
|
708
708
|
*/
|
|
709
709
|
/**
|
|
710
|
-
* @typedef
|
|
710
|
+
* @typedef CollectionDetailResponseSchema
|
|
711
711
|
* @property {boolean} [is_active] - Indicates whether the collection is active.
|
|
712
712
|
* @property {string} [sort_on] - Criteria used to sort the items within the
|
|
713
713
|
* collection, such as price, popularity, or newest first.
|
|
@@ -739,21 +739,21 @@ export = CatalogApplicationModel;
|
|
|
739
739
|
* @property {string} [app_id] - Application ID associated with the collection.
|
|
740
740
|
*/
|
|
741
741
|
/**
|
|
742
|
-
* @typedef
|
|
742
|
+
* @typedef GetFollowListingResponseSchema
|
|
743
743
|
* @property {ProductListingDetail[]} items - An array of product details that
|
|
744
744
|
* the user is following. Each item includes information such as the product
|
|
745
745
|
* name, price, and other attributes.
|
|
746
746
|
* @property {Page} page
|
|
747
747
|
*/
|
|
748
748
|
/**
|
|
749
|
-
* @typedef
|
|
749
|
+
* @typedef FollowPostResponseSchema
|
|
750
750
|
* @property {string} message - A message indicating the result of the follow or
|
|
751
751
|
* unfollow operation. This could be a confirmation message or an error message.
|
|
752
752
|
* @property {string} id - A unique identifier for the follow operation, which
|
|
753
753
|
* can be used to reference or track the follow status.
|
|
754
754
|
*/
|
|
755
755
|
/**
|
|
756
|
-
* @typedef
|
|
756
|
+
* @typedef FollowerCountResponseSchema
|
|
757
757
|
* @property {number} [count] - The number of followers for the item. This count
|
|
758
758
|
* indicates how many users are following the specified item.
|
|
759
759
|
*/
|
|
@@ -767,7 +767,7 @@ export = CatalogApplicationModel;
|
|
|
767
767
|
* the user is following.
|
|
768
768
|
*/
|
|
769
769
|
/**
|
|
770
|
-
* @typedef
|
|
770
|
+
* @typedef FollowIdsResponseSchema
|
|
771
771
|
* @property {FollowIdsData} [data]
|
|
772
772
|
*/
|
|
773
773
|
/**
|
|
@@ -777,6 +777,11 @@ export = CatalogApplicationModel;
|
|
|
777
777
|
* @property {string} [type] - The type of geographic coordinate system used.
|
|
778
778
|
* For example, "Point" indicates a single point in a geographic coordinate system.
|
|
779
779
|
*/
|
|
780
|
+
/**
|
|
781
|
+
* @typedef StoreContact
|
|
782
|
+
* @property {string} [number] - The contact number of the Store Manager.
|
|
783
|
+
* @property {number} [country_code] - The country code for the contact number.
|
|
784
|
+
*/
|
|
780
785
|
/**
|
|
781
786
|
* @typedef Store
|
|
782
787
|
* @property {number} [uid] - A unique identifier for the store.
|
|
@@ -791,9 +796,10 @@ export = CatalogApplicationModel;
|
|
|
791
796
|
* @property {LatLong} [lat_long]
|
|
792
797
|
* @property {string} [name] - The name of the store.
|
|
793
798
|
* @property {string[]} [tags] - The list of tags mapped to the store.
|
|
799
|
+
* @property {StoreContact[]} [contacts] - List of contact numbers for the store.
|
|
794
800
|
*/
|
|
795
801
|
/**
|
|
796
|
-
* @typedef
|
|
802
|
+
* @typedef StoreListingResponseSchema
|
|
797
803
|
* @property {Store[]} items - An array of store details. Each store includes
|
|
798
804
|
* information such as name, address, and geographic coordinates.
|
|
799
805
|
* @property {Page} page
|
|
@@ -830,13 +836,13 @@ export = CatalogApplicationModel;
|
|
|
830
836
|
* @property {string} number - The seller's contact number.
|
|
831
837
|
*/
|
|
832
838
|
/**
|
|
833
|
-
* @typedef
|
|
839
|
+
* @typedef StoreManagerSchema
|
|
834
840
|
* @property {string} [name] - The name of the store manager.
|
|
835
841
|
* @property {string} [email] - The email address of the store manager.
|
|
836
842
|
* @property {SellerPhoneNumber} [mobile_no]
|
|
837
843
|
*/
|
|
838
844
|
/**
|
|
839
|
-
* @typedef
|
|
845
|
+
* @typedef StoreAddressSchema
|
|
840
846
|
* @property {number} [latitude] - The latitude of the store's location.
|
|
841
847
|
* @property {string} [state] - The state where the store is located.
|
|
842
848
|
* @property {string} [country] - The country where the store is located.
|
|
@@ -852,9 +858,9 @@ export = CatalogApplicationModel;
|
|
|
852
858
|
* @property {number} [uid] - The unique identifier for the application store.
|
|
853
859
|
* @property {StoreDepartments[]} [departments] - A list of departments within the store.
|
|
854
860
|
* @property {CompanyStore} [company]
|
|
855
|
-
* @property {
|
|
861
|
+
* @property {StoreManagerSchema} [manager]
|
|
856
862
|
* @property {string} [store_code] - A unique code for identifying the store.
|
|
857
|
-
* @property {
|
|
863
|
+
* @property {StoreAddressSchema} [address]
|
|
858
864
|
* @property {string} [name] - The name of the store.
|
|
859
865
|
* @property {SellerPhoneNumber[]} [contact_numbers] - A list of contact numbers
|
|
860
866
|
* for the store.
|
|
@@ -882,11 +888,11 @@ export = CatalogApplicationModel;
|
|
|
882
888
|
* @property {number} [uid] - The unique identifier for the store.
|
|
883
889
|
* @property {StoreDepartments[]} [departments] - A list of departments within the store.
|
|
884
890
|
* @property {CompanyStore} [company]
|
|
885
|
-
* @property {
|
|
891
|
+
* @property {StoreManagerSchema} [manager]
|
|
886
892
|
* @property {string} [store_code] - A unique code for identifying the store.
|
|
887
893
|
* @property {StoreTiming[]} [timing] - The opening and closing times for the
|
|
888
894
|
* store throughout the week.
|
|
889
|
-
* @property {
|
|
895
|
+
* @property {StoreAddressSchema} [address]
|
|
890
896
|
* @property {Object} [_custom_json] - Custom JSON data for the store.
|
|
891
897
|
* @property {string} [name] - The name of the store.
|
|
892
898
|
* @property {SellerPhoneNumber[]} [contact_numbers] - A list of contact numbers
|
|
@@ -934,7 +940,7 @@ export = CatalogApplicationModel;
|
|
|
934
940
|
* @property {Object[]} [images] - A list of image URLs for the product.
|
|
935
941
|
* @property {Object} [slug] - The slug of the product.
|
|
936
942
|
* @property {number} [rating] - The rating of the product.
|
|
937
|
-
* @property {
|
|
943
|
+
* @property {Identifier} [identifier]
|
|
938
944
|
* @property {Object[]} [highlights] - A list of highlights for the product.
|
|
939
945
|
* @property {number} [brand_uid] - The unique ID of the product's brand.
|
|
940
946
|
*/
|
|
@@ -1127,10 +1133,20 @@ export = CatalogApplicationModel;
|
|
|
1127
1133
|
* @property {ProductSizeSellerFilterSchemaV3[]} [sort_on] - A list of sorting
|
|
1128
1134
|
* and filtering criteria applied to the sellers' data.
|
|
1129
1135
|
*/
|
|
1136
|
+
/**
|
|
1137
|
+
* @typedef Identifier
|
|
1138
|
+
* @property {string} [ean] - The European Article Number (EAN) of the item.
|
|
1139
|
+
* @property {string} [sku_code] - The Stock Keeping Unit (SKU) code of the item.
|
|
1140
|
+
* @property {string} [alu] - The Alternative Lookup Product of the item.
|
|
1141
|
+
* @property {string} [upc] - Universal Product Code of the item.
|
|
1142
|
+
* @property {string} [isbn] - ISBN (International Standard Book Number) is a
|
|
1143
|
+
* unique identifier used globally to identify books and other non-periodical
|
|
1144
|
+
* publications
|
|
1145
|
+
*/
|
|
1130
1146
|
declare class CatalogApplicationModel {
|
|
1131
1147
|
}
|
|
1132
1148
|
declare namespace CatalogApplicationModel {
|
|
1133
|
-
export { ProductDetailCustomOrder, Meta, Media, ProductListingActionPage, ProductListingAction, ProductBrand, ProductDepartment, ProductCategoryMap, NetQuantity, CustomMetaFields, ApplicationItemSEO, ProductDetailAttribute, ProductDetailGroupedAttribute, ApplicationItemMOQ, Price, ProductListingPrice, ProductSizesPrice, ProductDetail,
|
|
1149
|
+
export { ProductDetailCustomOrder, Meta, Media, ProductListingActionPage, ProductListingAction, ProductBrand, ProductDepartment, ProductCategoryMap, NetQuantity, CustomMetaFields, ApplicationItemSEO, ProductDetailAttribute, ProductDetailGroupedAttribute, ApplicationItemMOQ, Price, ProductListingPrice, ProductSizesPrice, ProductDetail, ErrorResponseSchema, Dimension, Weight, DiscountMeta, ProductSize, SizeChartValues, ColumnHeader, ColumnHeaders, SizeChart, ProductSizeStores, ProductSizes, AttributeDetail, AttributeMetadata, ProductsComparisonResponseSchema, ProductCompareResponseSchema, ProductFrequentlyComparedSimilarResponseSchema, ProductVariantItemResponseSchema, ProductVariantResponseSchema, ProductVariantsResponseSchema, StoreDetail, ProductStockPrice, CompanyDetail, Seller, ProductStockStatusItem, ProductStockStatusResponseSchema, Page, ProductStockPolling, ProductVariantListingResponseSchema, ProductListingDetail, ProductFiltersValue, ProductFiltersKey, ProductFilters, ProductSortOn, ProductListingResponseSchema, ImageUrls, BrandItem, BrandListingResponseSchema, BrandDetailResponseSchema, CategoryBanner, ThirdLevelChild, SecondLevelChild, Child, CategoryItems, DepartmentCategoryTree, DepartmentIdentifier, CategoryListingResponseSchema, CategoryMetaResponseSchema, HomeListingResponseSchema, Department, DepartmentResponseSchema, AutocompleteItem, AutoCompleteResponseSchema, CollectionQuery, GetCollectionDetailNest, CollectionListingFilterTag, CollectionListingFilterType, CollectionListingFilter, GetCollectionListingResponseSchema, CollectionDetailResponseSchema, GetFollowListingResponseSchema, FollowPostResponseSchema, FollowerCountResponseSchema, FollowIdsData, FollowIdsResponseSchema, LatLong, StoreContact, Store, StoreListingResponseSchema, StoreDepartments, CompanyStore, SellerPhoneNumber, StoreManagerSchema, StoreAddressSchema, AppStore, ApplicationStoreListing, Time, StoreTiming, StoreDetails, UserDetail, Size, ProductGroupPrice, ProductDetails, ProductInGroup, ProductGroupingModel, ProductBundle, StoreV3, ArticleAssignmentV3, StrategyWiseListingSchemaV3, DetailsSchemaV3, SellerGroupAttributes, ReturnConfigSchemaV3, ProductSetDistributionSizeV3, ProductSetDistributionV3, ProductSetV3, ProductStockPriceV3, ProductStockUnitPriceV3, MarketPlaceSttributesSchemaV3, SellerV3, PromiseSchema, ProductSizePriceResponseV3, ProductSizeSellerFilterSchemaV3, ProductSizeSellersResponseV3, Identifier };
|
|
1134
1150
|
}
|
|
1135
1151
|
/** @returns {ProductDetailCustomOrder} */
|
|
1136
1152
|
declare function ProductDetailCustomOrder(): ProductDetailCustomOrder;
|
|
@@ -1501,9 +1517,9 @@ type ProductDetail = {
|
|
|
1501
1517
|
*/
|
|
1502
1518
|
teaser_tag?: string;
|
|
1503
1519
|
};
|
|
1504
|
-
/** @returns {
|
|
1505
|
-
declare function
|
|
1506
|
-
type
|
|
1520
|
+
/** @returns {ErrorResponseSchema} */
|
|
1521
|
+
declare function ErrorResponseSchema(): ErrorResponseSchema;
|
|
1522
|
+
type ErrorResponseSchema = {
|
|
1507
1523
|
/**
|
|
1508
1524
|
* - A brief description of the error.
|
|
1509
1525
|
*/
|
|
@@ -1745,9 +1761,9 @@ type AttributeMetadata = {
|
|
|
1745
1761
|
*/
|
|
1746
1762
|
details?: AttributeDetail[];
|
|
1747
1763
|
};
|
|
1748
|
-
/** @returns {
|
|
1749
|
-
declare function
|
|
1750
|
-
type
|
|
1764
|
+
/** @returns {ProductsComparisonResponseSchema} */
|
|
1765
|
+
declare function ProductsComparisonResponseSchema(): ProductsComparisonResponseSchema;
|
|
1766
|
+
type ProductsComparisonResponseSchema = {
|
|
1751
1767
|
/**
|
|
1752
1768
|
* - List of product details for comparison.
|
|
1753
1769
|
*/
|
|
@@ -1758,9 +1774,9 @@ type ProductsComparisonResponse = {
|
|
|
1758
1774
|
*/
|
|
1759
1775
|
attributes_metadata?: AttributeMetadata[];
|
|
1760
1776
|
};
|
|
1761
|
-
/** @returns {
|
|
1762
|
-
declare function
|
|
1763
|
-
type
|
|
1777
|
+
/** @returns {ProductCompareResponseSchema} */
|
|
1778
|
+
declare function ProductCompareResponseSchema(): ProductCompareResponseSchema;
|
|
1779
|
+
type ProductCompareResponseSchema = {
|
|
1764
1780
|
/**
|
|
1765
1781
|
* - Title or name of the comparison.
|
|
1766
1782
|
*/
|
|
@@ -1779,14 +1795,14 @@ type ProductCompareResponse = {
|
|
|
1779
1795
|
*/
|
|
1780
1796
|
subtitle?: string;
|
|
1781
1797
|
};
|
|
1782
|
-
/** @returns {
|
|
1783
|
-
declare function
|
|
1784
|
-
type
|
|
1785
|
-
similars?:
|
|
1798
|
+
/** @returns {ProductFrequentlyComparedSimilarResponseSchema} */
|
|
1799
|
+
declare function ProductFrequentlyComparedSimilarResponseSchema(): ProductFrequentlyComparedSimilarResponseSchema;
|
|
1800
|
+
type ProductFrequentlyComparedSimilarResponseSchema = {
|
|
1801
|
+
similars?: ProductCompareResponseSchema;
|
|
1786
1802
|
};
|
|
1787
|
-
/** @returns {
|
|
1788
|
-
declare function
|
|
1789
|
-
type
|
|
1803
|
+
/** @returns {ProductVariantItemResponseSchema} */
|
|
1804
|
+
declare function ProductVariantItemResponseSchema(): ProductVariantItemResponseSchema;
|
|
1805
|
+
type ProductVariantItemResponseSchema = {
|
|
1790
1806
|
/**
|
|
1791
1807
|
* - Unique identifier for the product variant.
|
|
1792
1808
|
*/
|
|
@@ -1832,9 +1848,9 @@ type ProductVariantItemResponse = {
|
|
|
1832
1848
|
_custom_json?: any;
|
|
1833
1849
|
action?: ProductListingAction;
|
|
1834
1850
|
};
|
|
1835
|
-
/** @returns {
|
|
1836
|
-
declare function
|
|
1837
|
-
type
|
|
1851
|
+
/** @returns {ProductVariantResponseSchema} */
|
|
1852
|
+
declare function ProductVariantResponseSchema(): ProductVariantResponseSchema;
|
|
1853
|
+
type ProductVariantResponseSchema = {
|
|
1838
1854
|
/**
|
|
1839
1855
|
* - The type of display for the product
|
|
1840
1856
|
* variant (e.g., image, text, image, color).
|
|
@@ -1851,7 +1867,7 @@ type ProductVariantResponse = {
|
|
|
1851
1867
|
/**
|
|
1852
1868
|
* - List of product variant items.
|
|
1853
1869
|
*/
|
|
1854
|
-
items?:
|
|
1870
|
+
items?: ProductVariantItemResponseSchema[];
|
|
1855
1871
|
/**
|
|
1856
1872
|
* - Attribute identifier of the variant.
|
|
1857
1873
|
*/
|
|
@@ -1862,14 +1878,14 @@ type ProductVariantResponse = {
|
|
|
1862
1878
|
*/
|
|
1863
1879
|
logo?: string;
|
|
1864
1880
|
};
|
|
1865
|
-
/** @returns {
|
|
1866
|
-
declare function
|
|
1867
|
-
type
|
|
1881
|
+
/** @returns {ProductVariantsResponseSchema} */
|
|
1882
|
+
declare function ProductVariantsResponseSchema(): ProductVariantsResponseSchema;
|
|
1883
|
+
type ProductVariantsResponseSchema = {
|
|
1868
1884
|
/**
|
|
1869
|
-
* - A list of product
|
|
1870
|
-
* responses, each detailing a specific variant.
|
|
1885
|
+
* - A list of product
|
|
1886
|
+
* variant responses, each detailing a specific variant.
|
|
1871
1887
|
*/
|
|
1872
|
-
variants?:
|
|
1888
|
+
variants?: ProductVariantResponseSchema[];
|
|
1873
1889
|
};
|
|
1874
1890
|
/** @returns {StoreDetail} */
|
|
1875
1891
|
declare function StoreDetail(): StoreDetail;
|
|
@@ -1958,14 +1974,11 @@ type ProductStockStatusItem = {
|
|
|
1958
1974
|
*/
|
|
1959
1975
|
item_id?: number;
|
|
1960
1976
|
seller?: Seller;
|
|
1961
|
-
|
|
1962
|
-
* - NA.
|
|
1963
|
-
*/
|
|
1964
|
-
identifier?: any;
|
|
1977
|
+
identifier?: Identifier;
|
|
1965
1978
|
};
|
|
1966
|
-
/** @returns {
|
|
1967
|
-
declare function
|
|
1968
|
-
type
|
|
1979
|
+
/** @returns {ProductStockStatusResponseSchema} */
|
|
1980
|
+
declare function ProductStockStatusResponseSchema(): ProductStockStatusResponseSchema;
|
|
1981
|
+
type ProductStockStatusResponseSchema = {
|
|
1969
1982
|
/**
|
|
1970
1983
|
* - NA.
|
|
1971
1984
|
*/
|
|
@@ -2012,18 +2025,18 @@ type ProductStockPolling = {
|
|
|
2012
2025
|
items?: ProductStockStatusItem[];
|
|
2013
2026
|
page: Page;
|
|
2014
2027
|
};
|
|
2015
|
-
/** @returns {
|
|
2016
|
-
declare function
|
|
2017
|
-
type
|
|
2028
|
+
/** @returns {ProductVariantListingResponseSchema} */
|
|
2029
|
+
declare function ProductVariantListingResponseSchema(): ProductVariantListingResponseSchema;
|
|
2030
|
+
type ProductVariantListingResponseSchema = {
|
|
2018
2031
|
/**
|
|
2019
2032
|
* - Header or title for the product variant section.
|
|
2020
2033
|
*/
|
|
2021
2034
|
header?: string;
|
|
2022
2035
|
/**
|
|
2023
|
-
* - List of Upto 5
|
|
2024
|
-
* variant items.
|
|
2036
|
+
* - List of Upto 5
|
|
2037
|
+
* product variant items.
|
|
2025
2038
|
*/
|
|
2026
|
-
items?:
|
|
2039
|
+
items?: ProductVariantItemResponseSchema[];
|
|
2027
2040
|
/**
|
|
2028
2041
|
* - The total number of product variants available.
|
|
2029
2042
|
*/
|
|
@@ -2144,10 +2157,10 @@ type ProductListingDetail = {
|
|
|
2144
2157
|
*/
|
|
2145
2158
|
attributes?: any;
|
|
2146
2159
|
/**
|
|
2147
|
-
* - List of
|
|
2148
|
-
* variants available for the product.
|
|
2160
|
+
* - List of
|
|
2161
|
+
* product variants available for the product.
|
|
2149
2162
|
*/
|
|
2150
|
-
variants?:
|
|
2163
|
+
variants?: ProductVariantListingResponseSchema[];
|
|
2151
2164
|
/**
|
|
2152
2165
|
* - Discount details or percentage applied to the product.
|
|
2153
2166
|
*/
|
|
@@ -2303,9 +2316,9 @@ type ProductSortOn = {
|
|
|
2303
2316
|
*/
|
|
2304
2317
|
display?: string;
|
|
2305
2318
|
};
|
|
2306
|
-
/** @returns {
|
|
2307
|
-
declare function
|
|
2308
|
-
type
|
|
2319
|
+
/** @returns {ProductListingResponseSchema} */
|
|
2320
|
+
declare function ProductListingResponseSchema(): ProductListingResponseSchema;
|
|
2321
|
+
type ProductListingResponseSchema = {
|
|
2309
2322
|
/**
|
|
2310
2323
|
* - List of product details included
|
|
2311
2324
|
* in the response.
|
|
@@ -2364,18 +2377,18 @@ type BrandItem = {
|
|
|
2364
2377
|
slug?: string;
|
|
2365
2378
|
action?: ProductListingAction;
|
|
2366
2379
|
};
|
|
2367
|
-
/** @returns {
|
|
2368
|
-
declare function
|
|
2369
|
-
type
|
|
2380
|
+
/** @returns {BrandListingResponseSchema} */
|
|
2381
|
+
declare function BrandListingResponseSchema(): BrandListingResponseSchema;
|
|
2382
|
+
type BrandListingResponseSchema = {
|
|
2370
2383
|
/**
|
|
2371
2384
|
* - List of brand items included in the response.
|
|
2372
2385
|
*/
|
|
2373
2386
|
items?: BrandItem[];
|
|
2374
2387
|
page: Page;
|
|
2375
2388
|
};
|
|
2376
|
-
/** @returns {
|
|
2377
|
-
declare function
|
|
2378
|
-
type
|
|
2389
|
+
/** @returns {BrandDetailResponseSchema} */
|
|
2390
|
+
declare function BrandDetailResponseSchema(): BrandDetailResponseSchema;
|
|
2391
|
+
type BrandDetailResponseSchema = {
|
|
2379
2392
|
logo?: Media;
|
|
2380
2393
|
/**
|
|
2381
2394
|
* - The unique identifier for the brand.
|
|
@@ -2530,9 +2543,9 @@ type DepartmentIdentifier = {
|
|
|
2530
2543
|
*/
|
|
2531
2544
|
slug?: string;
|
|
2532
2545
|
};
|
|
2533
|
-
/** @returns {
|
|
2534
|
-
declare function
|
|
2535
|
-
type
|
|
2546
|
+
/** @returns {CategoryListingResponseSchema} */
|
|
2547
|
+
declare function CategoryListingResponseSchema(): CategoryListingResponseSchema;
|
|
2548
|
+
type CategoryListingResponseSchema = {
|
|
2536
2549
|
/**
|
|
2537
2550
|
* - List of department category trees.
|
|
2538
2551
|
*/
|
|
@@ -2542,9 +2555,9 @@ type CategoryListingResponse = {
|
|
|
2542
2555
|
*/
|
|
2543
2556
|
departments?: DepartmentIdentifier[];
|
|
2544
2557
|
};
|
|
2545
|
-
/** @returns {
|
|
2546
|
-
declare function
|
|
2547
|
-
type
|
|
2558
|
+
/** @returns {CategoryMetaResponseSchema} */
|
|
2559
|
+
declare function CategoryMetaResponseSchema(): CategoryMetaResponseSchema;
|
|
2560
|
+
type CategoryMetaResponseSchema = {
|
|
2548
2561
|
logo?: Media;
|
|
2549
2562
|
/**
|
|
2550
2563
|
* - Unique identifier for the category.
|
|
@@ -2561,9 +2574,9 @@ type CategoryMetaResponse = {
|
|
|
2561
2574
|
*/
|
|
2562
2575
|
name?: string;
|
|
2563
2576
|
};
|
|
2564
|
-
/** @returns {
|
|
2565
|
-
declare function
|
|
2566
|
-
type
|
|
2577
|
+
/** @returns {HomeListingResponseSchema} */
|
|
2578
|
+
declare function HomeListingResponseSchema(): HomeListingResponseSchema;
|
|
2579
|
+
type HomeListingResponseSchema = {
|
|
2567
2580
|
/**
|
|
2568
2581
|
* - List of product details
|
|
2569
2582
|
* displayed on the home page.
|
|
@@ -2599,9 +2612,9 @@ type Department = {
|
|
|
2599
2612
|
*/
|
|
2600
2613
|
slug?: string;
|
|
2601
2614
|
};
|
|
2602
|
-
/** @returns {
|
|
2603
|
-
declare function
|
|
2604
|
-
type
|
|
2615
|
+
/** @returns {DepartmentResponseSchema} */
|
|
2616
|
+
declare function DepartmentResponseSchema(): DepartmentResponseSchema;
|
|
2617
|
+
type DepartmentResponseSchema = {
|
|
2605
2618
|
/**
|
|
2606
2619
|
* - List of department detail objects.
|
|
2607
2620
|
*/
|
|
@@ -2627,9 +2640,9 @@ type AutocompleteItem = {
|
|
|
2627
2640
|
_custom_json?: any;
|
|
2628
2641
|
action?: ProductListingAction;
|
|
2629
2642
|
};
|
|
2630
|
-
/** @returns {
|
|
2631
|
-
declare function
|
|
2632
|
-
type
|
|
2643
|
+
/** @returns {AutoCompleteResponseSchema} */
|
|
2644
|
+
declare function AutoCompleteResponseSchema(): AutoCompleteResponseSchema;
|
|
2645
|
+
type AutoCompleteResponseSchema = {
|
|
2633
2646
|
/**
|
|
2634
2647
|
* - List of autocomplete items suggested
|
|
2635
2648
|
* based on user input.
|
|
@@ -2797,9 +2810,9 @@ type CollectionListingFilter = {
|
|
|
2797
2810
|
*/
|
|
2798
2811
|
type?: CollectionListingFilterType[];
|
|
2799
2812
|
};
|
|
2800
|
-
/** @returns {
|
|
2801
|
-
declare function
|
|
2802
|
-
type
|
|
2813
|
+
/** @returns {GetCollectionListingResponseSchema} */
|
|
2814
|
+
declare function GetCollectionListingResponseSchema(): GetCollectionListingResponseSchema;
|
|
2815
|
+
type GetCollectionListingResponseSchema = {
|
|
2803
2816
|
/**
|
|
2804
2817
|
* - An array of collection
|
|
2805
2818
|
* details. Each item in the array represents a collection with various
|
|
@@ -2809,9 +2822,9 @@ type GetCollectionListingResponse = {
|
|
|
2809
2822
|
filters?: CollectionListingFilter;
|
|
2810
2823
|
page: Page;
|
|
2811
2824
|
};
|
|
2812
|
-
/** @returns {
|
|
2813
|
-
declare function
|
|
2814
|
-
type
|
|
2825
|
+
/** @returns {CollectionDetailResponseSchema} */
|
|
2826
|
+
declare function CollectionDetailResponseSchema(): CollectionDetailResponseSchema;
|
|
2827
|
+
type CollectionDetailResponseSchema = {
|
|
2815
2828
|
/**
|
|
2816
2829
|
* - Indicates whether the collection is active.
|
|
2817
2830
|
*/
|
|
@@ -2896,9 +2909,9 @@ type CollectionDetailResponse = {
|
|
|
2896
2909
|
*/
|
|
2897
2910
|
app_id?: string;
|
|
2898
2911
|
};
|
|
2899
|
-
/** @returns {
|
|
2900
|
-
declare function
|
|
2901
|
-
type
|
|
2912
|
+
/** @returns {GetFollowListingResponseSchema} */
|
|
2913
|
+
declare function GetFollowListingResponseSchema(): GetFollowListingResponseSchema;
|
|
2914
|
+
type GetFollowListingResponseSchema = {
|
|
2902
2915
|
/**
|
|
2903
2916
|
* - An array of product details that
|
|
2904
2917
|
* the user is following. Each item includes information such as the product
|
|
@@ -2907,9 +2920,9 @@ type GetFollowListingResponse = {
|
|
|
2907
2920
|
items: ProductListingDetail[];
|
|
2908
2921
|
page: Page;
|
|
2909
2922
|
};
|
|
2910
|
-
/** @returns {
|
|
2911
|
-
declare function
|
|
2912
|
-
type
|
|
2923
|
+
/** @returns {FollowPostResponseSchema} */
|
|
2924
|
+
declare function FollowPostResponseSchema(): FollowPostResponseSchema;
|
|
2925
|
+
type FollowPostResponseSchema = {
|
|
2913
2926
|
/**
|
|
2914
2927
|
* - A message indicating the result of the follow or
|
|
2915
2928
|
* unfollow operation. This could be a confirmation message or an error message.
|
|
@@ -2921,9 +2934,9 @@ type FollowPostResponse = {
|
|
|
2921
2934
|
*/
|
|
2922
2935
|
id: string;
|
|
2923
2936
|
};
|
|
2924
|
-
/** @returns {
|
|
2925
|
-
declare function
|
|
2926
|
-
type
|
|
2937
|
+
/** @returns {FollowerCountResponseSchema} */
|
|
2938
|
+
declare function FollowerCountResponseSchema(): FollowerCountResponseSchema;
|
|
2939
|
+
type FollowerCountResponseSchema = {
|
|
2927
2940
|
/**
|
|
2928
2941
|
* - The number of followers for the item. This count
|
|
2929
2942
|
* indicates how many users are following the specified item.
|
|
@@ -2949,9 +2962,9 @@ type FollowIdsData = {
|
|
|
2949
2962
|
*/
|
|
2950
2963
|
brands?: number[];
|
|
2951
2964
|
};
|
|
2952
|
-
/** @returns {
|
|
2953
|
-
declare function
|
|
2954
|
-
type
|
|
2965
|
+
/** @returns {FollowIdsResponseSchema} */
|
|
2966
|
+
declare function FollowIdsResponseSchema(): FollowIdsResponseSchema;
|
|
2967
|
+
type FollowIdsResponseSchema = {
|
|
2955
2968
|
data?: FollowIdsData;
|
|
2956
2969
|
};
|
|
2957
2970
|
/** @returns {LatLong} */
|
|
@@ -2968,6 +2981,18 @@ type LatLong = {
|
|
|
2968
2981
|
*/
|
|
2969
2982
|
type?: string;
|
|
2970
2983
|
};
|
|
2984
|
+
/** @returns {StoreContact} */
|
|
2985
|
+
declare function StoreContact(): StoreContact;
|
|
2986
|
+
type StoreContact = {
|
|
2987
|
+
/**
|
|
2988
|
+
* - The contact number of the Store Manager.
|
|
2989
|
+
*/
|
|
2990
|
+
number?: string;
|
|
2991
|
+
/**
|
|
2992
|
+
* - The country code for the contact number.
|
|
2993
|
+
*/
|
|
2994
|
+
country_code?: number;
|
|
2995
|
+
};
|
|
2971
2996
|
/** @returns {Store} */
|
|
2972
2997
|
declare function Store(): Store;
|
|
2973
2998
|
type Store = {
|
|
@@ -3013,10 +3038,14 @@ type Store = {
|
|
|
3013
3038
|
* - The list of tags mapped to the store.
|
|
3014
3039
|
*/
|
|
3015
3040
|
tags?: string[];
|
|
3041
|
+
/**
|
|
3042
|
+
* - List of contact numbers for the store.
|
|
3043
|
+
*/
|
|
3044
|
+
contacts?: StoreContact[];
|
|
3016
3045
|
};
|
|
3017
|
-
/** @returns {
|
|
3018
|
-
declare function
|
|
3019
|
-
type
|
|
3046
|
+
/** @returns {StoreListingResponseSchema} */
|
|
3047
|
+
declare function StoreListingResponseSchema(): StoreListingResponseSchema;
|
|
3048
|
+
type StoreListingResponseSchema = {
|
|
3020
3049
|
/**
|
|
3021
3050
|
* - An array of store details. Each store includes
|
|
3022
3051
|
* information such as name, address, and geographic coordinates.
|
|
@@ -3091,9 +3120,9 @@ type SellerPhoneNumber = {
|
|
|
3091
3120
|
*/
|
|
3092
3121
|
number: string;
|
|
3093
3122
|
};
|
|
3094
|
-
/** @returns {
|
|
3095
|
-
declare function
|
|
3096
|
-
type
|
|
3123
|
+
/** @returns {StoreManagerSchema} */
|
|
3124
|
+
declare function StoreManagerSchema(): StoreManagerSchema;
|
|
3125
|
+
type StoreManagerSchema = {
|
|
3097
3126
|
/**
|
|
3098
3127
|
* - The name of the store manager.
|
|
3099
3128
|
*/
|
|
@@ -3104,9 +3133,9 @@ type StoreManagerSerializer = {
|
|
|
3104
3133
|
email?: string;
|
|
3105
3134
|
mobile_no?: SellerPhoneNumber;
|
|
3106
3135
|
};
|
|
3107
|
-
/** @returns {
|
|
3108
|
-
declare function
|
|
3109
|
-
type
|
|
3136
|
+
/** @returns {StoreAddressSchema} */
|
|
3137
|
+
declare function StoreAddressSchema(): StoreAddressSchema;
|
|
3138
|
+
type StoreAddressSchema = {
|
|
3110
3139
|
/**
|
|
3111
3140
|
* - The latitude of the store's location.
|
|
3112
3141
|
*/
|
|
@@ -3156,12 +3185,12 @@ type AppStore = {
|
|
|
3156
3185
|
*/
|
|
3157
3186
|
departments?: StoreDepartments[];
|
|
3158
3187
|
company?: CompanyStore;
|
|
3159
|
-
manager?:
|
|
3188
|
+
manager?: StoreManagerSchema;
|
|
3160
3189
|
/**
|
|
3161
3190
|
* - A unique code for identifying the store.
|
|
3162
3191
|
*/
|
|
3163
3192
|
store_code?: string;
|
|
3164
|
-
address?:
|
|
3193
|
+
address?: StoreAddressSchema;
|
|
3165
3194
|
/**
|
|
3166
3195
|
* - The name of the store.
|
|
3167
3196
|
*/
|
|
@@ -3223,7 +3252,7 @@ type StoreDetails = {
|
|
|
3223
3252
|
*/
|
|
3224
3253
|
departments?: StoreDepartments[];
|
|
3225
3254
|
company?: CompanyStore;
|
|
3226
|
-
manager?:
|
|
3255
|
+
manager?: StoreManagerSchema;
|
|
3227
3256
|
/**
|
|
3228
3257
|
* - A unique code for identifying the store.
|
|
3229
3258
|
*/
|
|
@@ -3233,7 +3262,7 @@ type StoreDetails = {
|
|
|
3233
3262
|
* store throughout the week.
|
|
3234
3263
|
*/
|
|
3235
3264
|
timing?: StoreTiming[];
|
|
3236
|
-
address?:
|
|
3265
|
+
address?: StoreAddressSchema;
|
|
3237
3266
|
/**
|
|
3238
3267
|
* - Custom JSON data for the store.
|
|
3239
3268
|
*/
|
|
@@ -3387,10 +3416,7 @@ type ProductDetails = {
|
|
|
3387
3416
|
* - The rating of the product.
|
|
3388
3417
|
*/
|
|
3389
3418
|
rating?: number;
|
|
3390
|
-
|
|
3391
|
-
* - A dictionary of product identifiers.
|
|
3392
|
-
*/
|
|
3393
|
-
identifier?: any;
|
|
3419
|
+
identifier?: Identifier;
|
|
3394
3420
|
/**
|
|
3395
3421
|
* - A list of highlights for the product.
|
|
3396
3422
|
*/
|
|
@@ -3855,3 +3881,29 @@ type ProductSizeSellersResponseV3 = {
|
|
|
3855
3881
|
*/
|
|
3856
3882
|
sort_on?: ProductSizeSellerFilterSchemaV3[];
|
|
3857
3883
|
};
|
|
3884
|
+
/** @returns {Identifier} */
|
|
3885
|
+
declare function Identifier(): Identifier;
|
|
3886
|
+
type Identifier = {
|
|
3887
|
+
/**
|
|
3888
|
+
* - The European Article Number (EAN) of the item.
|
|
3889
|
+
*/
|
|
3890
|
+
ean?: string;
|
|
3891
|
+
/**
|
|
3892
|
+
* - The Stock Keeping Unit (SKU) code of the item.
|
|
3893
|
+
*/
|
|
3894
|
+
sku_code?: string;
|
|
3895
|
+
/**
|
|
3896
|
+
* - The Alternative Lookup Product of the item.
|
|
3897
|
+
*/
|
|
3898
|
+
alu?: string;
|
|
3899
|
+
/**
|
|
3900
|
+
* - Universal Product Code of the item.
|
|
3901
|
+
*/
|
|
3902
|
+
upc?: string;
|
|
3903
|
+
/**
|
|
3904
|
+
* - ISBN (International Standard Book Number) is a
|
|
3905
|
+
* unique identifier used globally to identify books and other non-periodical
|
|
3906
|
+
* publications
|
|
3907
|
+
*/
|
|
3908
|
+
isbn?: string;
|
|
3909
|
+
};
|