@gofynd/fdk-client-javascript 1.0.2 → 1.0.4

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 (346) hide show
  1. package/README.md +31 -2
  2. package/index.d.ts +4 -4
  3. package/index.js +9 -10
  4. package/package.json +14 -14
  5. package/sdk/APIClient.d.ts +11 -0
  6. package/sdk/APIClient.js +35 -0
  7. package/sdk/Client.d.ts +6 -0
  8. package/sdk/Client.js +17 -0
  9. package/sdk/Config.d.ts +9 -0
  10. package/sdk/Config.js +17 -0
  11. package/sdk/application/Cart/CartApplicationClient.d.ts +243 -243
  12. package/sdk/application/Cart/CartApplicationClient.js +595 -594
  13. package/sdk/application/Cart/CartApplicationModel.d.ts +64 -63
  14. package/sdk/application/Cart/CartApplicationModel.js +490 -885
  15. package/sdk/application/Cart/CartApplicationValidator.d.ts +17 -17
  16. package/sdk/application/Cart/CartApplicationValidator.js +98 -98
  17. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +358 -358
  18. package/sdk/application/Catalog/CatalogApplicationClient.js +1079 -1078
  19. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +90 -90
  20. package/sdk/application/Catalog/CatalogApplicationModel.js +683 -1249
  21. package/sdk/application/Catalog/CatalogApplicationValidator.d.ts +19 -19
  22. package/sdk/application/Catalog/CatalogApplicationValidator.js +110 -110
  23. package/sdk/application/Common/CommonApplicationClient.d.ts +13 -13
  24. package/sdk/application/Common/CommonApplicationClient.js +43 -42
  25. package/sdk/application/Common/CommonApplicationModel.d.ts +12 -12
  26. package/sdk/application/Common/CommonApplicationModel.js +83 -160
  27. package/sdk/application/Common/CommonApplicationValidator.d.ts +1 -1
  28. package/sdk/application/Common/CommonApplicationValidator.js +6 -6
  29. package/sdk/application/Communication/CommunicationApplicationClient.d.ts +11 -11
  30. package/sdk/application/Communication/CommunicationApplicationClient.js +32 -31
  31. package/sdk/application/Communication/CommunicationApplicationModel.d.ts +6 -6
  32. package/sdk/application/Communication/CommunicationApplicationModel.js +38 -83
  33. package/sdk/application/Communication/CommunicationApplicationValidator.d.ts +1 -1
  34. package/sdk/application/Communication/CommunicationApplicationValidator.js +4 -4
  35. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +116 -116
  36. package/sdk/application/Configuration/ConfigurationApplicationClient.js +350 -349
  37. package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +85 -85
  38. package/sdk/application/Configuration/ConfigurationApplicationModel.js +480 -851
  39. package/sdk/application/Configuration/ConfigurationApplicationValidator.d.ts +8 -8
  40. package/sdk/application/Configuration/ConfigurationApplicationValidator.js +33 -33
  41. package/sdk/application/Content/ContentApplicationClient.d.ts +67 -67
  42. package/sdk/application/Content/ContentApplicationClient.js +216 -215
  43. package/sdk/application/Content/ContentApplicationModel.d.ts +76 -76
  44. package/sdk/application/Content/ContentApplicationModel.js +468 -884
  45. package/sdk/application/Content/ContentApplicationValidator.d.ts +5 -5
  46. package/sdk/application/Content/ContentApplicationValidator.js +24 -24
  47. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +25 -25
  48. package/sdk/application/FileStorage/FileStorageApplicationClient.js +65 -64
  49. package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +13 -13
  50. package/sdk/application/FileStorage/FileStorageApplicationModel.js +86 -169
  51. package/sdk/application/FileStorage/FileStorageApplicationValidator.d.ts +1 -1
  52. package/sdk/application/FileStorage/FileStorageApplicationValidator.js +7 -7
  53. package/sdk/application/Lead/LeadApplicationClient.d.ts +24 -24
  54. package/sdk/application/Lead/LeadApplicationClient.js +109 -108
  55. package/sdk/application/Lead/LeadApplicationModel.d.ts +35 -35
  56. package/sdk/application/Lead/LeadApplicationModel.js +267 -474
  57. package/sdk/application/Lead/LeadApplicationValidator.d.ts +2 -2
  58. package/sdk/application/Lead/LeadApplicationValidator.js +11 -11
  59. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +31 -22
  60. package/sdk/application/Logistic/LogisticApplicationClient.js +115 -49
  61. package/sdk/application/Logistic/LogisticApplicationModel.d.ts +17 -14
  62. package/sdk/application/Logistic/LogisticApplicationModel.js +133 -201
  63. package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +3 -2
  64. package/sdk/application/Logistic/LogisticApplicationValidator.js +14 -9
  65. package/sdk/application/Order/OrderApplicationClient.d.ts +85 -85
  66. package/sdk/application/Order/OrderApplicationClient.js +247 -246
  67. package/sdk/application/Order/OrderApplicationModel.d.ts +50 -50
  68. package/sdk/application/Order/OrderApplicationModel.js +361 -656
  69. package/sdk/application/Order/OrderApplicationValidator.d.ts +7 -7
  70. package/sdk/application/Order/OrderApplicationValidator.js +28 -28
  71. package/sdk/application/Payment/PaymentApplicationClient.d.ts +318 -318
  72. package/sdk/application/Payment/PaymentApplicationClient.js +781 -780
  73. package/sdk/application/Payment/PaymentApplicationModel.d.ts +72 -72
  74. package/sdk/application/Payment/PaymentApplicationModel.js +570 -1038
  75. package/sdk/application/Payment/PaymentApplicationValidator.d.ts +28 -28
  76. package/sdk/application/Payment/PaymentApplicationValidator.js +107 -107
  77. package/sdk/application/PosCart/PosCartApplicationClient.d.ts +254 -254
  78. package/sdk/application/PosCart/PosCartApplicationClient.js +646 -645
  79. package/sdk/application/PosCart/PosCartApplicationModel.d.ts +64 -63
  80. package/sdk/application/PosCart/PosCartApplicationModel.js +476 -870
  81. package/sdk/application/PosCart/PosCartApplicationValidator.d.ts +18 -18
  82. package/sdk/application/PosCart/PosCartApplicationValidator.js +103 -103
  83. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +27 -27
  84. package/sdk/application/Rewards/RewardsApplicationClient.js +122 -121
  85. package/sdk/application/Rewards/RewardsApplicationModel.d.ts +14 -14
  86. package/sdk/application/Rewards/RewardsApplicationModel.js +96 -191
  87. package/sdk/application/Rewards/RewardsApplicationValidator.d.ts +3 -3
  88. package/sdk/application/Rewards/RewardsApplicationValidator.js +12 -12
  89. package/sdk/application/Share/ShareApplicationClient.d.ts +37 -37
  90. package/sdk/application/Share/ShareApplicationClient.js +94 -93
  91. package/sdk/application/Share/ShareApplicationModel.d.ts +8 -8
  92. package/sdk/application/Share/ShareApplicationModel.js +63 -123
  93. package/sdk/application/Share/ShareApplicationValidator.d.ts +4 -4
  94. package/sdk/application/Share/ShareApplicationValidator.js +12 -12
  95. package/sdk/application/Theme/ThemeApplicationClient.d.ts +8 -8
  96. package/sdk/application/Theme/ThemeApplicationClient.js +38 -37
  97. package/sdk/application/Theme/ThemeApplicationModel.d.ts +34 -34
  98. package/sdk/application/Theme/ThemeApplicationModel.js +190 -336
  99. package/sdk/application/Theme/ThemeApplicationValidator.d.ts +1 -1
  100. package/sdk/application/Theme/ThemeApplicationValidator.js +4 -4
  101. package/sdk/application/User/UserApplicationClient.d.ts +280 -280
  102. package/sdk/application/User/UserApplicationClient.js +619 -618
  103. package/sdk/application/User/UserApplicationModel.d.ts +79 -72
  104. package/sdk/application/User/UserApplicationModel.js +440 -689
  105. package/sdk/application/User/UserApplicationValidator.d.ts +24 -24
  106. package/sdk/application/User/UserApplicationValidator.js +89 -89
  107. package/sdk/common/AxiosHelper.js +18 -7
  108. package/sdk/constructUrl.d.ts +5 -0
  109. package/sdk/constructUrl.js +13 -0
  110. package/sdk/index.d.ts +3 -0
  111. package/sdk/index.js +5 -0
  112. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +51 -51
  113. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +182 -180
  114. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +6 -6
  115. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +21 -21
  116. package/sdk/platform/Analytics/AnalyticsPlatformClient.js +5 -4
  117. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +11 -11
  118. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +95 -178
  119. package/sdk/platform/Analytics/AnalyticsPlatformValidator.js +1 -0
  120. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +10 -10
  121. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +44 -43
  122. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +10 -10
  123. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +50 -89
  124. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -1
  125. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +7 -6
  126. package/sdk/platform/Billing/BillingPlatformClient.d.ts +60 -60
  127. package/sdk/platform/Billing/BillingPlatformClient.js +184 -183
  128. package/sdk/platform/Billing/BillingPlatformModel.d.ts +40 -40
  129. package/sdk/platform/Billing/BillingPlatformModel.js +342 -668
  130. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +8 -8
  131. package/sdk/platform/Billing/BillingPlatformValidator.js +26 -25
  132. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +192 -165
  133. package/sdk/platform/Cart/CartPlatformApplicationClient.js +686 -510
  134. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +14 -11
  135. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +77 -61
  136. package/sdk/platform/Cart/CartPlatformModel.d.ts +84 -83
  137. package/sdk/platform/Cart/CartPlatformModel.js +676 -1206
  138. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +632 -632
  139. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +1558 -1556
  140. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +40 -40
  141. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +175 -175
  142. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +688 -688
  143. package/sdk/platform/Catalog/CatalogPlatformClient.js +1556 -1559
  144. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +291 -291
  145. package/sdk/platform/Catalog/CatalogPlatformModel.js +2133 -3910
  146. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +66 -66
  147. package/sdk/platform/Catalog/CatalogPlatformValidator.js +229 -228
  148. package/sdk/platform/Common/CommonPlatformClient.d.ts +12 -12
  149. package/sdk/platform/Common/CommonPlatformClient.js +40 -51
  150. package/sdk/platform/Common/CommonPlatformModel.d.ts +12 -12
  151. package/sdk/platform/Common/CommonPlatformModel.js +83 -160
  152. package/sdk/platform/Common/CommonPlatformValidator.d.ts +1 -1
  153. package/sdk/platform/Common/CommonPlatformValidator.js +7 -6
  154. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +326 -326
  155. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +945 -943
  156. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +30 -30
  157. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +88 -88
  158. package/sdk/platform/Communication/CommunicationPlatformClient.js +4 -3
  159. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +67 -67
  160. package/sdk/platform/Communication/CommunicationPlatformModel.js +522 -974
  161. package/sdk/platform/Communication/CommunicationPlatformValidator.js +1 -0
  162. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +55 -55
  163. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +217 -216
  164. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +27 -27
  165. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +279 -542
  166. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +7 -7
  167. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +25 -24
  168. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +163 -153
  169. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +617 -552
  170. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +22 -21
  171. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +70 -64
  172. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +125 -125
  173. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +348 -347
  174. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +148 -146
  175. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +854 -1508
  176. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +9 -9
  177. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +39 -38
  178. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +524 -534
  179. package/sdk/platform/Content/ContentPlatformApplicationClient.js +1287 -1346
  180. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +49 -50
  181. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +153 -159
  182. package/sdk/platform/Content/ContentPlatformModel.d.ts +78 -78
  183. package/sdk/platform/Content/ContentPlatformModel.js +485 -907
  184. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +65 -65
  185. package/sdk/platform/Discount/DiscountPlatformClient.js +219 -218
  186. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +7 -7
  187. package/sdk/platform/Discount/DiscountPlatformModel.js +60 -121
  188. package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +6 -6
  189. package/sdk/platform/Discount/DiscountPlatformValidator.js +30 -29
  190. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +25 -25
  191. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +83 -61
  192. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +1 -1
  193. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +9 -9
  194. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +53 -53
  195. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +147 -125
  196. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +13 -13
  197. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +86 -169
  198. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +3 -3
  199. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +12 -11
  200. package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +63 -63
  201. package/sdk/platform/Inventory/InventoryPlatformClient.js +231 -230
  202. package/sdk/platform/Inventory/InventoryPlatformModel.d.ts +30 -30
  203. package/sdk/platform/Inventory/InventoryPlatformModel.js +497 -964
  204. package/sdk/platform/Inventory/InventoryPlatformValidator.d.ts +7 -7
  205. package/sdk/platform/Inventory/InventoryPlatformValidator.js +29 -28
  206. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +73 -73
  207. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +203 -201
  208. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +7 -7
  209. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +29 -29
  210. package/sdk/platform/Lead/LeadPlatformClient.d.ts +80 -80
  211. package/sdk/platform/Lead/LeadPlatformClient.js +215 -214
  212. package/sdk/platform/Lead/LeadPlatformModel.d.ts +35 -35
  213. package/sdk/platform/Lead/LeadPlatformModel.js +267 -474
  214. package/sdk/platform/Lead/LeadPlatformValidator.d.ts +6 -6
  215. package/sdk/platform/Lead/LeadPlatformValidator.js +25 -24
  216. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +10 -10
  217. package/sdk/platform/Order/OrderPlatformApplicationClient.js +68 -66
  218. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +1 -1
  219. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +7 -7
  220. package/sdk/platform/Order/OrderPlatformClient.d.ts +357 -357
  221. package/sdk/platform/Order/OrderPlatformClient.js +1046 -1033
  222. package/sdk/platform/Order/OrderPlatformModel.d.ts +198 -196
  223. package/sdk/platform/Order/OrderPlatformModel.js +1575 -2861
  224. package/sdk/platform/Order/OrderPlatformValidator.d.ts +32 -32
  225. package/sdk/platform/Order/OrderPlatformValidator.js +161 -160
  226. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +3 -1
  227. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +1 -1
  228. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +1 -1
  229. package/sdk/platform/Partner/PartnerPlatformModel.js +10 -26
  230. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +58 -58
  231. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +178 -178
  232. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +6 -6
  233. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +24 -24
  234. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +42 -42
  235. package/sdk/platform/Payment/PaymentPlatformClient.js +156 -155
  236. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +27 -27
  237. package/sdk/platform/Payment/PaymentPlatformModel.js +222 -410
  238. package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +4 -4
  239. package/sdk/platform/Payment/PaymentPlatformValidator.js +22 -21
  240. package/sdk/platform/PlatformApplicationClient.d.ts +1496 -10325
  241. package/sdk/platform/PlatformApplicationClient.js +1584 -13899
  242. package/sdk/platform/PlatformClient.d.ts +7972 -7888
  243. package/sdk/platform/PlatformClient.js +8678 -10107
  244. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +85 -85
  245. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +299 -280
  246. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +8 -8
  247. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +35 -35
  248. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +15 -15
  249. package/sdk/platform/Rewards/RewardsPlatformModel.js +92 -194
  250. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +10 -10
  251. package/sdk/platform/Share/SharePlatformApplicationClient.js +62 -60
  252. package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +1 -1
  253. package/sdk/platform/Share/SharePlatformApplicationValidator.js +7 -7
  254. package/sdk/platform/Share/SharePlatformModel.d.ts +8 -8
  255. package/sdk/platform/Share/SharePlatformModel.js +60 -118
  256. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +132 -132
  257. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +314 -312
  258. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +15 -15
  259. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +45 -45
  260. package/sdk/platform/Theme/ThemePlatformModel.d.ts +34 -34
  261. package/sdk/platform/Theme/ThemePlatformModel.js +190 -336
  262. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +136 -69
  263. package/sdk/platform/User/UserPlatformApplicationClient.js +507 -166
  264. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +12 -7
  265. package/sdk/platform/User/UserPlatformApplicationValidator.js +62 -24
  266. package/sdk/platform/User/UserPlatformModel.d.ts +79 -72
  267. package/sdk/platform/User/UserPlatformModel.js +440 -689
  268. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +31 -31
  269. package/sdk/platform/Webhook/WebhookPlatformClient.js +91 -90
  270. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +7 -7
  271. package/sdk/platform/Webhook/WebhookPlatformModel.js +68 -136
  272. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +3 -3
  273. package/sdk/platform/Webhook/WebhookPlatformValidator.js +15 -14
  274. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +13 -13
  275. package/sdk/public/Configuration/ConfigurationPublicClient.js +40 -38
  276. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +12 -12
  277. package/sdk/public/Configuration/ConfigurationPublicModel.js +85 -162
  278. package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +1 -1
  279. package/sdk/public/Configuration/ConfigurationPublicValidator.js +6 -6
  280. package/sdk/public/Inventory/InventoryPublicClient.d.ts +34 -34
  281. package/sdk/public/Inventory/InventoryPublicClient.js +115 -113
  282. package/sdk/public/Inventory/InventoryPublicModel.d.ts +10 -10
  283. package/sdk/public/Inventory/InventoryPublicModel.js +119 -245
  284. package/sdk/public/Inventory/InventoryPublicValidator.d.ts +3 -3
  285. package/sdk/public/Inventory/InventoryPublicValidator.js +15 -15
  286. package/sdk/public/Webhook/WebhookPublicClient.js +2 -0
  287. package/sdk/public/Webhook/WebhookPublicModel.d.ts +7 -7
  288. package/sdk/public/Webhook/WebhookPublicModel.js +68 -136
  289. package/.github/workflows/on_create_release.yml +0 -23
  290. package/.github/workflows/on_merge_main.yml +0 -38
  291. package/.github/workflows/on_pull_request.yml +0 -35
  292. package/.prettierrc +0 -5
  293. package/documentation/application/CART.md +0 -7339
  294. package/documentation/application/CATALOG.md +0 -9597
  295. package/documentation/application/COMMON.md +0 -452
  296. package/documentation/application/COMMUNICATION.md +0 -467
  297. package/documentation/application/CONFIGURATION.md +0 -2906
  298. package/documentation/application/CONTENT.md +0 -3351
  299. package/documentation/application/FILESTORAGE.md +0 -578
  300. package/documentation/application/LEAD.md +0 -1895
  301. package/documentation/application/LOGISTIC.md +0 -765
  302. package/documentation/application/ORDER.md +0 -3432
  303. package/documentation/application/PAYMENT.md +0 -5221
  304. package/documentation/application/POSCART.md +0 -7938
  305. package/documentation/application/README.md +0 -21
  306. package/documentation/application/REWARDS.md +0 -708
  307. package/documentation/application/SHARE.md +0 -733
  308. package/documentation/application/THEME.md +0 -5800
  309. package/documentation/application/USER.md +0 -4335
  310. package/documentation/platform/ANALYTICS.md +0 -1154
  311. package/documentation/platform/AUDITTRAIL.md +0 -576
  312. package/documentation/platform/BILLING.md +0 -2400
  313. package/documentation/platform/CART.md +0 -5559
  314. package/documentation/platform/CATALOG.md +0 -23261
  315. package/documentation/platform/COMMON.md +0 -452
  316. package/documentation/platform/COMMUNICATION.md +0 -5718
  317. package/documentation/platform/COMPANYPROFILE.md +0 -2031
  318. package/documentation/platform/CONFIGURATION.md +0 -7339
  319. package/documentation/platform/CONTENT.md +0 -9098
  320. package/documentation/platform/DISCOUNT.md +0 -863
  321. package/documentation/platform/FILESTORAGE.md +0 -1081
  322. package/documentation/platform/INVENTORY.md +0 -1779
  323. package/documentation/platform/LEAD.md +0 -4740
  324. package/documentation/platform/ORDER.md +0 -8486
  325. package/documentation/platform/PARTNER.md +0 -220
  326. package/documentation/platform/PAYMENT.md +0 -3448
  327. package/documentation/platform/README.md +0 -27
  328. package/documentation/platform/REWARDS.md +0 -1083
  329. package/documentation/platform/SHARE.md +0 -606
  330. package/documentation/platform/THEME.md +0 -35729
  331. package/documentation/platform/USER.md +0 -2319
  332. package/documentation/platform/WEBHOOK.md +0 -591
  333. package/documentation/public/CONFIGURATION.md +0 -452
  334. package/documentation/public/INVENTORY.md +0 -690
  335. package/documentation/public/WEBHOOK.md +0 -352
  336. package/jest.config.d.ts +0 -4
  337. package/jest.config.js +0 -6
  338. package/tests/application/catalog.spec.js +0 -47
  339. package/tests/common/action-url.spec.js +0 -35
  340. package/tests/common/schema/action-url.json +0 -178
  341. package/tests/common/schema/url-action.json +0 -683
  342. package/tests/common/url-action.spec.js +0 -48
  343. package/tests/helpers/cookie.helper.js +0 -31
  344. package/tests/helpers/oauth.helper.js +0 -43
  345. package/tests/platform/catalog.spec.js +0 -49
  346. package/tests/public/location.spec.js +0 -39
