@gofynd/fdk-client-javascript 1.1.6 → 1.3.0

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 (348) hide show
  1. package/README.md +52 -3
  2. package/index.js +0 -3
  3. package/package.json +1 -2
  4. package/sdk/application/ApplicationAPIClient.d.ts +15 -1
  5. package/sdk/application/ApplicationAPIClient.js +12 -3
  6. package/sdk/application/ApplicationClient.d.ts +36 -6
  7. package/sdk/application/ApplicationClient.js +30 -43
  8. package/sdk/application/ApplicationConfig.d.ts +92 -12
  9. package/sdk/application/ApplicationConfig.js +48 -14
  10. package/sdk/application/Cart/CartApplicationClient.d.ts +200 -357
  11. package/sdk/application/Cart/CartApplicationClient.js +711 -483
  12. package/sdk/application/Cart/CartApplicationModel.d.ts +2054 -96
  13. package/sdk/application/Cart/CartApplicationModel.js +1224 -93
  14. package/sdk/application/Cart/CartApplicationValidator.d.ts +508 -30
  15. package/sdk/application/Cart/CartApplicationValidator.js +270 -15
  16. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +274 -422
  17. package/sdk/application/Catalog/CatalogApplicationClient.js +865 -630
  18. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +2320 -117
  19. package/sdk/application/Catalog/CatalogApplicationModel.js +1566 -172
  20. package/sdk/application/Catalog/CatalogApplicationValidator.d.ts +798 -31
  21. package/sdk/application/Catalog/CatalogApplicationValidator.js +318 -3
  22. package/sdk/application/Common/CommonApplicationClient.d.ts +16 -21
  23. package/sdk/application/Common/CommonApplicationClient.js +52 -33
  24. package/sdk/application/Common/CommonApplicationModel.d.ts +368 -19
  25. package/sdk/application/Common/CommonApplicationModel.js +192 -40
  26. package/sdk/application/Common/CommonApplicationValidator.d.ts +42 -4
  27. package/sdk/application/Common/CommonApplicationValidator.js +21 -3
  28. package/sdk/application/Communication/CommunicationApplicationClient.d.ts +31 -18
  29. package/sdk/application/Communication/CommunicationApplicationClient.js +86 -47
  30. package/sdk/application/Communication/CommunicationApplicationModel.d.ts +157 -14
  31. package/sdk/application/Communication/CommunicationApplicationModel.js +104 -23
  32. package/sdk/application/Communication/CommunicationApplicationValidator.d.ts +27 -4
  33. package/sdk/application/Communication/CommunicationApplicationValidator.js +21 -5
  34. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +149 -118
  35. package/sdk/application/Configuration/ConfigurationApplicationClient.js +457 -260
  36. package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +2235 -110
  37. package/sdk/application/Configuration/ConfigurationApplicationModel.js +1113 -193
  38. package/sdk/application/Configuration/ConfigurationApplicationValidator.d.ts +160 -8
  39. package/sdk/application/Configuration/ConfigurationApplicationValidator.js +88 -4
  40. package/sdk/application/Content/ContentApplicationClient.d.ts +149 -139
  41. package/sdk/application/Content/ContentApplicationClient.js +489 -278
  42. package/sdk/application/Content/ContentApplicationModel.d.ts +1010 -105
  43. package/sdk/application/Content/ContentApplicationModel.js +737 -396
  44. package/sdk/application/Content/ContentApplicationValidator.d.ts +214 -12
  45. package/sdk/application/Content/ContentApplicationValidator.js +113 -3
  46. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +23 -29
  47. package/sdk/application/FileStorage/FileStorageApplicationClient.js +74 -47
  48. package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +148 -20
  49. package/sdk/application/FileStorage/FileStorageApplicationModel.js +100 -87
  50. package/sdk/application/FileStorage/FileStorageApplicationValidator.d.ts +55 -5
  51. package/sdk/application/FileStorage/FileStorageApplicationValidator.js +33 -6
  52. package/sdk/application/Lead/LeadApplicationClient.d.ts +57 -53
  53. package/sdk/application/Lead/LeadApplicationClient.js +188 -103
  54. package/sdk/application/Lead/LeadApplicationModel.d.ts +686 -54
  55. package/sdk/application/Lead/LeadApplicationModel.js +330 -244
  56. package/sdk/application/Lead/LeadApplicationValidator.d.ts +91 -9
  57. package/sdk/application/Lead/LeadApplicationValidator.js +51 -6
  58. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +40 -33
  59. package/sdk/application/Logistic/LogisticApplicationClient.js +131 -73
  60. package/sdk/application/Logistic/LogisticApplicationModel.d.ts +399 -28
  61. package/sdk/application/Logistic/LogisticApplicationModel.js +293 -24
  62. package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +48 -6
  63. package/sdk/application/Logistic/LogisticApplicationValidator.js +34 -6
  64. package/sdk/application/Order/OrderApplicationClient.d.ts +93 -133
  65. package/sdk/application/Order/OrderApplicationClient.js +329 -217
  66. package/sdk/application/Order/OrderApplicationModel.d.ts +1101 -66
  67. package/sdk/application/Order/OrderApplicationModel.js +776 -57
  68. package/sdk/application/Order/OrderApplicationValidator.d.ts +249 -14
  69. package/sdk/application/Order/OrderApplicationValidator.js +114 -5
  70. package/sdk/application/Payment/PaymentApplicationClient.d.ts +400 -366
  71. package/sdk/application/Payment/PaymentApplicationClient.js +1176 -703
  72. package/sdk/application/Payment/PaymentApplicationModel.d.ts +3125 -99
  73. package/sdk/application/Payment/PaymentApplicationModel.js +1158 -62
  74. package/sdk/application/Payment/PaymentApplicationValidator.d.ts +494 -41
  75. package/sdk/application/Payment/PaymentApplicationValidator.js +297 -25
  76. package/sdk/application/PosCart/PosCartApplicationClient.d.ts +205 -350
  77. package/sdk/application/PosCart/PosCartApplicationClient.js +720 -491
  78. package/sdk/application/PosCart/PosCartApplicationModel.d.ts +1823 -89
  79. package/sdk/application/PosCart/PosCartApplicationModel.js +1117 -85
  80. package/sdk/application/PosCart/PosCartApplicationValidator.d.ts +480 -29
  81. package/sdk/application/PosCart/PosCartApplicationValidator.js +262 -15
  82. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +58 -47
  83. package/sdk/application/Rewards/RewardsApplicationClient.js +187 -102
  84. package/sdk/application/Rewards/RewardsApplicationModel.d.ts +343 -22
  85. package/sdk/application/Rewards/RewardsApplicationModel.js +230 -15
  86. package/sdk/application/Rewards/RewardsApplicationValidator.d.ts +70 -7
  87. package/sdk/application/Rewards/RewardsApplicationValidator.js +45 -6
  88. package/sdk/application/Share/ShareApplicationClient.d.ts +52 -50
  89. package/sdk/application/Share/ShareApplicationClient.js +185 -97
  90. package/sdk/application/Share/ShareApplicationModel.d.ts +198 -15
  91. package/sdk/application/Share/ShareApplicationModel.js +131 -31
  92. package/sdk/application/Share/ShareApplicationValidator.d.ts +86 -8
  93. package/sdk/application/Share/ShareApplicationValidator.js +48 -4
  94. package/sdk/application/Theme/ThemeApplicationClient.d.ts +30 -27
  95. package/sdk/application/Theme/ThemeApplicationClient.js +102 -56
  96. package/sdk/application/Theme/ThemeApplicationModel.d.ts +1291 -48
  97. package/sdk/application/Theme/ThemeApplicationModel.js +895 -134
  98. package/sdk/application/Theme/ThemeApplicationValidator.d.ts +49 -5
  99. package/sdk/application/Theme/ThemeApplicationValidator.js +26 -3
  100. package/sdk/application/User/UserApplicationClient.d.ts +260 -305
  101. package/sdk/application/User/UserApplicationClient.js +910 -522
  102. package/sdk/application/User/UserApplicationModel.d.ts +992 -101
  103. package/sdk/application/User/UserApplicationModel.js +699 -248
  104. package/sdk/application/User/UserApplicationValidator.d.ts +457 -33
  105. package/sdk/application/User/UserApplicationValidator.js +265 -31
  106. package/sdk/common/AxiosHelper.js +7 -2
  107. package/sdk/common/FDKError.d.ts +3 -0
  108. package/sdk/common/FDKError.js +8 -0
  109. package/sdk/common/Paginator.d.ts +27 -12
  110. package/sdk/common/Paginator.js +15 -0
  111. package/sdk/common/RequestSigner.js +0 -1
  112. package/sdk/common/utils.d.ts +3 -0
  113. package/sdk/common/utils.js +29 -0
  114. package/sdk/partner/PartnerAPIClient.d.ts +16 -1
  115. package/sdk/partner/PartnerAPIClient.js +12 -2
  116. package/sdk/partner/PartnerClient.d.ts +22 -3
  117. package/sdk/partner/PartnerClient.js +20 -0
  118. package/sdk/partner/PartnerConfig.d.ts +40 -14
  119. package/sdk/partner/PartnerConfig.js +31 -6
  120. package/sdk/partner/Theme/ThemePartnerClient.d.ts +299 -0
  121. package/sdk/partner/Theme/ThemePartnerClient.js +768 -0
  122. package/sdk/partner/Theme/ThemePartnerModel.d.ts +1706 -0
  123. package/sdk/partner/Theme/ThemePartnerModel.js +1409 -0
  124. package/sdk/partner/Theme/ThemePartnerValidator.d.ts +22 -0
  125. package/sdk/partner/Theme/ThemePartnerValidator.js +157 -0
  126. package/sdk/partner/index.d.ts +3 -1
  127. package/sdk/partner/index.js +3 -1
  128. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +30 -25
  129. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +104 -53
  130. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +190 -17
  131. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +132 -15
  132. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +52 -5
  133. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +30 -4
  134. package/sdk/platform/Billing/BillingPlatformClient.d.ts +133 -97
  135. package/sdk/platform/Billing/BillingPlatformClient.js +561 -191
  136. package/sdk/platform/Billing/BillingPlatformModel.d.ts +1071 -68
  137. package/sdk/platform/Billing/BillingPlatformModel.js +762 -151
  138. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +175 -12
  139. package/sdk/platform/Billing/BillingPlatformValidator.js +118 -8
  140. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +454 -635
  141. package/sdk/platform/Cart/CartPlatformApplicationClient.js +1646 -957
  142. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +827 -57
  143. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +492 -34
  144. package/sdk/platform/Cart/CartPlatformModel.d.ts +3839 -175
  145. package/sdk/platform/Cart/CartPlatformModel.js +2423 -217
  146. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +528 -638
  147. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +1600 -984
  148. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +1081 -49
  149. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +482 -23
  150. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +652 -826
  151. package/sdk/platform/Catalog/CatalogPlatformClient.js +1979 -1264
  152. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +6869 -326
  153. package/sdk/platform/Catalog/CatalogPlatformModel.js +4215 -351
  154. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +1361 -71
  155. package/sdk/platform/Catalog/CatalogPlatformValidator.js +624 -30
  156. package/sdk/platform/Common/CommonPlatformClient.d.ts +16 -21
  157. package/sdk/platform/Common/CommonPlatformClient.js +50 -33
  158. package/sdk/platform/Common/CommonPlatformModel.d.ts +423 -19
  159. package/sdk/platform/Common/CommonPlatformModel.js +214 -40
  160. package/sdk/platform/Common/CommonPlatformValidator.d.ts +37 -4
  161. package/sdk/platform/Common/CommonPlatformValidator.js +20 -3
  162. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +731 -303
  163. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +3095 -785
  164. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +699 -41
  165. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +463 -27
  166. package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +19 -5
  167. package/sdk/platform/Communication/CommunicationPlatformClient.js +59 -19
  168. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +1708 -102
  169. package/sdk/platform/Communication/CommunicationPlatformModel.js +1360 -235
  170. package/sdk/platform/Communication/CommunicationPlatformValidator.d.ts +16 -3
  171. package/sdk/platform/Communication/CommunicationPlatformValidator.js +11 -3
  172. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +127 -111
  173. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +435 -225
  174. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +882 -43
  175. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +666 -78
  176. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +184 -13
  177. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +105 -10
  178. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +327 -240
  179. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +922 -438
  180. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +297 -22
  181. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +191 -17
  182. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +184 -178
  183. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +555 -311
  184. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +4337 -188
  185. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +2178 -248
  186. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +332 -19
  187. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +153 -10
  188. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +605 -578
  189. package/sdk/platform/Content/ContentPlatformApplicationClient.js +1996 -987
  190. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +872 -62
  191. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +487 -35
  192. package/sdk/platform/Content/ContentPlatformModel.d.ts +1472 -108
  193. package/sdk/platform/Content/ContentPlatformModel.js +1085 -204
  194. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +85 -82
  195. package/sdk/platform/Discount/DiscountPlatformClient.js +333 -175
  196. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +281 -15
  197. package/sdk/platform/Discount/DiscountPlatformModel.js +189 -10
  198. package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +185 -13
  199. package/sdk/platform/Discount/DiscountPlatformValidator.js +88 -8
  200. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +109 -52
  201. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +570 -105
  202. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +141 -6
  203. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +118 -7
  204. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +43 -63
  205. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +153 -135
  206. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +426 -20
  207. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +379 -40
  208. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +106 -8
  209. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +60 -8
  210. package/sdk/platform/Finance/FinancePlatformClient.d.ts +260 -129
  211. package/sdk/platform/Finance/FinancePlatformClient.js +1182 -194
  212. package/sdk/platform/Finance/FinancePlatformModel.d.ts +1267 -50
  213. package/sdk/platform/Finance/FinancePlatformModel.js +1252 -38
  214. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +233 -15
  215. package/sdk/platform/Finance/FinancePlatformValidator.js +229 -16
  216. package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +111 -97
  217. package/sdk/platform/Inventory/InventoryPlatformClient.js +330 -199
  218. package/sdk/platform/Inventory/InventoryPlatformModel.d.ts +1354 -61
  219. package/sdk/platform/Inventory/InventoryPlatformModel.js +916 -83
  220. package/sdk/platform/Inventory/InventoryPlatformValidator.d.ts +168 -12
  221. package/sdk/platform/Inventory/InventoryPlatformValidator.js +82 -6
  222. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +100 -106
  223. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +372 -186
  224. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +180 -14
  225. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +94 -9
  226. package/sdk/platform/Lead/LeadPlatformClient.d.ts +89 -104
  227. package/sdk/platform/Lead/LeadPlatformClient.js +305 -180
  228. package/sdk/platform/Lead/LeadPlatformModel.d.ts +1045 -54
  229. package/sdk/platform/Lead/LeadPlatformModel.js +504 -142
  230. package/sdk/platform/Lead/LeadPlatformValidator.d.ts +173 -12
  231. package/sdk/platform/Lead/LeadPlatformValidator.js +92 -15
  232. package/sdk/platform/OAuthClient.js +6 -2
  233. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +20 -14
  234. package/sdk/platform/Order/OrderPlatformApplicationClient.js +58 -29
  235. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +26 -4
  236. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +16 -3
  237. package/sdk/platform/Order/OrderPlatformClient.d.ts +437 -556
  238. package/sdk/platform/Order/OrderPlatformClient.js +1500 -760
  239. package/sdk/platform/Order/OrderPlatformModel.d.ts +5225 -247
  240. package/sdk/platform/Order/OrderPlatformModel.js +3473 -260
  241. package/sdk/platform/Order/OrderPlatformValidator.d.ts +859 -37
  242. package/sdk/platform/Order/OrderPlatformValidator.js +435 -23
  243. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +16 -42
  244. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +52 -155
  245. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +37 -6
  246. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +19 -17
  247. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +78 -45
  248. package/sdk/platform/Partner/PartnerPlatformModel.js +43 -369
  249. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +418 -288
  250. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +1509 -505
  251. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +438 -30
  252. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +312 -19
  253. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +83 -73
  254. package/sdk/platform/Payment/PaymentPlatformClient.js +259 -154
  255. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +3200 -93
  256. package/sdk/platform/Payment/PaymentPlatformModel.js +1334 -36
  257. package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +111 -11
  258. package/sdk/platform/Payment/PaymentPlatformValidator.js +68 -7
  259. package/sdk/platform/PlatformAPIClient.d.ts +16 -1
  260. package/sdk/platform/PlatformAPIClient.js +9 -1
  261. package/sdk/platform/PlatformApplicationClient.d.ts +22 -1798
  262. package/sdk/platform/PlatformApplicationClient.js +17 -1899
  263. package/sdk/platform/PlatformClient.d.ts +31 -12581
  264. package/sdk/platform/PlatformClient.js +30 -15089
  265. package/sdk/platform/PlatformConfig.d.ts +37 -11
  266. package/sdk/platform/PlatformConfig.js +32 -6
  267. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +96 -92
  268. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +344 -177
  269. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +149 -12
  270. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +82 -8
  271. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +360 -23
  272. package/sdk/platform/Rewards/RewardsPlatformModel.js +238 -22
  273. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +159 -92
  274. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +473 -208
  275. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +138 -13
  276. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +100 -14
  277. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +166 -178
  278. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +518 -329
  279. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +1408 -96
  280. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +1034 -71
  281. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +280 -18
  282. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +134 -11
  283. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +41 -66
  284. package/sdk/platform/Share/SharePlatformApplicationClient.js +149 -116
  285. package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +87 -7
  286. package/sdk/platform/Share/SharePlatformApplicationValidator.js +42 -5
  287. package/sdk/platform/Share/SharePlatformModel.d.ts +250 -16
  288. package/sdk/platform/Share/SharePlatformModel.js +167 -19
  289. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +229 -193
  290. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +976 -352
  291. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +345 -24
  292. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +206 -14
  293. package/sdk/platform/Theme/ThemePlatformClient.d.ts +37 -0
  294. package/sdk/platform/Theme/ThemePlatformClient.js +235 -0
  295. package/sdk/platform/Theme/ThemePlatformModel.d.ts +1527 -48
  296. package/sdk/platform/Theme/ThemePlatformModel.js +1099 -118
  297. package/sdk/platform/Theme/ThemePlatformValidator.d.ts +32 -0
  298. package/sdk/platform/Theme/ThemePlatformValidator.js +38 -0
  299. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +138 -152
  300. package/sdk/platform/User/UserPlatformApplicationClient.js +470 -244
  301. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +242 -18
  302. package/sdk/platform/User/UserPlatformApplicationValidator.js +129 -12
  303. package/sdk/platform/User/UserPlatformModel.d.ts +653 -101
  304. package/sdk/platform/User/UserPlatformModel.js +467 -424
  305. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +153 -49
  306. package/sdk/platform/Webhook/WebhookPlatformClient.js +896 -88
  307. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +632 -16
  308. package/sdk/platform/Webhook/WebhookPlatformModel.js +502 -54
  309. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +170 -7
  310. package/sdk/platform/Webhook/WebhookPlatformValidator.js +157 -7
  311. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +16 -21
  312. package/sdk/public/Configuration/ConfigurationPublicClient.js +48 -33
  313. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +370 -19
  314. package/sdk/public/Configuration/ConfigurationPublicModel.js +191 -40
  315. package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +42 -4
  316. package/sdk/public/Configuration/ConfigurationPublicValidator.js +21 -3
  317. package/sdk/public/Inventory/InventoryPublicClient.d.ts +54 -48
  318. package/sdk/public/Inventory/InventoryPublicClient.js +161 -98
  319. package/sdk/public/Inventory/InventoryPublicModel.d.ts +392 -21
  320. package/sdk/public/Inventory/InventoryPublicModel.js +267 -27
  321. package/sdk/public/Inventory/InventoryPublicValidator.d.ts +90 -8
  322. package/sdk/public/Inventory/InventoryPublicValidator.js +44 -4
  323. package/sdk/public/Partner/PartnerPublicClient.d.ts +22 -0
  324. package/sdk/public/Partner/PartnerPublicClient.js +110 -0
  325. package/sdk/public/Partner/PartnerPublicModel.d.ts +240 -0
  326. package/sdk/public/Partner/PartnerPublicModel.js +280 -0
  327. package/sdk/public/Partner/PartnerPublicValidator.d.ts +18 -0
  328. package/sdk/public/Partner/PartnerPublicValidator.js +19 -0
  329. package/sdk/public/PublicAPIClient.d.ts +14 -1
  330. package/sdk/public/PublicAPIClient.js +7 -1
  331. package/sdk/public/PublicClient.d.ts +21 -3
  332. package/sdk/public/PublicClient.js +20 -0
  333. package/sdk/public/PublicConfig.d.ts +27 -6
  334. package/sdk/public/PublicConfig.js +17 -1
  335. package/sdk/public/Webhook/WebhookPublicClient.d.ts +16 -11
  336. package/sdk/public/Webhook/WebhookPublicClient.js +48 -27
  337. package/sdk/public/Webhook/WebhookPublicModel.d.ts +52 -16
  338. package/sdk/public/Webhook/WebhookPublicModel.js +33 -113
  339. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +18 -3
  340. package/sdk/public/Webhook/WebhookPublicValidator.js +14 -4
  341. package/sdk/public/index.d.ts +1 -0
  342. package/sdk/public/index.js +2 -0
  343. package/sdk/application/ApplicationModels.d.ts +0 -3
  344. package/sdk/application/ApplicationModels.js +0 -20
  345. package/sdk/platform/Partner/PartnerPlatformClient.d.ts +0 -145
  346. package/sdk/platform/Partner/PartnerPlatformClient.js +0 -799
  347. package/sdk/platform/Partner/PartnerPlatformValidator.d.ts +0 -14
  348. package/sdk/platform/Partner/PartnerPlatformValidator.js +0 -87
