@gofynd/fdk-client-javascript 1.4.15-beta.3 → 1.4.15-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 (241) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/sdk/application/ApplicationClient.d.ts +0 -2
  4. package/sdk/application/ApplicationClient.js +0 -2
  5. package/sdk/application/Cart/CartApplicationClient.d.ts +48 -68
  6. package/sdk/application/Cart/CartApplicationClient.js +304 -114
  7. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +58 -59
  8. package/sdk/application/Catalog/CatalogApplicationClient.js +437 -30
  9. package/sdk/application/Common/CommonApplicationClient.d.ts +2 -2
  10. package/sdk/application/Common/CommonApplicationClient.js +22 -1
  11. package/sdk/application/Communication/CommunicationApplicationClient.js +29 -0
  12. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +20 -20
  13. package/sdk/application/Configuration/ConfigurationApplicationClient.js +157 -10
  14. package/sdk/application/Content/ContentApplicationClient.d.ts +30 -19
  15. package/sdk/application/Content/ContentApplicationClient.js +297 -28
  16. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +8 -8
  17. package/sdk/application/FileStorage/FileStorageApplicationClient.js +50 -7
  18. package/sdk/application/Lead/LeadApplicationClient.d.ts +2 -2
  19. package/sdk/application/Lead/LeadApplicationClient.js +74 -1
  20. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +15 -35
  21. package/sdk/application/Logistic/LogisticApplicationClient.js +159 -87
  22. package/sdk/application/Order/OrderApplicationClient.d.ts +12 -22
  23. package/sdk/application/Order/OrderApplicationClient.js +195 -47
  24. package/sdk/application/Payment/PaymentApplicationClient.d.ts +87 -87
  25. package/sdk/application/Payment/PaymentApplicationClient.js +473 -46
  26. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +13 -13
  27. package/sdk/application/Rewards/RewardsApplicationClient.js +75 -7
  28. package/sdk/application/Share/ShareApplicationClient.js +96 -0
  29. package/sdk/application/Theme/ThemeApplicationClient.d.ts +2 -2
  30. package/sdk/application/Theme/ThemeApplicationClient.js +66 -4
  31. package/sdk/application/User/UserApplicationClient.d.ts +10 -10
  32. package/sdk/application/User/UserApplicationClient.js +418 -6
  33. package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
  34. package/sdk/application/Webhook/WebhookApplicationClient.js +16 -3
  35. package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +12 -86
  36. package/sdk/partner/FileStorage/FileStoragePartnerClient.js +24 -582
  37. package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +19 -116
  38. package/sdk/partner/FileStorage/FileStoragePartnerModel.js +14 -121
  39. package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +1 -8
  40. package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +4 -51
  41. package/sdk/partner/Lead/LeadPartnerClient.d.ts +2 -2
  42. package/sdk/partner/Lead/LeadPartnerClient.js +2 -2
  43. package/sdk/partner/Lead/LeadPartnerModel.d.ts +5 -5
  44. package/sdk/partner/Lead/LeadPartnerModel.js +15 -15
  45. package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +20 -126
  46. package/sdk/partner/Logistics/LogisticsPartnerClient.js +20 -970
  47. package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +167 -1200
  48. package/sdk/partner/Logistics/LogisticsPartnerModel.js +160 -571
  49. package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +0 -10
  50. package/sdk/partner/Logistics/LogisticsPartnerValidator.js +7 -121
  51. package/sdk/partner/OAuthClient.js +1 -0
  52. package/sdk/partner/Theme/ThemePartnerClient.d.ts +10 -8
  53. package/sdk/partner/Theme/ThemePartnerClient.js +16 -14
  54. package/sdk/partner/Theme/ThemePartnerModel.d.ts +39 -135
  55. package/sdk/partner/Theme/ThemePartnerModel.js +38 -114
  56. package/sdk/partner/Theme/ThemePartnerValidator.js +4 -4
  57. package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +18 -28
  58. package/sdk/partner/Webhook/WebhookPartnerClient.js +18 -103
  59. package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +179 -612
  60. package/sdk/partner/Webhook/WebhookPartnerModel.js +150 -253
  61. package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +0 -1
  62. package/sdk/partner/Webhook/WebhookPartnerValidator.js +3 -11
  63. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +4 -5
  64. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +8 -14
  65. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +9 -59
  66. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +4 -40
  67. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +32 -2
  68. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +243 -3
  69. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +130 -11
  70. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +152 -12
  71. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +39 -1
  72. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +35 -0
  73. package/sdk/platform/Billing/BillingPlatformClient.d.ts +12 -12
  74. package/sdk/platform/Billing/BillingPlatformClient.js +15 -15
  75. package/sdk/platform/Billing/BillingPlatformModel.d.ts +388 -443
  76. package/sdk/platform/Billing/BillingPlatformModel.js +263 -280
  77. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +18 -16
  78. package/sdk/platform/Billing/BillingPlatformValidator.js +9 -8
  79. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +103 -134
  80. package/sdk/platform/Cart/CartPlatformApplicationClient.js +115 -419
  81. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +65 -118
  82. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +44 -109
  83. package/sdk/platform/Cart/CartPlatformModel.d.ts +1298 -5037
  84. package/sdk/platform/Cart/CartPlatformModel.js +1217 -1976
  85. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +183 -209
  86. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +400 -457
  87. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +142 -185
  88. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +78 -96
  89. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +117 -154
  90. package/sdk/platform/Catalog/CatalogPlatformClient.js +172 -292
  91. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +1647 -6385
  92. package/sdk/platform/Catalog/CatalogPlatformModel.js +1680 -3217
  93. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +31 -72
  94. package/sdk/platform/Catalog/CatalogPlatformValidator.js +24 -50
  95. package/sdk/platform/Common/CommonPlatformClient.d.ts +2 -3
  96. package/sdk/platform/Common/CommonPlatformClient.js +2 -3
  97. package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
  98. package/sdk/platform/Common/CommonPlatformModel.js +6 -6
  99. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +17 -16
  100. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +17 -16
  101. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +8 -8
  102. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +8 -8
  103. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +33 -43
  104. package/sdk/platform/Communication/CommunicationPlatformModel.js +34 -38
  105. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +42 -46
  106. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +43 -47
  107. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +223 -223
  108. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +212 -210
  109. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +12 -12
  110. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +12 -12
  111. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +33 -46
  112. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +54 -67
  113. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +18 -18
  114. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +18 -18
  115. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +24 -45
  116. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +30 -134
  117. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +131 -283
  118. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +97 -219
  119. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +9 -37
  120. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +8 -27
  121. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +141 -124
  122. package/sdk/platform/Content/ContentPlatformApplicationClient.js +422 -449
  123. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +141 -179
  124. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +130 -168
  125. package/sdk/platform/Content/ContentPlatformClient.d.ts +106 -142
  126. package/sdk/platform/Content/ContentPlatformClient.js +336 -523
  127. package/sdk/platform/Content/ContentPlatformModel.d.ts +395 -1241
  128. package/sdk/platform/Content/ContentPlatformModel.js +390 -521
  129. package/sdk/platform/Content/ContentPlatformValidator.d.ts +117 -168
  130. package/sdk/platform/Content/ContentPlatformValidator.js +108 -162
  131. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +12 -14
  132. package/sdk/platform/Discount/DiscountPlatformClient.js +12 -14
  133. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +13 -13
  134. package/sdk/platform/Discount/DiscountPlatformModel.js +12 -12
  135. package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
  136. package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
  137. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +36 -94
  138. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +60 -462
  139. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +15 -62
  140. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +13 -75
  141. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +19 -19
  142. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +21 -21
  143. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +101 -370
  144. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +84 -313
  145. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
  146. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
  147. package/sdk/platform/Finance/FinancePlatformClient.d.ts +320 -0
  148. package/sdk/platform/Finance/FinancePlatformClient.js +2333 -0
  149. package/sdk/platform/Finance/FinancePlatformModel.d.ts +2890 -0
  150. package/sdk/platform/Finance/FinancePlatformModel.js +2148 -0
  151. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +284 -0
  152. package/sdk/platform/Finance/FinancePlatformValidator.js +354 -0
  153. package/sdk/platform/Lead/LeadPlatformClient.d.ts +2 -2
  154. package/sdk/platform/Lead/LeadPlatformClient.js +2 -2
  155. package/sdk/platform/Lead/LeadPlatformModel.d.ts +5 -5
  156. package/sdk/platform/Lead/LeadPlatformModel.js +16 -16
  157. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +6 -17
  158. package/sdk/platform/Order/OrderPlatformApplicationClient.js +7 -85
  159. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +24 -95
  160. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +19 -39
  161. package/sdk/platform/Order/OrderPlatformClient.d.ts +96 -153
  162. package/sdk/platform/Order/OrderPlatformClient.js +198 -416
  163. package/sdk/platform/Order/OrderPlatformModel.d.ts +1286 -7619
  164. package/sdk/platform/Order/OrderPlatformModel.js +1265 -3922
  165. package/sdk/platform/Order/OrderPlatformValidator.d.ts +109 -270
  166. package/sdk/platform/Order/OrderPlatformValidator.js +77 -135
  167. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -6
  168. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +7 -9
  169. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
  170. package/sdk/platform/Partner/PartnerPlatformModel.js +8 -8
  171. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +105 -93
  172. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +141 -129
  173. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +48 -48
  174. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +48 -48
  175. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +20 -20
  176. package/sdk/platform/Payment/PaymentPlatformClient.js +20 -20
  177. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +319 -333
  178. package/sdk/platform/Payment/PaymentPlatformModel.js +278 -288
  179. package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +8 -8
  180. package/sdk/platform/Payment/PaymentPlatformValidator.js +8 -8
  181. package/sdk/platform/PlatformClient.d.ts +2 -0
  182. package/sdk/platform/PlatformClient.js +4 -0
  183. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
  184. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
  185. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
  186. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
  187. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +9 -9
  188. package/sdk/platform/Rewards/RewardsPlatformModel.js +8 -8
  189. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +36 -46
  190. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +41 -132
  191. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +17 -46
  192. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +14 -34
  193. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +46 -40
  194. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +64 -58
  195. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +612 -1845
  196. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +554 -886
  197. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +46 -42
  198. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +28 -26
  199. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +2 -2
  200. package/sdk/platform/Share/SharePlatformApplicationClient.js +2 -2
  201. package/sdk/platform/Share/SharePlatformModel.d.ts +5 -36
  202. package/sdk/platform/Share/SharePlatformModel.js +4 -27
  203. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +3 -3
  204. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +4 -8
  205. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +0 -5
  206. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +0 -2
  207. package/sdk/platform/Theme/ThemePlatformModel.d.ts +13 -76
  208. package/sdk/platform/Theme/ThemePlatformModel.js +17 -57
  209. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +12 -12
  210. package/sdk/platform/User/UserPlatformApplicationClient.js +12 -12
  211. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +2 -2
  212. package/sdk/platform/User/UserPlatformApplicationValidator.js +2 -2
  213. package/sdk/platform/User/UserPlatformModel.d.ts +21 -21
  214. package/sdk/platform/User/UserPlatformModel.js +23 -23
  215. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +78 -25
  216. package/sdk/platform/Webhook/WebhookPlatformClient.js +470 -75
  217. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +427 -720
  218. package/sdk/platform/Webhook/WebhookPlatformModel.js +386 -410
  219. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +55 -10
  220. package/sdk/platform/Webhook/WebhookPlatformValidator.js +72 -12
  221. package/sdk/platform/index.d.ts +1 -0
  222. package/sdk/platform/index.js +2 -0
  223. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +2 -3
  224. package/sdk/public/Configuration/ConfigurationPublicClient.js +21 -6
  225. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +9 -9
  226. package/sdk/public/Configuration/ConfigurationPublicModel.js +6 -6
  227. package/sdk/public/Content/ContentPublicClient.d.ts +2 -112
  228. package/sdk/public/Content/ContentPublicClient.js +20 -791
  229. package/sdk/public/Content/ContentPublicModel.d.ts +3 -549
  230. package/sdk/public/Content/ContentPublicModel.js +3 -649
  231. package/sdk/public/Content/ContentPublicValidator.d.ts +3 -69
  232. package/sdk/public/Content/ContentPublicValidator.js +2 -88
  233. package/sdk/public/Partner/PartnerPublicClient.js +15 -0
  234. package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
  235. package/sdk/public/Webhook/WebhookPublicClient.js +48 -8
  236. package/sdk/public/Webhook/WebhookPublicModel.d.ts +21 -21
  237. package/sdk/public/Webhook/WebhookPublicModel.js +15 -15
  238. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
  239. package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
  240. package/sdk/application/Finance/FinanceApplicationClient.d.ts +0 -29
  241. package/sdk/application/Finance/FinanceApplicationClient.js +0 -105
