@gofynd/fdk-client-javascript 1.3.11-beta.7 → 1.4.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 (231) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/sdk/application/Cart/CartApplicationClient.d.ts +1 -1
  4. package/sdk/application/Cart/CartApplicationClient.js +5 -3
  5. package/sdk/application/Cart/CartApplicationModel.d.ts +107 -1
  6. package/sdk/application/Cart/CartApplicationModel.js +74 -0
  7. package/sdk/application/Cart/CartApplicationValidator.d.ts +4 -0
  8. package/sdk/application/Cart/CartApplicationValidator.js +4 -0
  9. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +3 -6
  10. package/sdk/application/Catalog/CatalogApplicationClient.js +7 -20
  11. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +2 -2
  12. package/sdk/application/Catalog/CatalogApplicationModel.js +2 -2
  13. package/sdk/application/Catalog/CatalogApplicationValidator.d.ts +0 -14
  14. package/sdk/application/Catalog/CatalogApplicationValidator.js +0 -6
  15. package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +183 -49
  16. package/sdk/application/Configuration/ConfigurationApplicationModel.js +173 -31
  17. package/sdk/application/Content/ContentApplicationClient.d.ts +36 -0
  18. package/sdk/application/Content/ContentApplicationClient.js +246 -0
  19. package/sdk/application/Content/ContentApplicationModel.d.ts +208 -1
  20. package/sdk/application/Content/ContentApplicationModel.js +252 -0
  21. package/sdk/application/Content/ContentApplicationValidator.d.ts +40 -1
  22. package/sdk/application/Content/ContentApplicationValidator.js +41 -0
  23. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +67 -0
  24. package/sdk/application/Logistic/LogisticApplicationClient.js +547 -0
  25. package/sdk/application/Logistic/LogisticApplicationModel.d.ts +456 -1
  26. package/sdk/application/Logistic/LogisticApplicationModel.js +488 -0
  27. package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +211 -1
  28. package/sdk/application/Logistic/LogisticApplicationValidator.js +131 -0
  29. package/sdk/application/Order/OrderApplicationClient.d.ts +3 -3
  30. package/sdk/application/Order/OrderApplicationClient.js +32 -8
  31. package/sdk/application/Order/OrderApplicationModel.d.ts +6 -0
  32. package/sdk/application/Order/OrderApplicationModel.js +6 -0
  33. package/sdk/application/Order/OrderApplicationValidator.d.ts +20 -0
  34. package/sdk/application/Order/OrderApplicationValidator.js +8 -0
  35. package/sdk/application/Payment/PaymentApplicationClient.d.ts +46 -2
  36. package/sdk/application/Payment/PaymentApplicationClient.js +341 -10
  37. package/sdk/application/Payment/PaymentApplicationModel.d.ts +493 -186
  38. package/sdk/application/Payment/PaymentApplicationModel.js +341 -70
  39. package/sdk/application/Payment/PaymentApplicationValidator.d.ts +59 -14
  40. package/sdk/application/Payment/PaymentApplicationValidator.js +64 -10
  41. package/sdk/application/PosCart/PosCartApplicationModel.d.ts +34 -1
  42. package/sdk/application/PosCart/PosCartApplicationModel.js +24 -0
  43. package/sdk/application/Theme/ThemeApplicationClient.d.ts +1 -1
  44. package/sdk/application/Theme/ThemeApplicationClient.js +7 -3
  45. package/sdk/application/Theme/ThemeApplicationModel.d.ts +222 -36
  46. package/sdk/application/Theme/ThemeApplicationModel.js +322 -26
  47. package/sdk/application/Theme/ThemeApplicationValidator.d.ts +10 -0
  48. package/sdk/application/Theme/ThemeApplicationValidator.js +4 -0
  49. package/sdk/application/User/UserApplicationClient.d.ts +33 -0
  50. package/sdk/application/User/UserApplicationClient.js +239 -0
  51. package/sdk/application/User/UserApplicationModel.d.ts +28 -13
  52. package/sdk/application/User/UserApplicationModel.js +36 -12
  53. package/sdk/application/User/UserApplicationValidator.d.ts +34 -1
  54. package/sdk/application/User/UserApplicationValidator.js +36 -0
  55. package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +3 -15
  56. package/sdk/partner/FileStorage/FileStoragePartnerModel.js +2 -14
  57. package/sdk/partner/Lead/LeadPartnerClient.d.ts +125 -0
  58. package/sdk/partner/Lead/LeadPartnerClient.js +785 -0
  59. package/sdk/partner/Lead/LeadPartnerModel.d.ts +1127 -0
  60. package/sdk/partner/Lead/LeadPartnerModel.js +896 -0
  61. package/sdk/partner/Lead/LeadPartnerValidator.d.ts +12 -0
  62. package/sdk/partner/Lead/LeadPartnerValidator.js +67 -0
  63. package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +155 -0
  64. package/sdk/partner/Logistics/LogisticsPartnerClient.js +1195 -0
  65. package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +372 -0
  66. package/sdk/partner/Logistics/LogisticsPartnerModel.js +442 -0
  67. package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +16 -0
  68. package/sdk/partner/Logistics/LogisticsPartnerValidator.js +123 -0
  69. package/sdk/partner/PartnerClient.d.ts +6 -0
  70. package/sdk/partner/PartnerClient.js +9 -0
  71. package/sdk/partner/Theme/ThemePartnerClient.d.ts +10 -0
  72. package/sdk/partner/Theme/ThemePartnerClient.js +80 -0
  73. package/sdk/partner/Theme/ThemePartnerModel.d.ts +100 -43
  74. package/sdk/partner/Theme/ThemePartnerModel.js +74 -30
  75. package/sdk/partner/Theme/ThemePartnerValidator.d.ts +1 -0
  76. package/sdk/partner/Theme/ThemePartnerValidator.js +9 -0
  77. package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +99 -0
  78. package/sdk/partner/Webhook/WebhookPartnerClient.js +753 -0
  79. package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +566 -0
  80. package/sdk/partner/Webhook/WebhookPartnerModel.js +583 -0
  81. package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +12 -0
  82. package/sdk/partner/Webhook/WebhookPartnerValidator.js +74 -0
  83. package/sdk/partner/index.d.ts +3 -0
  84. package/sdk/partner/index.js +6 -0
  85. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +2 -2
  86. package/sdk/platform/Billing/BillingPlatformClient.d.ts +11 -1
  87. package/sdk/platform/Billing/BillingPlatformClient.js +110 -3
  88. package/sdk/platform/Billing/BillingPlatformModel.d.ts +67 -1
  89. package/sdk/platform/Billing/BillingPlatformModel.js +78 -0
  90. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +43 -4
  91. package/sdk/platform/Billing/BillingPlatformValidator.js +29 -2
  92. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +1 -1
  93. package/sdk/platform/Cart/CartPlatformApplicationClient.js +7 -1
  94. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +4 -0
  95. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +4 -0
  96. package/sdk/platform/Cart/CartPlatformModel.d.ts +100 -5
  97. package/sdk/platform/Cart/CartPlatformModel.js +71 -4
  98. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +15 -11
  99. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +52 -21
  100. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +27 -0
  101. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +11 -0
  102. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +26 -4
  103. package/sdk/platform/Catalog/CatalogPlatformClient.js +173 -7
  104. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +304 -1
  105. package/sdk/platform/Catalog/CatalogPlatformModel.js +335 -0
  106. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +31 -3
  107. package/sdk/platform/Catalog/CatalogPlatformValidator.js +27 -2
  108. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +138 -36
  109. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +739 -57
  110. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +128 -3
  111. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +111 -1
  112. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +150 -1
  113. package/sdk/platform/Communication/CommunicationPlatformModel.js +172 -0
  114. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +8 -2
  115. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +32 -4
  116. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +38 -9
  117. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +42 -8
  118. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +14 -0
  119. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +6 -0
  120. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +8 -8
  121. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +4 -4
  122. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +371 -132
  123. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +288 -77
  124. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +2 -2
  125. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +2 -2
  126. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +391 -0
  127. package/sdk/platform/Content/ContentPlatformApplicationClient.js +3641 -1059
  128. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +351 -1
  129. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +410 -0
  130. package/sdk/platform/Content/ContentPlatformClient.d.ts +277 -0
  131. package/sdk/platform/Content/ContentPlatformClient.js +2011 -0
  132. package/sdk/platform/Content/ContentPlatformModel.d.ts +1100 -1
  133. package/sdk/platform/Content/ContentPlatformModel.js +1362 -46
  134. package/sdk/platform/Content/ContentPlatformValidator.d.ts +247 -0
  135. package/sdk/platform/Content/ContentPlatformValidator.js +319 -0
  136. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +2 -2
  137. package/sdk/platform/Discount/DiscountPlatformClient.js +2 -2
  138. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +96 -13
  139. package/sdk/platform/Discount/DiscountPlatformModel.js +104 -12
  140. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +16 -6
  141. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +117 -8
  142. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +55 -4
  143. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +39 -2
  144. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +18 -19
  145. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +20 -18
  146. package/sdk/platform/Finance/FinancePlatformClient.d.ts +33 -0
  147. package/sdk/platform/Finance/FinancePlatformClient.js +240 -0
  148. package/sdk/platform/Finance/FinancePlatformModel.d.ts +151 -5
  149. package/sdk/platform/Finance/FinancePlatformModel.js +190 -4
  150. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +38 -1
  151. package/sdk/platform/Finance/FinancePlatformValidator.js +38 -0
  152. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +38 -28
  153. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +137 -56
  154. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +41 -29
  155. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +33 -21
  156. package/sdk/platform/Lead/LeadPlatformModel.d.ts +12 -3
  157. package/sdk/platform/Lead/LeadPlatformModel.js +16 -2
  158. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +23 -1
  159. package/sdk/platform/Order/OrderPlatformApplicationClient.js +178 -1
  160. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +39 -1
  161. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +32 -0
  162. package/sdk/platform/Order/OrderPlatformClient.d.ts +202 -31
  163. package/sdk/platform/Order/OrderPlatformClient.js +2010 -586
  164. package/sdk/platform/Order/OrderPlatformModel.d.ts +1032 -470
  165. package/sdk/platform/Order/OrderPlatformModel.js +1187 -534
  166. package/sdk/platform/Order/OrderPlatformValidator.d.ts +318 -35
  167. package/sdk/platform/Order/OrderPlatformValidator.js +292 -29
  168. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +119 -13
  169. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +749 -39
  170. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +143 -7
  171. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +133 -6
  172. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +1 -1
  173. package/sdk/platform/Payment/PaymentPlatformClient.js +1 -1
  174. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +996 -134
  175. package/sdk/platform/Payment/PaymentPlatformModel.js +721 -58
  176. package/sdk/platform/PlatformApplicationClient.d.ts +2 -2
  177. package/sdk/platform/PlatformApplicationClient.js +4 -4
  178. package/sdk/platform/PlatformClient.d.ts +4 -2
  179. package/sdk/platform/PlatformClient.js +8 -4
  180. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +142 -66
  181. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +645 -147
  182. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +131 -63
  183. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +126 -47
  184. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +217 -105
  185. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +1136 -347
  186. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +912 -313
  187. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +1071 -355
  188. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +382 -133
  189. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +266 -102
  190. package/sdk/platform/Theme/ThemePlatformClient.d.ts +11 -1
  191. package/sdk/platform/Theme/ThemePlatformClient.js +87 -3
  192. package/sdk/platform/Theme/ThemePlatformModel.d.ts +333 -47
  193. package/sdk/platform/Theme/ThemePlatformModel.js +395 -35
  194. package/sdk/platform/Theme/ThemePlatformValidator.d.ts +28 -4
  195. package/sdk/platform/Theme/ThemePlatformValidator.js +21 -2
  196. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +116 -1
  197. package/sdk/platform/User/UserPlatformApplicationClient.js +931 -85
  198. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +224 -7
  199. package/sdk/platform/User/UserPlatformApplicationValidator.js +173 -5
  200. package/sdk/platform/User/UserPlatformModel.d.ts +344 -7
  201. package/sdk/platform/User/UserPlatformModel.js +256 -5
  202. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +47 -39
  203. package/sdk/platform/Webhook/WebhookPlatformClient.js +63 -61
  204. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +264 -156
  205. package/sdk/platform/Webhook/WebhookPlatformModel.js +276 -153
  206. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +7 -10
  207. package/sdk/platform/Webhook/WebhookPlatformValidator.js +6 -6
  208. package/sdk/platform/index.d.ts +1 -1
  209. package/sdk/platform/index.js +2 -2
  210. package/sdk/public/Billing/BillingPublicClient.d.ts +23 -0
  211. package/sdk/public/Billing/BillingPublicClient.js +116 -0
  212. package/sdk/public/Billing/BillingPublicModel.d.ts +92 -0
  213. package/sdk/public/Billing/BillingPublicModel.js +96 -0
  214. package/sdk/public/Billing/BillingPublicValidator.d.ts +18 -0
  215. package/sdk/public/Billing/BillingPublicValidator.js +19 -0
  216. package/sdk/public/Content/ContentPublicClient.d.ts +22 -0
  217. package/sdk/public/Content/ContentPublicClient.js +114 -0
  218. package/sdk/public/Content/ContentPublicModel.d.ts +53 -0
  219. package/sdk/public/Content/ContentPublicModel.js +60 -0
  220. package/sdk/public/Content/ContentPublicValidator.d.ts +18 -0
  221. package/sdk/public/Content/ContentPublicValidator.js +19 -0
  222. package/sdk/public/PublicClient.d.ts +4 -0
  223. package/sdk/public/PublicClient.js +8 -0
  224. package/sdk/public/Webhook/WebhookPublicClient.d.ts +33 -0
  225. package/sdk/public/Webhook/WebhookPublicClient.js +242 -0
  226. package/sdk/public/Webhook/WebhookPublicModel.d.ts +147 -1
  227. package/sdk/public/Webhook/WebhookPublicModel.js +177 -1
  228. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +23 -1
  229. package/sdk/public/Webhook/WebhookPublicValidator.js +31 -0
  230. package/sdk/public/index.d.ts +2 -0
  231. package/sdk/public/index.js +4 -0
