@gofynd/fdk-client-javascript 1.0.2 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (346) hide show
  1. package/README.md +31 -2
  2. package/index.d.ts +4 -4
  3. package/index.js +9 -10
  4. package/package.json +14 -14
  5. package/sdk/APIClient.d.ts +11 -0
  6. package/sdk/APIClient.js +35 -0
  7. package/sdk/Client.d.ts +6 -0
  8. package/sdk/Client.js +17 -0
  9. package/sdk/Config.d.ts +9 -0
  10. package/sdk/Config.js +17 -0
  11. package/sdk/application/Cart/CartApplicationClient.d.ts +243 -243
  12. package/sdk/application/Cart/CartApplicationClient.js +595 -594
  13. package/sdk/application/Cart/CartApplicationModel.d.ts +64 -63
  14. package/sdk/application/Cart/CartApplicationModel.js +490 -885
  15. package/sdk/application/Cart/CartApplicationValidator.d.ts +17 -17
  16. package/sdk/application/Cart/CartApplicationValidator.js +98 -98
  17. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +358 -358
  18. package/sdk/application/Catalog/CatalogApplicationClient.js +1079 -1078
  19. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +90 -90
  20. package/sdk/application/Catalog/CatalogApplicationModel.js +683 -1249
  21. package/sdk/application/Catalog/CatalogApplicationValidator.d.ts +19 -19
  22. package/sdk/application/Catalog/CatalogApplicationValidator.js +110 -110
  23. package/sdk/application/Common/CommonApplicationClient.d.ts +13 -13
  24. package/sdk/application/Common/CommonApplicationClient.js +43 -42
  25. package/sdk/application/Common/CommonApplicationModel.d.ts +12 -12
  26. package/sdk/application/Common/CommonApplicationModel.js +83 -160
  27. package/sdk/application/Common/CommonApplicationValidator.d.ts +1 -1
  28. package/sdk/application/Common/CommonApplicationValidator.js +6 -6
  29. package/sdk/application/Communication/CommunicationApplicationClient.d.ts +11 -11
  30. package/sdk/application/Communication/CommunicationApplicationClient.js +32 -31
  31. package/sdk/application/Communication/CommunicationApplicationModel.d.ts +6 -6
  32. package/sdk/application/Communication/CommunicationApplicationModel.js +38 -83
  33. package/sdk/application/Communication/CommunicationApplicationValidator.d.ts +1 -1
  34. package/sdk/application/Communication/CommunicationApplicationValidator.js +4 -4
  35. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +116 -116
  36. package/sdk/application/Configuration/ConfigurationApplicationClient.js +350 -349
  37. package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +85 -85
  38. package/sdk/application/Configuration/ConfigurationApplicationModel.js +480 -851
  39. package/sdk/application/Configuration/ConfigurationApplicationValidator.d.ts +8 -8
  40. package/sdk/application/Configuration/ConfigurationApplicationValidator.js +33 -33
  41. package/sdk/application/Content/ContentApplicationClient.d.ts +67 -67
  42. package/sdk/application/Content/ContentApplicationClient.js +216 -215
  43. package/sdk/application/Content/ContentApplicationModel.d.ts +76 -76
  44. package/sdk/application/Content/ContentApplicationModel.js +468 -884
  45. package/sdk/application/Content/ContentApplicationValidator.d.ts +5 -5
  46. package/sdk/application/Content/ContentApplicationValidator.js +24 -24
  47. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +25 -25
  48. package/sdk/application/FileStorage/FileStorageApplicationClient.js +65 -64
  49. package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +13 -13
  50. package/sdk/application/FileStorage/FileStorageApplicationModel.js +86 -169
  51. package/sdk/application/FileStorage/FileStorageApplicationValidator.d.ts +1 -1
  52. package/sdk/application/FileStorage/FileStorageApplicationValidator.js +7 -7
  53. package/sdk/application/Lead/LeadApplicationClient.d.ts +24 -24
  54. package/sdk/application/Lead/LeadApplicationClient.js +109 -108
  55. package/sdk/application/Lead/LeadApplicationModel.d.ts +35 -35
  56. package/sdk/application/Lead/LeadApplicationModel.js +267 -474
  57. package/sdk/application/Lead/LeadApplicationValidator.d.ts +2 -2
  58. package/sdk/application/Lead/LeadApplicationValidator.js +11 -11
  59. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +31 -22
  60. package/sdk/application/Logistic/LogisticApplicationClient.js +115 -49
  61. package/sdk/application/Logistic/LogisticApplicationModel.d.ts +17 -14
  62. package/sdk/application/Logistic/LogisticApplicationModel.js +133 -201
  63. package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +3 -2
  64. package/sdk/application/Logistic/LogisticApplicationValidator.js +14 -9
  65. package/sdk/application/Order/OrderApplicationClient.d.ts +85 -85
  66. package/sdk/application/Order/OrderApplicationClient.js +247 -246
  67. package/sdk/application/Order/OrderApplicationModel.d.ts +50 -50
  68. package/sdk/application/Order/OrderApplicationModel.js +361 -656
  69. package/sdk/application/Order/OrderApplicationValidator.d.ts +7 -7
  70. package/sdk/application/Order/OrderApplicationValidator.js +28 -28
  71. package/sdk/application/Payment/PaymentApplicationClient.d.ts +318 -318
  72. package/sdk/application/Payment/PaymentApplicationClient.js +781 -780
  73. package/sdk/application/Payment/PaymentApplicationModel.d.ts +72 -72
  74. package/sdk/application/Payment/PaymentApplicationModel.js +570 -1038
  75. package/sdk/application/Payment/PaymentApplicationValidator.d.ts +28 -28
  76. package/sdk/application/Payment/PaymentApplicationValidator.js +107 -107
  77. package/sdk/application/PosCart/PosCartApplicationClient.d.ts +254 -254
  78. package/sdk/application/PosCart/PosCartApplicationClient.js +646 -645
  79. package/sdk/application/PosCart/PosCartApplicationModel.d.ts +64 -63
  80. package/sdk/application/PosCart/PosCartApplicationModel.js +476 -870
  81. package/sdk/application/PosCart/PosCartApplicationValidator.d.ts +18 -18
  82. package/sdk/application/PosCart/PosCartApplicationValidator.js +103 -103
  83. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +27 -27
  84. package/sdk/application/Rewards/RewardsApplicationClient.js +122 -121
  85. package/sdk/application/Rewards/RewardsApplicationModel.d.ts +14 -14
  86. package/sdk/application/Rewards/RewardsApplicationModel.js +96 -191
  87. package/sdk/application/Rewards/RewardsApplicationValidator.d.ts +3 -3
  88. package/sdk/application/Rewards/RewardsApplicationValidator.js +12 -12
  89. package/sdk/application/Share/ShareApplicationClient.d.ts +37 -37
  90. package/sdk/application/Share/ShareApplicationClient.js +94 -93
  91. package/sdk/application/Share/ShareApplicationModel.d.ts +8 -8
  92. package/sdk/application/Share/ShareApplicationModel.js +63 -123
  93. package/sdk/application/Share/ShareApplicationValidator.d.ts +4 -4
  94. package/sdk/application/Share/ShareApplicationValidator.js +12 -12
  95. package/sdk/application/Theme/ThemeApplicationClient.d.ts +8 -8
  96. package/sdk/application/Theme/ThemeApplicationClient.js +38 -37
  97. package/sdk/application/Theme/ThemeApplicationModel.d.ts +34 -34
  98. package/sdk/application/Theme/ThemeApplicationModel.js +190 -336
  99. package/sdk/application/Theme/ThemeApplicationValidator.d.ts +1 -1
  100. package/sdk/application/Theme/ThemeApplicationValidator.js +4 -4
  101. package/sdk/application/User/UserApplicationClient.d.ts +280 -280
  102. package/sdk/application/User/UserApplicationClient.js +619 -618
  103. package/sdk/application/User/UserApplicationModel.d.ts +79 -72
  104. package/sdk/application/User/UserApplicationModel.js +440 -689
  105. package/sdk/application/User/UserApplicationValidator.d.ts +24 -24
  106. package/sdk/application/User/UserApplicationValidator.js +89 -89
  107. package/sdk/common/AxiosHelper.js +18 -7
  108. package/sdk/constructUrl.d.ts +5 -0
  109. package/sdk/constructUrl.js +13 -0
  110. package/sdk/index.d.ts +3 -0
  111. package/sdk/index.js +5 -0
  112. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +51 -51
  113. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +182 -180
  114. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +6 -6
  115. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +21 -21
  116. package/sdk/platform/Analytics/AnalyticsPlatformClient.js +5 -4
  117. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +11 -11
  118. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +95 -178
  119. package/sdk/platform/Analytics/AnalyticsPlatformValidator.js +1 -0
  120. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +10 -10
  121. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +44 -43
  122. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +10 -10
  123. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +50 -89
  124. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -1
  125. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +7 -6
  126. package/sdk/platform/Billing/BillingPlatformClient.d.ts +60 -60
  127. package/sdk/platform/Billing/BillingPlatformClient.js +184 -183
  128. package/sdk/platform/Billing/BillingPlatformModel.d.ts +40 -40
  129. package/sdk/platform/Billing/BillingPlatformModel.js +342 -668
  130. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +8 -8
  131. package/sdk/platform/Billing/BillingPlatformValidator.js +26 -25
  132. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +192 -165
  133. package/sdk/platform/Cart/CartPlatformApplicationClient.js +686 -510
  134. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +14 -11
  135. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +77 -61
  136. package/sdk/platform/Cart/CartPlatformModel.d.ts +84 -83
  137. package/sdk/platform/Cart/CartPlatformModel.js +676 -1206
  138. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +632 -632
  139. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +1558 -1556
  140. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +40 -40
  141. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +175 -175
  142. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +688 -688
  143. package/sdk/platform/Catalog/CatalogPlatformClient.js +1556 -1559
  144. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +291 -291
  145. package/sdk/platform/Catalog/CatalogPlatformModel.js +2133 -3910
  146. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +66 -66
  147. package/sdk/platform/Catalog/CatalogPlatformValidator.js +229 -228
  148. package/sdk/platform/Common/CommonPlatformClient.d.ts +12 -12
  149. package/sdk/platform/Common/CommonPlatformClient.js +40 -51
  150. package/sdk/platform/Common/CommonPlatformModel.d.ts +12 -12
  151. package/sdk/platform/Common/CommonPlatformModel.js +83 -160
  152. package/sdk/platform/Common/CommonPlatformValidator.d.ts +1 -1
  153. package/sdk/platform/Common/CommonPlatformValidator.js +7 -6
  154. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +326 -326
  155. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +945 -943
  156. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +30 -30
  157. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +88 -88
  158. package/sdk/platform/Communication/CommunicationPlatformClient.js +4 -3
  159. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +67 -67
  160. package/sdk/platform/Communication/CommunicationPlatformModel.js +522 -974
  161. package/sdk/platform/Communication/CommunicationPlatformValidator.js +1 -0
  162. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +55 -55
  163. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +217 -216
  164. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +27 -27
  165. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +279 -542
  166. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +7 -7
  167. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +25 -24
  168. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +163 -153
  169. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +617 -552
  170. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +22 -21
  171. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +70 -64
  172. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +125 -125
  173. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +348 -347
  174. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +148 -146
  175. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +854 -1508
  176. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +9 -9
  177. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +39 -38
  178. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +524 -534
  179. package/sdk/platform/Content/ContentPlatformApplicationClient.js +1287 -1346
  180. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +49 -50
  181. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +153 -159
  182. package/sdk/platform/Content/ContentPlatformModel.d.ts +78 -78
  183. package/sdk/platform/Content/ContentPlatformModel.js +485 -907
  184. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +65 -65
  185. package/sdk/platform/Discount/DiscountPlatformClient.js +219 -218
  186. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +7 -7
  187. package/sdk/platform/Discount/DiscountPlatformModel.js +60 -121
  188. package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +6 -6
  189. package/sdk/platform/Discount/DiscountPlatformValidator.js +30 -29
  190. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +25 -25
  191. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +83 -61
  192. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +1 -1
  193. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +9 -9
  194. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +53 -53
  195. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +147 -125
  196. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +13 -13
  197. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +86 -169
  198. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +3 -3
  199. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +12 -11
  200. package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +63 -63
  201. package/sdk/platform/Inventory/InventoryPlatformClient.js +231 -230
  202. package/sdk/platform/Inventory/InventoryPlatformModel.d.ts +30 -30
  203. package/sdk/platform/Inventory/InventoryPlatformModel.js +497 -964
  204. package/sdk/platform/Inventory/InventoryPlatformValidator.d.ts +7 -7
  205. package/sdk/platform/Inventory/InventoryPlatformValidator.js +29 -28
  206. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +73 -73
  207. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +203 -201
  208. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +7 -7
  209. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +29 -29
  210. package/sdk/platform/Lead/LeadPlatformClient.d.ts +80 -80
  211. package/sdk/platform/Lead/LeadPlatformClient.js +215 -214
  212. package/sdk/platform/Lead/LeadPlatformModel.d.ts +35 -35
  213. package/sdk/platform/Lead/LeadPlatformModel.js +267 -474
  214. package/sdk/platform/Lead/LeadPlatformValidator.d.ts +6 -6
  215. package/sdk/platform/Lead/LeadPlatformValidator.js +25 -24
  216. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +10 -10
  217. package/sdk/platform/Order/OrderPlatformApplicationClient.js +68 -66
  218. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +1 -1
  219. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +7 -7
  220. package/sdk/platform/Order/OrderPlatformClient.d.ts +357 -357
  221. package/sdk/platform/Order/OrderPlatformClient.js +1046 -1033
  222. package/sdk/platform/Order/OrderPlatformModel.d.ts +198 -196
  223. package/sdk/platform/Order/OrderPlatformModel.js +1575 -2861
  224. package/sdk/platform/Order/OrderPlatformValidator.d.ts +32 -32
  225. package/sdk/platform/Order/OrderPlatformValidator.js +161 -160
  226. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +3 -1
  227. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +1 -1
  228. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +1 -1
  229. package/sdk/platform/Partner/PartnerPlatformModel.js +10 -26
  230. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +58 -58
  231. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +178 -178
  232. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +6 -6
  233. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +24 -24
  234. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +42 -42
  235. package/sdk/platform/Payment/PaymentPlatformClient.js +156 -155
  236. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +27 -27
  237. package/sdk/platform/Payment/PaymentPlatformModel.js +222 -410
  238. package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +4 -4
  239. package/sdk/platform/Payment/PaymentPlatformValidator.js +22 -21
  240. package/sdk/platform/PlatformApplicationClient.d.ts +1496 -10325
  241. package/sdk/platform/PlatformApplicationClient.js +1584 -13899
  242. package/sdk/platform/PlatformClient.d.ts +7972 -7888
  243. package/sdk/platform/PlatformClient.js +8678 -10107
  244. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +85 -85
  245. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +299 -280
  246. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +8 -8
  247. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +35 -35
  248. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +15 -15
  249. package/sdk/platform/Rewards/RewardsPlatformModel.js +92 -194
  250. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +10 -10
  251. package/sdk/platform/Share/SharePlatformApplicationClient.js +62 -60
  252. package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +1 -1
  253. package/sdk/platform/Share/SharePlatformApplicationValidator.js +7 -7
  254. package/sdk/platform/Share/SharePlatformModel.d.ts +8 -8
  255. package/sdk/platform/Share/SharePlatformModel.js +60 -118
  256. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +132 -132
  257. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +314 -312
  258. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +15 -15
  259. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +45 -45
  260. package/sdk/platform/Theme/ThemePlatformModel.d.ts +34 -34
  261. package/sdk/platform/Theme/ThemePlatformModel.js +190 -336
  262. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +136 -69
  263. package/sdk/platform/User/UserPlatformApplicationClient.js +507 -166
  264. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +12 -7
  265. package/sdk/platform/User/UserPlatformApplicationValidator.js +62 -24
  266. package/sdk/platform/User/UserPlatformModel.d.ts +79 -72
  267. package/sdk/platform/User/UserPlatformModel.js +440 -689
  268. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +31 -31
  269. package/sdk/platform/Webhook/WebhookPlatformClient.js +91 -90
  270. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +7 -7
  271. package/sdk/platform/Webhook/WebhookPlatformModel.js +68 -136
  272. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +3 -3
  273. package/sdk/platform/Webhook/WebhookPlatformValidator.js +15 -14
  274. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +13 -13
  275. package/sdk/public/Configuration/ConfigurationPublicClient.js +40 -38
  276. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +12 -12
  277. package/sdk/public/Configuration/ConfigurationPublicModel.js +85 -162
  278. package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +1 -1
  279. package/sdk/public/Configuration/ConfigurationPublicValidator.js +6 -6
  280. package/sdk/public/Inventory/InventoryPublicClient.d.ts +34 -34
  281. package/sdk/public/Inventory/InventoryPublicClient.js +115 -113
  282. package/sdk/public/Inventory/InventoryPublicModel.d.ts +10 -10
  283. package/sdk/public/Inventory/InventoryPublicModel.js +119 -245
  284. package/sdk/public/Inventory/InventoryPublicValidator.d.ts +3 -3
  285. package/sdk/public/Inventory/InventoryPublicValidator.js +15 -15
  286. package/sdk/public/Webhook/WebhookPublicClient.js +2 -0
  287. package/sdk/public/Webhook/WebhookPublicModel.d.ts +7 -7
  288. package/sdk/public/Webhook/WebhookPublicModel.js +68 -136
  289. package/.github/workflows/on_create_release.yml +0 -23
  290. package/.github/workflows/on_merge_main.yml +0 -38
  291. package/.github/workflows/on_pull_request.yml +0 -35
  292. package/.prettierrc +0 -5
  293. package/documentation/application/CART.md +0 -7339
  294. package/documentation/application/CATALOG.md +0 -9597
  295. package/documentation/application/COMMON.md +0 -452
  296. package/documentation/application/COMMUNICATION.md +0 -467
  297. package/documentation/application/CONFIGURATION.md +0 -2906
  298. package/documentation/application/CONTENT.md +0 -3351
  299. package/documentation/application/FILESTORAGE.md +0 -578
  300. package/documentation/application/LEAD.md +0 -1895
  301. package/documentation/application/LOGISTIC.md +0 -765
  302. package/documentation/application/ORDER.md +0 -3432
  303. package/documentation/application/PAYMENT.md +0 -5221
  304. package/documentation/application/POSCART.md +0 -7938
  305. package/documentation/application/README.md +0 -21
  306. package/documentation/application/REWARDS.md +0 -708
  307. package/documentation/application/SHARE.md +0 -733
  308. package/documentation/application/THEME.md +0 -5800
  309. package/documentation/application/USER.md +0 -4335
  310. package/documentation/platform/ANALYTICS.md +0 -1154
  311. package/documentation/platform/AUDITTRAIL.md +0 -576
  312. package/documentation/platform/BILLING.md +0 -2400
  313. package/documentation/platform/CART.md +0 -5559
  314. package/documentation/platform/CATALOG.md +0 -23261
  315. package/documentation/platform/COMMON.md +0 -452
  316. package/documentation/platform/COMMUNICATION.md +0 -5718
  317. package/documentation/platform/COMPANYPROFILE.md +0 -2031
  318. package/documentation/platform/CONFIGURATION.md +0 -7339
  319. package/documentation/platform/CONTENT.md +0 -9098
  320. package/documentation/platform/DISCOUNT.md +0 -863
  321. package/documentation/platform/FILESTORAGE.md +0 -1081
  322. package/documentation/platform/INVENTORY.md +0 -1779
  323. package/documentation/platform/LEAD.md +0 -4740
  324. package/documentation/platform/ORDER.md +0 -8486
  325. package/documentation/platform/PARTNER.md +0 -220
  326. package/documentation/platform/PAYMENT.md +0 -3448
  327. package/documentation/platform/README.md +0 -27
  328. package/documentation/platform/REWARDS.md +0 -1083
  329. package/documentation/platform/SHARE.md +0 -606
  330. package/documentation/platform/THEME.md +0 -35729
  331. package/documentation/platform/USER.md +0 -2319
  332. package/documentation/platform/WEBHOOK.md +0 -591
  333. package/documentation/public/CONFIGURATION.md +0 -452
  334. package/documentation/public/INVENTORY.md +0 -690
  335. package/documentation/public/WEBHOOK.md +0 -352
  336. package/jest.config.d.ts +0 -4
  337. package/jest.config.js +0 -6
  338. package/tests/application/catalog.spec.js +0 -47
  339. package/tests/common/action-url.spec.js +0 -35
  340. package/tests/common/schema/action-url.json +0 -178
  341. package/tests/common/schema/url-action.json +0 -683
  342. package/tests/common/url-action.spec.js +0 -48
  343. package/tests/helpers/cookie.helper.js +0 -31
  344. package/tests/helpers/oauth.helper.js +0 -43
  345. package/tests/platform/catalog.spec.js +0 -49
  346. package/tests/public/location.spec.js +0 -39
