@gofynd/fdk-client-javascript 1.4.15-beta.13 → 1.4.15-beta.15

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 (278) hide show
  1. package/README.md +23 -26
  2. package/package.json +5 -1
  3. package/sdk/application/ApplicationClient.d.ts +5 -6
  4. package/sdk/application/ApplicationClient.js +24 -20
  5. package/sdk/application/Cart/CartApplicationClient.d.ts +133 -83
  6. package/sdk/application/Cart/CartApplicationClient.js +444 -76
  7. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +132 -114
  8. package/sdk/application/Catalog/CatalogApplicationClient.js +209 -126
  9. package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
  10. package/sdk/application/Common/CommonApplicationClient.js +4 -4
  11. package/sdk/application/Communication/CommunicationApplicationClient.d.ts +3 -3
  12. package/sdk/application/Communication/CommunicationApplicationClient.js +3 -3
  13. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +58 -36
  14. package/sdk/application/Configuration/ConfigurationApplicationClient.js +73 -29
  15. package/sdk/application/Content/ContentApplicationClient.d.ts +95 -66
  16. package/sdk/application/Content/ContentApplicationClient.js +274 -111
  17. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +11 -11
  18. package/sdk/application/FileStorage/FileStorageApplicationClient.js +10 -10
  19. package/sdk/application/Finance/FinanceApplicationClient.d.ts +29 -0
  20. package/sdk/application/Finance/FinanceApplicationClient.js +111 -0
  21. package/sdk/application/Lead/LeadApplicationClient.d.ts +7 -7
  22. package/sdk/application/Lead/LeadApplicationClient.js +6 -6
  23. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +37 -57
  24. package/sdk/application/Logistic/LogisticApplicationClient.js +117 -180
  25. package/sdk/application/Order/OrderApplicationClient.d.ts +63 -21
  26. package/sdk/application/Order/OrderApplicationClient.js +217 -17
  27. package/sdk/application/Payment/PaymentApplicationClient.d.ts +179 -149
  28. package/sdk/application/Payment/PaymentApplicationClient.js +301 -167
  29. package/sdk/application/Share/ShareApplicationClient.d.ts +7 -7
  30. package/sdk/application/Share/ShareApplicationClient.js +7 -7
  31. package/sdk/application/Theme/ThemeApplicationClient.d.ts +7 -7
  32. package/sdk/application/Theme/ThemeApplicationClient.js +10 -6
  33. package/sdk/application/User/UserApplicationClient.d.ts +103 -53
  34. package/sdk/application/User/UserApplicationClient.js +308 -49
  35. package/sdk/common/AxiosHelper.js +11 -4
  36. package/sdk/common/Constant.d.ts +27 -4
  37. package/sdk/common/Constant.js +33 -6
  38. package/sdk/common/utils.d.ts +10 -0
  39. package/sdk/common/utils.js +24 -3
  40. package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +46 -16
  41. package/sdk/partner/FileStorage/FileStoragePartnerClient.js +266 -40
  42. package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +163 -19
  43. package/sdk/partner/FileStorage/FileStoragePartnerModel.js +158 -14
  44. package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +5 -2
  45. package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +23 -7
  46. package/sdk/partner/Lead/LeadPartnerClient.d.ts +9 -9
  47. package/sdk/partner/Lead/LeadPartnerClient.js +9 -9
  48. package/sdk/partner/Lead/LeadPartnerModel.d.ts +14 -9
  49. package/sdk/partner/Lead/LeadPartnerModel.js +19 -17
  50. package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +264 -49
  51. package/sdk/partner/Logistics/LogisticsPartnerClient.js +2116 -252
  52. package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +2256 -258
  53. package/sdk/partner/Logistics/LogisticsPartnerModel.js +1187 -230
  54. package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +21 -1
  55. package/sdk/partner/Logistics/LogisticsPartnerValidator.js +218 -13
  56. package/sdk/partner/PartnerClient.d.ts +5 -2
  57. package/sdk/partner/PartnerClient.js +21 -7
  58. package/sdk/partner/Theme/ThemePartnerClient.d.ts +32 -34
  59. package/sdk/partner/Theme/ThemePartnerClient.js +42 -44
  60. package/sdk/partner/Theme/ThemePartnerModel.d.ts +142 -43
  61. package/sdk/partner/Theme/ThemePartnerModel.js +129 -44
  62. package/sdk/partner/Theme/ThemePartnerValidator.js +4 -4
  63. package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +83 -27
  64. package/sdk/partner/Webhook/WebhookPartnerClient.js +446 -27
  65. package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +920 -185
  66. package/sdk/partner/Webhook/WebhookPartnerModel.js +462 -154
  67. package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +5 -0
  68. package/sdk/partner/Webhook/WebhookPartnerValidator.js +41 -3
  69. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +8 -7
  70. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +17 -11
  71. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +4 -1
  72. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
  73. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +68 -13
  74. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +44 -6
  75. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +3 -33
  76. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +4 -244
  77. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +49 -145
  78. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +20 -171
  79. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -39
  80. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +0 -35
  81. package/sdk/platform/Billing/BillingPlatformClient.d.ts +15 -15
  82. package/sdk/platform/Billing/BillingPlatformClient.js +18 -18
  83. package/sdk/platform/Billing/BillingPlatformModel.d.ts +443 -388
  84. package/sdk/platform/Billing/BillingPlatformModel.js +280 -263
  85. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +16 -18
  86. package/sdk/platform/Billing/BillingPlatformValidator.js +8 -9
  87. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +266 -203
  88. package/sdk/platform/Cart/CartPlatformApplicationClient.js +1446 -500
  89. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +729 -100
  90. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +446 -82
  91. package/sdk/platform/Cart/CartPlatformModel.d.ts +6927 -1396
  92. package/sdk/platform/Cart/CartPlatformModel.js +3065 -1316
  93. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +433 -248
  94. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +1662 -559
  95. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +464 -159
  96. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +304 -87
  97. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +383 -234
  98. package/sdk/platform/Catalog/CatalogPlatformClient.js +2475 -1557
  99. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +9571 -2674
  100. package/sdk/platform/Catalog/CatalogPlatformModel.js +5081 -2019
  101. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +364 -117
  102. package/sdk/platform/Catalog/CatalogPlatformValidator.js +281 -104
  103. package/sdk/platform/Common/CommonPlatformClient.d.ts +5 -4
  104. package/sdk/platform/Common/CommonPlatformClient.js +6 -5
  105. package/sdk/platform/Common/CommonPlatformModel.d.ts +36 -25
  106. package/sdk/platform/Common/CommonPlatformModel.js +25 -14
  107. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +80 -153
  108. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +102 -541
  109. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +36 -49
  110. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +20 -60
  111. package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +1 -1
  112. package/sdk/platform/Communication/CommunicationPlatformClient.js +1 -1
  113. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +189 -43
  114. package/sdk/platform/Communication/CommunicationPlatformModel.js +165 -42
  115. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +58 -81
  116. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +68 -116
  117. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +291 -249
  118. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +243 -234
  119. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +12 -12
  120. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +12 -12
  121. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +78 -65
  122. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +101 -88
  123. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +20 -20
  124. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +19 -19
  125. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +68 -34
  126. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +174 -41
  127. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +667 -244
  128. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +474 -155
  129. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +37 -9
  130. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +27 -8
  131. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +366 -280
  132. package/sdk/platform/Content/ContentPlatformApplicationClient.js +1435 -753
  133. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +323 -223
  134. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +335 -205
  135. package/sdk/platform/Content/ContentPlatformClient.d.ts +304 -106
  136. package/sdk/platform/Content/ContentPlatformClient.js +1842 -450
  137. package/sdk/platform/Content/ContentPlatformModel.d.ts +2582 -566
  138. package/sdk/platform/Content/ContentPlatformModel.js +1426 -558
  139. package/sdk/platform/Content/ContentPlatformValidator.d.ts +293 -114
  140. package/sdk/platform/Content/ContentPlatformValidator.js +328 -101
  141. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +59 -23
  142. package/sdk/platform/Discount/DiscountPlatformClient.js +84 -23
  143. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +403 -110
  144. package/sdk/platform/Discount/DiscountPlatformModel.js +121 -107
  145. package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +56 -36
  146. package/sdk/platform/Discount/DiscountPlatformValidator.js +29 -19
  147. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +12 -110
  148. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +14 -684
  149. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +5 -94
  150. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +4 -115
  151. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +20 -20
  152. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +22 -22
  153. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +90 -920
  154. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +53 -949
  155. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
  156. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
  157. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +10 -10
  158. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +10 -10
  159. package/sdk/platform/Lead/LeadPlatformClient.d.ts +11 -11
  160. package/sdk/platform/Lead/LeadPlatformClient.js +11 -11
  161. package/sdk/platform/Lead/LeadPlatformModel.d.ts +14 -9
  162. package/sdk/platform/Lead/LeadPlatformModel.js +20 -18
  163. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +56 -9
  164. package/sdk/platform/Order/OrderPlatformApplicationClient.js +340 -10
  165. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +128 -24
  166. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +81 -19
  167. package/sdk/platform/Order/OrderPlatformClient.d.ts +517 -160
  168. package/sdk/platform/Order/OrderPlatformClient.js +1623 -384
  169. package/sdk/platform/Order/OrderPlatformModel.d.ts +10372 -1587
  170. package/sdk/platform/Order/OrderPlatformModel.js +5726 -1512
  171. package/sdk/platform/Order/OrderPlatformValidator.d.ts +539 -123
  172. package/sdk/platform/Order/OrderPlatformValidator.js +323 -92
  173. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +8 -6
  174. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +11 -9
  175. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +6 -4
  176. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +3 -2
  177. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +77 -25
  178. package/sdk/platform/Partner/PartnerPlatformModel.js +32 -21
  179. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +144 -219
  180. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +307 -796
  181. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +86 -121
  182. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +80 -138
  183. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +30 -30
  184. package/sdk/platform/Payment/PaymentPlatformClient.js +30 -30
  185. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +901 -761
  186. package/sdk/platform/Payment/PaymentPlatformModel.js +663 -583
  187. package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +8 -8
  188. package/sdk/platform/Payment/PaymentPlatformValidator.js +8 -8
  189. package/sdk/platform/PlatformApplicationClient.d.ts +0 -2
  190. package/sdk/platform/PlatformApplicationClient.js +0 -4
  191. package/sdk/platform/PlatformClient.d.ts +5 -4
  192. package/sdk/platform/PlatformClient.js +32 -22
  193. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +526 -69
  194. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +3337 -337
  195. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +603 -38
  196. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +529 -32
  197. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +184 -133
  198. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +780 -491
  199. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +9408 -1666
  200. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +5720 -1765
  201. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +257 -180
  202. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +185 -127
  203. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +7 -7
  204. package/sdk/platform/Share/SharePlatformApplicationClient.js +7 -7
  205. package/sdk/platform/Share/SharePlatformModel.d.ts +45 -9
  206. package/sdk/platform/Share/SharePlatformModel.js +31 -6
  207. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +26 -26
  208. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +38 -29
  209. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +18 -3
  210. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +10 -2
  211. package/sdk/platform/Theme/ThemePlatformClient.d.ts +4 -4
  212. package/sdk/platform/Theme/ThemePlatformClient.js +4 -4
  213. package/sdk/platform/Theme/ThemePlatformModel.d.ts +103 -17
  214. package/sdk/platform/Theme/ThemePlatformModel.js +92 -23
  215. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +167 -45
  216. package/sdk/platform/User/UserPlatformApplicationClient.js +950 -67
  217. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +189 -3
  218. package/sdk/platform/User/UserPlatformApplicationValidator.js +157 -3
  219. package/sdk/platform/User/UserPlatformModel.d.ts +880 -47
  220. package/sdk/platform/User/UserPlatformModel.js +607 -46
  221. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +33 -86
  222. package/sdk/platform/Webhook/WebhookPlatformClient.js +79 -474
  223. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +861 -422
  224. package/sdk/platform/Webhook/WebhookPlatformModel.js +469 -391
  225. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +10 -55
  226. package/sdk/platform/Webhook/WebhookPlatformValidator.js +12 -72
  227. package/sdk/platform/index.d.ts +0 -2
  228. package/sdk/platform/index.js +0 -4
  229. package/sdk/public/Catalog/CatalogPublicClient.d.ts +22 -0
  230. package/sdk/public/Catalog/CatalogPublicClient.js +133 -0
  231. package/sdk/public/Catalog/CatalogPublicModel.d.ts +158 -0
  232. package/sdk/public/Catalog/CatalogPublicModel.js +116 -0
  233. package/sdk/public/Catalog/CatalogPublicValidator.d.ts +55 -0
  234. package/sdk/public/Catalog/CatalogPublicValidator.js +35 -0
  235. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +5 -4
  236. package/sdk/public/Configuration/ConfigurationPublicClient.js +9 -8
  237. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +41 -21
  238. package/sdk/public/Configuration/ConfigurationPublicModel.js +28 -12
  239. package/sdk/public/Content/ContentPublicClient.d.ts +145 -2
  240. package/sdk/public/Content/ContentPublicClient.js +1067 -17
  241. package/sdk/public/Content/ContentPublicModel.d.ts +704 -3
  242. package/sdk/public/Content/ContentPublicModel.js +751 -3
  243. package/sdk/public/Content/ContentPublicValidator.d.ts +94 -3
  244. package/sdk/public/Content/ContentPublicValidator.js +119 -2
  245. package/sdk/public/Partner/PartnerPublicClient.d.ts +1 -1
  246. package/sdk/public/Partner/PartnerPublicClient.js +1 -1
  247. package/sdk/public/Partner/PartnerPublicModel.d.ts +248 -72
  248. package/sdk/public/Partner/PartnerPublicModel.js +81 -71
  249. package/sdk/public/Partner/PartnerPublicValidator.d.ts +2 -2
  250. package/sdk/public/Partner/PartnerPublicValidator.js +1 -1
  251. package/sdk/public/PublicClient.d.ts +5 -2
  252. package/sdk/public/PublicClient.js +16 -6
  253. package/sdk/public/Webhook/WebhookPublicClient.d.ts +13 -13
  254. package/sdk/public/Webhook/WebhookPublicClient.js +13 -13
  255. package/sdk/public/Webhook/WebhookPublicModel.d.ts +249 -67
  256. package/sdk/public/Webhook/WebhookPublicModel.js +81 -61
  257. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
  258. package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
  259. package/sdk/public/index.d.ts +1 -0
  260. package/sdk/public/index.js +2 -0
  261. package/utility.d.ts +3 -0
  262. package/utility.js +7 -0
  263. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +0 -79
  264. package/sdk/application/Rewards/RewardsApplicationClient.js +0 -315
  265. package/sdk/application/Webhook/WebhookApplicationClient.d.ts +0 -19
  266. package/sdk/application/Webhook/WebhookApplicationClient.js +0 -72
  267. package/sdk/platform/Finance/FinancePlatformClient.d.ts +0 -320
  268. package/sdk/platform/Finance/FinancePlatformClient.js +0 -2333
  269. package/sdk/platform/Finance/FinancePlatformModel.d.ts +0 -2890
  270. package/sdk/platform/Finance/FinancePlatformModel.js +0 -2148
  271. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +0 -284
  272. package/sdk/platform/Finance/FinancePlatformValidator.js +0 -354
  273. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +0 -136
  274. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +0 -976
  275. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +0 -152
  276. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +0 -157
  277. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +0 -382
  278. package/sdk/platform/Rewards/RewardsPlatformModel.js +0 -408
