@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
@@ -103,6 +103,14 @@ export = ContentPlatformModel;
103
103
  * @property {string[]} [tags]
104
104
  * @property {string} [title]
105
105
  */
106
+ /**
107
+ * @typedef BooleanType
108
+ * @property {string} [category]
109
+ * @property {boolean} [list_enabled]
110
+ * @property {string} [name]
111
+ * @property {SupportedValidationsSchema[]} [supported_validations]
112
+ * @property {string} [type]
113
+ */
106
114
  /**
107
115
  * @typedef CategoryRequestSchema
108
116
  * @property {string} [slug]
@@ -203,12 +211,304 @@ export = ContentPlatformModel;
203
211
  * @property {string} [end]
204
212
  * @property {string} [start]
205
213
  */
214
+ /**
215
+ * @typedef CustomDataDeleteSchema
216
+ * @property {string} [message]
217
+ * @property {boolean} [success]
218
+ */
219
+ /**
220
+ * @typedef CustomField
221
+ * @property {string} [definition_id]
222
+ * @property {Object[]} [value]
223
+ */
224
+ /**
225
+ * @typedef CustomFieldDefinitionDetailResSchema
226
+ * @property {string} [_id]
227
+ * @property {string} [application_id]
228
+ * @property {string} [company_id]
229
+ * @property {string} [created_at]
230
+ * @property {string} [created_by]
231
+ * @property {string} [creator]
232
+ * @property {string} [description]
233
+ * @property {boolean} [is_deleted]
234
+ * @property {string} [key]
235
+ * @property {boolean} [multi_value]
236
+ * @property {string} [name]
237
+ * @property {string} [namespace]
238
+ * @property {boolean} [required]
239
+ * @property {string} [resource]
240
+ * @property {string} [type]
241
+ * @property {string} [updated_at]
242
+ * @property {string} [updated_by]
243
+ * @property {Object[]} [validations]
244
+ */
245
+ /**
246
+ * @typedef CustomFieldDefinitionRequestSchema
247
+ * @property {string} [description]
248
+ * @property {string} [key]
249
+ * @property {boolean} [multi_value]
250
+ * @property {string} [name]
251
+ * @property {string} [namespace]
252
+ * @property {string} [resource]
253
+ * @property {string} [type]
254
+ * @property {FieldValidations[]} [validations]
255
+ */
256
+ /**
257
+ * @typedef CustomFieldDefinitionsSchema
258
+ * @property {FieldDefinitionSchema[]} [items]
259
+ * @property {Page} [page]
260
+ */
261
+ /**
262
+ * @typedef CustomFieldRequestSchema
263
+ * @property {CustomField[]} [fields]
264
+ */
265
+ /**
266
+ * @typedef CustomFieldSchema
267
+ * @property {string} [_id]
268
+ * @property {string} [company_id]
269
+ * @property {string} [created_at]
270
+ * @property {string} [created_by]
271
+ * @property {string} [creator]
272
+ * @property {string} [definition_id]
273
+ * @property {boolean} [has_invalid_values]
274
+ * @property {Object[]} [invalid_value_errors]
275
+ * @property {boolean} [is_deleted]
276
+ * @property {string} [key]
277
+ * @property {boolean} [multi_value]
278
+ * @property {string} [namespace]
279
+ * @property {string} [resource]
280
+ * @property {string} [resource_id]
281
+ * @property {string} [type]
282
+ * @property {string} [updated_at]
283
+ * @property {CustomFieldValue[]} [value]
284
+ */
285
+ /**
286
+ * @typedef CustomFieldsResponseByResourceIdSchema
287
+ * @property {CustomFieldSchema[]} [items]
288
+ */
289
+ /**
290
+ * @typedef CustomFieldsResponseSchema
291
+ * @property {CustomFieldSchema[]} [items]
292
+ * @property {Page} [page]
293
+ */
294
+ /**
295
+ * @typedef CustomFieldTypeSchema
296
+ * @property {BooleanType} [boolean_type]
297
+ * @property {Date} [date]
298
+ * @property {Datetime} [datetime]
299
+ * @property {Dropdown} [dropdown]
300
+ * @property {File} [file]
301
+ * @property {FloatType} [float_type]
302
+ * @property {Integer} [integer]
303
+ * @property {Json} [json]
304
+ * @property {Metaobject} [metaobject]
305
+ * @property {Product} [product]
306
+ * @property {StringMultiLine} [string_multi_line]
307
+ * @property {StringSingleLine} [string_single_line]
308
+ * @property {Url} [url]
309
+ */
310
+ /**
311
+ * @typedef CustomFieldValue
312
+ * @property {Object} [value]
313
+ */
206
314
  /**
207
315
  * @typedef CustomMetaTag
208
316
  * @property {string} [_id]
209
317
  * @property {string} [content]
210
318
  * @property {string} [name]
211
319
  */
