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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (298) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/sdk/application/ApplicationClient.d.ts +0 -2
  4. package/sdk/application/ApplicationClient.js +0 -2
  5. package/sdk/application/Cart/CartApplicationClient.d.ts +113 -93
  6. package/sdk/application/Cart/CartApplicationClient.js +270 -139
  7. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +110 -110
  8. package/sdk/application/Catalog/CatalogApplicationClient.js +122 -138
  9. package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
  10. package/sdk/application/Common/CommonApplicationClient.js +3 -3
  11. package/sdk/application/Communication/CommunicationApplicationClient.d.ts +43 -3
  12. package/sdk/application/Communication/CommunicationApplicationClient.js +190 -3
  13. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +71 -36
  14. package/sdk/application/Configuration/ConfigurationApplicationClient.js +103 -29
  15. package/sdk/application/Content/ContentApplicationClient.d.ts +51 -21
  16. package/sdk/application/Content/ContentApplicationClient.js +197 -36
  17. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +6 -6
  18. package/sdk/application/FileStorage/FileStorageApplicationClient.js +3 -3
  19. package/sdk/application/Lead/LeadApplicationClient.d.ts +3 -3
  20. package/sdk/application/Lead/LeadApplicationClient.js +3 -3
  21. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +79 -64
  22. package/sdk/application/Logistic/LogisticApplicationClient.js +246 -264
  23. package/sdk/application/Order/OrderApplicationClient.d.ts +44 -24
  24. package/sdk/application/Order/OrderApplicationClient.js +140 -21
  25. package/sdk/application/Payment/PaymentApplicationClient.d.ts +211 -111
  26. package/sdk/application/Payment/PaymentApplicationClient.js +610 -109
  27. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +13 -13
  28. package/sdk/application/Rewards/RewardsApplicationClient.js +7 -7
  29. package/sdk/application/Share/ShareApplicationClient.d.ts +7 -7
  30. package/sdk/application/Share/ShareApplicationClient.js +14 -14
  31. package/sdk/application/Theme/ThemeApplicationClient.d.ts +23 -3
  32. package/sdk/application/Theme/ThemeApplicationClient.js +103 -5
  33. package/sdk/application/User/UserApplicationClient.d.ts +13 -23
  34. package/sdk/application/User/UserApplicationClient.js +9 -57
  35. package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
  36. package/sdk/application/Webhook/WebhookApplicationClient.js +3 -3
  37. package/sdk/partner/Authorization/AuthorizationPartnerClient.d.ts +66 -0
  38. package/sdk/partner/Authorization/AuthorizationPartnerClient.js +431 -0
  39. package/sdk/partner/Authorization/AuthorizationPartnerModel.d.ts +231 -0
  40. package/sdk/partner/Authorization/AuthorizationPartnerModel.js +152 -0
  41. package/sdk/partner/Authorization/AuthorizationPartnerValidator.d.ts +8 -0
  42. package/sdk/partner/Authorization/AuthorizationPartnerValidator.js +39 -0
  43. package/sdk/partner/Catalog/CatalogPartnerClient.d.ts +26 -0
  44. package/sdk/partner/Catalog/CatalogPartnerClient.js +173 -0
  45. package/sdk/partner/Catalog/CatalogPartnerModel.d.ts +238 -0
  46. package/sdk/partner/Catalog/CatalogPartnerModel.js +248 -0
  47. package/sdk/partner/Catalog/CatalogPartnerValidator.d.ts +5 -0
  48. package/sdk/partner/Catalog/CatalogPartnerValidator.js +19 -0
  49. package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +12 -22
  50. package/sdk/partner/FileStorage/FileStoragePartnerClient.js +12 -87
  51. package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +33 -99
  52. package/sdk/partner/FileStorage/FileStoragePartnerModel.js +25 -84
  53. package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +0 -1
  54. package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +4 -10
  55. package/sdk/partner/Lead/LeadPartnerClient.d.ts +5 -5
  56. package/sdk/partner/Lead/LeadPartnerClient.js +4 -4
  57. package/sdk/partner/Lead/LeadPartnerModel.d.ts +100 -49
  58. package/sdk/partner/Lead/LeadPartnerModel.js +100 -74
  59. package/sdk/partner/Lead/LeadPartnerValidator.js +1 -1
  60. package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +33 -160
  61. package/sdk/partner/Logistics/LogisticsPartnerClient.js +66 -1180
  62. package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +288 -1685
  63. package/sdk/partner/Logistics/LogisticsPartnerModel.js +226 -824
  64. package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +1 -13
  65. package/sdk/partner/Logistics/LogisticsPartnerValidator.js +14 -141
  66. package/sdk/partner/PartnerClient.d.ts +6 -0
  67. package/sdk/partner/PartnerClient.js +9 -0
  68. package/sdk/partner/Payment/PaymentPartnerClient.d.ts +116 -0
  69. package/sdk/partner/Payment/PaymentPartnerClient.js +857 -0
  70. package/sdk/partner/Payment/PaymentPartnerModel.d.ts +388 -0
  71. package/sdk/partner/Payment/PaymentPartnerModel.js +442 -0
  72. package/sdk/partner/Payment/PaymentPartnerValidator.d.ts +14 -0
  73. package/sdk/partner/Payment/PaymentPartnerValidator.js +74 -0
  74. package/sdk/partner/Theme/ThemePartnerClient.d.ts +63 -21
  75. package/sdk/partner/Theme/ThemePartnerClient.js +396 -71
  76. package/sdk/partner/Theme/ThemePartnerModel.d.ts +104 -72
  77. package/sdk/partner/Theme/ThemePartnerModel.js +101 -75
  78. package/sdk/partner/Theme/ThemePartnerValidator.d.ts +5 -1
  79. package/sdk/partner/Theme/ThemePartnerValidator.js +42 -12
  80. package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +18 -18
  81. package/sdk/partner/Webhook/WebhookPartnerClient.js +18 -18
  82. package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +191 -670
  83. package/sdk/partner/Webhook/WebhookPartnerModel.js +159 -268
  84. package/sdk/partner/Webhook/WebhookPartnerValidator.js +3 -3
  85. package/sdk/partner/index.d.ts +3 -0
  86. package/sdk/partner/index.js +6 -0
  87. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +1 -4
  88. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
  89. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +5 -0
  90. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +3 -1
  91. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +32 -2
  92. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +243 -3
  93. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +145 -49
  94. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +171 -20
  95. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +39 -1
  96. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +35 -0
  97. package/sdk/platform/Billing/BillingPlatformClient.d.ts +406 -15
  98. package/sdk/platform/Billing/BillingPlatformClient.js +3214 -76
  99. package/sdk/platform/Billing/BillingPlatformModel.d.ts +3798 -459
  100. package/sdk/platform/Billing/BillingPlatformModel.js +2577 -342
  101. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +465 -24
  102. package/sdk/platform/Billing/BillingPlatformValidator.js +490 -14
  103. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +284 -205
  104. package/sdk/platform/Cart/CartPlatformApplicationClient.js +671 -553
  105. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +165 -165
  106. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +108 -132
  107. package/sdk/platform/Cart/CartPlatformModel.d.ts +3136 -4788
  108. package/sdk/platform/Cart/CartPlatformModel.js +2850 -2031
  109. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +1015 -419
  110. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +6450 -2010
  111. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +1121 -230
  112. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +919 -127
  113. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +372 -574
  114. package/sdk/platform/Catalog/CatalogPlatformClient.js +1238 -1317
  115. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +8351 -9825
  116. package/sdk/platform/Catalog/CatalogPlatformModel.js +9662 -6881
  117. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +288 -235
  118. package/sdk/platform/Catalog/CatalogPlatformValidator.js +241 -183
  119. package/sdk/platform/Common/CommonPlatformClient.d.ts +5 -6
  120. package/sdk/platform/Common/CommonPlatformClient.js +5 -6
  121. package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
  122. package/sdk/platform/Common/CommonPlatformModel.js +6 -6
  123. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +374 -234
  124. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +875 -583
  125. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +170 -139
  126. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +145 -126
  127. package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +56 -3
  128. package/sdk/platform/Communication/CommunicationPlatformClient.js +307 -4
  129. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +424 -252
  130. package/sdk/platform/Communication/CommunicationPlatformModel.js +540 -320
  131. package/sdk/platform/Communication/CommunicationPlatformValidator.d.ts +62 -3
  132. package/sdk/platform/Communication/CommunicationPlatformValidator.js +48 -2
  133. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +68 -99
  134. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +84 -140
  135. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +238 -256
  136. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +222 -244
  137. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +20 -20
  138. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +20 -20
  139. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +333 -118
  140. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +1470 -409
  141. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +158 -55
  142. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +163 -41
  143. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +151 -61
  144. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +595 -101
  145. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +1199 -462
  146. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +1008 -321
  147. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +80 -34
  148. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +79 -24
  149. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +253 -140
  150. package/sdk/platform/Content/ContentPlatformApplicationClient.js +1087 -458
  151. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +221 -178
  152. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +220 -157
  153. package/sdk/platform/Content/ContentPlatformClient.d.ts +124 -123
  154. package/sdk/platform/Content/ContentPlatformClient.js +459 -379
  155. package/sdk/platform/Content/ContentPlatformModel.d.ts +833 -1307
  156. package/sdk/platform/Content/ContentPlatformModel.js +893 -582
  157. package/sdk/platform/Content/ContentPlatformValidator.d.ts +140 -150
  158. package/sdk/platform/Content/ContentPlatformValidator.js +131 -135
  159. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +60 -36
  160. package/sdk/platform/Discount/DiscountPlatformClient.js +85 -36
  161. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +46 -47
  162. package/sdk/platform/Discount/DiscountPlatformModel.js +42 -46
  163. package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
  164. package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
  165. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +18 -15
  166. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +24 -22
  167. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +4 -4
  168. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +4 -4
  169. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +8 -8
  170. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +8 -8
  171. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +75 -86
  172. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +60 -74
  173. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
  174. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
  175. package/sdk/platform/Finance/FinancePlatformClient.d.ts +320 -0
  176. package/sdk/platform/Finance/FinancePlatformClient.js +2333 -0
  177. package/sdk/platform/Finance/FinancePlatformModel.d.ts +2895 -0
  178. package/sdk/platform/Finance/FinancePlatformModel.js +2150 -0
  179. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +284 -0
  180. package/sdk/platform/Finance/FinancePlatformValidator.js +354 -0
  181. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +17 -17
  182. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +33 -33
  183. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +19 -19
  184. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +14 -14
  185. package/sdk/platform/Lead/LeadPlatformClient.d.ts +4 -24
  186. package/sdk/platform/Lead/LeadPlatformClient.js +4 -160
  187. package/sdk/platform/Lead/LeadPlatformModel.d.ts +142 -57
  188. package/sdk/platform/Lead/LeadPlatformModel.js +162 -79
  189. package/sdk/platform/Lead/LeadPlatformValidator.d.ts +3 -29
  190. package/sdk/platform/Lead/LeadPlatformValidator.js +2 -28
  191. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +94 -25
  192. package/sdk/platform/Order/OrderPlatformApplicationClient.js +600 -57
  193. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +115 -115
  194. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +120 -43
  195. package/sdk/platform/Order/OrderPlatformClient.d.ts +502 -293
  196. package/sdk/platform/Order/OrderPlatformClient.js +1466 -913
  197. package/sdk/platform/Order/OrderPlatformModel.d.ts +4103 -9109
  198. package/sdk/platform/Order/OrderPlatformModel.js +3198 -4245
  199. package/sdk/platform/Order/OrderPlatformValidator.d.ts +445 -612
  200. package/sdk/platform/Order/OrderPlatformValidator.js +316 -326
  201. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -6
  202. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +7 -9
  203. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
  204. package/sdk/platform/Partner/PartnerPlatformModel.js +7 -7
  205. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +382 -135
  206. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +2453 -935
  207. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +306 -93
  208. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +305 -70
  209. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +66 -56
  210. package/sdk/platform/Payment/PaymentPlatformClient.js +269 -124
  211. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +3525 -1313
  212. package/sdk/platform/Payment/PaymentPlatformModel.js +3813 -1511
  213. package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +64 -35
  214. package/sdk/platform/Payment/PaymentPlatformValidator.js +60 -34
  215. package/sdk/platform/PlatformClient.d.ts +2 -0
  216. package/sdk/platform/PlatformClient.js +4 -0
  217. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
  218. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
  219. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
  220. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
  221. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +14 -9
  222. package/sdk/platform/Rewards/RewardsPlatformModel.js +10 -8
  223. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +344 -56
  224. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +2180 -302
  225. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +380 -54
  226. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +336 -37
  227. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +127 -213
  228. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +538 -1306
  229. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +3429 -2979
  230. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +3642 -1785
  231. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +218 -392
  232. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +151 -290
  233. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +4 -16
  234. package/sdk/platform/Share/SharePlatformApplicationClient.js +8 -86
  235. package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +6 -23
  236. package/sdk/platform/Share/SharePlatformApplicationValidator.js +3 -16
  237. package/sdk/platform/Share/SharePlatformModel.d.ts +6 -50
  238. package/sdk/platform/Share/SharePlatformModel.js +3 -43
  239. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +26 -4
  240. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +157 -10
  241. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +21 -10
  242. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +23 -6
  243. package/sdk/platform/Theme/ThemePlatformClient.d.ts +18 -8
  244. package/sdk/platform/Theme/ThemePlatformClient.js +85 -8
  245. package/sdk/platform/Theme/ThemePlatformModel.d.ts +425 -17
  246. package/sdk/platform/Theme/ThemePlatformModel.js +329 -23
  247. package/sdk/platform/Theme/ThemePlatformValidator.d.ts +7 -3
  248. package/sdk/platform/Theme/ThemePlatformValidator.js +9 -2
  249. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +18 -71
  250. package/sdk/platform/User/UserPlatformApplicationClient.js +27 -412
  251. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +10 -114
  252. package/sdk/platform/User/UserPlatformApplicationValidator.js +7 -80
  253. package/sdk/platform/User/UserPlatformModel.d.ts +216 -264
  254. package/sdk/platform/User/UserPlatformModel.js +209 -216
  255. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +78 -25
  256. package/sdk/platform/Webhook/WebhookPlatformClient.js +470 -75
  257. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +428 -810
  258. package/sdk/platform/Webhook/WebhookPlatformModel.js +395 -444
  259. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +55 -10
  260. package/sdk/platform/Webhook/WebhookPlatformValidator.js +72 -12
  261. package/sdk/platform/index.d.ts +1 -0
  262. package/sdk/platform/index.js +2 -0
  263. package/sdk/public/Billing/BillingPublicClient.d.ts +56 -0
  264. package/sdk/public/Billing/BillingPublicClient.js +397 -0
  265. package/sdk/public/Billing/BillingPublicModel.d.ts +919 -0
  266. package/sdk/public/Billing/BillingPublicModel.js +560 -0
  267. package/sdk/public/Billing/BillingPublicValidator.d.ts +43 -0
  268. package/sdk/public/Billing/BillingPublicValidator.js +50 -0
  269. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +14 -4
  270. package/sdk/public/Configuration/ConfigurationPublicClient.js +97 -9
  271. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +102 -40
  272. package/sdk/public/Configuration/ConfigurationPublicModel.js +111 -29
  273. package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +11 -1
  274. package/sdk/public/Configuration/ConfigurationPublicValidator.js +12 -0
  275. package/sdk/public/Content/ContentPublicClient.d.ts +22 -0
  276. package/sdk/public/Content/ContentPublicClient.js +183 -0
  277. package/sdk/public/Content/ContentPublicModel.d.ts +38 -1
  278. package/sdk/public/Content/ContentPublicModel.js +47 -1
  279. package/sdk/public/Content/ContentPublicValidator.d.ts +17 -1
  280. package/sdk/public/Content/ContentPublicValidator.js +19 -0
  281. package/sdk/public/PublicClient.d.ts +2 -2
  282. package/sdk/public/PublicClient.js +2 -2
  283. package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
  284. package/sdk/public/Webhook/WebhookPublicClient.js +8 -8
  285. package/sdk/public/Webhook/WebhookPublicModel.d.ts +67 -215
  286. package/sdk/public/Webhook/WebhookPublicModel.js +61 -66
  287. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
  288. package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
  289. package/sdk/public/index.d.ts +1 -1
  290. package/sdk/public/index.js +1 -1
  291. package/sdk/application/Finance/FinanceApplicationClient.d.ts +0 -29
  292. package/sdk/application/Finance/FinanceApplicationClient.js +0 -126
  293. package/sdk/public/Catalog/CatalogPublicClient.d.ts +0 -22
  294. package/sdk/public/Catalog/CatalogPublicClient.js +0 -138
  295. package/sdk/public/Catalog/CatalogPublicModel.d.ts +0 -155
  296. package/sdk/public/Catalog/CatalogPublicModel.js +0 -116
  297. package/sdk/public/Catalog/CatalogPublicValidator.d.ts +0 -55
  298. package/sdk/public/Catalog/CatalogPublicValidator.js +0 -35
