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

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