320
+ /**
321
+ * @typedef CustomObjectBulkEntry
322
+ * @property {CustomObjectJobSchema[]} [items]
323
+ * @property {Page} [page]
324
+ */
325
+ /**
326
+ * @typedef CustomObjectBulkEntryInitiateDownload
327
+ * @property {string} [message]
328
+ * @property {string} [task_id]
329
+ */
330
+ /**
331
+ * @typedef CustomObjectBulkSchema
332
+ * @property {number} [total_records]
333
+ * @property {string} [url]
334
+ */
335
+ /**
336
+ * @typedef CustomObjectByIdSchema
337
+ * @property {string} [_id]
338
+ * @property {CustomObjectListItemDefinationSchema} [definition]
339
+ * @property {string} [display_name]
340
+ * @property {CustomObjectFieldSchema[]} [fields]
341
+ * @property {Object[]} [references]
342
+ * @property {string} [status]
343
+ */
344
+ /**
345
+ * @typedef CustomObjectCustomFieldDefinitionResSchema
346
+ * @property {string} [_id]
347
+ * @property {string} [company_id]
348
+ * @property {string} [created_at]
349
+ * @property {string} [created_by]
350
+ * @property {string} [creator]
351
+ * @property {string} [description]
352
+ * @property {boolean} [is_deleted]
353
+ * @property {string} [key]
354
+ * @property {string} [metaobject_definition_id]
355
+ * @property {boolean} [multi_value]
356
+ * @property {string} [name]
357
+ * @property {string} [namespace]
358
+ * @property {boolean} [required]
359
+ * @property {string} [resource]
360
+ * @property {string} [type]
361
+ * @property {string} [updated_at]
362
+ * @property {FieldValidations[]} [validations]
363
+ */
364
+ /**
365
+ * @typedef CustomObjectCustomFieldDefinitions
366
+ * @property {string} [action]
367
+ * @property {string} [description]
368
+ * @property {string} [id]
369
+ * @property {string} [key]
370
+ * @property {boolean} [multi_value]
371
+ * @property {string} [name]
372
+ * @property {boolean} [required]
373
+ * @property {string} [type]
374
+ * @property {FieldValidations[]} [validations]
375
+ */
376
+ /**
377
+ * @typedef CustomObjectDefinitionDeleteResponseSchema
378
+ * @property {string} [message]
379
+ * @property {boolean} [success]
380
+ */
381
+ /**
382
+ * @typedef CustomObjectDefinitionRequestSchema
383
+ * @property {string} [description]
384
+ * @property {string} [display_name_key]
385
+ * @property {CustomObjectCustomFieldDefinitions[]} [field_definitions]
386
+ * @property {string} [name]
387
+ * @property {string} [type]
388
+ */
389
+ /**
390
+ * @typedef CustomObjectDefinitionSchema
391
+ * @property {string} [_id]
392
+ * @property {string} [created_by]
393
+ * @property {string} [creator]
394
+ * @property {string} [description]
395
+ * @property {string} [display_name_key]
396
+ * @property {CustomObjectCustomFieldDefinitionResSchema[]} [field_definitions]
397
+ * @property {string} [name]
398
+ * @property {string} [type]
399
+ * @property {string} [updated_by]
400
+ */
401
+ /**
402
+ * @typedef CustomObjectDefinitionsSchema
403
+ * @property {CustomObjectEntry[]} [items]
404
+ * @property {Page} [page]
405
+ */
406
+ /**
407
+ * @typedef CustomObjectDefinitionUpdateRequestSchema
408
+ * @property {string} [description]
409
+ * @property {string} [display_name_key]
410
+ * @property {CustomObjectCustomFieldDefinitions[]} [field_definitions]
411
+ * @property {string} [name]
412
+ * @property {string} [type]
413
+ */
414
+ /**
415
+ * @typedef CustomObjectEntry
416
+ * @property {string} [_id]
417
+ * @property {number} [entries_count]
418
+ * @property {number} [fields_count]
419
+ * @property {string} [name]
420
+ * @property {string} [type]
421
+ * @property {string} [updated_at]
422
+ */
423
+ /**
424
+ * @typedef CustomObjectEntryBulkUploadResponse
425
+ * @property {number} [total_records]
426
+ * @property {string} [url]
427
+ */
428
+ /**
429
+ * @typedef CustomObjectEntryFieldSchema
430
+ * @property {string} [definition_id]
431
+ * @property {Object[]} [value]
432
+ */
433
+ /**
434
+ * @typedef CustomObjectFieldSchema
435
+ * @property {string} [_id]
436
+ * @property {string} [definition_id]
437
+ * @property {string} [key]
438
+ * @property {string} [type]
439
+ * @property {Object[]} [value]
440
+ */
441
+ /**
442
+ * @typedef CustomObjectJobSchema
443
+ * @property {string} [_id]
444
+ * @property {string} [action_type]
445
+ * @property {string} [company_id]
446
+ * @property {string} [created_at]
447
+ * @property {string} [created_by]
448
+ * @property {string} [creator]
449
+ * @property {string} [entity]
450
+ * @property {number} [error_count]
451
+ * @property {string[]} [error_jobs]
452
+ * @property {string} [error_url]
453
+ * @property {string[]} [errors_occured]
454
+ * @property {number} [finished_count]
455
+ * @property {string[]} [finished_jobs]
456
+ * @property {string[]} [jobs]
457
+ * @property {CustomObjectMetaSchema} [meta]
458
+ * @property {string} [status]
459
+ * @property {number} [success_count]
460
+ * @property {number} [total_jobs]
461
+ * @property {string} [updated_at]
462
+ * @property {string} [url]
463
+ */
464
+ /**
465
+ * @typedef CustomObjectListItemDefinationSchema
466
+ * @property {string} [_id]
467
+ * @property {string} [name]
468
+ * @property {string} [type]
469
+ */
470
+ /**
471
+ * @typedef CustomObjectListItemSchema
472
+ * @property {string} [_id]
473
+ * @property {CustomObjectListItemDefinationSchema} [definition]
474
+ * @property {string} [definition_id]
475
+ * @property {string} [display_name]
476
+ * @property {number} [references]
477
+ * @property {string} [status]
478
+ * @property {string} [updated_at]
479
+ */
480
+ /**
481
+ * @typedef CustomObjectMetaSchema
482
+ * @property {string} [mo_defintion_type]
483
+ * @property {number} [mo_error_count]
484
+ * @property {number} [mo_success_count]
485
+ * @property {number} [mo_total_count]
486
+ */
487
+ /**
488
+ * @typedef CustomObjectRequestSchema
489
+ * @property {string} [definition_id]
490
+ * @property {CustomObjectEntryFieldSchema[]} [fields]
491
+ * @property {string} [status]
492
+ */
493
+ /**
494
+ * @typedef CustomObjectSchema
495
+ * @property {string} [_id]
496
+ * @property {string} [application_id]
497
+ * @property {string} [company_id]
498
+ * @property {string} [created_by]
499
+ * @property {string} [creator]
500
+ * @property {string} [definition_id]
501
+ * @property {string} [display_name]
502
+ * @property {CustomFieldSchema[]} [fields]
503
+ * @property {string} [status]
504
+ * @property {string} [type]
505
+ * @property {string} [updated_by]
506
+ */
507
+ /**
508
+ * @typedef CustomObjectsSchema
509
+ * @property {CustomObjectListItemSchema[]} [items]
510
+ * @property {Page} [page]
511
+ */
212
512
  /**
213
513
  * @typedef DataLoaderResetResponseSchema
214
514
  * @property {boolean} [reset]
@@ -246,21 +546,54 @@ export = ContentPlatformModel;
246
546
  * @typedef DataLoadersSchema
247
547
  * @property {DataLoaderSchema[]} [items]
248
548
  */
549
+ /**
550
+ * @typedef Date
551
+ * @property {string} [category]
552
+ * @property {boolean} [list_enabled]
553
+ * @property {string} [name]
554
+ * @property {SupportedValidationsSchema[]} [supported_validations]
555
+ * @property {string} [type]
556
+ */
249
557
  /**
250
558
  * @typedef DateMeta
251
559
  * @property {string} [created_on]
252
560
  * @property {string} [modified_on]
253
561
  */
562
+ /**
563
+ * @typedef Datetime
564
+ * @property {string} [category]
565
+ * @property {boolean} [list_enabled]
566
+ * @property {string} [name]
567
+ * @property {SupportedValidationsSchema[]} [supported_validations]
568
+ * @property {string} [type]
569
+ */
254
570
  /**
255
571
  * @typedef DefaultNavigationResponse
256
572
  * @property {NavigationSchema[]} [items]
257
573
  */
574
+ /**
575
+ * @typedef DefaultSchemaComponent
576
+ * @property {DefaultSEOSchemaMarkupTemplate[]} [items]
577
+ */
578
+ /**
579
+ * @typedef DefaultSEOSchemaMarkupTemplate
580
+ * @property {string} [page_type]
581
+ * @property {string} [schema]
582
+ */
258
583
  /**
259
584
  * @typedef Detail
260
585
  * @property {string} [description]
261
586
  * @property {string} [image_url]
262
587
  * @property {string} [title]
263
588
  */
589
+ /**
590
+ * @typedef Dropdown
591
+ * @property {string} [category]
592
+ * @property {boolean} [list_enabled]
593
+ * @property {string} [name]
594
+ * @property {SupportedValidationsSchema[]} [supported_validations]
595
+ * @property {string} [type]
596
+ */
264
597
  /**
265
598
  * @typedef EditorMeta
266
599
  * @property {string} [background_color]
@@ -305,6 +638,50 @@ export = ContentPlatformModel;
305
638
  * @property {string} [slug]
306
639
  * @property {string[]} [tags]
307
640
  */
641
+ /**
642
+ * @typedef FieldDefinitionSchema
643
+ * @property {string} [_id]
644
+ * @property {string} [company_id]
645
+ * @property {string} [created_at]
646
+ * @property {string} [created_by]
647
+ * @property {string} [creator]
648
+ * @property {string} [description]
649
+ * @property {number} [invalid_fields_count]
650
+ * @property {boolean} [is_deleted]
651
+ * @property {string} [key]
652
+ * @property {boolean} [multi_value]
653
+ * @property {string} [name]
654
+ * @property {string} [namespace]
655
+ * @property {boolean} [required]
656
+ * @property {string} [resource]
657
+ * @property {string} [type]
658
+ * @property {string} [type_name]
659
+ * @property {string} [updated_at]
660
+ * @property {string} [updated_by]
661
+ * @property {FieldValidations[]} [validations]
662
+ */
663
+ /**
664
+ * @typedef FieldValidations
665
+ * @property {string} [name]
666
+ * @property {string} [type]
667
+ * @property {Object} [value]
668
+ */
669
+ /**
670
+ * @typedef File
671
+ * @property {string} [category]
672
+ * @property {boolean} [list_enabled]
673
+ * @property {string} [name]
674
+ * @property {SupportedValidationsSchema[]} [supported_validations]
675
+ * @property {string} [type]
676
+ */
677
+ /**
678
+ * @typedef FloatType
679
+ * @property {string} [category]
680
+ * @property {boolean} [list_enabled]
681
+ * @property {string} [name]
682
+ * @property {SupportedValidationsSchema[]} [supported_validations]
683
+ * @property {string} [type]
684
+ */
308
685
  /**
309
686
  * @typedef GeneratedSEOContent
310
687
  * @property {string} [description]
@@ -344,6 +721,22 @@ export = ContentPlatformModel;
344
721
  * @property {string} [type]
345
722
  * @property {string} [url]
346
723
  */