@@ -3,6 +3,18 @@ declare class Content {
3
3
  constructor(config: any, applicationId: any);
4
4
  config: any;
5
5
  applicationId: any;
6
+ /**
7
+ * @param {ContentPlatformApplicationValidator.AddApplicationLanguageParam} arg
8
+ * - Arg object
9
+ *
10
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
11
+ * @param {import("../PlatformAPIClient").Options} - Options
12
+ * @returns {Promise<Object>} - Success response
13
+ * @name addApplicationLanguage
14
+ * @summary: Add app language
15
+ * @description: Add new languages to application's supported language list. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/addApplicationLanguage/).
16
+ */
17
+ addApplicationLanguage({ body, requestHeaders }?: ContentPlatformApplicationValidator.AddApplicationLanguageParam, { responseHeaders }?: object): Promise<any>;
6
18
  /**
7
19
  * @param {ContentPlatformApplicationValidator.AddDataLoaderParam} arg - Arg object
8
20
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -11,7 +23,7 @@ declare class Content {
11
23
  * Success response
12
24
  * @name addDataLoader
13
25
  * @summary: Create data loader
14
- * @description: Create and add a new data loader. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/addDataLoader/).
26
+ * @description: Create and add a new data loader. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/addDataLoader/).
15
27
  */
16
28
  addDataLoader({ body, requestHeaders }?: ContentPlatformApplicationValidator.AddDataLoaderParam, { responseHeaders }?: object): Promise<ContentPlatformModel.DataLoaderResponseSchema>;
17
29
  /**
@@ -21,7 +33,7 @@ declare class Content {
21
33
  * @returns {Promise<ContentPlatformModel.CreateFaqResponseSchema>} - Success response
22
34
  * @name addFaq
23
35
  * @summary: Create FAQ
24
- * @description: Create and add a new FAQ. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/addFaq/).
36
+ * @description: Create and add a new FAQ. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/addFaq/).
25
37
  */
26
38
  addFaq({ categoryId, body, requestHeaders }?: ContentPlatformApplicationValidator.AddFaqParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateFaqResponseSchema>;
27
39
  /**
@@ -31,7 +43,7 @@ declare class Content {
31
43
  * @returns {Promise<ContentPlatformModel.TagsSchema>} - Success response
32
44
  * @name addInjectableTag
33
45
  * @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/).
46
+ * @description: Create and add a new injectable tag. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/addInjectableTag/).
35
47
  */
36
48
  addInjectableTag({ body, requestHeaders }?: ContentPlatformApplicationValidator.AddInjectableTagParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TagsSchema>;
37
49
  /**
@@ -43,36 +55,34 @@ declare class Content {
43
55
  * @returns {Promise<ContentPlatformModel.PathMappingSchema>} - Success response
44
56
  * @name addPathRedirectionRules
45
57
  * @summary: Create path redirection rules
46
- * @description: Create and add rules for path redirection. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/addPathRedirectionRules/).
58
+ * @description: Create and add rules for path redirection. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/addPathRedirectionRules/).
47
59
  */
48
60
  addPathRedirectionRules({ body, requestHeaders }?: ContentPlatformApplicationValidator.AddPathRedirectionRulesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PathMappingSchema>;
49
61
  /**
50
- * @param {ContentPlatformApplicationValidator.CreateAnnouncementParam} arg
62
+ * @param {ContentPlatformApplicationValidator.BulkUnPublishApplicationLanguageParam} arg
51
63
  * - Arg object
52
64
  *
53
65
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
54
66
  * @param {import("../PlatformAPIClient").Options} - Options
55
- * @returns {Promise<ContentPlatformModel.CreateAnnouncementSchema>} -
56
- * Success response
57
- * @name createAnnouncement
58
- * @summary: Create announcement
59
- * @description: Generate and add a new announcement. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createAnnouncement/).
67
+ * @returns {Promise<Object>} - Success response
68
+ * @name bulkUnPublishApplicationLanguage
69
+ * @summary: Unpublish all languages of sales channel.
70
+ * @description: Unpublish all application's published languages of specific sales channel. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/bulkUnPublishApplicationLanguage/).
60
71
  */
61
- createAnnouncement({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAnnouncementParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateAnnouncementSchema>;
72
+ bulkUnPublishApplicationLanguage({ body, requestHeaders }?: ContentPlatformApplicationValidator.BulkUnPublishApplicationLanguageParam, { responseHeaders }?: object): Promise<any>;
62
73
  /**
63
- * @param {ContentPlatformApplicationValidator.CreateAppCustomFieldByResourceIdParam} arg
74
+ * @param {ContentPlatformApplicationValidator.CreateAnnouncementParam} arg
64
75
  * - Arg object
65
76
  *
66
77
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
67
78
  * @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/).
79
+ * @returns {Promise<ContentPlatformModel.CreateAnnouncementSchema>} -
80
+ * Success response
81
+ * @name createAnnouncement
82
+ * @summary: Create announcement
83
+ * @description: Generate and add a new announcement. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/createAnnouncement/).
74
84
  */
75
- createAppCustomFieldByResourceId({ resource, resourceId, body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomFieldByResourceIdParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>;
85
+ createAnnouncement({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAnnouncementParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateAnnouncementSchema>;
76
86
  /**
77
87
  * @param {ContentPlatformApplicationValidator.CreateAppCustomFieldDefinitionParam} arg
78
88
  * - Arg object
@@ -83,35 +93,48 @@ declare class Content {
83
93
  * - Success response
84
94
  *
85
95
  * @name createAppCustomFieldDefinition
86
- * @summary: Create custom field definition
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/).
96
+ * @summary: Create custom field definition for a given resource type
97
+ * @description: You can create custom fields definition to any resource so you can extend property of resource. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/createAppCustomFieldDefinition/).
88
98
  */
89
- createAppCustomFieldDefinition({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomFieldDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>;
99
+ createAppCustomFieldDefinition({ resource, body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomFieldDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>;
90
100
  /**
91
- * @param {ContentPlatformApplicationValidator.CreateAppCustomObjectParam} arg
101
+ * @param {ContentPlatformApplicationValidator.CreateAppCustomObjectBySlugParam} arg
92
102
  * - Arg object
93
103
  *
94
104
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
95
105
  * @param {import("../PlatformAPIClient").Options} - Options
96
106
  * @returns {Promise<ContentPlatformModel.CustomObjectSchema>} - Success response
97
- * @name createAppCustomObject
107
+ * @name createAppCustomObjectBySlug
98
108
  * @summary: Create custom object entries
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/).
109
+ * @description: Custom object entries against the custom object definition can be added using this API. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/createAppCustomObjectBySlug/).
100
110
  */
101
- createAppCustomObject({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomObjectParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectSchema>;
111
+ createAppCustomObjectBySlug({ definitionSlug, body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomObjectBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectSchema>;
102
112
  /**
103
113
  * @param {ContentPlatformApplicationValidator.CreateAppCustomObjectDefinitionParam} arg
104
114
  * - Arg object
105
115
  *
106
116
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
107
117
  * @param {import("../PlatformAPIClient").Options} - Options
108
- * @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSchema>} -
109
- * Success response
118
+ * @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>}
119
+ * - Success response
120
+ *
110
121
  * @name createAppCustomObjectDefinition
111
122
  * @summary: Create custom object definition
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/).
123
+ * @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://docs.fynd.com/partners/commerce/sdk/platform/content/createAppCustomObjectDefinition/).
113
124
  */
114
- createAppCustomObjectDefinition({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSchema>;
125
+ createAppCustomObjectDefinition({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>;
126
+ /**
127
+ * @param {ContentPlatformApplicationValidator.CreateApplicationResourceTranslationParam} arg
128
+ * - Arg object
129
+ *
130
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
131
+ * @param {import("../PlatformAPIClient").Options} - Options
132
+ * @returns {Promise<ContentPlatformModel.ResourceTranslation>} - Success response
133
+ * @name createApplicationResourceTranslation
134
+ * @summary: Add app translation
135
+ * @description: Create new translations for application resources. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/createApplicationResourceTranslation/).
136
+ */
137
+ createApplicationResourceTranslation({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateApplicationResourceTranslationParam, { responseHeaders }?: object): Promise<ContentPlatformModel.ResourceTranslation>;
115
138
  /**
116
139
  * @param {ContentPlatformApplicationValidator.CreateBlogParam} arg - Arg object
117
140
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -119,7 +142,7 @@ declare class Content {
119
142
  * @returns {Promise<ContentPlatformModel.BlogSchema>} - Success response
120
143
  * @name createBlog
121
144
  * @summary: Create blog
122
- * @description: Generate and add a new blog. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createBlog/).
145
+ * @description: Generate and add a new blog. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/createBlog/).
123
146
  */
124
147
  createBlog({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateBlogParam, { responseHeaders }?: object): Promise<ContentPlatformModel.BlogSchema>;
125
148
  /**
@@ -131,7 +154,7 @@ declare class Content {
131
154
  * @returns {Promise<ContentPlatformModel.CreateFaqCategorySchema>} - Success response
132
155
  * @name createFaqCategory
133
156
  * @summary: Create FAQ Category
134
- * @description: Generate and add a new FAQ category. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createFaqCategory/).
157
+ * @description: Generate and add a new FAQ category. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/createFaqCategory/).
135
158
  */
136
159
  createFaqCategory({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateFaqCategoryParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateFaqCategorySchema>;
137
160
  /**
@@ -143,7 +166,7 @@ declare class Content {
143
166
  * @returns {Promise<ContentPlatformModel.LandingPageSchema>} - Success response
144
167
  * @name createLandingPage
145
168
  * @summary: Create landing page
146
- * @description: Generate and add a new landing page. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createLandingPage/).
169
+ * @description: Generate and add a new landing page. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/createLandingPage/).
147
170
  */
148
171
  createLandingPage({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateLandingPageParam, { responseHeaders }?: object): Promise<ContentPlatformModel.LandingPageSchema>;
149
172
  /**
@@ -153,7 +176,7 @@ declare class Content {
153
176
  * @returns {Promise<ContentPlatformModel.NavigationSchema>} - Success response
154
177
  * @name createNavigation
155
178
  * @summary: Create navigation items
156
- * @description: Generate and add a new navigation element. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createNavigation/).
179
+ * @description: Generate and add a new navigation element. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/createNavigation/).
157
180
  */
158
181
  createNavigation({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateNavigationParam, { responseHeaders }?: object): Promise<ContentPlatformModel.NavigationSchema>;
159
182
  /**
@@ -163,21 +186,9 @@ declare class Content {
163
186
  * @returns {Promise<ContentPlatformModel.PageSchema>} - Success response
164
187
  * @name createPage
165
188
  * @summary: Create page
166
- * @description: Generate and add a new page to the platform. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createPage/).
189
+ * @description: Generate and add a new page to the platform. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/createPage/).
167
190
  */
168
191
  createPage({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreatePageParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PageSchema>;
169
- /**
170
- * @param {ContentPlatformApplicationValidator.CreatePagePreviewParam} arg
171
- * - Arg object
172
- *
173
- * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
174
- * @param {import("../PlatformAPIClient").Options} - Options
175
- * @returns {Promise<ContentPlatformModel.PageSchema>} - Success response
176
- * @name createPagePreview
177
- * @summary: Create page preview
178
- * @description: Generate and add a new page preview. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createPagePreview/).
179
- */
180
- createPagePreview({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreatePagePreviewParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PageSchema>;
181
192
  /**
182
193
  * @param {ContentPlatformApplicationValidator.CreateSEOMarkupSchemaParam} arg
183
194
  * - Arg object
@@ -187,19 +198,21 @@ declare class Content {
187
198
  * @returns {Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>} - Success response
188
199
  * @name createSEOMarkupSchema
189
200
  * @summary: Create SEO Markup Schema
190
- * @description: Use this API to Create SEO Markup Schema - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createSEOMarkupSchema/).
201
+ * @description: Use this API to Create SEO Markup Schema - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/createSEOMarkupSchema/).
191
202
  */
192
203
  createSEOMarkupSchema({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateSEOMarkupSchemaParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>;
193
204
  /**
194
- * @param {ContentPlatformApplicationValidator.CreateSlideshowParam} arg - Arg object
205
+ * @param {ContentPlatformApplicationValidator.CreateTranslateUILabelsParam} arg
206
+ * - Arg object
207
+ *
195
208
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
196
209
  * @param {import("../PlatformAPIClient").Options} - Options
197
- * @returns {Promise<ContentPlatformModel.SlideshowSchema>} - Success response
198
- * @name createSlideshow
199
- * @summary: Create a slideshow
200
- * @description: Use this API to create a slideshow. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createSlideshow/).
210
+ * @returns {Promise<ContentPlatformModel.TranslateUiLabels>} - Success response
211
+ * @name createTranslateUILabels
212
+ * @summary: Add Translate Ui Labels
213
+ * @description: Creates a new Translate Ui Labels entry with specified configuration and locale settings. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/createTranslateUILabels/).
201
214
  */
202
- createSlideshow({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateSlideshowParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SlideshowSchema>;
215
+ createTranslateUILabels({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateTranslateUILabelsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TranslateUiLabels>;
203
216
  /**
204
217
  * @param {ContentPlatformApplicationValidator.DeleteAnnouncementParam} arg
205
218
  * - Arg object
@@ -210,35 +223,35 @@ declare class Content {
210
223
  * Success response
211
224
  * @name deleteAnnouncement
212
225
  * @summary: Delete an announcement
213
- * @description: Remove a specific announcement. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteAnnouncement/).
226
+ * @description: Remove a specific announcement. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/deleteAnnouncement/).
214
227
  */
215
228
  deleteAnnouncement({ announcementId, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAnnouncementParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateAnnouncementSchema>;
216
229
  /**
217
- * @param {ContentPlatformApplicationValidator.DeleteAppCustomFieldDefinitionParam} arg
230
+ * @param {ContentPlatformApplicationValidator.DeleteAppCustomFieldDefinitionBySlugParam} arg
218
231
  * - Arg object
219
232
  *
220
233
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
221
234
  * @param {import("../PlatformAPIClient").Options} - Options
222
235
  * @returns {Promise<ContentPlatformModel.CustomDataDeleteSchema>} - Success response
223
- * @name deleteAppCustomFieldDefinition
236
+ * @name deleteAppCustomFieldDefinitionBySlug
224
237
  * @summary: Delete custom fields definition
225
- * @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/).
238
+ * @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://docs.fynd.com/partners/commerce/sdk/platform/content/deleteAppCustomFieldDefinitionBySlug/).
226
239
  */
227
- deleteAppCustomFieldDefinition({ definitionId, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomFieldDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomDataDeleteSchema>;
240
+ deleteAppCustomFieldDefinitionBySlug({ slug, resource, namespace, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomFieldDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomDataDeleteSchema>;
228
241
  /**
229
- * @param {ContentPlatformApplicationValidator.DeleteAppCustomObjectParam} arg
242
+ * @param {ContentPlatformApplicationValidator.DeleteAppCustomObjectBySlugParam} arg
230
243
  * - Arg object
231
244
  *
232
245
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
233
246
  * @param {import("../PlatformAPIClient").Options} - Options
234
247
  * @returns {Promise<ContentPlatformModel.CustomDataDeleteSchema>} - Success response
235
- * @name deleteAppCustomObject
248
+ * @name deleteAppCustomObjectBySlug
236
249
  * @summary: Delete custom object
237
- * @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/).
250
+ * @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://docs.fynd.com/partners/commerce/sdk/platform/content/deleteAppCustomObjectBySlug/).
238
251
  */
239
- deleteAppCustomObject({ metaobjectId, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomObjectParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomDataDeleteSchema>;
252
+ deleteAppCustomObjectBySlug({ definitionSlug, slug, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomObjectBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomDataDeleteSchema>;
240
253
  /**
241
- * @param {ContentPlatformApplicationValidator.DeleteAppCustomObjectDefinitionParam} arg
254
+ * @param {ContentPlatformApplicationValidator.DeleteAppCustomObjectDefinitionBySlugParam} arg
242
255
  * - Arg object
243
256
  *
244
257
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -246,11 +259,35 @@ declare class Content {
246
259
  * @returns {Promise<ContentPlatformModel.CustomObjectDefinitionDeleteResponseSchema>}
247
260
  * - Success response
248
261
  *
249
- * @name deleteAppCustomObjectDefinition
262
+ * @name deleteAppCustomObjectDefinitionBySlug
250
263
  * @summary: Delete custom object definition
251
- * @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/).
264
+ * @description: Custom object definitions can be deleted using this endpoint by providing the definition ID. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/deleteAppCustomObjectDefinitionBySlug/).
265
+ */
266
+ deleteAppCustomObjectDefinitionBySlug({ slug, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomObjectDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionDeleteResponseSchema>;
267
+ /**
268
+ * @param {ContentPlatformApplicationValidator.DeleteApplicationLanguageParam} arg
269
+ * - Arg object
270
+ *
271
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
272
+ * @param {import("../PlatformAPIClient").Options} - Options
273
+ * @returns {Promise<ContentPlatformModel.OperationResponseSchema>} - Success response
274
+ * @name deleteApplicationLanguage
275
+ * @summary: Remove app language
276
+ * @description: Remove a language from application's supported languages. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/deleteApplicationLanguage/).
277
+ */
278
+ deleteApplicationLanguage({ locale, requestHeaders }?: ContentPlatformApplicationValidator.DeleteApplicationLanguageParam, { responseHeaders }?: object): Promise<ContentPlatformModel.OperationResponseSchema>;
279
+ /**
280
+ * @param {ContentPlatformApplicationValidator.DeleteApplicationResourceTranslationParam} arg
281
+ * - Arg object
282
+ *
283
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
284
+ * @param {import("../PlatformAPIClient").Options} - Options
285
+ * @returns {Promise<ContentPlatformModel.OperationResponseSchema>} - Success response
286
+ * @name deleteApplicationResourceTranslation
287
+ * @summary: Remove app translation
288
+ * @description: Remove translations for application resources. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/deleteApplicationResourceTranslation/).
252
289
  */
253
- deleteAppCustomObjectDefinition({ definitionId, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionDeleteResponseSchema>;
290
+ deleteApplicationResourceTranslation({ id, requestHeaders }?: ContentPlatformApplicationValidator.DeleteApplicationResourceTranslationParam, { responseHeaders }?: object): Promise<ContentPlatformModel.OperationResponseSchema>;
254
291
  /**
255
292
  * @param {ContentPlatformApplicationValidator.DeleteBlogParam} arg - Arg object
256
293
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -258,7 +295,7 @@ declare class Content {
258
295
  * @returns {Promise<ContentPlatformModel.BlogSchema>} - Success response
259
296
  * @name deleteBlog
260
297
  * @summary: Delete a blog
261
- * @description: Remove a specific blog. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteBlog/).
298
+ * @description: Remove a specific blog. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/deleteBlog/).
262
299
  */
263
300
  deleteBlog({ id, requestHeaders }?: ContentPlatformApplicationValidator.DeleteBlogParam, { responseHeaders }?: object): Promise<ContentPlatformModel.BlogSchema>;
264
301
  /**
@@ -269,7 +306,7 @@ declare class Content {
269
306
  * Success response
270
307
  * @name deleteDataLoader
271
308
  * @summary: Delete a data loader
272
- * @description: Remove a specific data loader. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteDataLoader/).
309
+ * @description: Remove a specific data loader. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/deleteDataLoader/).
273
310
  */
274
311
  deleteDataLoader({ dataLoaderId, requestHeaders }?: ContentPlatformApplicationValidator.DeleteDataLoaderParam, { responseHeaders }?: object): Promise<ContentPlatformModel.DataLoaderResponseSchema>;
275
312
  /**
@@ -279,7 +316,7 @@ declare class Content {
279
316
  * @returns {Promise<ContentPlatformModel.CreateFaqResponseSchema>} - Success response
280
317
  * @name deleteFaq
281
318
  * @summary: Delete FAQ
282
- * @description: Remove a specific FAQ. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteFaq/).
319
+ * @description: Remove a specific FAQ. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/deleteFaq/).
283
320
  */
284
321
  deleteFaq({ categoryId, faqId, requestHeaders }?: ContentPlatformApplicationValidator.DeleteFaqParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateFaqResponseSchema>;
285
322
  /**
@@ -291,7 +328,7 @@ declare class Content {
291
328
  * @returns {Promise<ContentPlatformModel.FaqSchema>} - Success response
292
329
  * @name deleteFaqCategory
293
330
  * @summary: Delete FAQ category
294
- * @description: Remove a specific FAQ category. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteFaqCategory/).
331
+ * @description: Remove a specific FAQ category. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/deleteFaqCategory/).
295
332
  */
296
333
  deleteFaqCategory({ id, requestHeaders }?: ContentPlatformApplicationValidator.DeleteFaqCategoryParam, { responseHeaders }?: object): Promise<ContentPlatformModel.FaqSchema>;
297
334
  /**
@@ -303,7 +340,7 @@ declare class Content {
303
340
  * @returns {Promise<ContentPlatformModel.LandingPageSchema>} - Success response
304
341
  * @name deleteLandingPage
305
342
  * @summary: Delete landing page
306
- * @description: Remove a specific landing page. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteLandingPage/).
343
+ * @description: Remove a specific landing page. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/deleteLandingPage/).
307
344
  */
308
345
  deleteLandingPage({ id, requestHeaders }?: ContentPlatformApplicationValidator.DeleteLandingPageParam, { responseHeaders }?: object): Promise<ContentPlatformModel.LandingPageSchema>;
309
346
  /**
@@ -313,7 +350,7 @@ declare class Content {
313
350
  * @returns {Promise<ContentPlatformModel.NavigationSchema>} - Success response
314
351
  * @name deleteNavigation
315
352
  * @summary: Delete navigation
316
- * @description: Remove a specific navigation element. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteNavigation/).
353
+ * @description: Remove a specific navigation element. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/deleteNavigation/).
317
354
  */
318
355
  deleteNavigation({ id, requestHeaders }?: ContentPlatformApplicationValidator.DeleteNavigationParam, { responseHeaders }?: object): Promise<ContentPlatformModel.NavigationSchema>;
319
356
  /**
@@ -323,7 +360,7 @@ declare class Content {
323
360
  * @returns {Promise<ContentPlatformModel.PageSchema>} - Success response
324
361
  * @name deletePage
325
362
  * @summary: Delete page
326
- * @description: Remove a page from the platform. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deletePage/).
363
+ * @description: Remove a page from the platform. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/deletePage/).
327
364
  */
328
365
  deletePage({ id, requestHeaders }?: ContentPlatformApplicationValidator.DeletePageParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PageSchema>;
329
366
  /**
@@ -335,7 +372,7 @@ declare class Content {
335
372
  * @returns {Promise<Object>} - Success response
336
373
  * @name deletePathRedirectionRules
337
374
  * @summary: Delete path redirection rule
338
- * @description: Remove specific path redirection rules. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deletePathRedirectionRules/).
375
+ * @description: Remove specific path redirection rules. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/deletePathRedirectionRules/).
339
376
  */
340
377
  deletePathRedirectionRules({ pathId, requestHeaders }?: ContentPlatformApplicationValidator.DeletePathRedirectionRulesParam, { responseHeaders }?: object): Promise<any>;
341
378
  /**
@@ -347,19 +384,9 @@ declare class Content {
347
384
  * @returns {Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>} - Success response
348
385
  * @name deleteSEOMarkupSchema
349
386
  * @summary: Delete SEO Markup Schema
350
- * @description: Use this API to Delete SEO Markup Schema - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteSEOMarkupSchema/).
387
+ * @description: Use this API to Delete SEO Markup Schema - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/deleteSEOMarkupSchema/).
351
388
  */
352
389
  deleteSEOMarkupSchema({ id, requestHeaders }?: ContentPlatformApplicationValidator.DeleteSEOMarkupSchemaParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>;
353
- /**
354
- * @param {ContentPlatformApplicationValidator.DeleteSlideshowParam} arg - Arg object
355
- * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
356
- * @param {import("../PlatformAPIClient").Options} - Options
357
- * @returns {Promise<ContentPlatformModel.SlideshowSchema>} - Success response
358
- * @name deleteSlideshow
359
- * @summary: Delete a slideshow
360
- * @description: Use this API to delete an existing slideshow. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteSlideshow/).
361
- */
362
- deleteSlideshow({ id, requestHeaders }?: ContentPlatformApplicationValidator.DeleteSlideshowParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SlideshowSchema>;
363
390
  /**
364
391
  * @param {ContentPlatformApplicationValidator.EditDataLoaderParam} arg - Arg object
365
392
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -368,7 +395,7 @@ declare class Content {
368
395
  * Success response
369
396
  * @name editDataLoader
370
397
  * @summary: Update a data loader
371
- * @description: Modify the settings of a specific data loader. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/editDataLoader/).
398
+ * @description: Modify the settings of a specific data loader. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/editDataLoader/).
372
399
  */
373
400
  editDataLoader({ dataLoaderId, body, requestHeaders }?: ContentPlatformApplicationValidator.EditDataLoaderParam, { responseHeaders }?: object): Promise<ContentPlatformModel.DataLoaderResponseSchema>;
374
401
  /**
@@ -380,7 +407,7 @@ declare class Content {
380
407
  * @returns {Promise<ContentPlatformModel.TagsSchema>} - Success response
381
408
  * @name editInjectableTag
382
409
  * @summary: Update HTML tag
383
- * @description: Modify settings for an injectable tag. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/editInjectableTag/).
410
+ * @description: Modify settings for an injectable tag. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/editInjectableTag/).
384
411
  */
385
412
  editInjectableTag({ tagId, body, requestHeaders }?: ContentPlatformApplicationValidator.EditInjectableTagParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TagsSchema>;
386
413
  /**
@@ -392,11 +419,11 @@ declare class Content {
392
419
  * @returns {Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>} - Success response
393
420
  * @name editSEOMarkupSchema
394
421
  * @summary: Get SEO Markup Schema
395
- * @description: Use this API to Get SEO Markup Schema - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/editSEOMarkupSchema/).
422
+ * @description: Use this API to Get SEO Markup Schema - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/editSEOMarkupSchema/).
396
423
  */
397
424
  editSEOMarkupSchema({ id, body, requestHeaders }?: ContentPlatformApplicationValidator.EditSEOMarkupSchemaParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>;
398
425
  /**
399
- * @param {ContentPlatformApplicationValidator.ExportAppCustomObjectEntriesParam} arg
426
+ * @param {ContentPlatformApplicationValidator.ExportAppCustomObjectEntriesBySlugParam} arg
400
427
  * - Arg object
401
428
  *
402
429
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -404,11 +431,11 @@ declare class Content {
404
431
  * @returns {Promise<ContentPlatformModel.CustomObjectBulkEntryInitiateDownload>}
405
432
  * - Success response
406
433
  *
407
- * @name exportAppCustomObjectEntries
434
+ * @name exportAppCustomObjectEntriesBySlug
408
435
  * @summary: Initiate download for bulk custom object entries
409
- * @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/).
436
+ * @description: Custom object bulk export of bulk entries can be perform using this endpoint. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/exportAppCustomObjectEntriesBySlug/).
410
437
  */
411
- exportAppCustomObjectEntries({ definitionId, requestHeaders }?: ContentPlatformApplicationValidator.ExportAppCustomObjectEntriesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectBulkEntryInitiateDownload>;
438
+ exportAppCustomObjectEntriesBySlug({ slug, requestHeaders }?: ContentPlatformApplicationValidator.ExportAppCustomObjectEntriesBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectBulkEntryInitiateDownload>;
412
439
  /**
413
440
  * @param {ContentPlatformApplicationValidator.GenerateSEOTitleParam} arg - Arg object
414
441
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -416,7 +443,7 @@ declare class Content {
416
443
  * @returns {Promise<ContentPlatformModel.GeneratedSEOContent>} - Success response
417
444
  * @name generateSEOTitle
418
445
  * @summary: Generate SEO title
419
- * @description: Create an SEO-friendly title for content. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/generateSEOTitle/).
446
+ * @description: Create an SEO-friendly title for content. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/generateSEOTitle/).
420
447
  */
421
448
  generateSEOTitle({ type, body, requestHeaders }?: ContentPlatformApplicationValidator.GenerateSEOTitleParam, { responseHeaders }?: object): Promise<ContentPlatformModel.GeneratedSEOContent>;
422
449
  /**
@@ -428,7 +455,7 @@ declare class Content {
428
455
  * @returns {Promise<ContentPlatformModel.AdminAnnouncementSchema>} - Success response
429
456
  * @name getAnnouncementById
430
457
  * @summary: Get announcement
431
- * @description: Get detailed information about a specific announcement - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAnnouncementById/).
458
+ * @description: Get detailed information about a specific announcement - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getAnnouncementById/).
432
459
  */
433
460
  getAnnouncementById({ announcementId, requestHeaders }?: ContentPlatformApplicationValidator.GetAnnouncementByIdParam, { responseHeaders }?: object): Promise<ContentPlatformModel.AdminAnnouncementSchema>;
434
461
  /**
@@ -441,23 +468,36 @@ declare class Content {
441
468
  * Success response
442
469
  * @name getAnnouncementsList
443
470
  * @summary: List announcements
444
- * @description: Lists all announcements - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAnnouncementsList/).
471
+ * @description: Lists all announcements - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getAnnouncementsList/).
445
472
  */
446
473
  getAnnouncementsList({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetAnnouncementsListParam, { responseHeaders }?: object): Promise<ContentPlatformModel.GetAnnouncementListSchema>;
447
474
  /**
448
- * @param {ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionParam} arg
475
+ * @param {ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionByResourceParam} arg
449
476
  * - Arg object
450
477
  *
451
478
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
452
479
  * @param {import("../PlatformAPIClient").Options} - Options
453
- * @returns {Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>}
480
+ * @returns {Promise<ContentPlatformModel.CustomFieldDefinitionsSchema>} -
481
+ * Success response
482
+ * @name getAppCustomFieldDefinitionByResource
483
+ * @summary: Get custom fields definitions for a given resource type
484
+ * @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://docs.fynd.com/partners/commerce/sdk/platform/content/getAppCustomFieldDefinitionByResource/).
485
+ */
486
+ getAppCustomFieldDefinitionByResource({ pageNo, pageSize, resource, types, search, slugs, namespaces, requestHeaders, }?: ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionByResourceParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionsSchema>;
487
+ /**
488
+ * @param {ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionBySlugParam} arg
489
+ * - Arg object
490
+ *
491
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
492
+ * @param {import("../PlatformAPIClient").Options} - Options
493
+ * @returns {Promise<ContentPlatformModel.MetaFieldDefinitionDetailResSchema>}
454
494
  * - Success response
455
495
  *
456
- * @name getAppCustomFieldDefinition
457
- * @summary: Get custom fields definition
458
- * @description: Custom field definitions can be fetch using definition id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldDefinition/).
496
+ * @name getAppCustomFieldDefinitionBySlug
497
+ * @summary: Get custom fields definition by resource, slug and namespace
498
+ * @description: Custom field definitions can be retrived from this using its slug, namespace and resource - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getAppCustomFieldDefinitionBySlug/).
459
499
  */
460
- getAppCustomFieldDefinition({ definitionId, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>;
500
+ getAppCustomFieldDefinitionBySlug({ slug, resource, namespace, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.MetaFieldDefinitionDetailResSchema>;
461
501
  /**
462
502
  * @param {ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionsParam} arg
463
503
  * - Arg object
@@ -468,36 +508,23 @@ declare class Content {
468
508
  * Success response
469
509
  * @name getAppCustomFieldDefinitions
470
510
  * @summary: Get custom fields definitions
471
- * @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/).
511
+ * @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://docs.fynd.com/partners/commerce/sdk/platform/content/getAppCustomFieldDefinitions/).
472
512
  */
473
- getAppCustomFieldDefinitions({ pageNo, pageSize, resource, type, search, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionsSchema>;
513
+ getAppCustomFieldDefinitions({ pageNo, pageSize, resources, types, search, slugs, namespaces, requestHeaders, }?: ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionsSchema>;
474
514
  /**
475
515
  * @param {ContentPlatformApplicationValidator.GetAppCustomFieldTypesParam} arg
476
516
  * - Arg object
477
517
  *
478
518
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
479
519
  * @param {import("../PlatformAPIClient").Options} - Options
480
- * @returns {Promise<ContentPlatformModel.CustomObjectByIdSchema>} - Success response
520
+ * @returns {Promise<ContentPlatformModel.MetafieldTypesSchema>} - Success response
481
521
  * @name getAppCustomFieldTypes
482
522
  * @summary: Get custom field types
483
- * @description: Each custom field and custom field definition has a type, which defines the type of information that it can store. The custom field types have built-in validation. This api will give list of supported custom fields types - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldTypes/).
523
+ * @description: Each custom field and custom field definition has a type, which defines the type of information that it can store. The custom field types have built-in validation. This api will give list of supported custom fields types - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getAppCustomFieldTypes/).
484
524
  */
485
- getAppCustomFieldTypes({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectByIdSchema>;
525
+ getAppCustomFieldTypes({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.MetafieldTypesSchema>;
486
526
  /**
487
- * @param {ContentPlatformApplicationValidator.GetAppCustomFieldsParam} arg
488
- * - Arg object
489
- *
490
- * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
491
- * @param {import("../PlatformAPIClient").Options} - Options
492
- * @returns {Promise<ContentPlatformModel.CustomFieldsResponseSchema>} -
493
- * Success response
494
- * @name getAppCustomFields
495
- * @summary: Get list of custom fields of gives resource
496
- * @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/).
497
- */
498
- getAppCustomFields({ resource, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsResponseSchema>;
499
- /**
500
- * @param {ContentPlatformApplicationValidator.GetAppCustomFieldsByResourceIdParam} arg
527
+ * @param {ContentPlatformApplicationValidator.GetAppCustomFieldsByResourceSlugParam} arg
501
528
  * - Arg object
502
529
  *
503
530
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -505,36 +532,38 @@ declare class Content {
505
532
  * @returns {Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>}
506
533
  * - Success response
507
534
  *
508
- * @name getAppCustomFieldsByResourceId
509
- * @summary: Get list of custom fields of given resource and resource id
510
- * @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/).
535
+ * @name getAppCustomFieldsByResourceSlug
536
+ * @summary: Get list of custom fields of given resource and resource slug
537
+ * @description: Retrieves a list of custom fields attached to a particular resource by using the resource and resource slug. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getAppCustomFieldsByResourceSlug/).
511
538
  */
512
- getAppCustomFieldsByResourceId({ resource, resourceId, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldsByResourceIdParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>;
539
+ getAppCustomFieldsByResourceSlug({ resource, resourceSlug, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldsByResourceSlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>;
513
540
  /**
514
- * @param {ContentPlatformApplicationValidator.GetAppCustomObjectParam} arg
541
+ * @param {ContentPlatformApplicationValidator.GetAppCustomObjectBySlugParam} arg
515
542
  * - Arg object
516
543
  *
517
544
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
518
545
  * @param {import("../PlatformAPIClient").Options} - Options
519
- * @returns {Promise<ContentPlatformModel.CustomObjectByIdSchema>} - Success response
520
- * @name getAppCustomObject
546
+ * @returns {Promise<ContentPlatformModel.CustomObjectBySlugSchema>} -
547
+ * Success response
548
+ * @name getAppCustomObjectBySlug
521
549
  * @summary: Get custom object details
522
- * @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/).
550
+ * @description: Details of a custom object entry can be obtained using this endpoint. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getAppCustomObjectBySlug/).
523
551
  */
524
- getAppCustomObject({ metaobjectId, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectByIdSchema>;
552
+ getAppCustomObjectBySlug({ definitionSlug, slug, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectBySlugSchema>;
525
553
  /**
526
- * @param {ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionParam} arg
554
+ * @param {ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionBySlugParam} arg
527
555
  * - Arg object
528
556
  *
529
557
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
530
558
  * @param {import("../PlatformAPIClient").Options} - Options
531
- * @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSchema>} -
532
- * Success response
533
- * @name getAppCustomObjectDefinition
559
+ * @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>}
560
+ * - Success response
561
+ *
562
+ * @name getAppCustomObjectDefinitionBySlug
534
563
  * @summary: Get custom object definition
535
- * @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/).
564
+ * @description: Custom object definitions can be fetched using their custom object definition slug. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getAppCustomObjectDefinitionBySlug/).
536
565
  */
537
- getAppCustomObjectDefinition({ definitionId, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSchema>;
566
+ getAppCustomObjectDefinitionBySlug({ slug, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>;
538
567
  /**
539
568
  * @param {ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionsParam} arg
540
569
  * - Arg object
@@ -545,21 +574,21 @@ declare class Content {
545
574
  * Success response
546
575
  * @name getAppCustomObjectDefinitions
547
576
  * @summary: Get custom object definitions
548
- * @description: Custom object definition lists can be obtained using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomObjectDefinitions/).
577
+ * @description: Custom object definition lists can be obtained using this endpoint. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getAppCustomObjectDefinitions/).
549
578
  */
550
579
  getAppCustomObjectDefinitions({ pageNo, pageSize, search, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionsSchema>;
551
580
  /**
552
- * @param {ContentPlatformApplicationValidator.GetAppCustomObjectsParam} arg
581
+ * @param {ContentPlatformApplicationValidator.GetAppCustomObjectsBySlugParam} arg
553
582
  * - Arg object
554
583
  *
555
584
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
556
585
  * @param {import("../PlatformAPIClient").Options} - Options
557
586
  * @returns {Promise<ContentPlatformModel.CustomObjectsSchema>} - Success response
558
- * @name getAppCustomObjects
587
+ * @name getAppCustomObjectsBySlug
559
588
  * @summary: Get list of custom objects
560
- * @description: Custom object entries can fetch using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomObjects/).
589
+ * @description: Custom object entries can fetch using this endpoint. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getAppCustomObjectsBySlug/).
561
590
  */
562
- getAppCustomObjects({ pageNo, pageSize, definitionId, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectsSchema>;
591
+ getAppCustomObjectsBySlug({ pageNo, pageSize, definitionSlug, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectsBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectsSchema>;
563
592
  /**
564
593
  * @param {ContentPlatformApplicationValidator.GetAppJobsParam} arg - Arg object
565
594
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -567,7 +596,7 @@ declare class Content {
567
596
  * @returns {Promise<ContentPlatformModel.CustomObjectBulkEntry>} - Success response
568
597
  * @name getAppJobs
569
598
  * @summary: Get bulk import and export job list
570
- * @description: Custom object bulk import and export jobs status and details can be obtained using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppJobs/).
599
+ * @description: Custom object bulk import and export jobs status and details can be obtained using this endpoint. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getAppJobs/).
571
600
  */
572
601
  getAppJobs({ page, pageSize, actionType, requestHeaders }?: ContentPlatformApplicationValidator.GetAppJobsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectBulkEntry>;
573
602
  /**
@@ -577,9 +606,33 @@ declare class Content {
577
606
  * @returns {Promise<ContentPlatformModel.ResourcesSchema>} - Success response
578
607
  * @name getAppResources
579
608
  * @summary: Get resources
580
- * @description: Each custom fields is assosiated with a resource such as product, promotion, coupon, selling location etc, This will gives list of supported resource list. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppResources/).
609
+ * @description: Each custom fields is assosiated with a resource such as product, promotion, coupon, selling location etc, This will gives list of supported resource list. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getAppResources/).
581
610
  */
582
611
  getAppResources({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.ResourcesSchema>;
612
+ /**
613
+ * @param {ContentPlatformApplicationValidator.GetApplicationLanguagesParam} arg
614
+ * - Arg object
615
+ *
616
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
617
+ * @param {import("../PlatformAPIClient").Options} - Options
618
+ * @returns {Promise<Object>} - Success response
619
+ * @name getApplicationLanguages
620
+ * @summary: Get app languages
621
+ * @description: Fetch all languages configured for the specified application. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getApplicationLanguages/).
622
+ */
623
+ getApplicationLanguages({ requestHeaders }?: any, { responseHeaders }?: object): Promise<any>;
624
+ /**
625
+ * @param {ContentPlatformApplicationValidator.GetApplicationResourceTranslationsParam} arg
626
+ * - Arg object
627
+ *
628
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
629
+ * @param {import("../PlatformAPIClient").Options} - Options
630
+ * @returns {Promise<Object>} - Success response
631
+ * @name getApplicationResourceTranslations
632
+ * @summary: Get app translations
633
+ * @description: Fetch translations for application-level resources. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getApplicationResourceTranslations/).
634
+ */
635
+ getApplicationResourceTranslations({ locale, type, resourceId, requestHeaders }?: ContentPlatformApplicationValidator.GetApplicationResourceTranslationsParam, { responseHeaders }?: object): Promise<any>;
583
636
  /**
584
637
  * @param {ContentPlatformApplicationValidator.GetBlogBySlugParam} arg - Arg object
585
638
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -587,19 +640,19 @@ declare class Content {
587
640
  * @returns {Promise<ContentPlatformModel.BlogSchema>} - Success response
588
641
  * @name getBlogBySlug
589
642
  * @summary: Get blog by slug
590
- * @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/).
643
+ * @description: Retrieve detailed information about a specific blog using its slug. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getBlogBySlug/).
591
644
  */
592
645
  getBlogBySlug({ slug, requestHeaders }?: ContentPlatformApplicationValidator.GetBlogBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.BlogSchema>;
593
646
  /**
594
647
  * @param {ContentPlatformApplicationValidator.GetBlogsParam} arg - Arg object
595
648
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
596
649
  * @param {import("../PlatformAPIClient").Options} - Options
597
- * @returns {Promise<ContentPlatformModel.BlogGetResponse>} - Success response
650
+ * @returns {Promise<ContentPlatformModel.BlogGetDetails>} - Success response
598
651
  * @name getBlogs
599
652
  * @summary: List blogs
600
- * @description: List all blogs - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getBlogs/).
653
+ * @description: List all blogs - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getBlogs/).
601
654
  */
602
- getBlogs({ pageNo, pageSize, tags, q, slug, title, status, requestHeaders }?: ContentPlatformApplicationValidator.GetBlogsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.BlogGetResponse>;
655
+ getBlogs({ pageNo, pageSize, tags, q, slug, title, status, requestHeaders }?: ContentPlatformApplicationValidator.GetBlogsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.BlogGetDetails>;
603
656
  /**
604
657
  * @param {ContentPlatformApplicationValidator.GetDataLoadersParam} arg - Arg object
605
658
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -607,7 +660,7 @@ declare class Content {
607
660
  * @returns {Promise<ContentPlatformModel.DataLoadersSchema>} - Success response
608
661
  * @name getDataLoaders
609
662
  * @summary: List data loaders
610
- * @description: List all Dataloaders - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getDataLoaders/).
663
+ * @description: List all Dataloaders - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getDataLoaders/).
611
664
  */
612
665
  getDataLoaders({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.DataLoadersSchema>;
613
666
  /**
@@ -620,7 +673,7 @@ declare class Content {
620
673
  * Success response
621
674
  * @name getDataLoadersByService
622
675
  * @summary: List all data loaders
623
- * @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/).
676
+ * @description: Use this to get all data loaders of an application by service name - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getDataLoadersByService/).
624
677
  */
625
678
  getDataLoadersByService({ serviceName, requestHeaders }?: ContentPlatformApplicationValidator.GetDataLoadersByServiceParam, { responseHeaders }?: object): Promise<ContentPlatformModel.DataLoaderResponseSchema>;
626
679
  /**
@@ -629,13 +682,13 @@ declare class Content {
629
682
  *
630
683
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
631
684
  * @param {import("../PlatformAPIClient").Options} - Options
632
- * @returns {Promise<ContentPlatformModel.DefaultNavigationResponse>} -
685
+ * @returns {Promise<ContentPlatformModel.DefaultNavigationDetails>} -
633
686
  * Success response
634
687
  * @name getDefaultNavigations
635
688
  * @summary: Get default navigations
636
- * @description: Retrieve default navigation elements. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getDefaultNavigations/).
689
+ * @description: Retrieve default navigation elements. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getDefaultNavigations/).
637
690
  */
638
- getDefaultNavigations({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.DefaultNavigationResponse>;
691
+ getDefaultNavigations({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.DefaultNavigationDetails>;
639
692
  /**
640
693
  * @param {ContentPlatformApplicationValidator.GetDefaultSEOMarkupSchemaParam} arg
641
694
  * - Arg object
@@ -645,7 +698,7 @@ declare class Content {
645
698
  * @returns {Promise<ContentPlatformModel.DefaultSchemaComponent>} - Success response
646
699
  * @name getDefaultSEOMarkupSchema
647
700
  * @summary: List default SEO Markup Schemas
648
- * @description: Use this API to List default SEO Markup Schemas - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getDefaultSEOMarkupSchema/).
701
+ * @description: Use this API to List default SEO Markup Schemas - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getDefaultSEOMarkupSchema/).
649
702
  */
650
703
  getDefaultSEOMarkupSchema({ pageType, requestHeaders }?: ContentPlatformApplicationValidator.GetDefaultSEOMarkupSchemaParam, { responseHeaders }?: object): Promise<ContentPlatformModel.DefaultSchemaComponent>;
651
704
  /**
@@ -655,7 +708,7 @@ declare class Content {
655
708
  * @returns {Promise<ContentPlatformModel.CreateFaqResponseSchema>} - Success response
656
709
  * @name getFaqByIdOrSlug
657
710
  * @summary: Get FAQ or slug
658
- * @description: Get detailed information about a specific FAQ - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getFaqByIdOrSlug/).
711
+ * @description: Get detailed information about a specific FAQ - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getFaqByIdOrSlug/).
659
712
  */
660
713
  getFaqByIdOrSlug({ idOrSlug, requestHeaders }?: ContentPlatformApplicationValidator.GetFaqByIdOrSlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateFaqResponseSchema>;
661
714
  /**
@@ -665,7 +718,7 @@ declare class Content {
665
718
  * @returns {Promise<ContentPlatformModel.GetFaqCategoriesSchema>} - Success response
666
719
  * @name getFaqCategories
667
720
  * @summary: List FAQ Categories
668
- * @description: List all FAQ Categories - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getFaqCategories/).
721
+ * @description: List all FAQ Categories - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getFaqCategories/).
669
722
  */
670
723
  getFaqCategories({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.GetFaqCategoriesSchema>;
671
724
  /**
@@ -678,7 +731,7 @@ declare class Content {
678
731
  * Success response
679
732
  * @name getFaqCategoryBySlugOrId
680
733
  * @summary: Get FAQ category
681
- * @description: Get detailed information about a specific FAQ category - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getFaqCategoryBySlugOrId/).
734
+ * @description: Get detailed information about a specific FAQ category - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getFaqCategoryBySlugOrId/).
682
735
  */
683
736
  getFaqCategoryBySlugOrId({ idOrSlug, requestHeaders }?: ContentPlatformApplicationValidator.GetFaqCategoryBySlugOrIdParam, { responseHeaders }?: object): Promise<ContentPlatformModel.GetFaqCategoryBySlugSchema>;
684
737
  /**
@@ -690,7 +743,7 @@ declare class Content {
690
743
  * @returns {Promise<ContentPlatformModel.GetFaqSchema>} - Success response
691
744
  * @name getFaqsByCategoryIdOrSlug
692
745
  * @summary: List FAQs
693
- * @description: Retrieve a list of FAQs within a specific category. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getFaqsByCategoryIdOrSlug/).
746
+ * @description: Retrieve a list of FAQs within a specific category. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getFaqsByCategoryIdOrSlug/).
694
747
  */
695
748
  getFaqsByCategoryIdOrSlug({ idOrSlug, requestHeaders }?: ContentPlatformApplicationValidator.GetFaqsByCategoryIdOrSlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.GetFaqSchema>;
696
749
  /**
@@ -702,19 +755,19 @@ declare class Content {
702
755
  * @returns {Promise<ContentPlatformModel.TagsSchema>} - Success response
703
756
  * @name getInjectableTags
704
757
  * @summary: Get all HTML tags
705
- * @description: Retrieve a list of injectable tags. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getInjectableTags/).
758
+ * @description: Retrieve a list of injectable tags. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getInjectableTags/).
706
759
  */
707
- getInjectableTags({ all, requestHeaders }?: ContentPlatformApplicationValidator.GetInjectableTagsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TagsSchema>;
760
+ getInjectableTags({ all, search, requestHeaders }?: ContentPlatformApplicationValidator.GetInjectableTagsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TagsSchema>;
708
761
  /**
709
762
  * @param {ContentPlatformApplicationValidator.GetLandingPagesParam} arg - Arg object
710
763
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
711
764
  * @param {import("../PlatformAPIClient").Options} - Options
712
- * @returns {Promise<ContentPlatformModel.LandingPageGetResponse>} - Success response
765
+ * @returns {Promise<ContentPlatformModel.LandingPageGetDetails>} - Success response
713
766
  * @name getLandingPages
714
767
  * @summary: Get landing pages
715
- * @description: Lists a list landing pages as per device types - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getLandingPages/).
768
+ * @description: Lists a list landing pages as per device types - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getLandingPages/).
716
769
  */
717
- getLandingPages({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetLandingPagesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.LandingPageGetResponse>;
770
+ getLandingPages({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetLandingPagesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.LandingPageGetDetails>;
718
771
  /**
719
772
  * @param {ContentPlatformApplicationValidator.GetLegalInformationParam} arg
720
773
  * - Arg object
@@ -724,7 +777,7 @@ declare class Content {
724
777
  * @returns {Promise<ContentPlatformModel.ApplicationLegal>} - Success response
725
778
  * @name getLegalInformation
726
779
  * @summary: Get Legal Pages
727
- * @description: Get legal information and terms - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getLegalInformation/).
780
+ * @description: Get legal information and terms - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getLegalInformation/).
728
781
  */
729
782
  getLegalInformation({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.ApplicationLegal>;
730
783
  /**
@@ -736,19 +789,19 @@ declare class Content {
736
789
  * @returns {Promise<ContentPlatformModel.NavigationSchema>} - Success response
737
790
  * @name getNavigationBySlug
738
791
  * @summary: Get navigation by slug
739
- * @description: Retrieve detailed information about a specific navigation element. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getNavigationBySlug/).
792
+ * @description: Retrieve detailed information about a specific navigation element. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getNavigationBySlug/).
740
793
  */
741
794
  getNavigationBySlug({ slug, devicePlatform, requestHeaders }?: ContentPlatformApplicationValidator.GetNavigationBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.NavigationSchema>;
742
795
  /**
743
796
  * @param {ContentPlatformApplicationValidator.GetNavigationsParam} arg - Arg object
744
797
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
745
798
  * @param {import("../PlatformAPIClient").Options} - Options
746
- * @returns {Promise<ContentPlatformModel.NavigationGetResponse>} - Success response
799
+ * @returns {Promise<ContentPlatformModel.NavigationGetDetails>} - Success response
747
800
  * @name getNavigations
748
801
  * @summary: Get navigation items
749
- * @description: Retrieve a list of navigational elements. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getNavigations/).
802
+ * @description: Retrieve a list of navigational elements. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getNavigations/).
750
803
  */
751
- getNavigations({ devicePlatform, pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetNavigationsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.NavigationGetResponse>;
804
+ getNavigations({ devicePlatform, pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetNavigationsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.NavigationGetDetails>;
752
805
  /**
753
806
  * @param {ContentPlatformApplicationValidator.GetPageBySlugParam} arg - Arg object
754
807
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -756,7 +809,7 @@ declare class Content {
756
809
  * @returns {Promise<ContentPlatformModel.PageSchema>} - Success response
757
810
  * @name getPageBySlug
758
811
  * @summary: Get page by slug
759
- * @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://docs.fynd.com/partners/commerce/sdk/platform/content/getPageBySlug/).
760
813
  */
761
814
  getPageBySlug({ slug, requestHeaders }?: ContentPlatformApplicationValidator.GetPageBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PageSchema>;
762
815
  /**
@@ -766,7 +819,7 @@ declare class Content {
766
819
  * @returns {Promise<ContentPlatformModel.PageMetaSchema>} - Success response
767
820
  * @name getPageMeta
768
821
  * @summary: Get page meta
769
- * @description: Use this API to Get metadata for a specific page. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getPageMeta/).
822
+ * @description: Use this API to Get metadata for a specific page. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getPageMeta/).
770
823
  */
771
824
  getPageMeta({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.PageMetaSchema>;
772
825
  /**
@@ -776,19 +829,19 @@ declare class Content {
776
829
  * @returns {Promise<ContentPlatformModel.PageSpec>} - Success response
777
830
  * @name getPageSpec
778
831
  * @summary: Get page specification
779
- * @description: Use this API to Get specifications and details for a specific page - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getPageSpec/).
832
+ * @description: Use this API to Get specifications and details for a specific page - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getPageSpec/).
780
833
  */
781
834
  getPageSpec({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.PageSpec>;
782
835
  /**
783
836
  * @param {ContentPlatformApplicationValidator.GetPagesParam} arg - Arg object
784
837
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
785
838
  * @param {import("../PlatformAPIClient").Options} - Options
786
- * @returns {Promise<ContentPlatformModel.PageGetResponse>} - Success response
839
+ * @returns {Promise<ContentPlatformModel.PageGetDetails>} - Success response
787
840
  * @name getPages
788
841
  * @summary: Get pages
789
- * @description: Retrieve a list of available pages. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getPages/).
842
+ * @description: Retrieve a list of available pages. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getPages/).
790
843
  */
791
- getPages({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetPagesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PageGetResponse>;
844
+ getPages({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetPagesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PageGetDetails>;
792
845
  /**
793
846
  * @param {ContentPlatformApplicationValidator.GetPathRedirectionRuleParam} arg
794
847
  * - Arg object
@@ -798,7 +851,7 @@ declare class Content {
798
851
  * @returns {Promise<ContentPlatformModel.PathMappingSchema>} - Success response
799
852
  * @name getPathRedirectionRule
800
853
  * @summary: Get Path Redirection Rule
801
- * @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/).
854
+ * @description: Use this API to Get detailed information about a specific path redirection rule - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getPathRedirectionRule/).
802
855
  */
803
856
  getPathRedirectionRule({ pathId, requestHeaders }?: ContentPlatformApplicationValidator.GetPathRedirectionRuleParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PathMappingSchema>;
804
857
  /**
@@ -810,7 +863,7 @@ declare class Content {
810
863
  * @returns {Promise<ContentPlatformModel.PathMappingSchema>} - Success response
811
864
  * @name getPathRedirectionRules
812
865
  * @summary: List Path Redirection Rules
813
- * @description: Use this API to List Path Redirection Rules - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getPathRedirectionRules/).
866
+ * @description: Use this API to List Path Redirection Rules - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getPathRedirectionRules/).
814
867
  */
815
868
  getPathRedirectionRules({ pageSize, pageNo, requestHeaders }?: ContentPlatformApplicationValidator.GetPathRedirectionRulesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PathMappingSchema>;
816
869
  /**
@@ -822,7 +875,7 @@ declare class Content {
822
875
  * @returns {Promise<ContentPlatformModel.SeoComponent>} - Success response
823
876
  * @name getSEOConfiguration
824
877
  * @summary: Get sales channel SEO
825
- * @description: Retrieve configuration settings for SEO. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getSEOConfiguration/).
878
+ * @description: Retrieve configuration settings for SEO. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getSEOConfiguration/).
826
879
  */
827
880
  getSEOConfiguration({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.SeoComponent>;
828
881
  /**
@@ -834,7 +887,7 @@ declare class Content {
834
887
  * @returns {Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>} - Success response
835
888
  * @name getSEOMarkupSchema
836
889
  * @summary: Get SEO Markup Schema
837
- * @description: Use this API to Get SEO Markup Schema - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getSEOMarkupSchema/).
890
+ * @description: Use this API to Get SEO Markup Schema - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getSEOMarkupSchema/).
838
891
  */
839
892
  getSEOMarkupSchema({ id, requestHeaders }?: ContentPlatformApplicationValidator.GetSEOMarkupSchemaParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>;
840
893
  /**
@@ -846,90 +899,81 @@ declare class Content {
846
899
  * @returns {Promise<ContentPlatformModel.SeoSchemaComponent>} - Success response
847
900
  * @name getSEOMarkupSchemas
848
901
  * @summary: List default SEO Markup Schemas
849
- * @description: Use this API to List default SEO Markup Schemas - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getSEOMarkupSchemas/).
902
+ * @description: Use this API to List default SEO Markup Schemas - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getSEOMarkupSchemas/).
850
903
  */
851
904
  getSEOMarkupSchemas({ title, active, pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetSEOMarkupSchemasParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SeoSchemaComponent>;
852
905
  /**
853
- * @param {ContentPlatformApplicationValidator.GetSlideshowBySlugParam} arg
906
+ * @param {ContentPlatformApplicationValidator.GetSupportInformationParam} arg
854
907
  * - Arg object
855
908
  *
856
909
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
857
910
  * @param {import("../PlatformAPIClient").Options} - Options
858
- * @returns {Promise<ContentPlatformModel.SlideshowSchema>} - Success response
859
- * @name getSlideshowBySlug
860
- * @summary: Get Slideshow
861
- * @description: Use this API to get the details of a slideshow by its slug. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getSlideshowBySlug/).
911
+ * @returns {Promise<ContentPlatformModel.Support>} - Success response
912
+ * @name getSupportInformation
913
+ * @summary: Get support information
914
+ * @description: Retrieve information related to customer support. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getSupportInformation/).
862
915
  */
863
- getSlideshowBySlug({ slug, devicePlatform, requestHeaders }?: ContentPlatformApplicationValidator.GetSlideshowBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SlideshowSchema>;
916
+ getSupportInformation({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.Support>;
864
917
  /**
865
- * @param {ContentPlatformApplicationValidator.GetSlideshowsParam} arg - Arg object
918
+ * @param {ContentPlatformApplicationValidator.GetTagsTemplateParam} arg - Arg object
866
919
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
867
920
  * @param {import("../PlatformAPIClient").Options} - Options
868
- * @returns {Promise<ContentPlatformModel.SlideshowGetResponse>} - Success response
869
- * @name getSlideshows
870
- * @summary: List Slideshows
871
- * @description: Use this API to list all Slideshows - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getSlideshows/).
921
+ * @returns {Promise<ContentPlatformModel.TagsTemplateSchema>} - Success response
922
+ * @name getTagsTemplate
923
+ * @summary: Get Script Tags Templates
924
+ * @description: Retrieve the available script tag templates - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getTagsTemplate/).
872
925
  */
873
- getSlideshows({ devicePlatform, pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetSlideshowsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SlideshowGetResponse>;
926
+ getTagsTemplate({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.TagsTemplateSchema>;
874
927
  /**
875
- * @param {Object} arg - Arg object.
876
- * @param {string} arg.companyId - Numeric ID allotted to a business account
877
- * on Fynd Platform
878
- * @param {string} arg.applicationId - Numeric ID allotted to an application
879
- * created within a business account.
880
- * @param {string} arg.devicePlatform - Filter slideshows by platform.
881
- * Acceptable values are: web, android, ios and all
882
- * @param {number} [arg.pageSize] - The number of items to retrieve in each
883
- * page. Default value is 10.
884
- * @returns {Paginator<ContentPlatformModel.SlideshowGetResponse>}
885
- * @summary: List Slideshows
886
- * @description: Use this API to list all Slideshows
928
+ * @param {ContentPlatformApplicationValidator.GetTranslateUILabelsParam} arg
929
+ * - Arg object
930
+ *
931
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
932
+ * @param {import("../PlatformAPIClient").Options} - Options
933
+ * @returns {Promise<ContentPlatformModel.TranslateUiLabelsPage>} - Success response
934
+ * @name getTranslateUILabels
935
+ * @summary: Get Translate Ui Labels
936
+ * @description: Retrieves Translate Ui Labels with optional filtering by type, application, and company identifiers. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getTranslateUILabels/).
887
937
  */
888
- getSlideshowsPaginator({ companyId, applicationId, devicePlatform, pageSize, }?: {
889
- companyId: string;
890
- applicationId: string;
891
- devicePlatform: string;
892
- pageSize?: number;
893
- }): Paginator<ContentPlatformModel.SlideshowGetResponse>;
938
+ getTranslateUILabels({ templateThemeId, themeId, locale, type, requestHeaders }?: ContentPlatformApplicationValidator.GetTranslateUILabelsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TranslateUiLabelsPage>;
894
939
  /**
895
- * @param {ContentPlatformApplicationValidator.GetSupportInformationParam} arg
940
+ * @param {ContentPlatformApplicationValidator.GetTranslateUILabelsByIdParam} arg
896
941
  * - Arg object
897
942
  *
898
943
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
899
944
  * @param {import("../PlatformAPIClient").Options} - Options
900
- * @returns {Promise<ContentPlatformModel.Support>} - Success response
901
- * @name getSupportInformation
902
- * @summary: Get support information
903
- * @description: Retrieve information related to customer support. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getSupportInformation/).
945
+ * @returns {Promise<ContentPlatformModel.TranslateUiLabels>} - Success response
946
+ * @name getTranslateUILabelsById
947
+ * @summary: Get Resource Detail
948
+ * @description: Fetches detailed information for a specific Translate Ui Labels using its unique identifier. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/getTranslateUILabelsById/).
904
949
  */
905
- getSupportInformation({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.Support>;
950
+ getTranslateUILabelsById({ id, requestHeaders }?: ContentPlatformApplicationValidator.GetTranslateUILabelsByIdParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TranslateUiLabels>;
906
951
  /**
907
- * @param {ContentPlatformApplicationValidator.ImportAppCustomObjectEntriesParam} arg
952
+ * @param {ContentPlatformApplicationValidator.ImportAppCustomObjectEntriesBySlugParam} arg
908
953
  * - Arg object
909
954
  *
910
955
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
911
956
  * @param {import("../PlatformAPIClient").Options} - Options
912
- * @returns {Promise<ContentPlatformModel.CustomObjectEntryBulkUploadResponse>}
957
+ * @returns {Promise<ContentPlatformModel.CustomObjectEntryBulkUploadDetails>}
913
958
  * - Success response
914
959
  *
915
- * @name importAppCustomObjectEntries
960
+ * @name importAppCustomObjectEntriesBySlug
916
961
  * @summary: Bulk custom object entries upload
917
- * @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/).
962
+ * @description: Custom object bulk import of bulk entries can be performed using this endpoint. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/importAppCustomObjectEntriesBySlug/).
918
963
  */
919
- importAppCustomObjectEntries({ definitionId, body, requestHeaders }?: ContentPlatformApplicationValidator.ImportAppCustomObjectEntriesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectEntryBulkUploadResponse>;
964
+ importAppCustomObjectEntriesBySlug({ slug, body, requestHeaders }?: ContentPlatformApplicationValidator.ImportAppCustomObjectEntriesBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectEntryBulkUploadDetails>;
920
965
  /**
921
966
  * @param {ContentPlatformApplicationValidator.RemoveInjectableTagParam} arg
922
967
  * - Arg object
923
968
  *
924
969
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
925
970
  * @param {import("../PlatformAPIClient").Options} - Options
926
- * @returns {Promise<ContentPlatformModel.TagDeleteSuccessResponse>} -
927
- * Success response
971
+ * @returns {Promise<ContentPlatformModel.TagDeleteSuccessDetails>} - Success response
928
972
  * @name removeInjectableTag
929
973
  * @summary: Remove HTML tag
930
- * @description: Delete a specific injectable tag. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/removeInjectableTag/).
974
+ * @description: Delete a specific injectable tag. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/removeInjectableTag/).
931
975
  */
932
- removeInjectableTag({ body, requestHeaders }?: ContentPlatformApplicationValidator.RemoveInjectableTagParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TagDeleteSuccessResponse>;
976
+ removeInjectableTag({ body, requestHeaders }?: ContentPlatformApplicationValidator.RemoveInjectableTagParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TagDeleteSuccessDetails>;
933
977
  /**
934
978
  * @param {ContentPlatformApplicationValidator.ResetDataLoaderParam} arg - Arg object
935
979
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -938,21 +982,21 @@ declare class Content {
938
982
  * Success response
939
983
  * @name resetDataLoader
940
984
  * @summary: Reset a data loader
941
- * @description: Clear and reset data loader settings. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/resetDataLoader/).
985
+ * @description: Clear and reset data loader settings. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/resetDataLoader/).
942
986
  */
943
987
  resetDataLoader({ service, operationId, requestHeaders }?: ContentPlatformApplicationValidator.ResetDataLoaderParam, { responseHeaders }?: object): Promise<ContentPlatformModel.DataLoaderResetResponseSchema>;
944
988
  /**
945
- * @param {ContentPlatformApplicationValidator.SampleAppCustomObjectBulkEntryParam} arg
989
+ * @param {ContentPlatformApplicationValidator.SampleAppCustomObjectBulkEntryBySlugParam} arg
946
990
  * - Arg object
947
991
  *
948
992
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
949
993
  * @param {import("../PlatformAPIClient").Options} - Options
950
994
  * @returns {Promise<string>} - Success response
951
- * @name sampleAppCustomObjectBulkEntry
995
+ * @name sampleAppCustomObjectBulkEntryBySlug
952
996
  * @summary: Download sample for custom object bulk entry
953
- * @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/).
997
+ * @description: Sample files for custom object bulk import can be obtained from this endpoint. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/sampleAppCustomObjectBulkEntryBySlug/).
954
998
  */
955
- sampleAppCustomObjectBulkEntry({ definitionId, requestHeaders }?: ContentPlatformApplicationValidator.SampleAppCustomObjectBulkEntryParam, { responseHeaders }?: object): Promise<string>;
999
+ sampleAppCustomObjectBulkEntryBySlug({ slug, requestHeaders }?: ContentPlatformApplicationValidator.SampleAppCustomObjectBulkEntryBySlugParam, { responseHeaders }?: object): Promise<string>;
956
1000
  /**
957
1001
  * @param {ContentPlatformApplicationValidator.SelectDataLoaderParam} arg - Arg object
958
1002
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -961,7 +1005,7 @@ declare class Content {
961
1005
  * Success response
962
1006
  * @name selectDataLoader
963
1007
  * @summary: Select a data loader
964
- * @description: Choose and set a data loader for use. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/selectDataLoader/).
1008
+ * @description: Choose and set a data loader for use. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/selectDataLoader/).
965
1009
  */
966
1010
  selectDataLoader({ dataLoaderId, requestHeaders }?: ContentPlatformApplicationValidator.SelectDataLoaderParam, { responseHeaders }?: object): Promise<ContentPlatformModel.DataLoaderResponseSchema>;
967
1011
  /**
@@ -974,7 +1018,7 @@ declare class Content {
974
1018
  * Success response
975
1019
  * @name updateAnnouncement
976
1020
  * @summary: Update announcement
977
- * @description: Modify the content and settings of a specific announcement. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAnnouncement/).
1021
+ * @description: Modify the content and settings of a specific announcement. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/updateAnnouncement/).
978
1022
  */
979
1023
  updateAnnouncement({ announcementId, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAnnouncementParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateAnnouncementSchema>;
980
1024
  /**
@@ -987,11 +1031,25 @@ declare class Content {
987
1031
  * Success response
988
1032
  * @name updateAnnouncementSchedule
989
1033
  * @summary: Update announcement schedule
990
- * @description: Modify the scheduling of a specific announcement. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAnnouncementSchedule/).
1034
+ * @description: Modify the scheduling of a specific announcement. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/updateAnnouncementSchedule/).
991
1035
  */
992
1036
  updateAnnouncementSchedule({ announcementId, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAnnouncementScheduleParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateAnnouncementSchema>;
993
1037
  /**
994
- * @param {ContentPlatformApplicationValidator.UpdateAppCustomFieldDefinitionParam} arg
1038
+ * @param {ContentPlatformApplicationValidator.UpdateAppCustomFieldByResourceSlugParam} arg
1039
+ * - Arg object
1040
+ *
1041
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
1042
+ * @param {import("../PlatformAPIClient").Options} - Options
1043
+ * @returns {Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>}
1044
+ * - Success response
1045
+ *
1046
+ * @name updateAppCustomFieldByResourceSlug
1047
+ * @summary: Create custom field entries for gives resource and resource slug
1048
+ * @description: You can add a custom field using this endpoint to any resource by providing the resource slug. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/updateAppCustomFieldByResourceSlug/).
1049
+ */
1050
+ updateAppCustomFieldByResourceSlug({ resource, resourceSlug, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomFieldByResourceSlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>;
1051
+ /**
1052
+ * @param {ContentPlatformApplicationValidator.UpdateAppCustomFieldDefinitionBySlugParam} arg
995
1053
  * - Arg object
996
1054
  *
997
1055
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -999,36 +1057,62 @@ declare class Content {
999
1057
  * @returns {Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>}
1000
1058
  * - Success response
1001
1059
  *
1002
- * @name updateAppCustomFieldDefinition
1060
+ * @name updateAppCustomFieldDefinitionBySlug
1003
1061
  * @summary: Update custom field definition
1004
- * @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/).
1062
+ * @description: Custom fields definition can be update using this api, You can update custom field definition name and description. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/updateAppCustomFieldDefinitionBySlug/).
1005
1063
  */
1006
- updateAppCustomFieldDefinition({ definitionId, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomFieldDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>;
1064
+ updateAppCustomFieldDefinitionBySlug({ slug, resource, namespace, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomFieldDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>;
1007
1065
  /**
1008
- * @param {ContentPlatformApplicationValidator.UpdateAppCustomObjectParam} arg
1066
+ * @param {ContentPlatformApplicationValidator.UpdateAppCustomObjectBySlugParam} arg
1009
1067
  * - Arg object
1010
1068
  *
1011
1069
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
1012
1070
  * @param {import("../PlatformAPIClient").Options} - Options
1013
- * @returns {Promise<ContentPlatformModel.CustomObjectByIdSchema>} - Success response
1014
- * @name updateAppCustomObject
1071
+ * @returns {Promise<ContentPlatformModel.CustomObjectBySlugSchema>} -
1072
+ * Success response
1073
+ * @name updateAppCustomObjectBySlug
1015
1074
  * @summary: Update custom object details
1016
- * @description: Custom object entries can be updated using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomObject/).
1075
+ * @description: Custom object entries can be updated using this endpoint. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/updateAppCustomObjectBySlug/).
1017
1076
  */
1018
- updateAppCustomObject({ metaobjectId, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomObjectParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectByIdSchema>;
1077
+ updateAppCustomObjectBySlug({ definitionSlug, slug, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomObjectBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectBySlugSchema>;
1019
1078
  /**
1020
- * @param {ContentPlatformApplicationValidator.UpdateAppCustomObjectDefinitionParam} arg
1079
+ * @param {ContentPlatformApplicationValidator.UpdateAppCustomObjectDefinitionBySlugParam} arg
1021
1080
  * - Arg object
1022
1081
  *
1023
1082
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
1024
1083
  * @param {import("../PlatformAPIClient").Options} - Options
1025
- * @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSchema>} -
1026
- * Success response
1027
- * @name updateAppCustomObjectDefinition
1084
+ * @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>}
1085
+ * - Success response
1086
+ *
1087
+ * @name updateAppCustomObjectDefinitionBySlug
1028
1088
  * @summary: Update custom object definition
1029
- * @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/updateAppCustomObjectDefinition/).
1089
+ * @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://docs.fynd.com/partners/commerce/sdk/platform/content/updateAppCustomObjectDefinitionBySlug/).
1090
+ */
1091
+ updateAppCustomObjectDefinitionBySlug({ slug, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomObjectDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>;
1092
+ /**
1093
+ * @param {ContentPlatformApplicationValidator.UpdateApplicationLanguageStatusParam} arg
1094
+ * - Arg object
1095
+ *
1096
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
1097
+ * @param {import("../PlatformAPIClient").Options} - Options
1098
+ * @returns {Promise<ContentPlatformModel.ApplicationLanguage>} - Success response
1099
+ * @name updateApplicationLanguageStatus
1100
+ * @summary: Set app language
1101
+ * @description: Update language status and settings for the application. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/updateApplicationLanguageStatus/).
1102
+ */
1103
+ updateApplicationLanguageStatus({ locale, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateApplicationLanguageStatusParam, { responseHeaders }?: object): Promise<ContentPlatformModel.ApplicationLanguage>;
1104
+ /**
1105
+ * @param {ContentPlatformApplicationValidator.UpdateApplicationResourceTranslationParam} arg
1106
+ * - Arg object
1107
+ *
1108
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
1109
+ * @param {import("../PlatformAPIClient").Options} - Options
1110
+ * @returns {Promise<ContentPlatformModel.ResourceTranslation>} - Success response
1111
+ * @name updateApplicationResourceTranslation
1112
+ * @summary: Update app translation
1113
+ * @description: Update existing translations for application resources. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/updateApplicationResourceTranslation/).
1030
1114
  */
1031
- updateAppCustomObjectDefinition({ definitionId, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSchema>;
1115
+ updateApplicationResourceTranslation({ id, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateApplicationResourceTranslationParam, { responseHeaders }?: object): Promise<ContentPlatformModel.ResourceTranslation>;
1032
1116
  /**
1033
1117
  * @param {ContentPlatformApplicationValidator.UpdateBlogParam} arg - Arg object
1034
1118
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -1036,7 +1120,7 @@ declare class Content {
1036
1120
  * @returns {Promise<ContentPlatformModel.BlogSchema>} - Success response
1037
1121
  * @name updateBlog
1038
1122
  * @summary: Update a blog
1039
- * @description: Modify the content and settings of a specific blog. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateBlog/).
1123
+ * @description: Modify the content and settings of a specific blog. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/updateBlog/).
1040
1124
  */
1041
1125
  updateBlog({ id, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateBlogParam, { responseHeaders }?: object): Promise<ContentPlatformModel.BlogSchema>;
1042
1126
  /**
@@ -1046,7 +1130,7 @@ declare class Content {
1046
1130
  * @returns {Promise<ContentPlatformModel.CreateFaqResponseSchema>} - Success response
1047
1131
  * @name updateFaq
1048
1132
  * @summary: Update FAQ
1049
- * @description: Modify the content and settings of a specific FAQ. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateFaq/).
1133
+ * @description: Modify the content and settings of a specific FAQ. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/updateFaq/).
1050
1134
  */
1051
1135
  updateFaq({ categoryId, faqId, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateFaqParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateFaqResponseSchema>;
1052
1136
  /**
@@ -1058,21 +1142,9 @@ declare class Content {
1058
1142
  * @returns {Promise<ContentPlatformModel.CreateFaqCategorySchema>} - Success response
1059
1143
  * @name updateFaqCategory
1060
1144
  * @summary: Update FAQ category
1061
- * @description: Modify the content and settings of a specific FAQ category. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateFaqCategory/).
1145
+ * @description: Modify the content and settings of a specific FAQ category. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/updateFaqCategory/).
1062
1146
  */
1063
1147
  updateFaqCategory({ id, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateFaqCategoryParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateFaqCategorySchema>;
1064
- /**
1065
- * @param {ContentPlatformApplicationValidator.UpdateInjectableTagParam} arg
1066
- * - Arg object
1067
- *
1068
- * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
1069
- * @param {import("../PlatformAPIClient").Options} - Options
1070
- * @returns {Promise<ContentPlatformModel.TagsSchema>} - Success response
1071
- * @name updateInjectableTag
1072
- * @summary: Update HTML tag
1073
- * @description: Modify settings for an injectable tag. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateInjectableTag/).
1074
- */
1075
- updateInjectableTag({ body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateInjectableTagParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TagsSchema>;
1076
1148
  /**
1077
1149
  * @param {ContentPlatformApplicationValidator.UpdateLandingPageParam} arg
1078
1150
  * - Arg object
@@ -1082,7 +1154,7 @@ declare class Content {
1082
1154
  * @returns {Promise<ContentPlatformModel.LandingPageSchema>} - Success response
1083
1155
  * @name updateLandingPage
1084
1156
  * @summary: Update landing page
1085
- * @description: Modify the content and settings of a specific landing page. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateLandingPage/).
1157
+ * @description: Modify the content and settings of a specific landing page. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/updateLandingPage/).
1086
1158
  */
1087
1159
  updateLandingPage({ id, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateLandingPageParam, { responseHeaders }?: object): Promise<ContentPlatformModel.LandingPageSchema>;
1088
1160
  /**
@@ -1094,7 +1166,7 @@ declare class Content {
1094
1166
  * @returns {Promise<ContentPlatformModel.ApplicationLegal>} - Success response
1095
1167
  * @name updateLegalInformation
1096
1168
  * @summary: Update Legal Pages
1097
- * @description: Modify legal information and terms. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateLegalInformation/).
1169
+ * @description: Modify legal information and terms. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/updateLegalInformation/).
1098
1170
  */
1099
1171
  updateLegalInformation({ body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateLegalInformationParam, { responseHeaders }?: object): Promise<ContentPlatformModel.ApplicationLegal>;
1100
1172
  /**
@@ -1104,7 +1176,7 @@ declare class Content {
1104
1176
  * @returns {Promise<ContentPlatformModel.NavigationSchema>} - Success response
1105
1177
  * @name updateNavigation
1106
1178
  * @summary: Update navigation
1107
- * @description: Modify the content and settings of a specific navigation element. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateNavigation/).
1179
+ * @description: Modify the content and settings of a specific navigation element. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/updateNavigation/).
1108
1180
  */
1109
1181
  updateNavigation({ id, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateNavigationParam, { responseHeaders }?: object): Promise<ContentPlatformModel.NavigationSchema>;
1110
1182
  /**
@@ -1114,7 +1186,7 @@ declare class Content {
1114
1186
  * @returns {Promise<ContentPlatformModel.PageSchema>} - Success response
1115
1187
  * @name updatePage
1116
1188
  * @summary: Update page
1117
- * @description: Modify and update the content of a page. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updatePage/).
1189
+ * @description: Modify and update the content of a page. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/updatePage/).
1118
1190
  */
1119
1191
  updatePage({ id, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdatePageParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PageSchema>;
1120
1192
  /**
@@ -1126,7 +1198,7 @@ declare class Content {
1126
1198
  * @returns {Promise<ContentPlatformModel.PageSchema>} - Success response
1127
1199
  * @name updatePagePreview
1128
1200
  * @summary: Update page preview
1129
- * @description: Modify the content and settings of a specific page preview. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updatePagePreview/).
1201
+ * @description: Modify the content and settings of a specific page preview. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/updatePagePreview/).
1130
1202
  */
1131
1203
  updatePagePreview({ slug, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdatePagePreviewParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PageSchema>;
1132
1204
  /**
@@ -1138,7 +1210,7 @@ declare class Content {
1138
1210
  * @returns {Promise<ContentPlatformModel.PathMappingSchema>} - Success response
1139
1211
  * @name updatePathRedirectionRules
1140
1212
  * @summary: Update path redirection rule
1141
- * @description: Modify settings for path redirection rules. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updatePathRedirectionRules/).
1213
+ * @description: Modify settings for path redirection rules. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/updatePathRedirectionRules/).
1142
1214
  */
1143
1215
  updatePathRedirectionRules({ pathId, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdatePathRedirectionRulesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PathMappingSchema>;
1144
1216
  /**
@@ -1150,19 +1222,9 @@ declare class Content {
1150
1222
  * @returns {Promise<ContentPlatformModel.SeoSchema>} - Success response
1151
1223
  * @name updateSEOConfiguration
1152
1224
  * @summary: Update sales channel SEO information
1153
- * @description: Modify configuration settings for SEO. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateSEOConfiguration/).
1225
+ * @description: Modify configuration settings for SEO. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/updateSEOConfiguration/).
1154
1226
  */
1155
1227
  updateSEOConfiguration({ body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateSEOConfigurationParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SeoSchema>;
1156
- /**
1157
- * @param {ContentPlatformApplicationValidator.UpdateSlideshowParam} arg - Arg object
1158
- * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
1159
- * @param {import("../PlatformAPIClient").Options} - Options
1160
- * @returns {Promise<ContentPlatformModel.SlideshowSchema>} - Success response
1161
- * @name updateSlideshow
1162
- * @summary: Update a slideshow
1163
- * @description: Use this API to Update Slideshow - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateSlideshow/).
1164
- */
1165
- updateSlideshow({ id, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateSlideshowParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SlideshowSchema>;
1166
1228
  /**
1167
1229
  * @param {ContentPlatformApplicationValidator.UpdateSupportInformationParam} arg
1168
1230
  * - Arg object
@@ -1172,10 +1234,34 @@ declare class Content {
1172
1234
  * @returns {Promise<ContentPlatformModel.Support>} - Success response
1173
1235
  * @name updateSupportInformation
1174
1236
  * @summary: Update Customer Support Information
1175
- * @description: Modify information related to customer support. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateSupportInformation/).
1237
+ * @description: Modify information related to customer support. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/updateSupportInformation/).
1176
1238
  */
1177
1239
  updateSupportInformation({ body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateSupportInformationParam, { responseHeaders }?: object): Promise<ContentPlatformModel.Support>;
1240
+ /**
1241
+ * @param {ContentPlatformApplicationValidator.UpdateTranslateUILabelsParam} arg
1242
+ * - Arg object
1243
+ *
1244
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
1245
+ * @param {import("../PlatformAPIClient").Options} - Options
1246
+ * @returns {Promise<ContentPlatformModel.TranslateUiLabels>} - Success response
1247
+ * @name updateTranslateUILabels
1248
+ * @summary: Update Resource Detail
1249
+ * @description: Modifies existing Translate Ui Labels properties including locale, type, and associated configurations. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/updateTranslateUILabels/).
1250
+ */
1251
+ updateTranslateUILabels({ id, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateTranslateUILabelsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TranslateUiLabels>;
1252
+ /**
1253
+ * @param {ContentPlatformApplicationValidator.UpsertApplicationResourceTranslationInBulkParam} arg
1254
+ * - Arg object
1255
+ *
1256
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
1257
+ * @param {import("../PlatformAPIClient").Options} - Options
1258
+ * @returns {Promise<ContentPlatformModel.ResourceTranslationBulkUpsert>} -
1259
+ * Success response
1260
+ * @name upsertApplicationResourceTranslationInBulk
1261
+ * @summary: Bulk update translations
1262
+ * @description: Create or update multiple translations in a single request. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/content/upsertApplicationResourceTranslationInBulk/).
1263
+ */
1264
+ upsertApplicationResourceTranslationInBulk({ body, requestHeaders }?: ContentPlatformApplicationValidator.UpsertApplicationResourceTranslationInBulkParam, { responseHeaders }?: object): Promise<ContentPlatformModel.ResourceTranslationBulkUpsert>;
1178
1265
  }
1179
1266
  import ContentPlatformApplicationValidator = require("./ContentPlatformApplicationValidator");
1180
1267
  import ContentPlatformModel = require("./ContentPlatformModel");
1181
- import Paginator = require("../../common/Paginator");