@gofynd/fdk-client-javascript 1.6.4 → 3.1.0-beta.1

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 (290) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/sdk/application/ApplicationClient.d.ts +0 -2
  4. package/sdk/application/ApplicationClient.js +0 -2
  5. package/sdk/application/Cart/CartApplicationClient.d.ts +100 -80
  6. package/sdk/application/Cart/CartApplicationClient.js +257 -126
  7. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +110 -110
  8. package/sdk/application/Catalog/CatalogApplicationClient.js +122 -138
  9. package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
  10. package/sdk/application/Common/CommonApplicationClient.js +3 -3
  11. package/sdk/application/Communication/CommunicationApplicationClient.d.ts +43 -3
  12. package/sdk/application/Communication/CommunicationApplicationClient.js +190 -3
  13. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +71 -36
  14. package/sdk/application/Configuration/ConfigurationApplicationClient.js +103 -29
  15. package/sdk/application/Content/ContentApplicationClient.d.ts +61 -21
  16. package/sdk/application/Content/ContentApplicationClient.js +250 -36
  17. package/sdk/application/Lead/LeadApplicationClient.d.ts +3 -3
  18. package/sdk/application/Lead/LeadApplicationClient.js +3 -3
  19. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +106 -57
  20. package/sdk/application/Logistic/LogisticApplicationClient.js +326 -208
  21. package/sdk/application/Order/OrderApplicationClient.d.ts +44 -24
  22. package/sdk/application/Order/OrderApplicationClient.js +140 -21
  23. package/sdk/application/Payment/PaymentApplicationClient.d.ts +211 -111
  24. package/sdk/application/Payment/PaymentApplicationClient.js +610 -109
  25. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +13 -13
  26. package/sdk/application/Rewards/RewardsApplicationClient.js +7 -7
  27. package/sdk/application/Share/ShareApplicationClient.d.ts +7 -7
  28. package/sdk/application/Share/ShareApplicationClient.js +14 -14
  29. package/sdk/application/Theme/ThemeApplicationClient.d.ts +23 -3
  30. package/sdk/application/Theme/ThemeApplicationClient.js +103 -5
  31. package/sdk/application/User/UserApplicationClient.d.ts +13 -23
  32. package/sdk/application/User/UserApplicationClient.js +9 -57
  33. package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
  34. package/sdk/application/Webhook/WebhookApplicationClient.js +3 -3
  35. package/sdk/partner/Authorization/AuthorizationPartnerClient.d.ts +66 -0
  36. package/sdk/partner/Authorization/AuthorizationPartnerClient.js +431 -0
  37. package/sdk/partner/Authorization/AuthorizationPartnerModel.d.ts +231 -0
  38. package/sdk/partner/Authorization/AuthorizationPartnerModel.js +152 -0
  39. package/sdk/partner/Authorization/AuthorizationPartnerValidator.d.ts +8 -0
  40. package/sdk/partner/Authorization/AuthorizationPartnerValidator.js +39 -0
  41. package/sdk/partner/Catalog/CatalogPartnerClient.d.ts +26 -0
  42. package/sdk/partner/Catalog/CatalogPartnerClient.js +173 -0
  43. package/sdk/partner/Catalog/CatalogPartnerModel.d.ts +238 -0
  44. package/sdk/partner/Catalog/CatalogPartnerModel.js +248 -0
  45. package/sdk/partner/Catalog/CatalogPartnerValidator.d.ts +5 -0
  46. package/sdk/partner/Catalog/CatalogPartnerValidator.js +19 -0
  47. package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +0 -10
  48. package/sdk/partner/FileStorage/FileStoragePartnerClient.js +0 -75
  49. package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +1 -54
  50. package/sdk/partner/FileStorage/FileStoragePartnerModel.js +0 -43
  51. package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +0 -1
  52. package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +0 -6
  53. package/sdk/partner/Lead/LeadPartnerClient.d.ts +5 -5
  54. package/sdk/partner/Lead/LeadPartnerClient.js +4 -4
  55. package/sdk/partner/Lead/LeadPartnerModel.d.ts +100 -49
  56. package/sdk/partner/Lead/LeadPartnerModel.js +100 -74
  57. package/sdk/partner/Lead/LeadPartnerValidator.js +1 -1
  58. package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +33 -160
  59. package/sdk/partner/Logistics/LogisticsPartnerClient.js +66 -1180
  60. package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +288 -1685
  61. package/sdk/partner/Logistics/LogisticsPartnerModel.js +226 -824
  62. package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +1 -13
  63. package/sdk/partner/Logistics/LogisticsPartnerValidator.js +14 -141
  64. package/sdk/partner/PartnerClient.d.ts +6 -0
  65. package/sdk/partner/PartnerClient.js +9 -0
  66. package/sdk/partner/Payment/PaymentPartnerClient.d.ts +116 -0
  67. package/sdk/partner/Payment/PaymentPartnerClient.js +857 -0
  68. package/sdk/partner/Payment/PaymentPartnerModel.d.ts +388 -0
  69. package/sdk/partner/Payment/PaymentPartnerModel.js +442 -0
  70. package/sdk/partner/Payment/PaymentPartnerValidator.d.ts +14 -0
  71. package/sdk/partner/Payment/PaymentPartnerValidator.js +74 -0
  72. package/sdk/partner/Theme/ThemePartnerClient.d.ts +63 -21
  73. package/sdk/partner/Theme/ThemePartnerClient.js +396 -71
  74. package/sdk/partner/Theme/ThemePartnerModel.d.ts +104 -72
  75. package/sdk/partner/Theme/ThemePartnerModel.js +101 -75
  76. package/sdk/partner/Theme/ThemePartnerValidator.d.ts +5 -1
  77. package/sdk/partner/Theme/ThemePartnerValidator.js +42 -12
  78. package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +18 -18
  79. package/sdk/partner/Webhook/WebhookPartnerClient.js +18 -18
  80. package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +191 -670
  81. package/sdk/partner/Webhook/WebhookPartnerModel.js +159 -268
  82. package/sdk/partner/Webhook/WebhookPartnerValidator.js +3 -3
  83. package/sdk/partner/index.d.ts +3 -0
  84. package/sdk/partner/index.js +6 -0
  85. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +1 -4
  86. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
  87. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +5 -0
  88. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +3 -1
  89. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +32 -2
  90. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +243 -3
  91. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +145 -49
  92. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +171 -20
  93. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +39 -1
  94. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +35 -0
  95. package/sdk/platform/Billing/BillingPlatformClient.d.ts +12 -12
  96. package/sdk/platform/Billing/BillingPlatformClient.js +15 -15
  97. package/sdk/platform/Billing/BillingPlatformModel.d.ts +388 -443
  98. package/sdk/platform/Billing/BillingPlatformModel.js +263 -280
  99. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +18 -16
  100. package/sdk/platform/Billing/BillingPlatformValidator.js +9 -8
  101. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +251 -172
  102. package/sdk/platform/Cart/CartPlatformApplicationClient.js +639 -521
  103. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +165 -165
  104. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +108 -132
  105. package/sdk/platform/Cart/CartPlatformModel.d.ts +3150 -4468
  106. package/sdk/platform/Cart/CartPlatformModel.js +2858 -1867
  107. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +976 -380
  108. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +6475 -2015
  109. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +1083 -162
  110. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +884 -80
  111. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +325 -568
  112. package/sdk/platform/Catalog/CatalogPlatformClient.js +1162 -1562
  113. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +6008 -7688
  114. package/sdk/platform/Catalog/CatalogPlatformModel.js +9522 -6892
  115. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +234 -227
  116. package/sdk/platform/Catalog/CatalogPlatformValidator.js +183 -177
  117. package/sdk/platform/Common/CommonPlatformClient.d.ts +5 -6
  118. package/sdk/platform/Common/CommonPlatformClient.js +5 -6
  119. package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
  120. package/sdk/platform/Common/CommonPlatformModel.js +6 -6
  121. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +374 -238
  122. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +876 -588
  123. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +170 -139
  124. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +145 -126
  125. package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +56 -3
  126. package/sdk/platform/Communication/CommunicationPlatformClient.js +307 -4
  127. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +506 -270
  128. package/sdk/platform/Communication/CommunicationPlatformModel.js +611 -313
  129. package/sdk/platform/Communication/CommunicationPlatformValidator.d.ts +62 -3
  130. package/sdk/platform/Communication/CommunicationPlatformValidator.js +48 -2
  131. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +78 -77
  132. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +97 -91
  133. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +238 -256
  134. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +222 -244
  135. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +31 -20
  136. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +25 -20
  137. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +333 -118
  138. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +1470 -409
  139. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +158 -55
  140. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +163 -41
  141. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +151 -61
  142. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +595 -101
  143. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +1206 -459
  144. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +1011 -320
  145. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +80 -34
  146. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +79 -24
  147. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +255 -140
  148. package/sdk/platform/Content/ContentPlatformApplicationClient.js +1095 -464
  149. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +221 -178
  150. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +220 -157
  151. package/sdk/platform/Content/ContentPlatformClient.d.ts +124 -123
  152. package/sdk/platform/Content/ContentPlatformClient.js +459 -379
  153. package/sdk/platform/Content/ContentPlatformModel.d.ts +871 -1315
  154. package/sdk/platform/Content/ContentPlatformModel.js +940 -599
  155. package/sdk/platform/Content/ContentPlatformValidator.d.ts +140 -150
  156. package/sdk/platform/Content/ContentPlatformValidator.js +131 -135
  157. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +60 -36
  158. package/sdk/platform/Discount/DiscountPlatformClient.js +85 -36
  159. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +46 -47
  160. package/sdk/platform/Discount/DiscountPlatformModel.js +42 -46
  161. package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
  162. package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
  163. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +18 -15
  164. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +24 -22
  165. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +4 -4
  166. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +4 -4
  167. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +8 -8
  168. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +8 -8
  169. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +75 -86
  170. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +60 -74
  171. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
  172. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
  173. package/sdk/platform/Finance/FinancePlatformClient.d.ts +320 -0
  174. package/sdk/platform/Finance/FinancePlatformClient.js +2333 -0
  175. package/sdk/platform/Finance/FinancePlatformModel.d.ts +2895 -0
  176. package/sdk/platform/Finance/FinancePlatformModel.js +2150 -0
  177. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +284 -0
  178. package/sdk/platform/Finance/FinancePlatformValidator.js +354 -0
  179. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +17 -17
  180. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +33 -33
  181. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +19 -19
  182. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +14 -14
  183. package/sdk/platform/Lead/LeadPlatformClient.d.ts +4 -24
  184. package/sdk/platform/Lead/LeadPlatformClient.js +4 -160
  185. package/sdk/platform/Lead/LeadPlatformModel.d.ts +142 -57
  186. package/sdk/platform/Lead/LeadPlatformModel.js +162 -79
  187. package/sdk/platform/Lead/LeadPlatformValidator.d.ts +3 -29
  188. package/sdk/platform/Lead/LeadPlatformValidator.js +2 -28
  189. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +94 -25
  190. package/sdk/platform/Order/OrderPlatformApplicationClient.js +600 -57
  191. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +115 -115
  192. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +120 -43
  193. package/sdk/platform/Order/OrderPlatformClient.d.ts +486 -277
  194. package/sdk/platform/Order/OrderPlatformClient.js +1491 -938
  195. package/sdk/platform/Order/OrderPlatformModel.d.ts +4560 -8636
  196. package/sdk/platform/Order/OrderPlatformModel.js +3604 -4056
  197. package/sdk/platform/Order/OrderPlatformValidator.d.ts +445 -612
  198. package/sdk/platform/Order/OrderPlatformValidator.js +316 -326
  199. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -6
  200. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +7 -9
  201. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
  202. package/sdk/platform/Partner/PartnerPlatformModel.js +7 -7
  203. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +382 -135
  204. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +2453 -935
  205. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +306 -93
  206. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +305 -70
  207. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +66 -56
  208. package/sdk/platform/Payment/PaymentPlatformClient.js +269 -124
  209. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +3531 -1292
  210. package/sdk/platform/Payment/PaymentPlatformModel.js +3813 -1504
  211. package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +64 -35
  212. package/sdk/platform/Payment/PaymentPlatformValidator.js +60 -34
  213. package/sdk/platform/PlatformClient.d.ts +2 -0
  214. package/sdk/platform/PlatformClient.js +4 -0
  215. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
  216. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
  217. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
  218. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
  219. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +14 -9
  220. package/sdk/platform/Rewards/RewardsPlatformModel.js +10 -8
  221. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +344 -56
  222. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +2188 -302
  223. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +394 -54
  224. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +342 -37
  225. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +150 -212
  226. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +589 -1238
  227. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +3581 -2960
  228. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +3730 -1779
  229. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +230 -382
  230. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +164 -287
  231. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +4 -16
  232. package/sdk/platform/Share/SharePlatformApplicationClient.js +8 -86
  233. package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +6 -23
  234. package/sdk/platform/Share/SharePlatformApplicationValidator.js +3 -16
  235. package/sdk/platform/Share/SharePlatformModel.d.ts +11 -50
  236. package/sdk/platform/Share/SharePlatformModel.js +5 -43
  237. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +36 -16
  238. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +201 -58
  239. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +28 -17
  240. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +33 -16
  241. package/sdk/platform/Theme/ThemePlatformClient.d.ts +18 -8
  242. package/sdk/platform/Theme/ThemePlatformClient.js +85 -8
  243. package/sdk/platform/Theme/ThemePlatformModel.d.ts +425 -17
  244. package/sdk/platform/Theme/ThemePlatformModel.js +329 -23
  245. package/sdk/platform/Theme/ThemePlatformValidator.d.ts +7 -3
  246. package/sdk/platform/Theme/ThemePlatformValidator.js +9 -2
  247. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +18 -71
  248. package/sdk/platform/User/UserPlatformApplicationClient.js +27 -412
  249. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +10 -114
  250. package/sdk/platform/User/UserPlatformApplicationValidator.js +7 -80
  251. package/sdk/platform/User/UserPlatformModel.d.ts +216 -264
  252. package/sdk/platform/User/UserPlatformModel.js +209 -216
  253. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +78 -25
  254. package/sdk/platform/Webhook/WebhookPlatformClient.js +470 -75
  255. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +428 -810
  256. package/sdk/platform/Webhook/WebhookPlatformModel.js +395 -444
  257. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +55 -10
  258. package/sdk/platform/Webhook/WebhookPlatformValidator.js +72 -12
  259. package/sdk/platform/index.d.ts +1 -0
  260. package/sdk/platform/index.js +2 -0
  261. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +14 -4
  262. package/sdk/public/Configuration/ConfigurationPublicClient.js +97 -9
  263. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +102 -40
  264. package/sdk/public/Configuration/ConfigurationPublicModel.js +111 -29
  265. package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +11 -1
  266. package/sdk/public/Configuration/ConfigurationPublicValidator.js +12 -0
  267. package/sdk/public/Content/ContentPublicClient.d.ts +22 -0
  268. package/sdk/public/Content/ContentPublicClient.js +183 -0
  269. package/sdk/public/Content/ContentPublicModel.d.ts +38 -1
  270. package/sdk/public/Content/ContentPublicModel.js +47 -1
  271. package/sdk/public/Content/ContentPublicValidator.d.ts +17 -1
  272. package/sdk/public/Content/ContentPublicValidator.js +19 -0
  273. package/sdk/public/PublicClient.d.ts +0 -2
  274. package/sdk/public/PublicClient.js +0 -4
  275. package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
  276. package/sdk/public/Webhook/WebhookPublicClient.js +8 -8
  277. package/sdk/public/Webhook/WebhookPublicModel.d.ts +67 -215
  278. package/sdk/public/Webhook/WebhookPublicModel.js +61 -66
  279. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
  280. package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
  281. package/sdk/public/index.d.ts +0 -1
  282. package/sdk/public/index.js +0 -2
  283. package/sdk/application/Finance/FinanceApplicationClient.d.ts +0 -29
  284. package/sdk/application/Finance/FinanceApplicationClient.js +0 -126
  285. package/sdk/public/Catalog/CatalogPublicClient.d.ts +0 -22
  286. package/sdk/public/Catalog/CatalogPublicClient.js +0 -138
  287. package/sdk/public/Catalog/CatalogPublicModel.d.ts +0 -155
  288. package/sdk/public/Catalog/CatalogPublicModel.js +0 -116
  289. package/sdk/public/Catalog/CatalogPublicValidator.d.ts +0 -55
  290. package/sdk/public/Catalog/CatalogPublicValidator.js +0 -35
