@gofynd/fdk-client-javascript 1.4.13 → 1.4.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (294) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/sdk/application/ApplicationClient.d.ts +2 -0
  4. package/sdk/application/ApplicationClient.js +2 -0
  5. package/sdk/application/Cart/CartApplicationClient.d.ts +60 -53
  6. package/sdk/application/Cart/CartApplicationClient.js +130 -53
  7. package/sdk/application/Cart/CartApplicationModel.d.ts +489 -143
  8. package/sdk/application/Cart/CartApplicationModel.js +380 -159
  9. package/sdk/application/Cart/CartApplicationValidator.d.ts +38 -19
  10. package/sdk/application/Cart/CartApplicationValidator.js +34 -18
  11. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +88 -68
  12. package/sdk/application/Catalog/CatalogApplicationClient.js +114 -94
  13. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +194 -142
  14. package/sdk/application/Catalog/CatalogApplicationModel.js +171 -133
  15. package/sdk/application/Common/CommonApplicationClient.d.ts +3 -2
  16. package/sdk/application/Common/CommonApplicationClient.js +6 -5
  17. package/sdk/application/Common/CommonApplicationModel.d.ts +9 -9
  18. package/sdk/application/Common/CommonApplicationModel.js +6 -6
  19. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +34 -27
  20. package/sdk/application/Configuration/ConfigurationApplicationClient.js +34 -27
  21. package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +45 -57
  22. package/sdk/application/Configuration/ConfigurationApplicationModel.js +35 -47
  23. package/sdk/application/Configuration/ConfigurationApplicationValidator.d.ts +2 -2
  24. package/sdk/application/Configuration/ConfigurationApplicationValidator.js +2 -2
  25. package/sdk/application/Content/ContentApplicationClient.d.ts +23 -33
  26. package/sdk/application/Content/ContentApplicationClient.js +54 -75
  27. package/sdk/application/Content/ContentApplicationModel.d.ts +93 -37
  28. package/sdk/application/Content/ContentApplicationModel.js +83 -32
  29. package/sdk/application/Content/ContentApplicationValidator.d.ts +23 -17
  30. package/sdk/application/Content/ContentApplicationValidator.js +15 -10
  31. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +9 -8
  32. package/sdk/application/FileStorage/FileStorageApplicationClient.js +14 -13
  33. package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +23 -25
  34. package/sdk/application/FileStorage/FileStorageApplicationModel.js +16 -18
  35. package/sdk/application/FileStorage/FileStorageApplicationValidator.d.ts +6 -6
  36. package/sdk/application/FileStorage/FileStorageApplicationValidator.js +6 -6
  37. package/sdk/application/Finance/FinanceApplicationClient.d.ts +36 -0
  38. package/sdk/application/Finance/FinanceApplicationClient.js +202 -0
  39. package/sdk/application/Finance/FinanceApplicationModel.d.ts +289 -0
  40. package/sdk/application/Finance/FinanceApplicationModel.js +208 -0
  41. package/sdk/application/Finance/FinanceApplicationValidator.d.ts +25 -0
  42. package/sdk/application/Finance/FinanceApplicationValidator.js +31 -0
  43. package/sdk/application/Lead/LeadApplicationClient.d.ts +2 -3
  44. package/sdk/application/Lead/LeadApplicationClient.js +2 -3
  45. package/sdk/application/Lead/LeadApplicationModel.d.ts +11 -11
  46. package/sdk/application/Lead/LeadApplicationModel.js +19 -19
  47. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +39 -16
  48. package/sdk/application/Logistic/LogisticApplicationClient.js +189 -21
  49. package/sdk/application/Logistic/LogisticApplicationModel.d.ts +532 -173
  50. package/sdk/application/Logistic/LogisticApplicationModel.js +409 -139
  51. package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +54 -9
  52. package/sdk/application/Logistic/LogisticApplicationValidator.js +42 -8
  53. package/sdk/application/Order/OrderApplicationClient.d.ts +24 -10
  54. package/sdk/application/Order/OrderApplicationClient.js +96 -13
  55. package/sdk/application/Order/OrderApplicationModel.d.ts +434 -102
  56. package/sdk/application/Order/OrderApplicationModel.js +278 -73
  57. package/sdk/application/Order/OrderApplicationValidator.d.ts +17 -3
  58. package/sdk/application/Order/OrderApplicationValidator.js +15 -2
  59. package/sdk/application/Payment/PaymentApplicationClient.d.ts +96 -99
  60. package/sdk/application/Payment/PaymentApplicationClient.js +111 -114
  61. package/sdk/application/Payment/PaymentApplicationModel.d.ts +293 -289
  62. package/sdk/application/Payment/PaymentApplicationModel.js +243 -241
  63. package/sdk/application/Payment/PaymentApplicationValidator.d.ts +46 -46
  64. package/sdk/application/Payment/PaymentApplicationValidator.js +46 -46
  65. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +13 -16
  66. package/sdk/application/Rewards/RewardsApplicationClient.js +19 -22
  67. package/sdk/application/Rewards/RewardsApplicationModel.d.ts +37 -37
  68. package/sdk/application/Rewards/RewardsApplicationModel.js +29 -29
  69. package/sdk/application/Rewards/RewardsApplicationValidator.d.ts +6 -6
  70. package/sdk/application/Rewards/RewardsApplicationValidator.js +6 -6
  71. package/sdk/application/Share/ShareApplicationModel.js +1 -1
  72. package/sdk/application/Theme/ThemeApplicationClient.d.ts +2 -2
  73. package/sdk/application/Theme/ThemeApplicationClient.js +8 -6
  74. package/sdk/application/Theme/ThemeApplicationModel.d.ts +48 -17
  75. package/sdk/application/Theme/ThemeApplicationModel.js +42 -22
  76. package/sdk/application/Theme/ThemeApplicationValidator.d.ts +16 -3
  77. package/sdk/application/Theme/ThemeApplicationValidator.js +9 -2
  78. package/sdk/application/User/UserApplicationClient.d.ts +10 -10
  79. package/sdk/application/User/UserApplicationClient.js +10 -10
  80. package/sdk/application/User/UserApplicationModel.d.ts +17 -17
  81. package/sdk/application/User/UserApplicationModel.js +16 -16
  82. package/sdk/application/User/UserApplicationValidator.d.ts +2 -2
  83. package/sdk/application/User/UserApplicationValidator.js +2 -2
  84. package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
  85. package/sdk/application/Webhook/WebhookApplicationClient.js +4 -4
  86. package/sdk/application/Webhook/WebhookApplicationModel.d.ts +11 -9
  87. package/sdk/application/Webhook/WebhookApplicationModel.js +8 -6
  88. package/sdk/application/Webhook/WebhookApplicationValidator.d.ts +2 -2
  89. package/sdk/application/Webhook/WebhookApplicationValidator.js +2 -2
  90. package/sdk/application/index.d.ts +1 -0
  91. package/sdk/application/index.js +2 -0
  92. package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +86 -12
  93. package/sdk/partner/FileStorage/FileStoragePartnerClient.js +582 -24
  94. package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +116 -19
  95. package/sdk/partner/FileStorage/FileStoragePartnerModel.js +121 -14
  96. package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +8 -1
  97. package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +51 -4
  98. package/sdk/partner/Lead/LeadPartnerClient.d.ts +2 -2
  99. package/sdk/partner/Lead/LeadPartnerClient.js +2 -2
  100. package/sdk/partner/Lead/LeadPartnerModel.d.ts +5 -5
  101. package/sdk/partner/Lead/LeadPartnerModel.js +15 -15
  102. package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +126 -20
  103. package/sdk/partner/Logistics/LogisticsPartnerClient.js +970 -20
  104. package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +767 -85
  105. package/sdk/partner/Logistics/LogisticsPartnerModel.js +429 -76
  106. package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +10 -0
  107. package/sdk/partner/Logistics/LogisticsPartnerValidator.js +120 -6
  108. package/sdk/partner/Theme/ThemePartnerClient.d.ts +8 -10
  109. package/sdk/partner/Theme/ThemePartnerClient.js +14 -16
  110. package/sdk/partner/Theme/ThemePartnerModel.d.ts +96 -37
  111. package/sdk/partner/Theme/ThemePartnerModel.js +90 -36
  112. package/sdk/partner/Theme/ThemePartnerValidator.js +4 -4
  113. package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +28 -18
  114. package/sdk/partner/Webhook/WebhookPartnerClient.js +103 -18
  115. package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +612 -179
  116. package/sdk/partner/Webhook/WebhookPartnerModel.js +253 -150
  117. package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +1 -0
  118. package/sdk/partner/Webhook/WebhookPartnerValidator.js +11 -3
  119. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +5 -4
  120. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +14 -8
  121. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +59 -9
  122. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +40 -4
  123. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +2 -32
  124. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +3 -243
  125. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +11 -130
  126. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +12 -152
  127. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -39
  128. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +0 -35
  129. package/sdk/platform/Billing/BillingPlatformClient.d.ts +12 -12
  130. package/sdk/platform/Billing/BillingPlatformClient.js +15 -15
  131. package/sdk/platform/Billing/BillingPlatformModel.d.ts +443 -388
  132. package/sdk/platform/Billing/BillingPlatformModel.js +280 -263
  133. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +16 -18
  134. package/sdk/platform/Billing/BillingPlatformValidator.js +8 -9
  135. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +134 -103
  136. package/sdk/platform/Cart/CartPlatformApplicationClient.js +407 -112
  137. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +111 -65
  138. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +106 -44
  139. package/sdk/platform/Cart/CartPlatformModel.d.ts +4978 -1303
  140. package/sdk/platform/Cart/CartPlatformModel.js +1922 -1217
  141. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +208 -183
  142. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +383 -358
  143. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +122 -126
  144. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +66 -68
  145. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +141 -118
  146. package/sdk/platform/Catalog/CatalogPlatformClient.js +193 -170
  147. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +1516 -1766
  148. package/sdk/platform/Catalog/CatalogPlatformModel.js +1393 -1224
  149. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +18 -18
  150. package/sdk/platform/Catalog/CatalogPlatformValidator.js +18 -18
  151. package/sdk/platform/Common/CommonPlatformClient.d.ts +3 -2
  152. package/sdk/platform/Common/CommonPlatformClient.js +3 -2
  153. package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
  154. package/sdk/platform/Common/CommonPlatformModel.js +6 -6
  155. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +16 -17
  156. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +16 -17
  157. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +8 -8
  158. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +8 -8
  159. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +43 -33
  160. package/sdk/platform/Communication/CommunicationPlatformModel.js +38 -34
  161. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +46 -42
  162. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +47 -43
  163. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +223 -223
  164. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +210 -212
  165. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +12 -12
  166. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +12 -12
  167. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +46 -33
  168. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +67 -54
  169. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +18 -18
  170. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +18 -18
  171. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +45 -24
  172. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +134 -30
  173. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +283 -124
  174. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +219 -94
  175. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +37 -9
  176. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +27 -8
  177. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +124 -141
  178. package/sdk/platform/Content/ContentPlatformApplicationClient.js +449 -422
  179. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +179 -141
  180. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +168 -130
  181. package/sdk/platform/Content/ContentPlatformClient.d.ts +142 -106
  182. package/sdk/platform/Content/ContentPlatformClient.js +523 -336
  183. package/sdk/platform/Content/ContentPlatformModel.d.ts +1241 -395
  184. package/sdk/platform/Content/ContentPlatformModel.js +521 -390
  185. package/sdk/platform/Content/ContentPlatformValidator.d.ts +168 -117
  186. package/sdk/platform/Content/ContentPlatformValidator.js +162 -108
  187. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +14 -12
  188. package/sdk/platform/Discount/DiscountPlatformClient.js +14 -12
  189. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +13 -13
  190. package/sdk/platform/Discount/DiscountPlatformModel.js +12 -12
  191. package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
  192. package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
  193. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +94 -36
  194. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +462 -60
  195. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +62 -15
  196. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +75 -13
  197. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +19 -19
  198. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +21 -21
  199. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +370 -101
  200. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +313 -84
  201. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
  202. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
  203. package/sdk/platform/Lead/LeadPlatformClient.d.ts +2 -2
  204. package/sdk/platform/Lead/LeadPlatformClient.js +2 -2
  205. package/sdk/platform/Lead/LeadPlatformModel.d.ts +5 -5
  206. package/sdk/platform/Lead/LeadPlatformModel.js +16 -16
  207. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +15 -4
  208. package/sdk/platform/Order/OrderPlatformApplicationClient.js +83 -5
  209. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +25 -4
  210. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +16 -3
  211. package/sdk/platform/Order/OrderPlatformClient.d.ts +178 -97
  212. package/sdk/platform/Order/OrderPlatformClient.js +589 -229
  213. package/sdk/platform/Order/OrderPlatformModel.d.ts +5447 -3071
  214. package/sdk/platform/Order/OrderPlatformModel.js +3496 -1653
  215. package/sdk/platform/Order/OrderPlatformValidator.d.ts +241 -176
  216. package/sdk/platform/Order/OrderPlatformValidator.js +153 -97
  217. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +6 -4
  218. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +9 -7
  219. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
  220. package/sdk/platform/Partner/PartnerPlatformModel.js +8 -8
  221. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +93 -105
  222. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +129 -141
  223. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +48 -48
  224. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +48 -48
  225. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +20 -20
  226. package/sdk/platform/Payment/PaymentPlatformClient.js +20 -20
  227. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +327 -313
  228. package/sdk/platform/Payment/PaymentPlatformModel.js +283 -273
  229. package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +8 -8
  230. package/sdk/platform/Payment/PaymentPlatformValidator.js +8 -8
  231. package/sdk/platform/PlatformClient.d.ts +0 -2
  232. package/sdk/platform/PlatformClient.js +0 -4
  233. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
  234. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
  235. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
  236. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
  237. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +9 -9
  238. package/sdk/platform/Rewards/RewardsPlatformModel.js +8 -8
  239. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +45 -35
  240. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +117 -38
  241. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +22 -13
  242. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +24 -12
  243. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +40 -46
  244. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +58 -64
  245. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +602 -341
  246. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +483 -284
  247. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +8 -8
  248. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +8 -8
  249. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +2 -2
  250. package/sdk/platform/Share/SharePlatformApplicationClient.js +2 -2
  251. package/sdk/platform/Share/SharePlatformModel.d.ts +36 -5
  252. package/sdk/platform/Share/SharePlatformModel.js +27 -4
  253. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +3 -3
  254. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +8 -4
  255. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +5 -0
  256. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +2 -0
  257. package/sdk/platform/Theme/ThemePlatformModel.d.ts +37 -11
  258. package/sdk/platform/Theme/ThemePlatformModel.js +33 -15
  259. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +12 -12
  260. package/sdk/platform/User/UserPlatformApplicationClient.js +12 -12
  261. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +2 -2
  262. package/sdk/platform/User/UserPlatformApplicationValidator.js +2 -2
  263. package/sdk/platform/User/UserPlatformModel.d.ts +21 -21
  264. package/sdk/platform/User/UserPlatformModel.js +23 -23
  265. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +25 -78
  266. package/sdk/platform/Webhook/WebhookPlatformClient.js +75 -470
  267. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +720 -427
  268. package/sdk/platform/Webhook/WebhookPlatformModel.js +410 -386
  269. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +10 -55
  270. package/sdk/platform/Webhook/WebhookPlatformValidator.js +12 -72
  271. package/sdk/platform/index.d.ts +0 -1
  272. package/sdk/platform/index.js +0 -2
  273. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +3 -2
  274. package/sdk/public/Configuration/ConfigurationPublicClient.js +6 -5
  275. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +9 -9
  276. package/sdk/public/Configuration/ConfigurationPublicModel.js +6 -6
  277. package/sdk/public/Content/ContentPublicClient.d.ts +112 -2
  278. package/sdk/public/Content/ContentPublicClient.js +791 -5
  279. package/sdk/public/Content/ContentPublicModel.d.ts +549 -3
  280. package/sdk/public/Content/ContentPublicModel.js +649 -3
  281. package/sdk/public/Content/ContentPublicValidator.d.ts +69 -3
  282. package/sdk/public/Content/ContentPublicValidator.js +88 -2
  283. package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
  284. package/sdk/public/Webhook/WebhookPublicClient.js +8 -8
  285. package/sdk/public/Webhook/WebhookPublicModel.d.ts +21 -21
  286. package/sdk/public/Webhook/WebhookPublicModel.js +15 -15
  287. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
  288. package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
  289. package/sdk/platform/Finance/FinancePlatformClient.d.ts +0 -320
  290. package/sdk/platform/Finance/FinancePlatformClient.js +0 -2333
  291. package/sdk/platform/Finance/FinancePlatformModel.d.ts +0 -2890
  292. package/sdk/platform/Finance/FinancePlatformModel.js +0 -2148
  293. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +0 -284
  294. package/sdk/platform/Finance/FinancePlatformValidator.js +0 -354