@@ -20,6 +20,24 @@ 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
+ /**
30
+ * @typedef CreateAppCustomFieldDefinitionParam
31
+ * @property {ContentPlatformModel.CustomFieldDefinitionRequestSchema} body
32
+ */
33
+ /**
34
+ * @typedef CreateAppCustomObjectParam
35
+ * @property {ContentPlatformModel.CustomObjectRequestSchema} body
36
+ */
37
+ /**
38
+ * @typedef CreateAppCustomObjectDefinitionParam
39
+ * @property {ContentPlatformModel.CustomObjectDefinitionRequestSchema} body
40
+ */
23
41
  /**
24
42
  * @typedef CreateBlogParam
25
43
  * @property {ContentPlatformModel.BlogRequest} body
@@ -44,6 +62,10 @@ export = ContentPlatformApplicationValidator;
44
62
  * @typedef CreatePagePreviewParam
45
63
  * @property {ContentPlatformModel.PageRequest} body
46
64
  */
65
+ /**
66
+ * @typedef CreateSEOMarkupSchemaParam
67
+ * @property {ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody} body
68
+ */
47
69
  /**
48
70
  * @typedef CreateSlideshowParam
49
71
  * @property {ContentPlatformModel.SlideshowRequest} body
@@ -52,6 +74,18 @@ export = ContentPlatformApplicationValidator;
52
74
  * @typedef DeleteAnnouncementParam
53
75
  * @property {string} announcementId - ID allotted to the announcement.
54
76
  */