@@ -1,28 +1,6 @@
1
1
  export = ConfigurationPlatformModel;
2
- /**
3
- * @typedef CurrencyExchangeResponseV2
4
- * @property {string} base - The 3-letter ISO 4217 code representing the base currency.
5
- * @property {string} base_currency_name - The name of the base currency.
6
- * @property {number} ttl_seconds - Time in seconds for which the exchange rates
7
- * are valid.
8
- * @property {CurrencyExchangeItem[]} items - List of exchange rates and currency details.
9
- * @property {number} total - Total number of currency exchange items.
10
- */
11
- /**
12
- * @typedef CurrencyExchangeItem
13
- * @property {string} currency_code - 3-letter ISO 4217 exchange currency code.
14
- * @property {string} name - Name of the exchange currency
15
- * @property {number} rate - Exchange rate of the currency with respect to the
16
- * base currency.
17
- * @property {string} country_code - ISO 3166 country code.
18
- * @property {string} country_name - Name of the country using this currency.
19
- * @property {string} subunit - The name of the subunit for the currency.
20
- * @property {number} decimal_digits - Number of decimal digits the currency supports.
21
- * @property {string} symbol - The symbol of the currency.
22
- */
23
2
  /**
24
3
  * @typedef ApplicationInventory
25
- * @property {SearchConfig} [search]
26
4
  * @property {AppInventoryConfig} [inventory]
27
5
  * @property {AuthenticationConfig} [authentication]
28
6
  * @property {ArticleAssignmentConfig} [article_assignment]
@@ -55,22 +33,6 @@ export = ConfigurationPlatformModel;
55
33
  * @typedef PiiMasking
56
34
  * @property {boolean} [enabled]
57
35
  */