724
+ /**
725
+ * @typedef Integer
726
+ * @property {string} [category]
727
+ * @property {boolean} [list_enabled]
728
+ * @property {string} [name]
729
+ * @property {SupportedValidationsSchema[]} [supported_validations]
730
+ * @property {string} [type]
731
+ */
732
+ /**
733
+ * @typedef Json
734
+ * @property {string} [category]
735
+ * @property {boolean} [list_enabled]
736
+ * @property {string} [name]
737
+ * @property {SupportedValidationsSchema[]} [supported_validations]
738
+ * @property {string} [type]
739
+ */
347
740
  /**
348
741
  * @typedef LandingPageGetResponse
349
742
  * @property {LandingPageSchema[]} [items]
@@ -371,6 +764,14 @@ export = ContentPlatformModel;
371
764
  * @property {Language} [en_us]
372
765
  * @property {Language} [hi]
373
766
  */
767
+ /**
768
+ * @typedef Metaobject
769
+ * @property {string} [category]
770
+ * @property {boolean} [list_enabled]
771
+ * @property {string} [name]
772
+ * @property {SupportedValidationsSchema[]} [supported_validations]
773
+ * @property {string} [type]
774
+ */
374
775
  /**
375
776
  * @typedef NavigationGetResponse
376
777
  * @property {NavigationSchema[]} [items]
@@ -530,6 +931,14 @@ export = ContentPlatformModel;
530
931
  * @property {boolean} [active]
531
932
  * @property {PhoneProperties[]} [phone]
532
933
  */
934
+ /**
935
+ * @typedef Product
936
+ * @property {string} [category]
937
+ * @property {boolean} [list_enabled]
938
+ * @property {string} [name]
939
+ * @property {SupportedValidationsSchema[]} [supported_validations]
940
+ * @property {string} [type]
941
+ */
533
942
  /**
534
943
  * @typedef RemoveHandpickedSchema
535
944
  * @property {string[]} [tags]
@@ -539,6 +948,16 @@ export = ContentPlatformModel;
539
948
  * @property {string} [type]
540
949
  * @property {string} [value]
541
950
  */
951
+ /**
952
+ * @typedef ResourceSchema
953
+ * @property {number} [definitions_count] - Number of definitions
954
+ * @property {string} [key] - Resource key
955
+ * @property {string} [name] - Resource name
956
+ */
957
+ /**
958
+ * @typedef ResourcesSchema
959
+ * @property {ResourceSchema[]} [resources]
960
+ */
542
961
  /**
543
962
  * @typedef ScheduleSchema
544
963
  * @property {string} [cron]
@@ -549,10 +968,19 @@ export = ContentPlatformModel;
549
968
  */
550
969
  /**
551
970
  * @typedef SEO
971
+ * @property {SEObreadcrumb[]} [breadcrumb]
972
+ * @property {string} [canonical_url]
552
973
  * @property {string} [description]
553
974
  * @property {SEOImage} [image]
975
+ * @property {SEOMetaItem[]} [meta_tags]
976
+ * @property {SEOSitemap} [sitemap]
554
977
  * @property {string} [title]
555
978
  */
979
+ /**
980
+ * @typedef SEObreadcrumb
981
+ * @property {Action} [action]
982
+ * @property {string} [url]
983
+ */
556
984
  /**
557
985
  * @typedef SeoComponent
558
986
  * @property {SeoSchema} [seo]
@@ -561,9 +989,20 @@ export = ContentPlatformModel;
561
989
  * @typedef SEOImage
562
990
  * @property {string} [url]
563
991
  */
992
+ /**
993
+ * @typedef SEOMetaItem
994
+ * @property {SEOMetaItems[]} [items]
995
+ * @property {string} [title]
996
+ */
997
+ /**
998
+ * @typedef SEOMetaItems
999
+ * @property {string} [key]
1000
+ * @property {string} [value]
1001
+ */
564
1002
  /**
565
1003
  * @typedef SeoSchema
566
1004
  * @property {string} [_id]
1005
+ * @property {string} [additional_sitemap]
567
1006
  * @property {string} [app]
568
1007
  * @property {boolean} [cannonical_enabled]
569
1008
  * @property {string} [created_at]
@@ -573,6 +1012,38 @@ export = ContentPlatformModel;
573
1012
  * @property {boolean} [sitemap_enabled]
574
1013
  * @property {string} [updated_at]
575
1014
  */
1015
+ /**
1016
+ * @typedef SeoSchemaComponent
1017
+ * @property {SEOSchemaMarkupTemplate[]} [items]
1018
+ * @property {Page} [page]
1019
+ */
1020
+ /**
1021
+ * @typedef SEOSchemaMarkupTemplate
1022
+ * @property {boolean} [active]
1023
+ * @property {string} [application]
1024
+ * @property {string} [created_at]
1025
+ * @property {string} [description]
1026
+ * @property {string} [id]
1027
+ * @property {string} [page_type]
1028
+ * @property {string} [schema]
1029
+ * @property {string} [title]
1030
+ * @property {string} [updated_at]
1031
+ */
1032
+ /**
1033
+ * @typedef SEOSchemaMarkupTemplateRequestBody
1034
+ * @property {boolean} [active]
1035
+ * @property {string} [created_at]
1036
+ * @property {string} [description]
1037
+ * @property {string} [page_type]
1038
+ * @property {string} [schema]
1039
+ * @property {string} [title]
1040
+ * @property {string} [updated_at]
1041
+ */
1042
+ /**
1043
+ * @typedef SEOSitemap
1044
+ * @property {string} [frequency]
1045
+ * @property {number} [priority]
1046
+ */
576
1047
  /**
577
1048
  * @typedef SlideshowGetResponse
578
1049
  * @property {SlideshowSchema[]} [items]
@@ -608,6 +1079,22 @@ export = ContentPlatformModel;
608
1079
  * @property {string} [platform]
609
1080
  * @property {string} [slug]
610
1081
  */
1082
+ /**
1083
+ * @typedef StringMultiLine
1084
+ * @property {string} [category]
1085
+ * @property {boolean} [list_enabled]
1086
+ * @property {string} [name]
1087
+ * @property {SupportedValidationsSchema[]} [supported_validations]
1088
+ * @property {string} [type]
1089
+ */
1090
+ /**
1091
+ * @typedef StringSingleLine
1092
+ * @property {string} [category]
1093
+ * @property {boolean} [list_enabled]
1094
+ * @property {string} [name]
1095
+ * @property {SupportedValidationsSchema[]} [supported_validations]
1096
+ * @property {string} [type]
1097
+ */
611
1098
  /**
612
1099
  * @typedef Support
613
1100
  * @property {string} [_id]
@@ -618,6 +1105,23 @@ export = ContentPlatformModel;
618
1105
  * @property {string} [created_at]
619
1106
  * @property {string} [updated_at]
620
1107
  */