77
+ /**
78
+ * @typedef DeleteAppCustomFieldDefinitionParam
79
+ * @property {string} definitionId
80
+ */
81
+ /**
82
+ * @typedef DeleteAppCustomObjectParam
83
+ * @property {string} metaobjectId
84
+ */
85
+ /**
86
+ * @typedef DeleteAppCustomObjectDefinitionParam
87
+ * @property {string} definitionId
88
+ */
55
89
  /**
56
90
  * @typedef DeleteBlogParam
57
91
  * @property {string} id - ID allotted to the blog.
@@ -85,6 +119,11 @@ export = ContentPlatformApplicationValidator;
85
119
  * @typedef DeletePathRedirectionRulesParam
86
120
  * @property {string} pathId - ID allotted to the path redirection rule.
87
121
  */
122
+ /**
123
+ * @typedef DeleteSEOMarkupSchemaParam
124
+ * @property {string} id - Alphanumeric ID allotted to a SEO Markup Schema
125
+ * Template created within a business.
126
+ */
88
127
  /**
89
128
  * @typedef DeleteSlideshowParam
90
129
  * @property {string} id - ID allotted to the slideshow.
@@ -99,6 +138,16 @@ export = ContentPlatformApplicationValidator;
99
138
  * @property {string} tagId - ID allotted to the tag.
100
139
  * @property {ContentPlatformModel.UpdateHandpickedSchema} body
101
140
  */