58
- /**
59
- * @typedef FstIdentification
60
- * @property {boolean} [enabled] - Indicates whether FST identification is
61
- * enabled for the application.
62
- */
63
- /**
64
- * @typedef QuerySuggestions
65
- * @property {boolean} [enabled] - Indicates whether query suggestions are enabled.
66
- * @property {number} [max_limit] - Specifies the maximum number of query
67
- * suggestions that can be returned.
68
- */
69
- /**
70
- * @typedef SearchConfig
71
- * @property {FstIdentification} [fst_identification]
72
- * @property {QuerySuggestions} [query_suggestions]
73
- */
74
36
  /**
75
37
  * @typedef AppInventoryConfig
76
38
  * @property {InventoryBrand} [brand]
@@ -89,6 +51,8 @@ export = ConfigurationPlatformModel;
89
51
  * @property {Object[]} [company_store] - List of selling locations whose
90
52
  * inventory is available to the sales channel for displaying on the website
91
53
  * @property {number} [company_id]
54
+ * @property {boolean} [enable_zone_overlapping] - Power product listing with
55
+ * overlapping zones
92
56
  */
93
57
  /**
94
58
  * @typedef InventoryBrand
@@ -257,7 +221,6 @@ export = ConfigurationPlatformModel;
257
221
  */
258
222
  /**
259
223
  * @typedef AppInventoryPartialUpdate
260
- * @property {SearchConfig} [search]
261
224
  * @property {RewardPointsConfig} [reward_points]
262
225
  * @property {AppCartConfig} [cart]
263
226
  * @property {AppPaymentConfig} [payment]
@@ -272,24 +235,24 @@ export = ConfigurationPlatformModel;
272
235
  * @property {number} [company_id] - Numeric ID allotted to a business account
273
236
  */
274
237
  /**
275
- * @typedef CompanyByBrandsRequestSchema
238
+ * @typedef CompanyByBrandsRequest
276
239
  * @property {number} brands - Brand UID
277
240
  * @property {string} [search_text] - A search field for finding a company by its name
278
241
  */
279
242
  /**
280
- * @typedef CompanyByBrandsResponseSchema
243
+ * @typedef CompanyByBrandsResponse
281
244
  * @property {BrandCompanyInfo[]} [items]
282
245
  * @property {Page} [page]
283
246
  */
284
247
  /**
285
- * @typedef StoreByBrandsRequestSchema
248
+ * @typedef StoreByBrandsRequest
286
249
  * @property {number} [company_id] - Current company ID for current company
287
250
  * stores only. Don't send in case cross-selling (franchise) is enabled.
288
251
  * @property {number} brands - Brand UID
289
252
  * @property {string} [search_text] - Search store by its name or store code
290
253
  */
291
254
  /**
292
- * @typedef StoreByBrandsResponseSchema
255
+ * @typedef StoreByBrandsResponse
293
256
  * @property {BrandStoreInfo[]} [items]
294
257
  * @property {Page} [page]
295
258
  */
@@ -314,11 +277,11 @@ export = ConfigurationPlatformModel;
314
277
  * portrait banner
315
278
  */
316
279
  /**
317
- * @typedef BrandsByCompanyResponseSchema
280
+ * @typedef BrandsByCompanyResponse
318
281
  * @property {CompanyBrandInfo[]} [brands]
319
282
  */
320
283
  /**
321
- * @typedef ValidationFailedResponseSchema
284
+ * @typedef ValidationFailedResponse
322
285
  * @property {string} [message] - Response message for failed validation
323
286
  */
324
287
  /**
@@ -345,18 +308,18 @@ export = ConfigurationPlatformModel;
345
308
  * amount pan card number is expected from customer for order
346
309
  */
347
310
  /**
348
- * @typedef CreateApplicationRequestSchema
311
+ * @typedef CreateApplicationRequest
349
312
  * @property {App} [app]
350
313
  * @property {ApplicationInventory} [configuration]
351
314
  * @property {AppDomain} [domain]
352
315
  */
353
316
  /**
354
- * @typedef CreateAppResponseSchema
317
+ * @typedef CreateAppResponse
355
318
  * @property {Application} [app]
356
319
  * @property {ApplicationInventory} [configuration]
357
320
  */
358
321
  /**
359
- * @typedef ApplicationsResponseSchema
322
+ * @typedef ApplicationsResponse
360
323
  * @property {Application[]} [items]
361
324
  * @property {Page} [page]
362
325
  */
@@ -390,7 +353,7 @@ export = ConfigurationPlatformModel;
390
353
  * @property {string} [secure_url] - URL where the splash image is hosted
391
354
  */
392
355
  /**
393
- * @typedef MobileAppConfigRequestSchema
356
+ * @typedef MobileAppConfigRequest
394
357
  * @property {string} [app_name] - Name of the mobile app
395
358
  * @property {LandingImage} [landing_image]
396
359
  * @property {SplashImage} [splash_image]
@@ -456,7 +419,7 @@ export = ConfigurationPlatformModel;
456
419
  * @property {string[]} [txt_records]
457
420
  */
458
421
  /**
459
- * @typedef DomainAddRequestSchema
422
+ * @typedef DomainAddRequest
460
423
  * @property {DomainAdd} [domain]
461
424
  */
462
425
  /**
@@ -473,7 +436,7 @@ export = ConfigurationPlatformModel;
473
436
  * @property {string} [message]
474
437
  */
475
438
  /**
476
- * @typedef DomainsResponseSchema
439
+ * @typedef DomainsResponse
477
440
  * @property {Domain[]} [domains]
478
441
  */
479
442
  /**
@@ -489,13 +452,13 @@ export = ConfigurationPlatformModel;
489
452
  * domain (short URL e.g. bit.ly)
490
453
  */
491
454
  /**
492
- * @typedef UpdateDomainTypeRequestSchema
455
+ * @typedef UpdateDomainTypeRequest
493
456
  * @property {UpdateDomain} [domain]
494
457
  * @property {string} [action] - Shows domain is made primary domain for the
495
458
  * sales channel or shorlink is created for the sales channel domain
496
459
  */
497
460
  /**
498
- * @typedef DomainStatusRequestSchema
461
+ * @typedef DomainStatusRequest
499
462
  * @property {string} [domain_url] - URL of the domain, e.g. uniket.hostx0.de
500
463
  */
501
464
  /**
@@ -505,16 +468,15 @@ export = ConfigurationPlatformModel;
505
468
  * domain are correctly propagating via DNS servers
506
469
  */
507
470
  /**
508
- * @typedef DomainStatusResponseSchema
471
+ * @typedef DomainStatusResponse
509
472
  * @property {boolean} [connected] - Check if domain is live and mapped to
510
473
  * appropriate IP of Fynd Servers
511
474
  * @property {DomainStatus[]} [status]
512
475
  */
513
476
  /**
514
- * @typedef DomainSuggestionsRequestSchema
477
+ * @typedef DomainSuggestionsRequest
515
478
  * @property {string} [domain_url] - Domain url
516
- * @property {boolean} [custom_domain] - Get suggestions for custom domains or
517
- * Fynd domains
479
+ * @property {boolean} [custom] - Get suggestions for custom domains or Fynd domains
518
480
  */
519
481
  /**
520
482
  * @typedef DomainSuggestion
@@ -527,11 +489,11 @@ export = ConfigurationPlatformModel;
527
489
  * @property {string} [currency] - Custom domain currency. Not present for Fynd domains.
528
490
  */
529
491
  /**
530
- * @typedef DomainSuggestionsResponseSchema
492
+ * @typedef DomainSuggestionsResponse
531
493
  * @property {DomainSuggestion[]} [domains] - Domain URL
532
494
  */
533
495
  /**
534
- * @typedef SuccessMessageResponseSchema
496
+ * @typedef SuccessMessageResponse
535
497
  * @property {boolean} [success] - Shows whether domain was deleted successfully
536
498
  * @property {string} [message] - Success message shown to the user (in a string format)
537
499
  */