@@ -1,6 +1,28 @@
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
+ */
2
23
  /**
3
24
  * @typedef ApplicationInventory
25
+ * @property {SearchConfig} [search]
4
26
  * @property {AppInventoryConfig} [inventory]
5
27
  * @property {AuthenticationConfig} [authentication]
6
28
  * @property {ArticleAssignmentConfig} [article_assignment]
@@ -33,6 +55,22 @@ export = ConfigurationPlatformModel;
33
55
  * @typedef PiiMasking
34
56
  * @property {boolean} [enabled]
35
57
  */
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
+ */
36
74
  /**
37
75
  * @typedef AppInventoryConfig
38
76
  * @property {InventoryBrand} [brand]
@@ -219,6 +257,7 @@ export = ConfigurationPlatformModel;
219
257
  */
220
258
  /**
221
259
  * @typedef AppInventoryPartialUpdate
260
+ * @property {SearchConfig} [search]
222
261
  * @property {RewardPointsConfig} [reward_points]
223
262
  * @property {AppCartConfig} [cart]
224
263
  * @property {AppPaymentConfig} [payment]
@@ -233,24 +272,24 @@ export = ConfigurationPlatformModel;
233
272
  * @property {number} [company_id] - Numeric ID allotted to a business account
234
273
  */
235
274
  /**
236
- * @typedef CompanyByBrandsRequest
275
+ * @typedef CompanyByBrandsRequestSchema
237
276
  * @property {number} brands - Brand UID
238
277
  * @property {string} [search_text] - A search field for finding a company by its name
239
278
  */