@@ -1,5 +1,113 @@
1
1
  const Joi = require("joi");
2
2
 
3
+ /**
4
+ * @typedef MarketplaceTheme
5
+ * @property {string} [_id] - Theme ID
6
+ * @property {PaymentInfo} [payment]
7
+ * @property {ContactInfo} [contact]
8
+ * @property {string[]} [industry] - Industries the theme is suitable for
9
+ * @property {boolean} [is_update] - Indicates if the theme is an update
10
+ * @property {boolean} [is_default] - Indicates if the theme is a default theme
11
+ * @property {string} [name] - Theme name
12
+ * @property {string} [tagline] - Theme tagline
13
+ * @property {string} [description] - Theme description
14
+ * @property {CatalogSize} [catalog_size]
15
+ * @property {MarketplaceThemeImages} [images]
16
+ * @property {CarouselItem[]} [carousel]
17
+ * @property {string} [src] - Theme source URL
18
+ * @property {ExploreInfo} [explore]
19
+ * @property {Feature[]} [features]
20
+ * @property {Highlight[]} [highlights]
21
+ * @property {Variation[]} [variations]
22
+ * @property {Documentation} [documentation]
23
+ * @property {string} [status] - Theme status
24
+ * @property {number} [step] - Theme step
25
+ * @property {Comments} [comments]
26
+ * @property {Release} [release]
27
+ * @property {string} [slug] - Theme slug
28
+ * @property {string} [organization_id] - Organization ID
29
+ * @property {string} [user_id] - User ID
30
+ * @property {string} [created_at] - Theme creation timestamp
31
+ * @property {string} [updated_at] - Theme update timestamp
32
+ * @property {string} [template_theme_id] - Template theme ID
33
+ * @property {string} [theme_type] - Theme type
34
+ */
35
+
36
+ /**
37
+ * @typedef PaymentInfo
38
+ * @property {boolean} [is_paid] - Indicates if the theme is paid
39
+ * @property {number} [amount] - Amount of payment
40
+ */
41
+
42
+ /**
43
+ * @typedef ContactInfo
44
+ * @property {string[]} [developer_contact] - Developer contact information
45
+ * @property {string} [seller_contact] - Seller contact information
46
+ */
47
+
48
+ /**
49
+ * @typedef CatalogSize
50
+ * @property {number} [min] - Minimum catalog size
51
+ * @property {number} [max] - Maximum catalog size
52
+ */
53
+
54
+ /**
55
+ * @typedef MarketplaceThemeImages
56
+ * @property {string} [desktop] - Desktop theme image URL
57
+ * @property {string} [mobile] - Mobile theme image URL
58
+ */
59
+
60
+ /**
61
+ * @typedef CarouselItem
62
+ * @property {string} [desktop] - Desktop carousel image URL
63
+ * @property {string} [mobile] - Mobile carousel image URL
64
+ */
65
+
66
+ /**
67
+ * @typedef ExploreInfo
68
+ * @property {string} [title] - Explore feature title
69
+ * @property {string} [description] - Explore feature description
70
+ */
71
+
72
+ /**
73
+ * @typedef Feature
74
+ * @property {string} [category] - Feature category
75
+ * @property {FeatureItem[]} [list]
76
+ */
77
+
78
+ /**
79
+ * @typedef FeatureItem
80
+ * @property {string} [label] - Feature properties
81
+ * @property {string} [description] - Feature description
82
+ */
83
+
84
+ /**
85
+ * @typedef Highlight
86
+ * @property {string} [title] - Highlight title
87
+ * @property {string} [description] - Highlight description
88
+ * @property {string} [image] - Highlight image URL
89
+ */
90
+
91
+ /**
92
+ * @typedef Variation
93
+ * @property {string} [name] - Variation name
94
+ * @property {string} [color] - Variation color
95
+ * @property {string} [demo_url] - Variation demo URL
96
+ * @property {MarketplaceThemeImages} [images]
97
+ */
98
+
99
+ /**
100
+ * @typedef Documentation
101
+ * @property {string} [notes] - Documentation notes
102
+ * @property {string} [url] - Documentation URL
103
+ */
104
+
105
+ /**
106
+ * @typedef Comments
107
+ * @property {string} [developer_remark] - Developer remark
108
+ * @property {string} [reviewer_feedback] - Reviewer feedback
109
+ */
110
+
3
111
  /**
4
112
  * @typedef GetExtensionSectionRes
5
113
  * @property {string} [extension_id]
@@ -53,6 +161,22 @@ const Joi = require("joi");
53
161
  * @property {AppliedThemes[]} [applied_themes]
54
162
  */
