@gofynd/fdk-client-javascript 1.4.12 → 1.4.14

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 (297) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
  3. package/sdk/application/ApplicationClient.d.ts +2 -0
  4. package/sdk/application/ApplicationClient.js +2 -0
  5. package/sdk/application/Cart/CartApplicationClient.d.ts +60 -53
  6. package/sdk/application/Cart/CartApplicationClient.js +130 -53
  7. package/sdk/application/Cart/CartApplicationModel.d.ts +489 -143
  8. package/sdk/application/Cart/CartApplicationModel.js +380 -159
  9. package/sdk/application/Cart/CartApplicationValidator.d.ts +38 -19
  10. package/sdk/application/Cart/CartApplicationValidator.js +34 -18
  11. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +88 -68
  12. package/sdk/application/Catalog/CatalogApplicationClient.js +114 -94
  13. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +194 -142
  14. package/sdk/application/Catalog/CatalogApplicationModel.js +171 -133
  15. package/sdk/application/Common/CommonApplicationClient.d.ts +3 -2
  16. package/sdk/application/Common/CommonApplicationClient.js +6 -5
  17. package/sdk/application/Common/CommonApplicationModel.d.ts +9 -9
  18. package/sdk/application/Common/CommonApplicationModel.js +6 -6
  19. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +34 -27
  20. package/sdk/application/Configuration/ConfigurationApplicationClient.js +34 -27
  21. package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +45 -57
  22. package/sdk/application/Configuration/ConfigurationApplicationModel.js +35 -47
  23. package/sdk/application/Configuration/ConfigurationApplicationValidator.d.ts +2 -2
  24. package/sdk/application/Configuration/ConfigurationApplicationValidator.js +2 -2
  25. package/sdk/application/Content/ContentApplicationClient.d.ts +23 -33
  26. package/sdk/application/Content/ContentApplicationClient.js +54 -75
  27. package/sdk/application/Content/ContentApplicationModel.d.ts +96 -39
  28. package/sdk/application/Content/ContentApplicationModel.js +88 -34
  29. package/sdk/application/Content/ContentApplicationValidator.d.ts +23 -17
  30. package/sdk/application/Content/ContentApplicationValidator.js +15 -10
  31. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +9 -8
  32. package/sdk/application/FileStorage/FileStorageApplicationClient.js +14 -13
  33. package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +23 -25
  34. package/sdk/application/FileStorage/FileStorageApplicationModel.js +16 -18
  35. package/sdk/application/FileStorage/FileStorageApplicationValidator.d.ts +6 -6
  36. package/sdk/application/FileStorage/FileStorageApplicationValidator.js +6 -6
  37. package/sdk/application/Finance/FinanceApplicationClient.d.ts +36 -0
  38. package/sdk/application/Finance/FinanceApplicationClient.js +202 -0
  39. package/sdk/application/Finance/FinanceApplicationModel.d.ts +289 -0
  40. package/sdk/application/Finance/FinanceApplicationModel.js +208 -0
  41. package/sdk/application/Finance/FinanceApplicationValidator.d.ts +25 -0
  42. package/sdk/application/Finance/FinanceApplicationValidator.js +31 -0
  43. package/sdk/application/Lead/LeadApplicationClient.d.ts +2 -3
  44. package/sdk/application/Lead/LeadApplicationClient.js +2 -3
  45. package/sdk/application/Lead/LeadApplicationModel.d.ts +11 -11
  46. package/sdk/application/Lead/LeadApplicationModel.js +19 -19
  47. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +39 -16
  48. package/sdk/application/Logistic/LogisticApplicationClient.js +189 -21
  49. package/sdk/application/Logistic/LogisticApplicationModel.d.ts +532 -173
  50. package/sdk/application/Logistic/LogisticApplicationModel.js +409 -139
  51. package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +54 -9
  52. package/sdk/application/Logistic/LogisticApplicationValidator.js +42 -8
  53. package/sdk/application/Order/OrderApplicationClient.d.ts +24 -10
  54. package/sdk/application/Order/OrderApplicationClient.js +96 -13
  55. package/sdk/application/Order/OrderApplicationModel.d.ts +434 -102
  56. package/sdk/application/Order/OrderApplicationModel.js +278 -73
  57. package/sdk/application/Order/OrderApplicationValidator.d.ts +17 -3
  58. package/sdk/application/Order/OrderApplicationValidator.js +15 -2
  59. package/sdk/application/Payment/PaymentApplicationClient.d.ts +96 -99
  60. package/sdk/application/Payment/PaymentApplicationClient.js +111 -114
  61. package/sdk/application/Payment/PaymentApplicationModel.d.ts +293 -289
  62. package/sdk/application/Payment/PaymentApplicationModel.js +243 -241
  63. package/sdk/application/Payment/PaymentApplicationValidator.d.ts +46 -46
  64. package/sdk/application/Payment/PaymentApplicationValidator.js +46 -46
  65. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +13 -16
  66. package/sdk/application/Rewards/RewardsApplicationClient.js +19 -22
  67. package/sdk/application/Rewards/RewardsApplicationModel.d.ts +37 -37
  68. package/sdk/application/Rewards/RewardsApplicationModel.js +29 -29
  69. package/sdk/application/Rewards/RewardsApplicationValidator.d.ts +6 -6
  70. package/sdk/application/Rewards/RewardsApplicationValidator.js +6 -6
  71. package/sdk/application/Share/ShareApplicationModel.js +1 -1
  72. package/sdk/application/Theme/ThemeApplicationClient.d.ts +2 -2
  73. package/sdk/application/Theme/ThemeApplicationClient.js +8 -6
  74. package/sdk/application/Theme/ThemeApplicationModel.d.ts +51 -19
  75. package/sdk/application/Theme/ThemeApplicationModel.js +47 -24
  76. package/sdk/application/Theme/ThemeApplicationValidator.d.ts +16 -3
  77. package/sdk/application/Theme/ThemeApplicationValidator.js +9 -2
  78. package/sdk/application/User/UserApplicationClient.d.ts +10 -10
  79. package/sdk/application/User/UserApplicationClient.js +10 -10
  80. package/sdk/application/User/UserApplicationModel.d.ts +17 -17
  81. package/sdk/application/User/UserApplicationModel.js +16 -16
  82. package/sdk/application/User/UserApplicationValidator.d.ts +2 -2
  83. package/sdk/application/User/UserApplicationValidator.js +2 -2
  84. package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
  85. package/sdk/application/Webhook/WebhookApplicationClient.js +4 -4
  86. package/sdk/application/Webhook/WebhookApplicationModel.d.ts +11 -9
  87. package/sdk/application/Webhook/WebhookApplicationModel.js +8 -6
  88. package/sdk/application/Webhook/WebhookApplicationValidator.d.ts +2 -2
  89. package/sdk/application/Webhook/WebhookApplicationValidator.js +2 -2
  90. package/sdk/application/index.d.ts +1 -0
  91. package/sdk/application/index.js +2 -0
  92. package/sdk/common/Clickstream.js +12 -0
  93. package/sdk/common/Constant.d.ts +5 -0
  94. package/sdk/common/Constant.js +5 -0
  95. package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +86 -12
  96. package/sdk/partner/FileStorage/FileStoragePartnerClient.js +582 -24
  97. package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +116 -19
  98. package/sdk/partner/FileStorage/FileStoragePartnerModel.js +121 -14
  99. package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +8 -1
  100. package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +51 -4
  101. package/sdk/partner/Lead/LeadPartnerClient.d.ts +2 -2
  102. package/sdk/partner/Lead/LeadPartnerClient.js +2 -2
  103. package/sdk/partner/Lead/LeadPartnerModel.d.ts +5 -5
  104. package/sdk/partner/Lead/LeadPartnerModel.js +15 -15
  105. package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +126 -20
  106. package/sdk/partner/Logistics/LogisticsPartnerClient.js +970 -20
  107. package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +767 -85
  108. package/sdk/partner/Logistics/LogisticsPartnerModel.js +429 -76
  109. package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +10 -0
  110. package/sdk/partner/Logistics/LogisticsPartnerValidator.js +120 -6
  111. package/sdk/partner/Theme/ThemePartnerClient.d.ts +8 -10
  112. package/sdk/partner/Theme/ThemePartnerClient.js +14 -16
  113. package/sdk/partner/Theme/ThemePartnerModel.d.ts +99 -39
  114. package/sdk/partner/Theme/ThemePartnerModel.js +95 -38
  115. package/sdk/partner/Theme/ThemePartnerValidator.js +4 -4
  116. package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +28 -18
  117. package/sdk/partner/Webhook/WebhookPartnerClient.js +103 -18
  118. package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +612 -179
  119. package/sdk/partner/Webhook/WebhookPartnerModel.js +253 -150
  120. package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +1 -0
  121. package/sdk/partner/Webhook/WebhookPartnerValidator.js +11 -3
  122. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +5 -4
  123. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +14 -8
  124. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +59 -9
  125. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +40 -4
  126. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +2 -32
  127. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +3 -243
  128. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +11 -130
  129. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +12 -152
  130. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -39
  131. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +0 -35
  132. package/sdk/platform/Billing/BillingPlatformClient.d.ts +12 -12
  133. package/sdk/platform/Billing/BillingPlatformClient.js +15 -15
  134. package/sdk/platform/Billing/BillingPlatformModel.d.ts +443 -388
  135. package/sdk/platform/Billing/BillingPlatformModel.js +280 -263
  136. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +16 -18
  137. package/sdk/platform/Billing/BillingPlatformValidator.js +8 -9
  138. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +134 -103
  139. package/sdk/platform/Cart/CartPlatformApplicationClient.js +407 -112
  140. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +111 -65
  141. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +106 -44
  142. package/sdk/platform/Cart/CartPlatformModel.d.ts +4978 -1303
  143. package/sdk/platform/Cart/CartPlatformModel.js +1922 -1217
  144. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +192 -164
  145. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +371 -343
  146. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +99 -99
  147. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +54 -54
  148. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +139 -116
  149. package/sdk/platform/Catalog/CatalogPlatformClient.js +191 -168
  150. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +1374 -749
  151. package/sdk/platform/Catalog/CatalogPlatformModel.js +1241 -830
  152. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +18 -18
  153. package/sdk/platform/Catalog/CatalogPlatformValidator.js +18 -18
  154. package/sdk/platform/Common/CommonPlatformClient.d.ts +3 -2
  155. package/sdk/platform/Common/CommonPlatformClient.js +3 -2
  156. package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
  157. package/sdk/platform/Common/CommonPlatformModel.js +6 -6
  158. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +16 -17
  159. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +16 -17
  160. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +8 -8
  161. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +8 -8
  162. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +43 -33
  163. package/sdk/platform/Communication/CommunicationPlatformModel.js +38 -34
  164. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +46 -42
  165. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +47 -43
  166. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +223 -223
  167. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +210 -212
  168. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +12 -12
  169. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +12 -12
  170. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +46 -33
  171. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +67 -54
  172. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +18 -18
  173. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +18 -18
  174. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +45 -24
  175. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +134 -30
  176. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +283 -124
  177. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +219 -94
  178. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +37 -9
  179. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +27 -8
  180. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +124 -141
  181. package/sdk/platform/Content/ContentPlatformApplicationClient.js +449 -422
  182. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +179 -141
  183. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +168 -130
  184. package/sdk/platform/Content/ContentPlatformClient.d.ts +142 -106
  185. package/sdk/platform/Content/ContentPlatformClient.js +523 -336
  186. package/sdk/platform/Content/ContentPlatformModel.d.ts +1244 -397
  187. package/sdk/platform/Content/ContentPlatformModel.js +526 -392
  188. package/sdk/platform/Content/ContentPlatformValidator.d.ts +168 -117
  189. package/sdk/platform/Content/ContentPlatformValidator.js +162 -108
  190. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +14 -12
  191. package/sdk/platform/Discount/DiscountPlatformClient.js +14 -12
  192. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +13 -13
  193. package/sdk/platform/Discount/DiscountPlatformModel.js +12 -12
  194. package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
  195. package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
  196. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +94 -36
  197. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +462 -60
  198. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +62 -15
  199. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +75 -13
  200. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +19 -19
  201. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +21 -21
  202. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +370 -101
  203. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +313 -84
  204. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
  205. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
  206. package/sdk/platform/Lead/LeadPlatformClient.d.ts +2 -2
  207. package/sdk/platform/Lead/LeadPlatformClient.js +2 -2
  208. package/sdk/platform/Lead/LeadPlatformModel.d.ts +5 -5
  209. package/sdk/platform/Lead/LeadPlatformModel.js +16 -16
  210. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +15 -4
  211. package/sdk/platform/Order/OrderPlatformApplicationClient.js +83 -5
  212. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +25 -4
  213. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +16 -3
  214. package/sdk/platform/Order/OrderPlatformClient.d.ts +138 -101
  215. package/sdk/platform/Order/OrderPlatformClient.js +267 -203
  216. package/sdk/platform/Order/OrderPlatformModel.d.ts +4497 -877
  217. package/sdk/platform/Order/OrderPlatformModel.js +2336 -812
  218. package/sdk/platform/Order/OrderPlatformValidator.d.ts +147 -50
  219. package/sdk/platform/Order/OrderPlatformValidator.js +75 -46
  220. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +6 -4
  221. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +9 -7
  222. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
  223. package/sdk/platform/Partner/PartnerPlatformModel.js +8 -8
  224. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +93 -105
  225. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +129 -141
  226. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +48 -48
  227. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +48 -48
  228. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +20 -20
  229. package/sdk/platform/Payment/PaymentPlatformClient.js +20 -20
  230. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +327 -313
  231. package/sdk/platform/Payment/PaymentPlatformModel.js +283 -273
  232. package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +8 -8
  233. package/sdk/platform/Payment/PaymentPlatformValidator.js +8 -8
  234. package/sdk/platform/PlatformClient.d.ts +0 -2
  235. package/sdk/platform/PlatformClient.js +0 -4
  236. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
  237. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
  238. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
  239. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
  240. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +9 -9
  241. package/sdk/platform/Rewards/RewardsPlatformModel.js +8 -8
  242. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +45 -35
  243. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +117 -38
  244. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +22 -13
  245. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +24 -12
  246. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +40 -46
  247. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +58 -64
  248. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +602 -341
  249. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +483 -284
  250. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +8 -8
  251. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +8 -8
  252. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +2 -2
  253. package/sdk/platform/Share/SharePlatformApplicationClient.js +2 -2
  254. package/sdk/platform/Share/SharePlatformModel.d.ts +36 -5
  255. package/sdk/platform/Share/SharePlatformModel.js +27 -4
  256. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +3 -3
  257. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +8 -4
  258. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +5 -0
  259. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +2 -0
  260. package/sdk/platform/Theme/ThemePlatformModel.d.ts +40 -13
  261. package/sdk/platform/Theme/ThemePlatformModel.js +38 -17
  262. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +12 -12
  263. package/sdk/platform/User/UserPlatformApplicationClient.js +12 -12
  264. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +2 -2
  265. package/sdk/platform/User/UserPlatformApplicationValidator.js +2 -2
  266. package/sdk/platform/User/UserPlatformModel.d.ts +21 -21
  267. package/sdk/platform/User/UserPlatformModel.js +23 -23
  268. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +25 -78
  269. package/sdk/platform/Webhook/WebhookPlatformClient.js +75 -470
  270. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +720 -427
  271. package/sdk/platform/Webhook/WebhookPlatformModel.js +410 -386
  272. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +10 -55
  273. package/sdk/platform/Webhook/WebhookPlatformValidator.js +12 -72
  274. package/sdk/platform/index.d.ts +0 -1
  275. package/sdk/platform/index.js +0 -2
  276. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +3 -2
  277. package/sdk/public/Configuration/ConfigurationPublicClient.js +6 -5
  278. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +9 -9
  279. package/sdk/public/Configuration/ConfigurationPublicModel.js +6 -6
  280. package/sdk/public/Content/ContentPublicClient.d.ts +112 -2
  281. package/sdk/public/Content/ContentPublicClient.js +791 -5
  282. package/sdk/public/Content/ContentPublicModel.d.ts +549 -3
  283. package/sdk/public/Content/ContentPublicModel.js +649 -3
  284. package/sdk/public/Content/ContentPublicValidator.d.ts +69 -3
  285. package/sdk/public/Content/ContentPublicValidator.js +88 -2
  286. package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
  287. package/sdk/public/Webhook/WebhookPublicClient.js +8 -8
  288. package/sdk/public/Webhook/WebhookPublicModel.d.ts +21 -21
  289. package/sdk/public/Webhook/WebhookPublicModel.js +15 -15
  290. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
  291. package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
  292. package/sdk/platform/Finance/FinancePlatformClient.d.ts +0 -320
  293. package/sdk/platform/Finance/FinancePlatformClient.js +0 -2333
  294. package/sdk/platform/Finance/FinancePlatformModel.d.ts +0 -2890
  295. package/sdk/platform/Finance/FinancePlatformModel.js +0 -2148
  296. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +0 -284
  297. package/sdk/platform/Finance/FinancePlatformValidator.js +0 -354