240
279
  /**
241
- * @typedef CompanyByBrandsResponse
280
+ * @typedef CompanyByBrandsResponseSchema
242
281
  * @property {BrandCompanyInfo[]} [items]
243
282
  * @property {Page} [page]
244
283
  */
245
284
  /**
246
- * @typedef StoreByBrandsRequest
285
+ * @typedef StoreByBrandsRequestSchema
247
286
  * @property {number} [company_id] - Current company ID for current company
248
287
  * stores only. Don't send in case cross-selling (franchise) is enabled.
249
288
  * @property {number} brands - Brand UID
250
289
  * @property {string} [search_text] - Search store by its name or store code
251
290
  */
252
291
  /**
253
- * @typedef StoreByBrandsResponse
292
+ * @typedef StoreByBrandsResponseSchema
254
293
  * @property {BrandStoreInfo[]} [items]
255
294
  * @property {Page} [page]
256
295
  */
@@ -275,11 +314,11 @@ export = ConfigurationPlatformModel;
275
314
  * portrait banner
276
315
  */
277
316
  /**
278
- * @typedef BrandsByCompanyResponse
317
+ * @typedef BrandsByCompanyResponseSchema
279
318
  * @property {CompanyBrandInfo[]} [brands]
280
319
  */
281
320
  /**
282
- * @typedef ValidationFailedResponse
321
+ * @typedef ValidationFailedResponseSchema
283
322
  * @property {string} [message] - Response message for failed validation
284
323
  */