55
163
 
164
+ /**
165
+ * @typedef CompanyThemeReqSchema
166
+ * @property {string} [marketplace_theme_id] - Theme id of the marketplace
167
+ */
168
+
169
+ /**
170
+ * @typedef CompanyThemeResponse
171
+ * @property {string} [_id] - The unique identifier for the theme.
172
+ * @property {string} [name] - The name of the theme.
173
+ * @property {string} [marketplace_theme_id]
174
+ * @property {number} [company_id] - The ID of the company that the theme belongs to.
175
+ * @property {CompanyThemeMeta} [meta]
176
+ * @property {string} [created_at] - The timestamp when the theme was created.
177
+ * @property {string} [updated_at] - The timestamp when the theme was last updated.
178
+ */
179
+
56
180
  /**
57
181
  * @typedef MarketplaceThemeId
58
182
  * @property {string} [_id] - The unique identifier for the marketplace theme.
@@ -98,6 +222,7 @@ const Joi = require("joi");
98
222
  * @property {string} [_id]
99
223
  * @property {string} [created_at] - The creation timestamp of the page
100
224
  * @property {string} [updated_at] - The last update timestamp of the page
225
+ * @property {string} [application]
101
226
  */
102
227
 
103
228
  /**
@@ -142,12 +267,14 @@ const Joi = require("joi");
142
267
  * @property {string} [description]
143
268
  * @property {SEOMetaItem[]} [meta_tags]
144
269
  * @property {SEOSitemap} [sitemap]
145
- * @property {SEObreadcrumb[]} [breadcrumb]
270
+ * @property {SEObreadcrumb[]} [breadcrumbs]
146
271
  * @property {string} [_id]
272
+ * @property {string} [canonical_url]
147
273
  */