@@ -20,19 +20,15 @@ export = ContentPlatformApplicationValidator;
20
20
  * @typedef CreateAnnouncementParam
21
21
  * @property {ContentPlatformModel.AdminAnnouncementSchema} body
22
22
  */
23
- /**
24
- * @typedef CreateAppCustomFieldByResourceIdParam
25
- * @property {string} resource
26
- * @property {string} resourceId
27
- * @property {ContentPlatformModel.CustomFieldRequestSchema} body
28
- */
29
23
  /**
30
24
  * @typedef CreateAppCustomFieldDefinitionParam
25
+ * @property {string} resource
31
26
  * @property {ContentPlatformModel.CustomFieldDefinitionRequestSchema} body
32
27
  */
33
28
  /**
34
- * @typedef CreateAppCustomObjectParam
35
- * @property {ContentPlatformModel.CustomObjectRequestSchema} body
29
+ * @typedef CreateAppCustomObjectBySlugParam
30
+ * @property {string} definitionSlug
31
+ * @property {ContentPlatformModel.CustomObjectRequestSchemaWithoutId} body
36
32
  */
37
33
  /**
38
34
  * @typedef CreateAppCustomObjectDefinitionParam
@@ -40,7 +36,7 @@ export = ContentPlatformApplicationValidator;
40
36
  */