285
324
  /**
@@ -306,18 +345,18 @@ export = ConfigurationPlatformModel;
306
345
  * amount pan card number is expected from customer for order
307
346
  */
308
347
  /**
309
- * @typedef CreateApplicationRequest
348
+ * @typedef CreateApplicationRequestSchema
310
349
  * @property {App} [app]
311
350
  * @property {ApplicationInventory} [configuration]
312
351
  * @property {AppDomain} [domain]
313
352
  */
314
353
  /**
315
- * @typedef CreateAppResponse
354
+ * @typedef CreateAppResponseSchema
316
355
  * @property {Application} [app]
317
356
  * @property {ApplicationInventory} [configuration]
318
357
  */
319
358
  /**
320
- * @typedef ApplicationsResponse
359
+ * @typedef ApplicationsResponseSchema
321
360
  * @property {Application[]} [items]
322
361
  * @property {Page} [page]
323
362
  */
@@ -351,7 +390,7 @@ export = ConfigurationPlatformModel;
351
390
  * @property {string} [secure_url] - URL where the splash image is hosted
352
391
  */
353
392
  /**
354
- * @typedef MobileAppConfigRequest
393
+ * @typedef MobileAppConfigRequestSchema
355
394
  * @property {string} [app_name] - Name of the mobile app
356
395
  * @property {LandingImage} [landing_image]
357
396
  * @property {SplashImage} [splash_image]
@@ -417,7 +456,7 @@ export = ConfigurationPlatformModel;
417
456
  * @property {string[]} [txt_records]
418
457
  */
419
458
  /**
420
- * @typedef DomainAddRequest
459
+ * @typedef DomainAddRequestSchema
421
460
  * @property {DomainAdd} [domain]
422
461
  */
423
462
  /**
@@ -434,7 +473,7 @@ export = ConfigurationPlatformModel;
434
473
  * @property {string} [message]
435
474
  */
436
475
  /**
437
- * @typedef DomainsResponse
476
+ * @typedef DomainsResponseSchema
438
477
  * @property {Domain[]} [domains]
439
478
  */
440
479
  /**
@@ -450,13 +489,13 @@ export = ConfigurationPlatformModel;
450
489
  * domain (short URL e.g. bit.ly)
451
490
  */
452
491
  /**
453
- * @typedef UpdateDomainTypeRequest
492
+ * @typedef UpdateDomainTypeRequestSchema
454
493
  * @property {UpdateDomain} [domain]
455
494
  * @property {string} [action] - Shows domain is made primary domain for the
456
495
  * sales channel or shorlink is created for the sales channel domain
457
496
  */
458
497
  /**
459
- * @typedef DomainStatusRequest
498
+ * @typedef DomainStatusRequestSchema
460
499
  * @property {string} [domain_url] - URL of the domain, e.g. uniket.hostx0.de
461
500
  */
462
501
  /**
@@ -466,15 +505,16 @@ export = ConfigurationPlatformModel;
466
505
  * domain are correctly propagating via DNS servers
467
506
  */
468
507
  /**
469
- * @typedef DomainStatusResponse
508
+ * @typedef DomainStatusResponseSchema
470
509
  * @property {boolean} [connected] - Check if domain is live and mapped to
471
510
  * appropriate IP of Fynd Servers
472
511
  * @property {DomainStatus[]} [status]
473
512
  */
474
513
  /**
475
- * @typedef DomainSuggestionsRequest
514
+ * @typedef DomainSuggestionsRequestSchema
476
515
  * @property {string} [domain_url] - Domain url
477
- * @property {boolean} [custom] - Get suggestions for custom domains or Fynd domains
516
+ * @property {boolean} [custom_domain] - Get suggestions for custom domains or
517
+ * Fynd domains
478
518
  */
479
519
  /**
480
520
  * @typedef DomainSuggestion
@@ -487,11 +527,11 @@ export = ConfigurationPlatformModel;
487
527
  * @property {string} [currency] - Custom domain currency. Not present for Fynd domains.
488
528
  */
489
529
  /**
490
- * @typedef DomainSuggestionsResponse
530
+ * @typedef DomainSuggestionsResponseSchema
491
531
  * @property {DomainSuggestion[]} [domains] - Domain URL
492
532
  */
493
533
  /**
494
- * @typedef SuccessMessageResponse
534
+ * @typedef SuccessMessageResponseSchema
495
535
  * @property {boolean} [success] - Shows whether domain was deleted successfully
496
536
  * @property {string} [message] - Success message shown to the user (in a string format)
497
537
  */
@@ -510,7 +550,7 @@ export = ConfigurationPlatformModel;
510
550
  * @property {string} [name] - Domain URL of current sales channel, e.g. zenz.com
511
551
  */
512
552
  /**
513
- * @typedef CompaniesResponse
553
+ * @typedef CompaniesResponseSchema
514
554
  * @property {AppInventoryCompanies[]} [items]
515
555
  * @property {Page} [page]
516
556
  */
@@ -522,7 +562,7 @@ export = ConfigurationPlatformModel;
522
562
  * franchisee, distributor, etc.
523
563
  */