148
274
 
149
275
  /**
150
276
  * @typedef AvailablePageSchemaSections
277
+ * @property {string} [_id] - Unique Id for section.
151
278
  * @property {string} [name]
152
279
  * @property {string} [label]
153
280
  * @property {Object} [props]
@@ -222,7 +349,7 @@ const Joi = require("joi");
222
349
 
223
350
  /**
224
351
  * @typedef FontsSchema
225
- * @property {FontsSchemaItems} [items]
352
+ * @property {Object[]} [items]
226
353
  * @property {string} [kind]
227
354
  */
228
355
 
@@ -246,6 +373,7 @@ const Joi = require("joi");
246
373
  * @property {FontsSchemaItemsFiles} [files]
247
374
  * @property {string} [category]
248
375
  * @property {string} [kind]
376
+ * @property {string} [menu]
249
377
  */
250
378
 
251
379
  /**
@@ -272,6 +400,7 @@ const Joi = require("joi");
272
400
  * @property {Object} [styles] - The styles associated with the theme
273
401
  * @property {string} [created_at] - The creation timestamp of the theme
274
402
  * @property {string} [updated_at] - The last update timestamp of the theme
403
+ * @property {Object[]} [global_sections]
275
404
  * @property {Assets} [assets]
276
405
  * @property {SectionItem[]} [available_sections] - Available sections information
277
406
  * @property {string} [theme_type]
@@ -280,9 +409,9 @@ const Joi = require("joi");
280
409
  */
