@gofynd/fdk-client-javascript 1.4.2-beta.4 → 1.4.2-beta.5

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.
Files changed (140) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/sdk/application/Cart/CartApplicationClient.d.ts +62 -62
  4. package/sdk/application/Cart/CartApplicationClient.js +82 -71
  5. package/sdk/application/Cart/CartApplicationValidator.d.ts +189 -34
  6. package/sdk/application/Cart/CartApplicationValidator.js +59 -34
  7. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +78 -78
  8. package/sdk/application/Catalog/CatalogApplicationClient.js +78 -78
  9. package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
  10. package/sdk/application/Common/CommonApplicationClient.js +4 -4
  11. package/sdk/application/Communication/CommunicationApplicationClient.d.ts +6 -6
  12. package/sdk/application/Communication/CommunicationApplicationClient.js +6 -6
  13. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +32 -67
  14. package/sdk/application/Configuration/ConfigurationApplicationClient.js +32 -106
  15. package/sdk/application/Content/ContentApplicationClient.d.ts +34 -64
  16. package/sdk/application/Content/ContentApplicationClient.js +34 -115
  17. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +6 -42
  18. package/sdk/application/FileStorage/FileStorageApplicationClient.js +6 -42
  19. package/sdk/application/Lead/LeadApplicationClient.d.ts +14 -14
  20. package/sdk/application/Lead/LeadApplicationClient.js +14 -14
  21. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +12 -12
  22. package/sdk/application/Logistic/LogisticApplicationClient.js +12 -12
  23. package/sdk/application/Order/OrderApplicationClient.d.ts +24 -24
  24. package/sdk/application/Order/OrderApplicationClient.js +24 -24
  25. package/sdk/application/Order/OrderApplicationModel.d.ts +23 -1
  26. package/sdk/application/Order/OrderApplicationModel.js +28 -0
  27. package/sdk/application/Payment/PaymentApplicationClient.d.ts +89 -89
  28. package/sdk/application/Payment/PaymentApplicationClient.js +94 -94
  29. package/sdk/application/Payment/PaymentApplicationModel.d.ts +498 -3
  30. package/sdk/application/Payment/PaymentApplicationModel.js +316 -2
  31. package/sdk/application/Payment/PaymentApplicationValidator.d.ts +5 -5
  32. package/sdk/application/Payment/PaymentApplicationValidator.js +3 -3
  33. package/sdk/application/PosCart/PosCartApplicationClient.d.ts +54 -54
  34. package/sdk/application/PosCart/PosCartApplicationClient.js +54 -54
  35. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +14 -25
  36. package/sdk/application/Rewards/RewardsApplicationClient.js +14 -41
  37. package/sdk/application/Share/ShareApplicationClient.d.ts +14 -14
  38. package/sdk/application/Share/ShareApplicationClient.js +14 -14
  39. package/sdk/application/Theme/ThemeApplicationClient.d.ts +8 -8
  40. package/sdk/application/Theme/ThemeApplicationClient.js +8 -8
  41. package/sdk/application/User/UserApplicationClient.d.ts +64 -64
  42. package/sdk/application/User/UserApplicationClient.js +64 -64
  43. package/sdk/partner/Theme/ThemePartnerClient.d.ts +38 -38
  44. package/sdk/partner/Theme/ThemePartnerClient.js +38 -38
  45. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +8 -8
  46. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +8 -8
  47. package/sdk/platform/Billing/BillingPlatformClient.d.ts +34 -36
  48. package/sdk/platform/Billing/BillingPlatformClient.js +34 -36
  49. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +98 -175
  50. package/sdk/platform/Cart/CartPlatformApplicationClient.js +98 -254
  51. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +92 -18
  52. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +28 -18
  53. package/sdk/platform/Cart/CartPlatformModel.d.ts +12 -0
  54. package/sdk/platform/Cart/CartPlatformModel.js +12 -0
  55. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +195 -108
  56. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +278 -113
  57. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +2 -2
  58. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +2 -2
  59. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +335 -136
  60. package/sdk/platform/Catalog/CatalogPlatformClient.js +551 -136
  61. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +5 -5
  62. package/sdk/platform/Catalog/CatalogPlatformModel.js +3 -3
  63. package/sdk/platform/Common/CommonPlatformClient.d.ts +3 -3
  64. package/sdk/platform/Common/CommonPlatformClient.js +3 -3
  65. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +115 -290
  66. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +115 -510
  67. package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +2 -13
  68. package/sdk/platform/Communication/CommunicationPlatformClient.js +2 -29
  69. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +32 -32
  70. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +32 -32
  71. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +52 -127
  72. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +52 -204
  73. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +35 -111
  74. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +35 -212
  75. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +142 -1
  76. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +96 -0
  77. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +130 -218
  78. package/sdk/platform/Content/ContentPlatformApplicationClient.js +136 -314
  79. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +4 -4
  80. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +4 -4
  81. package/sdk/platform/Content/ContentPlatformClient.d.ts +1 -1
  82. package/sdk/platform/Content/ContentPlatformClient.js +7 -7
  83. package/sdk/platform/Content/ContentPlatformValidator.d.ts +4 -4
  84. package/sdk/platform/Content/ContentPlatformValidator.js +4 -4
  85. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +22 -48
  86. package/sdk/platform/Discount/DiscountPlatformClient.js +22 -73
  87. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +19 -55
  88. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +19 -55
  89. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +14 -50
  90. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +16 -55
  91. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +13 -12
  92. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +12 -14
  93. package/sdk/platform/Finance/FinancePlatformClient.d.ts +44 -44
  94. package/sdk/platform/Finance/FinancePlatformClient.js +44 -44
  95. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +12 -12
  96. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +12 -12
  97. package/sdk/platform/Lead/LeadPlatformClient.d.ts +22 -48
  98. package/sdk/platform/Lead/LeadPlatformClient.js +22 -72
  99. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +4 -4
  100. package/sdk/platform/Order/OrderPlatformApplicationClient.js +4 -4
  101. package/sdk/platform/Order/OrderPlatformClient.d.ts +79 -208
  102. package/sdk/platform/Order/OrderPlatformClient.js +79 -294
  103. package/sdk/platform/Order/OrderPlatformModel.d.ts +32 -3
  104. package/sdk/platform/Order/OrderPlatformModel.js +34 -2
  105. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -4
  106. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +4 -4
  107. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +4 -4
  108. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +2 -2
  109. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +81 -81
  110. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +81 -81
  111. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +20 -20
  112. package/sdk/platform/Payment/PaymentPlatformClient.js +20 -20
  113. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +23 -40
  114. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +23 -61
  115. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +8 -8
  116. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +8 -8
  117. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +5 -5
  118. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +8 -8
  119. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +2 -2
  120. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +2 -2
  121. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +10 -10
  122. package/sdk/platform/Share/SharePlatformApplicationClient.js +10 -10
  123. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +56 -56
  124. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +56 -56
  125. package/sdk/platform/Theme/ThemePlatformClient.d.ts +6 -6
  126. package/sdk/platform/Theme/ThemePlatformClient.js +6 -6
  127. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +33 -33
  128. package/sdk/platform/User/UserPlatformApplicationClient.js +33 -33
  129. package/sdk/platform/User/UserPlatformModel.d.ts +2 -2
  130. package/sdk/platform/User/UserPlatformModel.js +2 -2
  131. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +32 -45
  132. package/sdk/platform/Webhook/WebhookPlatformClient.js +32 -45
  133. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +58 -1
  134. package/sdk/platform/Webhook/WebhookPlatformModel.js +66 -0
  135. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +2 -2
  136. package/sdk/public/Configuration/ConfigurationPublicClient.js +2 -2
  137. package/sdk/public/Partner/PartnerPublicClient.d.ts +2 -2
  138. package/sdk/public/Partner/PartnerPublicClient.js +2 -2
  139. package/sdk/public/Webhook/WebhookPublicClient.d.ts +4 -4
  140. package/sdk/public/Webhook/WebhookPublicClient.js +4 -4
