@gofynd/fdk-client-javascript 1.3.11-beta.7 → 1.3.11-beta.8

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 (229) 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/Lead/LeadPartnerClient.d.ts +125 -0
  56. package/sdk/partner/Lead/LeadPartnerClient.js +785 -0
  57. package/sdk/partner/Lead/LeadPartnerModel.d.ts +1127 -0
  58. package/sdk/partner/Lead/LeadPartnerModel.js +896 -0
  59. package/sdk/partner/Lead/LeadPartnerValidator.d.ts +12 -0
  60. package/sdk/partner/Lead/LeadPartnerValidator.js +67 -0
  61. package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +155 -0
  62. package/sdk/partner/Logistics/LogisticsPartnerClient.js +1195 -0
  63. package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +372 -0
  64. package/sdk/partner/Logistics/LogisticsPartnerModel.js +442 -0
  65. package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +16 -0
  66. package/sdk/partner/Logistics/LogisticsPartnerValidator.js +123 -0
  67. package/sdk/partner/PartnerClient.d.ts +6 -0
  68. package/sdk/partner/PartnerClient.js +9 -0
  69. package/sdk/partner/Theme/ThemePartnerClient.d.ts +10 -0
  70. package/sdk/partner/Theme/ThemePartnerClient.js +80 -0
  71. package/sdk/partner/Theme/ThemePartnerModel.d.ts +100 -43
  72. package/sdk/partner/Theme/ThemePartnerModel.js +74 -30
  73. package/sdk/partner/Theme/ThemePartnerValidator.d.ts +1 -0
  74. package/sdk/partner/Theme/ThemePartnerValidator.js +9 -0
  75. package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +99 -0
  76. package/sdk/partner/Webhook/WebhookPartnerClient.js +753 -0
  77. package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +566 -0
  78. package/sdk/partner/Webhook/WebhookPartnerModel.js +583 -0
  79. package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +12 -0
  80. package/sdk/partner/Webhook/WebhookPartnerValidator.js +74 -0
  81. package/sdk/partner/index.d.ts +3 -0
  82. package/sdk/partner/index.js +6 -0
  83. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +2 -2
  84. package/sdk/platform/Billing/BillingPlatformClient.d.ts +11 -1
  85. package/sdk/platform/Billing/BillingPlatformClient.js +110 -3
  86. package/sdk/platform/Billing/BillingPlatformModel.d.ts +67 -1
  87. package/sdk/platform/Billing/BillingPlatformModel.js +78 -0
  88. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +43 -4
  89. package/sdk/platform/Billing/BillingPlatformValidator.js +29 -2
  90. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +1 -1
  91. package/sdk/platform/Cart/CartPlatformApplicationClient.js +7 -1
  92. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +4 -0
  93. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +4 -0
  94. package/sdk/platform/Cart/CartPlatformModel.d.ts +100 -5
  95. package/sdk/platform/Cart/CartPlatformModel.js +71 -4
  96. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +15 -11
  97. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +52 -21
  98. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +27 -0
  99. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +11 -0
  100. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +26 -4
  101. package/sdk/platform/Catalog/CatalogPlatformClient.js +173 -7
  102. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +304 -1
  103. package/sdk/platform/Catalog/CatalogPlatformModel.js +335 -0
  104. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +31 -3
  105. package/sdk/platform/Catalog/CatalogPlatformValidator.js +27 -2
  106. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +138 -36
  107. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +739 -57
  108. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +128 -3
  109. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +111 -1
  110. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +150 -1
  111. package/sdk/platform/Communication/CommunicationPlatformModel.js +172 -0
  112. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +8 -2
  113. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +32 -4
  114. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +38 -9
  115. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +42 -8
  116. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +14 -0
  117. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +6 -0
  118. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +8 -8
  119. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +4 -4
  120. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +371 -132
  121. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +288 -77
  122. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +2 -2
  123. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +2 -2
  124. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +391 -0
  125. package/sdk/platform/Content/ContentPlatformApplicationClient.js +3630 -1059
  126. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +342 -1
  127. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +401 -0
  128. package/sdk/platform/Content/ContentPlatformClient.d.ts +277 -0
  129. package/sdk/platform/Content/ContentPlatformClient.js +2000 -0
  130. package/sdk/platform/Content/ContentPlatformModel.d.ts +1094 -1
  131. package/sdk/platform/Content/ContentPlatformModel.js +1356 -46
  132. package/sdk/platform/Content/ContentPlatformValidator.d.ts +238 -0
  133. package/sdk/platform/Content/ContentPlatformValidator.js +310 -0
  134. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +2 -2
  135. package/sdk/platform/Discount/DiscountPlatformClient.js +2 -2
  136. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +96 -13
  137. package/sdk/platform/Discount/DiscountPlatformModel.js +104 -12
  138. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +16 -6
  139. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +117 -8
  140. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +55 -4
  141. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +39 -2
  142. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +16 -5
  143. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +18 -4
  144. package/sdk/platform/Finance/FinancePlatformClient.d.ts +33 -0
  145. package/sdk/platform/Finance/FinancePlatformClient.js +240 -0
  146. package/sdk/platform/Finance/FinancePlatformModel.d.ts +151 -5
  147. package/sdk/platform/Finance/FinancePlatformModel.js +190 -4
  148. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +38 -1
  149. package/sdk/platform/Finance/FinancePlatformValidator.js +38 -0
  150. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +38 -28
  151. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +137 -56
  152. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +41 -29
  153. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +33 -21
  154. package/sdk/platform/Lead/LeadPlatformModel.d.ts +12 -3
  155. package/sdk/platform/Lead/LeadPlatformModel.js +16 -2
  156. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +23 -1
  157. package/sdk/platform/Order/OrderPlatformApplicationClient.js +178 -1
  158. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +39 -1
  159. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +32 -0
  160. package/sdk/platform/Order/OrderPlatformClient.d.ts +202 -31
  161. package/sdk/platform/Order/OrderPlatformClient.js +2010 -586
  162. package/sdk/platform/Order/OrderPlatformModel.d.ts +1032 -470
  163. package/sdk/platform/Order/OrderPlatformModel.js +1187 -534
  164. package/sdk/platform/Order/OrderPlatformValidator.d.ts +318 -35
  165. package/sdk/platform/Order/OrderPlatformValidator.js +292 -29
  166. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +119 -13
  167. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +749 -39
  168. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +143 -7
  169. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +133 -6
  170. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +1 -1
  171. package/sdk/platform/Payment/PaymentPlatformClient.js +1 -1
  172. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +996 -134
  173. package/sdk/platform/Payment/PaymentPlatformModel.js +721 -58
  174. package/sdk/platform/PlatformApplicationClient.d.ts +2 -2
  175. package/sdk/platform/PlatformApplicationClient.js +4 -4
  176. package/sdk/platform/PlatformClient.d.ts +4 -2
  177. package/sdk/platform/PlatformClient.js +8 -4
  178. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +142 -66
  179. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +645 -147
  180. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +131 -63
  181. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +126 -47
  182. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +217 -105
  183. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +1136 -347
  184. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +912 -313
  185. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +1071 -355
  186. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +382 -133
  187. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +266 -102
  188. package/sdk/platform/Theme/ThemePlatformClient.d.ts +11 -1
  189. package/sdk/platform/Theme/ThemePlatformClient.js +87 -3
  190. package/sdk/platform/Theme/ThemePlatformModel.d.ts +333 -47
  191. package/sdk/platform/Theme/ThemePlatformModel.js +395 -35
  192. package/sdk/platform/Theme/ThemePlatformValidator.d.ts +28 -4
  193. package/sdk/platform/Theme/ThemePlatformValidator.js +21 -2
  194. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +116 -1
  195. package/sdk/platform/User/UserPlatformApplicationClient.js +931 -85
  196. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +224 -7
  197. package/sdk/platform/User/UserPlatformApplicationValidator.js +173 -5
  198. package/sdk/platform/User/UserPlatformModel.d.ts +344 -7
  199. package/sdk/platform/User/UserPlatformModel.js +256 -5
  200. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +47 -39
  201. package/sdk/platform/Webhook/WebhookPlatformClient.js +63 -61
  202. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +264 -156
  203. package/sdk/platform/Webhook/WebhookPlatformModel.js +276 -153
  204. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +7 -10
  205. package/sdk/platform/Webhook/WebhookPlatformValidator.js +6 -6
  206. package/sdk/platform/index.d.ts +1 -1
  207. package/sdk/platform/index.js +2 -2
  208. package/sdk/public/Billing/BillingPublicClient.d.ts +23 -0
  209. package/sdk/public/Billing/BillingPublicClient.js +116 -0
  210. package/sdk/public/Billing/BillingPublicModel.d.ts +92 -0
  211. package/sdk/public/Billing/BillingPublicModel.js +96 -0
  212. package/sdk/public/Billing/BillingPublicValidator.d.ts +18 -0
  213. package/sdk/public/Billing/BillingPublicValidator.js +19 -0
  214. package/sdk/public/Content/ContentPublicClient.d.ts +22 -0
  215. package/sdk/public/Content/ContentPublicClient.js +114 -0
  216. package/sdk/public/Content/ContentPublicModel.d.ts +53 -0
  217. package/sdk/public/Content/ContentPublicModel.js +60 -0
  218. package/sdk/public/Content/ContentPublicValidator.d.ts +18 -0
  219. package/sdk/public/Content/ContentPublicValidator.js +19 -0
  220. package/sdk/public/PublicClient.d.ts +4 -0
  221. package/sdk/public/PublicClient.js +8 -0
  222. package/sdk/public/Webhook/WebhookPublicClient.d.ts +33 -0
  223. package/sdk/public/Webhook/WebhookPublicClient.js +242 -0
  224. package/sdk/public/Webhook/WebhookPublicModel.d.ts +147 -1
  225. package/sdk/public/Webhook/WebhookPublicModel.js +177 -1
  226. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +23 -1
  227. package/sdk/public/Webhook/WebhookPublicValidator.js +31 -0
  228. package/sdk/public/index.d.ts +2 -0
  229. 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.SEOSchemaMarkupTemplate} 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,50 @@ 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