@@ -21,14 +21,18 @@ export = ContentPlatformApplicationValidator;
21
21
  * @property {ContentPlatformModel.AdminAnnouncementSchema} body
22
22
  */
23
23
  /**
24
- * @typedef CreateAppCustomFieldDefinitionParam
24
+ * @typedef CreateAppCustomFieldByResourceIdParam
25
25
  * @property {string} resource
26
+ * @property {string} resourceId
27
+ * @property {ContentPlatformModel.CustomFieldRequestSchema} body
28
+ */
29
+ /**
30
+ * @typedef CreateAppCustomFieldDefinitionParam
26
31
  * @property {ContentPlatformModel.CustomFieldDefinitionRequestSchema} body
27
32
  */
28
33
  /**
29
- * @typedef CreateAppCustomObjectBySlugParam
30
- * @property {string} definitionSlug
31
- * @property {ContentPlatformModel.CustomObjectRequestSchemaWithoutId} body
34
+ * @typedef CreateAppCustomObjectParam
35
+ * @property {ContentPlatformModel.CustomObjectRequestSchema} body
32
36
  */
33
37
  /**
34
38
  * @typedef CreateAppCustomObjectDefinitionParam
@@ -36,46 +40,58 @@ export = ContentPlatformApplicationValidator;
36
40
  */