141
+ /**
142
+ * @typedef EditSEOMarkupSchemaParam
143
+ * @property {string} id - Alphanumeric ID allotted to a SEO Markup Schema
144
+ * Template created within a business.
145
+ * @property {ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody} body
146
+ */
147
+ /**
148
+ * @typedef ExportAppCustomObjectEntriesParam
149
+ * @property {string} definitionId
150
+ */
102
151
  /**
103
152
  * @typedef GenerateSEOTitleParam
104
153
  * @property {ContentPlatformModel.GenerationEntityType} type - String
@@ -117,6 +166,55 @@ export = ContentPlatformApplicationValidator;
117
166
  * @property {number} [pageSize] - The number of items to retrieve in each page.
118
167
  * Default value is 10.
119
168
  */
169
+ /**
170
+ * @typedef GetAppCustomFieldDefinitionParam
171
+ * @property {string} definitionId
172
+ */
173
+ /**
174
+ * @typedef GetAppCustomFieldDefinitionsParam
175
+ * @property {string} pageNo
176
+ * @property {string} pageSize
177
+ * @property {string} [resource]
178
+ * @property {string} [type]
179
+ * @property {string} [search]
180
+ */
181
+ /** @typedef GetAppCustomFieldTypesParam */
182
+ /**
183
+ * @typedef GetAppCustomFieldsParam
184
+ * @property {string} resource
185
+ */
186
+ /**
187
+ * @typedef GetAppCustomFieldsByResourceIdParam
188
+ * @property {string} resource
189
+ * @property {string} resourceId
190
+ */
191
+ /**
192
+ * @typedef GetAppCustomObjectParam
193
+ * @property {string} metaobjectId
194
+ */
195
+ /**
196
+ * @typedef GetAppCustomObjectDefinitionParam
197
+ * @property {string} definitionId
198
+ */
199
+ /**
200
+ * @typedef GetAppCustomObjectDefinitionsParam
201
+ * @property {string} pageNo
202
+ * @property {string} pageSize
203
+ * @property {string} [search]
204
+ */
205
+ /**
206
+ * @typedef GetAppCustomObjectsParam
207
+ * @property {string} [definitionId]
208
+ * @property {string} pageNo
209
+ * @property {string} pageSize
210
+ */
211
+ /**
212
+ * @typedef GetAppJobsParam
213
+ * @property {string} page
214
+ * @property {string} pageSize
215
+ * @property {string} actionType
216
+ */
217
+ /** @typedef GetAppResourcesParam */
120
218
  /**
121
219
  * @typedef GetBlogBySlugParam
122
220
  * @property {string} slug - A short, human-readable, URL-friendly identifier of
@@ -135,7 +233,16 @@ export = ContentPlatformApplicationValidator;
135
233
  * a blog page. You can get slug value of a blog from `getBlogs` API.
136
234
  */
137
235
  /** @typedef GetDataLoadersParam */
236
+ /**
237
+ * @typedef GetDataLoadersByServiceParam
238
+ * @property {string} serviceName - Service name of the data loader..
239
+ */
138
240
  /** @typedef GetDefaultNavigationsParam */
241
+ /**
242
+ * @typedef GetDefaultSEOMarkupSchemaParam
243
+ * @property {string} [pageType] - The type of page against which schema
244
+ * template was created
245
+ */
139
246
  /**
140
247
  * @typedef GetFaqByIdOrSlugParam
141
248
  * @property {string} idOrSlug - ID or the slug allotted to an FAQ category.
@@ -209,6 +316,20 @@ export = ContentPlatformApplicationValidator;
209
316
  * set of results. Default value is 1.
210
317
  */
211
318
  /** @typedef GetSEOConfigurationParam */
319
+ /**
320
+ * @typedef GetSEOMarkupSchemaParam
321
+ * @property {string} id - Alphanumeric ID allotted to a SEO Markup Schema
322
+ * Template created within a business.
323
+ */
324
+ /**
325
+ * @typedef GetSEOMarkupSchemasParam
326
+ * @property {string} [title] - Title of the seo schema.
327
+ * @property {string} [active] - Boolean value for fetching seo schema.
328
+ * @property {number} [pageNo] - The page number to navigate through the given
329
+ * set of results. Default value is 1.
330
+ * @property {number} [pageSize] - The number of items to retrieve in each page.
331
+ * Default value is 10.
332
+ */
212
333
  /**
213
334
  * @typedef GetSlideshowBySlugParam
214
335
  * @property {string} slug - A short, human-readable, URL-friendly identifier of
@@ -226,6 +347,11 @@ export = ContentPlatformApplicationValidator;
226
347
  * Default value is 10.
227
348
  */
228
349
  /** @typedef GetSupportInformationParam */