281
410
 
282
411
  /**
283
- * @typedef ThemeUpgradable
412
+ * @typedef ThemeUpgradableResponse
284
413
  * @property {boolean} [upgrade] - Indicates if the theme is upgradable or not
285
- * @property {ThemeVersions} [versions]
414
+ * @property {Object} [versions]
286
415
  * @property {string} [message] - A message describing the theme upgrade status
287
416
  */
288
417
 
@@ -323,7 +452,7 @@ const Joi = require("joi");
323
452
  * @property {string} current - The current configuration
324
453
  * @property {ThemeConfiguration[]} list - A list of configurations
325
454
  * @property {GlobalSchema} [global_schema]
326
- * @property {Preset} [preset]
455
+ * @property {Object} [preset] - An Object of default theme configurations
327
456
  */
328
457
 
329
458
  /**
@@ -447,6 +576,7 @@ const Joi = require("joi");
447
576
  /**
448
577
  * @typedef Prop
449
578
  * @property {string} [type] - The type of the property
579
+ * @property {Option[]} [options]
450
580
  * @property {string} [category] - The category of the property
451
581
  * @property {string} [value] - The value of the property
452
582
  * @property {string} [id] - The ID of the property
@@ -483,6 +613,7 @@ const Joi = require("joi");
483
613
  * @property {Object[]} [props]
484
614
  * @property {Object[]} [blocks] - Blocks
485
615
  * @property {string} [name] - Name of the section
616
+ * @property {SectionPreset} [preset]
486
617
  * @property {string} [label] - Label for the section
487
618
  */
488
619
 
@@ -595,7 +726,7 @@ const Joi = require("joi");
595
726
  */
596
727
 
597
728
  /**
598
- * @typedef DummyTheme
729
+ * @typedef DummyResponse
599
730
  * @property {string} [message]
600
731
  */
601
732
 
@@ -619,6 +750,12 @@ const Joi = require("joi");
619
750
  * @property {CompanyThemeMeta} [meta]
620
751
  */
621
752
 
753
+ /**
754
+ * @typedef Option
755
+ * @property {string} [text]
756
+ * @property {string} [value]
757
+ */
758
+
622
759
  /**
623
760
  * @typedef ActionPage
624
761
  * @property {Object} [params] - Parameters that should be considered in path.
@@ -679,6 +816,140 @@ const Joi = require("joi");
679
816
  */
680
817
 