37
41
  /**
38
42
  * @typedef CreateBlogParam
39
- * @property {ContentPlatformModel.BlogPayload} body
43
+ * @property {ContentPlatformModel.BlogRequest} body
40
44
  */
41
45
  /**
42
46
  * @typedef CreateFaqCategoryParam
43
47
  * @property {ContentPlatformModel.CreateFaqCategoryRequestSchema} body
44
48
  */
49
+ /**
50
+ * @typedef CreateInjectableTagParam
51
+ * @property {ContentPlatformModel.CreateTagRequestSchema} body
52
+ */
45
53
  /**
46
54
  * @typedef CreateLandingPageParam
47
55
  * @property {ContentPlatformModel.LandingPageSchema} body
48
56
  */
49
57
  /**
50
58
  * @typedef CreateNavigationParam
51
- * @property {ContentPlatformModel.NavigationPayload} body
59
+ * @property {ContentPlatformModel.NavigationRequest} body
52
60
  */
53
61
  /**
54
62
  * @typedef CreatePageParam
55
- * @property {ContentPlatformModel.PagePayload} body
63
+ * @property {ContentPlatformModel.PageRequest} body
64
+ */
65
+ /**
66
+ * @typedef CreatePagePreviewParam
67
+ * @property {ContentPlatformModel.PageRequest} body
56
68
  */
57
69
  /**
58
70
  * @typedef CreateSEOMarkupSchemaParam
59
71
  * @property {ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody} body
60
72
  */
73
+ /** @typedef DeleteAllInjectableTagsParam */
61
74
  /**
62
75
  * @typedef DeleteAnnouncementParam
63
76
  * @property {string} announcementId - ID allotted to the announcement.
64
77
  */
65
78
  /**
66
- * @typedef DeleteAppCustomFieldDefinitionBySlugParam
67
- * @property {string} slug
79
+ * @typedef DeleteAppCustomFieldDefinitionParam
80
+ * @property {string} id
81
+ */
82
+ /**
83
+ * @typedef DeleteAppCustomFieldsByResourceIdParam
68
84
  * @property {string} resource
69
- * @property {string} namespace
85
+ * @property {string} resourceId
86
+ * @property {string} ids
70
87
  */
71
88
  /**
72
- * @typedef DeleteAppCustomObjectBySlugParam
73
- * @property {string} definitionSlug
74
- * @property {string} slug
89
+ * @typedef DeleteAppCustomObjectParam
90
+ * @property {string} id
75
91
  */
76
92
  /**
77
- * @typedef DeleteAppCustomObjectDefinitionBySlugParam
78
- * @property {string} slug
93
+ * @typedef DeleteAppCustomObjectDefinitionParam
94
+ * @property {string} id
79
95
  */
80
96
  /**
81
97
  * @typedef DeleteBlogParam
@@ -112,7 +128,7 @@ export = ContentPlatformApplicationValidator;
112
128
  */
113
129
  /**
114
130
  * @typedef DeleteSEOMarkupSchemaParam
115
- * @property {string} id - Alphanumeric ID allotted to a SEO Markup Schema
131
+ * @property {string} schemaId - Alphanumeric ID allotted to a SEO Markup Schema
116
132
  * Template created within a business.
117
133
  */
118
134
  /**
@@ -127,19 +143,18 @@ export = ContentPlatformApplicationValidator;
127
143
  */
128
144
  /**
129
145
  * @typedef EditSEOMarkupSchemaParam
130
- * @property {string} id - Alphanumeric ID allotted to a SEO Markup Schema
146
+ * @property {string} schemaId - Alphanumeric ID allotted to a SEO Markup Schema
131
147
  * Template created within a business.
132
148
  * @property {ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody} body
133
149
  */
134
150
  /**
135
- * @typedef ExportAppCustomObjectEntriesBySlugParam
136
- * @property {string} slug
151
+ * @typedef ExportAppCustomObjectEntriesParam
152
+ * @property {string} definitionId
137
153
  */
138
154
  /**
139
155
  * @typedef GenerateSEOTitleParam
140
- * @property {ContentPlatformModel.GenerationEntityType} type - String
141
- * representing the type of SEO content to be generated. Possible values are:
142
- * title, description
156
+ * @property {string} type - String representing the type of SEO content to be
157
+ * generated. Possible values are: title, description
143
158
  * @property {ContentPlatformModel.GenerateSEOContent} body
144
159
  */
145
160
  /**
@@ -154,20 +169,8 @@ export = ContentPlatformApplicationValidator;
154
169
  * Default value is 10.
155
170
  */
156
171
  /**
157
- * @typedef GetAppCustomFieldDefinitionByResourceParam
158
- * @property {string} pageNo
159
- * @property {string} pageSize
160
- * @property {string} resource
161
- * @property {string} [types]
162
- * @property {string} [search]
163
- * @property {string} [slugs]
164
- * @property {string} [namespaces]
165
- */
166
- /**
167
- * @typedef GetAppCustomFieldDefinitionBySlugParam
168
- * @property {string} slug
169
- * @property {string} resource
170
- * @property {string} namespace
172
+ * @typedef GetAppCustomFieldDefinitionParam
173
+ * @property {string} id
171
174
  */
172
175
  /**
173
176
  * @typedef GetAppCustomFieldDefinitionsParam
@@ -177,22 +180,30 @@ export = ContentPlatformApplicationValidator;
177
180
  * @property {string} [types]
178
181
  * @property {string} [search]
179
182
  * @property {string} [slugs]
180
- * @property {string} [namespaces]
183
+ */
184
+ /**
185
+ * @typedef GetAppCustomFieldJobsParam
186
+ * @property {string} page
187
+ * @property {string} pageSize
188
+ * @property {string} actionType
181
189
  */
182
190
  /** @typedef GetAppCustomFieldTypesParam */