350
+ /**
351
+ * @typedef ImportAppCustomObjectEntriesParam
352
+ * @property {string} definitionId
353
+ * @property {ContentPlatformModel.CustomObjectBulkSchema} body
354
+ */
229
355
  /**
230
356
  * @typedef RemoveInjectableTagParam
231
357
  * @property {ContentPlatformModel.RemoveHandpickedSchema} body
@@ -235,6 +361,10 @@ export = ContentPlatformApplicationValidator;
235
361
  * @property {string} service - Name of service.
236
362
  * @property {string} operationId - Name of operation id of the service.
237
363
  */
364
+ /**
365
+ * @typedef SampleAppCustomObjectBulkEntryParam
366
+ * @property {string} definitionId
367
+ */
238
368
  /**
239
369
  * @typedef SelectDataLoaderParam
240
370
  * @property {string} dataLoaderId - ID allotted to the data loader.
@@ -249,6 +379,21 @@ export = ContentPlatformApplicationValidator;
249
379
  * @property {string} announcementId - ID allotted to the announcement.
250
380
  * @property {ContentPlatformModel.ScheduleSchema} body
251
381
  */
382
+ /**
383
+ * @typedef UpdateAppCustomFieldDefinitionParam
384
+ * @property {string} definitionId
385
+ * @property {ContentPlatformModel.CustomFieldDefinitionRequestSchema} body
386
+ */
387
+ /**
388
+ * @typedef UpdateAppCustomObjectParam
389
+ * @property {string} metaobjectId
390
+ * @property {ContentPlatformModel.CustomObjectRequestSchema} body
391
+ */
392
+ /**
393
+ * @typedef UpdateAppCustomObjectDefinitionParam
394
+ * @property {string} definitionId
395
+ * @property {ContentPlatformModel.CustomObjectDefinitionUpdateRequestSchema} body
396
+ */
252
397
  /**
253
398
  * @typedef UpdateBlogParam
254
399
  * @property {string} id - ID allotted to the blog.
@@ -323,6 +468,14 @@ declare class ContentPlatformApplicationValidator {
323
468
  static addPathRedirectionRules(): AddPathRedirectionRulesParam;
324
469
  /** @returns {CreateAnnouncementParam} */
325
470
  static createAnnouncement(): CreateAnnouncementParam;
471
+ /** @returns {CreateAppCustomFieldByResourceIdParam} */
472
+ static createAppCustomFieldByResourceId(): CreateAppCustomFieldByResourceIdParam;
473
+ /** @returns {CreateAppCustomFieldDefinitionParam} */
474
+ static createAppCustomFieldDefinition(): CreateAppCustomFieldDefinitionParam;
475
+ /** @returns {CreateAppCustomObjectParam} */
476
+ static createAppCustomObject(): CreateAppCustomObjectParam;
477
+ /** @returns {CreateAppCustomObjectDefinitionParam} */
478
+ static createAppCustomObjectDefinition(): CreateAppCustomObjectDefinitionParam;
326
479
  /** @returns {CreateBlogParam} */
327
480
  static createBlog(): CreateBlogParam;
328
481
  /** @returns {CreateFaqCategoryParam} */