+ /** @typedef GetAppCustomObjectsParam */
206
+ /**
207
+ * @typedef GetAppJobsParam
208
+ * @property {string} page
209
+ * @property {string} pageSize
210
+ * @property {string} actionType
211
+ */
212
+ /** @typedef GetAppResourcesParam */
120
213
  /**
121
214
  * @typedef GetBlogBySlugParam
122
215
  * @property {string} slug - A short, human-readable, URL-friendly identifier of
@@ -135,7 +228,16 @@ export = ContentPlatformApplicationValidator;
135
228
  * a blog page. You can get slug value of a blog from `getBlogs` API.
136
229
  */
137
230
  /** @typedef GetDataLoadersParam */
231
+ /**
232
+ * @typedef GetDataLoadersByServiceParam
233
+ * @property {string} serviceName - Service name of the data loader..
234
+ */
138
235
  /** @typedef GetDefaultNavigationsParam */
236
+ /**
237
+ * @typedef GetDefaultSEOMarkupSchemaParam
238
+ * @property {string} [pageType] - The type of page against which schema
239
+ * template was created
240
+ */
139
241
  /**
140
242
  * @typedef GetFaqByIdOrSlugParam
141
243
  * @property {string} idOrSlug - ID or the slug allotted to an FAQ category.
@@ -209,6 +311,20 @@ export = ContentPlatformApplicationValidator;
209
311
  * set of results. Default value is 1.
210
312
  */