@@ -1,326 +1,326 @@
1
1
  export = CatalogModel;
2
2
  declare class CatalogModel {
3
- static Page(): any;
4
- static GetSearchWordsData(): any;
5
- static GetSearchWordsDetailResponse(): any;
6
- static ErrorResponse(): any;
7
- static SearchKeywordResult(): any;
8
- static CreateSearchKeyword(): any;
9
- static DeleteResponse(): any;
10
- static GetSearchWordsResponse(): any;
11
- static GetAutocompleteWordsData(): any;
12
- static GetAutocompleteWordsResponse(): any;
13
- static Media(): any;
14
- static AutocompletePageAction(): any;
15
- static AutocompleteAction(): any;
16
- static AutocompleteResult(): any;
17
- static CreateAutocompleteKeyword(): any;
18
- static CreateAutocompleteWordsResponse(): any;
19
- static ProductBundleItem(): any;
20
- static ProductBundleRequest(): any;
21
- static GetProductBundleCreateResponse(): any;
22
- static GetProductBundleListingResponse(): any;
23
- static Price(): any;
24
- static LimitedProductData(): any;
25
- static Size(): any;
26
- static GetProducts(): any;
27
- static GetProductBundleResponse(): any;
28
- static ProductBundleUpdateRequest(): any;
29
- static Meta(): any;
30
- static Guide(): any;
31
- static ValidateSizeGuide(): any;
32
- static SuccessResponse(): any;
33
- static ListSizeGuide(): any;
34
- static SizeGuideResponse(): any;
35
- static SEOData(): any;
36
- static MOQData(): any;
37
- static OwnerAppItemResponse(): any;
38
- static MetaFields(): any;
39
- static ApplicationItemSEO(): any;
40
- static ApplicationItemMOQ(): any;
3
+ static Action(): any;
4
+ static ActionPage(): any;
5
+ static AllowSingleRequest(): any;
6
+ static AllSizes(): any;
7
+ static AppCatalogConfiguration(): any;
8
+ static AppConfiguration(): any;
9
+ static AppConfigurationDetail(): any;
10
+ static AppConfigurationsSort(): any;
11
+ static ApplicationBrandJson(): any;
12
+ static ApplicationCategoryJson(): any;
13
+ static ApplicationDepartment(): any;
14
+ static ApplicationDepartmentJson(): any;
15
+ static ApplicationDepartmentListingResponse(): any;
41
16
  static ApplicationItemMeta(): any;
42
- static SuccessResponse1(): any;
43
- static GetConfigMetadataResponse(): any;
17
+ static ApplicationItemMOQ(): any;
18
+ static ApplicationItemSEO(): any;
19
+ static ApplicationProductListingResponse(): any;
20
+ static ApplicationStoreJson(): any;
21
+ static ArticleAssignment(): any;
22
+ static ArticleAssignment1(): any;
23
+ static ArticleQuery(): any;
24
+ static ArticleStoreResponse(): any;
25
+ static AssignStore(): any;
26
+ static AssignStoreArticle(): any;
44
27
  static AttributeDetailsGroup(): any;
45
- static AppConfigurationDetail(): any;
28
+ static AttributeMaster(): any;
29
+ static AttributeMasterDetails(): any;
30
+ static AttributeMasterFilter(): any;
31
+ static AttributeMasterMandatoryDetails(): any;
32
+ static AttributeMasterMeta(): any;
33
+ static AttributeMasterSerializer(): any;
34
+ static AttributeSchemaRange(): any;
35
+ static AutocompleteAction(): any;
36
+ static AutocompletePageAction(): any;
37
+ static AutocompleteResult(): any;
38
+ static BannerImage(): any;
39
+ static Brand(): any;
40
+ static BrandItem(): any;
41
+ static BrandListingResponse(): any;
42
+ static BrandMeta(): any;
43
+ static BrandMeta1(): any;
44
+ static BulkAssetResponse(): any;
45
+ static BulkHsnResponse(): any;
46
+ static BulkHsnUpsert(): any;
47
+ static BulkInventoryGet(): any;
48
+ static BulkInventoryGetItems(): any;
49
+ static BulkJob(): any;
50
+ static BulkProductRequest(): any;
51
+ static BulkResponse(): any;
52
+ static CatalogInsightBrand(): any;
53
+ static CatalogInsightItem(): any;
54
+ static CatalogInsightResponse(): any;
55
+ static CategoriesResponse(): any;
56
+ static Category(): any;
57
+ static CategoryCreateResponse(): any;
58
+ static CategoryItems(): any;
59
+ static CategoryListingResponse(): any;
60
+ static CategoryMapping(): any;
61
+ static CategoryMappingValues(): any;
62
+ static CategoryRequestBody(): any;
63
+ static CategoryResponse(): any;
64
+ static CategoryUpdateResponse(): any;
65
+ static Child(): any;
66
+ static CollectionBadge(): any;
67
+ static CollectionBanner(): any;
68
+ static CollectionCreateResponse(): any;
69
+ static CollectionDetailResponse(): any;
70
+ static CollectionImage(): any;
71
+ static CollectionItem(): any;
72
+ static CollectionItemUpdate(): any;
73
+ static CollectionListingFilter(): any;
74
+ static CollectionListingFilterTag(): any;
75
+ static CollectionListingFilterType(): any;
76
+ static CollectionQuery(): any;
77
+ static CollectionSchedule(): any;
78
+ static CompanyBrandDetail(): any;
79
+ static CompanyMeta(): any;
80
+ static CompanyMeta1(): any;
81
+ static CompanyOptIn(): any;
46
82
  static ConfigErrorResponse(): any;
47
- static PageResponseType(): any;
48
- static GetConfigResponse(): any;
49
83
  static ConfigSuccessResponse(): any;
50
- static AppConfigurationsSort(): any;
51
- static AllowSingleRequest(): any;
52
- static DefaultKeyRequest(): any;
53
- static MetaDataListingFilterMetaResponse(): any;
54
- static MetaDataListingFilterResponse(): any;
55
- static MetaDataListingSortMetaResponse(): any;
56
- static MetaDataListingSortResponse(): any;
57
- static MetaDataListingResponse(): any;
58
- static GetCatalogConfigurationDetailsProduct(): any;
59
- static GetCatalogConfigurationMetaData(): any;
60
84
  static ConfigurationBucketPoints(): any;
61
- static ConfigurationListingFilterValue(): any;
62
- static ConfigurationListingFilterConfig(): any;
85
+ static ConfigurationListing(): any;
63
86
  static ConfigurationListingFilter(): any;
64
- static ConfigurationListingSortConfig(): any;
87
+ static ConfigurationListingFilterConfig(): any;
88
+ static ConfigurationListingFilterValue(): any;
65
89
  static ConfigurationListingSort(): any;
66
- static ConfigurationListing(): any;
67
- static ProductSize(): any;
68
- static ConfigurationProductVariantConfig(): any;
69
- static ConfigurationProductVariant(): any;
90
+ static ConfigurationListingSortConfig(): any;
91
+ static ConfigurationProduct(): any;
70
92
  static ConfigurationProductConfig(): any;
71
93
  static ConfigurationProductSimilar(): any;
72
- static ConfigurationProduct(): any;
73
- static AppConfiguration(): any;
74
- static AppCatalogConfiguration(): any;
75
- static GetAppCatalogConfiguration(): any;
76
- static GetCatalogConfigurationDetailsSchemaListing(): any;
77
- static EntityConfiguration(): any;
78
- static GetAppCatalogEntityConfiguration(): any;
79
- static ProductSortOn(): any;
80
- static ProductFiltersValue(): any;
81
- static ProductFiltersKey(): any;
82
- static ProductFilters(): any;
83
- static GetCollectionQueryOptionResponse(): any;
84
- static CollectionBadge(): any;
85
- static UserInfo(): any;
86
- static NextSchedule(): any;
87
- static CollectionSchedule(): any;
88
- static CollectionImage(): any;
89
- static CollectionBanner(): any;
90
- static CollectionQuery(): any;
91
- static SeoDetail(): any;
94
+ static ConfigurationProductVariant(): any;
95
+ static ConfigurationProductVariantConfig(): any;
96
+ static CreateAutocompleteKeyword(): any;
97
+ static CreateAutocompleteWordsResponse(): any;
92
98
  static CreateCollection(): any;
93
- static BannerImage(): any;
94
- static ImageUrls(): any;
95
- static CollectionCreateResponse(): any;
96
- static Media1(): any;
97
- static ActionPage(): any;
98
- static Action(): any;
99
- static GetCollectionDetailNest(): any;
100
- static CollectionListingFilterType(): any;
101
- static CollectionListingFilterTag(): any;
102
- static CollectionListingFilter(): any;
103
- static GetCollectionListingResponse(): any;
104
- static CollectionDetailResponse(): any;
105
- static UpdateCollection(): any;
106
- static CollectionItem(): any;
107
- static CollectionItemUpdate(): any;
108
- static UpdatedResponse(): any;
109
- static ProductDetailAttribute(): any;
110
- static ProductDetailGroupedAttribute(): any;
111
- static ProductBrand(): any;
112
- static Price1(): any;
113
- static ProductListingPrice(): any;
114
- static ProductListingDetail(): any;
115
- static GetCollectionItemsResponse(): any;
116
- static CatalogInsightBrand(): any;
117
- static CatalogInsightItem(): any;
118
- static CatalogInsightResponse(): any;
99
+ static CreateSearchKeyword(): any;
119
100
  static CrossSellingData(): any;
120
101
  static CrossSellingResponse(): any;
121
- static OptInPostRequest(): any;
122
- static CompanyOptIn(): any;
123
- static GetOptInPlatform(): any;
124
- static OptinCompanyDetail(): any;
125
- static CompanyBrandDetail(): any;
126
- static OptinCompanyBrandDetailsView(): any;
127
- static OptinCompanyMetrics(): any;
128
- static StoreDetail(): any;
129
- static OptinStoreDetails(): any;
130
- static AttributeMasterDetails(): any;
131
- static AttributeSchemaRange(): any;
132
- static AttributeMaster(): any;
133
- static AttributeMasterMandatoryDetails(): any;
134
- static AttributeMasterMeta(): any;
135
- static AttributeMasterFilter(): any;
136
- static GenderDetail(): any;
137
- static CategoriesResponse(): any;
138
- static ProdcutTemplateCategoriesResponse(): any;
139
- static PTErrorResponse(): any;
140
- static DepartmentCreateUpdate(): any;
141
- static DepartmentCreateResponse(): any;
102
+ static CustomOrder(): any;
103
+ static DateMeta(): any;
104
+ static DefaultKeyRequest(): any;
105
+ static DeleteResponse(): any;
106
+ static Department(): any;
107
+ static DepartmentCategoryTree(): any;
142
108
  static DepartmentCreateErrorResponse(): any;
143
- static UserSerializer(): any;
144
- static GetDepartment(): any;
145
- static DepartmentsResponse(): any;
109
+ static DepartmentCreateResponse(): any;
110
+ static DepartmentCreateUpdate(): any;
146
111
  static DepartmentErrorResponse(): any;
147
- static UserDetail(): any;
112
+ static DepartmentIdentifier(): any;
148
113
  static DepartmentModel(): any;
149
- static ProductTemplate(): any;
150
- static TemplatesResponse(): any;
151
- static TemplateDetails(): any;
152
- static Properties(): any;
153
- static GlobalValidation(): any;
154
- static TemplateValidationData(): any;
155
- static TemplatesValidationResponse(): any;
156
- static InventoryValidationResponse(): any;
157
- static HSNData(): any;
158
- static HSNCodesResponse(): any;
159
- static UserInfo1(): any;
160
- static ProductTemplateExportResponse(): any;
161
- static ProductDownloadsResponse(): any;
162
- static ProductTemplateExportFilterRequest(): any;
163
- static ProductTemplateDownloadsExport(): any;
164
- static ProductConfigurationDownloads(): any;
165
- static Media2(): any;
166
- static Hierarchy(): any;
167
- static CategoryMappingValues(): any;
168
- static CategoryMapping(): any;
169
- static CategoryRequestBody(): any;
170
- static CategoryCreateResponse(): any;
171
- static Category(): any;
172
- static CategoryResponse(): any;
173
- static SingleCategoryResponse(): any;
174
- static CategoryUpdateResponse(): any;
175
- static ReturnConfig(): any;
176
- static NetQuantity(): any;
177
- static TeaserTag(): any;
178
- static ProductPublish(): any;
179
- static Trader(): any;
180
- static TaxIdentifier(): any;
181
- static CustomOrder(): any;
182
- static ProductCreateUpdateSchemaV2(): any;
183
- static ReturnConfigResponse(): any;
184
- static NetQuantityResponse(): any;
185
- static Image(): any;
186
- static Logo(): any;
187
- static Brand(): any;
188
- static ProductPublish1(): any;
189
- static VerifiedBy(): any;
190
- static ProductSchemaV2(): any;
191
- static ProductListingResponseV2(): any;
192
- static ProductVariants(): any;
193
- static ProductVariantsResponse(): any;
194
- static AttributeMasterSerializer(): any;
195
- static ProductAttributesResponse(): any;
196
- static SingleProductResponse(): any;
197
- static ValidateIdentifier(): any;
198
- static AllSizes(): any;
199
- static GetAllSizes(): any;
200
- static ValidateProduct(): any;
201
- static ProductPublished(): any;
202
- static Product(): any;
203
- static ProductListingResponse(): any;
204
- static BulkJob(): any;
205
- static BulkResponse(): any;
206
- static UserDetail1(): any;
207
- static ProductBulkRequest(): any;
208
- static ProductBulkRequestList(): any;
209
- static BulkProductRequest(): any;
210
- static ProductTagsViewResponse(): any;
211
- static ProductBulkAssets(): any;
212
- static UserCommon(): any;
213
- static Items(): any;
214
- static BulkAssetResponse(): any;
215
- static ProductSizeDeleteDataResponse(): any;
216
- static ProductSizeDeleteResponse(): any;
217
- static SetSize(): any;
218
- static SizeDistribution(): any;
219
- static InventorySet(): any;
220
- static GTIN(): any;
221
- static InvSize(): any;
222
- static ItemQuery(): any;
223
- static InventoryRequest(): any;
224
- static InventoryResponse(): any;
225
- static InventoryResponsePaginated(): any;
226
- static ReturnConfig1(): any;
227
- static ManufacturerResponse(): any;
228
- static CompanyMeta(): any;
229
- static StoreMeta(): any;
230
- static BrandMeta(): any;
231
- static PriceMeta(): any;
232
- static WeightResponse(): any;
233
- static Trader1(): any;
234
- static DimensionResponse(): any;
235
- static QuantityBase(): any;
236
- static Quantities(): any;
237
- static InventorySellerResponse(): any;
238
- static InventorySellerIdentifierResponsePaginated(): any;
239
- static DateMeta(): any;
240
- static ReturnConfig2(): any;
241
- static ManufacturerResponse1(): any;
242
- static CompanyMeta1(): any;
243
- static ArticleStoreResponse(): any;
244
- static BrandMeta1(): any;
245
- static PriceArticle(): any;
246
- static WeightResponse1(): any;
247
- static Trader2(): any;
114
+ static DepartmentResponse(): any;
115
+ static DepartmentsResponse(): any;
116
+ static DimensionResponse(): any;
248
117
  static DimensionResponse1(): any;
249
- static Quantity(): any;
250
- static QuantitiesArticle(): any;
118
+ static Document(): any;
119
+ static EntityConfiguration(): any;
120
+ static ErrorResponse(): any;
121
+ static FilerList(): any;
122
+ static GenderDetail(): any;
123
+ static GetAddressSerializer(): any;
124
+ static GetAllSizes(): any;
125
+ static GetAppCatalogConfiguration(): any;
126
+ static GetAppCatalogEntityConfiguration(): any;
127
+ static GetAutocompleteWordsData(): any;
128
+ static GetAutocompleteWordsResponse(): any;
129
+ static GetCatalogConfigurationDetailsProduct(): any;
130
+ static GetCatalogConfigurationDetailsSchemaListing(): any;
131
+ static GetCatalogConfigurationMetaData(): any;
132
+ static GetCollectionDetailNest(): any;
133
+ static GetCollectionItemsResponse(): any;
134
+ static GetCollectionListingResponse(): any;
135
+ static GetCollectionQueryOptionResponse(): any;
136
+ static GetCompanySerializer(): any;
137
+ static GetConfigMetadataResponse(): any;
138
+ static GetConfigResponse(): any;
139
+ static GetDepartment(): any;
251
140
  static GetInventories(): any;
252
141
  static GetInventoriesResponse(): any;
253
- static BulkInventoryGetItems(): any;
254
- static BulkInventoryGet(): any;
255
- static InventoryJobPayload(): any;
142
+ static GetLocationSerializer(): any;
143
+ static GetOptInPlatform(): any;
144
+ static GetProductBundleCreateResponse(): any;
145
+ static GetProductBundleListingResponse(): any;
146
+ static GetProductBundleResponse(): any;
147
+ static GetProducts(): any;
148
+ static GetSearchWordsData(): any;
149
+ static GetSearchWordsDetailResponse(): any;
150
+ static GetSearchWordsResponse(): any;
151
+ static GlobalValidation(): any;
152
+ static GTIN(): any;
153
+ static Guide(): any;
154
+ static Hierarchy(): any;
155
+ static HsnCode(): any;
156
+ static HsnCodesListingResponseSchemaV2(): any;
157
+ static HsnCodesObject(): any;
158
+ static HSNCodesResponse(): any;
159
+ static HSNData(): any;
160
+ static HSNDataInsertV2(): any;
161
+ static HsnUpsert(): any;
162
+ static Image(): any;
163
+ static ImageUrls(): any;
256
164
  static InventoryBulkRequest(): any;
257
- static InventoryExportRequest(): any;
258
- static InventoryExportResponse(): any;
259
- static InventoryExportQuantityFilter(): any;
165
+ static InventoryConfig(): any;
166
+ static InventoryCreateRequest(): any;
260
167
  static InventoryExportAdvanceOption(): any;
261
- static InventoryExportJob(): any;
262
168
  static InventoryExportFilter(): any;
263
- static InventoryCreateRequest(): any;
264
- static InventoryJobFilters(): any;
265
- static InventoryJobDetailResponse(): any;
169
+ static InventoryExportJob(): any;
266
170
  static InventoryExportJobListResponse(): any;
267
- static FilerList(): any;
268
- static InventoryConfig(): any;
171
+ static InventoryExportQuantityFilter(): any;
172
+ static InventoryExportRequest(): any;
173
+ static InventoryExportResponse(): any;
174
+ static InventoryFailedReason(): any;
175
+ static InventoryJobDetailResponse(): any;
176
+ static InventoryJobFilters(): any;
177
+ static InventoryJobPayload(): any;
178
+ static InventoryPage(): any;
269
179
  static InventoryPayload(): any;
180
+ static InventoryRequest(): any;
270
181
  static InventoryRequestSchemaV2(): any;
271
- static InventoryFailedReason(): any;
182
+ static InventoryResponse(): any;
272
183
  static InventoryResponseItem(): any;
184
+ static InventoryResponsePaginated(): any;
185
+ static InventorySellerIdentifierResponsePaginated(): any;
186
+ static InventorySellerResponse(): any;
187
+ static InventorySet(): any;
188
+ static InventoryStockResponse(): any;
273
189
  static InventoryUpdateResponse(): any;
274
- static HsnCodesObject(): any;
275
- static HsnCode(): any;
276
- static HsnUpsert(): any;
277
- static BulkHsnUpsert(): any;
278
- static BulkHsnResponse(): any;
190
+ static InventoryValidationResponse(): any;
191
+ static InvoiceCredSerializer(): any;
192
+ static InvoiceDetailsSerializer(): any;
193
+ static InvSize(): any;
194
+ static ItemQuery(): any;
195
+ static Items(): any;
196
+ static LimitedProductData(): any;
197
+ static ListSizeGuide(): any;
198
+ static LocationDayWiseSerializer(): any;
199
+ static LocationIntegrationType(): any;
200
+ static LocationListSerializer(): any;
201
+ static LocationManagerSerializer(): any;
202
+ static LocationTimingSerializer(): any;
203
+ static Logo(): any;
204
+ static ManufacturerResponse(): any;
205
+ static ManufacturerResponse1(): any;
206
+ static Media(): any;
207
+ static Media1(): any;
208
+ static Media2(): any;
209
+ static Meta(): any;
210
+ static MetaDataListingFilterMetaResponse(): any;
211
+ static MetaDataListingFilterResponse(): any;
212
+ static MetaDataListingResponse(): any;
213
+ static MetaDataListingSortMetaResponse(): any;
214
+ static MetaDataListingSortResponse(): any;
215
+ static MetaFields(): any;
216
+ static MOQData(): any;
217
+ static NetQuantity(): any;
218
+ static NetQuantityResponse(): any;
219
+ static NextSchedule(): any;
220
+ static OptinCompanyBrandDetailsView(): any;
221
+ static OptinCompanyDetail(): any;
222
+ static OptinCompanyMetrics(): any;
223
+ static OptInPostRequest(): any;
224
+ static OptinStoreDetails(): any;
225
+ static OwnerAppItemResponse(): any;
226
+ static Page(): any;
279
227
  static PageResponse(): any;
280
- static TaxSlab(): any;
281
- static HSNDataInsertV2(): any;
282
- static HsnCodesListingResponseSchemaV2(): any;
283
- static BrandItem(): any;
284
- static BrandListingResponse(): any;
285
- static Department(): any;
286
- static DepartmentResponse(): any;
287
- static DepartmentIdentifier(): any;
288
- static ThirdLevelChild(): any;
289
- static SecondLevelChild(): any;
290
- static Child(): any;
291
- static CategoryItems(): any;
292
- static DepartmentCategoryTree(): any;
293
- static CategoryListingResponse(): any;
294
- static ApplicationProductListingResponse(): any;
228
+ static PageResponseType(): any;
229
+ static Price(): any;
230
+ static Price1(): any;
231
+ static PriceArticle(): any;
232
+ static PriceMeta(): any;
233
+ static ProdcutTemplateCategoriesResponse(): any;
234
+ static Product(): any;
235
+ static ProductAttributesResponse(): any;
236
+ static ProductBrand(): any;
237
+ static ProductBulkAssets(): any;
238
+ static ProductBulkRequest(): any;
239
+ static ProductBulkRequestList(): any;
240
+ static ProductBundleItem(): any;
241
+ static ProductBundleRequest(): any;
242
+ static ProductBundleUpdateRequest(): any;
243
+ static ProductConfigurationDownloads(): any;
244
+ static ProductCreateUpdateSchemaV2(): any;
295
245
  static ProductDetail(): any;
296
- static InventoryPage(): any;
297
- static InventoryStockResponse(): any;
298
- static ArticleQuery(): any;
299
- static ArticleAssignment(): any;
300
- static AssignStoreArticle(): any;
301
- static AssignStore(): any;
302
- static ArticleAssignment1(): any;
246
+ static ProductDetailAttribute(): any;
247
+ static ProductDetailGroupedAttribute(): any;
248
+ static ProductDownloadsResponse(): any;
249
+ static ProductFilters(): any;
250
+ static ProductFiltersKey(): any;
251
+ static ProductFiltersValue(): any;
252
+ static ProductListingDetail(): any;
253
+ static ProductListingPrice(): any;
254
+ static ProductListingResponse(): any;
255
+ static ProductListingResponseV2(): any;
256
+ static ProductPublish(): any;
257
+ static ProductPublish1(): any;
258
+ static ProductPublished(): any;
259
+ static ProductReturnConfigSerializer(): any;
260
+ static ProductSchemaV2(): any;
261
+ static ProductSize(): any;
262
+ static ProductSizeDeleteDataResponse(): any;
263
+ static ProductSizeDeleteResponse(): any;
264
+ static ProductSortOn(): any;
265
+ static ProductTagsViewResponse(): any;
266
+ static ProductTemplate(): any;
267
+ static ProductTemplateDownloadsExport(): any;
268
+ static ProductTemplateExportFilterRequest(): any;
269
+ static ProductTemplateExportResponse(): any;
270
+ static ProductVariants(): any;
271
+ static ProductVariantsResponse(): any;
272
+ static Properties(): any;
273
+ static PTErrorResponse(): any;
274
+ static Quantities(): any;
275
+ static QuantitiesArticle(): any;
276
+ static Quantity(): any;
277
+ static QuantityBase(): any;
278
+ static ReturnConfig(): any;
279
+ static ReturnConfig1(): any;
280
+ static ReturnConfig2(): any;
281
+ static ReturnConfigResponse(): any;
282
+ static SearchKeywordResult(): any;
283
+ static SecondLevelChild(): any;
284
+ static SellerPhoneNumber(): any;
285
+ static SEOData(): any;
286
+ static SeoDetail(): any;
287
+ static SetSize(): any;
288
+ static SingleCategoryResponse(): any;
289
+ static SingleProductResponse(): any;
290
+ static Size(): any;
291
+ static SizeDistribution(): any;
292
+ static SizeGuideResponse(): any;
303
293
  static StoreAssignResponse(): any;
294
+ static StoreDetail(): any;
295
+ static StoreMeta(): any;
296
+ static SuccessResponse(): any;
297
+ static SuccessResponse1(): any;
298
+ static TaxIdentifier(): any;
299
+ static TaxSlab(): any;
300
+ static TeaserTag(): any;
301
+ static TemplateDetails(): any;
302
+ static TemplatesResponse(): any;
303
+ static TemplatesValidationResponse(): any;
304
+ static TemplateValidationData(): any;
305
+ static ThirdLevelChild(): any;
306
+ static Trader(): any;
307
+ static Trader1(): any;
308
+ static Trader2(): any;
309
+ static UpdateCollection(): any;
310
+ static UpdatedResponse(): any;
311
+ static UserCommon(): any;
312
+ static UserDetail(): any;
313
+ static UserDetail1(): any;
314
+ static UserInfo(): any;
315
+ static UserInfo1(): any;
316
+ static UserSerializer(): any;
304
317
  static UserSerializer1(): any;
305
- static LocationTimingSerializer(): any;
306
- static LocationDayWiseSerializer(): any;
307
- static GetAddressSerializer(): any;
308
318
  static UserSerializer2(): any;
309
- static GetCompanySerializer(): any;
310
- static SellerPhoneNumber(): any;
311
- static LocationManagerSerializer(): any;
312
- static InvoiceCredSerializer(): any;
313
- static InvoiceDetailsSerializer(): any;
314
- static LocationIntegrationType(): any;
315
- static ProductReturnConfigSerializer(): any;
316
- static Document(): any;
317
- static GetLocationSerializer(): any;
318
- static LocationListSerializer(): any;
319
- static ApplicationBrandJson(): any;
320
- static ApplicationCategoryJson(): any;
321
- static ApplicationDepartment(): any;
322
- static ApplicationDepartmentListingResponse(): any;
323
- static ApplicationDepartmentJson(): any;
324
- static ApplicationStoreJson(): any;
319
+ static ValidateIdentifier(): any;
320
+ static ValidateProduct(): any;
321
+ static ValidateSizeGuide(): any;
322
+ static VerifiedBy(): any;
323
+ static WeightResponse(): any;
324
+ static WeightResponse1(): any;
325
325
  static PageType(): any;
326
326
  }