681
818
  class ThemePlatformModel {
819
+ /** @returns {MarketplaceTheme} */
820
+ static MarketplaceTheme() {
821
+ return Joi.object({
822
+ _id: Joi.string().allow(""),
823
+ payment: ThemePlatformModel.PaymentInfo(),
824
+ contact: ThemePlatformModel.ContactInfo(),
825
+ industry: Joi.array().items(Joi.string().allow("")),
826
+ is_update: Joi.boolean(),
827
+ is_default: Joi.boolean(),
828
+ name: Joi.string().allow(""),
829
+ tagline: Joi.string().allow(""),
830
+ description: Joi.string().allow(""),
831
+ catalog_size: ThemePlatformModel.CatalogSize(),
832
+ images: ThemePlatformModel.MarketplaceThemeImages(),
833
+ carousel: Joi.array().items(ThemePlatformModel.CarouselItem()),
834
+ src: Joi.string().allow(""),
835
+ explore: ThemePlatformModel.ExploreInfo(),
836
+ features: Joi.array().items(ThemePlatformModel.Feature()),
837
+ highlights: Joi.array().items(ThemePlatformModel.Highlight()),
838
+ variations: Joi.array().items(ThemePlatformModel.Variation()),
839
+ documentation: ThemePlatformModel.Documentation(),
840
+ status: Joi.string().allow(""),
841
+ step: Joi.number(),
842
+ comments: ThemePlatformModel.Comments(),
843
+ release: ThemePlatformModel.Release(),
844
+ slug: Joi.string().allow(""),
845
+ organization_id: Joi.string().allow(""),
846
+ user_id: Joi.string().allow(""),
847
+ created_at: Joi.string().allow(""),
848
+ updated_at: Joi.string().allow(""),
849
+ template_theme_id: Joi.string().allow(""),
850
+ theme_type: Joi.string().allow(""),
851
+ });
852
+ }
853
+
854
+ /** @returns {PaymentInfo} */
855
+ static PaymentInfo() {
856
+ return Joi.object({
857
+ is_paid: Joi.boolean(),
858
+ amount: Joi.number(),
859
+ });
860
+ }
861
+
862
+ /** @returns {ContactInfo} */
863
+ static ContactInfo() {
864
+ return Joi.object({
865
+ developer_contact: Joi.array().items(Joi.string().allow("")),
866
+ seller_contact: Joi.string().allow(""),
867
+ });
868
+ }
869
+
870
+ /** @returns {CatalogSize} */
871
+ static CatalogSize() {
872
+ return Joi.object({
873
+ min: Joi.number(),
874
+ max: Joi.number(),
875
+ });
876
+ }
877
+
878
+ /** @returns {MarketplaceThemeImages} */
879
+ static MarketplaceThemeImages() {
880
+ return Joi.object({
881
+ desktop: Joi.string().allow(""),
882
+ mobile: Joi.string().allow(""),
883
+ });
884
+ }
885
+
886
+ /** @returns {CarouselItem} */
887
+ static CarouselItem() {
888
+ return Joi.object({
889
+ desktop: Joi.string().allow(""),
890
+ mobile: Joi.string().allow(""),
891
+ });
892
+ }
893
+
894
+ /** @returns {ExploreInfo} */
895
+ static ExploreInfo() {
896
+ return Joi.object({
897
+ title: Joi.string().allow(""),
898
+ description: Joi.string().allow(""),
899
+ });
900
+ }
901
+
902
+ /** @returns {Feature} */
903
+ static Feature() {
904
+ return Joi.object({
905
+ category: Joi.string().allow(""),
906
+ list: Joi.array().items(ThemePlatformModel.FeatureItem()),
907
+ });
908
+ }
909
+
910
+ /** @returns {FeatureItem} */
911
+ static FeatureItem() {
912
+ return Joi.object({
913
+ label: Joi.string().allow(""),
914
+ description: Joi.string().allow(""),
915
+ });
916
+ }
917
+
918
+ /** @returns {Highlight} */
919
+ static Highlight() {
920
+ return Joi.object({
921
+ title: Joi.string().allow(""),
922
+ description: Joi.string().allow(""),
923
+ image: Joi.string().allow(""),
924
+ });
925
+ }
926
+
927
+ /** @returns {Variation} */
928
+ static Variation() {
929
+ return Joi.object({
930
+ name: Joi.string().allow(""),
931
+ color: Joi.string().allow(""),
932
+ demo_url: Joi.string().allow(""),
933
+ images: ThemePlatformModel.MarketplaceThemeImages(),
934
+ });
935
+ }
936
+
937
+ /** @returns {Documentation} */
938
+ static Documentation() {
939
+ return Joi.object({
940
+ notes: Joi.string().allow(""),
941
+ url: Joi.string().allow(""),
942
+ });
943
+ }
944
+
945
+ /** @returns {Comments} */
946
+ static Comments() {
947
+ return Joi.object({
948
+ developer_remark: Joi.string().allow(""),
949
+ reviewer_feedback: Joi.string().allow(""),
950
+ });
951
+ }
952
+
682
953
  /** @returns {GetExtensionSectionRes} */
683
954
  static GetExtensionSectionRes() {
684
955
  return Joi.object({
@@ -743,6 +1014,26 @@ class ThemePlatformModel {
743
1014
  });
744
1015
  }
745
1016
 
1017
+ /** @returns {CompanyThemeReqSchema} */
1018
+ static CompanyThemeReqSchema() {
1019
+ return Joi.object({
1020
+ marketplace_theme_id: Joi.string().allow(""),
1021
+ });
1022
+ }
1023
+
1024
+ /** @returns {CompanyThemeResponse} */
1025
+ static CompanyThemeResponse() {
1026
+ return Joi.object({
1027
+ _id: Joi.string().allow(""),
1028
+ name: Joi.string().allow(""),
1029
+ marketplace_theme_id: Joi.string().allow(""),
1030
+ company_id: Joi.number(),
1031
+ meta: ThemePlatformModel.CompanyThemeMeta(),
1032
+ created_at: Joi.string().allow(""),
1033
+ updated_at: Joi.string().allow(""),
1034
+ });
1035
+ }
1036
+
746
1037
  /** @returns {MarketplaceThemeId} */
747
1038
  static MarketplaceThemeId() {
748
1039
  return Joi.object({
@@ -800,13 +1091,14 @@ class ThemePlatformModel {
800
1091
  _id: Joi.string().allow(""),
801
1092
  created_at: Joi.string().allow(""),
802
1093
  updated_at: Joi.string().allow(""),
1094
+ application: Joi.string().allow(""),
803
1095
  });
804
1096
  }
805
1097
 
806
1098
  /** @returns {AvailablePageSectionMetaAttributes} */
807
1099
  static AvailablePageSectionMetaAttributes() {
808
1100
  return Joi.object({
809
- attributes: Joi.object().pattern(/\S/, Joi.any()),
1101
+ attributes: Joi.any(),
810
1102
  });
811
1103
  }
812
1104
 
@@ -858,19 +1150,21 @@ class ThemePlatformModel {
858
1150
  description: Joi.string().allow(""),
859
1151
  meta_tags: Joi.array().items(ThemePlatformModel.SEOMetaItem()),
860
1152
  sitemap: ThemePlatformModel.SEOSitemap(),
861
- breadcrumb: Joi.array().items(ThemePlatformModel.SEObreadcrumb()),
1153
+ breadcrumbs: Joi.array().items(ThemePlatformModel.SEObreadcrumb()),
862
1154
  _id: Joi.string().allow(""),
1155
+ canonical_url: Joi.string().allow(""),
863
1156
  });
864
1157
  }
865
1158
 
866
1159
  /** @returns {AvailablePageSchemaSections} */
867
1160
  static AvailablePageSchemaSections() {
868
1161
  return Joi.object({
1162
+ _id: Joi.string().allow(""),
869
1163
  name: Joi.string().allow(""),
870
1164
  label: Joi.string().allow(""),
871
- props: Joi.object().pattern(/\S/, Joi.any()),
1165
+ props: Joi.any(),
872
1166
  blocks: Joi.array().items(Joi.any()),
873
- preset: Joi.object().pattern(/\S/, Joi.any()),
1167
+ preset: Joi.any(),
874
1168
  predicate: ThemePlatformModel.AvailablePagePredicate(),
875
1169
  __source: ThemePlatformModel.SectionSource(),
876
1170
  });
@@ -919,7 +1213,7 @@ class ThemePlatformModel {
919
1213
  return Joi.object({
920
1214
  selected: Joi.string().allow(""),
921
1215
  exact_url: Joi.string().allow(""),
922
- query: Joi.object().pattern(/\S/, Joi.any()),
1216
+ query: Joi.any(),
923
1217
  });
924
1218
  }
925
1219
 
@@ -958,7 +1252,7 @@ class ThemePlatformModel {
958
1252
  /** @returns {FontsSchema} */
959
1253
  static FontsSchema() {
960
1254
  return Joi.object({
961
- items: ThemePlatformModel.FontsSchemaItems(),
1255
+ items: Joi.array().items(Joi.any()),
962
1256
  kind: Joi.string().allow(""),
963
1257
  });
964
1258
  }
@@ -988,6 +1282,7 @@ class ThemePlatformModel {
988
1282
  files: ThemePlatformModel.FontsSchemaItemsFiles(),
989
1283
  category: Joi.string().allow(""),
990
1284
  kind: Joi.string().allow(""),
1285
+ menu: Joi.string().allow(""),
991
1286
  });
992
1287
  }
993
1288
 
@@ -1015,9 +1310,10 @@ class ThemePlatformModel {
1015
1310
  name: Joi.string().allow(""),
1016
1311
  template_theme_id: Joi.string().allow(""),
1017
1312
  version: Joi.string().allow(""),
1018
- styles: Joi.object().pattern(/\S/, Joi.any()),
1313
+ styles: Joi.any(),
1019
1314
  created_at: Joi.string().allow(""),
1020
1315
  updated_at: Joi.string().allow(""),
1316
+ global_sections: Joi.array().items(Joi.any()),
1021
1317
  assets: ThemePlatformModel.Assets(),
1022
1318
  available_sections: Joi.array().items(ThemePlatformModel.SectionItem()),
1023
1319
  theme_type: Joi.string().allow(""),
@@ -1026,11 +1322,11 @@ class ThemePlatformModel {
1026
1322
  });
1027
1323
  }