41
37
  /**
42
38
  * @typedef CreateBlogParam
43
- * @property {ContentPlatformModel.BlogRequest} body
39
+ * @property {ContentPlatformModel.BlogPayload} body
44
40
  */
45
41
  /**
46
42
  * @typedef CreateFaqCategoryParam
@@ -52,15 +48,15 @@ export = ContentPlatformApplicationValidator;
52
48
  */
53
49
  /**
54
50
  * @typedef CreateNavigationParam
55
- * @property {ContentPlatformModel.NavigationRequest} body
51
+ * @property {ContentPlatformModel.NavigationPayload} body
56
52
  */
57
53
  /**
58
54
  * @typedef CreatePageParam
59
- * @property {ContentPlatformModel.PageRequest} body
55
+ * @property {ContentPlatformModel.PagePayload} body
60
56
  */
61
57
  /**
62
58
  * @typedef CreatePagePreviewParam
63
- * @property {ContentPlatformModel.PageRequest} body
59
+ * @property {ContentPlatformModel.PagePayload} body
64
60
  */
65
61
  /**
66
62
  * @typedef CreateSEOMarkupSchemaParam
@@ -68,23 +64,26 @@ export = ContentPlatformApplicationValidator;
68
64
  */
69
65
  /**
70
66
  * @typedef CreateSlideshowParam
71
- * @property {ContentPlatformModel.SlideshowRequest} body
67
+ * @property {ContentPlatformModel.SlideshowPayload} body
72
68
  */
73
69
  /**
74
70
  * @typedef DeleteAnnouncementParam
75
71
  * @property {string} announcementId - ID allotted to the announcement.
76
72
  */
77
73
  /**
78
- * @typedef DeleteAppCustomFieldDefinitionParam
79
- * @property {string} definitionId
74
+ * @typedef DeleteAppCustomFieldDefinitionBySlugParam
75
+ * @property {string} slug
76
+ * @property {string} resource
77
+ * @property {string} namespace
80
78
  */
81
79
  /**
82
- * @typedef DeleteAppCustomObjectParam
83
- * @property {string} metaobjectId
80
+ * @typedef DeleteAppCustomObjectBySlugParam
81
+ * @property {string} definitionSlug
82
+ * @property {string} slug
84
83
  */
