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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (298) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/sdk/application/ApplicationClient.d.ts +0 -2
  4. package/sdk/application/ApplicationClient.js +0 -2
  5. package/sdk/application/Cart/CartApplicationClient.d.ts +113 -93
  6. package/sdk/application/Cart/CartApplicationClient.js +270 -139
  7. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +110 -110
  8. package/sdk/application/Catalog/CatalogApplicationClient.js +122 -138
  9. package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
  10. package/sdk/application/Common/CommonApplicationClient.js +3 -3
  11. package/sdk/application/Communication/CommunicationApplicationClient.d.ts +43 -3
  12. package/sdk/application/Communication/CommunicationApplicationClient.js +190 -3
  13. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +71 -36
  14. package/sdk/application/Configuration/ConfigurationApplicationClient.js +103 -29
  15. package/sdk/application/Content/ContentApplicationClient.d.ts +51 -21
  16. package/sdk/application/Content/ContentApplicationClient.js +197 -36
  17. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +6 -6
  18. package/sdk/application/FileStorage/FileStorageApplicationClient.js +3 -3
  19. package/sdk/application/Lead/LeadApplicationClient.d.ts +3 -3
  20. package/sdk/application/Lead/LeadApplicationClient.js +3 -3
  21. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +79 -64
  22. package/sdk/application/Logistic/LogisticApplicationClient.js +246 -264
  23. package/sdk/application/Order/OrderApplicationClient.d.ts +44 -24
  24. package/sdk/application/Order/OrderApplicationClient.js +140 -21
  25. package/sdk/application/Payment/PaymentApplicationClient.d.ts +211 -111
  26. package/sdk/application/Payment/PaymentApplicationClient.js +610 -109
  27. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +13 -13
  28. package/sdk/application/Rewards/RewardsApplicationClient.js +7 -7
  29. package/sdk/application/Share/ShareApplicationClient.d.ts +7 -7
  30. package/sdk/application/Share/ShareApplicationClient.js +14 -14
  31. package/sdk/application/Theme/ThemeApplicationClient.d.ts +23 -3
  32. package/sdk/application/Theme/ThemeApplicationClient.js +103 -5
  33. package/sdk/application/User/UserApplicationClient.d.ts +13 -23
  34. package/sdk/application/User/UserApplicationClient.js +9 -57
  35. package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
  36. package/sdk/application/Webhook/WebhookApplicationClient.js +3 -3
  37. package/sdk/partner/Authorization/AuthorizationPartnerClient.d.ts +66 -0
  38. package/sdk/partner/Authorization/AuthorizationPartnerClient.js +431 -0
  39. package/sdk/partner/Authorization/AuthorizationPartnerModel.d.ts +231 -0
  40. package/sdk/partner/Authorization/AuthorizationPartnerModel.js +152 -0
  41. package/sdk/partner/Authorization/AuthorizationPartnerValidator.d.ts +8 -0
  42. package/sdk/partner/Authorization/AuthorizationPartnerValidator.js +39 -0
  43. package/sdk/partner/Catalog/CatalogPartnerClient.d.ts +26 -0
  44. package/sdk/partner/Catalog/CatalogPartnerClient.js +173 -0
  45. package/sdk/partner/Catalog/CatalogPartnerModel.d.ts +238 -0
  46. package/sdk/partner/Catalog/CatalogPartnerModel.js +248 -0
  47. package/sdk/partner/Catalog/CatalogPartnerValidator.d.ts +5 -0
  48. package/sdk/partner/Catalog/CatalogPartnerValidator.js +19 -0
  49. package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +12 -22
  50. package/sdk/partner/FileStorage/FileStoragePartnerClient.js +12 -87
  51. package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +33 -99
  52. package/sdk/partner/FileStorage/FileStoragePartnerModel.js +25 -84
  53. package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +0 -1
  54. package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +4 -10
  55. package/sdk/partner/Lead/LeadPartnerClient.d.ts +5 -5
  56. package/sdk/partner/Lead/LeadPartnerClient.js +4 -4
  57. package/sdk/partner/Lead/LeadPartnerModel.d.ts +100 -49
  58. package/sdk/partner/Lead/LeadPartnerModel.js +100 -74
  59. package/sdk/partner/Lead/LeadPartnerValidator.js +1 -1
  60. package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +33 -160
  61. package/sdk/partner/Logistics/LogisticsPartnerClient.js +66 -1180
  62. package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +288 -1685
  63. package/sdk/partner/Logistics/LogisticsPartnerModel.js +226 -824
  64. package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +1 -13
  65. package/sdk/partner/Logistics/LogisticsPartnerValidator.js +14 -141
  66. package/sdk/partner/PartnerClient.d.ts +6 -0
  67. package/sdk/partner/PartnerClient.js +9 -0
  68. package/sdk/partner/Payment/PaymentPartnerClient.d.ts +116 -0
  69. package/sdk/partner/Payment/PaymentPartnerClient.js +857 -0
  70. package/sdk/partner/Payment/PaymentPartnerModel.d.ts +388 -0
  71. package/sdk/partner/Payment/PaymentPartnerModel.js +442 -0
  72. package/sdk/partner/Payment/PaymentPartnerValidator.d.ts +14 -0
  73. package/sdk/partner/Payment/PaymentPartnerValidator.js +74 -0
  74. package/sdk/partner/Theme/ThemePartnerClient.d.ts +63 -21
  75. package/sdk/partner/Theme/ThemePartnerClient.js +396 -71
  76. package/sdk/partner/Theme/ThemePartnerModel.d.ts +104 -72
  77. package/sdk/partner/Theme/ThemePartnerModel.js +101 -75
  78. package/sdk/partner/Theme/ThemePartnerValidator.d.ts +5 -1
  79. package/sdk/partner/Theme/ThemePartnerValidator.js +42 -12
  80. package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +18 -18
  81. package/sdk/partner/Webhook/WebhookPartnerClient.js +18 -18
  82. package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +191 -670
  83. package/sdk/partner/Webhook/WebhookPartnerModel.js +159 -268
  84. package/sdk/partner/Webhook/WebhookPartnerValidator.js +3 -3
  85. package/sdk/partner/index.d.ts +3 -0
  86. package/sdk/partner/index.js +6 -0
  87. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +1 -4
  88. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
  89. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +5 -0
  90. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +3 -1
  91. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +32 -2
  92. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +243 -3
  93. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +145 -49
  94. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +171 -20
  95. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +39 -1
  96. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +35 -0
  97. package/sdk/platform/Billing/BillingPlatformClient.d.ts +406 -15
  98. package/sdk/platform/Billing/BillingPlatformClient.js +3214 -76
  99. package/sdk/platform/Billing/BillingPlatformModel.d.ts +3798 -459
  100. package/sdk/platform/Billing/BillingPlatformModel.js +2577 -342
  101. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +465 -24
  102. package/sdk/platform/Billing/BillingPlatformValidator.js +490 -14
  103. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +284 -205
  104. package/sdk/platform/Cart/CartPlatformApplicationClient.js +671 -553
  105. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +165 -165
  106. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +108 -132
  107. package/sdk/platform/Cart/CartPlatformModel.d.ts +3136 -4788
  108. package/sdk/platform/Cart/CartPlatformModel.js +2850 -2031
  109. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +1015 -419
  110. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +6450 -2010
  111. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +1121 -230
  112. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +919 -127
  113. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +372 -574
  114. package/sdk/platform/Catalog/CatalogPlatformClient.js +1238 -1317
  115. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +8351 -9825
  116. package/sdk/platform/Catalog/CatalogPlatformModel.js +9662 -6881
  117. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +288 -235
  118. package/sdk/platform/Catalog/CatalogPlatformValidator.js +241 -183
  119. package/sdk/platform/Common/CommonPlatformClient.d.ts +5 -6
  120. package/sdk/platform/Common/CommonPlatformClient.js +5 -6
  121. package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
  122. package/sdk/platform/Common/CommonPlatformModel.js +6 -6
  123. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +374 -234
  124. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +875 -583
  125. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +170 -139
  126. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +145 -126
  127. package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +56 -3
  128. package/sdk/platform/Communication/CommunicationPlatformClient.js +307 -4
  129. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +424 -252
  130. package/sdk/platform/Communication/CommunicationPlatformModel.js +540 -320
  131. package/sdk/platform/Communication/CommunicationPlatformValidator.d.ts +62 -3
  132. package/sdk/platform/Communication/CommunicationPlatformValidator.js +48 -2
  133. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +68 -99
  134. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +84 -140
  135. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +238 -256
  136. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +222 -244
  137. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +20 -20
  138. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +20 -20
  139. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +333 -118
  140. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +1470 -409
  141. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +158 -55
  142. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +163 -41
  143. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +151 -61
  144. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +595 -101
  145. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +1199 -462
  146. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +1008 -321
  147. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +80 -34
  148. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +79 -24
  149. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +253 -140
  150. package/sdk/platform/Content/ContentPlatformApplicationClient.js +1087 -458
  151. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +221 -178
  152. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +220 -157
  153. package/sdk/platform/Content/ContentPlatformClient.d.ts +124 -123
  154. package/sdk/platform/Content/ContentPlatformClient.js +459 -379
  155. package/sdk/platform/Content/ContentPlatformModel.d.ts +833 -1307
  156. package/sdk/platform/Content/ContentPlatformModel.js +893 -582
  157. package/sdk/platform/Content/ContentPlatformValidator.d.ts +140 -150
  158. package/sdk/platform/Content/ContentPlatformValidator.js +131 -135
  159. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +60 -36
  160. package/sdk/platform/Discount/DiscountPlatformClient.js +85 -36
  161. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +46 -47
  162. package/sdk/platform/Discount/DiscountPlatformModel.js +42 -46
  163. package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
  164. package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
  165. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +18 -15
  166. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +24 -22
  167. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +4 -4
  168. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +4 -4
  169. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +8 -8
  170. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +8 -8
  171. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +75 -86
  172. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +60 -74
  173. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
  174. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
  175. package/sdk/platform/Finance/FinancePlatformClient.d.ts +320 -0
  176. package/sdk/platform/Finance/FinancePlatformClient.js +2333 -0
  177. package/sdk/platform/Finance/FinancePlatformModel.d.ts +2895 -0
  178. package/sdk/platform/Finance/FinancePlatformModel.js +2150 -0
  179. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +284 -0
  180. package/sdk/platform/Finance/FinancePlatformValidator.js +354 -0
  181. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +17 -17
  182. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +33 -33
  183. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +19 -19
  184. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +14 -14
  185. package/sdk/platform/Lead/LeadPlatformClient.d.ts +4 -24
  186. package/sdk/platform/Lead/LeadPlatformClient.js +4 -160
  187. package/sdk/platform/Lead/LeadPlatformModel.d.ts +142 -57
  188. package/sdk/platform/Lead/LeadPlatformModel.js +162 -79
  189. package/sdk/platform/Lead/LeadPlatformValidator.d.ts +3 -29
  190. package/sdk/platform/Lead/LeadPlatformValidator.js +2 -28
  191. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +94 -25
  192. package/sdk/platform/Order/OrderPlatformApplicationClient.js +600 -57
  193. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +115 -115
  194. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +120 -43
  195. package/sdk/platform/Order/OrderPlatformClient.d.ts +502 -293
  196. package/sdk/platform/Order/OrderPlatformClient.js +1466 -913
  197. package/sdk/platform/Order/OrderPlatformModel.d.ts +4103 -9109
  198. package/sdk/platform/Order/OrderPlatformModel.js +3198 -4245
  199. package/sdk/platform/Order/OrderPlatformValidator.d.ts +445 -612
  200. package/sdk/platform/Order/OrderPlatformValidator.js +316 -326
  201. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -6
  202. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +7 -9
  203. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
  204. package/sdk/platform/Partner/PartnerPlatformModel.js +7 -7
  205. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +382 -135
  206. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +2453 -935
  207. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +306 -93
  208. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +305 -70
  209. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +66 -56
  210. package/sdk/platform/Payment/PaymentPlatformClient.js +269 -124
  211. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +3525 -1313
  212. package/sdk/platform/Payment/PaymentPlatformModel.js +3813 -1511
  213. package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +64 -35
  214. package/sdk/platform/Payment/PaymentPlatformValidator.js +60 -34
  215. package/sdk/platform/PlatformClient.d.ts +2 -0
  216. package/sdk/platform/PlatformClient.js +4 -0
  217. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
  218. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
  219. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
  220. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
  221. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +14 -9
  222. package/sdk/platform/Rewards/RewardsPlatformModel.js +10 -8
  223. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +344 -56
  224. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +2180 -302
  225. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +380 -54
  226. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +336 -37
  227. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +127 -213
  228. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +538 -1306
  229. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +3429 -2979
  230. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +3642 -1785
  231. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +218 -392
  232. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +151 -290
  233. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +4 -16
  234. package/sdk/platform/Share/SharePlatformApplicationClient.js +8 -86
  235. package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +6 -23
  236. package/sdk/platform/Share/SharePlatformApplicationValidator.js +3 -16
  237. package/sdk/platform/Share/SharePlatformModel.d.ts +6 -50
  238. package/sdk/platform/Share/SharePlatformModel.js +3 -43
  239. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +26 -4
  240. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +157 -10
  241. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +21 -10
  242. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +23 -6
  243. package/sdk/platform/Theme/ThemePlatformClient.d.ts +18 -8
  244. package/sdk/platform/Theme/ThemePlatformClient.js +85 -8
  245. package/sdk/platform/Theme/ThemePlatformModel.d.ts +425 -17
  246. package/sdk/platform/Theme/ThemePlatformModel.js +329 -23
  247. package/sdk/platform/Theme/ThemePlatformValidator.d.ts +7 -3
  248. package/sdk/platform/Theme/ThemePlatformValidator.js +9 -2
  249. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +18 -71
  250. package/sdk/platform/User/UserPlatformApplicationClient.js +27 -412
  251. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +10 -114
  252. package/sdk/platform/User/UserPlatformApplicationValidator.js +7 -80
  253. package/sdk/platform/User/UserPlatformModel.d.ts +216 -264
  254. package/sdk/platform/User/UserPlatformModel.js +209 -216
  255. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +78 -25
  256. package/sdk/platform/Webhook/WebhookPlatformClient.js +470 -75
  257. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +428 -810
  258. package/sdk/platform/Webhook/WebhookPlatformModel.js +395 -444
  259. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +55 -10
  260. package/sdk/platform/Webhook/WebhookPlatformValidator.js +72 -12
  261. package/sdk/platform/index.d.ts +1 -0
  262. package/sdk/platform/index.js +2 -0
  263. package/sdk/public/Billing/BillingPublicClient.d.ts +56 -0
  264. package/sdk/public/Billing/BillingPublicClient.js +397 -0
  265. package/sdk/public/Billing/BillingPublicModel.d.ts +919 -0
  266. package/sdk/public/Billing/BillingPublicModel.js +560 -0
  267. package/sdk/public/Billing/BillingPublicValidator.d.ts +43 -0
  268. package/sdk/public/Billing/BillingPublicValidator.js +50 -0
  269. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +14 -4
  270. package/sdk/public/Configuration/ConfigurationPublicClient.js +97 -9
  271. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +102 -40
  272. package/sdk/public/Configuration/ConfigurationPublicModel.js +111 -29
  273. package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +11 -1
  274. package/sdk/public/Configuration/ConfigurationPublicValidator.js +12 -0
  275. package/sdk/public/Content/ContentPublicClient.d.ts +22 -0
  276. package/sdk/public/Content/ContentPublicClient.js +183 -0
  277. package/sdk/public/Content/ContentPublicModel.d.ts +38 -1
  278. package/sdk/public/Content/ContentPublicModel.js +47 -1
  279. package/sdk/public/Content/ContentPublicValidator.d.ts +17 -1
  280. package/sdk/public/Content/ContentPublicValidator.js +19 -0
  281. package/sdk/public/PublicClient.d.ts +2 -2
  282. package/sdk/public/PublicClient.js +2 -2
  283. package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
  284. package/sdk/public/Webhook/WebhookPublicClient.js +8 -8
  285. package/sdk/public/Webhook/WebhookPublicModel.d.ts +67 -215
  286. package/sdk/public/Webhook/WebhookPublicModel.js +61 -66
  287. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
  288. package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
  289. package/sdk/public/index.d.ts +1 -1
  290. package/sdk/public/index.js +1 -1
  291. package/sdk/application/Finance/FinanceApplicationClient.d.ts +0 -29
  292. package/sdk/application/Finance/FinanceApplicationClient.js +0 -126
  293. package/sdk/public/Catalog/CatalogPublicClient.d.ts +0 -22
  294. package/sdk/public/Catalog/CatalogPublicClient.js +0 -138
  295. package/sdk/public/Catalog/CatalogPublicModel.d.ts +0 -155
  296. package/sdk/public/Catalog/CatalogPublicModel.js +0 -116
  297. package/sdk/public/Catalog/CatalogPublicValidator.d.ts +0 -55
  298. package/sdk/public/Catalog/CatalogPublicValidator.js +0 -35