@@ -1,3351 +0,0 @@
1
-
2
-
3
-
4
-
5
-
6
- ##### [Back to Application docs](./README.md)
7
-
8
- ## Content Methods
9
- Content System
10
-
11
- * [getAnnouncements](#getannouncements)
12
- * [getBlog](#getblog)
13
- * [getBlogs](#getblogs)
14
- * [getDataLoaders](#getdataloaders)
15
- * [getFaqs](#getfaqs)
16
- * [getFaqCategories](#getfaqcategories)
17
- * [getFaqBySlug](#getfaqbyslug)
18
- * [getFaqCategoryBySlug](#getfaqcategorybyslug)
19
- * [getFaqsByCategorySlug](#getfaqsbycategoryslug)
20
- * [getLandingPage](#getlandingpage)
21
- * [getLegalInformation](#getlegalinformation)
22
- * [getNavigations](#getnavigations)
23
- * [getSEOConfiguration](#getseoconfiguration)
24
- * [getSlideshows](#getslideshows)
25
- * [getSlideshow](#getslideshow)
26
- * [getSupportInformation](#getsupportinformation)
27
- * [getTags](#gettags)
28
- * [getPage](#getpage)
29
- * [getPages](#getpages)
30
-
31
-
32
-
33
- ## Methods with example and description
34
-
35
-
36
-
37
-
38
- ### getAnnouncements
39
- Get live announcements
40
-
41
-
42
-
43
- ```javascript
44
- // Promise
45
- const promise = content.getAnnouncements();
46
-
47
- // Async/Await
48
- const data = await content.getAnnouncements();
49
- ```
50
-
51
-
52
-
53
-
54
-
55
-
56
- Announcements are useful to highlight a message or information on top of a webpage. Use this API to retrieve live announcements. Get announcements on individual pages or for all pages.
57
-
58
- *Returned Response:*
59
-
60
-
61
-
62
-
63
- [AnnouncementsResponseSchema](#AnnouncementsResponseSchema)
64
-
65
- Success. Returns a JSON object with the details of the announcement shown on an individual page. `$all` is a special slug to indicate that an announcement is being shown on all the pages. Check the example shown below or refer `AnnouncementsResponseSchema` for more details.
66
-
67
-
68
-
69
-
70
- <details>
71
- <summary><i>&nbsp; Examples:</i></summary>
72
-
73
-
74
- <details>
75
- <summary><i>&nbsp; Announcements enabled</i></summary>
76
-
77
- ```json
78
- {
79
- "value": {
80
- "announcements": {
81
- "$all": [
82
- {
83
- "announcement": "<link rel=\"stylesheet\" type=\"text/css\" href=\"https://cdnjs.cloudflare.com/ajax/libs/github-markdown-css/2.9.0/github-markdown.min.css\" /> <div class=\"markdown-body\" style='padding: 12px; color: #000; background-color: #fff;'><p>test Announcement</p>\n</div>",
84
- "schedule": {
85
- "start": "2021-03-31T11:22:08.167Z"
86
- }
87
- }
88
- ]
89
- },
90
- "refresh_rate": 900,
91
- "refresh_pages": []
92
- }
93
- }
94
- ```
95
- </details>
96
-
97
- <details>
98
- <summary><i>&nbsp; No Announcement enabled</i></summary>
99
-
100
- ```json
101
- {
102
- "value": {
103
- "announcements": {},
104
- "refresh_rate": 900,
105
- "refresh_pages": []
106
- }
107
- }
108
- ```
109
- </details>
110
-
111
- </details>
112
-
113
-
114
-
115
-
116
-
117
-
118
-
119
-
120
-
121
- ---
122
-
123
-
124
- ### getBlog
125
- Get a blog
126
-
127
-
128
-
129
- ```javascript
130
- // Promise
131
- const promise = content.getBlog({ slug : value,
132
- rootId : value });
133
-
134
- // Async/Await
135
- const data = await content.getBlog({ slug : value,
136
- rootId : value });
137
- ```
138
-
139
-
140
-
141
-
142
-
143
- | Argument | Type | Required | Description |
144
- | --------- | ----- | -------- | ----------- |
145
- | slug | string | yes | A short, human-readable, URL-friendly identifier of a blog. You can get slug value from the endpoint /service/application/content/v1.0/blogs/. |
146
- | rootId | string | no | ID given to the HTML element |
147
-
148
-
149
-
150
- Use this API to get the details of a blog using its slug. Details include the title, reading time, publish status, feature image, tags, author, etc.
151
-
152
- *Returned Response:*
153
-
154
-
155
-
156
-
157
- [BlogSchema](#BlogSchema)
158
-
159
- Success. Returns a JSON object with blog details. Check the example shown below or refer `BlogSchema` for more details.
160
-
161
-
162
-
163
-
164
- <details>
165
- <summary><i>&nbsp; Examples:</i></summary>
166
-
167
-
168
- <details>
169
- <summary><i>&nbsp; default</i></summary>
170
-
171
- ```json
172
- {
173
- "value": {
174
- "_id": "5eaa451a21a4dd75f0fd96c5",
175
- "application": "5d3ebd89f540e7506b8b3548",
176
- "tags": [
177
- "abhinav"
178
- ],
179
- "title": "my first blog",
180
- "slug": "1st_blog",
181
- "feature_image": {
182
- "secure_url": "https://google.com"
183
- },
184
- "content": [
185
- {
186
- "type": "html",
187
- "value": "<p>hey there!</p>"
188
- }
189
- ],
190
- "_schedule": {
191
- "cron": "* 10 * * *",
192
- "start": "2021-03-31T23:30:00.000Z",
193
- "end": "2021-03-31T23:55:00.000Z",
194
- "duration": 1000,
195
- "next_schedule": [
196
- {
197
- "start": "2021-03-17T04:30:00.000Z",
198
- "end": "2021-03-17T04:46:40.000Z"
199
- }
200
- ]
201
- },
202
- "published": true,
203
- "author": {
204
- "name": "Fynd App"
205
- },
206
- "date_meta": {
207
- "created_on": "2021-03-14T06:49:03.945Z",
208
- "modified_on": "2021-03-14T06:49:03.945Z"
209
- }
210
- }
211
- }
212
- ```
213
- </details>
214
-
215
- </details>
216
-
217
-
218
-
219
-
220
-
221
-
222
-
223
-
224
-
225
- ---
226
-
227
-
228
- ### getBlogs
229
- Get a list of blogs
230
-
231
-
232
-
233
- ```javascript
234
- // Promise
235
- const promise = content.getBlogs({ pageNo : value,
236
- pageSize : value });
237
-
238
- // Async/Await
239
- const data = await content.getBlogs({ pageNo : value,
240
- pageSize : value });
241
- ```
242
-
243
-
244
-
245
-
246
-
247
- | Argument | Type | Required | Description |
248
- | --------- | ----- | -------- | ----------- |
249
- | pageNo | number | no | The page number to navigate through the given set of results. Default value is 1. |
250
- | pageSize | number | no | The number of items to retrieve in each page. |
251
-
252
-
253
-
254
- Use this API to get all the blogs.
255
-
256
- *Returned Response:*
257
-
258
-
259
-
260
-
261
- [BlogGetResponse](#BlogGetResponse)
262
-
263
- Success. Check the example shown below or refer `BlogGetResponse` for more details.
264
-
265
-
266
-
267
-
268
- <details>
269
- <summary><i>&nbsp; Examples:</i></summary>
270
-
271
-
272
- <details>
273
- <summary><i>&nbsp; default</i></summary>
274
-
275
- ```json
276
- {
277
- "value": {
278
- "items": [
279
- {
280
- "date_meta": {
281
- "created_on": "2021-03-14T06:49:03.945Z",
282
- "modified_on": "2021-03-14T06:49:03.945Z"
283
- },
284
- "tags": [],
285
- "_id": "604db275b3ae202873964d94",
286
- "content": [
287
- {
288
- "type": "html",
289
- "value": "<p>test abhinav</p>"
290
- }
291
- ],
292
- "title": "1st Blog",
293
- "slug": "1st-blog",
294
- "published": true,
295
- "_schedule": {
296
- "next_schedule": [
297
- {}
298
- ],
299
- "start": "2021-04-08T07:15:13.000Z",
300
- "end": "2021-04-10T02:00:00.000Z"
301
- },
302
- "feature_image": {
303
- "secure_url": ""
304
- },
305
- "application": "000000000000000000000001",
306
- "author": {
307
- "name": "Fynd App"
308
- }
309
- }
310
- ],
311
- "page": {
312
- "type": "number",
313
- "current": 1,
314
- "size": 1,
315
- "item_total": 2,
316
- "has_next": true
317
- }
318
- }
319
- }
320
- ```
321
- </details>
322
-
323
- </details>
324
-
325
-
326
-
327
-
328
-
329
-
330
-
331
-
332
-
333
- ---
334
-
335
-
336
- ### getDataLoaders
337
- Get the data loaders associated with an application
338
-
339
-
340
-
341
- ```javascript
342
- // Promise
343
- const promise = content.getDataLoaders();
344
-
345
- // Async/Await
346
- const data = await content.getDataLoaders();
347
- ```
348
-
349
-
350
-
351
-
352
-
353
-
354
- Use this API to get all selected data loaders of the application in the form of tags.
355
-
356
- *Returned Response:*
357
-
358
-
359
-
360
-
361
- [DataLoadersSchema](#DataLoadersSchema)
362
-
363
- Success. Returns a JSON object containing all the data loaders injected in the application. Check the example shown below or refer `DataLoadersSchema` for more details.
364
-
365
-
366
-
367
-
368
- <details>
369
- <summary><i>&nbsp; Example:</i></summary>
370
-
371
- ```json
372
- {
373
- "items": [
374
- {
375
- "name": "Algolia",
376
- "is_selected": false,
377
- "type": "url",
378
- "_id": "61bc4523a7ffc7504f4de4a5",
379
- "service": "catalog",
380
- "operation_id": "fetchSuggestions",
381
- "url": "/ext/example/url"
382
- },
383
- {
384
- "name": "Algolia v3",
385
- "is_selected": false,
386
- "type": "url",
387
- "_id": "61bc452da7ffc7504f4de4a7",
388
- "service": "catalog",
389
- "operation_id": "fetchSuggestions",
390
- "url": "/ext/example/url"
391
- }
392
- ]
393
- }
394
- ```
395
- </details>
396
-
397
-
398
-
399
-
400
-
401
-
402
-
403
-
404
-
405
- ---
406
-
407
-
408
- ### getFaqs
409
- Get a list of FAQs
410
-
411
-
412
-
413
- ```javascript
414
- // Promise
415
- const promise = content.getFaqs();
416
-
417
- // Async/Await
418
- const data = await content.getFaqs();
419
- ```
420
-
421
-
422
-
423
-
424
-
425
-
426
- Use this API to get a list of frequently asked questions. Users will benefit from it when facing any issue with the website.
427
-
428
- *Returned Response:*
429
-
430
-
431
-
432
-
433
- [FaqResponseSchema](#FaqResponseSchema)
434
-
435
- Success. Returns a JSON object with question and answers. Check the example shown below or refer `FaqResponseSchema` for more details.
436
-
437
-
438
-
439
-
440
- <details>
441
- <summary><i>&nbsp; Examples:</i></summary>
442
-
443
-
444
- <details>
445
- <summary><i>&nbsp; default</i></summary>
446
-
447
- ```json
448
- {
449
- "value": {
450
- "faqs": [
451
- {
452
- "_id": "5eb2db750a8ebf497e315028",
453
- "question": "how to refer my friend",
454
- "answer": "1. Click on refer and earn image in fynd app\n2. Click on share the code\n3. Use any method for sharing\n4. Once the user activates the app with your code, both of you will get the refereal credits.",
455
- "slug": "how to refer",
456
- "application": "000000000000000000000001"
457
- }
458
- ]
459
- }
460
- }
461
- ```
462
- </details>
463
-
464
- </details>
465
-
466
-
467
-
468
-
469
-
470
-
471
-
472
-
473
-
474
- ---
475
-
476
-
477
- ### getFaqCategories
478
- Get a list of FAQ categories
479
-
480
-
481
-
482
- ```javascript
483
- // Promise
484
- const promise = content.getFaqCategories();
485
-
486
- // Async/Await
487
- const data = await content.getFaqCategories();
488
- ```
489
-
490
-
491
-
492
-
493
-
494
-
495
- FAQs can be divided into categories. Use this API to get a list of FAQ categories.
496
-
497
- *Returned Response:*
498
-
499
-
500
-
501
-
502
- [GetFaqCategoriesSchema](#GetFaqCategoriesSchema)
503
-
504
- Success. Returns a JSON object with categories of FAQ. Check the example shown below or refer `GetFaqCategoriesSchema` for more details.
505
-
506
-
507
-
508
-
509
- <details>
510
- <summary><i>&nbsp; Example:</i></summary>
511
-
512
- ```json
513
- {
514
- "categories": [
515
- {
516
- "index": 0,
517
- "children": [
518
- "6026426ae507768b168dee4b"
519
- ],
520
- "title": "Test",
521
- "_id": "60263f80c83c1f89f2863a8a",
522
- "slug": "test",
523
- "application": "000000000000000000000001"
524
- }
525
- ]
526
- }
527
- ```
528
- </details>
529
-
530
-
531
-
532
-
533
-
534
-
535
-
536
-
537
-
538
- ---
539
-
540
-
541
- ### getFaqBySlug
542
- Get an FAQ
543
-
544
-
545
-
546
- ```javascript
547
- // Promise
548
- const promise = content.getFaqBySlug({ slug : value });
549
-
550
- // Async/Await
551
- const data = await content.getFaqBySlug({ slug : value });
552
- ```
553
-
554
-
555
-
556
-
557
-
558
- | Argument | Type | Required | Description |
559
- | --------- | ----- | -------- | ----------- |
560
- | slug | string | yes | A short, human-readable, URL-friendly identifier of an FAQ. You can get slug value from the endpoint /service/application/content/v1.0/faq. |
561
-
562
-
563
-
564
- Use this API to get a particular FAQ by its slug.
565
-
566
- *Returned Response:*
567
-
568
-
569
-
570
-
571
- [FaqSchema](#FaqSchema)
572
-
573
- Success. Returns a question and answer by its slug. Check the example shown below or refer `FaqSchema` for more details.
574
-
575
-
576
-
577
-
578
- <details>
579
- <summary><i>&nbsp; Example:</i></summary>
580
-
581
- ```json
582
- {
583
- "_id": "5eb2db750a8ebf497e315028",
584
- "question": "how to refer my friend",
585
- "answer": "1. Click on refer and earn image in fynd app\n2. Click on share the code\n3. Use any method for sharing\n4. Once the user activates the app with your code, both of you will get the refereal credits.",
586
- "slug": "how to refer",
587
- "application": "000000000000000000000001"
588
- }
589
- ```
590
- </details>
591
-
592
-
593
-
594
-
595
-
596
-
597
-
598
-
599
-
600
- ---
601
-
602
-
603
- ### getFaqCategoryBySlug
604
- Get the FAQ category
605
-
606
-
607
-
608
- ```javascript
609
- // Promise
610
- const promise = content.getFaqCategoryBySlug({ slug : value });
611
-
612
- // Async/Await
613
- const data = await content.getFaqCategoryBySlug({ slug : value });
614
- ```
615
-
616
-
617
-
618
-
619
-
620
- | Argument | Type | Required | Description |
621
- | --------- | ----- | -------- | ----------- |
622
- | slug | string | yes | A short, human-readable, URL-friendly identifier of an FAQ category. You can get slug value from the endpoint /service/application/content/v1.0/faq/categories. |
623
-
624
-
625
-
626
- FAQs can be divided into categories. Use this API to get the category to which an FAQ belongs.
627
-
628
- *Returned Response:*
629
-
630
-
631
-
632
-
633
- [GetFaqCategoryBySlugSchema](#GetFaqCategoryBySlugSchema)
634
-
635
- Success. Returns a FAQ category with its slug. Check the example shown below or refer `GetFaqCategoryBySlugSchema` for more details.
636
-
637
-
638
-
639
-
640
- <details>
641
- <summary><i>&nbsp; Example:</i></summary>
642
-
643
- ```json
644
- {
645
- "category": {
646
- "index": 0,
647
- "children": [
648
- {
649
- "_id": "6026426ae507768b168dee4b",
650
- "question": "question 1",
651
- "answer": "answer 1",
652
- "slug": "question-1",
653
- "application": "000000000000000000000001"
654
- }
655
- ],
656
- "_id": "60263f80c83c1f89f2863a8a",
657
- "slug": "test",
658
- "title": "Test",
659
- "application": "000000000000000000000001"
660
- }
661
- }
662
- ```
663
- </details>
664
-
665
-
666
-
667
-
668
-
669
-
670
-
671
-
672
-
673
- ---
674
-
675
-
676
- ### getFaqsByCategorySlug
677
- Get FAQs using the slug of FAQ category
678
-
679
-
680
-
681
- ```javascript
682
- // Promise
683
- const promise = content.getFaqsByCategorySlug({ slug : value });
684
-
685
- // Async/Await
686
- const data = await content.getFaqsByCategorySlug({ slug : value });
687
- ```
688
-
689
-
690
-
691
-
692
-
693
- | Argument | Type | Required | Description |
694
- | --------- | ----- | -------- | ----------- |
695
- | slug | string | yes | A short, human-readable, URL-friendly identifier of an FAQ category. You can get slug value from the endpoint /service/application/content/v1.0/faq/categories. |
696
-
697
-
698
-
699
- FAQs can be divided into categories. Use this API to get all the FAQs belonging to a category by using the category slug.
700
-
701
- *Returned Response:*
702
-
703
-
704
-
705
-
706
- [GetFaqSchema](#GetFaqSchema)
707
-
708
- Success. Returns a categorized list of question and answers using its slug. Check the example shown below or refer `GetFaqSchema` for more details.
709
-
710
-
711
-
712
-
713
- <details>
714
- <summary><i>&nbsp; Example:</i></summary>
715
-
716
- ```json
717
- {
718
- "faqs": [
719
- {
720
- "_id": "60265b64e507768b168dee4d",
721
- "question": "question 1",
722
- "answer": "answer 1",
723
- "slug": "question-1",
724
- "application": "000000000000000000000001"
725
- }
726
- ]
727
- }
728
- ```
729
- </details>
730
-
731
-
732
-
733
-
734
-
735
-
736
-
737
-
738
-
739
- ---
740
-
741
-
742
- ### getLandingPage
743
- Get the landing page
744
-
745
-
746
-
747
- ```javascript
748
- // Promise
749
- const promise = content.getLandingPage();
750
-
751
- // Async/Await
752
- const data = await content.getLandingPage();
753
- ```
754
-
755
-
756
-
757
-
758
-
759
-
760
- Landing page is the first page that a prospect lands upon while visiting a website. Use this API to fetch the details of a landing page.
761
-
762
- *Returned Response:*
763
-
764
-
765
-
766
-
767
- [LandingPageSchema](#LandingPageSchema)
768
-
769
- Success. Returns the landing page details. Check the example shown below or refer `LandingPageSchema` for more details.
770
-
771
-
772
-
773
-
774
- <details>
775
- <summary><i>&nbsp; Examples:</i></summary>
776
-
777
-
778
- <details>
779
- <summary><i>&nbsp; default</i></summary>
780
-
781
- ```json
782
- {
783
- "value": {
784
- "_id": "5eaa451a21a4dd75f0fd96c5",
785
- "application": "5d3ebd89f540e7506b8b3548",
786
- "_custom_json": null,
787
- "slug": "pnc-landing",
788
- "action": {
789
- "page": {
790
- "type": "home"
791
- },
792
- "popup": {},
793
- "type": "page"
794
- },
795
- "platform": [
796
- "web"
797
- ],
798
- "created_by": {
799
- "id": "000000000000000000000000"
800
- },
801
- "date_meta": {
802
- "created_on": "2020-04-30T03:25:14.549Z",
803
- "modified_on": "2020-04-30T03:25:14.549Z"
804
- },
805
- "archived": false
806
- }
807
- }
808
- ```
809
- </details>
810
-
811
- </details>
812
-
813
-
814
-
815
-
816
-
817
-
818
-
819
-
820
-
821
- ---
822
-
823
-
824
- ### getLegalInformation
825
- Get legal information
826
-
827
-
828
-
829
- ```javascript
830
- // Promise
831
- const promise = content.getLegalInformation();
832
-
833
- // Async/Await
834
- const data = await content.getLegalInformation();
835
- ```
836
-
837
-
838
-
839
-
840
-
841
-
842
- Use this API to get the legal information of an application, which includes Privacy Policy, Terms and Conditions, Shipping Policy and FAQs regarding the usage of the application.
843
-
844
- *Returned Response:*
845
-
846
-
847
-
848
-
849
- [ApplicationLegal](#ApplicationLegal)
850
-
851
- Success. Returns the T&C, Shipping Policy, Privacy Policy and Return Policy. Check the example shown below or refer `ApplicationLegal` for more details.
852
-
853
-
854
-
855
-
856
- <details>
857
- <summary><i>&nbsp; Examples:</i></summary>
858
-
859
-
860
- <details>
861
- <summary><i>&nbsp; Success</i></summary>
862
-
863
- ```json
864
- {
865
- "value": {
866
- "tnc": "**Terms and Conditions test**",
867
- "policy": "**Privacy policy test**",
868
- "shipping": "**Shipping term and conditions**",
869
- "returns": "**Terms & conditions for returns **",
870
- "_id": "5e8b2b96abe7dc94c02c9ac9",
871
- "application": "000000000000000000000001",
872
- "faq": [
873
- {
874
- "question": "New Question",
875
- "answer": "New Answer"
876
- },
877
- {
878
- "question": "New",
879
- "answer": "sdfghjhg"
880
- },
881
- {
882
- "question": "test",
883
- "answer": "test"
884
- },
885
- {
886
- "question": "New Test",
887
- "answer": "New Test answer"
888
- },
889
- {
890
- "question": "test",
891
- "answer": "test"
892
- }
893
- ],
894
- "created_at": "2020-04-06T13:16:06.818Z",
895
- "updated_at": "2020-07-16T09:47:40.751Z",
896
- "__v": 260
897
- }
898
- }
899
- ```
900
- </details>
901
-
902
- </details>
903
-
904
-
905
-
906
-
907
-
908
-
909
-
910
-
911
-
912
- ---
913
-
914
-
915
- ### getNavigations
916
- Get the navigation
917
-
918
-
919
-
920
- ```javascript
921
- // Promise
922
- const promise = content.getNavigations({ pageNo : value,
923
- pageSize : value });
924
-
925
- // Async/Await
926
- const data = await content.getNavigations({ pageNo : value,
927
- pageSize : value });
928
- ```
929
-
930
-
931
-
932
-
933
-
934
- | Argument | Type | Required | Description |
935
- | --------- | ----- | -------- | ----------- |
936
- | pageNo | number | no | The page number to navigate through the given set of results. Default value is 1. |
937
- | pageSize | number | no | The number of items to retrieve in each page. |
938
-
939
-
940
-
941
- Use this API to fetch the navigations details which includes the items of the navigation pane. It also shows the links and sub-navigations.
942
-
943
- *Returned Response:*
944
-
945
-
946
-
947
-
948
- [NavigationGetResponse](#NavigationGetResponse)
949
-
950
- Success. Returns a JSON object with navigation details. Check the example shown below or refer `NavigationGetResponse` for more details.
951
-
952
-
953
-
954
-
955
- <details>
956
- <summary><i>&nbsp; Examples:</i></summary>
957
-
958
-
959
- <details>
960
- <summary><i>&nbsp; default</i></summary>
961
-
962
- ```json
963
- {
964
- "value": {
965
- "items": [
966
- {
967
- "_id": "5ffbd9b90ac98678ae0458d7",
968
- "application": "000000000000000000000001",
969
- "_custom_json": null,
970
- "name": "temp",
971
- "slug": "temp",
972
- "platform": "web",
973
- "position": "top",
974
- "orientation": "landscape",
975
- "navigation": [
976
- {
977
- "display": "Home",
978
- "image": "https://res.cloudinary.com/dwzm9bysq/image/upload/v1567148153/production/system/icons/mystore-tab_y0dqzt.png",
979
- "sort_order": 1,
980
- "type": "",
981
- "action": {
982
- "page": {
983
- "url": "/",
984
- "type": "home"
985
- },
986
- "popup": {},
987
- "type": "page"
988
- },
989
- "active": true,
990
- "tags": {
991
- "type": "array",
992
- "items": {
993
- "type": "string"
994
- }
995
- },
996
- "acl": [
997
- "all"
998
- ],
999
- "_locale_language": {
1000
- "hi": {
1001
- "display": ""
1002
- },
1003
- "ar": {
1004
- "display": ""
1005
- },
1006
- "en_us": {
1007
- "display": ""
1008
- }
1009
- },
1010
- "sub_navigation": [
1011
- {
1012
- "display": "Brands",
1013
- "image": "https://res.cloudinary.com/dwzm9bysq/image/upload/v1567148153/production/system/icons/brands-tab_sfinpk.png",
1014
- "sort_order": 1,
1015
- "type": "",
1016
- "action": {
1017
- "page": {
1018
- "url": "/brands/",
1019
- "type": "brands"
1020
- },
1021
- "popup": {},
1022
- "type": "page"
1023
- },
1024
- "active": true,
1025
- "tags": null,
1026
- "acl": [
1027
- "all"
1028
- ],
1029
- "_locale_language": {
1030
- "hi": {
1031
- "display": ""
1032
- },
1033
- "ar": {
1034
- "display": ""
1035
- },
1036
- "en_us": {
1037
- "display": ""
1038
- }
1039
- }
1040
- }
1041
- ]
1042
- },
1043
- {
1044
- "display": "Collections",
1045
- "image": "https://res.cloudinary.com/dwzm9bysq/image/upload/v1567148153/production/system/icons/collections-tab_a0tg9c.png",
1046
- "sort_order": 2,
1047
- "type": "",
1048
- "action": {
1049
- "page": {
1050
- "url": "/collections/",
1051
- "type": "collections"
1052
- },
1053
- "popup": {},
1054
- "type": "page"
1055
- },
1056
- "active": true,
1057
- "tags": null,
1058
- "acl": [
1059
- "all"
1060
- ],
1061
- "_locale_language": {
1062
- "hi": {
1063
- "display": ""
1064
- },
1065
- "ar": {
1066
- "display": ""
1067
- },
1068
- "en_us": {
1069
- "display": ""
1070
- }
1071
- },
1072
- "sub_navigation": [
1073
- {
1074
- "display": "Categories",
1075
- "image": "https://res.cloudinary.com/dwzm9bysq/image/upload/v1567148154/production/system/icons/categories-tab_ss8e0q.png",
1076
- "sort_order": 1,
1077
- "type": "",
1078
- "action": {
1079
- "page": {
1080
- "url": "/categories/",
1081
- "type": "categories"
1082
- },
1083
- "popup": {},
1084
- "type": "page"
1085
- },
1086
- "active": true,
1087
- "tags": null,
1088
- "acl": [
1089
- "all"
1090
- ],
1091
- "_locale_language": {
1092
- "hi": {
1093
- "display": ""
1094
- },
1095
- "ar": {
1096
- "display": ""
1097
- },
1098
- "en_us": {
1099
- "display": ""
1100
- }
1101
- }
1102
- }
1103
- ]
1104
- },
1105
- {
1106
- "display": "Primary Menu",
1107
- "image": "",
1108
- "sort_order": 3,
1109
- "type": "",
1110
- "action": {
1111
- "page": {
1112
- "type": "home"
1113
- },
1114
- "popup": {},
1115
- "type": "page"
1116
- },
1117
- "active": true,
1118
- "tags": null,
1119
- "acl": [
1120
- "all"
1121
- ],
1122
- "_locale_language": {
1123
- "hi": {
1124
- "display": ""
1125
- },
1126
- "ar": {
1127
- "display": ""
1128
- },
1129
- "en_us": {
1130
- "display": ""
1131
- }
1132
- }
1133
- }
1134
- ],
1135
- "created_by": {
1136
- "id": "000000000000000000000000"
1137
- },
1138
- "date_meta": {
1139
- "created_on": "2021-01-11T04:53:13.585Z",
1140
- "modified_on": "2021-01-14T10:24:34.485Z"
1141
- }
1142
- }
1143
- ],
1144
- "page": {
1145
- "type": "number",
1146
- "current": 1,
1147
- "size": 1,
1148
- "item_total": 2,
1149
- "has_next": true
1150
- }
1151
- }
1152
- }
1153
- ```
1154
- </details>
1155
-
1156
- </details>
1157
-
1158
-
1159
-
1160
-
1161
-
1162
-
1163
-
1164
-
1165
-
1166
- ---
1167
-
1168
-
1169
- ### getSEOConfiguration
1170
- Get the SEO of an application
1171
-
1172
-
1173
-
1174
- ```javascript
1175
- // Promise
1176
- const promise = content.getSEOConfiguration();
1177
-
1178
- // Async/Await
1179
- const data = await content.getSEOConfiguration();
1180
- ```
1181
-
1182
-
1183
-
1184
-
1185
-
1186
-
1187
- Use this API to get the SEO details of an application, which includes a robot.txt, meta-tags and sitemap.
1188
-
1189
- *Returned Response:*
1190
-
1191
-
1192
-
1193
-
1194
- [SeoComponent](#SeoComponent)
1195
-
1196
- Success. Returns a JSON object SEO details such as robots.txt, meta-tags, and sitemap. Check the example shown below or refer `SeoComponent` for more details.
1197
-
1198
-
1199
-
1200
-
1201
- <details>
1202
- <summary><i>&nbsp; Examples:</i></summary>
1203
-
1204
-
1205
- <details>
1206
- <summary><i>&nbsp; Success</i></summary>
1207
-
1208
- ```json
1209
- {
1210
- "value": {
1211
- "seo": {
1212
- "details": {
1213
- "title": "Zyosa Zyosa"
1214
- },
1215
- "robots_txt": "User-agent: * \nAllow: / \nsancisciasn xwsaixjowqnxwsiwjs",
1216
- "sitemap_enabled": false,
1217
- "cannonical_enabled": false,
1218
- "_id": "6009819ee463ad40de397eb2",
1219
- "app": "000000000000000000000001",
1220
- "created_at": "2021-01-21T13:29:02.543Z",
1221
- "updated_at": "2021-02-05T06:36:16.048Z",
1222
- "__v": 11,
1223
- "custom_meta_tags": [
1224
- {
1225
- "name": "test 0000",
1226
- "content": "<meta name=\"test\" content=\"0000 cn dcje dcj rejre cjrenurenc \">",
1227
- "_id": "6017c301bde3c21dbb13b284"
1228
- },
1229
- {
1230
- "name": "cwdcdc",
1231
- "content": "<meta content=\"wdcewdewc\">",
1232
- "_id": "6017c675bde3c22cfb13b290"
1233
- }
1234
- ]
1235
- }
1236
- }
1237
- }
1238
- ```
1239
- </details>
1240
-
1241
- </details>
1242
-
1243
-
1244
-
1245
-
1246
-
1247
-
1248
-
1249
-
1250
-
1251
- ---
1252
-
1253
-
1254
- ### getSlideshows
1255
- Get the slideshows
1256
-
1257
-
1258
-
1259
- ```javascript
1260
- // Promise
1261
- const promise = content.getSlideshows({ pageNo : value,
1262
- pageSize : value });
1263
-
1264
- // Async/Await
1265
- const data = await content.getSlideshows({ pageNo : value,
1266
- pageSize : value });
1267
- ```
1268
-
1269
-
1270
-
1271
-
1272
-
1273
- | Argument | Type | Required | Description |
1274
- | --------- | ----- | -------- | ----------- |
1275
- | pageNo | number | no | The page number to navigate through the given set of results. Default value is 1. |
1276
- | pageSize | number | no | The number of items to retrieve in each page. |
1277
-
1278
-
1279
-
1280
- Use this API to get a list of slideshows along with their details.
1281
-
1282
- *Returned Response:*
1283
-
1284
-
1285
-
1286
-
1287
- [SlideshowGetResponse](#SlideshowGetResponse)
1288
-
1289
- Success. Check the example shown below or refer `SlideshowGetResponse` for more details.
1290
-
1291
-
1292
-
1293
-
1294
- <details>
1295
- <summary><i>&nbsp; Examples:</i></summary>
1296
-
1297
-
1298
- <details>
1299
- <summary><i>&nbsp; default</i></summary>
1300
-
1301
- ```json
1302
- {
1303
- "value": {
1304
- "items": [
1305
- {
1306
- "date_meta": {
1307
- "created_on": "2021-03-14T05:27:12.319Z",
1308
- "modified_on": "2021-03-14T05:27:12.319Z"
1309
- },
1310
- "archived": false,
1311
- "_id": "604d9eb975e9d136bb1b8b83",
1312
- "configuration": {
1313
- "start_on_launch": false,
1314
- "duration": 50,
1315
- "sleep_time": 100,
1316
- "slide_direction": "horizontal"
1317
- },
1318
- "slug": "ss-sfsd-updated",
1319
- "platform": "ios",
1320
- "media": [
1321
- {
1322
- "auto_decide_duration": false,
1323
- "type": "image",
1324
- "url": "https://res.cloudinary.com/dwzm9bysq/image/upload/v1567148153/production/system/icons/brands-tab_sfinpk.png",
1325
- "bg_color": "#ffffff",
1326
- "duration": 10,
1327
- "action": {
1328
- "type": ""
1329
- }
1330
- },
1331
- {
1332
- "auto_decide_duration": true,
1333
- "type": "youtube",
1334
- "url": "https://www.youtube.com/embed/9vJRopau0g0",
1335
- "bg_color": "#ffffff",
1336
- "duration": 909,
1337
- "action": {
1338
- "type": ""
1339
- }
1340
- }
1341
- ],
1342
- "application": "5cd3db5e9d692cfe5302a7bb",
1343
- "active": true,
1344
- "__v": 0
1345
- }
1346
- ],
1347
- "page": {
1348
- "type": "number",
1349
- "current": 1,
1350
- "size": 1,
1351
- "item_total": 2,
1352
- "has_next": true
1353
- }
1354
- }
1355
- }
1356
- ```
1357
- </details>
1358
-
1359
- </details>
1360
-
1361
-
1362
-
1363
-
1364
-
1365
-
1366
-
1367
-
1368
-
1369
- ---
1370
-
1371
-
1372
- ### getSlideshow
1373
- Get a slideshow
1374
-
1375
-
1376
-
1377
- ```javascript
1378
- // Promise
1379
- const promise = content.getSlideshow({ slug : value });
1380
-
1381
- // Async/Await
1382
- const data = await content.getSlideshow({ slug : value });
1383
- ```
1384
-
1385
-
1386
-
1387
-
1388
-
1389
- | Argument | Type | Required | Description |
1390
- | --------- | ----- | -------- | ----------- |
1391
- | slug | string | yes | A short, human-readable, URL-friendly identifier of a slideshow. You can get slug value from the endpoint /service/application/content/v1.0/slideshow/. |
1392
-
1393
-
1394
-
1395
- A slideshow is a group of images, videos or a combination of both that are shown on the website in the form of slides. Use this API to fetch a slideshow using its `slug`.
1396
-
1397
- *Returned Response:*
1398
-
1399
-
1400
-
1401
-
1402
- [SlideshowSchema](#SlideshowSchema)
1403
-
1404
- Success. Returns the details of how a slideshow is configured. Check the example shown below or refer `SlideshowSchema` for more details.
1405
-
1406
-
1407
-
1408
-
1409
- <details>
1410
- <summary><i>&nbsp; Examples:</i></summary>
1411
-
1412
-
1413
- <details>
1414
- <summary><i>&nbsp; default</i></summary>
1415
-
1416
- ```json
1417
- {
1418
- "value": {
1419
- "date_meta": {
1420
- "created_on": "2021-03-14T05:27:12.319Z",
1421
- "modified_on": "2021-03-14T05:27:12.319Z"
1422
- },
1423
- "archived": false,
1424
- "_id": "604d9eb975e9d136bb1b8b83",
1425
- "configuration": {
1426
- "start_on_launch": false,
1427
- "duration": 50,
1428
- "sleep_time": 100,
1429
- "slide_direction": "horizontal"
1430
- },
1431
- "slug": "ss-sfsd-updated",
1432
- "platform": "ios",
1433
- "media": [
1434
- {
1435
- "auto_decide_duration": false,
1436
- "type": "image",
1437
- "url": "https://res.cloudinary.com/dwzm9bysq/image/upload/v1567148153/production/system/icons/brands-tab_sfinpk.png",
1438
- "bg_color": "#ffffff",
1439
- "duration": 10,
1440
- "action": {
1441
- "type": ""
1442
- }
1443
- },
1444
- {
1445
- "auto_decide_duration": true,
1446
- "type": "youtube",
1447
- "url": "https://www.youtube.com/embed/9vJRopau0g0",
1448
- "bg_color": "#ffffff",
1449
- "duration": 909,
1450
- "action": {
1451
- "type": ""
1452
- }
1453
- }
1454
- ],
1455
- "application": "5cd3db5e9d692cfe5302a7bb",
1456
- "active": true
1457
- }
1458
- }
1459
- ```
1460
- </details>
1461
-
1462
- </details>
1463
-
1464
-
1465
-
1466
-
1467
-
1468
-
1469
-
1470
-
1471
-
1472
- ---
1473
-
1474
-
1475
- ### getSupportInformation
1476
- Get the support information
1477
-
1478
-
1479
-
1480
- ```javascript
1481
- // Promise
1482
- const promise = content.getSupportInformation();
1483
-
1484
- // Async/Await
1485
- const data = await content.getSupportInformation();
1486
- ```
1487
-
1488
-
1489
-
1490
-
1491
-
1492
-
1493
- Use this API to get contact details for customer support including emails and phone numbers.
1494
-
1495
- *Returned Response:*
1496
-
1497
-
1498
-
1499
-
1500
- [Support](#Support)
1501
-
1502
- Success. Returns all support information including email and phone number. Check the example shown below or refer `Support` for more details.
1503
-
1504
-
1505
-
1506
-
1507
- <details>
1508
- <summary><i>&nbsp; Examples:</i></summary>
1509
-
1510
-
1511
- <details>
1512
- <summary><i>&nbsp; default</i></summary>
1513
-
1514
- ```json
1515
- {
1516
- "value": {
1517
- "_id": "5ea4980b87a7944094216193",
1518
- "config_type": "app",
1519
- "application": "000000000000000000000001",
1520
- "created_at": "2020-04-25T20:05:31.300Z",
1521
- "updated_at": "2020-12-04T10:48:12.194Z",
1522
- "contact": {
1523
- "phone": {
1524
- "active": true,
1525
- "phone": [
1526
- {
1527
- "key": "Jane Doe",
1528
- "code": "91",
1529
- "number": "9988776655"
1530
- }
1531
- ]
1532
- },
1533
- "email": {
1534
- "active": false,
1535
- "email": []
1536
- }
1537
- },
1538
- "created": true
1539
- }
1540
- }
1541
- ```
1542
- </details>
1543
-
1544
- </details>
1545
-
1546
-
1547
-
1548
-
1549
-
1550
-
1551
-
1552
-
1553
-
1554
- ---
1555
-
1556
-
1557
- ### getTags
1558
- Get the tags associated with an application
1559
-
1560
-
1561
-
1562
- ```javascript
1563
- // Promise
1564
- const promise = content.getTags();
1565
-
1566
- // Async/Await
1567
- const data = await content.getTags();
1568
- ```
1569
-
1570
-
1571
-
1572
-
1573
-
1574
-
1575
- Use this API to get all the CSS and JS injected in the application in the form of tags.
1576
-
1577
- *Returned Response:*
1578
-
1579
-
1580
-
1581
-
1582
- [TagsSchema](#TagsSchema)
1583
-
1584
- Success. Returns a JSON object containing all the tags injected in the application. Check the example shown below or refer `TagsSchema` for more details.
1585
-
1586
-
1587
-
1588
-
1589
- <details>
1590
- <summary><i>&nbsp; Example:</i></summary>
1591
-
1592
- ```json
1593
- {
1594
- "application": "000000000000000000000001",
1595
- "_id": "5f7c37b2dd0144bb3a353c5f",
1596
- "tags": [
1597
- {
1598
- "name": "Tapfiliate JS",
1599
- "sub_type": "external",
1600
- "_id": "5f7c37b2dd0144f1f8353c60",
1601
- "type": "js",
1602
- "url": "https://script.tapfiliate.com/tapfiliate.js",
1603
- "position": "body-bottom",
1604
- "attributes": {
1605
- "async": true
1606
- }
1607
- }
1608
- ]
1609
- }
1610
- ```
1611
- </details>
1612
-
1613
-
1614
-
1615
-
1616
-
1617
-
1618
-
1619
-
1620
-
1621
- ---
1622
-
1623
-
1624
- ### getPage
1625
- Get a page
1626
-
1627
-
1628
-
1629
- ```javascript
1630
- // Promise
1631
- const promise = content.getPage({ slug : value,
1632
- rootId : value });
1633
-
1634
- // Async/Await
1635
- const data = await content.getPage({ slug : value,
1636
- rootId : value });
1637
- ```
1638
-
1639
-
1640
-
1641
-
1642
-
1643
- | Argument | Type | Required | Description |
1644
- | --------- | ----- | -------- | ----------- |
1645
- | slug | string | yes | A short, human-readable, URL-friendly identifier of a page. You can get slug value from the endpoint /service/application/content/v2.0/pages/. |
1646
- | rootId | string | no | ID given to the HTML element |
1647
-
1648
-
1649
-
1650
- Use this API to get the details of a page using its slug. Details include the title, seo, publish status, feature image, tags, meta, etc.
1651
-
1652
- *Returned Response:*
1653
-
1654
-
1655
-
1656
-
1657
- [PageSchema](#PageSchema)
1658
-
1659
- Success. Returns a JSON object with page details. Check the example shown below or refer `CustomPageSchema` for more details.
1660
-
1661
-
1662
-
1663
-
1664
- <details>
1665
- <summary><i>&nbsp; Examples:</i></summary>
1666
-
1667
-
1668
- <details>
1669
- <summary><i>&nbsp; default</i></summary>
1670
-
1671
- ```json
1672
- {
1673
- "value": {
1674
- "date_meta": {
1675
- "created_on": "2021-03-16T08:24:19.197Z",
1676
- "modified_on": "2021-03-16T08:24:19.197Z"
1677
- },
1678
- "tags": [
1679
- "my first page"
1680
- ],
1681
- "published": true,
1682
- "component_ids": [],
1683
- "archived": false,
1684
- "_id": "60506dcad18cb33946026862",
1685
- "title": "my first page",
1686
- "slug": "1st_page",
1687
- "feature_image": {
1688
- "secure_url": "https://google.com/some-image"
1689
- },
1690
- "content_path": "https://hdn-1.fynd.com/company/1526/applications/61012f6a9250ccd1b9ef8a1d/pages/content/page_slug.html",
1691
- "platform": "web",
1692
- "description": "hey this is my first page",
1693
- "visibility": {
1694
- "test": true
1695
- },
1696
- "_schedule": {
1697
- "start": "2021-04-23T23:50:00.000Z",
1698
- "next_schedule": [
1699
- {}
1700
- ]
1701
- },
1702
- "seo": {
1703
- "title": "my first page",
1704
- "description": "hey this is my first page",
1705
- "image": {
1706
- "url": ""
1707
- }
1708
- },
1709
- "type": "rawhtml",
1710
- "application": "000000000000000000000001",
1711
- "orientation": "portrait",
1712
- "page_meta": []
1713
- }
1714
- }
1715
- ```
1716
- </details>
1717
-
1718
- </details>
1719
-
1720
-
1721
-
1722
-
1723
-
1724
-
1725
-
1726
-
1727
-
1728
- ---
1729
-
1730
-
1731
- ### getPages
1732
- Get all pages
1733
-
1734
-
1735
-
1736
- ```javascript
1737
- // Promise
1738
- const promise = content.getPages({ pageNo : value,
1739
- pageSize : value });
1740
-
1741
- // Async/Await
1742
- const data = await content.getPages({ pageNo : value,
1743
- pageSize : value });
1744
- ```
1745
-
1746
-
1747
-
1748
-
1749
-
1750
- | Argument | Type | Required | Description |
1751
- | --------- | ----- | -------- | ----------- |
1752
- | pageNo | number | no | The page number to navigate through the given set of results. Default value is 1. |
1753
- | pageSize | number | no | The number of items to retrieve in each page. |
1754
-
1755
-
1756
-
1757
- Use this API to get a list of pages.
1758
-
1759
- *Returned Response:*
1760
-
1761
-
1762
-
1763
-
1764
- [PageGetResponse](#PageGetResponse)
1765
-
1766
- Success. Returns a list of pages along with their details. Check the example shown below or refer `PageGetStorefrontResponse` for more details.
1767
-
1768
-
1769
-
1770
-
1771
- <details>
1772
- <summary><i>&nbsp; Examples:</i></summary>
1773
-
1774
-
1775
- <details>
1776
- <summary><i>&nbsp; default</i></summary>
1777
-
1778
- ```json
1779
- {
1780
- "value": {
1781
- "items": [
1782
- {
1783
- "date_meta": {
1784
- "created_on": "2021-03-14T06:49:03.945Z",
1785
- "modified_on": "2021-03-14T06:49:03.945Z"
1786
- },
1787
- "tags": [
1788
- "my first page"
1789
- ],
1790
- "_id": "604db275b3ae202873964d94",
1791
- "content_path": "https://hdn-1.fynd.com/company/1526/applications/61012f6a9250ccd1b9ef8a1d/pages/content/page_slug.html",
1792
- "title": "test-page",
1793
- "slug": "test-page",
1794
- "published": true,
1795
- "_schedule": {
1796
- "next_schedule": [
1797
- {}
1798
- ],
1799
- "start": "2021-04-08T07:15:13.000Z",
1800
- "end": "2021-04-10T02:00:00.000Z"
1801
- },
1802
- "feature_image": {
1803
- "secure_url": "https://google.com/some-image"
1804
- },
1805
- "seo": {
1806
- "title": "my first page",
1807
- "description": "hey this is my first page",
1808
- "image": {
1809
- "url": ""
1810
- }
1811
- },
1812
- "application": "000000000000000000000001",
1813
- "author": {
1814
- "name": "Abhinav Maurya"
1815
- }
1816
- }
1817
- ],
1818
- "page": {
1819
- "type": "number",
1820
- "current": 1,
1821
- "size": 1,
1822
- "item_total": 2,
1823
- "has_next": true
1824
- }
1825
- }
1826
- }
1827
- ```
1828
- </details>
1829
-
1830
- </details>
1831
-
1832
-
1833
-
1834
-
1835
-
1836
-
1837
-
1838
-
1839
-
1840
- ---
1841
-
1842
-
1843
-
1844
- ### Schemas
1845
-
1846
-
1847
-
1848
- #### [ApplicationLegal](#ApplicationLegal)
1849
-
1850
- | Properties | Type | Nullable | Description |
1851
- | ---------- | ---- | -------- | ----------- |
1852
- | application | string | no | |
1853
- | tnc | string | no | |
1854
- | policy | string | no | |
1855
- | shipping | string | no | |
1856
- | returns | string | no | |
1857
- | faq | [[ApplicationLegalFAQ](#ApplicationLegalFAQ)] | no | |
1858
- | _id | string | no | |
1859
- | updated_at | string | no | |
1860
- | created_at | string | no | |
1861
-
1862
- ---
1863
-
1864
-
1865
-
1866
-
1867
- #### [ApplicationLegalFAQ](#ApplicationLegalFAQ)
1868
-
1869
- | Properties | Type | Nullable | Description |
1870
- | ---------- | ---- | -------- | ----------- |
1871
- | question | string | no | |
1872
- | answer | string | no | |
1873
-
1874
- ---
1875
-
1876
-
1877
-
1878
-
1879
- #### [PathMappingSchema](#PathMappingSchema)
1880
-
1881
- | Properties | Type | Nullable | Description |
1882
- | ---------- | ---- | -------- | ----------- |
1883
- | application | string | no | |
1884
- | _id | string | no | |
1885
- | redirect_from | string | no | |
1886
- | redirect_to | string | no | |
1887
- | updated_at | string | no | |
1888
- | created_at | string | no | |
1889
- | __source | [PathSourceSchema](#PathSourceSchema) | no | |
1890
-
1891
- ---
1892
-
1893
-
1894
-
1895
-
1896
- #### [PathSourceSchema](#PathSourceSchema)
1897
-
1898
- | Properties | Type | Nullable | Description |
1899
- | ---------- | ---- | -------- | ----------- |
1900
- | type | string | no | |
1901
- | id | string | no | |
1902
-
1903
- ---
1904
-
1905
-
1906
-
1907
-
1908
- #### [SeoComponent](#SeoComponent)
1909
-
1910
- | Properties | Type | Nullable | Description |
1911
- | ---------- | ---- | -------- | ----------- |
1912
- | seo | [SeoSchema](#SeoSchema) | no | |
1913
-
1914
- ---
1915
-
1916
-
1917
-
1918
-
1919
- #### [SeoSchema](#SeoSchema)
1920
-
1921
- | Properties | Type | Nullable | Description |
1922
- | ---------- | ---- | -------- | ----------- |
1923
- | app | string | no | |
1924
- | _id | string | no | |
1925
- | robots_txt | string | no | |
1926
- | sitemap_enabled | boolean | no | |
1927
- | cannonical_enabled | boolean | no | |
1928
- | custom_meta_tags | [[CustomMetaTag](#CustomMetaTag)] | no | |
1929
- | details | [Detail](#Detail) | no | |
1930
- | created_at | string | no | |
1931
- | updated_at | string | no | |
1932
-
1933
- ---
1934
-
1935
-
1936
-
1937
-
1938
- #### [CustomMetaTag](#CustomMetaTag)
1939
-
1940
- | Properties | Type | Nullable | Description |
1941
- | ---------- | ---- | -------- | ----------- |
1942
- | name | string | no | |
1943
- | content | string | no | |
1944
- | _id | string | no | |
1945
-
1946
- ---
1947
-
1948
-
1949
-
1950
-
1951
- #### [Detail](#Detail)
1952
-
1953
- | Properties | Type | Nullable | Description |
1954
- | ---------- | ---- | -------- | ----------- |
1955
- | title | string | no | |
1956
- | description | string | no | |
1957
-
1958
- ---
1959
-
1960
-
1961
-
1962
-
1963
- #### [AnnouncementPageSchema](#AnnouncementPageSchema)
1964
-
1965
- | Properties | Type | Nullable | Description |
1966
- | ---------- | ---- | -------- | ----------- |
1967
- | page_slug | string | no | |
1968
- | type | string | no | |
1969
-
1970
- ---
1971
-
1972
-
1973
-
1974
-
1975
- #### [EditorMeta](#EditorMeta)
1976
-
1977
- | Properties | Type | Nullable | Description |
1978
- | ---------- | ---- | -------- | ----------- |
1979
- | foreground_color | string | no | |
1980
- | background_color | string | no | |
1981
- | content_type | string | no | |
1982
- | content | string | no | |
1983
-
1984
- ---
1985
-
1986
-
1987
-
1988
-
1989
- #### [AnnouncementAuthorSchema](#AnnouncementAuthorSchema)
1990
-
1991
- | Properties | Type | Nullable | Description |
1992
- | ---------- | ---- | -------- | ----------- |
1993
- | created_by | string | no | |
1994
- | modified_by | string | no | |
1995
-
1996
- ---
1997
-
1998
-
1999
-
2000
-
2001
- #### [AdminAnnouncementSchema](#AdminAnnouncementSchema)
2002
-
2003
- | Properties | Type | Nullable | Description |
2004
- | ---------- | ---- | -------- | ----------- |
2005
- | _id | string | no | |
2006
- | platforms | [string] | no | |
2007
- | title | string | no | |
2008
- | announcement | string | no | |
2009
- | pages | [[AnnouncementPageSchema](#AnnouncementPageSchema)] | no | |
2010
- | editor_meta | [EditorMeta](#EditorMeta) | no | |
2011
- | author | [AnnouncementAuthorSchema](#AnnouncementAuthorSchema) | no | |
2012
- | created_at | string | no | |
2013
- | app | string | no | |
2014
- | modified_at | string | no | |
2015
- | _schedule | [ScheduleSchema](#ScheduleSchema) | no | |
2016
-
2017
- ---
2018
-
2019
-
2020
-
2021
-
2022
- #### [ScheduleSchema](#ScheduleSchema)
2023
-
2024
- | Properties | Type | Nullable | Description |
2025
- | ---------- | ---- | -------- | ----------- |
2026
- | cron | string | no | |
2027
- | start | string | no | |
2028
- | end | string | no | |
2029
- | duration | number | no | |
2030
- | next_schedule | [[NextSchedule](#NextSchedule)] | no | |
2031
-
2032
- ---
2033
-
2034
-
2035
-
2036
-
2037
- #### [NextSchedule](#NextSchedule)
2038
-
2039
- | Properties | Type | Nullable | Description |
2040
- | ---------- | ---- | -------- | ----------- |
2041
- | start | string | no | |
2042
- | end | string | no | |
2043
-
2044
- ---
2045
-
2046
-
2047
-
2048
-
2049
- #### [AnnouncementSchema](#AnnouncementSchema)
2050
-
2051
- | Properties | Type | Nullable | Description |
2052
- | ---------- | ---- | -------- | ----------- |
2053
- | announcement | string | no | |
2054
- | schedule | [ScheduleStartSchema](#ScheduleStartSchema) | no | |
2055
-
2056
- ---
2057
-
2058
-
2059
-
2060
-
2061
- #### [ScheduleStartSchema](#ScheduleStartSchema)
2062
-
2063
- | Properties | Type | Nullable | Description |
2064
- | ---------- | ---- | -------- | ----------- |
2065
- | start | string | no | |
2066
- | end | string | no | |
2067
-
2068
- ---
2069
-
2070
-
2071
-
2072
-
2073
- #### [BlogGetResponse](#BlogGetResponse)
2074
-
2075
- | Properties | Type | Nullable | Description |
2076
- | ---------- | ---- | -------- | ----------- |
2077
- | items | [[BlogSchema](#BlogSchema)] | no | |
2078
- | page | [Page](#Page) | no | |
2079
-
2080
- ---
2081
-
2082
-
2083
-
2084
-
2085
- #### [ResourceContent](#ResourceContent)
2086
-
2087
- | Properties | Type | Nullable | Description |
2088
- | ---------- | ---- | -------- | ----------- |
2089
- | type | string | no | |
2090
- | value | string | no | |
2091
-
2092
- ---
2093
-
2094
-
2095
-
2096
-
2097
- #### [Asset](#Asset)
2098
-
2099
- | Properties | Type | Nullable | Description |
2100
- | ---------- | ---- | -------- | ----------- |
2101
- | aspect_ratio | string | no | |
2102
- | id | string | no | |
2103
- | secure_url | string | no | |
2104
-
2105
- ---
2106
-
2107
-
2108
-
2109
-
2110
- #### [Author](#Author)
2111
-
2112
- | Properties | Type | Nullable | Description |
2113
- | ---------- | ---- | -------- | ----------- |
2114
- | designation | string | no | |
2115
- | id | string | no | |
2116
- | name | string | no | |
2117
-
2118
- ---
2119
-
2120
-
2121
-
2122
-
2123
- #### [BlogSchema](#BlogSchema)
2124
-
2125
- | Properties | Type | Nullable | Description |
2126
- | ---------- | ---- | -------- | ----------- |
2127
- | _id | string | no | |
2128
- | _custom_json | string | no | |
2129
- | application | string | no | |
2130
- | archived | boolean | no | |
2131
- | author | [Author](#Author) | no | |
2132
- | content | [[ResourceContent](#ResourceContent)] | no | |
2133
- | feature_image | [Asset](#Asset) | no | |
2134
- | published | boolean | no | |
2135
- | reading_time | string | no | |
2136
- | slug | string | no | |
2137
- | tags | [string] | no | |
2138
- | seo | [SEO](#SEO) | no | |
2139
- | _schedule | [CronSchedule](#CronSchedule) | no | |
2140
- | title | string | no | |
2141
- | date_meta | [DateMeta](#DateMeta) | no | |
2142
-
2143
- ---
2144
-
2145
-
2146
-
2147
-
2148
- #### [SEO](#SEO)
2149
-
2150
- | Properties | Type | Nullable | Description |
2151
- | ---------- | ---- | -------- | ----------- |
2152
- | description | string | no | |
2153
- | image | [SEOImage](#SEOImage) | no | |
2154
- | title | string | no | |
2155
-
2156
- ---
2157
-
2158
-
2159
-
2160
-
2161
- #### [SEOImage](#SEOImage)
2162
-
2163
- | Properties | Type | Nullable | Description |
2164
- | ---------- | ---- | -------- | ----------- |
2165
- | url | string | no | |
2166
-
2167
- ---
2168
-
2169
-
2170
-
2171
-
2172
- #### [DateMeta](#DateMeta)
2173
-
2174
- | Properties | Type | Nullable | Description |
2175
- | ---------- | ---- | -------- | ----------- |
2176
- | created_on | string | no | |
2177
- | modified_on | string | no | |
2178
-
2179
- ---
2180
-
2181
-
2182
-
2183
-
2184
- #### [BlogRequest](#BlogRequest)
2185
-
2186
- | Properties | Type | Nullable | Description |
2187
- | ---------- | ---- | -------- | ----------- |
2188
- | application | string | no | |
2189
- | _custom_json | string | no | |
2190
- | author | [Author](#Author) | no | |
2191
- | content | [[ResourceContent](#ResourceContent)] | no | |
2192
- | feature_image | [Asset](#Asset) | no | |
2193
- | published | boolean | no | |
2194
- | reading_time | string | no | |
2195
- | slug | string | no | |
2196
- | tags | [string] | no | |
2197
- | title | string | no | |
2198
- | seo | [SEO](#SEO) | no | |
2199
- | _schedule | [CronSchedule](#CronSchedule) | no | |
2200
-
2201
- ---
2202
-
2203
-
2204
-
2205
-
2206
- #### [GetAnnouncementListSchema](#GetAnnouncementListSchema)
2207
-
2208
- | Properties | Type | Nullable | Description |
2209
- | ---------- | ---- | -------- | ----------- |
2210
- | items | [[AdminAnnouncementSchema](#AdminAnnouncementSchema)] | no | |
2211
- | page | [Page](#Page) | no | |
2212
-
2213
- ---
2214
-
2215
-
2216
-
2217
-
2218
- #### [CreateAnnouncementSchema](#CreateAnnouncementSchema)
2219
-
2220
- | Properties | Type | Nullable | Description |
2221
- | ---------- | ---- | -------- | ----------- |
2222
- | message | string | no | |
2223
- | data | [AdminAnnouncementSchema](#AdminAnnouncementSchema) | no | |
2224
-
2225
- ---
2226
-
2227
-
2228
-
2229
-
2230
- #### [DataLoaderResponseSchema](#DataLoaderResponseSchema)
2231
-
2232
- | Properties | Type | Nullable | Description |
2233
- | ---------- | ---- | -------- | ----------- |
2234
- | application | string | no | |
2235
- | company | string | no | |
2236
- | _id | string | no | |
2237
- | name | string | no | |
2238
- | service | string | no | |
2239
- | operation_id | string | no | |
2240
- | type | string | no | |
2241
- | url | string | no | |
2242
- | content | string | no | |
2243
- | __source | [DataLoaderSourceSchema](#DataLoaderSourceSchema) | no | |
2244
-
2245
- ---
2246
-
2247
-
2248
-
2249
-
2250
- #### [DataLoaderResetResponseSchema](#DataLoaderResetResponseSchema)
2251
-
2252
- | Properties | Type | Nullable | Description |
2253
- | ---------- | ---- | -------- | ----------- |
2254
- | reset | string | no | |
2255
-
2256
- ---
2257
-
2258
-
2259
-
2260
-
2261
- #### [Navigation](#Navigation)
2262
-
2263
- | Properties | Type | Nullable | Description |
2264
- | ---------- | ---- | -------- | ----------- |
2265
- | name | string | no | |
2266
- | slug | string | no | |
2267
- | orientation | string | no | |
2268
- | created_by | [CreatedBySchema](#CreatedBySchema) | no | |
2269
- | date_meta | [DateMeta](#DateMeta) | no | |
2270
- | _id | string | no | |
2271
- | position | string | no | |
2272
- | application | string | no | |
2273
- | platform | string | no | |
2274
- | navigation | [NavigationReference](#NavigationReference) | no | |
2275
-
2276
- ---
2277
-
2278
-
2279
-
2280
-
2281
- #### [LocaleLanguage](#LocaleLanguage)
2282
-
2283
- | Properties | Type | Nullable | Description |
2284
- | ---------- | ---- | -------- | ----------- |
2285
- | hi | [Language](#Language) | no | |
2286
- | ar | [Language](#Language) | no | |
2287
- | en_us | [Language](#Language) | no | |
2288
-
2289
- ---
2290
-
2291
-
2292
-
2293
-
2294
- #### [Language](#Language)
2295
-
2296
- | Properties | Type | Nullable | Description |
2297
- | ---------- | ---- | -------- | ----------- |
2298
- | display | string | no | |
2299
-
2300
- ---
2301
-
2302
-
2303
-
2304
-
2305
- #### [Action](#Action)
2306
-
2307
- | Properties | Type | Nullable | Description |
2308
- | ---------- | ---- | -------- | ----------- |
2309
- | page | [ActionPage](#ActionPage) | no | |
2310
- | popup | [ActionPage](#ActionPage) | no | |
2311
- | type | string | no | |
2312
-
2313
- ---
2314
-
2315
-
2316
-
2317
-
2318
- #### [ActionPage](#ActionPage)
2319
-
2320
- | Properties | Type | Nullable | Description |
2321
- | ---------- | ---- | -------- | ----------- |
2322
- | params | [String: [string]] | no | |
2323
- | query | [String: [string]] | no | |
2324
- | url | string | no | |
2325
- | type | string | no | |
2326
-
2327
- ---
2328
-
2329
-
2330
-
2331
-
2332
- #### [NavigationReference](#NavigationReference)
2333
-
2334
- | Properties | Type | Nullable | Description |
2335
- | ---------- | ---- | -------- | ----------- |
2336
- | acl | [string] | no | |
2337
- | tags | [string] | no | |
2338
- | _locale_language | [LocaleLanguage](#LocaleLanguage) | no | |
2339
- | image | string | no | |
2340
- | type | string | no | |
2341
- | action | [Action](#Action) | no | |
2342
- | active | boolean | no | |
2343
- | display | string | no | |
2344
- | sort_order | number | no | |
2345
- | sub_navigation | [[NavigationReference](#NavigationReference)] | no | |
2346
-
2347
- ---
2348
-
2349
-
2350
-
2351
-
2352
- #### [LandingPage](#LandingPage)
2353
-
2354
- | Properties | Type | Nullable | Description |
2355
- | ---------- | ---- | -------- | ----------- |
2356
- | data | [LandingPageSchema](#LandingPageSchema) | no | |
2357
- | success | boolean | no | |
2358
-
2359
- ---
2360
-
2361
-
2362
-
2363
-
2364
- #### [ConfigurationSchema](#ConfigurationSchema)
2365
-
2366
- | Properties | Type | Nullable | Description |
2367
- | ---------- | ---- | -------- | ----------- |
2368
- | sleep_time | number | no | |
2369
- | start_on_launch | boolean | no | |
2370
- | duration | number | no | |
2371
- | slide_direction | string | no | |
2372
-
2373
- ---
2374
-
2375
-
2376
-
2377
-
2378
- #### [SlideshowMedia](#SlideshowMedia)
2379
-
2380
- | Properties | Type | Nullable | Description |
2381
- | ---------- | ---- | -------- | ----------- |
2382
- | type | string | no | |
2383
- | url | string | no | |
2384
- | bg_color | string | no | |
2385
- | duration | number | no | |
2386
- | auto_decide_duration | boolean | no | |
2387
- | action | [Action](#Action) | no | |
2388
-
2389
- ---
2390
-
2391
-
2392
-
2393
-
2394
- #### [Slideshow](#Slideshow)
2395
-
2396
- | Properties | Type | Nullable | Description |
2397
- | ---------- | ---- | -------- | ----------- |
2398
- | data | [SlideshowSchema](#SlideshowSchema) | no | |
2399
- | success | boolean | no | |
2400
-
2401
- ---
2402
-
2403
-
2404
-
2405
-
2406
- #### [AnnouncementsResponseSchema](#AnnouncementsResponseSchema)
2407
-
2408
- | Properties | Type | Nullable | Description |
2409
- | ---------- | ---- | -------- | ----------- |
2410
- | announcements | [String: [[AnnouncementSchema](#AnnouncementSchema)]] | no | |
2411
- | refresh_rate | number | no | number of seconds after which api should hit again to fetch new announcements |
2412
- | refresh_pages | [string] | no | list of page slugs on which announcement should be fetched as soon as they are loaded |
2413
-
2414
- ---
2415
-
2416
-
2417
-
2418
-
2419
- #### [FaqResponseSchema](#FaqResponseSchema)
2420
-
2421
- | Properties | Type | Nullable | Description |
2422
- | ---------- | ---- | -------- | ----------- |
2423
- | faqs | [[FaqSchema](#FaqSchema)] | no | |
2424
-
2425
- ---
2426
-
2427
-
2428
-
2429
-
2430
- #### [UpdateHandpickedSchema](#UpdateHandpickedSchema)
2431
-
2432
- | Properties | Type | Nullable | Description |
2433
- | ---------- | ---- | -------- | ----------- |
2434
- | tag | [HandpickedTagSchema](#HandpickedTagSchema) | no | |
2435
-
2436
- ---
2437
-
2438
-
2439
-
2440
-
2441
- #### [HandpickedTagSchema](#HandpickedTagSchema)
2442
-
2443
- | Properties | Type | Nullable | Description |
2444
- | ---------- | ---- | -------- | ----------- |
2445
- | position | string | no | |
2446
- | attributes | string | no | |
2447
- | name | string | no | |
2448
- | url | string | no | |
2449
- | type | string | no | |
2450
- | sub_type | string | no | |
2451
- | content | string | no | |
2452
-
2453
- ---
2454
-
2455
-
2456
-
2457
-
2458
- #### [RemoveHandpickedSchema](#RemoveHandpickedSchema)
2459
-
2460
- | Properties | Type | Nullable | Description |
2461
- | ---------- | ---- | -------- | ----------- |
2462
- | tags | [string] | no | |
2463
-
2464
- ---
2465
-
2466
-
2467
-
2468
-
2469
- #### [CreateTagSchema](#CreateTagSchema)
2470
-
2471
- | Properties | Type | Nullable | Description |
2472
- | ---------- | ---- | -------- | ----------- |
2473
- | name | string | no | |
2474
- | sub_type | string | no | |
2475
- | _id | string | no | |
2476
- | type | string | no | |
2477
- | url | string | no | |
2478
- | position | string | no | |
2479
- | attributes | string | no | |
2480
- | pages | [string] | no | |
2481
- | content | string | no | |
2482
-
2483
- ---
2484
-
2485
-
2486
-
2487
-
2488
- #### [CreateTagRequestSchema](#CreateTagRequestSchema)
2489
-
2490
- | Properties | Type | Nullable | Description |
2491
- | ---------- | ---- | -------- | ----------- |
2492
- | tags | [[CreateTagSchema](#CreateTagSchema)] | no | |
2493
-
2494
- ---
2495
-
2496
-
2497
-
2498
-
2499
- #### [DataLoaderSchema](#DataLoaderSchema)
2500
-
2501
- | Properties | Type | Nullable | Description |
2502
- | ---------- | ---- | -------- | ----------- |
2503
- | name | string | no | |
2504
- | service | string | no | |
2505
- | operation_id | string | no | |
2506
- | type | string | no | |
2507
- | url | string | no | |
2508
- | content | string | no | |
2509
- | __source | [DataLoaderSourceSchema](#DataLoaderSourceSchema) | no | |
2510
- | _id | string | no | |
2511
-
2512
- ---
2513
-
2514
-
2515
-
2516
-
2517
- #### [DataLoaderSourceSchema](#DataLoaderSourceSchema)
2518
-
2519
- | Properties | Type | Nullable | Description |
2520
- | ---------- | ---- | -------- | ----------- |
2521
- | type | string | no | |
2522
- | id | string | no | |
2523
-
2524
- ---
2525
-
2526
-
2527
-
2528
-
2529
- #### [DataLoadersSchema](#DataLoadersSchema)
2530
-
2531
- | Properties | Type | Nullable | Description |
2532
- | ---------- | ---- | -------- | ----------- |
2533
- | items | [[DataLoaderSchema](#DataLoaderSchema)] | no | |
2534
-
2535
- ---
2536
-
2537
-
2538
-
2539
-
2540
- #### [TagDeleteSuccessResponse](#TagDeleteSuccessResponse)
2541
-
2542
- | Properties | Type | Nullable | Description |
2543
- | ---------- | ---- | -------- | ----------- |
2544
- | success | boolean | no | |
2545
-
2546
- ---
2547
-
2548
-
2549
-
2550
-
2551
- #### [ContentAPIError](#ContentAPIError)
2552
-
2553
- | Properties | Type | Nullable | Description |
2554
- | ---------- | ---- | -------- | ----------- |
2555
- | message | string | no | |
2556
- | status | number | no | |
2557
- | code | string | no | |
2558
- | exception | string | no | |
2559
- | info | string | no | |
2560
- | request_id | string | no | |
2561
- | stack_trace | string | no | |
2562
- | meta | string | no | |
2563
-
2564
- ---
2565
-
2566
-
2567
-
2568
-
2569
- #### [CommonError](#CommonError)
2570
-
2571
- | Properties | Type | Nullable | Description |
2572
- | ---------- | ---- | -------- | ----------- |
2573
- | message | string | no | |
2574
-
2575
- ---
2576
-
2577
-
2578
-
2579
-
2580
- #### [CategorySchema](#CategorySchema)
2581
-
2582
- | Properties | Type | Nullable | Description |
2583
- | ---------- | ---- | -------- | ----------- |
2584
- | index | number | no | |
2585
- | title | string | no | |
2586
- | description | string | no | |
2587
- | children | [string] | no | |
2588
- | _id | string | no | |
2589
- | slug | string | no | |
2590
- | application | string | no | |
2591
- | icon_url | string | no | |
2592
- | _custom_json | string | no | |
2593
-
2594
- ---
2595
-
2596
-
2597
-
2598
-
2599
- #### [ChildrenSchema](#ChildrenSchema)
2600
-
2601
- | Properties | Type | Nullable | Description |
2602
- | ---------- | ---- | -------- | ----------- |
2603
- | question | string | no | |
2604
- | answer | string | no | |
2605
- | slug | string | no | |
2606
- | application | string | no | |
2607
- | _id | string | no | |
2608
-
2609
- ---
2610
-
2611
-
2612
-
2613
-
2614
- #### [CategoryRequestSchema](#CategoryRequestSchema)
2615
-
2616
- | Properties | Type | Nullable | Description |
2617
- | ---------- | ---- | -------- | ----------- |
2618
- | slug | string | no | |
2619
- | title | string | no | |
2620
-
2621
- ---
2622
-
2623
-
2624
-
2625
-
2626
- #### [FAQCategorySchema](#FAQCategorySchema)
2627
-
2628
- | Properties | Type | Nullable | Description |
2629
- | ---------- | ---- | -------- | ----------- |
2630
- | index | number | no | |
2631
- | title | string | no | |
2632
- | description | string | no | |
2633
- | children | [[ChildrenSchema](#ChildrenSchema)] | no | |
2634
- | _id | string | no | |
2635
- | slug | string | no | |
2636
- | application | string | no | |
2637
- | icon_url | string | no | |
2638
- | _custom_json | string | no | |
2639
-
2640
- ---
2641
-
2642
-
2643
-
2644
-
2645
- #### [FaqSchema](#FaqSchema)
2646
-
2647
- | Properties | Type | Nullable | Description |
2648
- | ---------- | ---- | -------- | ----------- |
2649
- | slug | string | no | |
2650
- | application | string | no | |
2651
- | _id | string | no | |
2652
- | question | string | no | |
2653
- | answer | string | no | |
2654
- | tags | [string] | no | |
2655
-
2656
- ---
2657
-
2658
-
2659
-
2660
-
2661
- #### [FAQ](#FAQ)
2662
-
2663
- | Properties | Type | Nullable | Description |
2664
- | ---------- | ---- | -------- | ----------- |
2665
- | slug | string | no | |
2666
- | question | string | no | |
2667
- | answer | string | no | |
2668
-
2669
- ---
2670
-
2671
-
2672
-
2673
-
2674
- #### [CreateFaqResponseSchema](#CreateFaqResponseSchema)
2675
-
2676
- | Properties | Type | Nullable | Description |
2677
- | ---------- | ---- | -------- | ----------- |
2678
- | faq | [FaqSchema](#FaqSchema) | no | |
2679
-
2680
- ---
2681
-
2682
-
2683
-
2684
-
2685
- #### [CreateFaqSchema](#CreateFaqSchema)
2686
-
2687
- | Properties | Type | Nullable | Description |
2688
- | ---------- | ---- | -------- | ----------- |
2689
- | faq | [FAQ](#FAQ) | no | |
2690
-
2691
- ---
2692
-
2693
-
2694
-
2695
-
2696
- #### [GetFaqSchema](#GetFaqSchema)
2697
-
2698
- | Properties | Type | Nullable | Description |
2699
- | ---------- | ---- | -------- | ----------- |
2700
- | faqs | [[FaqSchema](#FaqSchema)] | no | |
2701
-
2702
- ---
2703
-
2704
-
2705
-
2706
-
2707
- #### [UpdateFaqCategoryRequestSchema](#UpdateFaqCategoryRequestSchema)
2708
-
2709
- | Properties | Type | Nullable | Description |
2710
- | ---------- | ---- | -------- | ----------- |
2711
- | category | [CategorySchema](#CategorySchema) | no | |
2712
-
2713
- ---
2714
-
2715
-
2716
-
2717
-
2718
- #### [CreateFaqCategoryRequestSchema](#CreateFaqCategoryRequestSchema)
2719
-
2720
- | Properties | Type | Nullable | Description |
2721
- | ---------- | ---- | -------- | ----------- |
2722
- | category | [CategoryRequestSchema](#CategoryRequestSchema) | no | |
2723
-
2724
- ---
2725
-
2726
-
2727
-
2728
-
2729
- #### [CreateFaqCategorySchema](#CreateFaqCategorySchema)
2730
-
2731
- | Properties | Type | Nullable | Description |
2732
- | ---------- | ---- | -------- | ----------- |
2733
- | category | [CategorySchema](#CategorySchema) | no | |
2734
-
2735
- ---
2736
-
2737
-
2738
-
2739
-
2740
- #### [GetFaqCategoriesSchema](#GetFaqCategoriesSchema)
2741
-
2742
- | Properties | Type | Nullable | Description |
2743
- | ---------- | ---- | -------- | ----------- |
2744
- | categories | [[CategorySchema](#CategorySchema)] | no | |
2745
-
2746
- ---
2747
-
2748
-
2749
-
2750
-
2751
- #### [GetFaqCategoryBySlugSchema](#GetFaqCategoryBySlugSchema)
2752
-
2753
- | Properties | Type | Nullable | Description |
2754
- | ---------- | ---- | -------- | ----------- |
2755
- | category | [FAQCategorySchema](#FAQCategorySchema) | no | |
2756
-
2757
- ---
2758
-
2759
-
2760
-
2761
-
2762
- #### [Page](#Page)
2763
-
2764
- | Properties | Type | Nullable | Description |
2765
- | ---------- | ---- | -------- | ----------- |
2766
- | item_total | number | no | |
2767
- | next_id | string | no | |
2768
- | has_previous | boolean | no | |
2769
- | has_next | boolean | no | |
2770
- | current | number | no | |
2771
- | type | string | yes | |
2772
- | size | number | no | |
2773
-
2774
- ---
2775
-
2776
-
2777
-
2778
-
2779
- #### [LandingPageGetResponse](#LandingPageGetResponse)
2780
-
2781
- | Properties | Type | Nullable | Description |
2782
- | ---------- | ---- | -------- | ----------- |
2783
- | items | [[LandingPageSchema](#LandingPageSchema)] | no | |
2784
- | page | [Page](#Page) | no | |
2785
-
2786
- ---
2787
-
2788
-
2789
-
2790
-
2791
- #### [LandingPageSchema](#LandingPageSchema)
2792
-
2793
- | Properties | Type | Nullable | Description |
2794
- | ---------- | ---- | -------- | ----------- |
2795
- | slug | string | no | |
2796
- | action | [Action](#Action) | no | |
2797
- | platform | [string] | no | |
2798
- | created_by | [CreatedBySchema](#CreatedBySchema) | no | |
2799
- | date_meta | [DateMeta](#DateMeta) | no | |
2800
- | _id | string | no | |
2801
- | application | string | no | |
2802
- | archived | boolean | no | |
2803
- | _custom_json | string | no | |
2804
-
2805
- ---
2806
-
2807
-
2808
-
2809
-
2810
- #### [DefaultNavigationResponse](#DefaultNavigationResponse)
2811
-
2812
- | Properties | Type | Nullable | Description |
2813
- | ---------- | ---- | -------- | ----------- |
2814
- | items | [[NavigationSchema](#NavigationSchema)] | no | |
2815
-
2816
- ---
2817
-
2818
-
2819
-
2820
-
2821
- #### [NavigationGetResponse](#NavigationGetResponse)
2822
-
2823
- | Properties | Type | Nullable | Description |
2824
- | ---------- | ---- | -------- | ----------- |
2825
- | items | [[NavigationSchema](#NavigationSchema)] | no | |
2826
- | page | [Page](#Page) | no | |
2827
-
2828
- ---
2829
-
2830
-
2831
-
2832
-
2833
- #### [Orientation](#Orientation)
2834
-
2835
- | Properties | Type | Nullable | Description |
2836
- | ---------- | ---- | -------- | ----------- |
2837
- | portrait | [string] | no | |
2838
- | landscape | [string] | no | |
2839
-
2840
- ---
2841
-
2842
-
2843
-
2844
-
2845
- #### [NavigationSchema](#NavigationSchema)
2846
-
2847
- | Properties | Type | Nullable | Description |
2848
- | ---------- | ---- | -------- | ----------- |
2849
- | _id | string | no | |
2850
- | application | string | no | |
2851
- | archived | boolean | no | |
2852
- | name | string | no | |
2853
- | slug | string | no | |
2854
- | platform | [string] | no | |
2855
- | created_by | [CreatedBySchema](#CreatedBySchema) | no | |
2856
- | date_meta | [DateMeta](#DateMeta) | no | |
2857
- | orientation | [Orientation](#Orientation) | no | |
2858
- | version | number | no | |
2859
- | navigation | [[NavigationReference](#NavigationReference)] | no | |
2860
-
2861
- ---
2862
-
2863
-
2864
-
2865
-
2866
- #### [NavigationRequest](#NavigationRequest)
2867
-
2868
- | Properties | Type | Nullable | Description |
2869
- | ---------- | ---- | -------- | ----------- |
2870
- | name | string | no | |
2871
- | slug | string | no | |
2872
- | platform | [string] | no | |
2873
- | orientation | [Orientation](#Orientation) | no | |
2874
- | navigation | [[NavigationReference](#NavigationReference)] | no | |
2875
-
2876
- ---
2877
-
2878
-
2879
-
2880
-
2881
- #### [CustomPageSchema](#CustomPageSchema)
2882
-
2883
- | Properties | Type | Nullable | Description |
2884
- | ---------- | ---- | -------- | ----------- |
2885
- | _id | string | no | |
2886
- | platform | string | no | |
2887
- | title | string | no | |
2888
- | slug | string | no | |
2889
- | type | string | no | |
2890
- | orientation | string | no | |
2891
- | application | string | no | |
2892
- | description | string | no | |
2893
- | published | boolean | no | |
2894
- | tags | [string] | no | |
2895
- | content | [string] | no | |
2896
- | created_by | [CreatedBySchema](#CreatedBySchema) | no | |
2897
- | date_meta | [DateMeta](#DateMeta) | no | |
2898
- | _schedule | [ScheduleSchema](#ScheduleSchema) | no | |
2899
-
2900
- ---
2901
-
2902
-
2903
-
2904
-
2905
- #### [ContentSchema](#ContentSchema)
2906
-
2907
- | Properties | Type | Nullable | Description |
2908
- | ---------- | ---- | -------- | ----------- |
2909
- | type | string | no | |
2910
- | value | string | no | |
2911
-
2912
- ---
2913
-
2914
-
2915
-
2916
-
2917
- #### [CustomPage](#CustomPage)
2918
-
2919
- | Properties | Type | Nullable | Description |
2920
- | ---------- | ---- | -------- | ----------- |
2921
- | data | [CustomPageSchema](#CustomPageSchema) | no | |
2922
-
2923
- ---
2924
-
2925
-
2926
-
2927
-
2928
- #### [FeatureImage](#FeatureImage)
2929
-
2930
- | Properties | Type | Nullable | Description |
2931
- | ---------- | ---- | -------- | ----------- |
2932
- | secure_url | string | no | |
2933
-
2934
- ---
2935
-
2936
-
2937
-
2938
-
2939
- #### [PageGetResponse](#PageGetResponse)
2940
-
2941
- | Properties | Type | Nullable | Description |
2942
- | ---------- | ---- | -------- | ----------- |
2943
- | items | [[PageSchema](#PageSchema)] | no | |
2944
- | page | [Page](#Page) | no | |
2945
-
2946
- ---
2947
-
2948
-
2949
-
2950
-
2951
- #### [PageSpec](#PageSpec)
2952
-
2953
- | Properties | Type | Nullable | Description |
2954
- | ---------- | ---- | -------- | ----------- |
2955
- | specifications | [[PageSpecItem](#PageSpecItem)] | no | |
2956
-
2957
- ---
2958
-
2959
-
2960
-
2961
-
2962
- #### [PageSpecParam](#PageSpecParam)
2963
-
2964
- | Properties | Type | Nullable | Description |
2965
- | ---------- | ---- | -------- | ----------- |
2966
- | key | string | no | |
2967
- | required | boolean | no | |
2968
-
2969
- ---
2970
-
2971
-
2972
-
2973
-
2974
- #### [PageSpecItem](#PageSpecItem)
2975
-
2976
- | Properties | Type | Nullable | Description |
2977
- | ---------- | ---- | -------- | ----------- |
2978
- | page_type | string | no | |
2979
- | display_name | string | no | |
2980
- | params | [[PageSpecParam](#PageSpecParam)] | no | |
2981
- | query | [[PageSpecParam](#PageSpecParam)] | no | |
2982
-
2983
- ---
2984
-
2985
-
2986
-
2987
-
2988
- #### [PageSchema](#PageSchema)
2989
-
2990
- | Properties | Type | Nullable | Description |
2991
- | ---------- | ---- | -------- | ----------- |
2992
- | _id | string | no | |
2993
- | application | string | no | |
2994
- | component_ids | [string] | no | Components can be used to store multiple components |
2995
- | content | [string] | no | |
2996
- | content_path | string | no | |
2997
- | created_by | [CreatedBySchema](#CreatedBySchema) | no | |
2998
- | date_meta | [DateMeta](#DateMeta) | no | |
2999
- | description | string | no | |
3000
- | feature_image | [Asset](#Asset) | no | |
3001
- | page_meta | [string] | no | |
3002
- | _schedule | [ScheduleSchema](#ScheduleSchema) | no | |
3003
- | _custom_json | string | no | |
3004
- | orientation | string | no | |
3005
- | platform | string | no | |
3006
- | published | boolean | no | |
3007
- | slug | string | no | |
3008
- | tags | [string] | no | |
3009
- | title | string | no | |
3010
- | type | string | no | |
3011
- | seo | [SEO](#SEO) | no | |
3012
- | visibility | string | no | |
3013
- | archived | boolean | no | |
3014
-
3015
- ---
3016
-
3017
-
3018
-
3019
-
3020
- #### [CreatedBySchema](#CreatedBySchema)
3021
-
3022
- | Properties | Type | Nullable | Description |
3023
- | ---------- | ---- | -------- | ----------- |
3024
- | id | string | no | |
3025
-
3026
- ---
3027
-
3028
-
3029
-
3030
-
3031
- #### [PageContent](#PageContent)
3032
-
3033
- | Properties | Type | Nullable | Description |
3034
- | ---------- | ---- | -------- | ----------- |
3035
- | type | string | no | |
3036
- | value | string | no | |
3037
-
3038
- ---
3039
-
3040
-
3041
-
3042
-
3043
- #### [PageMeta](#PageMeta)
3044
-
3045
- | Properties | Type | Nullable | Description |
3046
- | ---------- | ---- | -------- | ----------- |
3047
- | key | string | no | |
3048
- | value | string | no | |
3049
-
3050
- ---
3051
-
3052
-
3053
-
3054
-
3055
- #### [PageRequest](#PageRequest)
3056
-
3057
- | Properties | Type | Nullable | Description |
3058
- | ---------- | ---- | -------- | ----------- |
3059
- | _schedule | [CronSchedule](#CronSchedule) | no | |
3060
- | application | string | no | |
3061
- | author | [Author](#Author) | no | |
3062
- | _custom_json | string | no | |
3063
- | orientation | string | no | |
3064
- | content | [string] | no | |
3065
- | feature_image | [Asset](#Asset) | no | |
3066
- | published | boolean | no | |
3067
- | reading_time | string | no | |
3068
- | slug | string | no | |
3069
- | tags | [string] | no | |
3070
- | seo | [SEO](#SEO) | no | |
3071
- | title | string | no | |
3072
-
3073
- ---
3074
-
3075
-
3076
-
3077
-
3078
- #### [CronSchedule](#CronSchedule)
3079
-
3080
- | Properties | Type | Nullable | Description |
3081
- | ---------- | ---- | -------- | ----------- |
3082
- | cron | string | no | |
3083
- | start | string | no | |
3084
- | end | string | no | |
3085
- | duration | number | no | |
3086
-
3087
- ---
3088
-
3089
-
3090
-
3091
-
3092
- #### [PagePublishRequest](#PagePublishRequest)
3093
-
3094
- | Properties | Type | Nullable | Description |
3095
- | ---------- | ---- | -------- | ----------- |
3096
- | publish | boolean | no | |
3097
-
3098
- ---
3099
-
3100
-
3101
-
3102
-
3103
- #### [PageMetaSchema](#PageMetaSchema)
3104
-
3105
- | Properties | Type | Nullable | Description |
3106
- | ---------- | ---- | -------- | ----------- |
3107
- | system_pages | [[NavigationSchema](#NavigationSchema)] | no | |
3108
- | custom_pages | [[PageSchema](#PageSchema)] | no | |
3109
- | application_id | string | no | |
3110
-
3111
- ---
3112
-
3113
-
3114
-
3115
-
3116
- #### [SlideshowGetResponse](#SlideshowGetResponse)
3117
-
3118
- | Properties | Type | Nullable | Description |
3119
- | ---------- | ---- | -------- | ----------- |
3120
- | items | [[SlideshowSchema](#SlideshowSchema)] | no | |
3121
- | page | [Page](#Page) | no | |
3122
-
3123
- ---
3124
-
3125
-
3126
-
3127
-
3128
- #### [SlideshowSchema](#SlideshowSchema)
3129
-
3130
- | Properties | Type | Nullable | Description |
3131
- | ---------- | ---- | -------- | ----------- |
3132
- | _id | string | no | |
3133
- | slug | string | no | |
3134
- | date_meta | [DateMeta](#DateMeta) | no | |
3135
- | application | string | no | |
3136
- | platform | string | no | |
3137
- | configuration | [ConfigurationSchema](#ConfigurationSchema) | no | |
3138
- | media | [[SlideshowMedia](#SlideshowMedia)] | no | |
3139
- | active | boolean | no | |
3140
- | archived | boolean | no | |
3141
- | _custom_json | string | no | |
3142
-
3143
- ---
3144
-
3145
-
3146
-
3147
-
3148
- #### [SlideshowRequest](#SlideshowRequest)
3149
-
3150
- | Properties | Type | Nullable | Description |
3151
- | ---------- | ---- | -------- | ----------- |
3152
- | slug | string | no | |
3153
- | platform | string | no | |
3154
- | configuration | [ConfigurationSchema](#ConfigurationSchema) | no | |
3155
- | media | [SlideshowMedia](#SlideshowMedia) | no | |
3156
- | active | boolean | no | |
3157
-
3158
- ---
3159
-
3160
-
3161
-
3162
-
3163
- #### [Support](#Support)
3164
-
3165
- | Properties | Type | Nullable | Description |
3166
- | ---------- | ---- | -------- | ----------- |
3167
- | created | boolean | no | |
3168
- | _id | string | no | |
3169
- | config_type | string | no | |
3170
- | application | string | no | |
3171
- | created_at | string | no | |
3172
- | updated_at | string | no | |
3173
- | contact | [ContactSchema](#ContactSchema) | no | |
3174
-
3175
- ---
3176
-
3177
-
3178
-
3179
-
3180
- #### [PhoneProperties](#PhoneProperties)
3181
-
3182
- | Properties | Type | Nullable | Description |
3183
- | ---------- | ---- | -------- | ----------- |
3184
- | key | string | no | |
3185
- | code | string | no | |
3186
- | number | string | no | |
3187
-
3188
- ---
3189
-
3190
-
3191
-
3192
-
3193
- #### [PhoneSchema](#PhoneSchema)
3194
-
3195
- | Properties | Type | Nullable | Description |
3196
- | ---------- | ---- | -------- | ----------- |
3197
- | active | boolean | no | |
3198
- | phone | [[PhoneProperties](#PhoneProperties)] | no | |
3199
-
3200
- ---
3201
-
3202
-
3203
-
3204
-
3205
- #### [EmailProperties](#EmailProperties)
3206
-
3207
- | Properties | Type | Nullable | Description |
3208
- | ---------- | ---- | -------- | ----------- |
3209
- | key | string | no | |
3210
- | value | string | no | |
3211
-
3212
- ---
3213
-
3214
-
3215
-
3216
-
3217
- #### [EmailSchema](#EmailSchema)
3218
-
3219
- | Properties | Type | Nullable | Description |
3220
- | ---------- | ---- | -------- | ----------- |
3221
- | active | boolean | no | |
3222
- | email | [[EmailProperties](#EmailProperties)] | no | |
3223
-
3224
- ---
3225
-
3226
-
3227
-
3228
-
3229
- #### [ContactSchema](#ContactSchema)
3230
-
3231
- | Properties | Type | Nullable | Description |
3232
- | ---------- | ---- | -------- | ----------- |
3233
- | phone | [PhoneSchema](#PhoneSchema) | no | |
3234
- | email | [EmailSchema](#EmailSchema) | no | |
3235
-
3236
- ---
3237
-
3238
-
3239
-
3240
-
3241
- #### [TagsSchema](#TagsSchema)
3242
-
3243
- | Properties | Type | Nullable | Description |
3244
- | ---------- | ---- | -------- | ----------- |
3245
- | application | string | no | |
3246
- | _id | string | no | |
3247
- | tags | [[TagSchema](#TagSchema)] | no | |
3248
-
3249
- ---
3250
-
3251
-
3252
-
3253
-
3254
- #### [TagSchema](#TagSchema)
3255
-
3256
- | Properties | Type | Nullable | Description |
3257
- | ---------- | ---- | -------- | ----------- |
3258
- | name | string | no | |
3259
- | url | string | no | |
3260
- | type | string | no | |
3261
- | sub_type | string | no | |
3262
- | _id | string | no | |
3263
- | position | string | no | |
3264
- | attributes | string | no | |
3265
- | content | string | no | |
3266
- | pages | [string] | no | |
3267
- | __source | [TagSourceSchema](#TagSourceSchema) | no | |
3268
-
3269
- ---
3270
-
3271
-
3272
-
3273
-
3274
- #### [TagSourceSchema](#TagSourceSchema)
3275
-
3276
- | Properties | Type | Nullable | Description |
3277
- | ---------- | ---- | -------- | ----------- |
3278
- | type | string | no | |
3279
- | id | string | no | |
3280
-
3281
- ---
3282
-
3283
-
3284
-
3285
-
3286
- ### Enums
3287
-
3288
-
3289
-
3290
-
3291
-
3292
- #### [PageType](#PageType)
3293
- Type : string
3294
-
3295
- | Name | Value | Description |
3296
- | ---- | ----- | ----------- |
3297
- | aboutUs | about-us | Symbolic link for About Us: /about-us |
3298
- | addresses | addresses | Symbolic link for Saved Addresses: /profile/address |
3299
- | blog | blog | Symbolic link for Blog: /blog/:slug |
3300
- | brands | brands | Symbolic link for Brands: /brands/:department |
3301
- | cards | cards | Symbolic link for Saved Cards: /profile/my-cards |
3302
- | cart | cart | Symbolic link for Cart: /cart/bag/ |
3303
- | categories | categories | Symbolic link for Categories: /categories/:department |
3304
- | brand | brand | Symbolic link for Brand: /brand/:slug |
3305
- | category | category | Symbolic link for Category: /category/:slug |
3306
- | collection | collection | Symbolic link for Collection: /collection/:slug |
3307
- | collections | collections | Symbolic link for Collections: /collections/ |
3308
- | contactUs | contact-us | Symbolic link for Contact Us: /contact-us/ |
3309
- | external | external | Symbolic link for External Link: /external/ |
3310
- | faq | faq | Symbolic link for FAQ: /faq |
3311
- | freshchat | freshchat | Symbolic link for Chat by Freshchat: /freshchat |
3312
- | home | home | Symbolic link for Home: / |
3313
- | notificationSettings | notification-settings | Symbolic link for Notification Settings: /notification-settings |
3314
- | orders | orders | Symbolic link for Orders: /profile/orders |
3315
- | page | page | Symbolic link for Page: /page/:slug |
3316
- | policy | policy | Symbolic link for Privacy Policy: /privacy-policy |
3317
- | product | product | Symbolic link for Product: /product/:slug |
3318
- | productReviews | product-reviews | Symbolic link for Product Reviews: /product/:slug/reviews |
3319
- | addProductReview | add-product-review | Symbolic link for Add Product review: /product/:slug/add-review |
3320
- | productRequest | product-request | Symbolic link for Product Request: /product-request/ |
3321
- | products | products | Symbolic link for Products: /products/ |
3322
- | profile | profile | Symbolic link for Profile: /profile |
3323
- | profileOrderShipment | profile-order-shipment | Symbolic link for profile orders shipment: /profile/orders/shipment/:shipmentid |
3324
- | profileBasic | profile-basic | Symbolic link for Basic Profile: /profile/details |
3325
- | profileCompany | profile-company | Symbolic link for Profile Company: /profile/company |
3326
- | profileEmails | profile-emails | Symbolic link for Profile Emails: /profile/email |
3327
- | profilePhones | profile-phones | Symbolic link for Profile Phones: /profile/phone |
3328
- | rateUs | rate-us | Symbolic link for Rate Us: /rate-us |
3329
- | referEarn | refer-earn | Symbolic link for Refer & Earn: /profile/refer-earn |
3330
- | settings | settings | Symbolic link for Settings: /setting/currency |
3331
- | sharedCart | shared-cart | Symbolic link for Shared Cart: /shared-cart/:token |
3332
- | tnc | tnc | Symbolic link for Terms and Conditions: /terms-and-conditions |
3333
- | trackOrder | track-order | Symbolic link for Track Order: /order-tracking/:orderId |
3334
- | wishlist | wishlist | Symbolic link for Wishlist: /wishlist/ |
3335
- | sections | sections | Symbolic link for Sections: /sections/:group |
3336
- | form | form | Symbolic link for Form: /form/:slug |
3337
- | cartDelivery | cart-delivery | Symbolic link for Cart Delivery: /cart/delivery |
3338
- | cartPayment | cart-payment | Symbolic link for Cart Payment Information: /cart/payment-info |
3339
- | cartReview | cart-review | Symbolic link for Cart Order Review: /cart/order-review |
3340
- | login | login | Symbolic link for Login: /auth/login |
3341
- | register | register | Symbolic link for Register: /auth/register |
3342
- | shippingPolicy | shipping-policy | Symbolic link for Shipping policy: /shipping-policy |
3343
- | returnPolicy | return-policy | Symbolic link for Return policy: /return-policy |
3344
-
3345
- ---
3346
-
3347
-
3348
-
3349
-
3350
-
3351
-