211
313
  /** @typedef GetSEOConfigurationParam */
314
+ /**
315
+ * @typedef GetSEOMarkupSchemaParam
316
+ * @property {string} id - Alphanumeric ID allotted to a SEO Markup Schema
317
+ * Template created within a business.
318
+ */
319
+ /**
320
+ * @typedef GetSEOMarkupSchemasParam
321
+ * @property {string} [title] - Title of the seo schema.
322
+ * @property {string} [active] - Boolean value for fetching seo schema.
323
+ * @property {number} [pageNo] - The page number to navigate through the given
324
+ * set of results. Default value is 1.
325
+ * @property {number} [pageSize] - The number of items to retrieve in each page.
326
+ * Default value is 10.
327
+ */
212
328
  /**
213
329
  * @typedef GetSlideshowBySlugParam
214
330
  * @property {string} slug - A short, human-readable, URL-friendly identifier of
@@ -226,6 +342,11 @@ export = ContentPlatformApplicationValidator;
226
342
  * Default value is 10.
227
343
  */
228
344
  /** @typedef GetSupportInformationParam */
345
+ /**
346
+ * @typedef ImportAppCustomObjectEntriesParam
347
+ * @property {string} definitionId
348
+ * @property {ContentPlatformModel.CustomObjectBulkSchema} body
349
+ */
229
350
  /**
230
351
  * @typedef RemoveInjectableTagParam
231
352
  * @property {ContentPlatformModel.RemoveHandpickedSchema} body
@@ -235,6 +356,10 @@ export = ContentPlatformApplicationValidator;
235
356
  * @property {string} service - Name of service.
236
357
  * @property {string} operationId - Name of operation id of the service.
237
358
  */