85
84
  /**
86
- * @typedef DeleteAppCustomObjectDefinitionParam
87
- * @property {string} definitionId
85
+ * @typedef DeleteAppCustomObjectDefinitionBySlugParam
86
+ * @property {string} slug
88
87
  */
89
88
  /**
90
89
  * @typedef DeleteBlogParam
@@ -145,8 +144,8 @@ export = ContentPlatformApplicationValidator;
145
144
  * @property {ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody} body
146
145
  */
147
146
  /**
148
- * @typedef ExportAppCustomObjectEntriesParam
149
- * @property {string} definitionId
147
+ * @typedef ExportAppCustomObjectEntriesBySlugParam
148
+ * @property {string} slug
150
149
  */
151
150
  /**
152
151
  * @typedef GenerateSEOTitleParam
@@ -167,34 +166,45 @@ export = ContentPlatformApplicationValidator;
167
166
  * Default value is 10.
168
167
  */
169
168
  /**
170
- * @typedef GetAppCustomFieldDefinitionParam
171
- * @property {string} definitionId
169
+ * @typedef GetAppCustomFieldDefinitionByResourceParam
170
+ * @property {string} pageNo
171
+ * @property {string} pageSize
172
+ * @property {string} resource
173
+ * @property {string} [types]
174
+ * @property {string} [search]
175
+ * @property {string} [slugs]
176
+ * @property {string} [namespaces]
177
+ */
178
+ /**
179
+ * @typedef GetAppCustomFieldDefinitionBySlugParam
180
+ * @property {string} slug
181
+ * @property {string} resource
182
+ * @property {string} namespace
172
183
  */
173
184
  /**
174
185
  * @typedef GetAppCustomFieldDefinitionsParam
175
186
  * @property {string} pageNo
176
187
  * @property {string} pageSize
177
- * @property {string} [resource]
178
- * @property {string} [type]
188
+ * @property {string} [resources]
189
+ * @property {string} [types]
179
190
  * @property {string} [search]
191
+ * @property {string} [slugs]
192
+ * @property {string} [namespaces]
180
193
  */
181
194
  /** @typedef GetAppCustomFieldTypesParam */
182
195
  /**
183
- * @typedef GetAppCustomFieldsParam
196
+ * @typedef GetAppCustomFieldsByResourceSlugParam
184
197
  * @property {string} resource
198
+ * @property {string} resourceSlug
185
199
  */
186
200
  /**
187
- * @typedef GetAppCustomFieldsByResourceIdParam
188
- * @property {string} resource
189
- * @property {string} resourceId
201
+ * @typedef GetAppCustomObjectBySlugParam
202
+ * @property {string} definitionSlug
203
+ * @property {string} slug
190
204
  */
191
205
  /**
192
- * @typedef GetAppCustomObjectParam
193
- * @property {string} metaobjectId
194
- */
195
- /**
196
- * @typedef GetAppCustomObjectDefinitionParam
197
- * @property {string} definitionId
206
+ * @typedef GetAppCustomObjectDefinitionBySlugParam
207
+ * @property {string} slug
198
208
  */
199
209
  /**
200
210
  * @typedef GetAppCustomObjectDefinitionsParam
@@ -203,10 +213,10 @@ export = ContentPlatformApplicationValidator;
203
213
  * @property {string} [search]
204
214
  */
205
215
  /**
206
- * @typedef GetAppCustomObjectsParam
207
- * @property {string} [definitionId]
216
+ * @typedef GetAppCustomObjectsBySlugParam
208
217
  * @property {string} pageNo
209
218
  * @property {string} pageSize
219
+ * @property {string} definitionSlug
210
220
  */
211
221
  /**
212
222
  * @typedef GetAppJobsParam
@@ -278,8 +288,8 @@ export = ContentPlatformApplicationValidator;
278
288
  * @typedef GetNavigationBySlugParam
279
289
  * @property {string} slug - A short, human-readable, URL-friendly identifier of
280
290
  * a navigation. You can get slug value of a navigation from `getNavigations` API.
281
- * @property {string} devicePlatform - Filter navigations by platform.
282
- * Acceptable values are: web, android, ios, all
291
+ * @property {string} [devicePlatform] - Filter navigations by platform.
292
+ * Acceptable values are: web, android, ios.
283
293
  */
284
294
  /**
285
295
  * @typedef GetNavigationsParam
@@ -348,8 +358,8 @@ export = ContentPlatformApplicationValidator;
348
358
  */
349
359
  /** @typedef GetSupportInformationParam */
350
360
  /**
351
- * @typedef ImportAppCustomObjectEntriesParam
352
- * @property {string} definitionId
361
+ * @typedef ImportAppCustomObjectEntriesBySlugParam
362
+ * @property {string} slug
353
363
  * @property {ContentPlatformModel.CustomObjectBulkSchema} body
354
364
  */
355
365
  /**
@@ -362,8 +372,8 @@ export = ContentPlatformApplicationValidator;
362
372
  * @property {string} operationId - Name of operation id of the service.
363
373
  */
364
374
  /**
365
- * @typedef SampleAppCustomObjectBulkEntryParam
366
- * @property {string} definitionId
375
+ * @typedef SampleAppCustomObjectBulkEntryBySlugParam
376
+ * @property {string} slug
367
377
  */
368
378
  /**
369
379
  * @typedef SelectDataLoaderParam
@@ -380,24 +390,33 @@ export = ContentPlatformApplicationValidator;
380
390
  * @property {ContentPlatformModel.ScheduleSchema} body
381
391
  */
382
392
  /**
383
- * @typedef UpdateAppCustomFieldDefinitionParam
384
- * @property {string} definitionId
393
+ * @typedef UpdateAppCustomFieldByResourceSlugParam
394
+ * @property {string} resource
395
+ * @property {string} resourceSlug
396
+ * @property {ContentPlatformModel.CustomFieldRequestSchema} body
397
+ */
398
+ /**
399
+ * @typedef UpdateAppCustomFieldDefinitionBySlugParam
400
+ * @property {string} slug
401
+ * @property {string} resource
402
+ * @property {string} namespace
385
403
  * @property {ContentPlatformModel.CustomFieldDefinitionRequestSchema} body
386
404
  */
387
405
  /**
388
- * @typedef UpdateAppCustomObjectParam
389
- * @property {string} metaobjectId
390
- * @property {ContentPlatformModel.CustomObjectRequestSchema} body
406
+ * @typedef UpdateAppCustomObjectBySlugParam
407
+ * @property {string} definitionSlug
408
+ * @property {string} slug
409
+ * @property {ContentPlatformModel.CustomObjectRequestSchemaWithoutId} body
391
410
  */
392
411
  /**
393
- * @typedef UpdateAppCustomObjectDefinitionParam
394
- * @property {string} definitionId
412
+ * @typedef UpdateAppCustomObjectDefinitionBySlugParam
413
+ * @property {string} slug
395
414
  * @property {ContentPlatformModel.CustomObjectDefinitionUpdateRequestSchema} body
396
415
  */