@@ -335,10 +488,18 @@ declare class ContentPlatformApplicationValidator {
335
488
  static createPage(): CreatePageParam;
336
489
  /** @returns {CreatePagePreviewParam} */
337
490
  static createPagePreview(): CreatePagePreviewParam;
491
+ /** @returns {CreateSEOMarkupSchemaParam} */
492
+ static createSEOMarkupSchema(): CreateSEOMarkupSchemaParam;
338
493
  /** @returns {CreateSlideshowParam} */
339
494
  static createSlideshow(): CreateSlideshowParam;
340
495
  /** @returns {DeleteAnnouncementParam} */
341
496
  static deleteAnnouncement(): DeleteAnnouncementParam;
497
+ /** @returns {DeleteAppCustomFieldDefinitionParam} */
498
+ static deleteAppCustomFieldDefinition(): DeleteAppCustomFieldDefinitionParam;
499
+ /** @returns {DeleteAppCustomObjectParam} */
500
+ static deleteAppCustomObject(): DeleteAppCustomObjectParam;
501
+ /** @returns {DeleteAppCustomObjectDefinitionParam} */
502
+ static deleteAppCustomObjectDefinition(): DeleteAppCustomObjectDefinitionParam;
342
503
  /** @returns {DeleteBlogParam} */
343
504
  static deleteBlog(): DeleteBlogParam;
344
505
  /** @returns {DeleteDataLoaderParam} */
@@ -355,18 +516,46 @@ declare class ContentPlatformApplicationValidator {
355
516
  static deletePage(): DeletePageParam;
356
517
  /** @returns {DeletePathRedirectionRulesParam} */
357
518
  static deletePathRedirectionRules(): DeletePathRedirectionRulesParam;
519
+ /** @returns {DeleteSEOMarkupSchemaParam} */
520
+ static deleteSEOMarkupSchema(): DeleteSEOMarkupSchemaParam;
358
521
  /** @returns {DeleteSlideshowParam} */
359
522
  static deleteSlideshow(): DeleteSlideshowParam;
360
523
  /** @returns {EditDataLoaderParam} */
361
524
  static editDataLoader(): EditDataLoaderParam;
362
525
  /** @returns {EditInjectableTagParam} */
363
526
  static editInjectableTag(): EditInjectableTagParam;
527
+ /** @returns {EditSEOMarkupSchemaParam} */
528
+ static editSEOMarkupSchema(): EditSEOMarkupSchemaParam;
529
+ /** @returns {ExportAppCustomObjectEntriesParam} */
530
+ static exportAppCustomObjectEntries(): ExportAppCustomObjectEntriesParam;
364
531
  /** @returns {GenerateSEOTitleParam} */
365
532
  static generateSEOTitle(): GenerateSEOTitleParam;
366
533
  /** @returns {GetAnnouncementByIdParam} */
367
534
  static getAnnouncementById(): GetAnnouncementByIdParam;
368
535
  /** @returns {GetAnnouncementsListParam} */
369
536
  static getAnnouncementsList(): GetAnnouncementsListParam;
537
+ /** @returns {GetAppCustomFieldDefinitionParam} */
538
+ static getAppCustomFieldDefinition(): GetAppCustomFieldDefinitionParam;
539
+ /** @returns {GetAppCustomFieldDefinitionsParam} */
540
+ static getAppCustomFieldDefinitions(): GetAppCustomFieldDefinitionsParam;
541
+ /** @returns {GetAppCustomFieldTypesParam} */
542
+ 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;
551
+ /** @returns {GetAppCustomObjectDefinitionsParam} */
552
+ static getAppCustomObjectDefinitions(): GetAppCustomObjectDefinitionsParam;
553
+ /** @returns {GetAppCustomObjectsParam} */
554
+ static getAppCustomObjects(): GetAppCustomObjectsParam;
555
+ /** @returns {GetAppJobsParam} */
556
+ static getAppJobs(): GetAppJobsParam;
557
+ /** @returns {GetAppResourcesParam} */
558
+ static getAppResources(): any;
370
559
  /** @returns {GetBlogBySlugParam} */
371
560
  static getBlogBySlug(): GetBlogBySlugParam;
372
561
  /** @returns {GetBlogsParam} */
@@ -375,8 +564,12 @@ declare class ContentPlatformApplicationValidator {
375
564
  static getComponentById(): GetComponentByIdParam;
376
565
  /** @returns {GetDataLoadersParam} */
377
566
  static getDataLoaders(): any;
567
+ /** @returns {GetDataLoadersByServiceParam} */
568
+ static getDataLoadersByService(): GetDataLoadersByServiceParam;
378
569
  /** @returns {GetDefaultNavigationsParam} */
379
570
  static getDefaultNavigations(): any;
571
+ /** @returns {GetDefaultSEOMarkupSchemaParam} */
572
+ static getDefaultSEOMarkupSchema(): GetDefaultSEOMarkupSchemaParam;
380
573
  /** @returns {GetFaqByIdOrSlugParam} */
381
574
  static getFaqByIdOrSlug(): GetFaqByIdOrSlugParam;
382
575
  /** @returns {GetFaqCategoriesParam} */
@@ -409,22 +602,36 @@ declare class ContentPlatformApplicationValidator {
409
602
  static getPathRedirectionRules(): GetPathRedirectionRulesParam;
410
603
  /** @returns {GetSEOConfigurationParam} */
411
604
  static getSEOConfiguration(): any;
605
+ /** @returns {GetSEOMarkupSchemaParam} */
606
+ static getSEOMarkupSchema(): GetSEOMarkupSchemaParam;
607
+ /** @returns {GetSEOMarkupSchemasParam} */
608
+ static getSEOMarkupSchemas(): GetSEOMarkupSchemasParam;
412
609
  /** @returns {GetSlideshowBySlugParam} */
413
610
  static getSlideshowBySlug(): GetSlideshowBySlugParam;
414
611
  /** @returns {GetSlideshowsParam} */
415
612
  static getSlideshows(): GetSlideshowsParam;
416
613
  /** @returns {GetSupportInformationParam} */
417
614
  static getSupportInformation(): any;
615
+ /** @returns {ImportAppCustomObjectEntriesParam} */
616
+ static importAppCustomObjectEntries(): ImportAppCustomObjectEntriesParam;
418
617
  /** @returns {RemoveInjectableTagParam} */
419
618
  static removeInjectableTag(): RemoveInjectableTagParam;
420
619
  /** @returns {ResetDataLoaderParam} */
421
620
  static resetDataLoader(): ResetDataLoaderParam;
621
+ /** @returns {SampleAppCustomObjectBulkEntryParam} */
622
+ static sampleAppCustomObjectBulkEntry(): SampleAppCustomObjectBulkEntryParam;
422
623
  /** @returns {SelectDataLoaderParam} */
423
624
  static selectDataLoader(): SelectDataLoaderParam;
424
625
  /** @returns {UpdateAnnouncementParam} */
425
626
  static updateAnnouncement(): UpdateAnnouncementParam;
426
627
  /** @returns {UpdateAnnouncementScheduleParam} */
427
628
  static updateAnnouncementSchedule(): UpdateAnnouncementScheduleParam;
629
+ /** @returns {UpdateAppCustomFieldDefinitionParam} */
630
+ static updateAppCustomFieldDefinition(): UpdateAppCustomFieldDefinitionParam;
631
+ /** @returns {UpdateAppCustomObjectParam} */
632
+ static updateAppCustomObject(): UpdateAppCustomObjectParam;
633
+ /** @returns {UpdateAppCustomObjectDefinitionParam} */
634
+ static updateAppCustomObjectDefinition(): UpdateAppCustomObjectDefinitionParam;
428
635
  /** @returns {UpdateBlogParam} */
429
636
  static updateBlog(): UpdateBlogParam;
430
637
  /** @returns {UpdateFaqParam} */
@@ -453,7 +660,7 @@ declare class ContentPlatformApplicationValidator {
453
660
  static updateSupportInformation(): UpdateSupportInformationParam;
454
661
  }
455
662
  declare namespace ContentPlatformApplicationValidator {
456
- export { AddDataLoaderParam, AddFaqParam, AddInjectableTagParam, AddPathRedirectionRulesParam, CreateAnnouncementParam, CreateBlogParam, CreateFaqCategoryParam, CreateLandingPageParam, CreateNavigationParam, CreatePageParam, CreatePagePreviewParam, CreateSlideshowParam, DeleteAnnouncementParam, DeleteBlogParam, DeleteDataLoaderParam, DeleteFaqParam, DeleteFaqCategoryParam, DeleteLandingPageParam, DeleteNavigationParam, DeletePageParam, DeletePathRedirectionRulesParam, DeleteSlideshowParam, EditDataLoaderParam, EditInjectableTagParam, GenerateSEOTitleParam, GetAnnouncementByIdParam, GetAnnouncementsListParam, GetBlogBySlugParam, GetBlogsParam, GetComponentByIdParam, GetDataLoadersParam, GetDefaultNavigationsParam, GetFaqByIdOrSlugParam, GetFaqCategoriesParam, GetFaqCategoryBySlugOrIdParam, GetFaqsByCategoryIdOrSlugParam, GetInjectableTagsParam, GetLandingPagesParam, GetLegalInformationParam, GetNavigationBySlugParam, GetNavigationsParam, GetPageBySlugParam, GetPageMetaParam, GetPageSpecParam, GetPagesParam, GetPathRedirectionRuleParam, GetPathRedirectionRulesParam, GetSEOConfigurationParam, GetSlideshowBySlugParam, GetSlideshowsParam, GetSupportInformationParam, RemoveInjectableTagParam, ResetDataLoaderParam, SelectDataLoaderParam, UpdateAnnouncementParam, UpdateAnnouncementScheduleParam, UpdateBlogParam, UpdateFaqParam, UpdateFaqCategoryParam, UpdateInjectableTagParam, UpdateLandingPageParam, UpdateLegalInformationParam, UpdateNavigationParam, UpdatePageParam, UpdatePagePreviewParam, UpdatePathRedirectionRulesParam, UpdateSEOConfigurationParam, UpdateSlideshowParam, UpdateSupportInformationParam };
663
+ 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, GetComponentByIdParam, 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 };
457
664
  }
458
665
  type AddDataLoaderParam = {
459
666
  body: ContentPlatformModel.DataLoaderSchema;
@@ -474,6 +681,20 @@ type AddPathRedirectionRulesParam = {
474
681
  type CreateAnnouncementParam = {
475
682
  body: ContentPlatformModel.AdminAnnouncementSchema;
476
683
  };
684
+ type CreateAppCustomFieldByResourceIdParam = {
685
+ resource: string;
686
+ resourceId: string;
687
+ body: ContentPlatformModel.CustomFieldRequestSchema;
688
+ };
689
+ type CreateAppCustomFieldDefinitionParam = {
690
+ body: ContentPlatformModel.CustomFieldDefinitionRequestSchema;
691
+ };
692
+ type CreateAppCustomObjectParam = {
693
+ body: ContentPlatformModel.CustomObjectRequestSchema;
694
+ };
695
+ type CreateAppCustomObjectDefinitionParam = {
696
+ body: ContentPlatformModel.CustomObjectDefinitionRequestSchema;
697
+ };
477
698
  type CreateBlogParam = {
478
699
  body: ContentPlatformModel.BlogRequest;
479
700
  };
@@ -492,6 +713,9 @@ type CreatePageParam = {
492
713
  type CreatePagePreviewParam = {
493
714
  body: ContentPlatformModel.PageRequest;
494
715
  };
716
+ type CreateSEOMarkupSchemaParam = {
717
+ body: ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody;
718
+ };
495
719
  type CreateSlideshowParam = {
496
720
  body: ContentPlatformModel.SlideshowRequest;
497
721
  };
@@ -501,6 +725,15 @@ type DeleteAnnouncementParam = {
501
725
  */
502
726
  announcementId: string;
503
727
  };
728
+ type DeleteAppCustomFieldDefinitionParam = {
729
+ definitionId: string;
730
+ };
731
+ type DeleteAppCustomObjectParam = {
732
+ metaobjectId: string;
733
+ };
734
+ type DeleteAppCustomObjectDefinitionParam = {
735
+ definitionId: string;
736
+ };
504
737
  type DeleteBlogParam = {
505
738
  /**
506
739
  * - ID allotted to the blog.
@@ -553,6 +786,13 @@ type DeletePathRedirectionRulesParam = {
553
786
  */
554
787
  pathId: string;
555
788
  };
789
+ type DeleteSEOMarkupSchemaParam = {
790
+ /**
791
+ * - Alphanumeric ID allotted to a SEO Markup Schema
792
+ * Template created within a business.
793
+ */
794
+ id: string;
795
+ };
556
796
  type DeleteSlideshowParam = {
557
797
  /**
558
798
  * - ID allotted to the slideshow.
@@ -573,6 +813,17 @@ type EditInjectableTagParam = {
573
813
  tagId: string;
574
814
  body: ContentPlatformModel.UpdateHandpickedSchema;
575
815
  };
816
+ type EditSEOMarkupSchemaParam = {
817
+ /**
818
+ * - Alphanumeric ID allotted to a SEO Markup Schema
819
+ * Template created within a business.
820
+ */
821
+ id: string;
822
+ body: ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody;
823
+ };
824
+ type ExportAppCustomObjectEntriesParam = {
825
+ definitionId: string;
826
+ };
576
827
  type GenerateSEOTitleParam = {
577
828
  /**
578
829
  * - String
@@ -600,6 +851,44 @@ type GetAnnouncementsListParam = {
600
851
  */
601
852
  pageSize?: number;
602
853
  };
854
+ type GetAppCustomFieldDefinitionParam = {
855
+ definitionId: string;
856
+ };
857
+ type GetAppCustomFieldDefinitionsParam = {
858
+ pageNo: string;
859
+ pageSize: string;
860
+ resource?: string;
861
+ type?: string;
862
+ search?: string;
863
+ };
864
+ type GetAppCustomFieldsParam = {
865
+ resource: string;
866
+ };
867
+ type GetAppCustomFieldsByResourceIdParam = {
868
+ resource: string;
869
+ resourceId: string;
870
+ };
871
+ type GetAppCustomObjectParam = {
872
+ metaobjectId: string;
873
+ };
874
+ type GetAppCustomObjectDefinitionParam = {
875
+ definitionId: string;
876
+ };
877
+ type GetAppCustomObjectDefinitionsParam = {
878
+ pageNo: string;
879
+ pageSize: string;
880
+ search?: string;
881
+ };
882
+ type GetAppCustomObjectsParam = {
883
+ definitionId?: string;
884
+ pageNo: string;
885
+ pageSize: string;
886
+ };
887
+ type GetAppJobsParam = {
888
+ page: string;
889
+ pageSize: string;
890
+ actionType: string;
891
+ };
603
892
  type GetBlogBySlugParam = {
604
893
  /**
605
894
  * - A short, human-readable, URL-friendly identifier of
@@ -626,6 +915,19 @@ type GetComponentByIdParam = {
626
915
  */
627
916
  slug: string;
628
917
  };
918
+ type GetDataLoadersByServiceParam = {
919
+ /**
920
+ * - Service name of the data loader..
921
+ */
922
+ serviceName: string;
923
+ };
924
+ type GetDefaultSEOMarkupSchemaParam = {
925
+ /**
926
+ * - The type of page against which schema
927
+ * template was created
928
+ */
929
+ pageType?: string;
930
+ };
629
931
  type GetFaqByIdOrSlugParam = {
630
932
  /**
631
933
  * - ID or the slug allotted to an FAQ category.
@@ -734,6 +1036,33 @@ type GetPathRedirectionRulesParam = {
734
1036
  */
735
1037
  pageNo?: number;
736
1038
  };
1039
+ type GetSEOMarkupSchemaParam = {
1040
+ /**
1041
+ * - Alphanumeric ID allotted to a SEO Markup Schema
1042
+ * Template created within a business.
1043
+ */
1044
+ id: string;
1045
+ };
1046
+ type GetSEOMarkupSchemasParam = {
1047
+ /**
1048
+ * - Title of the seo schema.
1049
+ */
1050
+ title?: string;
1051
+ /**
1052
+ * - Boolean value for fetching seo schema.
1053
+ */
1054
+ active?: string;
1055
+ /**
1056
+ * - The page number to navigate through the given
1057
+ * set of results. Default value is 1.
1058
+ */
1059
+ pageNo?: number;
1060
+ /**
1061
+ * - The number of items to retrieve in each page.
1062
+ * Default value is 10.
1063
+ */
1064
+ pageSize?: number;
1065
+ };
737
1066
  type GetSlideshowBySlugParam = {
738
1067
  /**
739
1068
  * - A short, human-readable, URL-friendly identifier of
@@ -763,6 +1092,10 @@ type GetSlideshowsParam = {
763
1092
  */
764
1093
  pageSize?: number;
765
1094
  };
1095
+ type ImportAppCustomObjectEntriesParam = {
1096
+ definitionId: string;
1097
+ body: ContentPlatformModel.CustomObjectBulkSchema;
1098
+ };
766
1099
  type RemoveInjectableTagParam = {
767
1100
  body: ContentPlatformModel.RemoveHandpickedSchema;
768
1101
  };
@@ -776,6 +1109,9 @@ type ResetDataLoaderParam = {
776
1109
  */
777
1110
  operationId: string;
778
1111
  };
1112
+ type SampleAppCustomObjectBulkEntryParam = {
1113
+ definitionId: string;
1114
+ };
779
1115
  type SelectDataLoaderParam = {
780
1116
  /**
781
1117
  * - ID allotted to the data loader.
@@ -796,6 +1132,18 @@ type UpdateAnnouncementScheduleParam = {
796
1132
  announcementId: string;
797
1133
  body: ContentPlatformModel.ScheduleSchema;
798
1134
  };
1135
+ type UpdateAppCustomFieldDefinitionParam = {
1136
+ definitionId: string;
1137
+ body: ContentPlatformModel.CustomFieldDefinitionRequestSchema;
1138
+ };
1139
+ type UpdateAppCustomObjectParam = {
1140
+ metaobjectId: string;
1141
+ body: ContentPlatformModel.CustomObjectRequestSchema;
1142
+ };
1143
+ type UpdateAppCustomObjectDefinitionParam = {
1144
+ definitionId: string;
1145
+ body: ContentPlatformModel.CustomObjectDefinitionUpdateRequestSchema;
1146
+ };
799
1147
  type UpdateBlogParam = {
800
1148
  /**
801
1149
  * - ID allotted to the blog.
@@ -876,6 +1224,8 @@ type UpdateSlideshowParam = {
876
1224
  type UpdateSupportInformationParam = {
877
1225
  body: ContentPlatformModel.Support;
878
1226
  };
1227
+ type GetAppCustomFieldTypesParam = any;
1228
+ type GetAppResourcesParam = any;
879
1229
  type GetDataLoadersParam = any;
880
1230
  type GetDefaultNavigationsParam = any;
881
1231
  type GetFaqCategoriesParam = any;