183
191
  /**
184
- * @typedef GetAppCustomFieldsByResourceSlugParam
192
+ * @typedef GetAppCustomFieldsParam
193
+ * @property {string} resource
194
+ */
195
+ /**
196
+ * @typedef GetAppCustomFieldsByResourceIdParam
185
197
  * @property {string} resource
186
- * @property {string} resourceSlug
198
+ * @property {string} resourceId
187
199
  */
188
200
  /**
189
- * @typedef GetAppCustomObjectBySlugParam
190
- * @property {string} definitionSlug
191
- * @property {string} slug
201
+ * @typedef GetAppCustomObjectParam
202
+ * @property {string} id
192
203
  */
193
204
  /**
194
- * @typedef GetAppCustomObjectDefinitionBySlugParam
195
- * @property {string} slug
205
+ * @typedef GetAppCustomObjectDefinitionParam
206
+ * @property {string} id
196
207
  */
197
208
  /**
198
209
  * @typedef GetAppCustomObjectDefinitionsParam
@@ -201,10 +212,10 @@ export = ContentPlatformApplicationValidator;
201
212
  * @property {string} [search]
202
213
  */
203
214
  /**
204
- * @typedef GetAppCustomObjectsBySlugParam
215
+ * @typedef GetAppCustomObjectsParam
216
+ * @property {string} [definitionId]
205
217
  * @property {string} pageNo
206
218
  * @property {string} pageSize
207
- * @property {string} definitionSlug
208
219
  */
209
220
  /**
210
221
  * @typedef GetAppJobsParam
@@ -230,6 +241,16 @@ export = ContentPlatformApplicationValidator;
230
241
  * @property {string} [title] - Blogs retrieve based on the title passed.
231
242
  * @property {string} [status] - Blogs retrieve based on the status passed.
232
243
  */
244
+ /**
245
+ * @typedef GetComponentByIdParam
246
+ * @property {string} slug - A short, human-readable, URL-friendly identifier of
247
+ * a blog page. You can get slug value of a blog from `getBlogs` API.
248
+ */
249
+ /**
250
+ * @typedef GetDataLoaderApiSpecsParam
251
+ * @property {string} dataLoader - Alphanumeric ID allotted to an application
252
+ * created within a business account.
253
+ */
233
254
  /** @typedef GetDataLoadersParam */
234
255
  /**
235
256
  * @typedef GetDataLoadersByServiceParam
@@ -260,10 +281,7 @@ export = ContentPlatformApplicationValidator;
260
281
  * Slug is a short, human-readable, URL-friendly identifier of an object. You
261
282
  * can get slug value of an FAQ category from `getFaqCategories` API.
262
283
  */
263
- /**
264
- * @typedef GetInjectableTagsParam
265
- * @property {boolean} [all] - Get all tags irrespective of the creator of tags
266
- */
284
+ /** @typedef GetInjectableTagsParam */
267
285
  /**
268
286
  * @typedef GetLandingPagesParam
269
287
  * @property {number} [pageNo] - The page number to navigate through the given
@@ -316,7 +334,7 @@ export = ContentPlatformApplicationValidator;
316
334
  /** @typedef GetSEOConfigurationParam */
317
335
  /**
318
336
  * @typedef GetSEOMarkupSchemaParam
319
- * @property {string} id - Alphanumeric ID allotted to a SEO Markup Schema
337
+ * @property {string} schemaId - Alphanumeric ID allotted to a SEO Markup Schema
320
338
  * Template created within a business.
321
339
  */
322
340
  /**
@@ -330,8 +348,8 @@ export = ContentPlatformApplicationValidator;
330
348
  */
331
349
  /** @typedef GetSupportInformationParam */
332
350
  /**
333
- * @typedef ImportAppCustomObjectEntriesBySlugParam
334
- * @property {string} slug
351
+ * @typedef ImportAppCustomObjectEntriesParam
352
+ * @property {string} definitionId
335
353
  * @property {ContentPlatformModel.CustomObjectBulkSchema} body
336
354
  */
337
355
  /**
@@ -344,8 +362,8 @@ export = ContentPlatformApplicationValidator;
344
362
  * @property {string} operationId - Name of operation id of the service.
345
363
  */
346
364
  /**
347
- * @typedef SampleAppCustomObjectBulkEntryBySlugParam
348
- * @property {string} slug
365
+ * @typedef SampleAppCustomObjectBulkEntryParam
366
+ * @property {string} definitionId
349
367
  */
350
368
  /**
351
369
  * @typedef SelectDataLoaderParam
@@ -362,33 +380,30 @@ export = ContentPlatformApplicationValidator;
362
380
  * @property {ContentPlatformModel.ScheduleSchema} body
363
381
  */
364
382
  /**
365
- * @typedef UpdateAppCustomFieldByResourceSlugParam
383
+ * @typedef UpdateAppCustomFieldByResourceIdParam
366
384
  * @property {string} resource
367
- * @property {string} resourceSlug
385
+ * @property {string} resourceId
368
386
  * @property {ContentPlatformModel.CustomFieldRequestSchema} body
369
387
  */
370
388
  /**
371
- * @typedef UpdateAppCustomFieldDefinitionBySlugParam
372
- * @property {string} slug
373
- * @property {string} resource
374
- * @property {string} namespace
389
+ * @typedef UpdateAppCustomFieldDefinitionParam
390
+ * @property {string} id
375
391
  * @property {ContentPlatformModel.CustomFieldDefinitionRequestSchema} body
376
392
  */
377
393
  /**
378
- * @typedef UpdateAppCustomObjectBySlugParam
379
- * @property {string} definitionSlug
380
- * @property {string} slug
381
- * @property {ContentPlatformModel.CustomObjectRequestSchemaWithoutId} body
394
+ * @typedef UpdateAppCustomObjectParam
395
+ * @property {string} id
396
+ * @property {ContentPlatformModel.CustomObjectRequestSchema} body
382
397
  */
383
398
  /**
384
- * @typedef UpdateAppCustomObjectDefinitionBySlugParam
385
- * @property {string} slug
399
+ * @typedef UpdateAppCustomObjectDefinitionParam
400
+ * @property {string} id
386
401
  * @property {ContentPlatformModel.CustomObjectDefinitionUpdateRequestSchema} body
387
402
  */
388
403
  /**
389
404
  * @typedef UpdateBlogParam
390
405
  * @property {string} id - ID allotted to the blog.
391
- * @property {ContentPlatformModel.BlogPayload} body
406
+ * @property {ContentPlatformModel.BlogRequest} body
392
407
  */
393
408
  /**
394
409
  * @typedef UpdateFaqParam
@@ -417,7 +432,7 @@ export = ContentPlatformApplicationValidator;
417
432
  /**
418
433
  * @typedef UpdateNavigationParam
419
434
  * @property {string} id - ID allotted to the navigation.
420
- * @property {ContentPlatformModel.NavigationPayload} body
435
+ * @property {ContentPlatformModel.NavigationRequest} body
421
436
  */
422
437
  /**
423
438
  * @typedef UpdatePageParam
@@ -428,7 +443,7 @@ export = ContentPlatformApplicationValidator;
428
443
  * @typedef UpdatePagePreviewParam
429
444
  * @property {string} slug - A short, human-readable, URL-friendly identifier of
430
445
  * a page. You can get slug value of a page from `getPages` API.
431
- * @property {ContentPlatformModel.PagePublishPayload} body
446
+ * @property {ContentPlatformModel.PagePublishRequest} body
432
447
  */
433
448
  /**
434
449
  * @typedef UpdatePathRedirectionRulesParam
@@ -454,32 +469,42 @@ declare class ContentPlatformApplicationValidator {
454
469
  static addPathRedirectionRules(): AddPathRedirectionRulesParam;
455
470
  /** @returns {CreateAnnouncementParam} */
456
471
  static createAnnouncement(): CreateAnnouncementParam;
472
+ /** @returns {CreateAppCustomFieldByResourceIdParam} */
473
+ static createAppCustomFieldByResourceId(): CreateAppCustomFieldByResourceIdParam;
457
474
  /** @returns {CreateAppCustomFieldDefinitionParam} */
458
475
  static createAppCustomFieldDefinition(): CreateAppCustomFieldDefinitionParam;