1108
+ /**
1109
+ * @typedef SupportedValidationsMetaExampleSchema
1110
+ * @property {string} [name]
1111
+ * @property {string} [value]
1112
+ */
1113
+ /**
1114
+ * @typedef SupportedValidationsMetaSchema
1115
+ * @property {SupportedValidationsMetaExampleSchema[]} [examples]
1116
+ */
1117
+ /**
1118
+ * @typedef SupportedValidationsSchema
1119
+ * @property {string} [display]
1120
+ * @property {SupportedValidationsMetaSchema} [meta]
1121
+ * @property {string} [name]
1122
+ * @property {boolean} [required]
1123
+ * @property {string} [type]
1124
+ */
621
1125
  /**
622
1126
  * @typedef TagDeleteSuccessResponse
623
1127
  * @property {boolean} [success]
@@ -654,6 +1158,13 @@ export = ContentPlatformModel;
654
1158
  * @typedef UpdateHandpickedSchema
655
1159
  * @property {HandpickedTagSchema} [tag]
656
1160
  */
1161
+ /**
1162
+ * @typedef Url
1163
+ * @property {boolean} [list_enabled]
1164
+ * @property {string} [name]
1165
+ * @property {SupportedValidationsSchema[]} [supported_validations]
1166
+ * @property {string} [type]
1167
+ */
657
1168
  /** @typedef {"title" | "description"} GenerationEntityType */
658
1169
  /**
659
1170
  * @typedef {| "about-us"
@@ -706,7 +1217,7 @@ export = ContentPlatformModel;
706
1217
  declare class ContentPlatformModel {
707
1218
  }
708
1219
  declare namespace ContentPlatformModel {
709
- export { Action, ActionPage, AdminAnnouncementSchema, AnnouncementAuthorSchema, AnnouncementPageSchema, ApplicationLegal, ApplicationLegalFAQ, Asset, Author, BlogGetResponse, BlogRequest, BlogSchema, CategoryRequestSchema, CategorySchema, ChildrenSchema, CommonError, ConfigurationSchema, ContactSchema, ContentAPIError, CreateAnnouncementSchema, CreatedBySchema, CreateFaqCategoryRequestSchema, CreateFaqCategorySchema, CreateFaqResponseSchema, CreateFaqSchema, CreateTagRequestSchema, CreateTagSchema, CronSchedule, CustomMetaTag, DataLoaderResetResponseSchema, DataLoaderResponseSchema, DataLoaderSchema, DataLoaderSourceSchema, DataLoadersSchema, DateMeta, DefaultNavigationResponse, Detail, EditorMeta, EmailProperties, EmailSchema, FAQ, FAQCategorySchema, FaqSchema, GeneratedSEOContent, GenerateSEOContent, GetAnnouncementListSchema, GetFaqCategoriesSchema, GetFaqCategoryBySlugSchema, GetFaqSchema, HandpickedTagSchema, LandingPageGetResponse, LandingPageSchema, Language, LocaleLanguage, NavigationGetResponse, NavigationReference, NavigationRequest, NavigationSchema, NextSchedule, Orientation, Page, PageGetResponse, PageMetaSchema, PagePublishRequest, PageRequest, PageSchema, PageSpec, PageSpecItem, PageSpecParam, PathMappingSchema, PathSourceSchema, PhoneProperties, PhoneSchema, RemoveHandpickedSchema, ResourceContent, ScheduleSchema, SEO, SeoComponent, SEOImage, SeoSchema, SlideshowGetResponse, SlideshowMedia, SlideshowRequest, SlideshowSchema, Support, TagDeleteSuccessResponse, TagSchema, TagSourceSchema, TagsSchema, UpdateFaqCategoryRequestSchema, UpdateHandpickedSchema, GenerationEntityType, PageType };
1220
+ export { Action, ActionPage, AdminAnnouncementSchema, AnnouncementAuthorSchema, AnnouncementPageSchema, ApplicationLegal, ApplicationLegalFAQ, Asset, Author, BlogGetResponse, BlogRequest, BlogSchema, BooleanType, CategoryRequestSchema, CategorySchema, ChildrenSchema, CommonError, ConfigurationSchema, ContactSchema, ContentAPIError, CreateAnnouncementSchema, CreatedBySchema, CreateFaqCategoryRequestSchema, CreateFaqCategorySchema, CreateFaqResponseSchema, CreateFaqSchema, CreateTagRequestSchema, CreateTagSchema, CronSchedule, CustomDataDeleteSchema, CustomField, CustomFieldDefinitionDetailResSchema, CustomFieldDefinitionRequestSchema, CustomFieldDefinitionsSchema, CustomFieldRequestSchema, CustomFieldSchema, CustomFieldsResponseByResourceIdSchema, CustomFieldsResponseSchema, CustomFieldTypeSchema, CustomFieldValue, CustomMetaTag, CustomObjectBulkEntry, CustomObjectBulkEntryInitiateDownload, CustomObjectBulkSchema, CustomObjectByIdSchema, CustomObjectCustomFieldDefinitionResSchema, CustomObjectCustomFieldDefinitions, CustomObjectDefinitionDeleteResponseSchema, CustomObjectDefinitionRequestSchema, CustomObjectDefinitionSchema, CustomObjectDefinitionsSchema, CustomObjectDefinitionUpdateRequestSchema, CustomObjectEntry, CustomObjectEntryBulkUploadResponse, CustomObjectEntryFieldSchema, CustomObjectFieldSchema, CustomObjectJobSchema, CustomObjectListItemDefinationSchema, CustomObjectListItemSchema, CustomObjectMetaSchema, CustomObjectRequestSchema, CustomObjectSchema, CustomObjectsSchema, DataLoaderResetResponseSchema, DataLoaderResponseSchema, DataLoaderSchema, DataLoaderSourceSchema, DataLoadersSchema, Date, DateMeta, Datetime, DefaultNavigationResponse, DefaultSchemaComponent, DefaultSEOSchemaMarkupTemplate, Detail, Dropdown, EditorMeta, EmailProperties, EmailSchema, FAQ, FAQCategorySchema, FaqSchema, FieldDefinitionSchema, FieldValidations, File, FloatType, GeneratedSEOContent, GenerateSEOContent, GetAnnouncementListSchema, GetFaqCategoriesSchema, GetFaqCategoryBySlugSchema, GetFaqSchema, HandpickedTagSchema, Integer, Json, LandingPageGetResponse, LandingPageSchema, Language, LocaleLanguage, Metaobject, NavigationGetResponse, NavigationReference, NavigationRequest, NavigationSchema, NextSchedule, Orientation, Page, PageGetResponse, PageMetaSchema, PagePublishRequest, PageRequest, PageSchema, PageSpec, PageSpecItem, PageSpecParam, PathMappingSchema, PathSourceSchema, PhoneProperties, PhoneSchema, Product, RemoveHandpickedSchema, ResourceContent, ResourceSchema, ResourcesSchema, ScheduleSchema, SEO, SEObreadcrumb, SeoComponent, SEOImage, SEOMetaItem, SEOMetaItems, SeoSchema, SeoSchemaComponent, SEOSchemaMarkupTemplate, SEOSchemaMarkupTemplateRequestBody, SEOSitemap, SlideshowGetResponse, SlideshowMedia, SlideshowRequest, SlideshowSchema, StringMultiLine, StringSingleLine, Support, SupportedValidationsMetaExampleSchema, SupportedValidationsMetaSchema, SupportedValidationsSchema, TagDeleteSuccessResponse, TagSchema, TagSourceSchema, TagsSchema, UpdateFaqCategoryRequestSchema, UpdateHandpickedSchema, Url, GenerationEntityType, PageType };
710
1221
  }
711
1222
  /** @returns {Action} */
712
1223
  declare function Action(): Action;
@@ -824,6 +1335,15 @@ type BlogSchema = {
824
1335
  tags?: string[];
825
1336
  title?: string;
826
1337
  };