359
+ /**
360
+ * @typedef SampleAppCustomObjectBulkEntryParam
361
+ * @property {string} definitionId
362
+ */
238
363
  /**
239
364
  * @typedef SelectDataLoaderParam
240
365
  * @property {string} dataLoaderId - ID allotted to the data loader.
@@ -249,6 +374,21 @@ export = ContentPlatformApplicationValidator;
249
374
  * @property {string} announcementId - ID allotted to the announcement.
250
375
  * @property {ContentPlatformModel.ScheduleSchema} body
251
376
  */
377
+ /**
378
+ * @typedef UpdateAppCustomFieldDefinitionParam
379
+ * @property {string} definitionId
380
+ * @property {ContentPlatformModel.CustomFieldDefinitionRequestSchema} body
381
+ */
382
+ /**
383
+ * @typedef UpdateAppCustomObjectParam
384
+ * @property {string} metaobjectId
385
+ * @property {ContentPlatformModel.CustomObjectRequestSchema} body
386
+ */
387
+ /**
388
+ * @typedef UpdateAppCustomObjectDefinitionParam
389
+ * @property {string} definitionId
390
+ * @property {ContentPlatformModel.CustomObjectDefinitionUpdateRequestSchema} body
391
+ */
252
392
  /**
253
393
  * @typedef UpdateBlogParam
254
394
  * @property {string} id - ID allotted to the blog.
@@ -323,6 +463,14 @@ declare class ContentPlatformApplicationValidator {
323
463
  static addPathRedirectionRules(): AddPathRedirectionRulesParam;
324
464
  /** @returns {CreateAnnouncementParam} */
325
465
  static createAnnouncement(): CreateAnnouncementParam;
466
+ /** @returns {CreateAppCustomFieldByResourceIdParam} */
467
+ static createAppCustomFieldByResourceId(): CreateAppCustomFieldByResourceIdParam;
468
+ /** @returns {CreateAppCustomFieldDefinitionParam} */
469
+ static createAppCustomFieldDefinition(): CreateAppCustomFieldDefinitionParam;
470
+ /** @returns {CreateAppCustomObjectParam} */
471
+ static createAppCustomObject(): CreateAppCustomObjectParam;
472
+ /** @returns {CreateAppCustomObjectDefinitionParam} */
473
+ static createAppCustomObjectDefinition(): CreateAppCustomObjectDefinitionParam;
326
474
  /** @returns {CreateBlogParam} */
327
475
  static createBlog(): CreateBlogParam;
328
476
  /** @returns {CreateFaqCategoryParam} */