524
564
  /**
525
- * @typedef StoresResponse
565
+ * @typedef StoresResponseSchema
526
566
  * @property {AppInventoryStores[]} [items]
527
567
  * @property {Page} [page]
528
568
  */
@@ -547,7 +587,7 @@ export = ConfigurationPlatformModel;
547
587
  * @property {Object} [integration_type]
548
588
  */
549
589
  /**
550
- * @typedef FilterOrderingStoreRequest
590
+ * @typedef FilterOrderingStoreRequestSchema
551
591
  * @property {boolean} [all_stores] - Allow all stores from the ordering stores
552
592
  * @property {number[]} [deployed_stores]
553
593
  * @property {string} [q] - Store code or name of the ordering store
@@ -571,7 +611,7 @@ export = ConfigurationPlatformModel;
571
611
  * @property {DeploymentMeta} [deployment_meta]
572
612
  */
573
613
  /**
574
- * @typedef OrderingStoreSelectRequest
614
+ * @typedef OrderingStoreSelectRequestSchema
575
615
  * @property {OrderingStoreSelect} ordering_store
576
616
  */
577
617
  /**
@@ -600,7 +640,7 @@ export = ConfigurationPlatformModel;
600
640
  * @property {Page} [page]
601
641
  */
602
642
  /**
603
- * @typedef OptedApplicationResponse
643
+ * @typedef OptedApplicationResponseSchema
604
644
  * @property {string} [name] - Name of the other seller's sales channel
605
645
  * @property {string} [description] - Basic details about the other seller's sales channel
606
646
  * @property {string} [_id] - The unique identifier (24-digit Mongo Object ID)
@@ -651,7 +691,7 @@ export = ConfigurationPlatformModel;
651
691
  * of other seller's application
652
692
  */
653
693
  /**
654
- * @typedef TokenResponse
694
+ * @typedef TokenResponseSchema
655
695
  * @property {Tokens} [tokens]
656
696
  * @property {string} [_id] - The unique identifier (24-digit Mongo Object ID)
657
697
  * of the token
@@ -950,11 +990,11 @@ export = ConfigurationPlatformModel;
950
990
  * value is false.
951
991
  */
952
992
  /**
953
- * @typedef AppFeatureRequest
993
+ * @typedef AppFeatureRequestSchema
954
994
  * @property {AppFeature} [feature]
955
995
  */
956
996
  /**
957
- * @typedef AppFeatureResponse
997
+ * @typedef AppFeatureResponseSchema
958
998
  * @property {AppFeature} [feature]
959
999
  */
960
1000
  /**
@@ -1103,7 +1143,7 @@ export = ConfigurationPlatformModel;
1103
1143
  * @property {string} [created_at] - ISO 8601 timestamp of when token created
1104
1144
  */
1105
1145
  /**
1106
- * @typedef InvalidPayloadRequest
1146
+ * @typedef InvalidPayloadRequestSchema
1107
1147
  * @property {string} [message] - Error message when request body payload is improper
1108
1148
  * @property {boolean} [success] - Flag for required not successfull.
1109
1149
  */
@@ -1269,11 +1309,11 @@ export = ConfigurationPlatformModel;
1269
1309
  * @property {number} [company_id]
1270
1310
  */
1271
1311
  /**
1272
- * @typedef CurrenciesResponse
1312
+ * @typedef CurrenciesResponseSchema
1273
1313
  * @property {Currency[]} [items]
1274
1314
  */
1275
1315
  /**
1276
- * @typedef AppCurrencyResponse
1316
+ * @typedef AppCurrencyResponseSchema
1277
1317
  * @property {string} [_id] - The unique identifier (24-digit Mongo Object ID)
1278
1318
  * of the currency configuration supported by the application
1279
1319
  * @property {string} [application] - Alphanumeric ID allotted to an application
@@ -1334,18 +1374,90 @@ export = ConfigurationPlatformModel;
1334
1374
  * value is zero.
1335
1375
  */
1336
1376
  /**
1337
- * @typedef OrderingStoresResponse
1377
+ * @typedef OrderingStoresResponseSchema
1338
1378
  * @property {Page} [page]
1339
1379
  * @property {OrderingStore[]} [items]
1340
1380
  */
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
+ */
1341
1390
  declare class ConfigurationPlatformModel {
1342
1391
  }
1343
1392
  declare namespace ConfigurationPlatformModel {
1344
- 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 };
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 };
1345
1394
  }
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
+ };
1346
1457
  /** @returns {ApplicationInventory} */
1347
1458
  declare function ApplicationInventory(): ApplicationInventory;
1348
1459
  type ApplicationInventory = {
1460
+ search?: SearchConfig;
1349
1461
  inventory?: AppInventoryConfig;
1350
1462
  authentication?: AuthenticationConfig;
1351
1463
  article_assignment?: ArticleAssignmentConfig;
@@ -1400,6 +1512,34 @@ declare function PiiMasking(): PiiMasking;
1400
1512
  type PiiMasking = {
1401
1513
  enabled?: boolean;
1402
1514
  };
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
+ };
1403
1543
  /** @returns {AppInventoryConfig} */
1404
1544
  declare function AppInventoryConfig(): AppInventoryConfig;