1338
+ /** @returns {BooleanType} */
1339
+ declare function BooleanType(): BooleanType;
1340
+ type BooleanType = {
1341
+ category?: string;
1342
+ list_enabled?: boolean;
1343
+ name?: string;
1344
+ supported_validations?: SupportedValidationsSchema[];
1345
+ type?: string;
1346
+ };
827
1347
  /** @returns {CategoryRequestSchema} */
828
1348
  declare function CategoryRequestSchema(): CategoryRequestSchema;
829
1349
  type CategoryRequestSchema = {
@@ -940,6 +1460,117 @@ type CronSchedule = {
940
1460
  end?: string;
941
1461
  start?: string;
942
1462
  };
1463
+ /** @returns {CustomDataDeleteSchema} */
1464
+ declare function CustomDataDeleteSchema(): CustomDataDeleteSchema;
1465
+ type CustomDataDeleteSchema = {
1466
+ message?: string;
1467
+ success?: boolean;
1468
+ };
1469
+ /** @returns {CustomField} */
1470
+ declare function CustomField(): CustomField;
1471
+ type CustomField = {
1472
+ definition_id?: string;
1473
+ value?: any[];
1474
+ };
1475
+ /** @returns {CustomFieldDefinitionDetailResSchema} */
1476
+ declare function CustomFieldDefinitionDetailResSchema(): CustomFieldDefinitionDetailResSchema;
1477
+ type CustomFieldDefinitionDetailResSchema = {
1478
+ _id?: string;
1479
+ application_id?: string;
1480
+ company_id?: string;
1481
+ created_at?: string;
1482
+ created_by?: string;
1483
+ creator?: string;
1484
+ description?: string;
1485
+ is_deleted?: boolean;
1486
+ key?: string;
1487
+ multi_value?: boolean;
1488
+ name?: string;
1489
+ namespace?: string;
1490
+ required?: boolean;
1491
+ resource?: string;
1492
+ type?: string;
1493
+ updated_at?: string;
1494
+ updated_by?: string;
1495
+ validations?: any[];
1496
+ };
1497
+ /** @returns {CustomFieldDefinitionRequestSchema} */
1498
+ declare function CustomFieldDefinitionRequestSchema(): CustomFieldDefinitionRequestSchema;
1499
+ type CustomFieldDefinitionRequestSchema = {
1500
+ description?: string;
1501
+ key?: string;
1502
+ multi_value?: boolean;
1503
+ name?: string;
1504
+ namespace?: string;
1505
+ resource?: string;
1506
+ type?: string;
1507
+ validations?: FieldValidations[];
1508
+ };
1509
+ /** @returns {CustomFieldDefinitionsSchema} */
1510
+ declare function CustomFieldDefinitionsSchema(): CustomFieldDefinitionsSchema;
1511
+ type CustomFieldDefinitionsSchema = {
1512
+ items?: FieldDefinitionSchema[];
1513
+ page?: Page;
1514
+ };
1515
+ /** @returns {CustomFieldRequestSchema} */
1516
+ declare function CustomFieldRequestSchema(): CustomFieldRequestSchema;
1517
+ type CustomFieldRequestSchema = {
1518
+ fields?: CustomField[];
1519
+ };
1520
+ /** @returns {CustomFieldSchema} */
1521
+ declare function CustomFieldSchema(): CustomFieldSchema;
1522
+ type CustomFieldSchema = {
1523
+ _id?: string;
1524
+ company_id?: string;
1525
+ created_at?: string;
1526
+ created_by?: string;
1527
+ creator?: string;
1528
+ definition_id?: string;
1529
+ has_invalid_values?: boolean;
1530
+ invalid_value_errors?: any[];
1531
+ is_deleted?: boolean;
1532
+ key?: string;
1533
+ multi_value?: boolean;
1534
+ namespace?: string;
1535
+ resource?: string;
1536
+ resource_id?: string;
1537
+ type?: string;
1538
+ updated_at?: string;
1539
+ value?: CustomFieldValue[];
1540
+ };
1541
+ /** @returns {CustomFieldsResponseByResourceIdSchema} */
1542
+ declare function CustomFieldsResponseByResourceIdSchema(): CustomFieldsResponseByResourceIdSchema;
1543
+ type CustomFieldsResponseByResourceIdSchema = {
1544
+ items?: CustomFieldSchema[];
1545
+ };
1546
+ /** @returns {CustomFieldsResponseSchema} */
1547
+ declare function CustomFieldsResponseSchema(): CustomFieldsResponseSchema;
1548
+ type CustomFieldsResponseSchema = {
1549
+ items?: CustomFieldSchema[];
1550
+ page?: Page;
1551
+ };
1552
+ /** @returns {CustomFieldTypeSchema} */
1553
+ declare function CustomFieldTypeSchema(): CustomFieldTypeSchema;
1554
+ type CustomFieldTypeSchema = {
1555
+ boolean_type?: BooleanType;
1556
+ date?: Date;
1557
+ datetime?: Datetime;
1558
+ dropdown?: Dropdown;
1559
+ file?: File;
1560
+ float_type?: FloatType;
1561
+ integer?: Integer;
1562
+ json?: Json;
1563
+ metaobject?: Metaobject;
1564
+ product?: Product;
1565
+ string_multi_line?: StringMultiLine;
1566
+ string_single_line?: StringSingleLine;
1567
+ url?: Url;
1568
+ };
1569
+ /** @returns {CustomFieldValue} */
1570
+ declare function CustomFieldValue(): CustomFieldValue;
1571
+ type CustomFieldValue = {
1572
+ value?: any;
1573
+ };
943
1574
  /** @returns {CustomMetaTag} */
944
1575
  declare function CustomMetaTag(): CustomMetaTag;
945
1576
  type CustomMetaTag = {
@@ -947,6 +1578,220 @@ type CustomMetaTag = {
947
1578
  content?: string;
948
1579
  name?: string;
949
1580
  };
1581
+ /** @returns {CustomObjectBulkEntry} */
1582
+ declare function CustomObjectBulkEntry(): CustomObjectBulkEntry;
1583
+ type CustomObjectBulkEntry = {
1584
+ items?: CustomObjectJobSchema[];
1585
+ page?: Page;
1586
+ };
1587
+ /** @returns {CustomObjectBulkEntryInitiateDownload} */
1588
+ declare function CustomObjectBulkEntryInitiateDownload(): CustomObjectBulkEntryInitiateDownload;
1589
+ type CustomObjectBulkEntryInitiateDownload = {
1590
+ message?: string;
1591
+ task_id?: string;
1592
+ };
1593
+ /** @returns {CustomObjectBulkSchema} */
1594
+ declare function CustomObjectBulkSchema(): CustomObjectBulkSchema;
1595
+ type CustomObjectBulkSchema = {
1596
+ total_records?: number;
1597
+ url?: string;
1598
+ };
1599
+ /** @returns {CustomObjectByIdSchema} */
1600
+ declare function CustomObjectByIdSchema(): CustomObjectByIdSchema;
1601
+ type CustomObjectByIdSchema = {
1602
+ _id?: string;
1603
+ definition?: CustomObjectListItemDefinationSchema;
1604
+ display_name?: string;
1605
+ fields?: CustomObjectFieldSchema[];
1606
+ references?: any[];
1607
+ status?: string;
1608
+ };
1609
+ /** @returns {CustomObjectCustomFieldDefinitionResSchema} */
1610
+ declare function CustomObjectCustomFieldDefinitionResSchema(): CustomObjectCustomFieldDefinitionResSchema;
1611
+ type CustomObjectCustomFieldDefinitionResSchema = {
1612
+ _id?: string;
1613
+ company_id?: string;
1614
+ created_at?: string;
1615
+ created_by?: string;
1616
+ creator?: string;
1617
+ description?: string;
1618
+ is_deleted?: boolean;
1619
+ key?: string;
1620
+ metaobject_definition_id?: string;
1621
+ multi_value?: boolean;
1622
+ name?: string;
1623
+ namespace?: string;
1624
+ required?: boolean;
1625
+ resource?: string;
1626
+ type?: string;
1627
+ updated_at?: string;
1628
+ validations?: FieldValidations[];
1629
+ };
1630
+ /** @returns {CustomObjectCustomFieldDefinitions} */
1631
+ declare function CustomObjectCustomFieldDefinitions(): CustomObjectCustomFieldDefinitions;
1632
+ type CustomObjectCustomFieldDefinitions = {
1633
+ action?: string;
1634
+ description?: string;
1635
+ id?: string;
1636
+ key?: string;
1637
+ multi_value?: boolean;
1638
+ name?: string;
1639
+ required?: boolean;
1640
+ type?: string;
1641
+ validations?: FieldValidations[];
1642
+ };
1643
+ /** @returns {CustomObjectDefinitionDeleteResponseSchema} */
1644
+ declare function CustomObjectDefinitionDeleteResponseSchema(): CustomObjectDefinitionDeleteResponseSchema;
1645
+ type CustomObjectDefinitionDeleteResponseSchema = {
1646
+ message?: string;
1647
+ success?: boolean;
1648
+ };
1649
+ /** @returns {CustomObjectDefinitionRequestSchema} */
1650
+ declare function CustomObjectDefinitionRequestSchema(): CustomObjectDefinitionRequestSchema;
1651
+ type CustomObjectDefinitionRequestSchema = {
1652
+ description?: string;
1653
+ display_name_key?: string;
1654
+ field_definitions?: CustomObjectCustomFieldDefinitions[];
1655
+ name?: string;
1656
+ type?: string;
1657
+ };
1658
+ /** @returns {CustomObjectDefinitionSchema} */
1659
+ declare function CustomObjectDefinitionSchema(): CustomObjectDefinitionSchema;
1660
+ type CustomObjectDefinitionSchema = {
1661
+ _id?: string;
1662
+ created_by?: string;
1663
+ creator?: string;
1664
+ description?: string;
1665
+ display_name_key?: string;
1666
+ field_definitions?: CustomObjectCustomFieldDefinitionResSchema[];
1667
+ name?: string;
1668
+ type?: string;
1669
+ updated_by?: string;
1670
+ };
1671
+ /** @returns {CustomObjectDefinitionsSchema} */
1672
+ declare function CustomObjectDefinitionsSchema(): CustomObjectDefinitionsSchema;
1673
+ type CustomObjectDefinitionsSchema = {
1674
+ items?: CustomObjectEntry[];
1675
+ page?: Page;
1676
+ };
1677
+ /** @returns {CustomObjectDefinitionUpdateRequestSchema} */
1678
+ declare function CustomObjectDefinitionUpdateRequestSchema(): CustomObjectDefinitionUpdateRequestSchema;
1679
+ type CustomObjectDefinitionUpdateRequestSchema = {
1680
+ description?: string;
1681
+ display_name_key?: string;
1682
+ field_definitions?: CustomObjectCustomFieldDefinitions[];
1683
+ name?: string;
1684
+ type?: string;
1685
+ };
1686
+ /** @returns {CustomObjectEntry} */
1687
+ declare function CustomObjectEntry(): CustomObjectEntry;
1688
+ type CustomObjectEntry = {
1689
+ _id?: string;
1690
+ entries_count?: number;
1691
+ fields_count?: number;
1692
+ name?: string;
1693
+ type?: string;
1694
+ updated_at?: string;
1695
+ };
1696
+ /** @returns {CustomObjectEntryBulkUploadResponse} */
1697
+ declare function CustomObjectEntryBulkUploadResponse(): CustomObjectEntryBulkUploadResponse;
1698
+ type CustomObjectEntryBulkUploadResponse = {
1699
+ total_records?: number;
1700
+ url?: string;
1701
+ };
1702
+ /** @returns {CustomObjectEntryFieldSchema} */
1703
+ declare function CustomObjectEntryFieldSchema(): CustomObjectEntryFieldSchema;
1704
+ type CustomObjectEntryFieldSchema = {
1705
+ definition_id?: string;
1706
+ value?: any[];
1707
+ };
1708
+ /** @returns {CustomObjectFieldSchema} */
1709
+ declare function CustomObjectFieldSchema(): CustomObjectFieldSchema;
1710
+ type CustomObjectFieldSchema = {
1711
+ _id?: string;
1712
+ definition_id?: string;
1713
+ key?: string;
1714
+ type?: string;
1715
+ value?: any[];
1716
+ };
1717
+ /** @returns {CustomObjectJobSchema} */
1718
+ declare function CustomObjectJobSchema(): CustomObjectJobSchema;
1719
+ type CustomObjectJobSchema = {
1720
+ _id?: string;
1721
+ action_type?: string;
1722
+ company_id?: string;
1723
+ created_at?: string;
1724
+ created_by?: string;
1725
+ creator?: string;
1726
+ entity?: string;
1727
+ error_count?: number;
1728
+ error_jobs?: string[];
1729
+ error_url?: string;
1730
+ errors_occured?: string[];
1731
+ finished_count?: number;
1732
+ finished_jobs?: string[];
1733
+ jobs?: string[];
1734
+ meta?: CustomObjectMetaSchema;
1735
+ status?: string;
1736
+ success_count?: number;
1737
+ total_jobs?: number;
1738
+ updated_at?: string;
1739
+ url?: string;
1740
+ };
1741
+ /** @returns {CustomObjectListItemDefinationSchema} */
1742
+ declare function CustomObjectListItemDefinationSchema(): CustomObjectListItemDefinationSchema;
1743
+ type CustomObjectListItemDefinationSchema = {
1744
+ _id?: string;
1745
+ name?: string;
1746
+ type?: string;
1747
+ };
1748
+ /** @returns {CustomObjectListItemSchema} */
1749
+ declare function CustomObjectListItemSchema(): CustomObjectListItemSchema;
1750
+ type CustomObjectListItemSchema = {
1751
+ _id?: string;
1752
+ definition?: CustomObjectListItemDefinationSchema;
1753
+ definition_id?: string;
1754
+ display_name?: string;
1755
+ references?: number;
1756
+ status?: string;
1757
+ updated_at?: string;
1758
+ };
1759
+ /** @returns {CustomObjectMetaSchema} */
1760
+ declare function CustomObjectMetaSchema(): CustomObjectMetaSchema;
1761
+ type CustomObjectMetaSchema = {
1762
+ mo_defintion_type?: string;
1763
+ mo_error_count?: number;
1764
+ mo_success_count?: number;
1765
+ mo_total_count?: number;
1766
+ };
1767
+ /** @returns {CustomObjectRequestSchema} */
1768
+ declare function CustomObjectRequestSchema(): CustomObjectRequestSchema;
1769
+ type CustomObjectRequestSchema = {
1770
+ definition_id?: string;
1771
+ fields?: CustomObjectEntryFieldSchema[];
1772
+ status?: string;
1773
+ };
1774
+ /** @returns {CustomObjectSchema} */
1775
+ declare function CustomObjectSchema(): CustomObjectSchema;
1776
+ type CustomObjectSchema = {
1777
+ _id?: string;
1778
+ application_id?: string;
1779
+ company_id?: string;
1780
+ created_by?: string;
1781
+ creator?: string;
1782
+ definition_id?: string;
1783
+ display_name?: string;
1784
+ fields?: CustomFieldSchema[];
1785
+ status?: string;
1786
+ type?: string;
1787
+ updated_by?: string;
1788
+ };
1789
+ /** @returns {CustomObjectsSchema} */
1790
+ declare function CustomObjectsSchema(): CustomObjectsSchema;
1791
+ type CustomObjectsSchema = {
1792
+ items?: CustomObjectListItemSchema[];
1793
+ page?: Page;
1794
+ };
950
1795
  /** @returns {DataLoaderResetResponseSchema} */
951
1796
  declare function DataLoaderResetResponseSchema(): DataLoaderResetResponseSchema;
952
1797
  type DataLoaderResetResponseSchema = {
@@ -989,17 +1834,46 @@ declare function DataLoadersSchema(): DataLoadersSchema;
989
1834
  type DataLoadersSchema = {
990
1835
  items?: DataLoaderSchema[];
991
1836
  };
1837
+ /** @returns {Date} */
1838
+ declare function Date(): Date;
1839
+ type Date = {
1840
+ category?: string;
1841
+ list_enabled?: boolean;
1842
+ name?: string;
1843
+ supported_validations?: SupportedValidationsSchema[];
1844
+ type?: string;
1845
+ };
992
1846
  /** @returns {DateMeta} */
993
1847
  declare function DateMeta(): DateMeta;
994
1848
  type DateMeta = {
995
1849
  created_on?: string;
996
1850
  modified_on?: string;
997
1851
  };
1852
+ /** @returns {Datetime} */
1853
+ declare function Datetime(): Datetime;
1854
+ type Datetime = {
1855
+ category?: string;
1856
+ list_enabled?: boolean;
1857
+ name?: string;
1858
+ supported_validations?: SupportedValidationsSchema[];
1859
+ type?: string;
1860
+ };
998
1861
  /** @returns {DefaultNavigationResponse} */
999
1862
  declare function DefaultNavigationResponse(): DefaultNavigationResponse;
1000
1863
  type DefaultNavigationResponse = {
1001
1864
  items?: NavigationSchema[];
1002
1865
  };
1866
+ /** @returns {DefaultSchemaComponent} */
1867
+ declare function DefaultSchemaComponent(): DefaultSchemaComponent;
1868
+ type DefaultSchemaComponent = {
1869
+ items?: DefaultSEOSchemaMarkupTemplate[];
1870
+ };
1871
+ /** @returns {DefaultSEOSchemaMarkupTemplate} */
1872
+ declare function DefaultSEOSchemaMarkupTemplate(): DefaultSEOSchemaMarkupTemplate;
1873
+ type DefaultSEOSchemaMarkupTemplate = {
1874
+ page_type?: string;
1875
+ schema?: string;
1876
+ };
1003
1877
  /** @returns {Detail} */
1004
1878
  declare function Detail(): Detail;
1005
1879
  type Detail = {
@@ -1007,6 +1881,15 @@ type Detail = {
1007
1881
  image_url?: string;
1008
1882
  title?: string;
1009
1883
  };
1884
+ /** @returns {Dropdown} */
1885
+ declare function Dropdown(): Dropdown;
1886
+ type Dropdown = {
1887
+ category?: string;
1888
+ list_enabled?: boolean;
1889
+ name?: string;
1890
+ supported_validations?: SupportedValidationsSchema[];
1891
+ type?: string;
1892
+ };
1010
1893
  /** @returns {EditorMeta} */
1011
1894
  declare function EditorMeta(): EditorMeta;
1012
1895
  type EditorMeta = {
@@ -1057,6 +1940,54 @@ type FaqSchema = {
1057
1940
  slug?: string;
1058
1941
  tags?: string[];
1059
1942
  };
1943
+ /** @returns {FieldDefinitionSchema} */
1944
+ declare function FieldDefinitionSchema(): FieldDefinitionSchema;
1945
+ type FieldDefinitionSchema = {
1946
+ _id?: string;
1947
+ company_id?: string;
1948
+ created_at?: string;
1949
+ created_by?: string;
1950
+ creator?: string;
1951
+ description?: string;
1952
+ invalid_fields_count?: number;
1953
+ is_deleted?: boolean;
1954
+ key?: string;
1955
+ multi_value?: boolean;
1956
+ name?: string;
1957
+ namespace?: string;
1958
+ required?: boolean;
1959
+ resource?: string;
1960
+ type?: string;
1961
+ type_name?: string;
1962
+ updated_at?: string;
1963
+ updated_by?: string;
1964
+ validations?: FieldValidations[];
1965
+ };
1966
+ /** @returns {FieldValidations} */
1967
+ declare function FieldValidations(): FieldValidations;
1968
+ type FieldValidations = {
1969
+ name?: string;
1970
+ type?: string;
1971
+ value?: any;
1972
+ };
1973
+ /** @returns {File} */
1974
+ declare function File(): File;
1975
+ type File = {
1976
+ category?: string;
1977
+ list_enabled?: boolean;
1978
+ name?: string;
1979
+ supported_validations?: SupportedValidationsSchema[];
1980
+ type?: string;
1981
+ };
1982
+ /** @returns {FloatType} */
1983
+ declare function FloatType(): FloatType;
1984
+ type FloatType = {
1985
+ category?: string;
1986
+ list_enabled?: boolean;
1987
+ name?: string;
1988
+ supported_validations?: SupportedValidationsSchema[];
1989
+ type?: string;
1990
+ };
1060
1991
  /** @returns {GeneratedSEOContent} */
1061
1992
  declare function GeneratedSEOContent(): GeneratedSEOContent;
1062
1993
  type GeneratedSEOContent = {
@@ -1103,6 +2034,24 @@ type HandpickedTagSchema = {
1103
2034
  type?: string;
1104
2035
  url?: string;
1105
2036
  };
2037
+ /** @returns {Integer} */
2038
+ declare function Integer(): Integer;
2039
+ type Integer = {
2040
+ category?: string;
2041
+ list_enabled?: boolean;
2042
+ name?: string;
2043
+ supported_validations?: SupportedValidationsSchema[];
2044
+ type?: string;
2045
+ };
2046
+ /** @returns {Json} */
2047
+ declare function Json(): Json;
2048
+ type Json = {
2049
+ category?: string;
2050
+ list_enabled?: boolean;
2051
+ name?: string;
2052
+ supported_validations?: SupportedValidationsSchema[];
2053
+ type?: string;
2054
+ };
1106
2055
  /** @returns {LandingPageGetResponse} */
1107
2056
  declare function LandingPageGetResponse(): LandingPageGetResponse;
1108
2057
  type LandingPageGetResponse = {
@@ -1134,6 +2083,15 @@ type LocaleLanguage = {
1134
2083
  en_us?: Language;
1135
2084
  hi?: Language;
1136
2085
  };
2086
+ /** @returns {Metaobject} */
2087
+ declare function Metaobject(): Metaobject;
2088
+ type Metaobject = {
2089
+ category?: string;
2090
+ list_enabled?: boolean;
2091
+ name?: string;
2092
+ supported_validations?: SupportedValidationsSchema[];
2093
+ type?: string;
2094
+ };
1137
2095
  /** @returns {NavigationGetResponse} */
1138
2096
  declare function NavigationGetResponse(): NavigationGetResponse;
1139
2097
  type NavigationGetResponse = {
@@ -1315,6 +2273,15 @@ type PhoneSchema = {
1315
2273
  active?: boolean;
1316
2274
  phone?: PhoneProperties[];
1317
2275
  };
2276
+ /** @returns {Product} */
2277
+ declare function Product(): Product;
2278
+ type Product = {
2279
+ category?: string;
2280
+ list_enabled?: boolean;
2281
+ name?: string;
2282
+ supported_validations?: SupportedValidationsSchema[];
2283
+ type?: string;
2284
+ };
1318
2285
  /** @returns {RemoveHandpickedSchema} */
1319
2286
  declare function RemoveHandpickedSchema(): RemoveHandpickedSchema;
1320
2287
  type RemoveHandpickedSchema = {
@@ -1326,6 +2293,27 @@ type ResourceContent = {
1326
2293
  type?: string;
1327
2294
  value?: string;
1328
2295
  };
2296
+ /** @returns {ResourceSchema} */
2297
+ declare function ResourceSchema(): ResourceSchema;
2298
+ type ResourceSchema = {
2299
+ /**
2300
+ * - Number of definitions
2301
+ */
2302
+ definitions_count?: number;
2303
+ /**
2304
+ * - Resource key
2305
+ */
2306
+ key?: string;
2307
+ /**
2308
+ * - Resource name
2309
+ */
2310
+ name?: string;
2311
+ };
2312
+ /** @returns {ResourcesSchema} */
2313
+ declare function ResourcesSchema(): ResourcesSchema;
2314
+ type ResourcesSchema = {
2315
+ resources?: ResourceSchema[];
2316
+ };
1329
2317
  /** @returns {ScheduleSchema} */
1330
2318
  declare function ScheduleSchema(): ScheduleSchema;
1331
2319
  type ScheduleSchema = {
@@ -1338,10 +2326,20 @@ type ScheduleSchema = {
1338
2326
  /** @returns {SEO} */
1339
2327
  declare function SEO(): SEO;
1340
2328
  type SEO = {
2329
+ breadcrumb?: SEObreadcrumb[];
2330
+ canonical_url?: string;
1341
2331
  description?: string;
1342
2332
  image?: SEOImage;
2333
+ meta_tags?: SEOMetaItem[];
2334
+ sitemap?: SEOSitemap;
1343
2335
  title?: string;
1344
2336
  };
2337
+ /** @returns {SEObreadcrumb} */
2338
+ declare function SEObreadcrumb(): SEObreadcrumb;
2339
+ type SEObreadcrumb = {
2340
+ action?: Action;
2341
+ url?: string;
2342
+ };
1345
2343
  /** @returns {SeoComponent} */
1346
2344
  declare function SeoComponent(): SeoComponent;
1347
2345
  type SeoComponent = {
@@ -1352,10 +2350,23 @@ declare function SEOImage(): SEOImage;
1352
2350
  type SEOImage = {
1353
2351
  url?: string;
1354
2352
  };
2353
+ /** @returns {SEOMetaItem} */
2354
+ declare function SEOMetaItem(): SEOMetaItem;
2355
+ type SEOMetaItem = {
2356
+ items?: SEOMetaItems[];
2357
+ title?: string;
2358
+ };
2359
+ /** @returns {SEOMetaItems} */
2360
+ declare function SEOMetaItems(): SEOMetaItems;
2361
+ type SEOMetaItems = {
2362
+ key?: string;
2363
+ value?: string;
2364
+ };
1355
2365
  /** @returns {SeoSchema} */
1356
2366
  declare function SeoSchema(): SeoSchema;
1357
2367
  type SeoSchema = {
1358
2368
  _id?: string;
2369
+ additional_sitemap?: string;
1359
2370
  app?: string;
1360
2371
  cannonical_enabled?: boolean;
1361
2372
  created_at?: string;
@@ -1365,6 +2376,42 @@ type SeoSchema = {
1365
2376
  sitemap_enabled?: boolean;
1366
2377
  updated_at?: string;
1367
2378
  };
2379
+ /** @returns {SeoSchemaComponent} */
2380
+ declare function SeoSchemaComponent(): SeoSchemaComponent;
2381
+ type SeoSchemaComponent = {
2382
+ items?: SEOSchemaMarkupTemplate[];
2383
+ page?: Page;
2384
+ };
2385
+ /** @returns {SEOSchemaMarkupTemplate} */
2386
+ declare function SEOSchemaMarkupTemplate(): SEOSchemaMarkupTemplate;
2387
+ type SEOSchemaMarkupTemplate = {
2388
+ active?: boolean;
2389
+ application?: string;
2390
+ created_at?: string;
2391
+ description?: string;
2392
+ id?: string;
2393
+ page_type?: string;
2394
+ schema?: string;
2395
+ title?: string;
2396
+ updated_at?: string;
2397
+ };
2398
+ /** @returns {SEOSchemaMarkupTemplateRequestBody} */
2399
+ declare function SEOSchemaMarkupTemplateRequestBody(): SEOSchemaMarkupTemplateRequestBody;
2400
+ type SEOSchemaMarkupTemplateRequestBody = {
2401
+ active?: boolean;
2402
+ created_at?: string;
2403
+ description?: string;
2404
+ page_type?: string;
2405
+ schema?: string;
2406
+ title?: string;
2407
+ updated_at?: string;
2408
+ };
2409
+ /** @returns {SEOSitemap} */
2410
+ declare function SEOSitemap(): SEOSitemap;
2411
+ type SEOSitemap = {
2412
+ frequency?: string;
2413
+ priority?: number;
2414
+ };
1368
2415
  /** @returns {SlideshowGetResponse} */
1369
2416
  declare function SlideshowGetResponse(): SlideshowGetResponse;
1370
2417
  type SlideshowGetResponse = {
@@ -1404,6 +2451,24 @@ type SlideshowSchema = {
1404
2451
  platform?: string;
1405
2452
  slug?: string;
1406
2453
  };
2454
+ /** @returns {StringMultiLine} */
2455
+ declare function StringMultiLine(): StringMultiLine;
2456
+ type StringMultiLine = {
2457
+ category?: string;
2458
+ list_enabled?: boolean;
2459
+ name?: string;
2460
+ supported_validations?: SupportedValidationsSchema[];
2461
+ type?: string;
2462
+ };
2463
+ /** @returns {StringSingleLine} */
2464
+ declare function StringSingleLine(): StringSingleLine;
2465
+ type StringSingleLine = {
2466
+ category?: string;
2467
+ list_enabled?: boolean;
2468
+ name?: string;
2469
+ supported_validations?: SupportedValidationsSchema[];
2470
+ type?: string;
2471
+ };
1407
2472
  /** @returns {Support} */
1408
2473
  declare function Support(): Support;
1409
2474
  type Support = {
@@ -1415,6 +2480,26 @@ type Support = {
1415
2480
  created_at?: string;
1416
2481
  updated_at?: string;
1417
2482
  };
2483
+ /** @returns {SupportedValidationsMetaExampleSchema} */
2484
+ declare function SupportedValidationsMetaExampleSchema(): SupportedValidationsMetaExampleSchema;
2485
+ type SupportedValidationsMetaExampleSchema = {
2486
+ name?: string;
2487
+ value?: string;
2488
+ };
2489
+ /** @returns {SupportedValidationsMetaSchema} */
2490
+ declare function SupportedValidationsMetaSchema(): SupportedValidationsMetaSchema;
2491
+ type SupportedValidationsMetaSchema = {
2492
+ examples?: SupportedValidationsMetaExampleSchema[];
2493
+ };
2494
+ /** @returns {SupportedValidationsSchema} */
2495
+ declare function SupportedValidationsSchema(): SupportedValidationsSchema;
2496
+ type SupportedValidationsSchema = {
2497
+ display?: string;
2498
+ meta?: SupportedValidationsMetaSchema;
2499
+ name?: string;
2500
+ required?: boolean;
2501
+ type?: string;
2502
+ };
1418
2503
  /** @returns {TagDeleteSuccessResponse} */
1419
2504
  declare function TagDeleteSuccessResponse(): TagDeleteSuccessResponse;
1420
2505
  type TagDeleteSuccessResponse = {
@@ -1457,6 +2542,14 @@ declare function UpdateHandpickedSchema(): UpdateHandpickedSchema;
1457
2542
  type UpdateHandpickedSchema = {
1458
2543
  tag?: HandpickedTagSchema;
1459
2544
  };
2545
+ /** @returns {Url} */
2546
+ declare function Url(): Url;
2547
+ type Url = {
2548
+ list_enabled?: boolean;
2549
+ name?: string;
2550
+ supported_validations?: SupportedValidationsSchema[];
2551
+ type?: string;
2552
+ };
1460
2553
  /**
1461
2554
  * Enum: GenerationEntityType Used By: Content
1462
2555
  *