1028
1324
 
1029
- /** @returns {ThemeUpgradable} */
1030
- static ThemeUpgradable() {
1325
+ /** @returns {ThemeUpgradableResponse} */
1326
+ static ThemeUpgradableResponse() {
1031
1327
  return Joi.object({
1032
1328
  upgrade: Joi.boolean(),
1033
- versions: ThemePlatformModel.ThemeVersions(),
1329
+ versions: Joi.any(),
1034
1330
  message: Joi.string().allow(""),
1035
1331
  });
1036
1332
  }
@@ -1085,7 +1381,7 @@ class ThemePlatformModel {
1085
1381
  .items(ThemePlatformModel.ThemeConfiguration())
1086
1382
  .required(),
1087
1383
  global_schema: ThemePlatformModel.GlobalSchema(),
1088
- preset: ThemePlatformModel.Preset(),
1384
+ preset: Joi.any(),
1089
1385
  });
1090
1386
  }
1091
1387
 
@@ -1093,7 +1389,7 @@ class ThemePlatformModel {
1093
1389
  static ThemeConfiguration() {
1094
1390
  return Joi.object({
1095
1391
  name: Joi.string().allow(""),
1096
- global_config: Joi.object().pattern(/\S/, Joi.any()),
1392
+ global_config: Joi.any(),
1097
1393
  page: Joi.array().items(ThemePlatformModel.ThemeConfigListPage()),
1098
1394
  });
1099
1395
  }
@@ -1145,7 +1441,7 @@ class ThemePlatformModel {
1145
1441
  /** @returns {ThemeConfigListPageSettingsProps} */
1146
1442
  static ThemeConfigListPageSettingsProps() {
1147
1443
  return Joi.object({
1148
- props: Joi.object().pattern(/\S/, Joi.any()),
1444
+ props: Joi.any(),
1149
1445
  });
1150
1446
  }
1151
1447
 
@@ -1232,6 +1528,7 @@ class ThemePlatformModel {
1232
1528
  static Prop() {
1233
1529
  return Joi.object({
1234
1530
  type: Joi.string().allow(""),
1531
+ options: Joi.array().items(ThemePlatformModel.Option()),
1235
1532
  category: Joi.string().allow(""),
1236
1533
  value: Joi.string().allow(""),
1237
1534
  id: Joi.string().allow(""),
@@ -1275,9 +1572,10 @@ class ThemePlatformModel {
1275
1572
  /** @returns {SectionItem} */
1276
1573
  static SectionItem() {
1277
1574
  return Joi.object({
1278
- props: Joi.array().items(Joi.any()),
1279
- blocks: Joi.array().items(Joi.any()),
1575
+ props: Joi.array().items(Joi.object().pattern(/\S/, Joi.any())),
1576
+ blocks: Joi.array().items(Joi.object().pattern(/\S/, Joi.any())),
1280
1577
  name: Joi.string().allow(""),
1578
+ preset: ThemePlatformModel.SectionPreset(),
1281
1579
  label: Joi.string().allow(""),
1282
1580
  });
1283
1581
  }
@@ -1424,8 +1722,8 @@ class ThemePlatformModel {
1424
1722
  });
1425
1723
  }
1426
1724
 
1427
- /** @returns {DummyTheme} */
1428
- static DummyTheme() {
1725
+ /** @returns {DummyResponse} */
1726
+ static DummyResponse() {
1429
1727
  return Joi.object({
1430
1728
  message: Joi.string().allow(""),
1431
1729
  });
@@ -1455,6 +1753,14 @@ class ThemePlatformModel {
1455
1753
  });
1456
1754
  }
1457
1755
 
1756
+ /** @returns {Option} */
1757
+ static Option() {
1758
+ return Joi.object({
1759
+ text: Joi.string().allow(""),
1760
+ value: Joi.string().allow(""),
1761
+ });
1762
+ }
1763
+
1458
1764
  /** @returns {ActionPage} */
1459
1765
  static ActionPage() {
1460
1766
  return Joi.object({
@@ -1,7 +1,7 @@
1
1
  export = ThemePlatformValidator;
2
2
  /**
3
3
  * @typedef AddMarketplaceThemeToCompanyParam
4
- * @property {ThemePlatformModel.ThemeReq} body
4
+ * @property {ThemePlatformModel.CompanyThemeReqSchema} body
5
5
  */
6
6
  /**
7
7
  * @typedef DeleteCompanyThemeParam
@@ -17,6 +17,7 @@ export = ThemePlatformValidator;
17
17
  * @property {string} [searchText] - Search Text to match the Theme Names and
18
18
  * return the response.
19
19
  */
20
+ /** @typedef GetDefaultMarketplaceThemeParam */
20
21
  declare class ThemePlatformValidator {
21
22
  /** @returns {AddMarketplaceThemeToCompanyParam} */
22
23
  static addMarketplaceThemeToCompany(): AddMarketplaceThemeToCompanyParam;
@@ -26,12 +27,14 @@ declare class ThemePlatformValidator {
26
27
  static getCompanyLevelPrivateThemes(): GetCompanyLevelPrivateThemesParam;
27
28
  /** @returns {GetCompanyLevelThemesParam} */
28
29
  static getCompanyLevelThemes(): GetCompanyLevelThemesParam;
30
+ /** @returns {GetDefaultMarketplaceThemeParam} */
31
+ static getDefaultMarketplaceTheme(): any;
29
32
  }
30
33
  declare namespace ThemePlatformValidator {
31
- export { AddMarketplaceThemeToCompanyParam, DeleteCompanyThemeParam, GetCompanyLevelPrivateThemesParam, GetCompanyLevelThemesParam };
34
+ export { AddMarketplaceThemeToCompanyParam, DeleteCompanyThemeParam, GetCompanyLevelPrivateThemesParam, GetCompanyLevelThemesParam, GetDefaultMarketplaceThemeParam };
32
35
  }
33
36
  type AddMarketplaceThemeToCompanyParam = {
34
- body: ThemePlatformModel.ThemeReq;
37
+ body: ThemePlatformModel.CompanyThemeReqSchema;
35
38
  };
36
39
  type DeleteCompanyThemeParam = {
37
40
  /**
@@ -53,4 +56,5 @@ type GetCompanyLevelThemesParam = {
53
56
  */
54
57
  searchText?: string;
55
58
  };
59
+ type GetDefaultMarketplaceThemeParam = any;
56
60
  import ThemePlatformModel = require("./ThemePlatformModel");
@@ -4,7 +4,7 @@ const ThemePlatformModel = require("./ThemePlatformModel");
4
4
 
5
5
  /**
6
6
  * @typedef AddMarketplaceThemeToCompanyParam
7
- * @property {ThemePlatformModel.ThemeReq} body
7
+ * @property {ThemePlatformModel.CompanyThemeReqSchema} body
8
8
  */
9
9
 
10
10
  /**
@@ -24,11 +24,13 @@ const ThemePlatformModel = require("./ThemePlatformModel");
24
24
  * return the response.
25
25
  */
26
26
 
27
+ /** @typedef GetDefaultMarketplaceThemeParam */
28
+
27
29
  class ThemePlatformValidator {
28
30
  /** @returns {AddMarketplaceThemeToCompanyParam} */
29
31
  static addMarketplaceThemeToCompany() {
30
32
  return Joi.object({
31
- body: ThemePlatformModel.ThemeReq().required(),
33
+ body: ThemePlatformModel.CompanyThemeReqSchema().required(),
32
34
  }).required();
33
35
  }
34
36
 
@@ -52,6 +54,11 @@ class ThemePlatformValidator {
52
54
  searchText: Joi.string().allow(""),
53
55
  }).required();
54
56
  }
57
+
58
+ /** @returns {GetDefaultMarketplaceThemeParam} */
59
+ static getDefaultMarketplaceTheme() {
60
+ return Joi.object({}).required();
61
+ }
55
62
  }
56
63
 
57
64
  module.exports = ThemePlatformValidator;