@@ -31,7 +31,7 @@ declare class Content {
31
31
  * @returns {Promise<ContentPlatformModel.TagsSchema>} - Success response
32
32
  * @name addInjectableTag
33
33
  * @summary: Create HTML tag
34
- * @description: Create and add a new injectable tag. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/addInjectableTag/).
34
+ * @description: Create and add a new injectable tag - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/addInjectableTag/).
35
35
  */
36
36
  addInjectableTag({ body, requestHeaders }?: ContentPlatformApplicationValidator.AddInjectableTagParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TagsSchema>;
37
37
  /**
@@ -40,12 +40,12 @@ declare class Content {
40
40
  *
41
41
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
42
42
  * @param {import("../PlatformAPIClient").Options} - Options
43
- * @returns {Promise<ContentPlatformModel.PathMappingSchema>} - Success response
43
+ * @returns {Promise<ContentPlatformModel.CreatePathMappingSchema>} - Success response
44
44
  * @name addPathRedirectionRules
45
45
  * @summary: Create path redirection rules
46
46
  * @description: Create and add rules for path redirection. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/addPathRedirectionRules/).
47
47
  */
48
- addPathRedirectionRules({ body, requestHeaders }?: ContentPlatformApplicationValidator.AddPathRedirectionRulesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PathMappingSchema>;
48
+ addPathRedirectionRules({ body, requestHeaders }?: ContentPlatformApplicationValidator.AddPathRedirectionRulesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreatePathMappingSchema>;
49
49
  /**
50
50
  * @param {ContentPlatformApplicationValidator.CreateAnnouncementParam} arg
51
51
  * - Arg object
@@ -59,6 +59,20 @@ declare class Content {
59
59
  * @description: Generate and add a new announcement. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createAnnouncement/).
60
60
  */
61
61
  createAnnouncement({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAnnouncementParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateAnnouncementSchema>;
62
+ /**
63
+ * @param {ContentPlatformApplicationValidator.CreateAppCustomFieldByResourceIdParam} arg
64
+ * - Arg object
65
+ *
66
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
67
+ * @param {import("../PlatformAPIClient").Options} - Options
68
+ * @returns {Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>}
69
+ * - Success response
70
+ *
71
+ * @name createAppCustomFieldByResourceId
72
+ * @summary: Create custom field entries for gives resource and resource_id
73
+ * @description: You can add a custom field using this endpoint to any resource by providing the resource ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createAppCustomFieldByResourceId/).
74
+ */
75
+ createAppCustomFieldByResourceId({ resource, resourceId, body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomFieldByResourceIdParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>;
62
76
  /**
63
77
  * @param {ContentPlatformApplicationValidator.CreateAppCustomFieldDefinitionParam} arg
64
78
  * - Arg object
@@ -69,36 +83,35 @@ declare class Content {
69
83
  * - Success response
70
84
  *
71
85
  * @name createAppCustomFieldDefinition
72
- * @summary: Create custom field definition for a given resource type
86
+ * @summary: Create custom field definition
73
87
  * @description: You can create custom fields definition to any resource so you can extend property of resource. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createAppCustomFieldDefinition/).
74
88
  */
75
- createAppCustomFieldDefinition({ resource, body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomFieldDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>;
89
+ createAppCustomFieldDefinition({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomFieldDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>;
76
90
  /**
77
- * @param {ContentPlatformApplicationValidator.CreateAppCustomObjectBySlugParam} arg
91
+ * @param {ContentPlatformApplicationValidator.CreateAppCustomObjectParam} arg
78
92
  * - Arg object
79
93
  *
80
94
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
81
95
  * @param {import("../PlatformAPIClient").Options} - Options
82
96
  * @returns {Promise<ContentPlatformModel.CustomObjectSchema>} - Success response
83
- * @name createAppCustomObjectBySlug
97
+ * @name createAppCustomObject
84
98
  * @summary: Create custom object entries
85
- * @description: Custom object entries against the custom object definition can be added using this API. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createAppCustomObjectBySlug/).
99
+ * @description: Custom object entries against the custom object definition can be added using this API. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createAppCustomObject/).
86
100
  */
87
- createAppCustomObjectBySlug({ definitionSlug, body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomObjectBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectSchema>;
101
+ createAppCustomObject({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomObjectParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectSchema>;
88
102
  /**
89
103
  * @param {ContentPlatformApplicationValidator.CreateAppCustomObjectDefinitionParam} arg
90
104
  * - Arg object
91
105
  *
92
106
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
93
107
  * @param {import("../PlatformAPIClient").Options} - Options
94
- * @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>}
95
- * - Success response
96
- *
108
+ * @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSchema>} -
109
+ * Success response
97
110
  * @name createAppCustomObjectDefinition
98
111
  * @summary: Create custom object definition
99
112
  * @description: Create a custom object that will have a collection of custom fields and can be used anywhere in the custom field for any resource. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createAppCustomObjectDefinition/).
100
113
  */
101
- createAppCustomObjectDefinition({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>;
114
+ createAppCustomObjectDefinition({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSchema>;
102
115
  /**
103
116
  * @param {ContentPlatformApplicationValidator.CreateBlogParam} arg - Arg object
104
117
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -121,6 +134,18 @@ declare class Content {
121
134
  * @description: Generate and add a new FAQ category. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createFaqCategory/).
122
135
  */
123
136
  createFaqCategory({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateFaqCategoryParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateFaqCategorySchema>;
137
+ /**
138
+ * @param {ContentPlatformApplicationValidator.CreateInjectableTagParam} arg
139
+ * - Arg object
140
+ *
141
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
142
+ * @param {import("../PlatformAPIClient").Options} - Options
143
+ * @returns {Promise<ContentPlatformModel.TagsSchema>} - Success response
144
+ * @name createInjectableTag
145
+ * @summary: Create HTML tags
146
+ * @description: Use this API to create HTML tags. This includes a list of tags with name, tag type (css/js), url and position of the tag - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createInjectableTag/).
147
+ */
148
+ createInjectableTag({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateInjectableTagParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TagsSchema>;
124
149
  /**
125
150
  * @param {ContentPlatformApplicationValidator.CreateLandingPageParam} arg
126
151
  * - Arg object
@@ -153,6 +178,18 @@ declare class Content {
153
178
  * @description: Generate and add a new page to the platform. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createPage/).
154
179
  */
155
180
  createPage({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreatePageParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PageSchema>;
181
+ /**
182
+ * @param {ContentPlatformApplicationValidator.CreatePagePreviewParam} arg
183
+ * - Arg object
184
+ *
185
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
186
+ * @param {import("../PlatformAPIClient").Options} - Options
187
+ * @returns {Promise<ContentPlatformModel.PageSchema>} - Success response
188
+ * @name createPagePreview
189
+ * @summary: Create page preview
190
+ * @description: Generate and add a new page preview. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createPagePreview/).
191
+ */
192
+ createPagePreview({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreatePagePreviewParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PageSchema>;
156
193
  /**
157
194
  * @param {ContentPlatformApplicationValidator.CreateSEOMarkupSchemaParam} arg
158
195
  * - Arg object
@@ -165,6 +202,18 @@ declare class Content {
165
202
  * @description: Use this API to Create SEO Markup Schema - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createSEOMarkupSchema/).
166
203
  */
167
204
  createSEOMarkupSchema({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateSEOMarkupSchemaParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>;
205
+ /**
206
+ * @param {ContentPlatformApplicationValidator.DeleteAllInjectableTagsParam} arg
207
+ * - Arg object
208
+ *
209
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
210
+ * @param {import("../PlatformAPIClient").Options} - Options
211
+ * @returns {Promise<ContentPlatformModel.TagsSchema>} - Success response
212
+ * @name deleteAllInjectableTags
213
+ * @summary: Delete HTML tags in application
214
+ * @description: Use this API to delete all the existing tags at once - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteAllInjectableTags/).
215
+ */
216
+ deleteAllInjectableTags({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.TagsSchema>;
168
217
  /**
169
218
  * @param {ContentPlatformApplicationValidator.DeleteAnnouncementParam} arg
170
219
  * - Arg object
@@ -179,31 +228,44 @@ declare class Content {
179
228
  */
180
229
  deleteAnnouncement({ announcementId, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAnnouncementParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateAnnouncementSchema>;
181
230
  /**
182
- * @param {ContentPlatformApplicationValidator.DeleteAppCustomFieldDefinitionBySlugParam} arg
231
+ * @param {ContentPlatformApplicationValidator.DeleteAppCustomFieldDefinitionParam} arg
183
232
  * - Arg object
184
233
  *
185
234
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
186
235
  * @param {import("../PlatformAPIClient").Options} - Options
187
236
  * @returns {Promise<ContentPlatformModel.CustomDataDeleteSchema>} - Success response
188
- * @name deleteAppCustomFieldDefinitionBySlug
237
+ * @name deleteAppCustomFieldDefinition
189
238
  * @summary: Delete custom fields definition
190
- * @description: Custom field definition and its assosiated custom fields value can be deleted using this api on the basis of definition id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteAppCustomFieldDefinitionBySlug/).
239
+ * @description: Custom field definition and its assosiated custom fields value can be deleted using this api on the basis of definition id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteAppCustomFieldDefinition/).
191
240
  */
192
- deleteAppCustomFieldDefinitionBySlug({ slug, resource, namespace, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomFieldDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomDataDeleteSchema>;
241
+ deleteAppCustomFieldDefinition({ id, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomFieldDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomDataDeleteSchema>;
193
242
  /**
194
- * @param {ContentPlatformApplicationValidator.DeleteAppCustomObjectBySlugParam} arg
243
+ * @param {ContentPlatformApplicationValidator.DeleteAppCustomFieldsByResourceIdParam} arg
244
+ * - Arg object
245
+ *
246
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
247
+ * @param {import("../PlatformAPIClient").Options} - Options
248
+ * @returns {Promise<ContentPlatformModel.CustomFieldsDeleteSchema>} -
249
+ * Success response
250
+ * @name deleteAppCustomFieldsByResourceId
251
+ * @summary: delete custom fields of given resource and resource id
252
+ * @description: Use this API to delete the custom fields for given resource in param. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteAppCustomFieldsByResourceId/).
253
+ */
254
+ deleteAppCustomFieldsByResourceId({ resource, resourceId, ids, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomFieldsByResourceIdParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsDeleteSchema>;
255
+ /**
256
+ * @param {ContentPlatformApplicationValidator.DeleteAppCustomObjectParam} arg
195
257
  * - Arg object
196
258
  *
197
259
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
198
260
  * @param {import("../PlatformAPIClient").Options} - Options
199
261
  * @returns {Promise<ContentPlatformModel.CustomDataDeleteSchema>} - Success response
200
- * @name deleteAppCustomObjectBySlug
262
+ * @name deleteAppCustomObject
201
263
  * @summary: Delete custom object
202
- * @description: A Custom object entry can be deleted by providing the custom object definition slug and custom object entry slug using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteAppCustomObjectBySlug/).
264
+ * @description: Custom object entries can be deleted by providing the delete ID using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteAppCustomObject/).
203
265
  */
204
- deleteAppCustomObjectBySlug({ definitionSlug, slug, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomObjectBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomDataDeleteSchema>;
266
+ deleteAppCustomObject({ id, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomObjectParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomDataDeleteSchema>;
205
267
  /**
206
- * @param {ContentPlatformApplicationValidator.DeleteAppCustomObjectDefinitionBySlugParam} arg
268
+ * @param {ContentPlatformApplicationValidator.DeleteAppCustomObjectDefinitionParam} arg
207
269
  * - Arg object
208
270
  *
209
271
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -211,11 +273,11 @@ declare class Content {
211
273
  * @returns {Promise<ContentPlatformModel.CustomObjectDefinitionDeleteResponseSchema>}
212
274
  * - Success response
213
275
  *
214
- * @name deleteAppCustomObjectDefinitionBySlug
276
+ * @name deleteAppCustomObjectDefinition
215
277
  * @summary: Delete custom object definition
216
- * @description: Custom object definitions can be deleted using this endpoint by providing the definition ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteAppCustomObjectDefinitionBySlug/).
278
+ * @description: Custom object definitions can be deleted using this endpoint by providing the definition ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteAppCustomObjectDefinition/).
217
279
  */
218
- deleteAppCustomObjectDefinitionBySlug({ slug, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomObjectDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionDeleteResponseSchema>;
280
+ deleteAppCustomObjectDefinition({ id, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionDeleteResponseSchema>;
219
281
  /**
220
282
  * @param {ContentPlatformApplicationValidator.DeleteBlogParam} arg - Arg object
221
283
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -253,12 +315,12 @@ declare class Content {
253
315
  *
254
316
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
255
317
  * @param {import("../PlatformAPIClient").Options} - Options
256
- * @returns {Promise<ContentPlatformModel.FaqSchema>} - Success response
318
+ * @returns {Promise<ContentPlatformModel.CreateFaqCategorySchema>} - Success response
257
319
  * @name deleteFaqCategory
258
320
  * @summary: Delete FAQ category
259
321
  * @description: Remove a specific FAQ category. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteFaqCategory/).
260
322
  */
261
- deleteFaqCategory({ id, requestHeaders }?: ContentPlatformApplicationValidator.DeleteFaqCategoryParam, { responseHeaders }?: object): Promise<ContentPlatformModel.FaqSchema>;
323
+ deleteFaqCategory({ id, requestHeaders }?: ContentPlatformApplicationValidator.DeleteFaqCategoryParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateFaqCategorySchema>;
262
324
  /**
263
325
  * @param {ContentPlatformApplicationValidator.DeleteLandingPageParam} arg
264
326
  * - Arg object
@@ -297,12 +359,12 @@ declare class Content {
297
359
  *
298
360
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
299
361
  * @param {import("../PlatformAPIClient").Options} - Options
300
- * @returns {Promise<Object>} - Success response
362
+ * @returns {Promise<ContentPlatformModel.DeletPathMappingSchema>} - Success response
301
363
  * @name deletePathRedirectionRules
302
364
  * @summary: Delete path redirection rule
303
365
  * @description: Remove specific path redirection rules. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deletePathRedirectionRules/).
304
366
  */
305
- deletePathRedirectionRules({ pathId, requestHeaders }?: ContentPlatformApplicationValidator.DeletePathRedirectionRulesParam, { responseHeaders }?: object): Promise<any>;
367
+ deletePathRedirectionRules({ pathId, requestHeaders }?: ContentPlatformApplicationValidator.DeletePathRedirectionRulesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.DeletPathMappingSchema>;
306
368
  /**
307
369
  * @param {ContentPlatformApplicationValidator.DeleteSEOMarkupSchemaParam} arg
308
370
  * - Arg object
@@ -314,7 +376,7 @@ declare class Content {
314
376
  * @summary: Delete SEO Markup Schema
315
377
  * @description: Use this API to Delete SEO Markup Schema - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteSEOMarkupSchema/).
316
378
  */
317
- deleteSEOMarkupSchema({ id, requestHeaders }?: ContentPlatformApplicationValidator.DeleteSEOMarkupSchemaParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>;
379
+ deleteSEOMarkupSchema({ schemaId, requestHeaders }?: ContentPlatformApplicationValidator.DeleteSEOMarkupSchemaParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>;
318
380
  /**
319
381
  * @param {ContentPlatformApplicationValidator.EditDataLoaderParam} arg - Arg object
320
382
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -335,7 +397,7 @@ declare class Content {
335
397
  * @returns {Promise<ContentPlatformModel.TagsSchema>} - Success response
336
398
  * @name editInjectableTag
337
399
  * @summary: Update HTML tag
338
- * @description: Modify settings for an injectable tag. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/editInjectableTag/).
400
+ * @description: Modify an injectable tag - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/editInjectableTag/).
339
401
  */
340
402
  editInjectableTag({ tagId, body, requestHeaders }?: ContentPlatformApplicationValidator.EditInjectableTagParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TagsSchema>;
341
403
  /**
@@ -346,12 +408,12 @@ declare class Content {
346
408
  * @param {import("../PlatformAPIClient").Options} - Options
347
409
  * @returns {Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>} - Success response
348
410
  * @name editSEOMarkupSchema
349
- * @summary: Get SEO Markup Schema
350
- * @description: Use this API to Get SEO Markup Schema - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/editSEOMarkupSchema/).
411
+ * @summary: Edit SEO Markup Schema
412
+ * @description: Use this API to edit SEO Markup Schema - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/editSEOMarkupSchema/).
351
413
  */
352
- editSEOMarkupSchema({ id, body, requestHeaders }?: ContentPlatformApplicationValidator.EditSEOMarkupSchemaParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>;
414
+ editSEOMarkupSchema({ schemaId, body, requestHeaders }?: ContentPlatformApplicationValidator.EditSEOMarkupSchemaParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>;
353
415
  /**
354
- * @param {ContentPlatformApplicationValidator.ExportAppCustomObjectEntriesBySlugParam} arg
416
+ * @param {ContentPlatformApplicationValidator.ExportAppCustomObjectEntriesParam} arg
355
417
  * - Arg object
356
418
  *
357
419
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -359,11 +421,11 @@ declare class Content {
359
421
  * @returns {Promise<ContentPlatformModel.CustomObjectBulkEntryInitiateDownload>}
360
422
  * - Success response
361
423
  *
362
- * @name exportAppCustomObjectEntriesBySlug
424
+ * @name exportAppCustomObjectEntries
363
425
  * @summary: Initiate download for bulk custom object entries
364
- * @description: Custom object bulk export of bulk entries can be perform using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/exportAppCustomObjectEntriesBySlug/).
426
+ * @description: Custom object bulk export of bulk entries can be perform using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/exportAppCustomObjectEntries/).
365
427
  */
366
- exportAppCustomObjectEntriesBySlug({ slug, requestHeaders }?: ContentPlatformApplicationValidator.ExportAppCustomObjectEntriesBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectBulkEntryInitiateDownload>;
428
+ exportAppCustomObjectEntries({ definitionId, requestHeaders }?: ContentPlatformApplicationValidator.ExportAppCustomObjectEntriesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectBulkEntryInitiateDownload>;
367
429
  /**
368
430
  * @param {ContentPlatformApplicationValidator.GenerateSEOTitleParam} arg - Arg object
369
431
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -400,45 +462,45 @@ declare class Content {
400
462
  */
401
463
  getAnnouncementsList({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetAnnouncementsListParam, { responseHeaders }?: object): Promise<ContentPlatformModel.GetAnnouncementListSchema>;
402
464
  /**
403
- * @param {ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionByResourceParam} arg
465
+ * @param {ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionParam} arg
404
466
  * - Arg object
405
467
  *
406
468
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
407
469
  * @param {import("../PlatformAPIClient").Options} - Options
408
- * @returns {Promise<ContentPlatformModel.CustomFieldDefinitionsSchema>} -
409
- * Success response
410
- * @name getAppCustomFieldDefinitionByResource
411
- * @summary: Get custom fields definitions for a given resource type
412
- * @description: Custom field definitions enable you to include data validation for custom fields, and enable sellers to add custom fields values for resources. With the help of this seller can retrive list of custom field definitions list. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldDefinitionByResource/).
470
+ * @returns {Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>}
471
+ * - Success response
472
+ *
473
+ * @name getAppCustomFieldDefinition
474
+ * @summary: Get custom fields definition by id
475
+ * @description: Use this API to retrieve the definitions of custom fields using definition_id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldDefinition/).
413
476
  */
414
- getAppCustomFieldDefinitionByResource({ pageNo, pageSize, resource, types, search, slugs, namespaces, requestHeaders, }?: ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionByResourceParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionsSchema>;
477
+ getAppCustomFieldDefinition({ id, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>;
415
478
  /**
416
- * @param {ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionBySlugParam} arg
479
+ * @param {ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionsParam} arg
417
480
  * - Arg object
418
481
  *
419
482
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
420
483
  * @param {import("../PlatformAPIClient").Options} - Options
421
- * @returns {Promise<ContentPlatformModel.MetaFieldDefinitionDetailResSchema>}
484
+ * @returns {Promise<ContentPlatformModel.ApplicationCustomFieldDefinitionsSchema>}
422
485
  * - Success response
423
486
  *
424
- * @name getAppCustomFieldDefinitionBySlug
425
- * @summary: Get custom fields definition by resource, slug and namespace
426
- * @description: Custom field definitions can be retrived from this using its slug, namespace and resource - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldDefinitionBySlug/).
487
+ * @name getAppCustomFieldDefinitions
488
+ * @summary: Get custom fields definitions
489
+ * @description: Custom field definitions enable you to include data validation for custom fields, and enable sellers to add custom fields values for resources. With the help of this seller can retrive list of custom field definitions list. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldDefinitions/).
427
490
  */
428
- getAppCustomFieldDefinitionBySlug({ slug, resource, namespace, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.MetaFieldDefinitionDetailResSchema>;
491
+ getAppCustomFieldDefinitions({ pageNo, pageSize, resources, types, search, slugs, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.ApplicationCustomFieldDefinitionsSchema>;
429
492
  /**
430
- * @param {ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionsParam} arg
493
+ * @param {ContentPlatformApplicationValidator.GetAppCustomFieldJobsParam} arg
431
494
  * - Arg object
432
495
  *
433
496
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
434
497
  * @param {import("../PlatformAPIClient").Options} - Options
435
- * @returns {Promise<ContentPlatformModel.CustomFieldDefinitionsSchema>} -
436
- * Success response
437
- * @name getAppCustomFieldDefinitions
438
- * @summary: Get custom fields definitions
439
- * @description: Custom field definitions enable you to include data validation for custom fields, and enable sellers to add custom fields values for resources. With the help of this seller can retrive list of custom field definitions list. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldDefinitions/).
498
+ * @returns {Promise<ContentPlatformModel.CustomFieldBulkEntry>} - Success response
499
+ * @name getAppCustomFieldJobs
500
+ * @summary: Fetch bulk import and export job list.
501
+ * @description: Use this api to get list of jobs of bulk import and exports - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldJobs/).
440
502
  */
441
- getAppCustomFieldDefinitions({ pageNo, pageSize, resources, types, search, slugs, namespaces, requestHeaders, }?: ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionsSchema>;
503
+ getAppCustomFieldJobs({ page, pageSize, actionType, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldJobsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldBulkEntry>;
442
504
  /**
443
505
  * @param {ContentPlatformApplicationValidator.GetAppCustomFieldTypesParam} arg
444
506
  * - Arg object
@@ -452,7 +514,20 @@ declare class Content {
452
514
  */
453
515
  getAppCustomFieldTypes({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.MetafieldTypesSchema>;
454
516
  /**
455
- * @param {ContentPlatformApplicationValidator.GetAppCustomFieldsByResourceSlugParam} arg
517
+ * @param {ContentPlatformApplicationValidator.GetAppCustomFieldsParam} arg
518
+ * - Arg object
519
+ *
520
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
521
+ * @param {import("../PlatformAPIClient").Options} - Options
522
+ * @returns {Promise<ContentPlatformModel.CustomFieldsResponseSchema>} -
523
+ * Success response
524
+ * @name getAppCustomFields
525
+ * @summary: Get list of custom fields of gives resource
526
+ * @description: Retrieves a list of custom fields attached to a particular resource by using the resource. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFields/).
527
+ */
528
+ getAppCustomFields({ resource, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsResponseSchema>;
529
+ /**
530
+ * @param {ContentPlatformApplicationValidator.GetAppCustomFieldsByResourceIdParam} arg
456
531
  * - Arg object
457
532
  *
458
533
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -460,38 +535,36 @@ declare class Content {
460
535
  * @returns {Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>}
461
536
  * - Success response
462
537
  *
463
- * @name getAppCustomFieldsByResourceSlug
464
- * @summary: Get list of custom fields of given resource and resource slug
465
- * @description: Retrieves a list of custom fields attached to a particular resource by using the resource and resource slug. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldsByResourceSlug/).
538
+ * @name getAppCustomFieldsByResourceId
539
+ * @summary: Get list of custom fields of given resource and resource id
540
+ * @description: Retrieves a list of custom fields attached to a particular resource by using the resource and resource id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldsByResourceId/).
466
541
  */
467
- getAppCustomFieldsByResourceSlug({ resource, resourceSlug, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldsByResourceSlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>;
542
+ getAppCustomFieldsByResourceId({ resource, resourceId, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldsByResourceIdParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>;
468
543
  /**
469
- * @param {ContentPlatformApplicationValidator.GetAppCustomObjectBySlugParam} arg
544
+ * @param {ContentPlatformApplicationValidator.GetAppCustomObjectParam} arg
470
545
  * - Arg object
471
546
  *
472
547
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
473
548
  * @param {import("../PlatformAPIClient").Options} - Options
474
- * @returns {Promise<ContentPlatformModel.CustomObjectBySlugSchema>} -
475
- * Success response
476
- * @name getAppCustomObjectBySlug
549
+ * @returns {Promise<ContentPlatformModel.CustomObjectByIdSchema>} - Success response
550
+ * @name getAppCustomObject
477
551
  * @summary: Get custom object details
478
- * @description: Details of a custom object entry can be obtained using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomObjectBySlug/).
552
+ * @description: Details of custom objects, their field details, definitions, and references can be obtained using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomObject/).
479
553
  */
480
- getAppCustomObjectBySlug({ definitionSlug, slug, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectBySlugSchema>;
554
+ getAppCustomObject({ id, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectByIdSchema>;
481
555
  /**
482
- * @param {ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionBySlugParam} arg
556
+ * @param {ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionParam} arg
483
557
  * - Arg object
484
558
  *
485
559
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
486
560
  * @param {import("../PlatformAPIClient").Options} - Options
487
- * @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>}
488
- * - Success response
489
- *
490
- * @name getAppCustomObjectDefinitionBySlug
561
+ * @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSchema>} -
562
+ * Success response
563
+ * @name getAppCustomObjectDefinition
491
564
  * @summary: Get custom object definition
492
- * @description: Custom object definitions can be fetched using their custom object definition slug. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomObjectDefinitionBySlug/).
565
+ * @description: Custom object definitions can be fetched using their definition ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomObjectDefinition/).
493
566
  */
494
- getAppCustomObjectDefinitionBySlug({ slug, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>;
567
+ getAppCustomObjectDefinition({ id, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSchema>;
495
568
  /**
496
569
  * @param {ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionsParam} arg
497
570
  * - Arg object
@@ -506,17 +579,17 @@ declare class Content {
506
579
  */
507
580
  getAppCustomObjectDefinitions({ pageNo, pageSize, search, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionsSchema>;
508
581
  /**
509
- * @param {ContentPlatformApplicationValidator.GetAppCustomObjectsBySlugParam} arg
582
+ * @param {ContentPlatformApplicationValidator.GetAppCustomObjectsParam} arg
510
583
  * - Arg object
511
584
  *
512
585
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
513
586
  * @param {import("../PlatformAPIClient").Options} - Options
514
587
  * @returns {Promise<ContentPlatformModel.CustomObjectsSchema>} - Success response
515
- * @name getAppCustomObjectsBySlug
588
+ * @name getAppCustomObjects
516
589
  * @summary: Get list of custom objects
517
- * @description: Custom object entries can fetch using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomObjectsBySlug/).
590
+ * @description: Custom object entries can fetch using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomObjects/).
518
591
  */
519
- getAppCustomObjectsBySlug({ pageNo, pageSize, definitionSlug, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectsBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectsSchema>;
592
+ getAppCustomObjects({ pageNo, pageSize, definitionId, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectsSchema>;
520
593
  /**
521
594
  * @param {ContentPlatformApplicationValidator.GetAppJobsParam} arg - Arg object
522
595
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -543,7 +616,7 @@ declare class Content {
543
616
  * @param {import("../PlatformAPIClient").Options} - Options
544
617
  * @returns {Promise<ContentPlatformModel.BlogSchema>} - Success response
545
618
  * @name getBlogBySlug
546
- * @summary: Get blog by slug
619
+ * @summary: Get blog by slug.
547
620
  * @description: Retrieve detailed information about a specific blog using its slug. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getBlogBySlug/).
548
621
  */
549
622
  getBlogBySlug({ slug, requestHeaders }?: ContentPlatformApplicationValidator.GetBlogBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.BlogSchema>;
@@ -551,12 +624,35 @@ declare class Content {
551
624
  * @param {ContentPlatformApplicationValidator.GetBlogsParam} arg - Arg object
552
625
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
553
626
  * @param {import("../PlatformAPIClient").Options} - Options
554
- * @returns {Promise<ContentPlatformModel.BlogGetDetails>} - Success response
627
+ * @returns {Promise<ContentPlatformModel.BlogGetResponse>} - Success response
555
628
  * @name getBlogs
556
629
  * @summary: List blogs
557
630
  * @description: List all blogs - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getBlogs/).
558
631
  */
559
- getBlogs({ pageNo, pageSize, tags, q, slug, title, status, requestHeaders }?: ContentPlatformApplicationValidator.GetBlogsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.BlogGetDetails>;
632
+ getBlogs({ pageNo, pageSize, tags, q, slug, title, status, requestHeaders }?: ContentPlatformApplicationValidator.GetBlogsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.BlogGetResponse>;
633
+ /**
634
+ * @param {ContentPlatformApplicationValidator.GetComponentByIdParam} arg - Arg object
635
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
636
+ * @param {import("../PlatformAPIClient").Options} - Options
637
+ * @returns {Promise<ContentPlatformModel.BlogSchema>} - Success response
638
+ * @name getComponentById
639
+ * @summary: Get component
640
+ * @description: Retrieve detailed information about a specific component. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getComponentById/).
641
+ */
642
+ getComponentById({ slug, requestHeaders }?: ContentPlatformApplicationValidator.GetComponentByIdParam, { responseHeaders }?: object): Promise<ContentPlatformModel.BlogSchema>;
643
+ /**
644
+ * @param {ContentPlatformApplicationValidator.GetDataLoaderApiSpecsParam} arg
645
+ * - Arg object
646
+ *
647
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
648
+ * @param {import("../PlatformAPIClient").Options} - Options
649
+ * @returns {Promise<ContentPlatformModel.DataLoadersApiSpecSchema>} -
650
+ * Success response
651
+ * @name getDataLoaderApiSpecs
652
+ * @summary: Get data loaders api specs.
653
+ * @description: Retrieve a list of data loaders api specs. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getDataLoaderApiSpecs/).
654
+ */
655
+ getDataLoaderApiSpecs({ dataLoader, requestHeaders }?: ContentPlatformApplicationValidator.GetDataLoaderApiSpecsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.DataLoadersApiSpecSchema>;
560
656
  /**
561
657
  * @param {ContentPlatformApplicationValidator.GetDataLoadersParam} arg - Arg object
562
658
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -573,26 +669,26 @@ declare class Content {
573
669
  *
574
670
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
575
671
  * @param {import("../PlatformAPIClient").Options} - Options
576
- * @returns {Promise<ContentPlatformModel.DataLoaderResponseSchema>} -
672
+ * @returns {Promise<ContentPlatformModel.DataLoaderItemsResponseSchema>} -
577
673
  * Success response
578
674
  * @name getDataLoadersByService
579
675
  * @summary: List all data loaders
580
676
  * @description: Use this to get all data loaders of an application by service name - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getDataLoadersByService/).
581
677
  */
582
- getDataLoadersByService({ serviceName, requestHeaders }?: ContentPlatformApplicationValidator.GetDataLoadersByServiceParam, { responseHeaders }?: object): Promise<ContentPlatformModel.DataLoaderResponseSchema>;
678
+ getDataLoadersByService({ serviceName, requestHeaders }?: ContentPlatformApplicationValidator.GetDataLoadersByServiceParam, { responseHeaders }?: object): Promise<ContentPlatformModel.DataLoaderItemsResponseSchema>;
583
679
  /**
584
680
  * @param {ContentPlatformApplicationValidator.GetDefaultNavigationsParam} arg
585
681
  * - Arg object
586
682
  *
587
683
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
588
684
  * @param {import("../PlatformAPIClient").Options} - Options
589
- * @returns {Promise<ContentPlatformModel.DefaultNavigationDetails>} -
685
+ * @returns {Promise<ContentPlatformModel.DefaultNavigationResponse>} -
590
686
  * Success response
591
687
  * @name getDefaultNavigations
592
688
  * @summary: Get default navigations
593
689
  * @description: Retrieve default navigation elements. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getDefaultNavigations/).
594
690
  */
595
- getDefaultNavigations({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.DefaultNavigationDetails>;
691
+ getDefaultNavigations({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.DefaultNavigationResponse>;
596
692
  /**
597
693
  * @param {ContentPlatformApplicationValidator.GetDefaultSEOMarkupSchemaParam} arg
598
694
  * - Arg object
@@ -658,20 +754,20 @@ declare class Content {
658
754
  * @param {import("../PlatformAPIClient").Options} - Options
659
755
  * @returns {Promise<ContentPlatformModel.TagsSchema>} - Success response
660
756
  * @name getInjectableTags
661
- * @summary: Get all HTML tags
662
- * @description: Retrieve a list of injectable tags. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getInjectableTags/).
757
+ * @summary: Get all the tags in an application
758
+ * @description: Use this API to retrieve all HTML Tags - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getInjectableTags/).
663
759
  */
664
- getInjectableTags({ all, requestHeaders }?: ContentPlatformApplicationValidator.GetInjectableTagsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TagsSchema>;
760
+ getInjectableTags({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.TagsSchema>;
665
761
  /**
666
762
  * @param {ContentPlatformApplicationValidator.GetLandingPagesParam} arg - Arg object
667
763
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
668
764
  * @param {import("../PlatformAPIClient").Options} - Options
669
- * @returns {Promise<ContentPlatformModel.LandingPageGetDetails>} - Success response
765
+ * @returns {Promise<ContentPlatformModel.LandingPageGetResponse>} - Success response
670
766
  * @name getLandingPages
671
767
  * @summary: Get landing pages
672
768
  * @description: Lists a list landing pages as per device types - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getLandingPages/).
673
769
  */
674
- getLandingPages({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetLandingPagesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.LandingPageGetDetails>;
770
+ getLandingPages({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetLandingPagesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.LandingPageGetResponse>;
675
771
  /**
676
772
  * @param {ContentPlatformApplicationValidator.GetLegalInformationParam} arg
677
773
  * - Arg object
@@ -700,12 +796,12 @@ declare class Content {
700
796
  * @param {ContentPlatformApplicationValidator.GetNavigationsParam} arg - Arg object
701
797
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
702
798
  * @param {import("../PlatformAPIClient").Options} - Options
703
- * @returns {Promise<ContentPlatformModel.NavigationGetDetails>} - Success response
799
+ * @returns {Promise<ContentPlatformModel.NavigationGetResponse>} - Success response
704
800
  * @name getNavigations
705
801
  * @summary: Get navigation items
706
802
  * @description: Retrieve a list of navigational elements. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getNavigations/).
707
803
  */
708
- getNavigations({ devicePlatform, pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetNavigationsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.NavigationGetDetails>;
804
+ getNavigations({ devicePlatform, pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetNavigationsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.NavigationGetResponse>;
709
805
  /**
710
806
  * @param {ContentPlatformApplicationValidator.GetPageBySlugParam} arg - Arg object
711
807
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -713,7 +809,7 @@ declare class Content {
713
809
  * @returns {Promise<ContentPlatformModel.PageSchema>} - Success response
714
810
  * @name getPageBySlug
715
811
  * @summary: Get page by slug
716
- * @description: Get detailed information about a specific page using its slug. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getPageBySlug/).
812
+ * @description: Get detailed information about a specific page using its slug - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getPageBySlug/).
717
813
  */
718
814
  getPageBySlug({ slug, requestHeaders }?: ContentPlatformApplicationValidator.GetPageBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PageSchema>;
719
815
  /**
@@ -740,36 +836,53 @@ declare class Content {
740
836
  * @param {ContentPlatformApplicationValidator.GetPagesParam} arg - Arg object
741
837
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
742
838
  * @param {import("../PlatformAPIClient").Options} - Options
743
- * @returns {Promise<ContentPlatformModel.PageGetDetails>} - Success response
839
+ * @returns {Promise<ContentPlatformModel.PageGetResponse>} - Success response
744
840
  * @name getPages
745
- * @summary: Get pages
841
+ * @summary: Get pages.
746
842
  * @description: Retrieve a list of available pages. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getPages/).
747
843
  */
748
- getPages({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetPagesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PageGetDetails>;
844
+ getPages({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetPagesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PageGetResponse>;
845
+ /**
846
+ * @param {Object} arg - Arg object.
847
+ * @param {string} arg.companyId - Numeric ID allotted to a business account
848
+ * on Fynd Platform
849
+ * @param {string} arg.applicationId - Numeric ID allotted to an application
850
+ * created within a business account.
851
+ * @param {number} [arg.pageSize] - The number of items to retrieve in each
852
+ * page. Default value is 10.
853
+ * @returns {Paginator<ContentPlatformModel.PageGetResponse>}
854
+ * @summary: Get pages.
855
+ * @description: Retrieve a list of available pages.
856
+ */
857
+ getPagesPaginator({ companyId, applicationId, pageSize }?: {
858
+ companyId: string;
859
+ applicationId: string;
860
+ pageSize?: number;
861
+ }): Paginator<ContentPlatformModel.PageGetResponse>;
749
862
  /**
750
863
  * @param {ContentPlatformApplicationValidator.GetPathRedirectionRuleParam} arg
751
864
  * - Arg object
752
865
  *
753
866
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
754
867
  * @param {import("../PlatformAPIClient").Options} - Options
755
- * @returns {Promise<ContentPlatformModel.PathMappingSchema>} - Success response
868
+ * @returns {Promise<ContentPlatformModel.DeletPathMappingSchema>} - Success response
756
869
  * @name getPathRedirectionRule
757
870
  * @summary: Get Path Redirection Rule
758
871
  * @description: Use this API to Get detailed information about a specific path redirection rule - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getPathRedirectionRule/).
759
872
  */
760
- getPathRedirectionRule({ pathId, requestHeaders }?: ContentPlatformApplicationValidator.GetPathRedirectionRuleParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PathMappingSchema>;
873
+ getPathRedirectionRule({ pathId, requestHeaders }?: ContentPlatformApplicationValidator.GetPathRedirectionRuleParam, { responseHeaders }?: object): Promise<ContentPlatformModel.DeletPathMappingSchema>;
761
874
  /**
762
875
  * @param {ContentPlatformApplicationValidator.GetPathRedirectionRulesParam} arg
763
876
  * - Arg object
764
877
  *
765
878
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
766
879
  * @param {import("../PlatformAPIClient").Options} - Options
767
- * @returns {Promise<ContentPlatformModel.PathMappingSchema>} - Success response
880
+ * @returns {Promise<ContentPlatformModel.GetAllPathMappingSchema>} - Success response
768
881
  * @name getPathRedirectionRules
769
882
  * @summary: List Path Redirection Rules
770
883
  * @description: Use this API to List Path Redirection Rules - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getPathRedirectionRules/).
771
884
  */
772
- getPathRedirectionRules({ pageSize, pageNo, requestHeaders }?: ContentPlatformApplicationValidator.GetPathRedirectionRulesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PathMappingSchema>;
885
+ getPathRedirectionRules({ pageSize, pageNo, requestHeaders }?: ContentPlatformApplicationValidator.GetPathRedirectionRulesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.GetAllPathMappingSchema>;
773
886
  /**
774
887
  * @param {ContentPlatformApplicationValidator.GetSEOConfigurationParam} arg
775
888
  * - Arg object
@@ -793,7 +906,7 @@ declare class Content {
793
906
  * @summary: Get SEO Markup Schema
794
907
  * @description: Use this API to Get SEO Markup Schema - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getSEOMarkupSchema/).
795
908
  */
796
- getSEOMarkupSchema({ id, requestHeaders }?: ContentPlatformApplicationValidator.GetSEOMarkupSchemaParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>;
909
+ getSEOMarkupSchema({ schemaId, requestHeaders }?: ContentPlatformApplicationValidator.GetSEOMarkupSchemaParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>;
797
910
  /**
798
911
  * @param {ContentPlatformApplicationValidator.GetSEOMarkupSchemasParam} arg
799
912
  * - Arg object
@@ -819,31 +932,32 @@ declare class Content {
819
932
  */
820
933
  getSupportInformation({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.Support>;
821
934
  /**
822
- * @param {ContentPlatformApplicationValidator.ImportAppCustomObjectEntriesBySlugParam} arg
935
+ * @param {ContentPlatformApplicationValidator.ImportAppCustomObjectEntriesParam} arg
823
936
  * - Arg object
824
937
  *
825
938
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
826
939
  * @param {import("../PlatformAPIClient").Options} - Options
827
- * @returns {Promise<ContentPlatformModel.CustomObjectEntryBulkUploadDetails>}
940
+ * @returns {Promise<ContentPlatformModel.CustomObjectEntryBulkUploadResponse>}
828
941
  * - Success response
829
942
  *
830
- * @name importAppCustomObjectEntriesBySlug
943
+ * @name importAppCustomObjectEntries
831
944
  * @summary: Bulk custom object entries upload
832
- * @description: Custom object bulk import of bulk entries can be performed using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/importAppCustomObjectEntriesBySlug/).
945
+ * @description: Custom object bulk import of bulk entries can be performed using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/importAppCustomObjectEntries/).
833
946
  */
834
- importAppCustomObjectEntriesBySlug({ slug, body, requestHeaders }?: ContentPlatformApplicationValidator.ImportAppCustomObjectEntriesBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectEntryBulkUploadDetails>;
947
+ importAppCustomObjectEntries({ definitionId, body, requestHeaders }?: ContentPlatformApplicationValidator.ImportAppCustomObjectEntriesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectEntryBulkUploadResponse>;
835
948
  /**
836
949
  * @param {ContentPlatformApplicationValidator.RemoveInjectableTagParam} arg
837
950
  * - Arg object
838
951
  *
839
952
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
840
953
  * @param {import("../PlatformAPIClient").Options} - Options
841
- * @returns {Promise<ContentPlatformModel.TagDeleteSuccessDetails>} - Success response
954
+ * @returns {Promise<ContentPlatformModel.TagDeleteSuccessResponse>} -
955
+ * Success response
842
956
  * @name removeInjectableTag
843
957
  * @summary: Remove HTML tag
844
958
  * @description: Delete a specific injectable tag. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/removeInjectableTag/).
845
959
  */
846
- removeInjectableTag({ body, requestHeaders }?: ContentPlatformApplicationValidator.RemoveInjectableTagParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TagDeleteSuccessDetails>;
960
+ removeInjectableTag({ body, requestHeaders }?: ContentPlatformApplicationValidator.RemoveInjectableTagParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TagDeleteSuccessResponse>;
847
961
  /**
848
962
  * @param {ContentPlatformApplicationValidator.ResetDataLoaderParam} arg - Arg object
849
963
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -856,17 +970,17 @@ declare class Content {
856
970
  */
857
971
  resetDataLoader({ service, operationId, requestHeaders }?: ContentPlatformApplicationValidator.ResetDataLoaderParam, { responseHeaders }?: object): Promise<ContentPlatformModel.DataLoaderResetResponseSchema>;
858
972
  /**
859
- * @param {ContentPlatformApplicationValidator.SampleAppCustomObjectBulkEntryBySlugParam} arg
973
+ * @param {ContentPlatformApplicationValidator.SampleAppCustomObjectBulkEntryParam} arg
860
974
  * - Arg object
861
975
  *
862
976
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
863
977
  * @param {import("../PlatformAPIClient").Options} - Options
864
978
  * @returns {Promise<string>} - Success response
865
- * @name sampleAppCustomObjectBulkEntryBySlug
979
+ * @name sampleAppCustomObjectBulkEntry
866
980
  * @summary: Download sample for custom object bulk entry
867
- * @description: Sample files for custom object bulk import can be obtained from this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/sampleAppCustomObjectBulkEntryBySlug/).
981
+ * @description: Sample files for custom object bulk import can be obtained from this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/sampleAppCustomObjectBulkEntry/).
868
982
  */
869
- sampleAppCustomObjectBulkEntryBySlug({ slug, requestHeaders }?: ContentPlatformApplicationValidator.SampleAppCustomObjectBulkEntryBySlugParam, { responseHeaders }?: object): Promise<string>;
983
+ sampleAppCustomObjectBulkEntry({ definitionId, requestHeaders }?: ContentPlatformApplicationValidator.SampleAppCustomObjectBulkEntryParam, { responseHeaders }?: object): Promise<string>;
870
984
  /**
871
985
  * @param {ContentPlatformApplicationValidator.SelectDataLoaderParam} arg - Arg object
872
986
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -905,7 +1019,7 @@ declare class Content {
905
1019
  */
906
1020
  updateAnnouncementSchedule({ announcementId, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAnnouncementScheduleParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateAnnouncementSchema>;
907
1021
  /**
908
- * @param {ContentPlatformApplicationValidator.UpdateAppCustomFieldByResourceSlugParam} arg
1022
+ * @param {ContentPlatformApplicationValidator.UpdateAppCustomFieldByResourceIdParam} arg
909
1023
  * - Arg object
910
1024
  *
911
1025
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -913,13 +1027,13 @@ declare class Content {
913
1027
  * @returns {Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>}
914
1028
  * - Success response
915
1029
  *
916
- * @name updateAppCustomFieldByResourceSlug
917
- * @summary: Create custom field entries for gives resource and resource slug
918
- * @description: You can add a custom field using this endpoint to any resource by providing the resource slug. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomFieldByResourceSlug/).
1030
+ * @name updateAppCustomFieldByResourceId
1031
+ * @summary: Create custom field entries for gives resource and resource_id
1032
+ * @description: Use this API to create the custom field entry for given resource and resource_id in param. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomFieldByResourceId/).
919
1033
  */
920
- updateAppCustomFieldByResourceSlug({ resource, resourceSlug, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomFieldByResourceSlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>;
1034
+ updateAppCustomFieldByResourceId({ resource, resourceId, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomFieldByResourceIdParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>;
921
1035
  /**
922
- * @param {ContentPlatformApplicationValidator.UpdateAppCustomFieldDefinitionBySlugParam} arg
1036
+ * @param {ContentPlatformApplicationValidator.UpdateAppCustomFieldDefinitionParam} arg
923
1037
  * - Arg object
924
1038
  *
925
1039
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -927,38 +1041,36 @@ declare class Content {
927
1041
  * @returns {Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>}
928
1042
  * - Success response
929
1043
  *
930
- * @name updateAppCustomFieldDefinitionBySlug
1044
+ * @name updateAppCustomFieldDefinition
931
1045
  * @summary: Update custom field definition
932
- * @description: Custom fields definition can be update using this api, You can update custom field definition name and description. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomFieldDefinitionBySlug/).
1046
+ * @description: Custom fields definition can be update using this api, You can update custom field definition name and description. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomFieldDefinition/).
933
1047
  */
934
- updateAppCustomFieldDefinitionBySlug({ slug, resource, namespace, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomFieldDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>;
1048
+ updateAppCustomFieldDefinition({ id, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomFieldDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>;
935
1049
  /**
936
- * @param {ContentPlatformApplicationValidator.UpdateAppCustomObjectBySlugParam} arg
1050
+ * @param {ContentPlatformApplicationValidator.UpdateAppCustomObjectParam} arg
937
1051
  * - Arg object
938
1052
  *
939
1053
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
940
1054
  * @param {import("../PlatformAPIClient").Options} - Options
941
- * @returns {Promise<ContentPlatformModel.CustomObjectBySlugSchema>} -
942
- * Success response
943
- * @name updateAppCustomObjectBySlug
1055
+ * @returns {Promise<ContentPlatformModel.CustomObjectSchema>} - Success response
1056
+ * @name updateAppCustomObject
944
1057
  * @summary: Update custom object details
945
- * @description: Custom object entries can be updated using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomObjectBySlug/).
1058
+ * @description: Custom object entries can be updated using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomObject/).
946
1059
  */
947
- updateAppCustomObjectBySlug({ definitionSlug, slug, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomObjectBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectBySlugSchema>;
1060
+ updateAppCustomObject({ id, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomObjectParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectSchema>;
948
1061
  /**
949
- * @param {ContentPlatformApplicationValidator.UpdateAppCustomObjectDefinitionBySlugParam} arg
1062
+ * @param {ContentPlatformApplicationValidator.UpdateAppCustomObjectDefinitionParam} arg
950
1063
  * - Arg object
951
1064
  *
952
1065
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
953
1066
  * @param {import("../PlatformAPIClient").Options} - Options
954
- * @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>}
955
- * - Success response
956
- *
957
- * @name updateAppCustomObjectDefinitionBySlug
1067
+ * @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSchema>} -
1068
+ * Success response
1069
+ * @name updateAppCustomObjectDefinition
958
1070
  * @summary: Update custom object definition
959
- * @description: Custom object definitions can be updated using this endpoint. You can update the name and description of the custom object and add more custom field definitions to the existing custom object. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomObjectDefinitionBySlug/).
1071
+ * @description: Use this API to update a custom object definition for your application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomObjectDefinition/).
960
1072
  */
961
- updateAppCustomObjectDefinitionBySlug({ slug, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomObjectDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>;
1073
+ updateAppCustomObjectDefinition({ id, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSchema>;
962
1074
  /**
963
1075
  * @param {ContentPlatformApplicationValidator.UpdateBlogParam} arg - Arg object
964
1076
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -999,8 +1111,8 @@ declare class Content {
999
1111
  * @param {import("../PlatformAPIClient").Options} - Options
1000
1112
  * @returns {Promise<ContentPlatformModel.TagsSchema>} - Success response
1001
1113
  * @name updateInjectableTag
1002
- * @summary: Update HTML tag
1003
- * @description: Modify settings for an injectable tag. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateInjectableTag/).
1114
+ * @summary: Update HTML Tags
1115
+ * @description: Use this API to edit all HTML Tags present - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateInjectableTag/).
1004
1116
  */
1005
1117
  updateInjectableTag({ body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateInjectableTagParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TagsSchema>;
1006
1118
  /**
@@ -1065,12 +1177,12 @@ declare class Content {
1065
1177
  *
1066
1178
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
1067
1179
  * @param {import("../PlatformAPIClient").Options} - Options
1068
- * @returns {Promise<ContentPlatformModel.PathMappingSchema>} - Success response
1180
+ * @returns {Promise<ContentPlatformModel.CreatePathMappingSchema>} - Success response
1069
1181
  * @name updatePathRedirectionRules
1070
1182
  * @summary: Update path redirection rule
1071
1183
  * @description: Modify settings for path redirection rules. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updatePathRedirectionRules/).
1072
1184
  */
1073
- updatePathRedirectionRules({ pathId, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdatePathRedirectionRulesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PathMappingSchema>;
1185
+ updatePathRedirectionRules({ pathId, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdatePathRedirectionRulesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreatePathMappingSchema>;
1074
1186
  /**
1075
1187
  * @param {ContentPlatformApplicationValidator.UpdateSEOConfigurationParam} arg
1076
1188
  * - Arg object
@@ -1098,3 +1210,4 @@ declare class Content {
1098
1210
  }
1099
1211
  import ContentPlatformApplicationValidator = require("./ContentPlatformApplicationValidator");
1100
1212
  import ContentPlatformModel = require("./ContentPlatformModel");
1213
+ import Paginator = require("../../common/Paginator");