397
416
  /**
398
417
  * @typedef UpdateBlogParam
399
418
  * @property {string} id - ID allotted to the blog.
400
- * @property {ContentPlatformModel.BlogRequest} body
419
+ * @property {ContentPlatformModel.BlogPayload} body
401
420
  */
402
421
  /**
403
422
  * @typedef UpdateFaqParam
@@ -426,7 +445,7 @@ export = ContentPlatformApplicationValidator;
426
445
  /**
427
446
  * @typedef UpdateNavigationParam
428
447
  * @property {string} id - ID allotted to the navigation.
429
- * @property {ContentPlatformModel.NavigationRequest} body
448
+ * @property {ContentPlatformModel.NavigationPayload} body
430
449
  */
431
450
  /**
432
451
  * @typedef UpdatePageParam
@@ -437,7 +456,7 @@ export = ContentPlatformApplicationValidator;
437
456
  * @typedef UpdatePagePreviewParam
438
457
  * @property {string} slug - A short, human-readable, URL-friendly identifier of
439
458
  * a page. You can get slug value of a page from `getPages` API.
440
- * @property {ContentPlatformModel.PagePublishRequest} body
459
+ * @property {ContentPlatformModel.PagePublishPayload} body
441
460
  */
442
461
  /**
443
462
  * @typedef UpdatePathRedirectionRulesParam
@@ -451,7 +470,7 @@ export = ContentPlatformApplicationValidator;
451
470
  /**
452
471
  * @typedef UpdateSlideshowParam
453
472
  * @property {string} id - ID allotted to the slideshow.
454
- * @property {ContentPlatformModel.SlideshowRequest} body
473
+ * @property {ContentPlatformModel.SlideshowPayload} body
455
474
  */
456
475
  /**
457
476
  * @typedef UpdateSupportInformationParam
@@ -468,12 +487,10 @@ declare class ContentPlatformApplicationValidator {
468
487
  static addPathRedirectionRules(): AddPathRedirectionRulesParam;
469
488
  /** @returns {CreateAnnouncementParam} */
470
489
  static createAnnouncement(): CreateAnnouncementParam;
471
- /** @returns {CreateAppCustomFieldByResourceIdParam} */
472
- static createAppCustomFieldByResourceId(): CreateAppCustomFieldByResourceIdParam;
473
490
  /** @returns {CreateAppCustomFieldDefinitionParam} */
474
491
  static createAppCustomFieldDefinition(): CreateAppCustomFieldDefinitionParam;
475
- /** @returns {CreateAppCustomObjectParam} */
476
- static createAppCustomObject(): CreateAppCustomObjectParam;
492
+ /** @returns {CreateAppCustomObjectBySlugParam} */
493
+ static createAppCustomObjectBySlug(): CreateAppCustomObjectBySlugParam;
477
494
  /** @returns {CreateAppCustomObjectDefinitionParam} */
478
495
  static createAppCustomObjectDefinition(): CreateAppCustomObjectDefinitionParam;
479
496
  /** @returns {CreateBlogParam} */