@@ -550,7 +512,7 @@ export = ConfigurationPlatformModel;
550
512
  * @property {string} [name] - Domain URL of current sales channel, e.g. zenz.com
551
513
  */
552
514
  /**
553
- * @typedef CompaniesResponseSchema
515
+ * @typedef CompaniesResponse
554
516
  * @property {AppInventoryCompanies[]} [items]
555
517
  * @property {Page} [page]
556
518
  */
@@ -562,7 +524,7 @@ export = ConfigurationPlatformModel;
562
524
  * franchisee, distributor, etc.
563
525
  */
564
526
  /**
565
- * @typedef StoresResponseSchema
527
+ * @typedef StoresResponse
566
528
  * @property {AppInventoryStores[]} [items]
567
529
  * @property {Page} [page]
568
530
  */
@@ -587,7 +549,7 @@ export = ConfigurationPlatformModel;
587
549
  * @property {Object} [integration_type]
588
550
  */
589
551
  /**
590
- * @typedef FilterOrderingStoreRequestSchema
552
+ * @typedef FilterOrderingStoreRequest
591
553
  * @property {boolean} [all_stores] - Allow all stores from the ordering stores
592
554
  * @property {number[]} [deployed_stores]
593
555
  * @property {string} [q] - Store code or name of the ordering store
@@ -611,7 +573,7 @@ export = ConfigurationPlatformModel;
611
573
  * @property {DeploymentMeta} [deployment_meta]
612
574
  */
613
575
  /**
614
- * @typedef OrderingStoreSelectRequestSchema
576
+ * @typedef OrderingStoreSelectRequest
615
577
  * @property {OrderingStoreSelect} ordering_store
616
578
  */
617
579
  /**
@@ -640,7 +602,7 @@ export = ConfigurationPlatformModel;
640
602
  * @property {Page} [page]
641
603
  */
642
604
  /**
643
- * @typedef OptedApplicationResponseSchema
605
+ * @typedef OptedApplicationResponse
644
606
  * @property {string} [name] - Name of the other seller's sales channel
645
607
  * @property {string} [description] - Basic details about the other seller's sales channel
646
608
  * @property {string} [_id] - The unique identifier (24-digit Mongo Object ID)
@@ -691,7 +653,7 @@ export = ConfigurationPlatformModel;
691
653
  * of other seller's application
692
654
  */
693
655
  /**
694
- * @typedef TokenResponseSchema
656
+ * @typedef TokenResponse
695
657
  * @property {Tokens} [tokens]
696
658
  * @property {string} [_id] - The unique identifier (24-digit Mongo Object ID)
697
659
  * of the token
@@ -990,11 +952,11 @@ export = ConfigurationPlatformModel;
990
952
  * value is false.
991
953
  */
992
954
  /**
993
- * @typedef AppFeatureRequestSchema
955
+ * @typedef AppFeatureRequest
994
956
  * @property {AppFeature} [feature]
995
957
  */
996
958
  /**
997
- * @typedef AppFeatureResponseSchema
959
+ * @typedef AppFeatureResponse
998
960
  * @property {AppFeature} [feature]
999
961
  */
1000
962
  /**
@@ -1143,7 +1105,7 @@ export = ConfigurationPlatformModel;
1143
1105
  * @property {string} [created_at] - ISO 8601 timestamp of when token created
1144
1106
  */
1145
1107
  /**
1146
- * @typedef InvalidPayloadRequestSchema
1108
+ * @typedef InvalidPayloadRequest
1147
1109
  * @property {string} [message] - Error message when request body payload is improper
1148
1110
  * @property {boolean} [success] - Flag for required not successfull.
1149
1111
  */
@@ -1309,11 +1271,11 @@ export = ConfigurationPlatformModel;
1309
1271
  * @property {number} [company_id]
1310
1272
  */
1311
1273
  /**
1312
- * @typedef CurrenciesResponseSchema
1274
+ * @typedef CurrenciesResponse
1313
1275
  * @property {Currency[]} [items]
1314
1276
  */
1315
1277
  /**
1316
- * @typedef AppCurrencyResponseSchema
1278
+ * @typedef AppCurrencyResponse
1317
1279
  * @property {string} [_id] - The unique identifier (24-digit Mongo Object ID)
1318
1280
  * of the currency configuration supported by the application
1319
1281
  * @property {string} [application] - Alphanumeric ID allotted to an application
@@ -1374,90 +1336,18 @@ export = ConfigurationPlatformModel;
1374
1336
  * value is zero.
1375
1337
  */
1376
1338
  /**
1377
- * @typedef OrderingStoresResponseSchema
1339
+ * @typedef OrderingStoresResponse
1378
1340
  * @property {Page} [page]
1379
1341
  * @property {OrderingStore[]} [items]
1380
1342
  */
1381
- /**
1382
- * @typedef ValidationErrors
1383
- * @property {ValidationError[]} errors
1384
- */
1385
- /**
1386
- * @typedef ValidationError
1387
- * @property {string} message - A brief description of the error encountered.
1388
- * @property {string} field - The field in the request that caused the error.
1389
- */
1390
1343
  declare class ConfigurationPlatformModel {
1391
1344
  }