1405
1545
  type AppInventoryConfig = {
@@ -1757,6 +1897,7 @@ type LoyaltyPointsConfig = {
1757
1897
  /** @returns {AppInventoryPartialUpdate} */
1758
1898
  declare function AppInventoryPartialUpdate(): AppInventoryPartialUpdate;
1759
1899
  type AppInventoryPartialUpdate = {
1900
+ search?: SearchConfig;
1760
1901
  reward_points?: RewardPointsConfig;
1761
1902
  cart?: AppCartConfig;
1762
1903
  payment?: AppPaymentConfig;
@@ -1780,9 +1921,9 @@ type BrandCompanyInfo = {
1780
1921
  */
1781
1922
  company_id?: number;
1782
1923
  };
1783
- /** @returns {CompanyByBrandsRequest} */
1784
- declare function CompanyByBrandsRequest(): CompanyByBrandsRequest;
1785
- type CompanyByBrandsRequest = {
1924
+ /** @returns {CompanyByBrandsRequestSchema} */
1925
+ declare function CompanyByBrandsRequestSchema(): CompanyByBrandsRequestSchema;
1926
+ type CompanyByBrandsRequestSchema = {
1786
1927
  /**
1787
1928
  * - Brand UID
1788
1929
  */
@@ -1792,15 +1933,15 @@ type CompanyByBrandsRequest = {
1792
1933
  */
1793
1934
  search_text?: string;
1794
1935
  };
1795
- /** @returns {CompanyByBrandsResponse} */
1796
- declare function CompanyByBrandsResponse(): CompanyByBrandsResponse;
1797
- type CompanyByBrandsResponse = {
1936
+ /** @returns {CompanyByBrandsResponseSchema} */
1937
+ declare function CompanyByBrandsResponseSchema(): CompanyByBrandsResponseSchema;
1938
+ type CompanyByBrandsResponseSchema = {
1798
1939
  items?: BrandCompanyInfo[];
1799
1940
  page?: Page;
1800
1941
  };
1801
- /** @returns {StoreByBrandsRequest} */
1802
- declare function StoreByBrandsRequest(): StoreByBrandsRequest;
1803
- type StoreByBrandsRequest = {
1942
+ /** @returns {StoreByBrandsRequestSchema} */
1943
+ declare function StoreByBrandsRequestSchema(): StoreByBrandsRequestSchema;
1944
+ type StoreByBrandsRequestSchema = {
1804
1945
  /**
1805
1946
  * - Current company ID for current company
1806
1947
  * stores only. Don't send in case cross-selling (franchise) is enabled.
@@ -1815,9 +1956,9 @@ type StoreByBrandsRequest = {
1815
1956
  */
1816
1957
  search_text?: string;
1817
1958
  };
1818
- /** @returns {StoreByBrandsResponse} */
1819
- declare function StoreByBrandsResponse(): StoreByBrandsResponse;
1820
- type StoreByBrandsResponse = {
1959
+ /** @returns {StoreByBrandsResponseSchema} */
1960
+ declare function StoreByBrandsResponseSchema(): StoreByBrandsResponseSchema;
1961
+ type StoreByBrandsResponseSchema = {
1821
1962
  items?: BrandStoreInfo[];
1822
1963
  page?: Page;
1823
1964
  };
@@ -1870,14 +2011,14 @@ type CompanyBrandInfo = {
1870
2011
  */
1871
2012
  brand_banner_portrait_url?: string;
1872
2013
  };
1873
- /** @returns {BrandsByCompanyResponse} */
1874
- declare function BrandsByCompanyResponse(): BrandsByCompanyResponse;
1875
- type BrandsByCompanyResponse = {
2014
+ /** @returns {BrandsByCompanyResponseSchema} */
2015
+ declare function BrandsByCompanyResponseSchema(): BrandsByCompanyResponseSchema;
2016
+ type BrandsByCompanyResponseSchema = {
1876
2017
  brands?: CompanyBrandInfo[];
1877
2018
  };
1878
- /** @returns {ValidationFailedResponse} */
1879
- declare function ValidationFailedResponse(): ValidationFailedResponse;
1880
- type ValidationFailedResponse = {
2019
+ /** @returns {ValidationFailedResponseSchema} */
2020
+ declare function ValidationFailedResponseSchema(): ValidationFailedResponseSchema;
2021
+ type ValidationFailedResponseSchema = {
1881
2022
  /**
1882
2023
  * - Response message for failed validation
1883
2024
  */
@@ -1928,22 +2069,22 @@ type PanCardConfig = {
1928
2069
  */
1929
2070
  online_threshold_amount?: number;
1930
2071
  };
1931
- /** @returns {CreateApplicationRequest} */
1932
- declare function CreateApplicationRequest(): CreateApplicationRequest;
1933
- type CreateApplicationRequest = {
2072
+ /** @returns {CreateApplicationRequestSchema} */
2073
+ declare function CreateApplicationRequestSchema(): CreateApplicationRequestSchema;
2074
+ type CreateApplicationRequestSchema = {
1934
2075
  app?: App;
1935
2076
  configuration?: ApplicationInventory;
1936
2077
  domain?: AppDomain;
1937
2078
  };
1938
- /** @returns {CreateAppResponse} */
1939
- declare function CreateAppResponse(): CreateAppResponse;
1940
- type CreateAppResponse = {
2079
+ /** @returns {CreateAppResponseSchema} */
2080
+ declare function CreateAppResponseSchema(): CreateAppResponseSchema;
2081
+ type CreateAppResponseSchema = {
1941
2082
  app?: Application;
1942
2083
  configuration?: ApplicationInventory;
1943
2084
  };
1944
- /** @returns {ApplicationsResponse} */
1945
- declare function ApplicationsResponse(): ApplicationsResponse;
1946
- type ApplicationsResponse = {
2085
+ /** @returns {ApplicationsResponseSchema} */
2086
+ declare function ApplicationsResponseSchema(): ApplicationsResponseSchema;
2087
+ type ApplicationsResponseSchema = {
1947
2088
  items?: Application[];
1948
2089
  page?: Page;
1949
2090
  };
@@ -2018,9 +2159,9 @@ type SplashImage = {
2018
2159
  */
2019
2160
  secure_url?: string;
2020
2161
  };
2021
- /** @returns {MobileAppConfigRequest} */
2022
- declare function MobileAppConfigRequest(): MobileAppConfigRequest;
2023
- type MobileAppConfigRequest = {
2162
+ /** @returns {MobileAppConfigRequestSchema} */
2163
+ declare function MobileAppConfigRequestSchema(): MobileAppConfigRequestSchema;
2164
+ type MobileAppConfigRequestSchema = {
2024
2165
  /**
2025
2166
  * - Name of the mobile app
2026
2167
  */
@@ -2162,9 +2303,9 @@ type DomainAdd = {
2162
2303
  message?: string;
2163
2304
  txt_records?: string[];
2164
2305
  };
2165
- /** @returns {DomainAddRequest} */
2166
- declare function DomainAddRequest(): DomainAddRequest;
2167
- type DomainAddRequest = {
2306
+ /** @returns {DomainAddRequestSchema} */
2307
+ declare function DomainAddRequestSchema(): DomainAddRequestSchema;
2308
+ type DomainAddRequestSchema = {
2168
2309
  domain?: DomainAdd;
2169
2310
  };
2170
2311
  /** @returns {Domain} */
@@ -2199,9 +2340,9 @@ type Domain = {
2199
2340
  is_predefined?: boolean;
2200
2341
  message?: string;
2201
2342
  };
2202
- /** @returns {DomainsResponse} */
2203
- declare function DomainsResponse(): DomainsResponse;
2204
- type DomainsResponse = {
2343
+ /** @returns {DomainsResponseSchema} */
2344
+ declare function DomainsResponseSchema(): DomainsResponseSchema;
2345
+ type DomainsResponseSchema = {
2205
2346
  domains?: Domain[];
2206
2347
  };
2207
2348
  /** @returns {UpdateDomain} */
@@ -2232,9 +2373,9 @@ type UpdateDomain = {
2232
2373
  */
2233
2374
  is_shortlink?: boolean;
2234
2375
  };
2235
- /** @returns {UpdateDomainTypeRequest} */
2236
- declare function UpdateDomainTypeRequest(): UpdateDomainTypeRequest;
2237
- type UpdateDomainTypeRequest = {
2376
+ /** @returns {UpdateDomainTypeRequestSchema} */
2377
+ declare function UpdateDomainTypeRequestSchema(): UpdateDomainTypeRequestSchema;
2378
+ type UpdateDomainTypeRequestSchema = {
2238
2379
  domain?: UpdateDomain;
2239
2380
  /**
2240
2381
  * - Shows domain is made primary domain for the
@@ -2242,9 +2383,9 @@ type UpdateDomainTypeRequest = {
2242
2383
  */
2243
2384
  action?: string;
2244
2385
  };
2245
- /** @returns {DomainStatusRequest} */
2246
- declare function DomainStatusRequest(): DomainStatusRequest;
2247
- type DomainStatusRequest = {
2386
+ /** @returns {DomainStatusRequestSchema} */
2387
+ declare function DomainStatusRequestSchema(): DomainStatusRequestSchema;
2388
+ type DomainStatusRequestSchema = {
2248
2389
  /**
2249
2390
  * - URL of the domain, e.g. uniket.hostx0.de
2250
2391
  */
@@ -2263,9 +2404,9 @@ type DomainStatus = {
2263
2404
  */
2264
2405
  status?: boolean;
2265
2406
  };
2266
- /** @returns {DomainStatusResponse} */
2267
- declare function DomainStatusResponse(): DomainStatusResponse;
2268
- type DomainStatusResponse = {
2407
+ /** @returns {DomainStatusResponseSchema} */
2408
+ declare function DomainStatusResponseSchema(): DomainStatusResponseSchema;
2409
+ type DomainStatusResponseSchema = {
2269
2410
  /**
2270
2411
  * - Check if domain is live and mapped to
2271
2412
  * appropriate IP of Fynd Servers
@@ -2273,17 +2414,18 @@ type DomainStatusResponse = {
2273
2414
  connected?: boolean;
2274
2415
  status?: DomainStatus[];
2275
2416
  };
2276
- /** @returns {DomainSuggestionsRequest} */
2277
- declare function DomainSuggestionsRequest(): DomainSuggestionsRequest;
2278
- type DomainSuggestionsRequest = {
2417
+ /** @returns {DomainSuggestionsRequestSchema} */
2418
+ declare function DomainSuggestionsRequestSchema(): DomainSuggestionsRequestSchema;
2419
+ type DomainSuggestionsRequestSchema = {
2279
2420
  /**
2280
2421
  * - Domain url
2281
2422
  */
2282
2423
  domain_url?: string;
2283
2424
  /**
2284
- * - Get suggestions for custom domains or Fynd domains
2425
+ * - Get suggestions for custom domains or
2426
+ * Fynd domains
2285
2427
  */
2286
- custom?: boolean;
2428
+ custom_domain?: boolean;
2287
2429
  };
2288
2430
  /** @returns {DomainSuggestion} */
2289
2431
  declare function DomainSuggestion(): DomainSuggestion;
@@ -2311,17 +2453,17 @@ type DomainSuggestion = {
2311
2453
  */
2312
2454
  currency?: string;
2313
2455
  };
2314
- /** @returns {DomainSuggestionsResponse} */
2315
- declare function DomainSuggestionsResponse(): DomainSuggestionsResponse;
2316
- type DomainSuggestionsResponse = {
2456
+ /** @returns {DomainSuggestionsResponseSchema} */
2457
+ declare function DomainSuggestionsResponseSchema(): DomainSuggestionsResponseSchema;
2458
+ type DomainSuggestionsResponseSchema = {
2317
2459
  /**
2318
2460
  * - Domain URL
2319
2461
  */
2320
2462
  domains?: DomainSuggestion[];
2321
2463
  };
2322
- /** @returns {SuccessMessageResponse} */
2323
- declare function SuccessMessageResponse(): SuccessMessageResponse;
2324
- type SuccessMessageResponse = {
2464
+ /** @returns {SuccessMessageResponseSchema} */
2465
+ declare function SuccessMessageResponseSchema(): SuccessMessageResponseSchema;
2466
+ type SuccessMessageResponseSchema = {
2325
2467
  /**
2326
2468
  * - Shows whether domain was deleted successfully
2327
2469
  */
@@ -2362,9 +2504,9 @@ type AppDomain = {
2362
2504
  */
2363
2505
  name?: string;
2364
2506
  };
2365
- /** @returns {CompaniesResponse} */
2366
- declare function CompaniesResponse(): CompaniesResponse;
2367
- type CompaniesResponse = {
2507
+ /** @returns {CompaniesResponseSchema} */
2508
+ declare function CompaniesResponseSchema(): CompaniesResponseSchema;
2509
+ type CompaniesResponseSchema = {
2368
2510
  items?: AppInventoryCompanies[];
2369
2511
  page?: Page;
2370
2512
  };
@@ -2385,9 +2527,9 @@ type AppInventoryCompanies = {
2385
2527
  */
2386
2528
  company_type?: string;
2387
2529
  };
2388
- /** @returns {StoresResponse} */
2389
- declare function StoresResponse(): StoresResponse;
2390
- type StoresResponse = {
2530
+ /** @returns {StoresResponseSchema} */
2531
+ declare function StoresResponseSchema(): StoresResponseSchema;
2532
+ type StoresResponseSchema = {
2391
2533
  items?: AppInventoryStores[];
2392
2534
  page?: Page;
2393
2535
  };
@@ -2436,9 +2578,9 @@ type AppInventoryStores = {
2436
2578
  address?: any;
2437
2579
  integration_type?: any;
2438
2580
  };
2439
- /** @returns {FilterOrderingStoreRequest} */
2440
- declare function FilterOrderingStoreRequest(): FilterOrderingStoreRequest;
2441
- type FilterOrderingStoreRequest = {
2581
+ /** @returns {FilterOrderingStoreRequestSchema} */
2582
+ declare function FilterOrderingStoreRequestSchema(): FilterOrderingStoreRequestSchema;
2583
+ type FilterOrderingStoreRequestSchema = {
2442
2584
  /**
2443
2585
  * - Allow all stores from the ordering stores
2444
2586
  */
@@ -2484,9 +2626,9 @@ declare function OrderingStoreConfig(): OrderingStoreConfig;
2484
2626
  type OrderingStoreConfig = {
2485
2627
  deployment_meta?: DeploymentMeta;
2486
2628
  };
2487
- /** @returns {OrderingStoreSelectRequest} */
2488
- declare function OrderingStoreSelectRequest(): OrderingStoreSelectRequest;
2489
- type OrderingStoreSelectRequest = {
2629
+ /** @returns {OrderingStoreSelectRequestSchema} */
2630
+ declare function OrderingStoreSelectRequestSchema(): OrderingStoreSelectRequestSchema;
2631
+ type OrderingStoreSelectRequestSchema = {
2490
2632
  ordering_store: OrderingStoreSelect;
2491
2633
  };
2492
2634
  /** @returns {OrderingStoreSelect} */
@@ -2542,9 +2684,9 @@ type OtherSellerApplications = {
2542
2684
  items?: OtherSellerApplication[];
2543
2685
  page?: Page;
2544
2686
  };
2545
- /** @returns {OptedApplicationResponse} */
2546
- declare function OptedApplicationResponse(): OptedApplicationResponse;
2547
- type OptedApplicationResponse = {
2687
+ /** @returns {OptedApplicationResponseSchema} */
2688
+ declare function OptedApplicationResponseSchema(): OptedApplicationResponseSchema;
2689
+ type OptedApplicationResponseSchema = {
2548
2690
  /**
2549
2691
  * - Name of the other seller's sales channel
2550
2692
  */
@@ -2656,9 +2798,9 @@ type OptOutInventory = {
2656
2798
  */
2657
2799
  company: number[];
2658
2800
  };
2659
- /** @returns {TokenResponse} */
2660
- declare function TokenResponse(): TokenResponse;
2661
- type TokenResponse = {
2801
+ /** @returns {TokenResponseSchema} */
2802
+ declare function TokenResponseSchema(): TokenResponseSchema;
2803
+ type TokenResponseSchema = {
2662
2804
  tokens?: Tokens;
2663
2805
  /**
2664
2806
  * - The unique identifier (24-digit Mongo Object ID)
@@ -3220,14 +3362,14 @@ type OrderFeature = {
3220
3362
  */
3221
3363
  buy_again?: boolean;
3222
3364
  };
3223
- /** @returns {AppFeatureRequest} */
3224
- declare function AppFeatureRequest(): AppFeatureRequest;
3225
- type AppFeatureRequest = {
3365
+ /** @returns {AppFeatureRequestSchema} */
3366
+ declare function AppFeatureRequestSchema(): AppFeatureRequestSchema;
3367
+ type AppFeatureRequestSchema = {
3226
3368
  feature?: AppFeature;
3227
3369
  };
3228
- /** @returns {AppFeatureResponse} */
3229
- declare function AppFeatureResponse(): AppFeatureResponse;
3230
- type AppFeatureResponse = {
3370
+ /** @returns {AppFeatureResponseSchema} */
3371
+ declare function AppFeatureResponseSchema(): AppFeatureResponseSchema;
3372
+ type AppFeatureResponseSchema = {
3231
3373
  feature?: AppFeature;
3232
3374
  };
3233
3375
  /** @returns {Currency} */
@@ -3527,9 +3669,9 @@ type TokenSchema = {
3527
3669
  */
3528
3670
  created_at?: string;
3529
3671
  };
3530
- /** @returns {InvalidPayloadRequest} */
3531
- declare function InvalidPayloadRequest(): InvalidPayloadRequest;
3532
- type InvalidPayloadRequest = {
3672
+ /** @returns {InvalidPayloadRequestSchema} */
3673
+ declare function InvalidPayloadRequestSchema(): InvalidPayloadRequestSchema;
3674
+ type InvalidPayloadRequestSchema = {
3533
3675
  /**
3534
3676
  * - Error message when request body payload is improper
3535
3677
  */
@@ -3904,14 +4046,14 @@ type ApplicationDetail = {
3904
4046
  slug?: string;
3905
4047
  company_id?: number;
3906
4048
  };
3907
- /** @returns {CurrenciesResponse} */
3908
- declare function CurrenciesResponse(): CurrenciesResponse;
3909
- type CurrenciesResponse = {
4049
+ /** @returns {CurrenciesResponseSchema} */
4050
+ declare function CurrenciesResponseSchema(): CurrenciesResponseSchema;
4051
+ type CurrenciesResponseSchema = {
3910
4052
  items?: Currency[];
3911
4053
  };
3912
- /** @returns {AppCurrencyResponse} */
3913
- declare function AppCurrencyResponse(): AppCurrencyResponse;
3914
- type AppCurrencyResponse = {
4054
+ /** @returns {AppCurrencyResponseSchema} */
4055
+ declare function AppCurrencyResponseSchema(): AppCurrencyResponseSchema;
4056
+ type AppCurrencyResponseSchema = {
3915
4057
  /**
3916
4058
  * - The unique identifier (24-digit Mongo Object ID)
3917
4059
  * of the currency configuration supported by the application
@@ -4059,9 +4201,26 @@ type OrderingStores = {
4059
4201
  */
4060
4202
  __v?: number;
4061
4203
  };
4062
- /** @returns {OrderingStoresResponse} */
4063
- declare function OrderingStoresResponse(): OrderingStoresResponse;
4064
- type OrderingStoresResponse = {
4204
+ /** @returns {OrderingStoresResponseSchema} */
4205
+ declare function OrderingStoresResponseSchema(): OrderingStoresResponseSchema;
4206
+ type OrderingStoresResponseSchema = {
4065
4207
  page?: Page;
4066
4208
  items?: OrderingStore[];
4067
4209
  };
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
+ };