@@ -494,12 +511,12 @@ declare class ContentPlatformApplicationValidator {
494
511
  static createSlideshow(): CreateSlideshowParam;
495
512
  /** @returns {DeleteAnnouncementParam} */
496
513
  static deleteAnnouncement(): DeleteAnnouncementParam;
497
- /** @returns {DeleteAppCustomFieldDefinitionParam} */
498
- static deleteAppCustomFieldDefinition(): DeleteAppCustomFieldDefinitionParam;
499
- /** @returns {DeleteAppCustomObjectParam} */
500
- static deleteAppCustomObject(): DeleteAppCustomObjectParam;
501
- /** @returns {DeleteAppCustomObjectDefinitionParam} */
502
- static deleteAppCustomObjectDefinition(): DeleteAppCustomObjectDefinitionParam;
514
+ /** @returns {DeleteAppCustomFieldDefinitionBySlugParam} */
515
+ static deleteAppCustomFieldDefinitionBySlug(): DeleteAppCustomFieldDefinitionBySlugParam;
516
+ /** @returns {DeleteAppCustomObjectBySlugParam} */
517
+ static deleteAppCustomObjectBySlug(): DeleteAppCustomObjectBySlugParam;
518
+ /** @returns {DeleteAppCustomObjectDefinitionBySlugParam} */
519
+ static deleteAppCustomObjectDefinitionBySlug(): DeleteAppCustomObjectDefinitionBySlugParam;
503
520
  /** @returns {DeleteBlogParam} */
504
521
  static deleteBlog(): DeleteBlogParam;
505
522
  /** @returns {DeleteDataLoaderParam} */
@@ -526,32 +543,32 @@ declare class ContentPlatformApplicationValidator {
526
543
  static editInjectableTag(): EditInjectableTagParam;
527
544
  /** @returns {EditSEOMarkupSchemaParam} */
528
545
  static editSEOMarkupSchema(): EditSEOMarkupSchemaParam;
529
- /** @returns {ExportAppCustomObjectEntriesParam} */
530
- static exportAppCustomObjectEntries(): ExportAppCustomObjectEntriesParam;
546
+ /** @returns {ExportAppCustomObjectEntriesBySlugParam} */
547
+ static exportAppCustomObjectEntriesBySlug(): ExportAppCustomObjectEntriesBySlugParam;
531
548
  /** @returns {GenerateSEOTitleParam} */
532
549
  static generateSEOTitle(): GenerateSEOTitleParam;
533
550
  /** @returns {GetAnnouncementByIdParam} */
534
551
  static getAnnouncementById(): GetAnnouncementByIdParam;
535
552
  /** @returns {GetAnnouncementsListParam} */
536
553
  static getAnnouncementsList(): GetAnnouncementsListParam;
537
- /** @returns {GetAppCustomFieldDefinitionParam} */
538
- static getAppCustomFieldDefinition(): GetAppCustomFieldDefinitionParam;
554
+ /** @returns {GetAppCustomFieldDefinitionByResourceParam} */
555
+ static getAppCustomFieldDefinitionByResource(): GetAppCustomFieldDefinitionByResourceParam;
556
+ /** @returns {GetAppCustomFieldDefinitionBySlugParam} */
557
+ static getAppCustomFieldDefinitionBySlug(): GetAppCustomFieldDefinitionBySlugParam;
539
558
  /** @returns {GetAppCustomFieldDefinitionsParam} */
540
559
  static getAppCustomFieldDefinitions(): GetAppCustomFieldDefinitionsParam;
541
560
  /** @returns {GetAppCustomFieldTypesParam} */
542
561
  static getAppCustomFieldTypes(): any;
543
- /** @returns {GetAppCustomFieldsParam} */
544
- static getAppCustomFields(): GetAppCustomFieldsParam;
545
- /** @returns {GetAppCustomFieldsByResourceIdParam} */
546
- static getAppCustomFieldsByResourceId(): GetAppCustomFieldsByResourceIdParam;
547
- /** @returns {GetAppCustomObjectParam} */
548
- static getAppCustomObject(): GetAppCustomObjectParam;
549
- /** @returns {GetAppCustomObjectDefinitionParam} */
550
- static getAppCustomObjectDefinition(): GetAppCustomObjectDefinitionParam;
562
+ /** @returns {GetAppCustomFieldsByResourceSlugParam} */
563
+ static getAppCustomFieldsByResourceSlug(): GetAppCustomFieldsByResourceSlugParam;
564
+ /** @returns {GetAppCustomObjectBySlugParam} */
565
+ static getAppCustomObjectBySlug(): GetAppCustomObjectBySlugParam;
566
+ /** @returns {GetAppCustomObjectDefinitionBySlugParam} */
567
+ static getAppCustomObjectDefinitionBySlug(): GetAppCustomObjectDefinitionBySlugParam;
551
568
  /** @returns {GetAppCustomObjectDefinitionsParam} */
552
569
  static getAppCustomObjectDefinitions(): GetAppCustomObjectDefinitionsParam;
553
- /** @returns {GetAppCustomObjectsParam} */
554
- static getAppCustomObjects(): GetAppCustomObjectsParam;
570
+ /** @returns {GetAppCustomObjectsBySlugParam} */
571
+ static getAppCustomObjectsBySlug(): GetAppCustomObjectsBySlugParam;
555
572
  /** @returns {GetAppJobsParam} */
556
573
  static getAppJobs(): GetAppJobsParam;
557
574
  /** @returns {GetAppResourcesParam} */
@@ -610,26 +627,28 @@ declare class ContentPlatformApplicationValidator {
610
627
  static getSlideshows(): GetSlideshowsParam;
611
628
  /** @returns {GetSupportInformationParam} */
612
629
  static getSupportInformation(): any;
613
- /** @returns {ImportAppCustomObjectEntriesParam} */
614
- static importAppCustomObjectEntries(): ImportAppCustomObjectEntriesParam;
630
+ /** @returns {ImportAppCustomObjectEntriesBySlugParam} */
631
+ static importAppCustomObjectEntriesBySlug(): ImportAppCustomObjectEntriesBySlugParam;
615
632
  /** @returns {RemoveInjectableTagParam} */
616
633
  static removeInjectableTag(): RemoveInjectableTagParam;
617
634
  /** @returns {ResetDataLoaderParam} */
618
635
  static resetDataLoader(): ResetDataLoaderParam;
619
- /** @returns {SampleAppCustomObjectBulkEntryParam} */
620
- static sampleAppCustomObjectBulkEntry(): SampleAppCustomObjectBulkEntryParam;
636
+ /** @returns {SampleAppCustomObjectBulkEntryBySlugParam} */
637
+ static sampleAppCustomObjectBulkEntryBySlug(): SampleAppCustomObjectBulkEntryBySlugParam;
621
638
  /** @returns {SelectDataLoaderParam} */
622
639
  static selectDataLoader(): SelectDataLoaderParam;
623
640
  /** @returns {UpdateAnnouncementParam} */
624
641
  static updateAnnouncement(): UpdateAnnouncementParam;
625
642
  /** @returns {UpdateAnnouncementScheduleParam} */
626
643
  static updateAnnouncementSchedule(): UpdateAnnouncementScheduleParam;
627
- /** @returns {UpdateAppCustomFieldDefinitionParam} */
628
- static updateAppCustomFieldDefinition(): UpdateAppCustomFieldDefinitionParam;
629
- /** @returns {UpdateAppCustomObjectParam} */
630
- static updateAppCustomObject(): UpdateAppCustomObjectParam;
631
- /** @returns {UpdateAppCustomObjectDefinitionParam} */
632
- static updateAppCustomObjectDefinition(): UpdateAppCustomObjectDefinitionParam;
644
+ /** @returns {UpdateAppCustomFieldByResourceSlugParam} */
645
+ static updateAppCustomFieldByResourceSlug(): UpdateAppCustomFieldByResourceSlugParam;
646
+ /** @returns {UpdateAppCustomFieldDefinitionBySlugParam} */
647
+ static updateAppCustomFieldDefinitionBySlug(): UpdateAppCustomFieldDefinitionBySlugParam;
648
+ /** @returns {UpdateAppCustomObjectBySlugParam} */
649
+ static updateAppCustomObjectBySlug(): UpdateAppCustomObjectBySlugParam;
650
+ /** @returns {UpdateAppCustomObjectDefinitionBySlugParam} */
651
+ static updateAppCustomObjectDefinitionBySlug(): UpdateAppCustomObjectDefinitionBySlugParam;
633
652
  /** @returns {UpdateBlogParam} */
634
653
  static updateBlog(): UpdateBlogParam;
635
654
  /** @returns {UpdateFaqParam} */
@@ -658,7 +677,7 @@ declare class ContentPlatformApplicationValidator {
658
677
  static updateSupportInformation(): UpdateSupportInformationParam;
659
678
  }
660
679
  declare namespace ContentPlatformApplicationValidator {
661
- export { AddDataLoaderParam, AddFaqParam, AddInjectableTagParam, AddPathRedirectionRulesParam, CreateAnnouncementParam, CreateAppCustomFieldByResourceIdParam, CreateAppCustomFieldDefinitionParam, CreateAppCustomObjectParam, CreateAppCustomObjectDefinitionParam, CreateBlogParam, CreateFaqCategoryParam, CreateLandingPageParam, CreateNavigationParam, CreatePageParam, CreatePagePreviewParam, CreateSEOMarkupSchemaParam, CreateSlideshowParam, DeleteAnnouncementParam, DeleteAppCustomFieldDefinitionParam, DeleteAppCustomObjectParam, DeleteAppCustomObjectDefinitionParam, DeleteBlogParam, DeleteDataLoaderParam, DeleteFaqParam, DeleteFaqCategoryParam, DeleteLandingPageParam, DeleteNavigationParam, DeletePageParam, DeletePathRedirectionRulesParam, DeleteSEOMarkupSchemaParam, DeleteSlideshowParam, EditDataLoaderParam, EditInjectableTagParam, EditSEOMarkupSchemaParam, ExportAppCustomObjectEntriesParam, GenerateSEOTitleParam, GetAnnouncementByIdParam, GetAnnouncementsListParam, GetAppCustomFieldDefinitionParam, GetAppCustomFieldDefinitionsParam, GetAppCustomFieldTypesParam, GetAppCustomFieldsParam, GetAppCustomFieldsByResourceIdParam, GetAppCustomObjectParam, GetAppCustomObjectDefinitionParam, GetAppCustomObjectDefinitionsParam, GetAppCustomObjectsParam, 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, GetSlideshowBySlugParam, GetSlideshowsParam, GetSupportInformationParam, ImportAppCustomObjectEntriesParam, RemoveInjectableTagParam, ResetDataLoaderParam, SampleAppCustomObjectBulkEntryParam, SelectDataLoaderParam, UpdateAnnouncementParam, UpdateAnnouncementScheduleParam, UpdateAppCustomFieldDefinitionParam, UpdateAppCustomObjectParam, UpdateAppCustomObjectDefinitionParam, UpdateBlogParam, UpdateFaqParam, UpdateFaqCategoryParam, UpdateInjectableTagParam, UpdateLandingPageParam, UpdateLegalInformationParam, UpdateNavigationParam, UpdatePageParam, UpdatePagePreviewParam, UpdatePathRedirectionRulesParam, UpdateSEOConfigurationParam, UpdateSlideshowParam, UpdateSupportInformationParam };
680
+ export { AddDataLoaderParam, AddFaqParam, AddInjectableTagParam, AddPathRedirectionRulesParam, CreateAnnouncementParam, CreateAppCustomFieldDefinitionParam, CreateAppCustomObjectBySlugParam, CreateAppCustomObjectDefinitionParam, CreateBlogParam, CreateFaqCategoryParam, CreateLandingPageParam, CreateNavigationParam, CreatePageParam, CreatePagePreviewParam, CreateSEOMarkupSchemaParam, CreateSlideshowParam, DeleteAnnouncementParam, DeleteAppCustomFieldDefinitionBySlugParam, DeleteAppCustomObjectBySlugParam, DeleteAppCustomObjectDefinitionBySlugParam, DeleteBlogParam, DeleteDataLoaderParam, DeleteFaqParam, DeleteFaqCategoryParam, DeleteLandingPageParam, DeleteNavigationParam, DeletePageParam, DeletePathRedirectionRulesParam, DeleteSEOMarkupSchemaParam, DeleteSlideshowParam, 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, GetSlideshowBySlugParam, GetSlideshowsParam, GetSupportInformationParam, ImportAppCustomObjectEntriesBySlugParam, RemoveInjectableTagParam, ResetDataLoaderParam, SampleAppCustomObjectBulkEntryBySlugParam, SelectDataLoaderParam, UpdateAnnouncementParam, UpdateAnnouncementScheduleParam, UpdateAppCustomFieldByResourceSlugParam, UpdateAppCustomFieldDefinitionBySlugParam, UpdateAppCustomObjectBySlugParam, UpdateAppCustomObjectDefinitionBySlugParam, UpdateBlogParam, UpdateFaqParam, UpdateFaqCategoryParam, UpdateInjectableTagParam, UpdateLandingPageParam, UpdateLegalInformationParam, UpdateNavigationParam, UpdatePageParam, UpdatePagePreviewParam, UpdatePathRedirectionRulesParam, UpdateSEOConfigurationParam, UpdateSlideshowParam, UpdateSupportInformationParam };
662
681
  }
663
682
  type AddDataLoaderParam = {
664
683
  body: ContentPlatformModel.DataLoaderSchema;
@@ -679,22 +698,19 @@ type AddPathRedirectionRulesParam = {
679
698
  type CreateAnnouncementParam = {
680
699
  body: ContentPlatformModel.AdminAnnouncementSchema;
681
700
  };
682
- type CreateAppCustomFieldByResourceIdParam = {
683
- resource: string;
684
- resourceId: string;
685
- body: ContentPlatformModel.CustomFieldRequestSchema;
686
- };
687
701
  type CreateAppCustomFieldDefinitionParam = {
702
+ resource: string;
688
703
  body: ContentPlatformModel.CustomFieldDefinitionRequestSchema;
689
704
  };
690
- type CreateAppCustomObjectParam = {
691
- body: ContentPlatformModel.CustomObjectRequestSchema;
705
+ type CreateAppCustomObjectBySlugParam = {
706
+ definitionSlug: string;
707
+ body: ContentPlatformModel.CustomObjectRequestSchemaWithoutId;
692
708
  };
693
709
  type CreateAppCustomObjectDefinitionParam = {
694
710
  body: ContentPlatformModel.CustomObjectDefinitionRequestSchema;
695
711
  };
696
712
  type CreateBlogParam = {
697
- body: ContentPlatformModel.BlogRequest;
713
+ body: ContentPlatformModel.BlogPayload;
698
714
  };
699
715
  type CreateFaqCategoryParam = {
700
716
  body: ContentPlatformModel.CreateFaqCategoryRequestSchema;
@@ -703,19 +719,19 @@ type CreateLandingPageParam = {
703
719
  body: ContentPlatformModel.LandingPageSchema;
704
720
  };
705
721
  type CreateNavigationParam = {
706
- body: ContentPlatformModel.NavigationRequest;
722
+ body: ContentPlatformModel.NavigationPayload;
707
723
  };
708
724
  type CreatePageParam = {
709
- body: ContentPlatformModel.PageRequest;
725
+ body: ContentPlatformModel.PagePayload;
710
726
  };
711
727
  type CreatePagePreviewParam = {
712
- body: ContentPlatformModel.PageRequest;
728
+ body: ContentPlatformModel.PagePayload;
713
729
  };
714
730
  type CreateSEOMarkupSchemaParam = {
715
731
  body: ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody;
716
732
  };
717
733
  type CreateSlideshowParam = {
718
- body: ContentPlatformModel.SlideshowRequest;
734
+ body: ContentPlatformModel.SlideshowPayload;
719
735
  };
720
736
  type DeleteAnnouncementParam = {
721
737
  /**
@@ -723,14 +739,17 @@ type DeleteAnnouncementParam = {
723
739
  */
724
740
  announcementId: string;
725
741
  };
726
- type DeleteAppCustomFieldDefinitionParam = {
727
- definitionId: string;
742
+ type DeleteAppCustomFieldDefinitionBySlugParam = {
743
+ slug: string;
744
+ resource: string;
745
+ namespace: string;
728
746
  };
729
- type DeleteAppCustomObjectParam = {
730
- metaobjectId: string;
747
+ type DeleteAppCustomObjectBySlugParam = {
748
+ definitionSlug: string;
749
+ slug: string;
731
750
  };
732
- type DeleteAppCustomObjectDefinitionParam = {
733
- definitionId: string;
751
+ type DeleteAppCustomObjectDefinitionBySlugParam = {
752
+ slug: string;
734
753
  };
735
754
  type DeleteBlogParam = {
736
755
  /**
@@ -819,8 +838,8 @@ type EditSEOMarkupSchemaParam = {
819
838
  id: string;
820
839
  body: ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody;
821
840
  };
822
- type ExportAppCustomObjectEntriesParam = {
823
- definitionId: string;
841
+ type ExportAppCustomObjectEntriesBySlugParam = {
842
+ slug: string;
824
843
  };
825
844
  type GenerateSEOTitleParam = {
826
845
  /**
@@ -849,38 +868,49 @@ type GetAnnouncementsListParam = {
849
868
  */
850
869
  pageSize?: number;
851
870
  };
852
- type GetAppCustomFieldDefinitionParam = {
853
- definitionId: string;
854
- };
855
- type GetAppCustomFieldDefinitionsParam = {
871
+ type GetAppCustomFieldDefinitionByResourceParam = {
856
872
  pageNo: string;
857
873
  pageSize: string;
858
- resource?: string;
859
- type?: string;
874
+ resource: string;
875
+ types?: string;
860
876
  search?: string;
877
+ slugs?: string;
878
+ namespaces?: string;
861
879
  };
862
- type GetAppCustomFieldsParam = {
880
+ type GetAppCustomFieldDefinitionBySlugParam = {
881
+ slug: string;
863
882
  resource: string;
883
+ namespace: string;
884
+ };
885
+ type GetAppCustomFieldDefinitionsParam = {
886
+ pageNo: string;
887
+ pageSize: string;
888
+ resources?: string;
889
+ types?: string;
890
+ search?: string;
891
+ slugs?: string;
892
+ namespaces?: string;
864
893
  };
865
- type GetAppCustomFieldsByResourceIdParam = {
894
+ type GetAppCustomFieldsByResourceSlugParam = {
866
895
  resource: string;
867
- resourceId: string;
896
+ resourceSlug: string;
868
897
  };
869
- type GetAppCustomObjectParam = {
870
- metaobjectId: string;
898
+ type GetAppCustomObjectBySlugParam = {
899
+ definitionSlug: string;
900
+ slug: string;
871
901
  };
872
- type GetAppCustomObjectDefinitionParam = {
873
- definitionId: string;
902
+ type GetAppCustomObjectDefinitionBySlugParam = {
903
+ slug: string;
874
904
  };
875
905
  type GetAppCustomObjectDefinitionsParam = {
876
906
  pageNo: string;
877
907
  pageSize: string;
878
908
  search?: string;
879
909
  };
880
- type GetAppCustomObjectsParam = {
881
- definitionId?: string;
910
+ type GetAppCustomObjectsBySlugParam = {
882
911
  pageNo: string;
883
912
  pageSize: string;
913
+ definitionSlug: string;
884
914
  };
885
915
  type GetAppJobsParam = {
886
916
  page: string;
@@ -989,9 +1019,9 @@ type GetNavigationBySlugParam = {
989
1019
  slug: string;
990
1020
  /**
991
1021
  * - Filter navigations by platform.
992
- * Acceptable values are: web, android, ios, all
1022
+ * Acceptable values are: web, android, ios.
993
1023
  */
994
- devicePlatform: string;
1024
+ devicePlatform?: string;
995
1025
  };
996
1026
  type GetNavigationsParam = {
997
1027
  /**
@@ -1103,8 +1133,8 @@ type GetSlideshowsParam = {
1103
1133
  */
1104
1134
  pageSize?: number;
1105
1135
  };
1106
- type ImportAppCustomObjectEntriesParam = {
1107
- definitionId: string;
1136
+ type ImportAppCustomObjectEntriesBySlugParam = {
1137
+ slug: string;
1108
1138
  body: ContentPlatformModel.CustomObjectBulkSchema;
1109
1139
  };
1110
1140
  type RemoveInjectableTagParam = {
@@ -1120,8 +1150,8 @@ type ResetDataLoaderParam = {
1120
1150
  */
1121
1151
  operationId: string;
1122
1152
  };
1123
- type SampleAppCustomObjectBulkEntryParam = {
1124
- definitionId: string;
1153
+ type SampleAppCustomObjectBulkEntryBySlugParam = {
1154
+ slug: string;
1125
1155
  };
1126
1156
  type SelectDataLoaderParam = {
1127
1157
  /**
@@ -1143,16 +1173,24 @@ type UpdateAnnouncementScheduleParam = {
1143
1173
  announcementId: string;
1144
1174
  body: ContentPlatformModel.ScheduleSchema;
1145
1175
  };
1146
- type UpdateAppCustomFieldDefinitionParam = {
1147
- definitionId: string;
1176
+ type UpdateAppCustomFieldByResourceSlugParam = {
1177
+ resource: string;
1178
+ resourceSlug: string;
1179
+ body: ContentPlatformModel.CustomFieldRequestSchema;
1180
+ };
1181
+ type UpdateAppCustomFieldDefinitionBySlugParam = {
1182
+ slug: string;
1183
+ resource: string;
1184
+ namespace: string;
1148
1185
  body: ContentPlatformModel.CustomFieldDefinitionRequestSchema;
1149
1186
  };
1150
- type UpdateAppCustomObjectParam = {
1151
- metaobjectId: string;
1152
- body: ContentPlatformModel.CustomObjectRequestSchema;
1187
+ type UpdateAppCustomObjectBySlugParam = {
1188
+ definitionSlug: string;
1189
+ slug: string;
1190
+ body: ContentPlatformModel.CustomObjectRequestSchemaWithoutId;
1153
1191
  };
1154
- type UpdateAppCustomObjectDefinitionParam = {
1155
- definitionId: string;
1192
+ type UpdateAppCustomObjectDefinitionBySlugParam = {
1193
+ slug: string;
1156
1194
  body: ContentPlatformModel.CustomObjectDefinitionUpdateRequestSchema;
1157
1195
  };
1158
1196
  type UpdateBlogParam = {
@@ -1160,7 +1198,7 @@ type UpdateBlogParam = {
1160
1198
  * - ID allotted to the blog.
1161
1199
  */
1162
1200
  id: string;
1163
- body: ContentPlatformModel.BlogRequest;
1201
+ body: ContentPlatformModel.BlogPayload;
1164
1202
  };
1165
1203
  type UpdateFaqParam = {
1166
1204
  /**
@@ -1198,7 +1236,7 @@ type UpdateNavigationParam = {
1198
1236
  * - ID allotted to the navigation.
1199
1237
  */
1200
1238
  id: string;
1201
- body: ContentPlatformModel.NavigationRequest;
1239
+ body: ContentPlatformModel.NavigationPayload;
1202
1240
  };
1203
1241
  type UpdatePageParam = {
1204
1242
  /**
@@ -1213,7 +1251,7 @@ type UpdatePagePreviewParam = {
1213
1251
  * a page. You can get slug value of a page from `getPages` API.
1214
1252
  */
1215
1253
  slug: string;
1216
- body: ContentPlatformModel.PagePublishRequest;
1254
+ body: ContentPlatformModel.PagePublishPayload;
1217
1255
  };
1218
1256
  type UpdatePathRedirectionRulesParam = {
1219
1257
  /**
@@ -1230,7 +1268,7 @@ type UpdateSlideshowParam = {
1230
1268
  * - ID allotted to the slideshow.
1231
1269
  */
1232
1270
  id: string;
1233
- body: ContentPlatformModel.SlideshowRequest;
1271
+ body: ContentPlatformModel.SlideshowPayload;
1234
1272
  };
1235
1273
  type UpdateSupportInformationParam = {
1236
1274
  body: ContentPlatformModel.Support;