1392
1345
  declare namespace ConfigurationPlatformModel {
1393
- export { CurrencyExchangeResponseV2, CurrencyExchangeItem, ApplicationInventory, PiiMasking, FstIdentification, QuerySuggestions, SearchConfig, AppInventoryConfig, InventoryBrand, InventoryStore, AppStoreRules, InventoryCategory, InventoryPrice, InventoryDiscount, AuthenticationConfig, ArticleAssignmentConfig, ArticleAssignmentRules, StorePriority, AppCartConfig, InternationalDeliveryCharges, DeliveryCharges, Charges, AppPaymentConfig, CallbackUrl, Methods, PaymentModeConfig, PaymentSelectionLock, AppOrderConfig, AppLogisticsConfig, LoyaltyPointsConfig, AppInventoryPartialUpdate, BrandCompanyInfo, CompanyByBrandsRequestSchema, CompanyByBrandsResponseSchema, StoreByBrandsRequestSchema, StoreByBrandsResponseSchema, BrandStoreInfo, CompanyBrandInfo, BrandsByCompanyResponseSchema, ValidationFailedResponseSchema, NotFound, CommunicationConfig, CommsConfig, PanCardConfig, CreateApplicationRequestSchema, CreateAppResponseSchema, ApplicationsResponseSchema, MobileAppConfiguration, LandingImage, SplashImage, MobileAppConfigRequestSchema, BuildVersionHistory, BuildVersion, AppSupportedCurrency, DefaultCurrency, DomainAdd, DomainAddRequestSchema, Domain, DomainsResponseSchema, UpdateDomain, UpdateDomainTypeRequestSchema, DomainStatusRequestSchema, DomainStatus, DomainStatusResponseSchema, DomainSuggestionsRequestSchema, DomainSuggestion, DomainSuggestionsResponseSchema, SuccessMessageResponseSchema, App, AppDomain, CompaniesResponseSchema, AppInventoryCompanies, StoresResponseSchema, AppInventoryStores, FilterOrderingStoreRequestSchema, DeploymentMeta, OrderingStoreConfig, OrderingStoreSelectRequestSchema, OrderingStoreSelect, OtherSellerCompany, OtherSellerApplication, OtherSellerApplications, OptedApplicationResponseSchema, OptedCompany, OptedInventory, OptType, OptedStore, OptOutInventory, TokenResponseSchema, Tokens, Firebase, Credentials, Ios, Android, Moengage, MoengageCredentials, Segment, SegmentCredentials, Gtm, GtmCredentials, Freshchat, FreshchatCredentials, Safetynet, SafetynetCredentials, FyndRewards, FyndRewardsCredentials, GoogleMap, GoogleMapCredentials, RewardPointsConfig, Credit, Debit, ProductDetailFeature, LaunchPage, LandingPageFeature, ListingPageFeature, RegistrationPageFeature, AppFeature, HomePageFeature, CommonFeature, InternationalShipping, CommunicationOptinDialogFeature, DeploymentStoreSelectionFeature, ListingPriceFeature, CurrencyFeature, RevenueEngineFeature, FeedbackFeature, CompareProductsFeature, CartFeature, QrFeature, PcrFeature, OrderFeature, AppFeatureRequestSchema, AppFeatureResponseSchema, Currency, ApplicationWebsite, ApplicationCors, ApplicationAuth, ApplicationRedirections, ApplicationMeta, SecureUrl, Application, ApplicationById, TokenSchemaID, TokenSchema, InvalidPayloadRequestSchema, Page, ApplicationInformation, InformationAddress, InformationPhone, InformationLoc, InformationSupport, InformationSupportPhone, InformationSupportEmail, SocialLinks, FacebookLink, InstagramLink, TwitterLink, PinterestLink, GooglePlusLink, YoutubeLink, LinkedInLink, VimeoLink, BlogLink, Links, BusinessHighlights, ApplicationDetail, CurrenciesResponseSchema, AppCurrencyResponseSchema, StoreLatLong, OptedStoreAddress, OrderingStore, OrderingStores, OrderingStoresResponseSchema, ValidationErrors, ValidationError };
1346
+ export { ApplicationInventory, PiiMasking, AppInventoryConfig, InventoryBrand, InventoryStore, AppStoreRules, InventoryCategory, InventoryPrice, InventoryDiscount, AuthenticationConfig, ArticleAssignmentConfig, ArticleAssignmentRules, StorePriority, AppCartConfig, InternationalDeliveryCharges, DeliveryCharges, Charges, AppPaymentConfig, CallbackUrl, Methods, PaymentModeConfig, PaymentSelectionLock, AppOrderConfig, AppLogisticsConfig, LoyaltyPointsConfig, AppInventoryPartialUpdate, BrandCompanyInfo, CompanyByBrandsRequest, CompanyByBrandsResponse, StoreByBrandsRequest, StoreByBrandsResponse, BrandStoreInfo, CompanyBrandInfo, BrandsByCompanyResponse, ValidationFailedResponse, NotFound, CommunicationConfig, CommsConfig, PanCardConfig, CreateApplicationRequest, CreateAppResponse, ApplicationsResponse, MobileAppConfiguration, LandingImage, SplashImage, MobileAppConfigRequest, BuildVersionHistory, BuildVersion, AppSupportedCurrency, DefaultCurrency, DomainAdd, DomainAddRequest, Domain, DomainsResponse, UpdateDomain, UpdateDomainTypeRequest, DomainStatusRequest, DomainStatus, DomainStatusResponse, DomainSuggestionsRequest, DomainSuggestion, DomainSuggestionsResponse, SuccessMessageResponse, App, AppDomain, CompaniesResponse, AppInventoryCompanies, StoresResponse, AppInventoryStores, FilterOrderingStoreRequest, DeploymentMeta, OrderingStoreConfig, OrderingStoreSelectRequest, OrderingStoreSelect, OtherSellerCompany, OtherSellerApplication, OtherSellerApplications, OptedApplicationResponse, OptedCompany, OptedInventory, OptType, OptedStore, OptOutInventory, TokenResponse, Tokens, Firebase, Credentials, Ios, Android, Moengage, MoengageCredentials, Segment, SegmentCredentials, Gtm, GtmCredentials, Freshchat, FreshchatCredentials, Safetynet, SafetynetCredentials, FyndRewards, FyndRewardsCredentials, GoogleMap, GoogleMapCredentials, RewardPointsConfig, Credit, Debit, ProductDetailFeature, LaunchPage, LandingPageFeature, ListingPageFeature, RegistrationPageFeature, AppFeature, HomePageFeature, CommonFeature, InternationalShipping, CommunicationOptinDialogFeature, DeploymentStoreSelectionFeature, ListingPriceFeature, CurrencyFeature, RevenueEngineFeature, FeedbackFeature, CompareProductsFeature, CartFeature, QrFeature, PcrFeature, OrderFeature, AppFeatureRequest, AppFeatureResponse, Currency, ApplicationWebsite, ApplicationCors, ApplicationAuth, ApplicationRedirections, ApplicationMeta, SecureUrl, Application, ApplicationById, TokenSchemaID, TokenSchema, InvalidPayloadRequest, Page, ApplicationInformation, InformationAddress, InformationPhone, InformationLoc, InformationSupport, InformationSupportPhone, InformationSupportEmail, SocialLinks, FacebookLink, InstagramLink, TwitterLink, PinterestLink, GooglePlusLink, YoutubeLink, LinkedInLink, VimeoLink, BlogLink, Links, BusinessHighlights, ApplicationDetail, CurrenciesResponse, AppCurrencyResponse, StoreLatLong, OptedStoreAddress, OrderingStore, OrderingStores, OrderingStoresResponse };
1394
1347
  }
1395
- /** @returns {CurrencyExchangeResponseV2} */
1396
- declare function CurrencyExchangeResponseV2(): CurrencyExchangeResponseV2;
1397
- type CurrencyExchangeResponseV2 = {
1398
- /**
1399
- * - The 3-letter ISO 4217 code representing the base currency.
1400
- */
1401
- base: string;
1402
- /**
1403
- * - The name of the base currency.
1404
- */
1405
- base_currency_name: string;
1406
- /**
1407
- * - Time in seconds for which the exchange rates
1408
- * are valid.
1409
- */
1410
- ttl_seconds: number;
1411
- /**
1412
- * - List of exchange rates and currency details.
1413
- */
1414
- items: CurrencyExchangeItem[];
1415
- /**
1416
- * - Total number of currency exchange items.
1417
- */
1418
- total: number;
1419
- };
1420
- /** @returns {CurrencyExchangeItem} */
1421
- declare function CurrencyExchangeItem(): CurrencyExchangeItem;
1422
- type CurrencyExchangeItem = {
1423
- /**
1424
- * - 3-letter ISO 4217 exchange currency code.
1425
- */
1426
- currency_code: string;
1427
- /**
1428
- * - Name of the exchange currency
1429
- */
1430
- name: string;
1431
- /**
1432
- * - Exchange rate of the currency with respect to the
1433
- * base currency.
1434
- */
1435
- rate: number;
1436
- /**
1437
- * - ISO 3166 country code.
1438
- */
1439
- country_code: string;
1440
- /**
1441
- * - Name of the country using this currency.
1442
- */
1443
- country_name: string;
1444
- /**
1445
- * - The name of the subunit for the currency.
1446
- */
1447
- subunit: string;
1448
- /**
1449
- * - Number of decimal digits the currency supports.
1450
- */
1451
- decimal_digits: number;
1452
- /**
1453
- * - The symbol of the currency.
1454
- */
1455
- symbol: string;
1456
- };
1457
1348
  /** @returns {ApplicationInventory} */
1458
1349
  declare function ApplicationInventory(): ApplicationInventory;