@@ -1,49 +1,1292 @@
1
- export = ThemeModel;
2
- declare class ThemeModel {
3
- static AddThemeRequestSchema(): any;
4
- static AllAvailablePageSchema(): any;
5
- static AssetsSchema(): any;
6
- static AvailablePagePredicate(): any;
7
- static AvailablePageRoutePredicate(): any;
8
- static AvailablePageSchema(): any;
9
- static AvailablePageSchemaSections(): any;
10
- static AvailablePageScreenPredicate(): any;
11
- static AvailablePageSectionMetaAttributes(): any;
12
- static AvailablePageSeo(): any;
13
- static AvailablePageUserPredicate(): any;
14
- static availableSectionSchema(): any;
15
- static BlitzkriegApiErrorSchema(): any;
16
- static BlitzkriegInternalServerErrorSchema(): any;
17
- static BlitzkriegNotFoundSchema(): any;
18
- static Blocks(): any;
19
- static BlocksProps(): any;
20
- static Bold(): any;
21
- static Colors(): any;
22
- static CommonJs(): any;
23
- static Config(): any;
24
- static ConfigPage(): any;
25
- static Css(): any;
26
- static Custom(): any;
27
- static Font(): any;
28
- static FontsSchema(): any;
29
- static FontsSchemaItems(): any;
30
- static FontsSchemaItemsFiles(): any;
31
- static GlobalSchema(): any;
32
- static GlobalSchemaProps(): any;
33
- static Images(): any;
34
- static Information(): any;
35
- static Light(): any;
36
- static ListSchemaItem(): any;
37
- static Medium(): any;
38
- static PaginationSchema(): any;
39
- static Preset(): any;
40
- static Regular(): any;
41
- static Sections(): any;
42
- static SemiBold(): any;
43
- static Src(): any;
44
- static ThemesListingResponseSchema(): any;
45
- static ThemesSchema(): any;
46
- static UmdJs(): any;
47
- static UpgradableThemeSchema(): any;
48
- static Variants(): any;
1
+ export = ThemeApplicationModel;
2
+ /**
3
+ * @typedef AdvanceSetting
4
+ * @property {DividerStrokeHighlightSetting} [divider_stroke_highlight]
5
+ * @property {OverlayPopupSetting} [overlay_popup]
6
+ * @property {UserAlertsSetting} [user_alerts]
7
+ */
8
+ /**
9
+ * @typedef AllAvailablePageSchema
10
+ * @property {AvailablePageSchema[]} [pages]
11
+ */
12
+ /**
13
+ * @typedef Assets
14
+ * @property {CommonJS} [common_js]
15
+ * @property {CSS} [css]
16
+ * @property {UMDJs} [umd_js]
17
+ */
18
+ /**
19
+ * @typedef AuthConfig
20
+ * @property {boolean} [show_footer_auth] - Whether to show footer authentication or not
21
+ * @property {boolean} [show_header_auth] - Whether to show header authentication or not
22
+ */
23
+ /**
24
+ * @typedef AvailablePagePredicate
25
+ * @property {AvailablePageRoutePredicate} [route]
26
+ * @property {AvailablePageScreenPredicate} [screen]
27
+ * @property {AvailablePageUserPredicate} [user]
28
+ */
29
+ /**
30
+ * @typedef AvailablePageRoutePredicate
31
+ * @property {string} [exact_url]
32
+ * @property {Object} [query]
33
+ * @property {string} [selected]
34
+ */
35
+ /**
36
+ * @typedef AvailablePageSchema
37
+ * @property {string} [_id]
38
+ * @property {string} [path]
39
+ * @property {Object[]} [props]
40
+ * @property {AvailablePageSchemaSections[]} [sections]
41
+ * @property {AvailablePageSectionMetaAttributes[]} [sections_meta]
42
+ * @property {AvailablePageSeo} [seo]
43
+ * @property {string} [text]
44
+ * @property {string} [theme]
45
+ * @property {string} [type]
46
+ * @property {string} [value]
47
+ */
48
+ /**
49
+ * @typedef AvailablePageSchemaSections
50
+ * @property {Object[]} [blocks]
51
+ * @property {string} [label]
52
+ * @property {string} [name]
53
+ * @property {AvailablePagePredicate} [predicate]
54
+ * @property {Object} [preset]
55
+ * @property {Object} [props]
56
+ */
57
+ /**
58
+ * @typedef AvailablePageScreenPredicate
59
+ * @property {boolean} [desktop]
60
+ * @property {boolean} [mobile]
61
+ * @property {boolean} [tablet]
62
+ */
63
+ /**
64
+ * @typedef AvailablePageSectionMetaAttributes
65
+ * @property {Object} [attributes]
66
+ */
67
+ /**
68
+ * @typedef AvailablePageSeo
69
+ * @property {string} [_id]
70
+ * @property {string} [description]
71
+ * @property {string} [title]
72
+ */
73
+ /**
74
+ * @typedef AvailablePageUserPredicate
75
+ * @property {boolean} [anonymous]
76
+ * @property {boolean} [authenticated]
77
+ */
78
+ /**
79
+ * @typedef BlitzkriegApiErrorSchema
80
+ * @property {string} [message]
81
+ */
82
+ /**
83
+ * @typedef BlitzkriegInternalServerErrorSchema
84
+ * @property {string} [message]
85
+ */
86
+ /**
87
+ * @typedef Block
88
+ * @property {string} [name] - The name of the block.
89
+ * @property {BlockProps} [props]
90
+ * @property {string} [type] - The type of the block.
91
+ */
92
+ /**
93
+ * @typedef BlockProps
94
+ * @property {ImagePickerProp} [image]
95
+ * @property {UrlProp} [slide_link]
96
+ */
97
+ /**
98
+ * @typedef ButtonSetting
99
+ * @property {string} [button_link] - The button link color
100
+ * @property {string} [button_primary] - The primary button color
101
+ * @property {string} [button_secondary] - The secondary button color
102
+ */
103
+ /**
104
+ * @typedef CheckboxProp
105
+ * @property {string} [type] - The type of the property.
106
+ * @property {boolean} [value] - The value of the checkbox property.
107
+ */
108
+ /**
109
+ * @typedef Colors
110
+ * @property {string} [accent_color] - The accent color
111
+ * @property {string} [bg_color] - The background color
112
+ * @property {string} [button_secondary_color] - The secondary button color
113
+ * @property {string} [link_color] - The link color
114
+ * @property {string} [primary_color] - The primary color
115
+ * @property {string} [secondary_color] - The secondary color
116
+ */
117
+ /**
118
+ * @typedef CommonJS
119
+ * @property {string} [link]
120
+ */
121
+ /**
122
+ * @typedef Config
123
+ * @property {string} current - The current configuration
124
+ * @property {GlobalSchema} [global_schema]
125
+ * @property {ThemeConfiguration[]} list - A list of configurations
126
+ * @property {Preset} [preset]
127
+ */
128
+ /**
129
+ * @typedef CSS
130
+ * @property {string[]} [links]
131
+ */
132
+ /**
133
+ * @typedef CustomConfig
134
+ * @property {CustomProps} [props]
135
+ */
136
+ /**
137
+ * @typedef CustomProps
138
+ * @property {string} [button_add_to_cart_color] - The add to cart button color
139
+ * @property {string} [button_add_to_cart_label_color] - The add to cart button
140
+ * label color
141
+ * @property {string} [button_primary_color] - The primary button color
142
+ * @property {string} [button_primary_label_color] - The primary button label color
143
+ * @property {string} [button_secondary_color] - The secondary button color
144
+ * @property {string} [button_secondary_label_color] - The secondary button label color
145
+ * @property {string} [button_tertiary_color] - The tertiary button color
146
+ * @property {string} [button_tertiary_hover_color] - The tertiary button hover color
147
+ * @property {string} [button_tertiary_hover_text_color] - The tertiary button
148
+ * hover text color
149
+ * @property {string} [button_tertiary_label_color] - The tertiary button label color
150
+ * @property {boolean} [disable_cart] - Whether to disable the cart or not
151
+ * @property {string} [footer_bg_color] - The footer background color
152
+ * @property {string} [footer_border_color] - The footer border color
153
+ * @property {string} [footer_nav_hover_color] - The footer navigation hover color
154
+ * @property {string} [footer_text_color] - The footer text color
155
+ * @property {string} [header_bg_color] - The header background color
156
+ * @property {string} [header_border_color] - The header border color
157
+ * @property {string} [header_cart_notification_bg_color] - The header cart
158
+ * notification background color
159
+ * @property {string} [header_cart_notification_text_color] - The header cart
160
+ * notification text color
161
+ * @property {string} [header_icon_color] - The header icon color
162
+ * @property {string} [header_nav_hover_color] - The header navigation hover color
163
+ * @property {string} [header_text_color] - The header text color
164
+ * @property {boolean} [is_menu_below_logo] - Whether the menu is below the logo or not
165
+ * @property {string} [menu_position] - The position of the menu
166
+ * @property {string} [text_body_color] - The text body color
167
+ * @property {string} [text_discount_color] - The text discount color
168
+ * @property {string} [text_heading_link_color] - The text heading link color
169
+ * @property {string} [text_price_color] - The text price color
170
+ * @property {string} [text_sale_price_color] - The text sale price color
171
+ * @property {string} [text_strikethrough_price_color] - The text strikethrough
172
+ * price color
173
+ */
174
+ /**
175
+ * @typedef DividerStrokeHighlightSetting
176
+ * @property {string} [divider_strokes] - The divider strokes color
177
+ * @property {string} [highlight] - The highlight color
178
+ */
179
+ /**
180
+ * @typedef Font
181
+ * @property {string} family - The font family
182
+ * @property {FontVariants} variants
183
+ */
184
+ /**
185
+ * @typedef FontVariant
186
+ * @property {string} file - The URL of the font file
187
+ * @property {string} name - The name of the font variant
188
+ */
189
+ /**
190
+ * @typedef FontVariants
191
+ * @property {FontVariant} [bold]
192
+ * @property {FontVariant} [light]
193
+ * @property {FontVariant} [medium]
194
+ * @property {FontVariant} [regular]
195
+ * @property {FontVariant} [semi_bold]
196
+ */
197
+ /**
198
+ * @typedef FooterSetting
199
+ * @property {string} [footer_background] - The footer background color
200
+ * @property {string} [footer_body_text] - The footer body text color
201
+ * @property {string} [footer_bottom_background] - The footer bottom background color
202
+ * @property {string} [footer_heading_text] - The footer heading text color
203
+ * @property {string} [footer_icon] - The footer icon color
204
+ */
205
+ /**
206
+ * @typedef GeneralSetting
207
+ * @property {ButtonSetting} [button]
208
+ * @property {FooterSetting} [footer]
209
+ * @property {HeaderSetting} [header]
210
+ * @property {SaleDiscountSetting} [sale_discount]
211
+ * @property {TextSetting} [text]
212
+ * @property {ThemeSetting} [theme]
213
+ */
214
+ /**
215
+ * @typedef GlobalConfig
216
+ * @property {AuthConfig} [auth]
217
+ * @property {PaletteConfig} [palette]
218
+ * @property {StaticConfig} [statics]
219
+ */
220
+ /**
221
+ * @typedef GlobalSchema
222
+ * @property {Prop[]} [props]
223
+ */
224
+ /**
225
+ * @typedef HeaderSetting
226
+ * @property {string} [header_background] - The header background color
227
+ * @property {string} [header_icon] - The header icon color
228
+ * @property {string} [header_nav] - The header navigation color
229
+ */
230
+ /**
231
+ * @typedef ImagePickerProp
232
+ * @property {string} [type] - The type of the property.
233
+ * @property {string} [value] - The value of the image picker property.
234
+ */
235
+ /**
236
+ * @typedef Images
237
+ * @property {string} [desktop] - The URL of the desktop image
238
+ * @property {string} [mobile] - The URL of the mobile image
239
+ */
240
+ /**
241
+ * @typedef Meta
242
+ * @property {string} [description] - The description of the theme
243
+ * @property {Images} [images]
244
+ * @property {string[]} [industry] - An array of industries associated with the theme
245
+ * @property {string} [name] - The name of the theme
246
+ * @property {ThemePayment} [payment]
247
+ * @property {Release} [release]
248
+ * @property {string} [slug] - The slug of the theme
249
+ */
250
+ /**
251
+ * @typedef OverlayPopupSetting
252
+ * @property {string} [dialog_backgroung] - The dialog background color
253
+ * @property {string} [overlay] - The overlay color
254
+ */
255
+ /**
256
+ * @typedef Page
257
+ * @property {number} [current]
258
+ * @property {boolean} [has_next]
259
+ * @property {boolean} [has_previous]
260
+ * @property {number} [item_total]
261
+ * @property {string} [next_id]
262
+ * @property {number} [size]
263
+ * @property {string} type
264
+ */
265
+ /**
266
+ * @typedef PaletteConfig
267
+ * @property {AdvanceSetting} [advance_setting]
268
+ * @property {GeneralSetting} [general_setting]
269
+ */
270
+ /**
271
+ * @typedef Predicate
272
+ * @property {Route} [route]
273
+ * @property {Screen} [screen]
274
+ * @property {ThemeUserSchema} [user]
275
+ */
276
+ /**
277
+ * @typedef Preset
278
+ * @property {Page[]} [pages]
279
+ */
280
+ /**
281
+ * @typedef Prop
282
+ * @property {string} [category] - The category of the property
283
+ * @property {string} [id] - The ID of the property
284
+ * @property {string} [info] - Additional information about the property
285
+ * @property {string} [label] - The label of the property
286
+ * @property {string} [type] - The type of the property
287
+ */
288
+ /**
289
+ * @typedef RangeProp
290
+ * @property {string} [type] - The type of the property.
291
+ * @property {number} [value] - The value of the range property.
292
+ */
293
+ /**
294
+ * @typedef Release
295
+ * @property {string} [notes] - The release notes of the theme
296
+ * @property {string} [version] - The version of the theme
297
+ */
298
+ /**
299
+ * @typedef Route
300
+ * @property {string} [exact_url] - The exact URL of the route.
301
+ * @property {string} [selected] - The selected route.
302
+ */
303
+ /**
304
+ * @typedef SaleDiscountSetting
305
+ * @property {string} [sale_badge_background] - The sale badge background color
306
+ * @property {string} [sale_badge_text] - The sale badge text color
307
+ * @property {string} [sale_discount_text] - The sale discount text color
308
+ * @property {string} [sale_timer] - The sale timer color
309
+ */
310
+ /**
311
+ * @typedef Screen
312
+ * @property {boolean} [desktop] - True if the screen is a desktop device.
313
+ * @property {boolean} [mobile] - True if the screen is a mobile device.
314
+ * @property {boolean} [tablet] - True if the screen is a tablet device.
315
+ */
316
+ /**
317
+ * @typedef Section
318
+ * @property {Block[]} [blocks]
319
+ * @property {string} [name] - The name of the section.
320
+ * @property {Predicate} [predicate]
321
+ * @property {SectionPreset} [preset]
322
+ * @property {SectionProps} [props]
323
+ */
324
+ /**
325
+ * @typedef SectionItem
326
+ * @property {Object[]} [blocks] - Blocks
327
+ * @property {string} [label] - Label for the section
328
+ * @property {string} [name] - Name of the section
329
+ * @property {Object[]} [props]
330
+ */
331
+ /**
332
+ * @typedef SectionPreset
333
+ * @property {Block[]} [blocks]
334
+ */
335
+ /**
336
+ * @typedef SectionProps
337
+ * @property {CheckboxProp} [autoplay]
338
+ * @property {TextProp} [item_margin]
339
+ * @property {RangeProp} [slide_interval]
340
+ * @property {TextProp} [title]
341
+ */
342
+ /**
343
+ * @typedef StaticConfig
344
+ * @property {StaticProps} [props]
345
+ */
346
+ /**
347
+ * @typedef StaticProps
348
+ * @property {AuthConfig} [auth]
349
+ * @property {Colors} [colors]
350
+ */
351
+ /**
352
+ * @typedef TextProp
353
+ * @property {string} [type] - The type of the property.
354
+ * @property {string} [value] - The value of the text property.
355
+ */
356
+ /**
357
+ * @typedef TextSetting
358
+ * @property {string} [text_body] - The text body color
359
+ * @property {string} [text_heading] - The text heading color
360
+ * @property {string} [text_label] - The text label color
361
+ * @property {string} [text_secondary] - The secondary text color
362
+ */
363
+ /**
364
+ * @typedef ThemeConfiguration
365
+ * @property {CustomConfig} [custom]
366
+ * @property {GlobalConfig} [global_config]
367
+ * @property {string} [name] - The name of the configuration
368
+ * @property {string[]} [page] - An array of pages
369
+ */
370
+ /**
371
+ * @typedef ThemePayment
372
+ * @property {number} [amount] - The amount of the theme
373
+ * @property {boolean} [is_paid] - Whether the theme is paid or not
374
+ */
375
+ /**
376
+ * @typedef ThemeSetting
377
+ * @property {string} [page_background] - The page background color
378
+ * @property {string} [theme_accent] - The theme accent color
379
+ */
380
+ /**
381
+ * @typedef ThemesSchema
382
+ * @property {string} [_id] - The unique identifier of the theme
383
+ * @property {string} [application_id] - The ID of the application
384
+ * @property {boolean} [applied] - Whether the theme has been applied or not
385
+ * @property {Assets} [assets]
386
+ * @property {SectionItem[]} [available_sections] - Available sections information
387
+ * @property {Config} [config]
388
+ * @property {string} [created_at] - The creation timestamp of the theme
389
+ * @property {Font} [font]
390
+ * @property {boolean} [is_private] - Whether the theme is private or not
391
+ * @property {string} [marketplace_theme_id] - The ID of the theme in the marketplace
392
+ * @property {Meta} [meta]
393
+ * @property {string} [name] - The name of the theme
394
+ * @property {Object} [styles] - The styles associated with the theme
395
+ * @property {string[]} [tags] - An array of tags associated with the theme
396
+ * @property {string} [template_theme_id] - The ID of the template theme
397
+ * @property {string} [updated_at] - The last update timestamp of the theme
398
+ * @property {string} [version] - The version of the theme
399
+ */
400
+ /**
401
+ * @typedef ThemeUserSchema
402
+ * @property {boolean} [anonymous] - True if the user is anonymous.
403
+ * @property {boolean} [authenticated] - True if the user is authenticated.
404
+ */
405
+ /**
406
+ * @typedef UMDJs
407
+ * @property {string[]} [links]
408
+ */
409
+ /**
410
+ * @typedef UrlProp
411
+ * @property {string} [type] - The type of the property.
412
+ * @property {string} [value] - The value of the URL property.
413
+ */
414
+ /**
415
+ * @typedef UserAlertsSetting
416
+ * @property {string} [error_background] - The error background color
417
+ * @property {string} [error_text] - The error text color
418
+ * @property {string} [info_background] - The info background color
419
+ * @property {string} [info_text] - The info text color
420
+ * @property {string} [success_background] - The success background color
421
+ * @property {string} [success_text] - The success text color
422
+ */
423
+ declare class ThemeApplicationModel {
49
424
  }
425
+ declare namespace ThemeApplicationModel {
426
+ export { AdvanceSetting, AllAvailablePageSchema, Assets, AuthConfig, AvailablePagePredicate, AvailablePageRoutePredicate, AvailablePageSchema, AvailablePageSchemaSections, AvailablePageScreenPredicate, AvailablePageSectionMetaAttributes, AvailablePageSeo, AvailablePageUserPredicate, BlitzkriegApiErrorSchema, BlitzkriegInternalServerErrorSchema, Block, BlockProps, ButtonSetting, CheckboxProp, Colors, CommonJS, Config, CSS, CustomConfig, CustomProps, DividerStrokeHighlightSetting, Font, FontVariant, FontVariants, FooterSetting, GeneralSetting, GlobalConfig, GlobalSchema, HeaderSetting, ImagePickerProp, Images, Meta, OverlayPopupSetting, Page, PaletteConfig, Predicate, Preset, Prop, RangeProp, Release, Route, SaleDiscountSetting, Screen, Section, SectionItem, SectionPreset, SectionProps, StaticConfig, StaticProps, TextProp, TextSetting, ThemeConfiguration, ThemePayment, ThemeSetting, ThemesSchema, ThemeUserSchema, UMDJs, UrlProp, UserAlertsSetting };
427
+ }
428
+ /** @returns {AdvanceSetting} */
429
+ declare function AdvanceSetting(): AdvanceSetting;
430
+ type AdvanceSetting = {
431
+ divider_stroke_highlight?: DividerStrokeHighlightSetting;
432
+ overlay_popup?: OverlayPopupSetting;
433
+ user_alerts?: UserAlertsSetting;
434
+ };
435
+ /** @returns {AllAvailablePageSchema} */
436
+ declare function AllAvailablePageSchema(): AllAvailablePageSchema;
437
+ type AllAvailablePageSchema = {
438
+ pages?: AvailablePageSchema[];
439
+ };
440
+ /** @returns {Assets} */
441
+ declare function Assets(): Assets;
442
+ type Assets = {
443
+ common_js?: CommonJS;
444
+ css?: CSS;
445
+ umd_js?: UMDJs;
446
+ };
447
+ /** @returns {AuthConfig} */
448
+ declare function AuthConfig(): AuthConfig;
449
+ type AuthConfig = {
450
+ /**
451
+ * - Whether to show footer authentication or not
452
+ */
453
+ show_footer_auth?: boolean;
454
+ /**
455
+ * - Whether to show header authentication or not
456
+ */
457
+ show_header_auth?: boolean;
458
+ };
459
+ /** @returns {AvailablePagePredicate} */
460
+ declare function AvailablePagePredicate(): AvailablePagePredicate;
461
+ type AvailablePagePredicate = {
462
+ route?: AvailablePageRoutePredicate;
463
+ screen?: AvailablePageScreenPredicate;
464
+ user?: AvailablePageUserPredicate;
465
+ };
466
+ /** @returns {AvailablePageRoutePredicate} */
467
+ declare function AvailablePageRoutePredicate(): AvailablePageRoutePredicate;
468
+ type AvailablePageRoutePredicate = {
469
+ exact_url?: string;
470
+ query?: any;
471
+ selected?: string;
472
+ };
473
+ /** @returns {AvailablePageSchema} */
474
+ declare function AvailablePageSchema(): AvailablePageSchema;
475
+ type AvailablePageSchema = {
476
+ _id?: string;
477
+ path?: string;
478
+ props?: any[];
479
+ sections?: AvailablePageSchemaSections[];
480
+ sections_meta?: AvailablePageSectionMetaAttributes[];
481
+ seo?: AvailablePageSeo;
482
+ text?: string;
483
+ theme?: string;
484
+ type?: string;
485
+ value?: string;
486
+ };
487
+ /** @returns {AvailablePageSchemaSections} */
488
+ declare function AvailablePageSchemaSections(): AvailablePageSchemaSections;
489
+ type AvailablePageSchemaSections = {
490
+ blocks?: any[];
491
+ label?: string;
492
+ name?: string;
493
+ predicate?: AvailablePagePredicate;
494
+ preset?: any;
495
+ props?: any;
496
+ };
497
+ /** @returns {AvailablePageScreenPredicate} */
498
+ declare function AvailablePageScreenPredicate(): AvailablePageScreenPredicate;
499
+ type AvailablePageScreenPredicate = {
500
+ desktop?: boolean;
501
+ mobile?: boolean;
502
+ tablet?: boolean;
503
+ };
504
+ /** @returns {AvailablePageSectionMetaAttributes} */
505
+ declare function AvailablePageSectionMetaAttributes(): AvailablePageSectionMetaAttributes;
506
+ type AvailablePageSectionMetaAttributes = {
507
+ attributes?: any;
508
+ };
509
+ /** @returns {AvailablePageSeo} */
510
+ declare function AvailablePageSeo(): AvailablePageSeo;
511
+ type AvailablePageSeo = {
512
+ _id?: string;
513
+ description?: string;
514
+ title?: string;
515
+ };
516
+ /** @returns {AvailablePageUserPredicate} */
517
+ declare function AvailablePageUserPredicate(): AvailablePageUserPredicate;
518
+ type AvailablePageUserPredicate = {
519
+ anonymous?: boolean;
520
+ authenticated?: boolean;
521
+ };
522
+ /** @returns {BlitzkriegApiErrorSchema} */
523
+ declare function BlitzkriegApiErrorSchema(): BlitzkriegApiErrorSchema;
524
+ type BlitzkriegApiErrorSchema = {
525
+ message?: string;
526
+ };
527
+ /** @returns {BlitzkriegInternalServerErrorSchema} */
528
+ declare function BlitzkriegInternalServerErrorSchema(): BlitzkriegInternalServerErrorSchema;
529
+ type BlitzkriegInternalServerErrorSchema = {
530
+ message?: string;
531
+ };
532
+ /** @returns {Block} */
533
+ declare function Block(): Block;
534
+ type Block = {
535
+ /**
536
+ * - The name of the block.
537
+ */
538
+ name?: string;
539
+ props?: BlockProps;
540
+ /**
541
+ * - The type of the block.
542
+ */
543
+ type?: string;
544
+ };
545
+ /** @returns {BlockProps} */
546
+ declare function BlockProps(): BlockProps;
547
+ type BlockProps = {
548
+ image?: ImagePickerProp;
549
+ slide_link?: UrlProp;
550
+ };
551
+ /** @returns {ButtonSetting} */
552
+ declare function ButtonSetting(): ButtonSetting;
553
+ type ButtonSetting = {
554
+ /**
555
+ * - The button link color
556
+ */
557
+ button_link?: string;
558
+ /**
559
+ * - The primary button color
560
+ */
561
+ button_primary?: string;
562
+ /**
563
+ * - The secondary button color
564
+ */
565
+ button_secondary?: string;
566
+ };
567
+ /** @returns {CheckboxProp} */
568
+ declare function CheckboxProp(): CheckboxProp;
569
+ type CheckboxProp = {
570
+ /**
571
+ * - The type of the property.
572
+ */
573
+ type?: string;
574
+ /**
575
+ * - The value of the checkbox property.
576
+ */
577
+ value?: boolean;
578
+ };
579
+ /** @returns {Colors} */
580
+ declare function Colors(): Colors;
581
+ type Colors = {
582
+ /**
583
+ * - The accent color
584
+ */
585
+ accent_color?: string;
586
+ /**
587
+ * - The background color
588
+ */
589
+ bg_color?: string;
590
+ /**
591
+ * - The secondary button color
592
+ */
593
+ button_secondary_color?: string;
594
+ /**
595
+ * - The link color
596
+ */
597
+ link_color?: string;
598
+ /**
599
+ * - The primary color
600
+ */
601
+ primary_color?: string;
602
+ /**
603
+ * - The secondary color
604
+ */
605
+ secondary_color?: string;
606
+ };
607
+ /** @returns {CommonJS} */
608
+ declare function CommonJS(): CommonJS;
609
+ type CommonJS = {
610
+ link?: string;
611
+ };
612
+ /** @returns {Config} */
613
+ declare function Config(): Config;
614
+ type Config = {
615
+ /**
616
+ * - The current configuration
617
+ */
618
+ current: string;
619
+ global_schema?: GlobalSchema;
620
+ /**
621
+ * - A list of configurations
622
+ */
623
+ list: ThemeConfiguration[];
624
+ preset?: Preset;
625
+ };
626
+ /** @returns {CSS} */
627
+ declare function CSS(): CSS;
628
+ type CSS = {
629
+ links?: string[];
630
+ };
631
+ /** @returns {CustomConfig} */
632
+ declare function CustomConfig(): CustomConfig;
633
+ type CustomConfig = {
634
+ props?: CustomProps;
635
+ };
636
+ /** @returns {CustomProps} */
637
+ declare function CustomProps(): CustomProps;
638
+ type CustomProps = {
639
+ /**
640
+ * - The add to cart button color
641
+ */
642
+ button_add_to_cart_color?: string;
643
+ /**
644
+ * - The add to cart button
645
+ * label color
646
+ */
647
+ button_add_to_cart_label_color?: string;
648
+ /**
649
+ * - The primary button color
650
+ */
651
+ button_primary_color?: string;
652
+ /**
653
+ * - The primary button label color
654
+ */
655
+ button_primary_label_color?: string;
656
+ /**
657
+ * - The secondary button color
658
+ */
659
+ button_secondary_color?: string;
660
+ /**
661
+ * - The secondary button label color
662
+ */
663
+ button_secondary_label_color?: string;
664
+ /**
665
+ * - The tertiary button color
666
+ */
667
+ button_tertiary_color?: string;
668
+ /**
669
+ * - The tertiary button hover color
670
+ */
671
+ button_tertiary_hover_color?: string;
672
+ /**
673
+ * - The tertiary button
674
+ * hover text color
675
+ */
676
+ button_tertiary_hover_text_color?: string;
677
+ /**
678
+ * - The tertiary button label color
679
+ */
680
+ button_tertiary_label_color?: string;
681
+ /**
682
+ * - Whether to disable the cart or not
683
+ */
684
+ disable_cart?: boolean;
685
+ /**
686
+ * - The footer background color
687
+ */
688
+ footer_bg_color?: string;
689
+ /**
690
+ * - The footer border color
691
+ */
692
+ footer_border_color?: string;
693
+ /**
694
+ * - The footer navigation hover color
695
+ */
696
+ footer_nav_hover_color?: string;
697
+ /**
698
+ * - The footer text color
699
+ */
700
+ footer_text_color?: string;
701
+ /**
702
+ * - The header background color
703
+ */
704
+ header_bg_color?: string;
705
+ /**
706
+ * - The header border color
707
+ */
708
+ header_border_color?: string;
709
+ /**
710
+ * - The header cart
711
+ * notification background color
712
+ */
713
+ header_cart_notification_bg_color?: string;
714
+ /**
715
+ * - The header cart
716
+ * notification text color
717
+ */
718
+ header_cart_notification_text_color?: string;
719
+ /**
720
+ * - The header icon color
721
+ */
722
+ header_icon_color?: string;
723
+ /**
724
+ * - The header navigation hover color
725
+ */
726
+ header_nav_hover_color?: string;
727
+ /**
728
+ * - The header text color
729
+ */
730
+ header_text_color?: string;
731
+ /**
732
+ * - Whether the menu is below the logo or not
733
+ */
734
+ is_menu_below_logo?: boolean;
735
+ /**
736
+ * - The position of the menu
737
+ */
738
+ menu_position?: string;
739
+ /**
740
+ * - The text body color
741
+ */
742
+ text_body_color?: string;
743
+ /**
744
+ * - The text discount color
745
+ */
746
+ text_discount_color?: string;
747
+ /**
748
+ * - The text heading link color
749
+ */
750
+ text_heading_link_color?: string;
751
+ /**
752
+ * - The text price color
753
+ */
754
+ text_price_color?: string;
755
+ /**
756
+ * - The text sale price color
757
+ */
758
+ text_sale_price_color?: string;
759
+ /**
760
+ * - The text strikethrough
761
+ * price color
762
+ */
763
+ text_strikethrough_price_color?: string;
764
+ };
765
+ /** @returns {DividerStrokeHighlightSetting} */
766
+ declare function DividerStrokeHighlightSetting(): DividerStrokeHighlightSetting;
767
+ type DividerStrokeHighlightSetting = {
768
+ /**
769
+ * - The divider strokes color
770
+ */
771
+ divider_strokes?: string;
772
+ /**
773
+ * - The highlight color
774
+ */
775
+ highlight?: string;
776
+ };
777
+ /** @returns {Font} */
778
+ declare function Font(): Font;
779
+ type Font = {
780
+ /**
781
+ * - The font family
782
+ */
783
+ family: string;
784
+ variants: FontVariants;
785
+ };
786
+ /** @returns {FontVariant} */
787
+ declare function FontVariant(): FontVariant;
788
+ type FontVariant = {
789
+ /**
790
+ * - The URL of the font file
791
+ */
792
+ file: string;
793
+ /**
794
+ * - The name of the font variant
795
+ */
796
+ name: string;
797
+ };
798
+ /** @returns {FontVariants} */
799
+ declare function FontVariants(): FontVariants;
800
+ type FontVariants = {
801
+ bold?: FontVariant;
802
+ light?: FontVariant;
803
+ medium?: FontVariant;
804
+ regular?: FontVariant;
805
+ semi_bold?: FontVariant;
806
+ };
807
+ /** @returns {FooterSetting} */
808
+ declare function FooterSetting(): FooterSetting;
809
+ type FooterSetting = {
810
+ /**
811
+ * - The footer background color
812
+ */
813
+ footer_background?: string;
814
+ /**
815
+ * - The footer body text color
816
+ */
817
+ footer_body_text?: string;
818
+ /**
819
+ * - The footer bottom background color
820
+ */
821
+ footer_bottom_background?: string;
822
+ /**
823
+ * - The footer heading text color
824
+ */
825
+ footer_heading_text?: string;
826
+ /**
827
+ * - The footer icon color
828
+ */
829
+ footer_icon?: string;
830
+ };
831
+ /** @returns {GeneralSetting} */
832
+ declare function GeneralSetting(): GeneralSetting;
833
+ type GeneralSetting = {
834
+ button?: ButtonSetting;
835
+ footer?: FooterSetting;
836
+ header?: HeaderSetting;
837
+ sale_discount?: SaleDiscountSetting;
838
+ text?: TextSetting;
839
+ theme?: ThemeSetting;
840
+ };
841
+ /** @returns {GlobalConfig} */
842
+ declare function GlobalConfig(): GlobalConfig;
843
+ type GlobalConfig = {
844
+ auth?: AuthConfig;
845
+ palette?: PaletteConfig;
846
+ statics?: StaticConfig;
847
+ };
848
+ /** @returns {GlobalSchema} */
849
+ declare function GlobalSchema(): GlobalSchema;
850
+ type GlobalSchema = {
851
+ props?: Prop[];
852
+ };
853
+ /** @returns {HeaderSetting} */
854
+ declare function HeaderSetting(): HeaderSetting;
855
+ type HeaderSetting = {
856
+ /**
857
+ * - The header background color
858
+ */
859
+ header_background?: string;
860
+ /**
861
+ * - The header icon color
862
+ */
863
+ header_icon?: string;
864
+ /**
865
+ * - The header navigation color
866
+ */
867
+ header_nav?: string;
868
+ };
869
+ /** @returns {ImagePickerProp} */
870
+ declare function ImagePickerProp(): ImagePickerProp;
871
+ type ImagePickerProp = {
872
+ /**
873
+ * - The type of the property.
874
+ */
875
+ type?: string;
876
+ /**
877
+ * - The value of the image picker property.
878
+ */
879
+ value?: string;
880
+ };
881
+ /** @returns {Images} */
882
+ declare function Images(): Images;
883
+ type Images = {
884
+ /**
885
+ * - The URL of the desktop image
886
+ */
887
+ desktop?: string;
888
+ /**
889
+ * - The URL of the mobile image
890
+ */
891
+ mobile?: string;
892
+ };
893
+ /** @returns {Meta} */
894
+ declare function Meta(): Meta;
895
+ type Meta = {
896
+ /**
897
+ * - The description of the theme
898
+ */
899
+ description?: string;
900
+ images?: Images;
901
+ /**
902
+ * - An array of industries associated with the theme
903
+ */
904
+ industry?: string[];
905
+ /**
906
+ * - The name of the theme
907
+ */
908
+ name?: string;
909
+ payment?: ThemePayment;
910
+ release?: Release;
911
+ /**
912
+ * - The slug of the theme
913
+ */
914
+ slug?: string;
915
+ };
916
+ /** @returns {OverlayPopupSetting} */
917
+ declare function OverlayPopupSetting(): OverlayPopupSetting;
918
+ type OverlayPopupSetting = {
919
+ /**
920
+ * - The dialog background color
921
+ */
922
+ dialog_backgroung?: string;
923
+ /**
924
+ * - The overlay color
925
+ */
926
+ overlay?: string;
927
+ };
928
+ /** @returns {Page} */
929
+ declare function Page(): Page;
930
+ type Page = {
931
+ current?: number;
932
+ has_next?: boolean;
933
+ has_previous?: boolean;
934
+ item_total?: number;
935
+ next_id?: string;
936
+ size?: number;
937
+ type: string;
938
+ };
939
+ /** @returns {PaletteConfig} */
940
+ declare function PaletteConfig(): PaletteConfig;
941
+ type PaletteConfig = {
942
+ advance_setting?: AdvanceSetting;
943
+ general_setting?: GeneralSetting;
944
+ };
945
+ /** @returns {Predicate} */
946
+ declare function Predicate(): Predicate;
947
+ type Predicate = {
948
+ route?: Route;
949
+ screen?: Screen;
950
+ user?: ThemeUserSchema;
951
+ };
952
+ /** @returns {Preset} */
953
+ declare function Preset(): Preset;
954
+ type Preset = {
955
+ pages?: Page[];
956
+ };
957
+ /** @returns {Prop} */
958
+ declare function Prop(): Prop;
959
+ type Prop = {
960
+ /**
961
+ * - The category of the property
962
+ */
963
+ category?: string;
964
+ /**
965
+ * - The ID of the property
966
+ */
967
+ id?: string;
968
+ /**
969
+ * - Additional information about the property
970
+ */
971
+ info?: string;
972
+ /**
973
+ * - The label of the property
974
+ */
975
+ label?: string;
976
+ /**
977
+ * - The type of the property
978
+ */
979
+ type?: string;
980
+ };
981
+ /** @returns {RangeProp} */
982
+ declare function RangeProp(): RangeProp;
983
+ type RangeProp = {
984
+ /**
985
+ * - The type of the property.
986
+ */
987
+ type?: string;
988
+ /**
989
+ * - The value of the range property.
990
+ */
991
+ value?: number;
992
+ };
993
+ /** @returns {Release} */
994
+ declare function Release(): Release;
995
+ type Release = {
996
+ /**
997
+ * - The release notes of the theme
998
+ */
999
+ notes?: string;
1000
+ /**
1001
+ * - The version of the theme
1002
+ */
1003
+ version?: string;
1004
+ };
1005
+ /** @returns {Route} */
1006
+ declare function Route(): Route;
1007
+ type Route = {
1008
+ /**
1009
+ * - The exact URL of the route.
1010
+ */
1011
+ exact_url?: string;
1012
+ /**
1013
+ * - The selected route.
1014
+ */
1015
+ selected?: string;
1016
+ };
1017
+ /** @returns {SaleDiscountSetting} */
1018
+ declare function SaleDiscountSetting(): SaleDiscountSetting;
1019
+ type SaleDiscountSetting = {
1020
+ /**
1021
+ * - The sale badge background color
1022
+ */
1023
+ sale_badge_background?: string;
1024
+ /**
1025
+ * - The sale badge text color
1026
+ */
1027
+ sale_badge_text?: string;
1028
+ /**
1029
+ * - The sale discount text color
1030
+ */
1031
+ sale_discount_text?: string;
1032
+ /**
1033
+ * - The sale timer color
1034
+ */
1035
+ sale_timer?: string;
1036
+ };
1037
+ /** @returns {Screen} */
1038
+ declare function Screen(): Screen;
1039
+ type Screen = {
1040
+ /**
1041
+ * - True if the screen is a desktop device.
1042
+ */
1043
+ desktop?: boolean;
1044
+ /**
1045
+ * - True if the screen is a mobile device.
1046
+ */
1047
+ mobile?: boolean;
1048
+ /**
1049
+ * - True if the screen is a tablet device.
1050
+ */
1051
+ tablet?: boolean;
1052
+ };
1053
+ /** @returns {Section} */
1054
+ declare function Section(): Section;
1055
+ type Section = {
1056
+ blocks?: Block[];
1057
+ /**
1058
+ * - The name of the section.
1059
+ */
1060
+ name?: string;
1061
+ predicate?: Predicate;
1062
+ preset?: SectionPreset;
1063
+ props?: SectionProps;
1064
+ };
1065
+ /** @returns {SectionItem} */
1066
+ declare function SectionItem(): SectionItem;
1067
+ type SectionItem = {
1068
+ /**
1069
+ * - Blocks
1070
+ */
1071
+ blocks?: any[];
1072
+ /**
1073
+ * - Label for the section
1074
+ */
1075
+ label?: string;
1076
+ /**
1077
+ * - Name of the section
1078
+ */
1079
+ name?: string;
1080
+ props?: any[];
1081
+ };
1082
+ /** @returns {SectionPreset} */
1083
+ declare function SectionPreset(): SectionPreset;
1084
+ type SectionPreset = {
1085
+ blocks?: Block[];
1086
+ };
1087
+ /** @returns {SectionProps} */
1088
+ declare function SectionProps(): SectionProps;
1089
+ type SectionProps = {
1090
+ autoplay?: CheckboxProp;
1091
+ item_margin?: TextProp;
1092
+ slide_interval?: RangeProp;
1093
+ title?: TextProp;
1094
+ };
1095
+ /** @returns {StaticConfig} */
1096
+ declare function StaticConfig(): StaticConfig;
1097
+ type StaticConfig = {
1098
+ props?: StaticProps;
1099
+ };
1100
+ /** @returns {StaticProps} */
1101
+ declare function StaticProps(): StaticProps;
1102
+ type StaticProps = {
1103
+ auth?: AuthConfig;
1104
+ colors?: Colors;
1105
+ };
1106
+ /** @returns {TextProp} */
1107
+ declare function TextProp(): TextProp;
1108
+ type TextProp = {
1109
+ /**
1110
+ * - The type of the property.
1111
+ */
1112
+ type?: string;
1113
+ /**
1114
+ * - The value of the text property.
1115
+ */
1116
+ value?: string;
1117
+ };
1118
+ /** @returns {TextSetting} */
1119
+ declare function TextSetting(): TextSetting;
1120
+ type TextSetting = {
1121
+ /**
1122
+ * - The text body color
1123
+ */
1124
+ text_body?: string;
1125
+ /**
1126
+ * - The text heading color
1127
+ */
1128
+ text_heading?: string;
1129
+ /**
1130
+ * - The text label color
1131
+ */
1132
+ text_label?: string;
1133
+ /**
1134
+ * - The secondary text color
1135
+ */
1136
+ text_secondary?: string;
1137
+ };
1138
+ /** @returns {ThemeConfiguration} */
1139
+ declare function ThemeConfiguration(): ThemeConfiguration;
1140
+ type ThemeConfiguration = {
1141
+ custom?: CustomConfig;
1142
+ global_config?: GlobalConfig;
1143
+ /**
1144
+ * - The name of the configuration
1145
+ */
1146
+ name?: string;
1147
+ /**
1148
+ * - An array of pages
1149
+ */
1150
+ page?: string[];
1151
+ };
1152
+ /** @returns {ThemePayment} */
1153
+ declare function ThemePayment(): ThemePayment;
1154
+ type ThemePayment = {
1155
+ /**
1156
+ * - The amount of the theme
1157
+ */
1158
+ amount?: number;
1159
+ /**
1160
+ * - Whether the theme is paid or not
1161
+ */
1162
+ is_paid?: boolean;
1163
+ };
1164
+ /** @returns {ThemeSetting} */
1165
+ declare function ThemeSetting(): ThemeSetting;
1166
+ type ThemeSetting = {
1167
+ /**
1168
+ * - The page background color
1169
+ */
1170
+ page_background?: string;
1171
+ /**
1172
+ * - The theme accent color
1173
+ */
1174
+ theme_accent?: string;
1175
+ };
1176
+ /** @returns {ThemesSchema} */
1177
+ declare function ThemesSchema(): ThemesSchema;
1178
+ type ThemesSchema = {
1179
+ /**
1180
+ * - The unique identifier of the theme
1181
+ */
1182
+ _id?: string;
1183
+ /**
1184
+ * - The ID of the application
1185
+ */
1186
+ application_id?: string;
1187
+ /**
1188
+ * - Whether the theme has been applied or not
1189
+ */
1190
+ applied?: boolean;
1191
+ assets?: Assets;
1192
+ /**
1193
+ * - Available sections information
1194
+ */
1195
+ available_sections?: SectionItem[];
1196
+ config?: Config;
1197
+ /**
1198
+ * - The creation timestamp of the theme
1199
+ */
1200
+ created_at?: string;
1201
+ font?: Font;
1202
+ /**
1203
+ * - Whether the theme is private or not
1204
+ */
1205
+ is_private?: boolean;
1206
+ /**
1207
+ * - The ID of the theme in the marketplace
1208
+ */
1209
+ marketplace_theme_id?: string;
1210
+ meta?: Meta;
1211
+ /**
1212
+ * - The name of the theme
1213
+ */
1214
+ name?: string;
1215
+ /**
1216
+ * - The styles associated with the theme
1217
+ */
1218
+ styles?: any;
1219
+ /**
1220
+ * - An array of tags associated with the theme
1221
+ */
1222
+ tags?: string[];
1223
+ /**
1224
+ * - The ID of the template theme
1225
+ */
1226
+ template_theme_id?: string;
1227
+ /**
1228
+ * - The last update timestamp of the theme
1229
+ */
1230
+ updated_at?: string;
1231
+ /**
1232
+ * - The version of the theme
1233
+ */
1234
+ version?: string;
1235
+ };
1236
+ /** @returns {ThemeUserSchema} */
1237
+ declare function ThemeUserSchema(): ThemeUserSchema;
1238
+ type ThemeUserSchema = {
1239
+ /**
1240
+ * - True if the user is anonymous.
1241
+ */
1242
+ anonymous?: boolean;
1243
+ /**
1244
+ * - True if the user is authenticated.
1245
+ */
1246
+ authenticated?: boolean;
1247
+ };
1248
+ /** @returns {UMDJs} */
1249
+ declare function UMDJs(): UMDJs;
1250
+ type UMDJs = {
1251
+ links?: string[];
1252
+ };
1253
+ /** @returns {UrlProp} */
1254
+ declare function UrlProp(): UrlProp;
1255
+ type UrlProp = {
1256
+ /**
1257
+ * - The type of the property.
1258
+ */
1259
+ type?: string;
1260
+ /**
1261
+ * - The value of the URL property.
1262
+ */
1263
+ value?: string;
1264
+ };
1265
+ /** @returns {UserAlertsSetting} */
1266
+ declare function UserAlertsSetting(): UserAlertsSetting;
1267
+ type UserAlertsSetting = {
1268
+ /**
1269
+ * - The error background color
1270
+ */
1271
+ error_background?: string;
1272
+ /**
1273
+ * - The error text color
1274
+ */
1275
+ error_text?: string;
1276
+ /**
1277
+ * - The info background color
1278
+ */
1279
+ info_background?: string;
1280
+ /**
1281
+ * - The info text color
1282
+ */
1283
+ info_text?: string;
1284
+ /**
1285
+ * - The success background color
1286
+ */
1287
+ success_background?: string;
1288
+ /**
1289
+ * - The success text color
1290
+ */
1291
+ success_text?: string;
1292
+ };