459
- /** @returns {CreateAppCustomObjectBySlugParam} */
460
- static createAppCustomObjectBySlug(): CreateAppCustomObjectBySlugParam;
476
+ /** @returns {CreateAppCustomObjectParam} */
477
+ static createAppCustomObject(): CreateAppCustomObjectParam;
461
478
  /** @returns {CreateAppCustomObjectDefinitionParam} */
462
479
  static createAppCustomObjectDefinition(): CreateAppCustomObjectDefinitionParam;
463
480
  /** @returns {CreateBlogParam} */
464
481
  static createBlog(): CreateBlogParam;
465
482
  /** @returns {CreateFaqCategoryParam} */
466
483
  static createFaqCategory(): CreateFaqCategoryParam;
484
+ /** @returns {CreateInjectableTagParam} */
485
+ static createInjectableTag(): CreateInjectableTagParam;
467
486
  /** @returns {CreateLandingPageParam} */
468
487
  static createLandingPage(): CreateLandingPageParam;
469
488
  /** @returns {CreateNavigationParam} */
470
489
  static createNavigation(): CreateNavigationParam;
471
490
  /** @returns {CreatePageParam} */
472
491
  static createPage(): CreatePageParam;
492
+ /** @returns {CreatePagePreviewParam} */
493
+ static createPagePreview(): CreatePagePreviewParam;
473
494
  /** @returns {CreateSEOMarkupSchemaParam} */
474
495
  static createSEOMarkupSchema(): CreateSEOMarkupSchemaParam;
496
+ /** @returns {DeleteAllInjectableTagsParam} */
497
+ static deleteAllInjectableTags(): any;
475
498
  /** @returns {DeleteAnnouncementParam} */
476
499
  static deleteAnnouncement(): DeleteAnnouncementParam;
477
- /** @returns {DeleteAppCustomFieldDefinitionBySlugParam} */
478
- static deleteAppCustomFieldDefinitionBySlug(): DeleteAppCustomFieldDefinitionBySlugParam;
479
- /** @returns {DeleteAppCustomObjectBySlugParam} */
480
- static deleteAppCustomObjectBySlug(): DeleteAppCustomObjectBySlugParam;
481
- /** @returns {DeleteAppCustomObjectDefinitionBySlugParam} */
482
- static deleteAppCustomObjectDefinitionBySlug(): DeleteAppCustomObjectDefinitionBySlugParam;
500
+ /** @returns {DeleteAppCustomFieldDefinitionParam} */
501
+ static deleteAppCustomFieldDefinition(): DeleteAppCustomFieldDefinitionParam;
502
+ /** @returns {DeleteAppCustomFieldsByResourceIdParam} */
503
+ static deleteAppCustomFieldsByResourceId(): DeleteAppCustomFieldsByResourceIdParam;
504
+ /** @returns {DeleteAppCustomObjectParam} */
505
+ static deleteAppCustomObject(): DeleteAppCustomObjectParam;
506
+ /** @returns {DeleteAppCustomObjectDefinitionParam} */
507
+ static deleteAppCustomObjectDefinition(): DeleteAppCustomObjectDefinitionParam;
483
508
  /** @returns {DeleteBlogParam} */
484
509
  static deleteBlog(): DeleteBlogParam;
485
510
  /** @returns {DeleteDataLoaderParam} */