1459
1350
  type ApplicationInventory = {
1460
- search?: SearchConfig;
1461
1351
  inventory?: AppInventoryConfig;
1462
1352
  authentication?: AuthenticationConfig;
1463
1353
  article_assignment?: ArticleAssignmentConfig;
@@ -1512,34 +1402,6 @@ declare function PiiMasking(): PiiMasking;
1512
1402
  type PiiMasking = {
1513
1403
  enabled?: boolean;
1514
1404
  };
1515
- /** @returns {FstIdentification} */
1516
- declare function FstIdentification(): FstIdentification;
1517
- type FstIdentification = {
1518
- /**
1519
- * - Indicates whether FST identification is
1520
- * enabled for the application.
1521
- */
1522
- enabled?: boolean;
1523
- };
1524
- /** @returns {QuerySuggestions} */
1525
- declare function QuerySuggestions(): QuerySuggestions;
1526
- type QuerySuggestions = {
1527
- /**
1528
- * - Indicates whether query suggestions are enabled.
1529
- */
1530
- enabled?: boolean;
1531
- /**
1532
- * - Specifies the maximum number of query
1533
- * suggestions that can be returned.
1534
- */
1535
- max_limit?: number;
1536
- };
1537
- /** @returns {SearchConfig} */
1538
- declare function SearchConfig(): SearchConfig;
1539
- type SearchConfig = {
1540
- fst_identification?: FstIdentification;
1541
- query_suggestions?: QuerySuggestions;
1542
- };
1543
1405
  /** @returns {AppInventoryConfig} */
1544
1406
  declare function AppInventoryConfig(): AppInventoryConfig;
1545
1407
  type AppInventoryConfig = {
@@ -1574,6 +1436,11 @@ type AppInventoryConfig = {
1574
1436
  */
1575
1437
  company_store?: any[];
1576
1438
  company_id?: number;
1439
+ /**
1440
+ * - Power product listing with
1441
+ * overlapping zones
1442
+ */
1443
+ enable_zone_overlapping?: boolean;
1577
1444
  };
1578
1445
  /** @returns {InventoryBrand} */
1579
1446
  declare function InventoryBrand(): InventoryBrand;
@@ -1897,7 +1764,6 @@ type LoyaltyPointsConfig = {
1897
1764
  /** @returns {AppInventoryPartialUpdate} */
1898
1765
  declare function AppInventoryPartialUpdate(): AppInventoryPartialUpdate;
1899
1766
  type AppInventoryPartialUpdate = {
1900
- search?: SearchConfig;
1901
1767
  reward_points?: RewardPointsConfig;
1902
1768
  cart?: AppCartConfig;
1903
1769
  payment?: AppPaymentConfig;
@@ -1921,9 +1787,9 @@ type BrandCompanyInfo = {
1921
1787
  */
1922
1788
  company_id?: number;
1923
1789
  };
1924
- /** @returns {CompanyByBrandsRequestSchema} */
1925
- declare function CompanyByBrandsRequestSchema(): CompanyByBrandsRequestSchema;
1926
- type CompanyByBrandsRequestSchema = {
1790
+ /** @returns {CompanyByBrandsRequest} */
1791
+ declare function CompanyByBrandsRequest(): CompanyByBrandsRequest;
1792
+ type CompanyByBrandsRequest = {
1927
1793
  /**
1928
1794
  * - Brand UID
1929
1795
  */
@@ -1933,15 +1799,15 @@ type CompanyByBrandsRequestSchema = {
1933
1799
  */
1934
1800
  search_text?: string;
1935
1801
  };
1936
- /** @returns {CompanyByBrandsResponseSchema} */
1937
- declare function CompanyByBrandsResponseSchema(): CompanyByBrandsResponseSchema;
1938
- type CompanyByBrandsResponseSchema = {
1802
+ /** @returns {CompanyByBrandsResponse} */
1803
+ declare function CompanyByBrandsResponse(): CompanyByBrandsResponse;
1804
+ type CompanyByBrandsResponse = {
1939
1805
  items?: BrandCompanyInfo[];
1940
1806
  page?: Page;
1941
1807
  };
1942
- /** @returns {StoreByBrandsRequestSchema} */
1943
- declare function StoreByBrandsRequestSchema(): StoreByBrandsRequestSchema;
1944
- type StoreByBrandsRequestSchema = {
1808
+ /** @returns {StoreByBrandsRequest} */
1809
+ declare function StoreByBrandsRequest(): StoreByBrandsRequest;
1810
+ type StoreByBrandsRequest = {
1945
1811
  /**
1946
1812
  * - Current company ID for current company
1947
1813
  * stores only. Don't send in case cross-selling (franchise) is enabled.
@@ -1956,9 +1822,9 @@ type StoreByBrandsRequestSchema = {
1956
1822
  */
1957
1823
  search_text?: string;
1958
1824
  };
1959
- /** @returns {StoreByBrandsResponseSchema} */
1960
- declare function StoreByBrandsResponseSchema(): StoreByBrandsResponseSchema;
1961
- type StoreByBrandsResponseSchema = {
1825
+ /** @returns {StoreByBrandsResponse} */
1826
+ declare function StoreByBrandsResponse(): StoreByBrandsResponse;
1827
+ type StoreByBrandsResponse = {
1962
1828
  items?: BrandStoreInfo[];
1963
1829
  page?: Page;
1964
1830
  };
@@ -2011,14 +1877,14 @@ type CompanyBrandInfo = {
2011
1877
  */
2012
1878
  brand_banner_portrait_url?: string;
2013
1879
  };
2014
- /** @returns {BrandsByCompanyResponseSchema} */
2015
- declare function BrandsByCompanyResponseSchema(): BrandsByCompanyResponseSchema;
2016
- type BrandsByCompanyResponseSchema = {
1880
+ /** @returns {BrandsByCompanyResponse} */
1881
+ declare function BrandsByCompanyResponse(): BrandsByCompanyResponse;
1882
+ type BrandsByCompanyResponse = {
2017
1883
  brands?: CompanyBrandInfo[];
2018
1884
  };
2019
- /** @returns {ValidationFailedResponseSchema} */
2020
- declare function ValidationFailedResponseSchema(): ValidationFailedResponseSchema;
2021
- type ValidationFailedResponseSchema = {
1885
+ /** @returns {ValidationFailedResponse} */
1886
+ declare function ValidationFailedResponse(): ValidationFailedResponse;
1887
+ type ValidationFailedResponse = {
2022
1888
  /**
2023
1889
  * - Response message for failed validation
2024
1890
  */
@@ -2069,22 +1935,22 @@ type PanCardConfig = {
2069
1935
  */
2070
1936
  online_threshold_amount?: number;
2071
1937
  };
2072
- /** @returns {CreateApplicationRequestSchema} */
2073
- declare function CreateApplicationRequestSchema(): CreateApplicationRequestSchema;
2074
- type CreateApplicationRequestSchema = {
1938
+ /** @returns {CreateApplicationRequest} */
1939
+ declare function CreateApplicationRequest(): CreateApplicationRequest;
1940
+ type CreateApplicationRequest = {
2075
1941
  app?: App;
2076
1942
  configuration?: ApplicationInventory;
2077
1943
  domain?: AppDomain;
2078
1944
  };
2079
- /** @returns {CreateAppResponseSchema} */
2080
- declare function CreateAppResponseSchema(): CreateAppResponseSchema;
2081
- type CreateAppResponseSchema = {
1945
+ /** @returns {CreateAppResponse} */
1946
+ declare function CreateAppResponse(): CreateAppResponse;
1947
+ type CreateAppResponse = {
2082
1948
  app?: Application;
2083
1949
  configuration?: ApplicationInventory;
2084
1950
  };
2085
- /** @returns {ApplicationsResponseSchema} */
2086
- declare function ApplicationsResponseSchema(): ApplicationsResponseSchema;
2087
- type ApplicationsResponseSchema = {
1951
+ /** @returns {ApplicationsResponse} */
1952
+ declare function ApplicationsResponse(): ApplicationsResponse;
1953
+ type ApplicationsResponse = {
2088
1954
  items?: Application[];
2089
1955
  page?: Page;
2090
1956
  };
@@ -2159,9 +2025,9 @@ type SplashImage = {
2159
2025
  */
2160
2026
  secure_url?: string;
2161
2027
  };
2162
- /** @returns {MobileAppConfigRequestSchema} */
2163
- declare function MobileAppConfigRequestSchema(): MobileAppConfigRequestSchema;
2164
- type MobileAppConfigRequestSchema = {
2028
+ /** @returns {MobileAppConfigRequest} */
2029
+ declare function MobileAppConfigRequest(): MobileAppConfigRequest;
2030
+ type MobileAppConfigRequest = {
2165
2031
  /**
2166
2032
  * - Name of the mobile app
2167
2033
  */
@@ -2303,9 +2169,9 @@ type DomainAdd = {
2303
2169
  message?: string;
2304
2170
  txt_records?: string[];
2305
2171
  };
2306
- /** @returns {DomainAddRequestSchema} */
2307
- declare function DomainAddRequestSchema(): DomainAddRequestSchema;
2308
- type DomainAddRequestSchema = {
2172
+ /** @returns {DomainAddRequest} */
2173
+ declare function DomainAddRequest(): DomainAddRequest;
2174
+ type DomainAddRequest = {
2309
2175
  domain?: DomainAdd;
2310
2176
  };
2311
2177
  /** @returns {Domain} */
@@ -2340,9 +2206,9 @@ type Domain = {
2340
2206
  is_predefined?: boolean;
2341
2207
  message?: string;
2342
2208
  };
2343
- /** @returns {DomainsResponseSchema} */
2344
- declare function DomainsResponseSchema(): DomainsResponseSchema;
2345
- type DomainsResponseSchema = {
2209
+ /** @returns {DomainsResponse} */
2210
+ declare function DomainsResponse(): DomainsResponse;
2211
+ type DomainsResponse = {
2346
2212
  domains?: Domain[];
2347
2213
  };
2348
2214
  /** @returns {UpdateDomain} */
@@ -2373,9 +2239,9 @@ type UpdateDomain = {
2373
2239
  */
2374
2240
  is_shortlink?: boolean;
2375
2241
  };
2376
- /** @returns {UpdateDomainTypeRequestSchema} */
2377
- declare function UpdateDomainTypeRequestSchema(): UpdateDomainTypeRequestSchema;
2378
- type UpdateDomainTypeRequestSchema = {
2242
+ /** @returns {UpdateDomainTypeRequest} */
2243
+ declare function UpdateDomainTypeRequest(): UpdateDomainTypeRequest;
2244
+ type UpdateDomainTypeRequest = {
2379
2245
  domain?: UpdateDomain;
2380
2246
  /**
2381
2247
  * - Shows domain is made primary domain for the
@@ -2383,9 +2249,9 @@ type UpdateDomainTypeRequestSchema = {
2383
2249
  */
2384
2250
  action?: string;
2385
2251
  };
2386
- /** @returns {DomainStatusRequestSchema} */
2387
- declare function DomainStatusRequestSchema(): DomainStatusRequestSchema;
2388
- type DomainStatusRequestSchema = {
2252
+ /** @returns {DomainStatusRequest} */
2253
+ declare function DomainStatusRequest(): DomainStatusRequest;
2254
+ type DomainStatusRequest = {
2389
2255
  /**
2390
2256
  * - URL of the domain, e.g. uniket.hostx0.de
2391
2257
  */
@@ -2404,9 +2270,9 @@ type DomainStatus = {
2404
2270
  */
2405
2271
  status?: boolean;
2406
2272
  };
2407
- /** @returns {DomainStatusResponseSchema} */
2408
- declare function DomainStatusResponseSchema(): DomainStatusResponseSchema;
2409
- type DomainStatusResponseSchema = {
2273
+ /** @returns {DomainStatusResponse} */
2274
+ declare function DomainStatusResponse(): DomainStatusResponse;
2275
+ type DomainStatusResponse = {
2410
2276
  /**
2411
2277
  * - Check if domain is live and mapped to
2412
2278
  * appropriate IP of Fynd Servers
@@ -2414,18 +2280,17 @@ type DomainStatusResponseSchema = {
2414
2280
  connected?: boolean;
2415
2281
  status?: DomainStatus[];
2416
2282
  };
2417
- /** @returns {DomainSuggestionsRequestSchema} */
2418
- declare function DomainSuggestionsRequestSchema(): DomainSuggestionsRequestSchema;
2419
- type DomainSuggestionsRequestSchema = {
2283
+ /** @returns {DomainSuggestionsRequest} */
2284
+ declare function DomainSuggestionsRequest(): DomainSuggestionsRequest;
2285
+ type DomainSuggestionsRequest = {
2420
2286
  /**
2421
2287
  * - Domain url
2422
2288
  */
2423
2289
  domain_url?: string;
2424
2290
  /**
2425
- * - Get suggestions for custom domains or
2426
- * Fynd domains
2291
+ * - Get suggestions for custom domains or Fynd domains
2427
2292
  */
2428
- custom_domain?: boolean;
2293
+ custom?: boolean;
2429
2294
  };
2430
2295
  /** @returns {DomainSuggestion} */
2431
2296
  declare function DomainSuggestion(): DomainSuggestion;
@@ -2453,17 +2318,17 @@ type DomainSuggestion = {
2453
2318
  */
2454
2319
  currency?: string;
2455
2320
  };
2456
- /** @returns {DomainSuggestionsResponseSchema} */
2457
- declare function DomainSuggestionsResponseSchema(): DomainSuggestionsResponseSchema;
2458
- type DomainSuggestionsResponseSchema = {
2321
+ /** @returns {DomainSuggestionsResponse} */
2322
+ declare function DomainSuggestionsResponse(): DomainSuggestionsResponse;
2323
+ type DomainSuggestionsResponse = {
2459
2324
  /**
2460
2325
  * - Domain URL
2461
2326
  */
2462
2327
  domains?: DomainSuggestion[];
2463
2328
  };
2464
- /** @returns {SuccessMessageResponseSchema} */
2465
- declare function SuccessMessageResponseSchema(): SuccessMessageResponseSchema;
2466
- type SuccessMessageResponseSchema = {
2329
+ /** @returns {SuccessMessageResponse} */
2330
+ declare function SuccessMessageResponse(): SuccessMessageResponse;
2331
+ type SuccessMessageResponse = {
2467
2332
  /**
2468
2333
  * - Shows whether domain was deleted successfully
2469
2334
  */
@@ -2504,9 +2369,9 @@ type AppDomain = {
2504
2369
  */
2505
2370
  name?: string;
2506
2371
  };
2507
- /** @returns {CompaniesResponseSchema} */
2508
- declare function CompaniesResponseSchema(): CompaniesResponseSchema;
2509
- type CompaniesResponseSchema = {
2372
+ /** @returns {CompaniesResponse} */
2373
+ declare function CompaniesResponse(): CompaniesResponse;
2374
+ type CompaniesResponse = {
2510
2375
  items?: AppInventoryCompanies[];
2511
2376
  page?: Page;
2512
2377
  };
@@ -2527,9 +2392,9 @@ type AppInventoryCompanies = {
2527
2392
  */
2528
2393
  company_type?: string;
2529
2394
  };
2530
- /** @returns {StoresResponseSchema} */
2531
- declare function StoresResponseSchema(): StoresResponseSchema;
2532
- type StoresResponseSchema = {
2395
+ /** @returns {StoresResponse} */
2396
+ declare function StoresResponse(): StoresResponse;
2397
+ type StoresResponse = {
2533
2398
  items?: AppInventoryStores[];
2534
2399
  page?: Page;
2535
2400
  };
@@ -2578,9 +2443,9 @@ type AppInventoryStores = {
2578
2443
  address?: any;
2579
2444
  integration_type?: any;
2580
2445
  };
2581
- /** @returns {FilterOrderingStoreRequestSchema} */
2582
- declare function FilterOrderingStoreRequestSchema(): FilterOrderingStoreRequestSchema;
2583
- type FilterOrderingStoreRequestSchema = {
2446
+ /** @returns {FilterOrderingStoreRequest} */
2447
+ declare function FilterOrderingStoreRequest(): FilterOrderingStoreRequest;
2448
+ type FilterOrderingStoreRequest = {
2584
2449
  /**
2585
2450
  * - Allow all stores from the ordering stores
2586
2451
  */
@@ -2626,9 +2491,9 @@ declare function OrderingStoreConfig(): OrderingStoreConfig;
2626
2491
  type OrderingStoreConfig = {
2627
2492
  deployment_meta?: DeploymentMeta;
2628
2493
  };
2629
- /** @returns {OrderingStoreSelectRequestSchema} */
2630
- declare function OrderingStoreSelectRequestSchema(): OrderingStoreSelectRequestSchema;
2631
- type OrderingStoreSelectRequestSchema = {
2494
+ /** @returns {OrderingStoreSelectRequest} */
2495
+ declare function OrderingStoreSelectRequest(): OrderingStoreSelectRequest;
2496
+ type OrderingStoreSelectRequest = {
2632
2497
  ordering_store: OrderingStoreSelect;
2633
2498
  };
2634
2499
  /** @returns {OrderingStoreSelect} */
@@ -2684,9 +2549,9 @@ type OtherSellerApplications = {
2684
2549
  items?: OtherSellerApplication[];
2685
2550
  page?: Page;
2686
2551
  };
2687
- /** @returns {OptedApplicationResponseSchema} */
2688
- declare function OptedApplicationResponseSchema(): OptedApplicationResponseSchema;
2689
- type OptedApplicationResponseSchema = {
2552
+ /** @returns {OptedApplicationResponse} */
2553
+ declare function OptedApplicationResponse(): OptedApplicationResponse;
2554
+ type OptedApplicationResponse = {
2690
2555
  /**
2691
2556
  * - Name of the other seller's sales channel
2692
2557
  */
@@ -2798,9 +2663,9 @@ type OptOutInventory = {
2798
2663
  */
2799
2664
  company: number[];
2800
2665
  };
2801
- /** @returns {TokenResponseSchema} */
2802
- declare function TokenResponseSchema(): TokenResponseSchema;
2803
- type TokenResponseSchema = {
2666
+ /** @returns {TokenResponse} */
2667
+ declare function TokenResponse(): TokenResponse;
2668
+ type TokenResponse = {
2804
2669
  tokens?: Tokens;
2805
2670
  /**
2806
2671
  * - The unique identifier (24-digit Mongo Object ID)
@@ -3362,14 +3227,14 @@ type OrderFeature = {
3362
3227
  */
3363
3228
  buy_again?: boolean;
3364
3229
  };
3365
- /** @returns {AppFeatureRequestSchema} */
3366
- declare function AppFeatureRequestSchema(): AppFeatureRequestSchema;
3367
- type AppFeatureRequestSchema = {
3230
+ /** @returns {AppFeatureRequest} */
3231
+ declare function AppFeatureRequest(): AppFeatureRequest;
3232
+ type AppFeatureRequest = {
3368
3233
  feature?: AppFeature;
3369
3234
  };
3370
- /** @returns {AppFeatureResponseSchema} */
3371
- declare function AppFeatureResponseSchema(): AppFeatureResponseSchema;
3372
- type AppFeatureResponseSchema = {
3235
+ /** @returns {AppFeatureResponse} */
3236
+ declare function AppFeatureResponse(): AppFeatureResponse;
3237
+ type AppFeatureResponse = {
3373
3238
  feature?: AppFeature;
3374
3239
  };
3375
3240
  /** @returns {Currency} */
@@ -3669,9 +3534,9 @@ type TokenSchema = {
3669
3534
  */
3670
3535
  created_at?: string;
3671
3536
  };
3672
- /** @returns {InvalidPayloadRequestSchema} */
3673
- declare function InvalidPayloadRequestSchema(): InvalidPayloadRequestSchema;
3674
- type InvalidPayloadRequestSchema = {
3537
+ /** @returns {InvalidPayloadRequest} */
3538
+ declare function InvalidPayloadRequest(): InvalidPayloadRequest;
3539
+ type InvalidPayloadRequest = {
3675
3540
  /**
3676
3541
  * - Error message when request body payload is improper
3677
3542
  */
@@ -4046,14 +3911,14 @@ type ApplicationDetail = {
4046
3911
  slug?: string;
4047
3912
  company_id?: number;
4048
3913
  };
4049
- /** @returns {CurrenciesResponseSchema} */
4050
- declare function CurrenciesResponseSchema(): CurrenciesResponseSchema;
4051
- type CurrenciesResponseSchema = {
3914
+ /** @returns {CurrenciesResponse} */
3915
+ declare function CurrenciesResponse(): CurrenciesResponse;
3916
+ type CurrenciesResponse = {
4052
3917
  items?: Currency[];
4053
3918
  };
4054
- /** @returns {AppCurrencyResponseSchema} */
4055
- declare function AppCurrencyResponseSchema(): AppCurrencyResponseSchema;
4056
- type AppCurrencyResponseSchema = {
3919
+ /** @returns {AppCurrencyResponse} */
3920
+ declare function AppCurrencyResponse(): AppCurrencyResponse;
3921
+ type AppCurrencyResponse = {
4057
3922
  /**
4058
3923
  * - The unique identifier (24-digit Mongo Object ID)
4059
3924
  * of the currency configuration supported by the application
@@ -4201,26 +4066,9 @@ type OrderingStores = {
4201
4066
  */
4202
4067
  __v?: number;
4203
4068
  };
4204
- /** @returns {OrderingStoresResponseSchema} */
4205
- declare function OrderingStoresResponseSchema(): OrderingStoresResponseSchema;
4206
- type OrderingStoresResponseSchema = {
4069
+ /** @returns {OrderingStoresResponse} */
4070
+ declare function OrderingStoresResponse(): OrderingStoresResponse;
4071
+ type OrderingStoresResponse = {
4207
4072
  page?: Page;
4208
4073
  items?: OrderingStore[];
4209
4074
  };
4210
- /** @returns {ValidationErrors} */
4211
- declare function ValidationErrors(): ValidationErrors;
4212
- type ValidationErrors = {
4213
- errors: ValidationError[];
4214
- };
4215
- /** @returns {ValidationError} */
4216
- declare function ValidationError(): ValidationError;
4217
- type ValidationError = {
4218
- /**
4219
- * - A brief description of the error encountered.
4220
- */
4221
- message: string;
4222
- /**
4223
- * - The field in the request that caused the error.
4224
- */
4225
- field: string;
4226
- };