@@ -335,10 +483,18 @@ declare class ContentPlatformApplicationValidator {
335
483
  static createPage(): CreatePageParam;
336
484
  /** @returns {CreatePagePreviewParam} */
337
485
  static createPagePreview(): CreatePagePreviewParam;
486
+ /** @returns {CreateSEOMarkupSchemaParam} */
487
+ static createSEOMarkupSchema(): CreateSEOMarkupSchemaParam;
338
488
  /** @returns {CreateSlideshowParam} */
339
489
  static createSlideshow(): CreateSlideshowParam;
340
490
  /** @returns {DeleteAnnouncementParam} */
341
491
  static deleteAnnouncement(): DeleteAnnouncementParam;
492
+ /** @returns {DeleteAppCustomFieldDefinitionParam} */
493
+ static deleteAppCustomFieldDefinition(): DeleteAppCustomFieldDefinitionParam;
494
+ /** @returns {DeleteAppCustomObjectParam} */
495
+ static deleteAppCustomObject(): DeleteAppCustomObjectParam;
496
+ /** @returns {DeleteAppCustomObjectDefinitionParam} */
497
+ static deleteAppCustomObjectDefinition(): DeleteAppCustomObjectDefinitionParam;
342
498
  /** @returns {DeleteBlogParam} */
343
499
  static deleteBlog(): DeleteBlogParam;
344
500
  /** @returns {DeleteDataLoaderParam} */
@@ -355,18 +511,46 @@ declare class ContentPlatformApplicationValidator {
355
511
  static deletePage(): DeletePageParam;
356
512
  /** @returns {DeletePathRedirectionRulesParam} */
357
513
  static deletePathRedirectionRules(): DeletePathRedirectionRulesParam;
514
+ /** @returns {DeleteSEOMarkupSchemaParam} */
515
+ static deleteSEOMarkupSchema(): DeleteSEOMarkupSchemaParam;
358
516
  /** @returns {DeleteSlideshowParam} */
359
517
  static deleteSlideshow(): DeleteSlideshowParam;
360
518
  /** @returns {EditDataLoaderParam} */
361
519
  static editDataLoader(): EditDataLoaderParam;
362
520
  /** @returns {EditInjectableTagParam} */
363
521
  static editInjectableTag(): EditInjectableTagParam;
522
+ /** @returns {EditSEOMarkupSchemaParam} */
523
+ static editSEOMarkupSchema(): EditSEOMarkupSchemaParam;
524
+ /** @returns {ExportAppCustomObjectEntriesParam} */
525
+ static exportAppCustomObjectEntries(): ExportAppCustomObjectEntriesParam;
364
526
  /** @returns {GenerateSEOTitleParam} */
365
527
  static generateSEOTitle(): GenerateSEOTitleParam;
366
528
  /** @returns {GetAnnouncementByIdParam} */
367
529
  static getAnnouncementById(): GetAnnouncementByIdParam;
368
530
  /** @returns {GetAnnouncementsListParam} */
369
531
  static getAnnouncementsList(): GetAnnouncementsListParam;
532
+ /** @returns {GetAppCustomFieldDefinitionParam} */
533
+ static getAppCustomFieldDefinition(): GetAppCustomFieldDefinitionParam;
534
+ /** @returns {GetAppCustomFieldDefinitionsParam} */
535
+ static getAppCustomFieldDefinitions(): GetAppCustomFieldDefinitionsParam;
536
+ /** @returns {GetAppCustomFieldTypesParam} */
537
+ static getAppCustomFieldTypes(): any;
538
+ /** @returns {GetAppCustomFieldsParam} */
539
+ static getAppCustomFields(): GetAppCustomFieldsParam;
540
+ /** @returns {GetAppCustomFieldsByResourceIdParam} */
541
+ static getAppCustomFieldsByResourceId(): GetAppCustomFieldsByResourceIdParam;
542
+ /** @returns {GetAppCustomObjectParam} */
543
+ static getAppCustomObject(): GetAppCustomObjectParam;
544
+ /** @returns {GetAppCustomObjectDefinitionParam} */
545
+ static getAppCustomObjectDefinition(): GetAppCustomObjectDefinitionParam;
546
+ /** @returns {GetAppCustomObjectDefinitionsParam} */
547
+ static getAppCustomObjectDefinitions(): GetAppCustomObjectDefinitionsParam;
548
+ /** @returns {GetAppCustomObjectsParam} */
549
+ static getAppCustomObjects(): any;
550
+ /** @returns {GetAppJobsParam} */
551
+ static getAppJobs(): GetAppJobsParam;
552
+ /** @returns {GetAppResourcesParam} */
553
+ static getAppResources(): any;
370
554
  /** @returns {GetBlogBySlugParam} */
371
555
  static getBlogBySlug(): GetBlogBySlugParam;
372
556
  /** @returns {GetBlogsParam} */
@@ -375,8 +559,12 @@ declare class ContentPlatformApplicationValidator {
375
559
  static getComponentById(): GetComponentByIdParam;
376
560
  /** @returns {GetDataLoadersParam} */
377
561
  static getDataLoaders(): any;
562
+ /** @returns {GetDataLoadersByServiceParam} */
563
+ static getDataLoadersByService(): GetDataLoadersByServiceParam;
378
564
  /** @returns {GetDefaultNavigationsParam} */
379
565
  static getDefaultNavigations(): any;
566
+ /** @returns {GetDefaultSEOMarkupSchemaParam} */
567
+ static getDefaultSEOMarkupSchema(): GetDefaultSEOMarkupSchemaParam;
380
568
  /** @returns {GetFaqByIdOrSlugParam} */
381
569
  static getFaqByIdOrSlug(): GetFaqByIdOrSlugParam;
382
570
  /** @returns {GetFaqCategoriesParam} */
@@ -409,22 +597,36 @@ declare class ContentPlatformApplicationValidator {
409
597
  static getPathRedirectionRules(): GetPathRedirectionRulesParam;
410
598
  /** @returns {GetSEOConfigurationParam} */
411
599
  static getSEOConfiguration(): any;
600
+ /** @returns {GetSEOMarkupSchemaParam} */
601
+ static getSEOMarkupSchema(): GetSEOMarkupSchemaParam;
602
+ /** @returns {GetSEOMarkupSchemasParam} */
603
+ static getSEOMarkupSchemas(): GetSEOMarkupSchemasParam;
412
604
  /** @returns {GetSlideshowBySlugParam} */
413
605
  static getSlideshowBySlug(): GetSlideshowBySlugParam;
414
606
  /** @returns {GetSlideshowsParam} */
415
607
  static getSlideshows(): GetSlideshowsParam;
416
608
  /** @returns {GetSupportInformationParam} */
417
609
  static getSupportInformation(): any;
610
+ /** @returns {ImportAppCustomObjectEntriesParam} */
611
+ static importAppCustomObjectEntries(): ImportAppCustomObjectEntriesParam;
418
612
  /** @returns {RemoveInjectableTagParam} */
419
613
  static removeInjectableTag(): RemoveInjectableTagParam;
420
614
  /** @returns {ResetDataLoaderParam} */
421
615
  static resetDataLoader(): ResetDataLoaderParam;
616
+ /** @returns {SampleAppCustomObjectBulkEntryParam} */
617
+ static sampleAppCustomObjectBulkEntry(): SampleAppCustomObjectBulkEntryParam;
422
618
  /** @returns {SelectDataLoaderParam} */
423
619
  static selectDataLoader(): SelectDataLoaderParam;
424
620
  /** @returns {UpdateAnnouncementParam} */
425
621
  static updateAnnouncement(): UpdateAnnouncementParam;
426
622
  /** @returns {UpdateAnnouncementScheduleParam} */
427
623
  static updateAnnouncementSchedule(): UpdateAnnouncementScheduleParam;
624
+ /** @returns {UpdateAppCustomFieldDefinitionParam} */
625
+ static updateAppCustomFieldDefinition(): UpdateAppCustomFieldDefinitionParam;
626
+ /** @returns {UpdateAppCustomObjectParam} */
627
+ static updateAppCustomObject(): UpdateAppCustomObjectParam;
628
+ /** @returns {UpdateAppCustomObjectDefinitionParam} */
629
+ static updateAppCustomObjectDefinition(): UpdateAppCustomObjectDefinitionParam;
428
630
  /** @returns {UpdateBlogParam} */
429
631
  static updateBlog(): UpdateBlogParam;
430
632
  /** @returns {UpdateFaqParam} */
@@ -453,7 +655,7 @@ declare class ContentPlatformApplicationValidator {
453
655
  static updateSupportInformation(): UpdateSupportInformationParam;
454
656
  }
455
657
  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 };
658
+ 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
659
  }
458
660
  type AddDataLoaderParam = {
459
661
  body: ContentPlatformModel.DataLoaderSchema;
@@ -474,6 +676,20 @@ type AddPathRedirectionRulesParam = {
474
676
  type CreateAnnouncementParam = {
475
677
  body: ContentPlatformModel.AdminAnnouncementSchema;
476
678
  };
679
+ type CreateAppCustomFieldByResourceIdParam = {
680
+ resource: string;
681
+ resourceId: string;
682
+ body: ContentPlatformModel.CustomFieldRequestSchema;
683
+ };
684
+ type CreateAppCustomFieldDefinitionParam = {
685
+ body: ContentPlatformModel.CustomFieldDefinitionRequestSchema;
686
+ };
687
+ type CreateAppCustomObjectParam = {
688
+ body: ContentPlatformModel.CustomObjectRequestSchema;
689
+ };
690
+ type CreateAppCustomObjectDefinitionParam = {
691
+ body: ContentPlatformModel.CustomObjectDefinitionRequestSchema;
692
+ };
477
693
  type CreateBlogParam = {
478
694
  body: ContentPlatformModel.BlogRequest;
479
695
  };
@@ -492,6 +708,9 @@ type CreatePageParam = {
492
708
  type CreatePagePreviewParam = {
493
709
  body: ContentPlatformModel.PageRequest;
494
710
  };
711
+ type CreateSEOMarkupSchemaParam = {
712
+ body: ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody;
713
+ };
495
714
  type CreateSlideshowParam = {
496
715
  body: ContentPlatformModel.SlideshowRequest;
497
716
  };
@@ -501,6 +720,15 @@ type DeleteAnnouncementParam = {
501
720
  */
502
721
  announcementId: string;
503
722
  };
723
+ type DeleteAppCustomFieldDefinitionParam = {
724
+ definitionId: string;
725
+ };
726
+ type DeleteAppCustomObjectParam = {
727
+ metaobjectId: string;
728
+ };
729
+ type DeleteAppCustomObjectDefinitionParam = {
730
+ definitionId: string;
731
+ };
504
732
  type DeleteBlogParam = {
505
733
  /**
506
734
  * - ID allotted to the blog.
@@ -553,6 +781,13 @@ type DeletePathRedirectionRulesParam = {
553
781
  */
554
782
  pathId: string;
555
783
  };
784
+ type DeleteSEOMarkupSchemaParam = {
785
+ /**
786
+ * - Alphanumeric ID allotted to a SEO Markup Schema
787
+ * Template created within a business.
788
+ */
789
+ id: string;
790
+ };
556
791
  type DeleteSlideshowParam = {
557
792
  /**
558
793
  * - ID allotted to the slideshow.
@@ -573,6 +808,17 @@ type EditInjectableTagParam = {
573
808
  tagId: string;
574
809
  body: ContentPlatformModel.UpdateHandpickedSchema;
575
810
  };
811
+ type EditSEOMarkupSchemaParam = {
812
+ /**
813
+ * - Alphanumeric ID allotted to a SEO Markup Schema
814
+ * Template created within a business.
815
+ */
816
+ id: string;
817
+ body: ContentPlatformModel.SEOSchemaMarkupTemplate;
818
+ };
819
+ type ExportAppCustomObjectEntriesParam = {
820
+ definitionId: string;
821
+ };
576
822
  type GenerateSEOTitleParam = {
577
823
  /**
578
824
  * - String
@@ -600,6 +846,39 @@ type GetAnnouncementsListParam = {
600
846
  */
601
847
  pageSize?: number;
602
848
  };
849
+ type GetAppCustomFieldDefinitionParam = {
850
+ definitionId: string;
851
+ };
852
+ type GetAppCustomFieldDefinitionsParam = {
853
+ pageNo: string;
854
+ pageSize: string;
855
+ resource?: string;
856
+ type?: string;
857
+ search?: string;
858
+ };
859
+ type GetAppCustomFieldsParam = {
860
+ resource: string;
861
+ };
862
+ type GetAppCustomFieldsByResourceIdParam = {
863
+ resource: string;
864
+ resourceId: string;
865
+ };
866
+ type GetAppCustomObjectParam = {
867
+ metaobjectId: string;
868
+ };
869
+ type GetAppCustomObjectDefinitionParam = {
870
+ definitionId: string;
871
+ };
872
+ type GetAppCustomObjectDefinitionsParam = {
873
+ pageNo: string;
874
+ pageSize: string;
875
+ search?: string;
876
+ };
877
+ type GetAppJobsParam = {
878
+ page: string;
879
+ pageSize: string;
880
+ actionType: string;
881
+ };
603
882
  type GetBlogBySlugParam = {
604
883
  /**
605
884
  * - A short, human-readable, URL-friendly identifier of
@@ -626,6 +905,19 @@ type GetComponentByIdParam = {
626
905
  */
627
906
  slug: string;
628
907
  };
908
+ type GetDataLoadersByServiceParam = {
909
+ /**
910
+ * - Service name of the data loader..
911
+ */
912
+ serviceName: string;
913
+ };
914
+ type GetDefaultSEOMarkupSchemaParam = {
915
+ /**
916
+ * - The type of page against which schema
917
+ * template was created
918
+ */
919
+ pageType?: string;
920
+ };
629
921
  type GetFaqByIdOrSlugParam = {
630
922
  /**
631
923
  * - ID or the slug allotted to an FAQ category.
@@ -734,6 +1026,33 @@ type GetPathRedirectionRulesParam = {
734
1026
  */
735
1027
  pageNo?: number;
736
1028
  };
1029
+ type GetSEOMarkupSchemaParam = {
1030
+ /**
1031
+ * - Alphanumeric ID allotted to a SEO Markup Schema
1032
+ * Template created within a business.
1033
+ */
1034
+ id: string;
1035
+ };
1036
+ type GetSEOMarkupSchemasParam = {
1037
+ /**
1038
+ * - Title of the seo schema.
1039
+ */
1040
+ title?: string;
1041
+ /**
1042
+ * - Boolean value for fetching seo schema.
1043
+ */
1044
+ active?: string;
1045
+ /**
1046
+ * - The page number to navigate through the given
1047
+ * set of results. Default value is 1.
1048
+ */
1049
+ pageNo?: number;
1050
+ /**
1051
+ * - The number of items to retrieve in each page.
1052
+ * Default value is 10.
1053
+ */
1054
+ pageSize?: number;
1055
+ };
737
1056
  type GetSlideshowBySlugParam = {
738
1057
  /**
739
1058
  * - A short, human-readable, URL-friendly identifier of
@@ -763,6 +1082,10 @@ type GetSlideshowsParam = {
763
1082
  */
764
1083
  pageSize?: number;
765
1084
  };
1085
+ type ImportAppCustomObjectEntriesParam = {
1086
+ definitionId: string;
1087
+ body: ContentPlatformModel.CustomObjectBulkSchema;
1088
+ };
766
1089
  type RemoveInjectableTagParam = {
767
1090
  body: ContentPlatformModel.RemoveHandpickedSchema;
768
1091
  };
@@ -776,6 +1099,9 @@ type ResetDataLoaderParam = {
776
1099
  */
777
1100
  operationId: string;
778
1101
  };
1102
+ type SampleAppCustomObjectBulkEntryParam = {
1103
+ definitionId: string;
1104
+ };
779
1105
  type SelectDataLoaderParam = {
780
1106
  /**
781
1107
  * - ID allotted to the data loader.
@@ -796,6 +1122,18 @@ type UpdateAnnouncementScheduleParam = {
796
1122
  announcementId: string;
797
1123
  body: ContentPlatformModel.ScheduleSchema;
798
1124
  };
1125
+ type UpdateAppCustomFieldDefinitionParam = {
1126
+ definitionId: string;
1127
+ body: ContentPlatformModel.CustomFieldDefinitionRequestSchema;
1128
+ };
1129
+ type UpdateAppCustomObjectParam = {
1130
+ metaobjectId: string;
1131
+ body: ContentPlatformModel.CustomObjectRequestSchema;
1132
+ };
1133
+ type UpdateAppCustomObjectDefinitionParam = {
1134
+ definitionId: string;
1135
+ body: ContentPlatformModel.CustomObjectDefinitionUpdateRequestSchema;
1136
+ };
799
1137
  type UpdateBlogParam = {
800
1138
  /**
801
1139
  * - ID allotted to the blog.
@@ -876,6 +1214,9 @@ type UpdateSlideshowParam = {
876
1214
  type UpdateSupportInformationParam = {
877
1215
  body: ContentPlatformModel.Support;
878
1216
  };
1217
+ type GetAppCustomFieldTypesParam = any;
1218
+ type GetAppCustomObjectsParam = any;
1219
+ type GetAppResourcesParam = any;
879
1220
  type GetDataLoadersParam = any;
880
1221
  type GetDefaultNavigationsParam = any;
881
1222
  type GetFaqCategoriesParam = any;