@@ -504,32 +529,34 @@ declare class ContentPlatformApplicationValidator {
504
529
  static editInjectableTag(): EditInjectableTagParam;
505
530
  /** @returns {EditSEOMarkupSchemaParam} */
506
531
  static editSEOMarkupSchema(): EditSEOMarkupSchemaParam;
507
- /** @returns {ExportAppCustomObjectEntriesBySlugParam} */
508
- static exportAppCustomObjectEntriesBySlug(): ExportAppCustomObjectEntriesBySlugParam;
532
+ /** @returns {ExportAppCustomObjectEntriesParam} */
533
+ static exportAppCustomObjectEntries(): ExportAppCustomObjectEntriesParam;
509
534
  /** @returns {GenerateSEOTitleParam} */
510
535
  static generateSEOTitle(): GenerateSEOTitleParam;
511
536
  /** @returns {GetAnnouncementByIdParam} */
512
537
  static getAnnouncementById(): GetAnnouncementByIdParam;
513
538
  /** @returns {GetAnnouncementsListParam} */
514
539
  static getAnnouncementsList(): GetAnnouncementsListParam;
515
- /** @returns {GetAppCustomFieldDefinitionByResourceParam} */
516
- static getAppCustomFieldDefinitionByResource(): GetAppCustomFieldDefinitionByResourceParam;
517
- /** @returns {GetAppCustomFieldDefinitionBySlugParam} */
518
- static getAppCustomFieldDefinitionBySlug(): GetAppCustomFieldDefinitionBySlugParam;
540
+ /** @returns {GetAppCustomFieldDefinitionParam} */
541
+ static getAppCustomFieldDefinition(): GetAppCustomFieldDefinitionParam;
519
542
  /** @returns {GetAppCustomFieldDefinitionsParam} */
520
543
  static getAppCustomFieldDefinitions(): GetAppCustomFieldDefinitionsParam;
544
+ /** @returns {GetAppCustomFieldJobsParam} */
545
+ static getAppCustomFieldJobs(): GetAppCustomFieldJobsParam;
521
546
  /** @returns {GetAppCustomFieldTypesParam} */
522
547
  static getAppCustomFieldTypes(): any;
523
- /** @returns {GetAppCustomFieldsByResourceSlugParam} */
524
- static getAppCustomFieldsByResourceSlug(): GetAppCustomFieldsByResourceSlugParam;
525
- /** @returns {GetAppCustomObjectBySlugParam} */
526
- static getAppCustomObjectBySlug(): GetAppCustomObjectBySlugParam;
527
- /** @returns {GetAppCustomObjectDefinitionBySlugParam} */
528
- static getAppCustomObjectDefinitionBySlug(): GetAppCustomObjectDefinitionBySlugParam;
548
+ /** @returns {GetAppCustomFieldsParam} */
549
+ static getAppCustomFields(): GetAppCustomFieldsParam;
550
+ /** @returns {GetAppCustomFieldsByResourceIdParam} */
551
+ static getAppCustomFieldsByResourceId(): GetAppCustomFieldsByResourceIdParam;
552
+ /** @returns {GetAppCustomObjectParam} */
553
+ static getAppCustomObject(): GetAppCustomObjectParam;
554
+ /** @returns {GetAppCustomObjectDefinitionParam} */
555
+ static getAppCustomObjectDefinition(): GetAppCustomObjectDefinitionParam;
529
556
  /** @returns {GetAppCustomObjectDefinitionsParam} */
530
557
  static getAppCustomObjectDefinitions(): GetAppCustomObjectDefinitionsParam;
531
- /** @returns {GetAppCustomObjectsBySlugParam} */
532
- static getAppCustomObjectsBySlug(): GetAppCustomObjectsBySlugParam;
558
+ /** @returns {GetAppCustomObjectsParam} */
559
+ static getAppCustomObjects(): GetAppCustomObjectsParam;
533
560
  /** @returns {GetAppJobsParam} */
534
561
  static getAppJobs(): GetAppJobsParam;
535
562
  /** @returns {GetAppResourcesParam} */
@@ -538,6 +565,10 @@ declare class ContentPlatformApplicationValidator {
538
565
  static getBlogBySlug(): GetBlogBySlugParam;
539
566
  /** @returns {GetBlogsParam} */
540
567
  static getBlogs(): GetBlogsParam;
568
+ /** @returns {GetComponentByIdParam} */
569
+ static getComponentById(): GetComponentByIdParam;
570
+ /** @returns {GetDataLoaderApiSpecsParam} */
571
+ static getDataLoaderApiSpecs(): GetDataLoaderApiSpecsParam;
541
572
  /** @returns {GetDataLoadersParam} */
542
573
  static getDataLoaders(): any;
543
574
  /** @returns {GetDataLoadersByServiceParam} */
@@ -555,7 +586,7 @@ declare class ContentPlatformApplicationValidator {
555
586
  /** @returns {GetFaqsByCategoryIdOrSlugParam} */
556
587
  static getFaqsByCategoryIdOrSlug(): GetFaqsByCategoryIdOrSlugParam;
557
588
  /** @returns {GetInjectableTagsParam} */
558
- static getInjectableTags(): GetInjectableTagsParam;
589
+ static getInjectableTags(): any;
559
590
  /** @returns {GetLandingPagesParam} */
560
591
  static getLandingPages(): GetLandingPagesParam;
561
592
  /** @returns {GetLegalInformationParam} */
@@ -584,28 +615,28 @@ declare class ContentPlatformApplicationValidator {
584
615
  static getSEOMarkupSchemas(): GetSEOMarkupSchemasParam;
585
616
  /** @returns {GetSupportInformationParam} */
586
617
  static getSupportInformation(): any;
587
- /** @returns {ImportAppCustomObjectEntriesBySlugParam} */
588
- static importAppCustomObjectEntriesBySlug(): ImportAppCustomObjectEntriesBySlugParam;
618
+ /** @returns {ImportAppCustomObjectEntriesParam} */
619
+ static importAppCustomObjectEntries(): ImportAppCustomObjectEntriesParam;
589
620
  /** @returns {RemoveInjectableTagParam} */
590
621
  static removeInjectableTag(): RemoveInjectableTagParam;
591
622
  /** @returns {ResetDataLoaderParam} */
592
623
  static resetDataLoader(): ResetDataLoaderParam;
593
- /** @returns {SampleAppCustomObjectBulkEntryBySlugParam} */
594
- static sampleAppCustomObjectBulkEntryBySlug(): SampleAppCustomObjectBulkEntryBySlugParam;
624
+ /** @returns {SampleAppCustomObjectBulkEntryParam} */
625
+ static sampleAppCustomObjectBulkEntry(): SampleAppCustomObjectBulkEntryParam;
595
626
  /** @returns {SelectDataLoaderParam} */
596
627
  static selectDataLoader(): SelectDataLoaderParam;
597
628
  /** @returns {UpdateAnnouncementParam} */
598
629
  static updateAnnouncement(): UpdateAnnouncementParam;
599
630
  /** @returns {UpdateAnnouncementScheduleParam} */
600
631
  static updateAnnouncementSchedule(): UpdateAnnouncementScheduleParam;
601
- /** @returns {UpdateAppCustomFieldByResourceSlugParam} */
602
- static updateAppCustomFieldByResourceSlug(): UpdateAppCustomFieldByResourceSlugParam;
603
- /** @returns {UpdateAppCustomFieldDefinitionBySlugParam} */
604
- static updateAppCustomFieldDefinitionBySlug(): UpdateAppCustomFieldDefinitionBySlugParam;
605
- /** @returns {UpdateAppCustomObjectBySlugParam} */
606
- static updateAppCustomObjectBySlug(): UpdateAppCustomObjectBySlugParam;
607
- /** @returns {UpdateAppCustomObjectDefinitionBySlugParam} */
608
- static updateAppCustomObjectDefinitionBySlug(): UpdateAppCustomObjectDefinitionBySlugParam;
632
+ /** @returns {UpdateAppCustomFieldByResourceIdParam} */
633
+ static updateAppCustomFieldByResourceId(): UpdateAppCustomFieldByResourceIdParam;
634
+ /** @returns {UpdateAppCustomFieldDefinitionParam} */
635
+ static updateAppCustomFieldDefinition(): UpdateAppCustomFieldDefinitionParam;
636
+ /** @returns {UpdateAppCustomObjectParam} */
637
+ static updateAppCustomObject(): UpdateAppCustomObjectParam;
638
+ /** @returns {UpdateAppCustomObjectDefinitionParam} */
639
+ static updateAppCustomObjectDefinition(): UpdateAppCustomObjectDefinitionParam;
609
640
  /** @returns {UpdateBlogParam} */
610
641
  static updateBlog(): UpdateBlogParam;
611
642
  /** @returns {UpdateFaqParam} */
@@ -632,7 +663,7 @@ declare class ContentPlatformApplicationValidator {
632
663
  static updateSupportInformation(): UpdateSupportInformationParam;
633
664
  }
634
665
  declare namespace ContentPlatformApplicationValidator {
635
- export { AddDataLoaderParam, AddFaqParam, AddInjectableTagParam, AddPathRedirectionRulesParam, CreateAnnouncementParam, CreateAppCustomFieldDefinitionParam, CreateAppCustomObjectBySlugParam, CreateAppCustomObjectDefinitionParam, CreateBlogParam, CreateFaqCategoryParam, CreateLandingPageParam, CreateNavigationParam, CreatePageParam, CreateSEOMarkupSchemaParam, DeleteAnnouncementParam, DeleteAppCustomFieldDefinitionBySlugParam, DeleteAppCustomObjectBySlugParam, DeleteAppCustomObjectDefinitionBySlugParam, DeleteBlogParam, DeleteDataLoaderParam, DeleteFaqParam, DeleteFaqCategoryParam, DeleteLandingPageParam, DeleteNavigationParam, DeletePageParam, DeletePathRedirectionRulesParam, DeleteSEOMarkupSchemaParam, EditDataLoaderParam, EditInjectableTagParam, EditSEOMarkupSchemaParam, ExportAppCustomObjectEntriesBySlugParam, GenerateSEOTitleParam, GetAnnouncementByIdParam, GetAnnouncementsListParam, GetAppCustomFieldDefinitionByResourceParam, GetAppCustomFieldDefinitionBySlugParam, GetAppCustomFieldDefinitionsParam, GetAppCustomFieldTypesParam, GetAppCustomFieldsByResourceSlugParam, GetAppCustomObjectBySlugParam, GetAppCustomObjectDefinitionBySlugParam, GetAppCustomObjectDefinitionsParam, GetAppCustomObjectsBySlugParam, GetAppJobsParam, GetAppResourcesParam, GetBlogBySlugParam, GetBlogsParam, GetDataLoadersParam, GetDataLoadersByServiceParam, GetDefaultNavigationsParam, GetDefaultSEOMarkupSchemaParam, GetFaqByIdOrSlugParam, GetFaqCategoriesParam, GetFaqCategoryBySlugOrIdParam, GetFaqsByCategoryIdOrSlugParam, GetInjectableTagsParam, GetLandingPagesParam, GetLegalInformationParam, GetNavigationBySlugParam, GetNavigationsParam, GetPageBySlugParam, GetPageMetaParam, GetPageSpecParam, GetPagesParam, GetPathRedirectionRuleParam, GetPathRedirectionRulesParam, GetSEOConfigurationParam, GetSEOMarkupSchemaParam, GetSEOMarkupSchemasParam, GetSupportInformationParam, ImportAppCustomObjectEntriesBySlugParam, RemoveInjectableTagParam, ResetDataLoaderParam, SampleAppCustomObjectBulkEntryBySlugParam, SelectDataLoaderParam, UpdateAnnouncementParam, UpdateAnnouncementScheduleParam, UpdateAppCustomFieldByResourceSlugParam, UpdateAppCustomFieldDefinitionBySlugParam, UpdateAppCustomObjectBySlugParam, UpdateAppCustomObjectDefinitionBySlugParam, UpdateBlogParam, UpdateFaqParam, UpdateFaqCategoryParam, UpdateInjectableTagParam, UpdateLandingPageParam, UpdateLegalInformationParam, UpdateNavigationParam, UpdatePageParam, UpdatePagePreviewParam, UpdatePathRedirectionRulesParam, UpdateSEOConfigurationParam, UpdateSupportInformationParam };
666
+ export { AddDataLoaderParam, AddFaqParam, AddInjectableTagParam, AddPathRedirectionRulesParam, CreateAnnouncementParam, CreateAppCustomFieldByResourceIdParam, CreateAppCustomFieldDefinitionParam, CreateAppCustomObjectParam, CreateAppCustomObjectDefinitionParam, CreateBlogParam, CreateFaqCategoryParam, CreateInjectableTagParam, CreateLandingPageParam, CreateNavigationParam, CreatePageParam, CreatePagePreviewParam, CreateSEOMarkupSchemaParam, DeleteAllInjectableTagsParam, DeleteAnnouncementParam, DeleteAppCustomFieldDefinitionParam, DeleteAppCustomFieldsByResourceIdParam, DeleteAppCustomObjectParam, DeleteAppCustomObjectDefinitionParam, DeleteBlogParam, DeleteDataLoaderParam, DeleteFaqParam, DeleteFaqCategoryParam, DeleteLandingPageParam, DeleteNavigationParam, DeletePageParam, DeletePathRedirectionRulesParam, DeleteSEOMarkupSchemaParam, EditDataLoaderParam, EditInjectableTagParam, EditSEOMarkupSchemaParam, ExportAppCustomObjectEntriesParam, GenerateSEOTitleParam, GetAnnouncementByIdParam, GetAnnouncementsListParam, GetAppCustomFieldDefinitionParam, GetAppCustomFieldDefinitionsParam, GetAppCustomFieldJobsParam, GetAppCustomFieldTypesParam, GetAppCustomFieldsParam, GetAppCustomFieldsByResourceIdParam, GetAppCustomObjectParam, GetAppCustomObjectDefinitionParam, GetAppCustomObjectDefinitionsParam, GetAppCustomObjectsParam, GetAppJobsParam, GetAppResourcesParam, GetBlogBySlugParam, GetBlogsParam, GetComponentByIdParam, GetDataLoaderApiSpecsParam, GetDataLoadersParam, GetDataLoadersByServiceParam, GetDefaultNavigationsParam, GetDefaultSEOMarkupSchemaParam, GetFaqByIdOrSlugParam, GetFaqCategoriesParam, GetFaqCategoryBySlugOrIdParam, GetFaqsByCategoryIdOrSlugParam, GetInjectableTagsParam, GetLandingPagesParam, GetLegalInformationParam, GetNavigationBySlugParam, GetNavigationsParam, GetPageBySlugParam, GetPageMetaParam, GetPageSpecParam, GetPagesParam, GetPathRedirectionRuleParam, GetPathRedirectionRulesParam, GetSEOConfigurationParam, GetSEOMarkupSchemaParam, GetSEOMarkupSchemasParam, GetSupportInformationParam, ImportAppCustomObjectEntriesParam, RemoveInjectableTagParam, ResetDataLoaderParam, SampleAppCustomObjectBulkEntryParam, SelectDataLoaderParam, UpdateAnnouncementParam, UpdateAnnouncementScheduleParam, UpdateAppCustomFieldByResourceIdParam, UpdateAppCustomFieldDefinitionParam, UpdateAppCustomObjectParam, UpdateAppCustomObjectDefinitionParam, UpdateBlogParam, UpdateFaqParam, UpdateFaqCategoryParam, UpdateInjectableTagParam, UpdateLandingPageParam, UpdateLegalInformationParam, UpdateNavigationParam, UpdatePageParam, UpdatePagePreviewParam, UpdatePathRedirectionRulesParam, UpdateSEOConfigurationParam, UpdateSupportInformationParam };
636
667
  }
637
668
  type AddDataLoaderParam = {
638
669
  body: ContentPlatformModel.DataLoaderSchema;
@@ -653,31 +684,40 @@ type AddPathRedirectionRulesParam = {
653
684
  type CreateAnnouncementParam = {
654
685
  body: ContentPlatformModel.AdminAnnouncementSchema;
655
686
  };
656
- type CreateAppCustomFieldDefinitionParam = {
687
+ type CreateAppCustomFieldByResourceIdParam = {
657
688
  resource: string;
689
+ resourceId: string;
690
+ body: ContentPlatformModel.CustomFieldRequestSchema;
691
+ };
692
+ type CreateAppCustomFieldDefinitionParam = {
658
693
  body: ContentPlatformModel.CustomFieldDefinitionRequestSchema;
659
694
  };
660
- type CreateAppCustomObjectBySlugParam = {
661
- definitionSlug: string;
662
- body: ContentPlatformModel.CustomObjectRequestSchemaWithoutId;
695
+ type CreateAppCustomObjectParam = {
696
+ body: ContentPlatformModel.CustomObjectRequestSchema;
663
697
  };
664
698
  type CreateAppCustomObjectDefinitionParam = {
665
699
  body: ContentPlatformModel.CustomObjectDefinitionRequestSchema;
666
700
  };
667
701
  type CreateBlogParam = {
668
- body: ContentPlatformModel.BlogPayload;
702
+ body: ContentPlatformModel.BlogRequest;
669
703
  };
670
704
  type CreateFaqCategoryParam = {
671
705
  body: ContentPlatformModel.CreateFaqCategoryRequestSchema;
672
706
  };
707
+ type CreateInjectableTagParam = {
708
+ body: ContentPlatformModel.CreateTagRequestSchema;
709
+ };
673
710
  type CreateLandingPageParam = {
674
711
  body: ContentPlatformModel.LandingPageSchema;
675
712
  };
676
713
  type CreateNavigationParam = {
677
- body: ContentPlatformModel.NavigationPayload;
714
+ body: ContentPlatformModel.NavigationRequest;
678
715
  };
679
716
  type CreatePageParam = {
680
- body: ContentPlatformModel.PagePayload;
717
+ body: ContentPlatformModel.PageRequest;
718
+ };
719
+ type CreatePagePreviewParam = {
720
+ body: ContentPlatformModel.PageRequest;
681
721
  };
682
722
  type CreateSEOMarkupSchemaParam = {
683
723
  body: ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody;
@@ -688,17 +728,19 @@ type DeleteAnnouncementParam = {
688
728
  */
689
729
  announcementId: string;
690
730
  };
691
- type DeleteAppCustomFieldDefinitionBySlugParam = {
692
- slug: string;
731
+ type DeleteAppCustomFieldDefinitionParam = {
732
+ id: string;
733
+ };
734
+ type DeleteAppCustomFieldsByResourceIdParam = {
693
735
  resource: string;
694
- namespace: string;
736
+ resourceId: string;
737
+ ids: string;
695
738
  };
696
- type DeleteAppCustomObjectBySlugParam = {
697
- definitionSlug: string;
698
- slug: string;
739
+ type DeleteAppCustomObjectParam = {
740
+ id: string;
699
741
  };
700
- type DeleteAppCustomObjectDefinitionBySlugParam = {
701
- slug: string;
742
+ type DeleteAppCustomObjectDefinitionParam = {
743
+ id: string;
702
744
  };
703
745
  type DeleteBlogParam = {
704
746
  /**
@@ -757,7 +799,7 @@ type DeleteSEOMarkupSchemaParam = {
757
799
  * - Alphanumeric ID allotted to a SEO Markup Schema
758
800
  * Template created within a business.
759
801
  */
760
- id: string;
802
+ schemaId: string;
761
803
  };
762
804
  type EditDataLoaderParam = {
763
805
  /**
@@ -778,19 +820,18 @@ type EditSEOMarkupSchemaParam = {
778
820
  * - Alphanumeric ID allotted to a SEO Markup Schema
779
821
  * Template created within a business.
780
822
  */
781
- id: string;
823
+ schemaId: string;
782
824
  body: ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody;
783
825
  };
784
- type ExportAppCustomObjectEntriesBySlugParam = {
785
- slug: string;
826
+ type ExportAppCustomObjectEntriesParam = {
827
+ definitionId: string;
786
828
  };
787
829
  type GenerateSEOTitleParam = {
788
830
  /**
789
- * - String
790
- * representing the type of SEO content to be generated. Possible values are:
791
- * title, description
831
+ * - String representing the type of SEO content to be
832
+ * generated. Possible values are: title, description
792
833
  */
793
- type: ContentPlatformModel.GenerationEntityType;
834
+ type: string;
794
835
  body: ContentPlatformModel.GenerateSEOContent;
795
836
  };
796
837
  type GetAnnouncementByIdParam = {
@@ -811,19 +852,8 @@ type GetAnnouncementsListParam = {
811
852
  */
812
853
  pageSize?: number;
813
854
  };
814
- type GetAppCustomFieldDefinitionByResourceParam = {
815
- pageNo: string;
816
- pageSize: string;
817
- resource: string;
818
- types?: string;
819
- search?: string;
820
- slugs?: string;
821
- namespaces?: string;
822
- };
823
- type GetAppCustomFieldDefinitionBySlugParam = {
824
- slug: string;
825
- resource: string;
826
- namespace: string;
855
+ type GetAppCustomFieldDefinitionParam = {
856
+ id: string;
827
857
  };
828
858
  type GetAppCustomFieldDefinitionsParam = {
829
859
  pageNo: string;
@@ -832,28 +862,34 @@ type GetAppCustomFieldDefinitionsParam = {
832
862
  types?: string;
833
863
  search?: string;
834
864
  slugs?: string;
835
- namespaces?: string;
836
865
  };
837
- type GetAppCustomFieldsByResourceSlugParam = {
866
+ type GetAppCustomFieldJobsParam = {
867
+ page: string;
868
+ pageSize: string;
869
+ actionType: string;
870
+ };
871
+ type GetAppCustomFieldsParam = {
838
872
  resource: string;
839
- resourceSlug: string;
840
873
  };
841
- type GetAppCustomObjectBySlugParam = {
842
- definitionSlug: string;
843
- slug: string;
874
+ type GetAppCustomFieldsByResourceIdParam = {
875
+ resource: string;
876
+ resourceId: string;
844
877
  };
845
- type GetAppCustomObjectDefinitionBySlugParam = {
846
- slug: string;
878
+ type GetAppCustomObjectParam = {
879
+ id: string;
880
+ };
881
+ type GetAppCustomObjectDefinitionParam = {
882
+ id: string;
847
883
  };
848
884
  type GetAppCustomObjectDefinitionsParam = {
849
885
  pageNo: string;
850
886
  pageSize: string;
851
887
  search?: string;
852
888
  };
853
- type GetAppCustomObjectsBySlugParam = {
889
+ type GetAppCustomObjectsParam = {
890
+ definitionId?: string;
854
891
  pageNo: string;
855
892
  pageSize: string;
856
- definitionSlug: string;
857
893
  };
858
894
  type GetAppJobsParam = {
859
895
  page: string;
@@ -899,6 +935,20 @@ type GetBlogsParam = {
899
935
  */
900
936
  status?: string;
901
937
  };
938
+ type GetComponentByIdParam = {
939
+ /**
940
+ * - A short, human-readable, URL-friendly identifier of
941
+ * a blog page. You can get slug value of a blog from `getBlogs` API.
942
+ */
943
+ slug: string;
944
+ };
945
+ type GetDataLoaderApiSpecsParam = {
946
+ /**
947
+ * - Alphanumeric ID allotted to an application
948
+ * created within a business account.
949
+ */
950
+ dataLoader: string;
951
+ };
902
952
  type GetDataLoadersByServiceParam = {
903
953
  /**
904
954
  * - Service name of the data loader..
@@ -936,12 +986,6 @@ type GetFaqsByCategoryIdOrSlugParam = {
936
986
  */
937
987
  idOrSlug: string;
938
988
  };
939
- type GetInjectableTagsParam = {
940
- /**
941
- * - Get all tags irrespective of the creator of tags
942
- */
943
- all?: boolean;
944
- };
945
989
  type GetLandingPagesParam = {
946
990
  /**
947
991
  * - The page number to navigate through the given
@@ -1025,7 +1069,7 @@ type GetSEOMarkupSchemaParam = {
1025
1069
  * - Alphanumeric ID allotted to a SEO Markup Schema
1026
1070
  * Template created within a business.
1027
1071
  */
1028
- id: string;
1072
+ schemaId: string;
1029
1073
  };
1030
1074
  type GetSEOMarkupSchemasParam = {
1031
1075
  /**
@@ -1047,8 +1091,8 @@ type GetSEOMarkupSchemasParam = {
1047
1091
  */
1048
1092
  pageSize?: number;
1049
1093
  };
1050
- type ImportAppCustomObjectEntriesBySlugParam = {
1051
- slug: string;
1094
+ type ImportAppCustomObjectEntriesParam = {
1095
+ definitionId: string;
1052
1096
  body: ContentPlatformModel.CustomObjectBulkSchema;
1053
1097
  };
1054
1098
  type RemoveInjectableTagParam = {
@@ -1064,8 +1108,8 @@ type ResetDataLoaderParam = {
1064
1108
  */
1065
1109
  operationId: string;
1066
1110
  };
1067
- type SampleAppCustomObjectBulkEntryBySlugParam = {
1068
- slug: string;
1111
+ type SampleAppCustomObjectBulkEntryParam = {
1112
+ definitionId: string;
1069
1113
  };
1070
1114
  type SelectDataLoaderParam = {
1071
1115
  /**
@@ -1087,24 +1131,21 @@ type UpdateAnnouncementScheduleParam = {
1087
1131
  announcementId: string;
1088
1132
  body: ContentPlatformModel.ScheduleSchema;
1089
1133
  };
1090
- type UpdateAppCustomFieldByResourceSlugParam = {
1134
+ type UpdateAppCustomFieldByResourceIdParam = {
1091
1135
  resource: string;
1092
- resourceSlug: string;
1136
+ resourceId: string;
1093
1137
  body: ContentPlatformModel.CustomFieldRequestSchema;
1094
1138
  };
1095
- type UpdateAppCustomFieldDefinitionBySlugParam = {
1096
- slug: string;
1097
- resource: string;
1098
- namespace: string;
1139
+ type UpdateAppCustomFieldDefinitionParam = {
1140
+ id: string;
1099
1141
  body: ContentPlatformModel.CustomFieldDefinitionRequestSchema;
1100
1142
  };
1101
- type UpdateAppCustomObjectBySlugParam = {
1102
- definitionSlug: string;
1103
- slug: string;
1104
- body: ContentPlatformModel.CustomObjectRequestSchemaWithoutId;
1143
+ type UpdateAppCustomObjectParam = {
1144
+ id: string;
1145
+ body: ContentPlatformModel.CustomObjectRequestSchema;
1105
1146
  };
1106
- type UpdateAppCustomObjectDefinitionBySlugParam = {
1107
- slug: string;
1147
+ type UpdateAppCustomObjectDefinitionParam = {
1148
+ id: string;
1108
1149
  body: ContentPlatformModel.CustomObjectDefinitionUpdateRequestSchema;
1109
1150
  };
1110
1151
  type UpdateBlogParam = {
@@ -1112,7 +1153,7 @@ type UpdateBlogParam = {
1112
1153
  * - ID allotted to the blog.
1113
1154
  */
1114
1155
  id: string;
1115
- body: ContentPlatformModel.BlogPayload;
1156
+ body: ContentPlatformModel.BlogRequest;
1116
1157
  };
1117
1158
  type UpdateFaqParam = {
1118
1159
  /**
@@ -1150,7 +1191,7 @@ type UpdateNavigationParam = {
1150
1191
  * - ID allotted to the navigation.
1151
1192
  */
1152
1193
  id: string;
1153
- body: ContentPlatformModel.NavigationPayload;
1194
+ body: ContentPlatformModel.NavigationRequest;
1154
1195
  };
1155
1196
  type UpdatePageParam = {
1156
1197
  /**
@@ -1165,7 +1206,7 @@ type UpdatePagePreviewParam = {
1165
1206
  * a page. You can get slug value of a page from `getPages` API.
1166
1207
  */
1167
1208
  slug: string;
1168
- body: ContentPlatformModel.PagePublishPayload;
1209
+ body: ContentPlatformModel.PagePublishRequest;
1169
1210
  };
1170
1211
  type UpdatePathRedirectionRulesParam = {
1171
1212
  /**
@@ -1180,11 +1221,13 @@ type UpdateSEOConfigurationParam = {
1180
1221
  type UpdateSupportInformationParam = {
1181
1222
  body: ContentPlatformModel.Support;
1182
1223
  };
1224
+ type DeleteAllInjectableTagsParam = any;
1183
1225
  type GetAppCustomFieldTypesParam = any;
1184
1226
  type GetAppResourcesParam = any;
1185
1227
  type GetDataLoadersParam = any;
1186
1228
  type GetDefaultNavigationsParam = any;
1187
1229
  type GetFaqCategoriesParam = any;
1230
+ type GetInjectableTagsParam = any;
1188
1231
  type GetLegalInformationParam = any;
1189
1232
  type GetPageMetaParam = any;
1190
1233
  type GetPageSpecParam = any;