@@ -9,12 +9,14 @@ declare class Catalog {
9
9
  *
10
10
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
11
11
  * @param {import("../PlatformAPIClient").Options} - Options
12
- * @returns {Promise<CatalogPlatformModel.UpdatedResponse>} - Success response
12
+ * @returns {Promise<CatalogPlatformModel.CommonResponseSchemaCollection>}
13
+ * - Success response
14
+ *
13
15
  * @name addCollectionItems
14
16
  * @summary: Add items to a collection
15
17
  * @description: Adds items to a collection specified by its `id`. See `CollectionItemRequest` for the list of attributes needed to add items to an collection. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/addCollectionItems/).
16
18
  */
17
- addCollectionItems({ id, body, requestHeaders }?: CatalogPlatformApplicationValidator.AddCollectionItemsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.UpdatedResponse>;
19
+ addCollectionItems({ id, body, requestHeaders }?: CatalogPlatformApplicationValidator.AddCollectionItemsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.CommonResponseSchemaCollection>;
18
20
  /**
19
21
  * @param {CatalogPlatformApplicationValidator.CreateAppCategoryReturnConfigurationParam} arg
20
22
  * - Arg object
@@ -47,7 +49,7 @@ declare class Catalog {
47
49
  * Success response
48
50
  * @name createCollection
49
51
  * @summary: Add a Collection
50
- * @description: Create a collection. See `CreateCollectionRequestSchema` for the list of attributes needed to create a collection and collections/query-options for the available options to create a collection. On successful request, returns a paginated list of collections specified in `CollectionCreateResponse` - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/createCollection/).
52
+ * @description: Create a collection to the catalog. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/createCollection/).
51
53
  */
52
54
  createCollection({ body, requestHeaders }?: CatalogPlatformApplicationValidator.CreateCollectionParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.CollectionCreateResponse>;
53
55
  /**
@@ -59,7 +61,7 @@ declare class Catalog {
59
61
  * @returns {Promise<CatalogPlatformModel.GetAppCatalogConfiguration>} -
60
62
  * Success response
61
63
  * @name createConfigurationByType
62
- * @summary: Add configuration for categories and brands
64
+ * @summary: Create configuration by type.
63
65
  * @description: Add configuration for categories & brands. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/createConfigurationByType/).
64
66
  */
65
67
  createConfigurationByType({ type, body, requestHeaders }?: CatalogPlatformApplicationValidator.CreateConfigurationByTypeParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetAppCatalogConfiguration>;
@@ -72,7 +74,7 @@ declare class Catalog {
72
74
  * @returns {Promise<CatalogPlatformModel.GetAppCatalogConfiguration>} -
73
75
  * Success response
74
76
  * @name createConfigurationProductListing
75
- * @summary: Add configuration for products & listings
77
+ * @summary: Create configuration for product listing.
76
78
  * @description: Add configuration for products & listing. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/createConfigurationProductListing/).
77
79
  */
78
80
  createConfigurationProductListing({ body, requestHeaders }?: CatalogPlatformApplicationValidator.CreateConfigurationProductListingParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetAppCatalogConfiguration>;
@@ -86,8 +88,8 @@ declare class Catalog {
86
88
  * - Success response
87
89
  *
88
90
  * @name createCustomAutocompleteRule
89
- * @summary: Add a Custom Autocomplete Keywords
90
- * @description: Create a Custom Autocomplete Keywords. See `CreateAutocompleteKeywordSchema` for the list of attributes needed to create a mapping and /collections/query-options for the available options to create a rule. On successful request, returns a paginated list of collections specified in `CreateAutocompleteKeywordSchema` - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/createCustomAutocompleteRule/).
91
+ * @summary: Create custom autocomplete rules.
92
+ * @description: Generate and add custom autocomplete rules to the catalog. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/createCustomAutocompleteRule/).
91
93
  */
92
94
  createCustomAutocompleteRule({ body, requestHeaders }?: CatalogPlatformApplicationValidator.CreateCustomAutocompleteRuleParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.CreateAutocompleteWordsResponse>;
93
95
  /**
@@ -98,8 +100,8 @@ declare class Catalog {
98
100
  * @param {import("../PlatformAPIClient").Options} - Options
99
101
  * @returns {Promise<CatalogPlatformModel.GetSearchWordsData>} - Success response
100
102
  * @name createCustomKeyword
101
- * @summary: Add a Custom Search Keywords
102
- * @description: Create a Custom Search Keywords. See `CreateSearchKeywordSchema` for the list of attributes needed to create a mapping and /collections/query-options for the available options to create a rule. On successful request, returns a paginated list of collections specified in `CreateSearchKeywordSchema` - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/createCustomKeyword/).
103
+ * @summary: Create custom search keywords.
104
+ * @description: Create a Custom Search Keywords. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/createCustomKeyword/).
103
105
  */
104
106
  createCustomKeyword({ body, requestHeaders }?: CatalogPlatformApplicationValidator.CreateCustomKeywordParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetSearchWordsData>;
105
107
  /**
@@ -110,8 +112,8 @@ declare class Catalog {
110
112
  * @param {import("../PlatformAPIClient").Options} - Options
111
113
  * @returns {Promise<CatalogPlatformModel.AppConfigurationDetail>} - Success response
112
114
  * @name createGroupConfiguration
113
- * @summary: Create configuration for Group config types.
114
- * @description: Create configuration for Group config types. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/createGroupConfiguration/).
115
+ * @summary: Create group configuration.
116
+ * @description: Create configuration for group configuration types. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/createGroupConfiguration/).
115
117
  */
116
118
  createGroupConfiguration({ configType, body, requestHeaders }?: CatalogPlatformApplicationValidator.CreateGroupConfigurationParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.AppConfigurationDetail>;
117
119
  /**
@@ -122,8 +124,8 @@ declare class Catalog {
122
124
  * @param {import("../PlatformAPIClient").Options} - Options
123
125
  * @returns {Promise<CatalogPlatformModel.AppConfigurationsSort>} - Success response
124
126
  * @name createListingConfiguration
125
- * @summary: Add configuration for listings
126
- * @description: Add configuration for listing. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/createListingConfiguration/).
127
+ * @summary: Create listing configuration.
128
+ * @description: Add configuration for catalog listing. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/createListingConfiguration/).
127
129
  */
128
130
  createListingConfiguration({ configType, body, requestHeaders }?: CatalogPlatformApplicationValidator.CreateListingConfigurationParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.AppConfigurationsSort>;
129
131
  /**
@@ -136,8 +138,8 @@ declare class Catalog {
136
138
  * - Success response
137
139
  *
138
140
  * @name createSearchConfiguration
139
- * @summary: Update search configuration for an application
140
- * @description: This view allows you to modify searchable attributes for an application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/createSearchConfiguration/).
141
+ * @summary: Create search configuration
142
+ * @description: Create search configuration for the catalog. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/createSearchConfiguration/).
141
143
  */
142
144
  createSearchConfiguration({ body, requestHeaders }?: CatalogPlatformApplicationValidator.CreateSearchConfigurationParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.CreateSearchConfigurationResponse>;
143
145
  /**
@@ -160,7 +162,7 @@ declare class Catalog {
160
162
  * @param {import("../PlatformAPIClient").Options} - Options
161
163
  * @returns {Promise<CatalogPlatformModel.DeleteResponse>} - Success response
162
164
  * @name deleteAutocompleteKeyword
163
- * @summary: Delete a Autocomplete Keywords
165
+ * @summary: Delete autocomplete keywords.
164
166
  * @description: Delete a keywords by it's id. Returns an object that tells whether the keywords was deleted successfully - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/deleteAutocompleteKeyword/).
165
167
  */
166
168
  deleteAutocompleteKeyword({ id, requestHeaders }?: CatalogPlatformApplicationValidator.DeleteAutocompleteKeywordParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.DeleteResponse>;
@@ -172,7 +174,7 @@ declare class Catalog {
172
174
  * - Success response
173
175
  *
174
176
  * @name deleteCollection
175
- * @summary: Delete a Collection
177
+ * @summary: Delete a collection.
176
178
  * @description: Delete a collection by it's id. Returns an object that tells whether the collection was deleted successfully - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/deleteCollection/).
177
179
  */
178
180
  deleteCollection({ id, requestHeaders }?: CatalogPlatformApplicationValidator.DeleteCollectionParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.CommonResponseSchemaCollection>;
@@ -184,7 +186,7 @@ declare class Catalog {
184
186
  * @param {import("../PlatformAPIClient").Options} - Options
185
187
  * @returns {Promise<CatalogPlatformModel.ConfigSuccessResponse>} - Success response
186
188
  * @name deleteGroupConfiguration
187
- * @summary: Delete configuration of the product config type of the application.
189
+ * @summary: Delete group configuration.
188
190
  * @description: Delete configuration of the product config type of the application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/deleteGroupConfiguration/).
189
191
  */
190
192
  deleteGroupConfiguration({ configType, groupSlug, requestHeaders }?: CatalogPlatformApplicationValidator.DeleteGroupConfigurationParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.ConfigSuccessResponse>;
@@ -196,8 +198,8 @@ declare class Catalog {
196
198
  * @param {import("../PlatformAPIClient").Options} - Options
197
199
  * @returns {Promise<CatalogPlatformModel.ConfigSuccessResponse>} - Success response
198
200
  * @name deleteListingConfiguration
199
- * @summary: Delete configuration for listings
200
- * @description: Delete configuration for listing. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/deleteListingConfiguration/).
201
+ * @summary: Delete listing configuration.
202
+ * @description: Remove a specific listing configuration from the catalog. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/deleteListingConfiguration/).
201
203
  */
202
204
  deleteListingConfiguration({ configType, configId, requestHeaders }?: CatalogPlatformApplicationValidator.DeleteListingConfigurationParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.ConfigSuccessResponse>;
203
205
  /**
@@ -210,8 +212,8 @@ declare class Catalog {
210
212
  * - Success response
211
213
  *
212
214
  * @name deleteSearchConfiguration
213
- * @summary: Delete search configuration for an application
214
- * @description: This view allows you to reset search config for an application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/deleteSearchConfiguration/).
215
+ * @summary: Delete Search Configuration
216
+ * @description: Delete search configuration in the catalog. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/deleteSearchConfiguration/).
215
217
  */
216
218
  deleteSearchConfiguration({ requestHeaders }?: any, { responseHeaders }?: object): Promise<CatalogPlatformModel.DeleteSearchConfigurationResponse>;
217
219
  /**
@@ -222,7 +224,7 @@ declare class Catalog {
222
224
  * @param {import("../PlatformAPIClient").Options} - Options
223
225
  * @returns {Promise<CatalogPlatformModel.DeleteResponse>} - Success response
224
226
  * @name deleteSearchKeywords
225
- * @summary: Delete a Search Keywords
227
+ * @summary: Delete search keywords.
226
228
  * @description: Delete a keywords by it's id. Returns an object that tells whether the keywords was deleted successfully - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/deleteSearchKeywords/).
227
229
  */
228
230
  deleteSearchKeywords({ id, requestHeaders }?: CatalogPlatformApplicationValidator.DeleteSearchKeywordsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.DeleteResponse>;
@@ -235,10 +237,39 @@ declare class Catalog {
235
237
  * @returns {Promise<CatalogPlatformModel.GetCollectionListingResponse>} -
236
238
  * Success response
237
239
  * @name getAllCollections
238
- * @summary: List all the collections
239
- * @description: A Collection allows you to organize your products into hierarchical groups. For example, a dress might be in the category _Clothing_, the individual product might also be in the collection _Summer_. On successful request, returns all the collections as specified in `CollectionListingSchema` - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getAllCollections/).
240
+ * @summary: Retrieve all collections.
241
+ * @description: A Collection allows you to organize your products into hierarchical groups. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getAllCollections/).
240
242
  */
241
243
  getAllCollections({ q, scheduleStatus, type, tags, isActive, pageNo, pageSize, requestHeaders, }?: CatalogPlatformApplicationValidator.GetAllCollectionsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetCollectionListingResponse>;
244
+ /**
245
+ * @param {Object} arg - Arg object.
246
+ * @param {string} arg.companyId - A `company_id` is a unique identifier for
247
+ * a particular seller account.
248
+ * @param {string} arg.applicationId - A `application_id` is a unique
249
+ * identifier for a particular sale channel.
250
+ * @param {string} [arg.q] - Get collection list filtered by q string,
251
+ * @param {string} [arg.scheduleStatus] - Get collection list filtered by
252
+ * scheduled status,
253
+ * @param {string} [arg.type] - Type of the collections
254
+ * @param {string[]} [arg.tags] - Each response will contain next_id param,
255
+ * which should be sent back to make pagination work.
256
+ * @param {boolean} [arg.isActive] - Get collections filtered by active status.
257
+ * @param {number} [arg.pageSize] - Number of items to retrieve in each
258
+ * page. Default is 12.
259
+ * @returns {Paginator<CatalogPlatformModel.GetCollectionListingResponse>}
260
+ * @summary: Retrieve all collections.
261
+ * @description: A Collection allows you to organize your products into hierarchical groups.
262
+ */
263
+ getAllCollectionsPaginator({ companyId, applicationId, q, scheduleStatus, type, tags, isActive, pageSize, }?: {
264
+ companyId: string;
265
+ applicationId: string;
266
+ q?: string;
267
+ scheduleStatus?: string;
268
+ type?: string;
269
+ tags?: string[];
270
+ isActive?: boolean;
271
+ pageSize?: number;
272
+ }): Paginator<CatalogPlatformModel.GetCollectionListingResponse>;
242
273
  /**
243
274
  * @param {CatalogPlatformApplicationValidator.GetAllSearchKeywordParam} arg
244
275
  * - Arg object
@@ -247,7 +278,7 @@ declare class Catalog {
247
278
  * @param {import("../PlatformAPIClient").Options} - Options
248
279
  * @returns {Promise<CatalogPlatformModel.GetSearchWordsResponse>} - Success response
249
280
  * @name getAllSearchKeyword
250
- * @summary: List all Search Custom Keyword Listing
281
+ * @summary: Get all search keywords.
251
282
  * @description: Custom Search Keyword allows you to map conditions with keywords to give you the ultimate results - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getAllSearchKeyword/).
252
283
  */
253
284
  getAllSearchKeyword({ requestHeaders }?: any, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetSearchWordsResponse>;
@@ -271,8 +302,8 @@ declare class Catalog {
271
302
  * @param {import("../PlatformAPIClient").Options} - Options
272
303
  * @returns {Promise<CatalogPlatformModel.InventoryStockResponse>} - Success response
273
304
  * @name getAppInventory
274
- * @summary: Get the stock of a product
275
- * @description: Retrieve the available Inventory of the products. Use this API to get the Inventory status of products with the filters of timestamp, store_ids, brand_ids, item_id - Items - Pagination - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getAppInventory/).
305
+ * @summary: Get application inventory.
306
+ * @description: Retrieve inventory data related to the application. Retrieve the available Inventory of the products. Use this API to get the Inventory status of products with the filters of timestamp, store_ids, brand_ids, item_id, Items, Pagination - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getAppInventory/).
276
307
  */
277
308
  getAppInventory({ itemIds, storeIds, brandIds, sellerIdentifiers, timestamp, pageSize, pageId, requestHeaders, }?: CatalogPlatformApplicationValidator.GetAppInventoryParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.InventoryStockResponse>;
278
309
  /**
@@ -281,8 +312,8 @@ declare class Catalog {
281
312
  * @param {import("../PlatformAPIClient").Options} - Options
282
313
  * @returns {Promise<CatalogPlatformModel.LocationListSerializer>} - Success response
283
314
  * @name getAppLocations
284
- * @summary: Get list of locations
285
- * @description: This API allows to view all the locations asscoiated to a application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getAppLocations/).
315
+ * @summary: Get application locations.
316
+ * @description: Retrieve locations specific to the application. View all the locations asscoiated to a application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getAppLocations/).
286
317
  */
287
318
  getAppLocations({ storeType, uid, q, stage, pageNo, pageSize, tags, storeTypes, requestHeaders, }?: CatalogPlatformApplicationValidator.GetAppLocationsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.LocationListSerializer>;
288
319
  /**
@@ -302,8 +333,8 @@ declare class Catalog {
302
333
  * @param {string[]} [arg.tags] - Get locations filtered by tags.
303
334
  * @param {string[]} [arg.storeTypes] - Get locations filtered by store types.
304
335
  * @returns {Paginator<CatalogPlatformModel.LocationListSerializer>}
305
- * @summary: Get list of locations
306
- * @description: This API allows to view all the locations asscoiated to a application.
336
+ * @summary: Get application locations.
337
+ * @description: Retrieve locations specific to the application. View all the locations asscoiated to a application.
307
338
  */
308
339
  getAppLocationsPaginator({ companyId, applicationId, storeType, uid, q, stage, pageSize, tags, storeTypes, }?: {
309
340
  companyId: string;
@@ -322,7 +353,7 @@ declare class Catalog {
322
353
  * @param {import("../PlatformAPIClient").Options} - Options
323
354
  * @returns {Promise<CatalogPlatformModel.OwnerAppItemResponse>} - Success response
324
355
  * @name getAppProduct
325
- * @summary: Get company application product data.
356
+ * @summary: Retrieve application product data.
326
357
  * @description: Products are the core resource of an application. If successful, returns a Company Application Product resource in the response body depending upon filter sent. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getAppProduct/).
327
358
  */
328
359
  getAppProduct({ itemId, requestHeaders }?: CatalogPlatformApplicationValidator.GetAppProductParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.OwnerAppItemResponse>;
@@ -333,10 +364,41 @@ declare class Catalog {
333
364
  * @returns {Promise<CatalogPlatformModel.RawProductListingResponse>} -
334
365
  * Success response
335
366
  * @name getAppProducts
336
- * @summary: Get applicationwise products
337
- * @description: Products are the core resource of an application. Products can be associated by categories, collections, brands and more. If successful, returns a Product resource in the response body specified in `ApplicationProductListingResponseDatabasePowered` - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getAppProducts/).
367
+ * @summary: Get application products.
368
+ * @description: Retrieve products specific to the application. Products are the core resource of an application. Products can be associated by categories, collections, brands and more. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getAppProducts/).
338
369
  */
339
370
  getAppProducts({ brandIds, categoryIds, departmentIds, tags, itemIds, pageNo, pageSize, q, requestHeaders, }?: CatalogPlatformApplicationValidator.GetAppProductsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.RawProductListingResponse>;
371
+ /**
372
+ * @param {Object} arg - Arg object.
373
+ * @param {string} arg.companyId - A `company_id` is a unique identifier for
374
+ * a particular seller account.
375
+ * @param {string} arg.applicationId - A `application_id` is a unique
376
+ * identifier for a particular sale channel.
377
+ * @param {number[]} [arg.brandIds] - Get multiple products filtered by Brand Ids
378
+ * @param {number[]} [arg.categoryIds] - Get multiple products filtered by
379
+ * Category Ids
380
+ * @param {number[]} [arg.departmentIds] - Get multiple products filtered by
381
+ * Department Ids
382
+ * @param {string[]} [arg.tags] - Get multiple products filtered by tags
383
+ * @param {number[]} [arg.itemIds] - Get multiple products filtered by Item Ids
384
+ * @param {number} [arg.pageSize] - Number of items to retrieve in each
385
+ * page. Default is 10.
386
+ * @param {string} [arg.q] - Search with Item Code, Name, Slug or Identifier.
387
+ * @returns {Paginator<CatalogPlatformModel.RawProductListingResponse>}
388
+ * @summary: Get application products.
389
+ * @description: Retrieve products specific to the application. Products are the core resource of an application. Products can be associated by categories, collections, brands and more.
390
+ */
391
+ getAppProductsPaginator({ companyId, applicationId, brandIds, categoryIds, departmentIds, tags, itemIds, pageSize, q, }?: {
392
+ companyId: string;
393
+ applicationId: string;
394
+ brandIds?: number[];
395
+ categoryIds?: number[];
396
+ departmentIds?: number[];
397
+ tags?: string[];
398
+ itemIds?: number[];
399
+ pageSize?: number;
400
+ q?: string;
401
+ }): Paginator<CatalogPlatformModel.RawProductListingResponse>;
340
402
  /**
341
403
  * @param {CatalogPlatformApplicationValidator.GetAppReturnConfigurationParam} arg
342
404
  * - Arg object
@@ -359,8 +421,8 @@ declare class Catalog {
359
421
  * - Success response
360
422
  *
361
423
  * @name getAppicationProducts
362
- * @summary: List the products
363
- * @description: List all the products associated with a brand, collection or category in a requested sort order. The API additionally supports arbitrary search queries that may refer the name of any product, brand, category or collection. If successful, returns a paginated list of products specified in `ApplicationProductListingResponse` - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getAppicationProducts/).
424
+ * @summary: Get application products.
425
+ * @description: Retrieve products associated with the application. List all the products associated with a brand, collection or category in a requested sort order. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getAppicationProducts/).
364
426
  */
365
427
  getAppicationProducts({ q, f, c, filters, isDependent, sortOn, pageId, pageSize, pageNo, pageType, itemIds, requestHeaders, }?: CatalogPlatformApplicationValidator.GetAppicationProductsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.ApplicationProductListingResponse>;
366
428
  /**
@@ -390,8 +452,8 @@ declare class Catalog {
390
452
  * page. Default is 12.
391
453
  * @param {number[]} [arg.itemIds] - Item Ids of product
392
454
  * @returns {Paginator<CatalogPlatformModel.ApplicationProductListingResponse>}
393
- * @summary: List the products
394
- * @description: List all the products associated with a brand, collection or category in a requested sort order. The API additionally supports arbitrary search queries that may refer the name of any product, brand, category or collection. If successful, returns a paginated list of products specified in `ApplicationProductListingResponse`
455
+ * @summary: Get application products.
456
+ * @description: Retrieve products associated with the application. List all the products associated with a brand, collection or category in a requested sort order.
395
457
  */
396
458
  getAppicationProductsPaginator({ companyId, applicationId, q, f, c, filters, isDependent, sortOn, pageSize, itemIds, }?: {
397
459
  companyId: string;
@@ -413,8 +475,8 @@ declare class Catalog {
413
475
  * @param {import("../PlatformAPIClient").Options} - Options
414
476
  * @returns {Promise<CatalogPlatformModel.BrandListingResponse>} - Success response
415
477
  * @name getApplicationBrandListing
416
- * @summary: List all the brands for the application
417
- * @description: A brand is the name under which a product is being sold. Use this API to list all the brands. You can pass optionally filter the brands by the department. If successful, returns a paginated list of brands specified in `BrandListingResponse` - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getApplicationBrandListing/).
478
+ * @summary: Get application brand listing.
479
+ * @description: Retrieve brand listings related to the application. A brand is the name under which a product is being sold - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getApplicationBrandListing/).
418
480
  */
419
481
  getApplicationBrandListing({ pageNo, pageSize, q, requestHeaders }?: CatalogPlatformApplicationValidator.GetApplicationBrandListingParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.BrandListingResponse>;
420
482
  /**
@@ -428,8 +490,8 @@ declare class Catalog {
428
490
  * @param {string} [arg.q] - Search query with brand name.Use this parameter
429
491
  * to search brands by brand name.
430
492
  * @returns {Paginator<CatalogPlatformModel.BrandListingResponse>}
431
- * @summary: List all the brands for the application
432
- * @description: A brand is the name under which a product is being sold. Use this API to list all the brands. You can pass optionally filter the brands by the department. If successful, returns a paginated list of brands specified in `BrandListingResponse`
493
+ * @summary: Get application brand listing.
494
+ * @description: Retrieve brand listings related to the application. A brand is the name under which a product is being sold
433
495
  */
434
496
  getApplicationBrandListingPaginator({ companyId, applicationId, pageSize, q, }?: {
435
497
  companyId: string;
@@ -445,8 +507,8 @@ declare class Catalog {
445
507
  * @param {import("../PlatformAPIClient").Options} - Options
446
508
  * @returns {Promise<CatalogPlatformModel.BrandListingResponse>} - Success response
447
509
  * @name getApplicationBrands
448
- * @summary: List all the brands
449
- * @description: A brand is the name under which a product is being sold. Use this API to list all the brands. You can pass optionally filter the brands by the department. If successful, returns a paginated list of brands specified in `BrandListingResponse` - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getApplicationBrands/).
510
+ * @summary: Get application brands.
511
+ * @description: List all the brands. A brand is the name under which a product is being sold. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getApplicationBrands/).
450
512
  */
451
513
  getApplicationBrands({ department, pageNo, pageSize, q, brandId, requestHeaders }?: CatalogPlatformApplicationValidator.GetApplicationBrandsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.BrandListingResponse>;
452
514
  /**
@@ -466,8 +528,8 @@ declare class Catalog {
466
528
  * @param {number[]} [arg.brandId] - Helps to sort the brands list on the
467
529
  * basis of uid list.
468
530
  * @returns {Paginator<CatalogPlatformModel.BrandListingResponse>}
469
- * @summary: List all the brands
470
- * @description: A brand is the name under which a product is being sold. Use this API to list all the brands. You can pass optionally filter the brands by the department. If successful, returns a paginated list of brands specified in `BrandListingResponse`
531
+ * @summary: Get application brands.
532
+ * @description: List all the brands. A brand is the name under which a product is being sold.
471
533
  */
472
534
  getApplicationBrandsPaginator({ companyId, applicationId, department, pageSize, q, brandId, }?: {
473
535
  companyId: string;
@@ -485,8 +547,8 @@ declare class Catalog {
485
547
  * @param {import("../PlatformAPIClient").Options} - Options
486
548
  * @returns {Promise<CatalogPlatformModel.BrandListingResponse>} - Success response
487
549
  * @name getApplicationCategoryListing
488
- * @summary: List all the brands for the application
489
- * @description: A brand is the name under which a product is being sold. Use this API to list all the brands. You can pass optionally filter the brands by the department. If successful, returns a paginated list of brands specified in `BrandListingResponse` - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getApplicationCategoryListing/).
550
+ * @summary: Get application category listing.
551
+ * @description: Retrieve category listings related to the application. A brand is the name under which a product is being sold. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getApplicationCategoryListing/).
490
552
  */
491
553
  getApplicationCategoryListing({ departmentId, pageNo, pageSize, q, requestHeaders }?: CatalogPlatformApplicationValidator.GetApplicationCategoryListingParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.BrandListingResponse>;
492
554
  /**
@@ -502,8 +564,8 @@ declare class Catalog {
502
564
  * @param {string} [arg.q] - Search query with brand name.Use this parameter
503
565
  * to search brands by brand name.
504
566
  * @returns {Paginator<CatalogPlatformModel.BrandListingResponse>}
505
- * @summary: List all the brands for the application
506
- * @description: A brand is the name under which a product is being sold. Use this API to list all the brands. You can pass optionally filter the brands by the department. If successful, returns a paginated list of brands specified in `BrandListingResponse`
567
+ * @summary: Get application category listing.
568
+ * @description: Retrieve category listings related to the application. A brand is the name under which a product is being sold.
507
569
  */
508
570
  getApplicationCategoryListingPaginator({ companyId, applicationId, departmentId, pageSize, q, }?: {
509
571
  companyId: string;
@@ -522,8 +584,8 @@ declare class Catalog {
522
584
  * - Success response
523
585
  *
524
586
  * @name getApplicationDepartmentListing
525
- * @summary: List all the departments for the application
526
- * @description: Departments are a way to categorise similar products. A product can lie in multiple departments. For example, a skirt can below to the 'Women's Fashion' Department while a handbag can lie in 'Women's Accessories' Department. Use this API to list all the application departments. If successful, returns the list of departments specified in `ApplicationDepartmentListingResponse` - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getApplicationDepartmentListing/).
587
+ * @summary: Get application department listing.
588
+ * @description: Retrieve department listings related to the application. Departments are a way to categorise similar products. A product can lie in multiple departments. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getApplicationDepartmentListing/).
527
589
  */
528
590
  getApplicationDepartmentListing({ pageNo, pageSize, q, requestHeaders }?: CatalogPlatformApplicationValidator.GetApplicationDepartmentListingParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.ApplicationDepartmentListingResponse>;
529
591
  /**
@@ -537,8 +599,8 @@ declare class Catalog {
537
599
  * @param {string} [arg.q] - Search query with brand name.Use this parameter
538
600
  * to search department by name.
539
601
  * @returns {Paginator<CatalogPlatformModel.ApplicationDepartmentListingResponse>}
540
- * @summary: List all the departments for the application
541
- * @description: Departments are a way to categorise similar products. A product can lie in multiple departments. For example, a skirt can below to the 'Women's Fashion' Department while a handbag can lie in 'Women's Accessories' Department. Use this API to list all the application departments. If successful, returns the list of departments specified in `ApplicationDepartmentListingResponse`
602
+ * @summary: Get application department listing.
603
+ * @description: Retrieve department listings related to the application. Departments are a way to categorise similar products. A product can lie in multiple departments.
542
604
  */
543
605
  getApplicationDepartmentListingPaginator({ companyId, applicationId, pageSize, q, }?: {
544
606
  companyId: string;
@@ -581,7 +643,7 @@ declare class Catalog {
581
643
  * @returns {Promise<CatalogPlatformModel.GetAutocompleteWordsResponse>} -
582
644
  * Success response
583
645
  * @name getAutocompleteConfig
584
- * @summary: List all Autocomplete Keyword Listing
646
+ * @summary: Get autocomplete configuration.
585
647
  * @description: Custom Autocomplete Keyword allows you to map conditions with keywords to give you the ultimate results - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getAutocompleteConfig/).
586
648
  */
587
649
  getAutocompleteConfig({ requestHeaders }?: any, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetAutocompleteWordsResponse>;
@@ -594,8 +656,8 @@ declare class Catalog {
594
656
  * @returns {Promise<CatalogPlatformModel.GetAutocompleteWordsResponse>} -
595
657
  * Success response
596
658
  * @name getAutocompleteKeywordDetail
597
- * @summary: Get a Autocomplete Keywords Details
598
- * @description: Get the details of a words by its `id`. If successful, returns a keywords resource in the response body specified in `GetAutocompleteWordsResponseSchema` - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getAutocompleteKeywordDetail/).
659
+ * @summary: Get autocomplete keyword details.
660
+ * @description: Retrieve detailed information about a specific autocomplete keyword. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getAutocompleteKeywordDetail/).
599
661
  */
600
662
  getAutocompleteKeywordDetail({ id, requestHeaders }?: CatalogPlatformApplicationValidator.GetAutocompleteKeywordDetailParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetAutocompleteWordsResponse>;
601
663
  /**
@@ -608,8 +670,8 @@ declare class Catalog {
608
670
  * - Success response
609
671
  *
610
672
  * @name getCatalogConfiguration
611
- * @summary: Get configuration meta details for catalog for admin panel
612
- * @description: configuration meta details for catalog. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getCatalogConfiguration/).
673
+ * @summary: Retrieve catalog configuration.
674
+ * @description: Retrieve configuration meta details for the catalog. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getCatalogConfiguration/).
613
675
  */
614
676
  getCatalogConfiguration({ requestHeaders }?: any, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetCatalogConfigurationMetaData>;
615
677
  /**
@@ -620,8 +682,8 @@ declare class Catalog {
620
682
  * @param {import("../PlatformAPIClient").Options} - Options
621
683
  * @returns {Promise<CatalogPlatformModel.CatalogInsightResponse>} - Success response
622
684
  * @name getCatalogInsights
623
- * @summary: Analytics data of catalog and inventory.
624
- * @description: Catalog Insights api returns the count of catalog related data like products, brands, departments and categories that have been made live as per configuration of the app. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getCatalogInsights/).
685
+ * @summary: Get catalog insights.
686
+ * @description: Retrieve the count of catalog related data like products, brands, departments and categories that have been made live as per configuration of the application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getCatalogInsights/).
625
687
  */
626
688
  getCatalogInsights({ brand, requestHeaders }?: CatalogPlatformApplicationValidator.GetCatalogInsightsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.CatalogInsightResponse>;
627
689
  /**
@@ -630,8 +692,8 @@ declare class Catalog {
630
692
  * @param {import("../PlatformAPIClient").Options} - Options
631
693
  * @returns {Promise<CatalogPlatformModel.CategoryListingResponse>} - Success response
632
694
  * @name getCategories
633
- * @summary: List all the categories
634
- * @description: List all the categories. You can optionally pass filter the brands by the department. If successful, returns a paginated list of brands specified in `CategoryListingResponse` - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getCategories/).
695
+ * @summary: Get categories.
696
+ * @description: Retrieve a list of categories. Optionally pass filter the brands by the department. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getCategories/).
635
697
  */
636
698
  getCategories({ department, requestHeaders }?: CatalogPlatformApplicationValidator.GetCategoriesParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.CategoryListingResponse>;
637
699
  /**
@@ -643,8 +705,8 @@ declare class Catalog {
643
705
  * @returns {Promise<CatalogPlatformModel.GetCollectionDetailResponse>} -
644
706
  * Success response
645
707
  * @name getCollectionDetail
646
- * @summary: Get a particular collection
647
- * @description: Get the details of a collection by its `slug`. If successful, returns a Collection resource in the response body specified in `CollectionDetailResponse` - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getCollectionDetail/).
708
+ * @summary: Get collection details.
709
+ * @description: Get the details of a collection by its slug. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getCollectionDetail/).
648
710
  */
649
711
  getCollectionDetail({ slug, requestHeaders }?: CatalogPlatformApplicationValidator.GetCollectionDetailParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetCollectionDetailResponse>;
650
712
  /**
@@ -670,8 +732,8 @@ declare class Catalog {
670
732
  * - Success response
671
733
  *
672
734
  * @name getConfigurationByType
673
- * @summary: Get configured details for catalog
674
- * @description: configured details for catalog. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getConfigurationByType/).
735
+ * @summary: Retrieve configuration by type.
736
+ * @description: Retrieve configuration details based on a specific type in the catalog. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getConfigurationByType/).
675
737
  */
676
738
  getConfigurationByType({ type, requestHeaders }?: CatalogPlatformApplicationValidator.GetConfigurationByTypeParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetAppCatalogEntityConfiguration>;
677
739
  /**
@@ -683,8 +745,8 @@ declare class Catalog {
683
745
  * @returns {Promise<CatalogPlatformModel.GetConfigMetadataResponse>} -
684
746
  * Success response
685
747
  * @name getConfigurationMetadata
686
- * @summary: Get configuration metadata details for catalog for admin panel
687
- * @description: Get the configuraion metadata details for catalog. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getConfigurationMetadata/).
748
+ * @summary: Retrieve configuration metadata.
749
+ * @description: Retrieve the configuraion metadata details for catalog. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getConfigurationMetadata/).
688
750
  */
689
751
  getConfigurationMetadata({ configType, templateSlug, pageNo, pageSize, q, requestHeaders }?: CatalogPlatformApplicationValidator.GetConfigurationMetadataParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetConfigMetadataResponse>;
690
752
  /**
@@ -696,8 +758,8 @@ declare class Catalog {
696
758
  * @returns {Promise<CatalogPlatformModel.GetAppCatalogConfiguration>} -
697
759
  * Success response
698
760
  * @name getConfigurations
699
- * @summary: Get configured details for catalog
700
- * @description: configured details for catalog. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getConfigurations/).
761
+ * @summary: Retrieve configurations.
762
+ * @description: Retrieve a configured details for catalog. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getConfigurations/).
701
763
  */
702
764
  getConfigurations({ requestHeaders }?: any, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetAppCatalogConfiguration>;
703
765
  /**
@@ -706,8 +768,8 @@ declare class Catalog {
706
768
  * @param {import("../PlatformAPIClient").Options} - Options
707
769
  * @returns {Promise<CatalogPlatformModel.DepartmentResponse>} - Success response
708
770
  * @name getDepartments
709
- * @summary: List all the departments
710
- * @description: Departments are a way to categorise similar products. A product can lie in multiple departments. For example, a skirt can below to the 'Women's Fashion' Department while a handbag can lie in 'Women's Accessories' Department. Use this API to list all the departments. If successful, returns the list of departments specified in `DepartmentResponse` - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getDepartments/).
771
+ * @summary: Get departments.
772
+ * @description: Retrieve a list of departments. Departments are a way to categorise similar products. A product can lie in multiple departments. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getDepartments/).
711
773
  */
712
774
  getDepartments({ requestHeaders }?: any, { responseHeaders }?: object): Promise<CatalogPlatformModel.DepartmentResponse>;
713
775
  /**
@@ -720,10 +782,35 @@ declare class Catalog {
720
782
  * - Success response
721
783
  *
722
784
  * @name getDiscountedInventoryBySizeIdentifier
723
- * @summary: Get Inventory for company
724
- * @description: This API allows get Inventory data for particular company grouped by size and store. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getDiscountedInventoryBySizeIdentifier/).
785
+ * @summary: Get discounted inventory by size identifier.
786
+ * @description: Allows to retrieve Inventory data for particular company grouped by size and store. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getDiscountedInventoryBySizeIdentifier/).
725
787
  */
726
788
  getDiscountedInventoryBySizeIdentifier({ itemId, sizeIdentifier, pageNo, pageSize, q, locationIds, requestHeaders, }?: CatalogPlatformApplicationValidator.GetDiscountedInventoryBySizeIdentifierParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.InventorySellerIdentifierResponsePaginated>;
789
+ /**
790
+ * @param {Object} arg - Arg object.
791
+ * @param {number} arg.companyId - Id of the company associated to product
792
+ * that is to be viewed.
793
+ * @param {string} arg.applicationId - Uniquer Application ID.
794
+ * @param {number} arg.itemId - Item code of the product of which size is to be get.
795
+ * @param {string} arg.sizeIdentifier - Size Identifier (Seller Identifier
796
+ * or Primary Identifier) of which inventory is to get.
797
+ * @param {number} [arg.pageSize] - Number of items to retrieve in each
798
+ * page. Default is 12.
799
+ * @param {string} [arg.q] - Search with help of store code.
800
+ * @param {number[]} [arg.locationIds] - Search by store ids.
801
+ * @returns {Paginator<CatalogPlatformModel.InventorySellerIdentifierResponsePaginated>}
802
+ * @summary: Get discounted inventory by size identifier.
803
+ * @description: Allows to retrieve Inventory data for particular company grouped by size and store.
804
+ */
805
+ getDiscountedInventoryBySizeIdentifierPaginator({ companyId, applicationId, itemId, sizeIdentifier, pageSize, q, locationIds, }?: {
806
+ companyId: number;
807
+ applicationId: string;
808
+ itemId: number;
809
+ sizeIdentifier: string;
810
+ pageSize?: number;
811
+ q?: string;
812
+ locationIds?: number[];
813
+ }): Paginator<CatalogPlatformModel.InventorySellerIdentifierResponsePaginated>;
727
814
  /**
728
815
  * @param {CatalogPlatformApplicationValidator.GetGroupConfigurationsParam} arg
729
816
  * - Arg object
@@ -732,8 +819,8 @@ declare class Catalog {
732
819
  * @param {import("../PlatformAPIClient").Options} - Options
733
820
  * @returns {Promise<CatalogPlatformModel.GetConfigResponse>} - Success response
734
821
  * @name getGroupConfigurations
735
- * @summary: Get the details of the application configured configurations of group config types.
736
- * @description: Get the details of the application configured configurations of group config types. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getGroupConfigurations/).
822
+ * @summary: Retrieve group configurations.
823
+ * @description: Retrieve the details of the application configured configurations of group config types. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getGroupConfigurations/).
737
824
  */
738
825
  getGroupConfigurations({ configType, pageNo, pageSize, search, templateSlug, requestHeaders }?: CatalogPlatformApplicationValidator.GetGroupConfigurationsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetConfigResponse>;
739
826
  /**
@@ -744,8 +831,8 @@ declare class Catalog {
744
831
  * @param {import("../PlatformAPIClient").Options} - Options
745
832
  * @returns {Promise<CatalogPlatformModel.GetConfigResponse>} - Success response
746
833
  * @name getListingConfigurations
747
- * @summary: Get the details of the application configured configurations of listing config types.
748
- * @description: Get the details of the application configured configurations of listing config types. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getListingConfigurations/).
834
+ * @summary: Retrieve listing configurations.
835
+ * @description: Retrieve the details of the application configured configurations of listing config types. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getListingConfigurations/).
749
836
  */
750
837
  getListingConfigurations({ configType, pageNo, pageSize, search, requestHeaders }?: CatalogPlatformApplicationValidator.GetListingConfigurationsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetConfigResponse>;
751
838
  /**
@@ -756,8 +843,8 @@ declare class Catalog {
756
843
  * @param {import("../PlatformAPIClient").Options} - Options
757
844
  * @returns {Promise<CatalogPlatformModel.ProductDetail>} - Success response
758
845
  * @name getProductDetailBySlug
759
- * @summary: Get a product
760
- * @description: Products are the core resource of an application. Products can be associated by categories, collections, brands and more. This API retrieves the product specified by the given **slug**. If successful, returns a Product resource in the response body specified in `ProductDetail` - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getProductDetailBySlug/).
846
+ * @summary: Get product details by slug.
847
+ * @description: Retrieve detailed product information using a product slug. Products are the core resource of an application. Products can be associated by categories, collections, brands and more. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getProductDetailBySlug/).
761
848
  */
762
849
  getProductDetailBySlug({ slug, requestHeaders }?: CatalogPlatformApplicationValidator.GetProductDetailBySlugParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.ProductDetail>;
763
850
  /**
@@ -766,8 +853,8 @@ declare class Catalog {
766
853
  * @param {import("../PlatformAPIClient").Options} - Options
767
854
  * @returns {Promise<CatalogPlatformModel.GetQueryFiltersResponse>} - Success response
768
855
  * @name getQueryFilters
769
- * @summary: Get query filters to configure a collection
770
- * @description: Get query filters to configure a collection - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getQueryFilters/).
856
+ * @summary: Retrieve query filters.
857
+ * @description: Retrieve query filters to configure a collection - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getQueryFilters/).
771
858
  */
772
859
  getQueryFilters({ requestHeaders }?: any, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetQueryFiltersResponse>;
773
860
  /**
@@ -780,8 +867,8 @@ declare class Catalog {
780
867
  * - Success response
781
868
  *
782
869
  * @name getSearchConfiguration
783
- * @summary: List search configuration for an application
784
- * @description: This view allows you to add/modify searchable attributes for an application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getSearchConfiguration/).
870
+ * @summary: Get Search Configuration
871
+ * @description: Get search configuration in the catalog. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getSearchConfiguration/).
785
872
  */
786
873
  getSearchConfiguration({ requestHeaders }?: any, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetSearchConfigurationResponse>;
787
874
  /**
@@ -793,8 +880,8 @@ declare class Catalog {
793
880
  * @returns {Promise<CatalogPlatformModel.GetSearchWordsDetailResponse>} -
794
881
  * Success response
795
882
  * @name getSearchKeywords
796
- * @summary: Get a Search Keywords Details
797
- * @description: Get the details of a words by its `id`. If successful, returns a Collection resource in the response body specified in `GetSearchWordsDetailResponseSchema` - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getSearchKeywords/).
883
+ * @summary: Retrieve search keywords.
884
+ * @description: Retrieve a list of search keywords from the catalog. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getSearchKeywords/).
798
885
  */
799
886
  getSearchKeywords({ id, requestHeaders }?: CatalogPlatformApplicationValidator.GetSearchKeywordsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetSearchWordsDetailResponse>;
800
887
  /**
@@ -805,8 +892,8 @@ declare class Catalog {
805
892
  * @param {import("../PlatformAPIClient").Options} - Options
806
893
  * @returns {Promise<CatalogPlatformModel.ConfigSuccessResponse>} - Success response
807
894
  * @name updateAllowSingle
808
- * @summary: Update allow single flag for filters of the application.
809
- * @description: Update allow single flag for filters of the application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/updateAllowSingle/).
895
+ * @summary: Update 'Allow Single' setting.
896
+ * @description: Modify allow single flag for filters of the application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/updateAllowSingle/).
810
897
  */
811
898
  updateAllowSingle({ body, requestHeaders }?: CatalogPlatformApplicationValidator.UpdateAllowSingleParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.ConfigSuccessResponse>;
812
899
  /**
@@ -815,8 +902,8 @@ declare class Catalog {
815
902
  * @param {import("../PlatformAPIClient").Options} - Options
816
903
  * @returns {Promise<CatalogPlatformModel.SuccessResponse1>} - Success response
817
904
  * @name updateAppBrand
818
- * @summary: Update a single custom json.
819
- * @description: This API helps to update data associated to a item custom meta. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/updateAppBrand/).
905
+ * @summary: Update application brand.
906
+ * @description: Modify data associated to a item custom meta. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/updateAppBrand/).
820
907
  */
821
908
  updateAppBrand({ brandUid, body, requestHeaders }?: CatalogPlatformApplicationValidator.UpdateAppBrandParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.SuccessResponse1>;
822
909
  /**
@@ -827,8 +914,8 @@ declare class Catalog {
827
914
  * @param {import("../PlatformAPIClient").Options} - Options
828
915
  * @returns {Promise<CatalogPlatformModel.SuccessResponse1>} - Success response
829
916
  * @name updateAppCategory
830
- * @summary: Update a single custom json.
831
- * @description: This API helps to update data associated to a item custom meta. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/updateAppCategory/).
917
+ * @summary: Update application category.
918
+ * @description: Modify category data related to the application. Helps to update data associated to a item custom meta. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/updateAppCategory/).
832
919
  */
833
920
  updateAppCategory({ categoryUid, body, requestHeaders }?: CatalogPlatformApplicationValidator.UpdateAppCategoryParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.SuccessResponse1>;
834
921
  /**
@@ -851,8 +938,8 @@ declare class Catalog {
851
938
  * @param {import("../PlatformAPIClient").Options} - Options
852
939
  * @returns {Promise<CatalogPlatformModel.SuccessResponse1>} - Success response
853
940
  * @name updateAppDepartment
854
- * @summary: Update a single custom json.
855
- * @description: This API helps to update data associated to a item custom meta. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/updateAppDepartment/).
941
+ * @summary: Update application department.
942
+ * @description: Modify department data related to the application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/updateAppDepartment/).
856
943
  */
857
944
  updateAppDepartment({ departmentUid, body, requestHeaders }?: CatalogPlatformApplicationValidator.UpdateAppDepartmentParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.SuccessResponse1>;
858
945
  /**
@@ -863,8 +950,8 @@ declare class Catalog {
863
950
  * @param {import("../PlatformAPIClient").Options} - Options
864
951
  * @returns {Promise<CatalogPlatformModel.SuccessResponse1>} - Success response
865
952
  * @name updateAppLocation
866
- * @summary: Update a single custom json.
867
- * @description: This API helps to update data associated to a item custom meta. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/updateAppLocation/).
953
+ * @summary: Update application location.
954
+ * @description: Modify location data related to the application. Helps to update data associated to a item custom meta - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/updateAppLocation/).
868
955
  */
869
956
  updateAppLocation({ storeUid, body, requestHeaders }?: CatalogPlatformApplicationValidator.UpdateAppLocationParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.SuccessResponse1>;
870
957
  /**
@@ -873,8 +960,8 @@ declare class Catalog {
873
960
  * @param {import("../PlatformAPIClient").Options} - Options
874
961
  * @returns {Promise<CatalogPlatformModel.SuccessResponse1>} - Success response
875
962
  * @name updateAppProduct
876
- * @summary: Update a single custom meta.
877
- * @description: This API helps to update data associated to a item custom meta. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/updateAppProduct/).
963
+ * @summary: Update application product data.
964
+ * @description: Allows to update data associated to a item custom meta. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/updateAppProduct/).
878
965
  */
879
966
  updateAppProduct({ itemId, body, requestHeaders }?: CatalogPlatformApplicationValidator.UpdateAppProductParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.SuccessResponse1>;
880
967
  /**
@@ -898,7 +985,7 @@ declare class Catalog {
898
985
  * @returns {Promise<CatalogPlatformModel.GetAutocompleteWordsResponse>} -
899
986
  * Success response
900
987
  * @name updateAutocompleteKeyword
901
- * @summary: Create & Update Autocomplete Keyword
988
+ * @summary: Update autocomplete keywords.
902
989
  * @description: Update a mapping by it's id. On successful request, returns the updated Keyword mapping - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/updateAutocompleteKeyword/).
903
990
  */
904
991
  updateAutocompleteKeyword({ id, body, requestHeaders }?: CatalogPlatformApplicationValidator.UpdateAutocompleteKeywordParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetAutocompleteWordsResponse>;
@@ -920,8 +1007,8 @@ declare class Catalog {
920
1007
  * @param {import("../PlatformAPIClient").Options} - Options
921
1008
  * @returns {Promise<CatalogPlatformModel.ConfigSuccessResponse>} - Success response
922
1009
  * @name updateDefaultSort
923
- * @summary: Update the default sort key configuration for the application.
924
- * @description: Update the default sort key configuration for the application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/updateDefaultSort/).
1010
+ * @summary: Update default sorting.
1011
+ * @description: Modify the default sort key configuration for the application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/updateDefaultSort/).
925
1012
  */
926
1013
  updateDefaultSort({ body, requestHeaders }?: CatalogPlatformApplicationValidator.UpdateDefaultSortParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.ConfigSuccessResponse>;
927
1014
  /**
@@ -932,8 +1019,8 @@ declare class Catalog {
932
1019
  * @param {import("../PlatformAPIClient").Options} - Options
933
1020
  * @returns {Promise<CatalogPlatformModel.AppConfigurationDetail>} - Success response
934
1021
  * @name updateGroupConfiguration
935
- * @summary: Update the group configurations for the application.
936
- * @description: Update the group configurations for the application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/updateGroupConfiguration/).
1022
+ * @summary: Update group configuration.
1023
+ * @description: Modify the group configurations for the application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/updateGroupConfiguration/).
937
1024
  */
938
1025
  updateGroupConfiguration({ configType, groupSlug, body, requestHeaders }?: CatalogPlatformApplicationValidator.UpdateGroupConfigurationParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.AppConfigurationDetail>;
939
1026
  /**
@@ -944,8 +1031,8 @@ declare class Catalog {
944
1031
  * @param {import("../PlatformAPIClient").Options} - Options
945
1032
  * @returns {Promise<CatalogPlatformModel.AppConfigurationsSort>} - Success response
946
1033
  * @name updateListingConfiguration
947
- * @summary: Update configuration for listings
948
- * @description: Update configuration for listing. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/updateListingConfiguration/).
1034
+ * @summary: Update listing configuration.
1035
+ * @description: Modify the details and settings of an existing listing configuration. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/updateListingConfiguration/).
949
1036
  */
950
1037
  updateListingConfiguration({ configType, configId, body, requestHeaders }?: CatalogPlatformApplicationValidator.UpdateListingConfigurationParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.AppConfigurationsSort>;
951
1038
  /**
@@ -970,7 +1057,7 @@ declare class Catalog {
970
1057
  * @param {import("../PlatformAPIClient").Options} - Options
971
1058
  * @returns {Promise<CatalogPlatformModel.GetSearchWordsData>} - Success response
972
1059
  * @name updateSearchKeywords
973
- * @summary: Update Search Keyword
1060
+ * @summary: Update search keywords.
974
1061
  * @description: Update Search Keyword by its id. On successful request, returns the updated collection - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/updateSearchKeywords/).
975
1062
  */
976
1063
  updateSearchKeywords({ id, body, requestHeaders }?: CatalogPlatformApplicationValidator.UpdateSearchKeywordsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetSearchWordsData>;