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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (231) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/sdk/application/Cart/CartApplicationClient.d.ts +1 -1
  4. package/sdk/application/Cart/CartApplicationClient.js +5 -3
  5. package/sdk/application/Cart/CartApplicationModel.d.ts +107 -1
  6. package/sdk/application/Cart/CartApplicationModel.js +74 -0
  7. package/sdk/application/Cart/CartApplicationValidator.d.ts +4 -0
  8. package/sdk/application/Cart/CartApplicationValidator.js +4 -0
  9. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +3 -6
  10. package/sdk/application/Catalog/CatalogApplicationClient.js +7 -20
  11. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +2 -2
  12. package/sdk/application/Catalog/CatalogApplicationModel.js +2 -2
  13. package/sdk/application/Catalog/CatalogApplicationValidator.d.ts +0 -14
  14. package/sdk/application/Catalog/CatalogApplicationValidator.js +0 -6
  15. package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +183 -49
  16. package/sdk/application/Configuration/ConfigurationApplicationModel.js +173 -31
  17. package/sdk/application/Content/ContentApplicationClient.d.ts +36 -0
  18. package/sdk/application/Content/ContentApplicationClient.js +246 -0
  19. package/sdk/application/Content/ContentApplicationModel.d.ts +208 -1
  20. package/sdk/application/Content/ContentApplicationModel.js +252 -0
  21. package/sdk/application/Content/ContentApplicationValidator.d.ts +40 -1
  22. package/sdk/application/Content/ContentApplicationValidator.js +41 -0
  23. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +67 -0
  24. package/sdk/application/Logistic/LogisticApplicationClient.js +547 -0
  25. package/sdk/application/Logistic/LogisticApplicationModel.d.ts +456 -1
  26. package/sdk/application/Logistic/LogisticApplicationModel.js +488 -0
  27. package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +211 -1
  28. package/sdk/application/Logistic/LogisticApplicationValidator.js +131 -0
  29. package/sdk/application/Order/OrderApplicationClient.d.ts +3 -3
  30. package/sdk/application/Order/OrderApplicationClient.js +32 -8
  31. package/sdk/application/Order/OrderApplicationModel.d.ts +6 -0
  32. package/sdk/application/Order/OrderApplicationModel.js +6 -0
  33. package/sdk/application/Order/OrderApplicationValidator.d.ts +20 -0
  34. package/sdk/application/Order/OrderApplicationValidator.js +8 -0
  35. package/sdk/application/Payment/PaymentApplicationClient.d.ts +46 -2
  36. package/sdk/application/Payment/PaymentApplicationClient.js +341 -10
  37. package/sdk/application/Payment/PaymentApplicationModel.d.ts +493 -186
  38. package/sdk/application/Payment/PaymentApplicationModel.js +341 -70
  39. package/sdk/application/Payment/PaymentApplicationValidator.d.ts +59 -14
  40. package/sdk/application/Payment/PaymentApplicationValidator.js +64 -10
  41. package/sdk/application/PosCart/PosCartApplicationModel.d.ts +34 -1
  42. package/sdk/application/PosCart/PosCartApplicationModel.js +24 -0
  43. package/sdk/application/Theme/ThemeApplicationClient.d.ts +1 -1
  44. package/sdk/application/Theme/ThemeApplicationClient.js +7 -3
  45. package/sdk/application/Theme/ThemeApplicationModel.d.ts +222 -36
  46. package/sdk/application/Theme/ThemeApplicationModel.js +322 -26
  47. package/sdk/application/Theme/ThemeApplicationValidator.d.ts +10 -0
  48. package/sdk/application/Theme/ThemeApplicationValidator.js +4 -0
  49. package/sdk/application/User/UserApplicationClient.d.ts +33 -0
  50. package/sdk/application/User/UserApplicationClient.js +239 -0
  51. package/sdk/application/User/UserApplicationModel.d.ts +28 -13
  52. package/sdk/application/User/UserApplicationModel.js +36 -12
  53. package/sdk/application/User/UserApplicationValidator.d.ts +34 -1
  54. package/sdk/application/User/UserApplicationValidator.js +36 -0
  55. package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +3 -15
  56. package/sdk/partner/FileStorage/FileStoragePartnerModel.js +2 -14
  57. package/sdk/partner/Lead/LeadPartnerClient.d.ts +125 -0
  58. package/sdk/partner/Lead/LeadPartnerClient.js +785 -0
  59. package/sdk/partner/Lead/LeadPartnerModel.d.ts +1127 -0
  60. package/sdk/partner/Lead/LeadPartnerModel.js +896 -0
  61. package/sdk/partner/Lead/LeadPartnerValidator.d.ts +12 -0
  62. package/sdk/partner/Lead/LeadPartnerValidator.js +67 -0
  63. package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +155 -0
  64. package/sdk/partner/Logistics/LogisticsPartnerClient.js +1195 -0
  65. package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +372 -0
  66. package/sdk/partner/Logistics/LogisticsPartnerModel.js +442 -0
  67. package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +16 -0
  68. package/sdk/partner/Logistics/LogisticsPartnerValidator.js +123 -0
  69. package/sdk/partner/PartnerClient.d.ts +6 -0
  70. package/sdk/partner/PartnerClient.js +9 -0
  71. package/sdk/partner/Theme/ThemePartnerClient.d.ts +10 -0
  72. package/sdk/partner/Theme/ThemePartnerClient.js +80 -0
  73. package/sdk/partner/Theme/ThemePartnerModel.d.ts +100 -43
  74. package/sdk/partner/Theme/ThemePartnerModel.js +74 -30
  75. package/sdk/partner/Theme/ThemePartnerValidator.d.ts +1 -0
  76. package/sdk/partner/Theme/ThemePartnerValidator.js +9 -0
  77. package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +99 -0
  78. package/sdk/partner/Webhook/WebhookPartnerClient.js +753 -0
  79. package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +566 -0
  80. package/sdk/partner/Webhook/WebhookPartnerModel.js +583 -0
  81. package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +12 -0
  82. package/sdk/partner/Webhook/WebhookPartnerValidator.js +74 -0
  83. package/sdk/partner/index.d.ts +3 -0
  84. package/sdk/partner/index.js +6 -0
  85. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +2 -2
  86. package/sdk/platform/Billing/BillingPlatformClient.d.ts +11 -1
  87. package/sdk/platform/Billing/BillingPlatformClient.js +110 -3
  88. package/sdk/platform/Billing/BillingPlatformModel.d.ts +67 -1
  89. package/sdk/platform/Billing/BillingPlatformModel.js +78 -0
  90. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +43 -4
  91. package/sdk/platform/Billing/BillingPlatformValidator.js +29 -2
  92. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +1 -1
  93. package/sdk/platform/Cart/CartPlatformApplicationClient.js +7 -1
  94. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +4 -0
  95. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +4 -0
  96. package/sdk/platform/Cart/CartPlatformModel.d.ts +100 -5
  97. package/sdk/platform/Cart/CartPlatformModel.js +71 -4
  98. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +15 -11
  99. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +52 -21
  100. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +27 -0
  101. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +11 -0
  102. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +26 -4
  103. package/sdk/platform/Catalog/CatalogPlatformClient.js +173 -7
  104. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +304 -1
  105. package/sdk/platform/Catalog/CatalogPlatformModel.js +335 -0
  106. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +31 -3
  107. package/sdk/platform/Catalog/CatalogPlatformValidator.js +27 -2
  108. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +138 -36
  109. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +739 -57
  110. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +128 -3
  111. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +111 -1
  112. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +150 -1
  113. package/sdk/platform/Communication/CommunicationPlatformModel.js +172 -0
  114. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +8 -2
  115. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +32 -4
  116. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +38 -9
  117. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +42 -8
  118. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +14 -0
  119. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +6 -0
  120. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +8 -8
  121. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +4 -4
  122. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +371 -132
  123. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +288 -77
  124. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +2 -2
  125. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +2 -2
  126. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +391 -0
  127. package/sdk/platform/Content/ContentPlatformApplicationClient.js +3641 -1059
  128. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +351 -1
  129. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +410 -0
  130. package/sdk/platform/Content/ContentPlatformClient.d.ts +277 -0
  131. package/sdk/platform/Content/ContentPlatformClient.js +2011 -0
  132. package/sdk/platform/Content/ContentPlatformModel.d.ts +1100 -1
  133. package/sdk/platform/Content/ContentPlatformModel.js +1362 -46
  134. package/sdk/platform/Content/ContentPlatformValidator.d.ts +247 -0
  135. package/sdk/platform/Content/ContentPlatformValidator.js +319 -0
  136. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +2 -2
  137. package/sdk/platform/Discount/DiscountPlatformClient.js +2 -2
  138. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +96 -13
  139. package/sdk/platform/Discount/DiscountPlatformModel.js +104 -12
  140. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +16 -6
  141. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +117 -8
  142. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +55 -4
  143. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +39 -2
  144. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +18 -19
  145. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +20 -18
  146. package/sdk/platform/Finance/FinancePlatformClient.d.ts +33 -0
  147. package/sdk/platform/Finance/FinancePlatformClient.js +240 -0
  148. package/sdk/platform/Finance/FinancePlatformModel.d.ts +151 -5
  149. package/sdk/platform/Finance/FinancePlatformModel.js +190 -4
  150. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +38 -1
  151. package/sdk/platform/Finance/FinancePlatformValidator.js +38 -0
  152. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +38 -28
  153. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +137 -56
  154. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +41 -29
  155. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +33 -21
  156. package/sdk/platform/Lead/LeadPlatformModel.d.ts +12 -3
  157. package/sdk/platform/Lead/LeadPlatformModel.js +16 -2
  158. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +23 -1
  159. package/sdk/platform/Order/OrderPlatformApplicationClient.js +178 -1
  160. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +39 -1
  161. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +32 -0
  162. package/sdk/platform/Order/OrderPlatformClient.d.ts +202 -31
  163. package/sdk/platform/Order/OrderPlatformClient.js +2010 -586
  164. package/sdk/platform/Order/OrderPlatformModel.d.ts +1032 -470
  165. package/sdk/platform/Order/OrderPlatformModel.js +1187 -534
  166. package/sdk/platform/Order/OrderPlatformValidator.d.ts +318 -35
  167. package/sdk/platform/Order/OrderPlatformValidator.js +292 -29
  168. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +119 -13
  169. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +749 -39
  170. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +143 -7
  171. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +133 -6
  172. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +1 -1
  173. package/sdk/platform/Payment/PaymentPlatformClient.js +1 -1
  174. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +996 -134
  175. package/sdk/platform/Payment/PaymentPlatformModel.js +721 -58
  176. package/sdk/platform/PlatformApplicationClient.d.ts +2 -2
  177. package/sdk/platform/PlatformApplicationClient.js +4 -4
  178. package/sdk/platform/PlatformClient.d.ts +4 -2
  179. package/sdk/platform/PlatformClient.js +8 -4
  180. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +142 -66
  181. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +645 -147
  182. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +131 -63
  183. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +126 -47
  184. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +217 -105
  185. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +1136 -347
  186. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +912 -313
  187. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +1071 -355
  188. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +382 -133
  189. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +266 -102
  190. package/sdk/platform/Theme/ThemePlatformClient.d.ts +11 -1
  191. package/sdk/platform/Theme/ThemePlatformClient.js +87 -3
  192. package/sdk/platform/Theme/ThemePlatformModel.d.ts +333 -47
  193. package/sdk/platform/Theme/ThemePlatformModel.js +395 -35
  194. package/sdk/platform/Theme/ThemePlatformValidator.d.ts +28 -4
  195. package/sdk/platform/Theme/ThemePlatformValidator.js +21 -2
  196. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +116 -1
  197. package/sdk/platform/User/UserPlatformApplicationClient.js +931 -85
  198. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +224 -7
  199. package/sdk/platform/User/UserPlatformApplicationValidator.js +173 -5
  200. package/sdk/platform/User/UserPlatformModel.d.ts +344 -7
  201. package/sdk/platform/User/UserPlatformModel.js +256 -5
  202. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +47 -39
  203. package/sdk/platform/Webhook/WebhookPlatformClient.js +63 -61
  204. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +264 -156
  205. package/sdk/platform/Webhook/WebhookPlatformModel.js +276 -153
  206. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +7 -10
  207. package/sdk/platform/Webhook/WebhookPlatformValidator.js +6 -6
  208. package/sdk/platform/index.d.ts +1 -1
  209. package/sdk/platform/index.js +2 -2
  210. package/sdk/public/Billing/BillingPublicClient.d.ts +23 -0
  211. package/sdk/public/Billing/BillingPublicClient.js +116 -0
  212. package/sdk/public/Billing/BillingPublicModel.d.ts +92 -0
  213. package/sdk/public/Billing/BillingPublicModel.js +96 -0
  214. package/sdk/public/Billing/BillingPublicValidator.d.ts +18 -0
  215. package/sdk/public/Billing/BillingPublicValidator.js +19 -0
  216. package/sdk/public/Content/ContentPublicClient.d.ts +22 -0
  217. package/sdk/public/Content/ContentPublicClient.js +114 -0
  218. package/sdk/public/Content/ContentPublicModel.d.ts +53 -0
  219. package/sdk/public/Content/ContentPublicModel.js +60 -0
  220. package/sdk/public/Content/ContentPublicValidator.d.ts +18 -0
  221. package/sdk/public/Content/ContentPublicValidator.js +19 -0
  222. package/sdk/public/PublicClient.d.ts +4 -0
  223. package/sdk/public/PublicClient.js +8 -0
  224. package/sdk/public/Webhook/WebhookPublicClient.d.ts +33 -0
  225. package/sdk/public/Webhook/WebhookPublicClient.js +242 -0
  226. package/sdk/public/Webhook/WebhookPublicModel.d.ts +147 -1
  227. package/sdk/public/Webhook/WebhookPublicModel.js +177 -1
  228. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +23 -1
  229. package/sdk/public/Webhook/WebhookPublicValidator.js +31 -0
  230. package/sdk/public/index.d.ts +2 -0
  231. package/sdk/public/index.js +4 -0
@@ -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,55 @@ 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
+ * @property {Object} [target_json]
583
+ */
258
584
  /**
259
585
  * @typedef Detail
260
586
  * @property {string} [description]
261
587
  * @property {string} [image_url]
262
588
  * @property {string} [title]
263
589
  */
590
+ /**
591
+ * @typedef Dropdown
592
+ * @property {string} [category]
593
+ * @property {boolean} [list_enabled]
594
+ * @property {string} [name]
595
+ * @property {SupportedValidationsSchema[]} [supported_validations]
596
+ * @property {string} [type]
597
+ */
264
598
  /**
265
599
  * @typedef EditorMeta
266
600
  * @property {string} [background_color]
@@ -305,6 +639,50 @@ export = ContentPlatformModel;
305
639
  * @property {string} [slug]
306
640
  * @property {string[]} [tags]
307
641
  */
642
+ /**
643
+ * @typedef FieldDefinitionSchema
644
+ * @property {string} [_id]
645
+ * @property {string} [company_id]
646
+ * @property {string} [created_at]
647
+ * @property {string} [created_by]
648
+ * @property {string} [creator]
649
+ * @property {string} [description]
650
+ * @property {number} [invalid_fields_count]
651
+ * @property {boolean} [is_deleted]
652
+ * @property {string} [key]
653
+ * @property {boolean} [multi_value]
654
+ * @property {string} [name]
655
+ * @property {string} [namespace]
656
+ * @property {boolean} [required]
657
+ * @property {string} [resource]
658
+ * @property {string} [type]
659
+ * @property {string} [type_name]
660
+ * @property {string} [updated_at]
661
+ * @property {string} [updated_by]
662
+ * @property {FieldValidations[]} [validations]
663
+ */
664
+ /**
665
+ * @typedef FieldValidations
666
+ * @property {string} [name]
667
+ * @property {string} [type]
668
+ * @property {Object} [value]
669
+ */
670
+ /**
671
+ * @typedef File
672
+ * @property {string} [category]
673
+ * @property {boolean} [list_enabled]
674
+ * @property {string} [name]
675
+ * @property {SupportedValidationsSchema[]} [supported_validations]
676
+ * @property {string} [type]
677
+ */
678
+ /**
679
+ * @typedef FloatType
680
+ * @property {string} [category]
681
+ * @property {boolean} [list_enabled]
682
+ * @property {string} [name]
683
+ * @property {SupportedValidationsSchema[]} [supported_validations]
684
+ * @property {string} [type]
685
+ */
308
686
  /**
309
687
  * @typedef GeneratedSEOContent
310
688
  * @property {string} [description]
@@ -344,6 +722,22 @@ export = ContentPlatformModel;
344
722
  * @property {string} [type]
345
723
  * @property {string} [url]
346
724
  */
725
+ /**
726
+ * @typedef Integer
727
+ * @property {string} [category]
728
+ * @property {boolean} [list_enabled]
729
+ * @property {string} [name]
730
+ * @property {SupportedValidationsSchema[]} [supported_validations]
731
+ * @property {string} [type]
732
+ */
733
+ /**
734
+ * @typedef Json
735
+ * @property {string} [category]
736
+ * @property {boolean} [list_enabled]
737
+ * @property {string} [name]
738
+ * @property {SupportedValidationsSchema[]} [supported_validations]
739
+ * @property {string} [type]
740
+ */
347
741
  /**
348
742
  * @typedef LandingPageGetResponse
349
743
  * @property {LandingPageSchema[]} [items]
@@ -371,6 +765,14 @@ export = ContentPlatformModel;
371
765
  * @property {Language} [en_us]
372
766
  * @property {Language} [hi]
373
767
  */
768
+ /**
769
+ * @typedef Metaobject
770
+ * @property {string} [category]
771
+ * @property {boolean} [list_enabled]
772
+ * @property {string} [name]
773
+ * @property {SupportedValidationsSchema[]} [supported_validations]
774
+ * @property {string} [type]
775
+ */
374
776
  /**
375
777
  * @typedef NavigationGetResponse
376
778
  * @property {NavigationSchema[]} [items]
@@ -530,6 +932,14 @@ export = ContentPlatformModel;
530
932
  * @property {boolean} [active]
531
933
  * @property {PhoneProperties[]} [phone]
532
934
  */
935
+ /**
936
+ * @typedef Product
937
+ * @property {string} [category]
938
+ * @property {boolean} [list_enabled]
939
+ * @property {string} [name]
940
+ * @property {SupportedValidationsSchema[]} [supported_validations]
941
+ * @property {string} [type]
942
+ */
533
943
  /**
534
944
  * @typedef RemoveHandpickedSchema
535
945
  * @property {string[]} [tags]
@@ -539,6 +949,16 @@ export = ContentPlatformModel;
539
949
  * @property {string} [type]
540
950
  * @property {string} [value]
541
951
  */
952
+ /**
953
+ * @typedef ResourceSchema
954
+ * @property {number} [definitions_count] - Number of definitions
955
+ * @property {string} [key] - Resource key
956
+ * @property {string} [name] - Resource name
957
+ */
958
+ /**
959
+ * @typedef ResourcesSchema
960
+ * @property {ResourceSchema[]} [resources]
961
+ */
542
962
  /**
543
963
  * @typedef ScheduleSchema
544
964
  * @property {string} [cron]
@@ -549,10 +969,19 @@ export = ContentPlatformModel;
549
969
  */
550
970
  /**
551
971
  * @typedef SEO
972
+ * @property {SEObreadcrumb[]} [breadcrumb]
973
+ * @property {string} [canonical_url]
552
974
  * @property {string} [description]
553
975
  * @property {SEOImage} [image]
976
+ * @property {SEOMetaItem[]} [meta_tags]
977
+ * @property {SEOSitemap} [sitemap]
554
978
  * @property {string} [title]
555
979
  */
980
+ /**
981
+ * @typedef SEObreadcrumb
982
+ * @property {Action} [action]
983
+ * @property {string} [url]
984
+ */
556
985
  /**
557
986
  * @typedef SeoComponent
558
987
  * @property {SeoSchema} [seo]
@@ -561,9 +990,20 @@ export = ContentPlatformModel;
561
990
  * @typedef SEOImage
562
991
  * @property {string} [url]
563
992
  */
993
+ /**
994
+ * @typedef SEOMetaItem
995
+ * @property {SEOMetaItems[]} [items]
996
+ * @property {string} [title]
997
+ */
998
+ /**
999
+ * @typedef SEOMetaItems
1000
+ * @property {string} [key]
1001
+ * @property {string} [value]
1002
+ */
564
1003
  /**
565
1004
  * @typedef SeoSchema
566
1005
  * @property {string} [_id]
1006
+ * @property {string} [additional_sitemap]
567
1007
  * @property {string} [app]
568
1008
  * @property {boolean} [cannonical_enabled]
569
1009
  * @property {string} [created_at]
@@ -573,6 +1013,40 @@ export = ContentPlatformModel;
573
1013
  * @property {boolean} [sitemap_enabled]
574
1014
  * @property {string} [updated_at]
575
1015
  */
1016
+ /**
1017
+ * @typedef SeoSchemaComponent
1018
+ * @property {SEOSchemaMarkupTemplate[]} [items]
1019
+ * @property {Page} [page]
1020
+ */
1021
+ /**
1022
+ * @typedef SEOSchemaMarkupTemplate
1023
+ * @property {boolean} [active]
1024
+ * @property {string} [application]
1025
+ * @property {string} [created_at]
1026
+ * @property {string} [description]
1027
+ * @property {string} [id]
1028
+ * @property {string} [page_type]
1029
+ * @property {string} [schema]
1030
+ * @property {Object} [target_json]
1031
+ * @property {string} [title]
1032
+ * @property {string} [updated_at]
1033
+ */
1034
+ /**
1035
+ * @typedef SEOSchemaMarkupTemplateRequestBody
1036
+ * @property {boolean} [active]
1037
+ * @property {string} [created_at]
1038
+ * @property {string} [description]
1039
+ * @property {string} [page_type]
1040
+ * @property {string} [schema]
1041
+ * @property {Object} [target_json]
1042
+ * @property {string} [title]
1043
+ * @property {string} [updated_at]
1044
+ */
1045
+ /**
1046
+ * @typedef SEOSitemap
1047
+ * @property {string} [frequency]
1048
+ * @property {number} [priority]
1049
+ */
576
1050
  /**
577
1051
  * @typedef SlideshowGetResponse
578
1052
  * @property {SlideshowSchema[]} [items]
@@ -608,6 +1082,22 @@ export = ContentPlatformModel;
608
1082
  * @property {string} [platform]
609
1083
  * @property {string} [slug]
610
1084
  */
1085
+ /**
1086
+ * @typedef StringMultiLine
1087
+ * @property {string} [category]
1088
+ * @property {boolean} [list_enabled]
1089
+ * @property {string} [name]
1090
+ * @property {SupportedValidationsSchema[]} [supported_validations]
1091
+ * @property {string} [type]
1092
+ */
1093
+ /**
1094
+ * @typedef StringSingleLine
1095
+ * @property {string} [category]
1096
+ * @property {boolean} [list_enabled]
1097
+ * @property {string} [name]
1098
+ * @property {SupportedValidationsSchema[]} [supported_validations]
1099
+ * @property {string} [type]
1100
+ */
611
1101
  /**
612
1102
  * @typedef Support
613
1103
  * @property {string} [_id]
@@ -618,6 +1108,23 @@ export = ContentPlatformModel;
618
1108
  * @property {string} [created_at]
619
1109
  * @property {string} [updated_at]
620
1110
  */
1111
+ /**
1112
+ * @typedef SupportedValidationsMetaExampleSchema
1113
+ * @property {string} [name]
1114
+ * @property {string} [value]
1115
+ */
1116
+ /**
1117
+ * @typedef SupportedValidationsMetaSchema
1118
+ * @property {SupportedValidationsMetaExampleSchema[]} [examples]
1119
+ */
1120
+ /**
1121
+ * @typedef SupportedValidationsSchema
1122
+ * @property {string} [display]
1123
+ * @property {SupportedValidationsMetaSchema} [meta]
1124
+ * @property {string} [name]
1125
+ * @property {boolean} [required]
1126
+ * @property {string} [type]
1127
+ */
621
1128
  /**
622
1129
  * @typedef TagDeleteSuccessResponse
623
1130
  * @property {boolean} [success]
@@ -654,6 +1161,13 @@ export = ContentPlatformModel;
654
1161
  * @typedef UpdateHandpickedSchema
655
1162
  * @property {HandpickedTagSchema} [tag]
656
1163
  */
1164
+ /**
1165
+ * @typedef Url
1166
+ * @property {boolean} [list_enabled]
1167
+ * @property {string} [name]
1168
+ * @property {SupportedValidationsSchema[]} [supported_validations]
1169
+ * @property {string} [type]
1170
+ */
657
1171
  /** @typedef {"title" | "description"} GenerationEntityType */
658
1172
  /**
659
1173
  * @typedef {| "about-us"
@@ -706,7 +1220,7 @@ export = ContentPlatformModel;
706
1220
  declare class ContentPlatformModel {
707
1221
  }
708
1222
  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 };
1223
+ 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
1224
  }
711
1225
  /** @returns {Action} */
712
1226
  declare function Action(): Action;
@@ -824,6 +1338,15 @@ type BlogSchema = {
824
1338
  tags?: string[];
825
1339
  title?: string;
826
1340
  };
1341
+ /** @returns {BooleanType} */
1342
+ declare function BooleanType(): BooleanType;
1343
+ type BooleanType = {
1344
+ category?: string;
1345
+ list_enabled?: boolean;
1346
+ name?: string;
1347
+ supported_validations?: SupportedValidationsSchema[];
1348
+ type?: string;
1349
+ };
827
1350
  /** @returns {CategoryRequestSchema} */
828
1351
  declare function CategoryRequestSchema(): CategoryRequestSchema;
829
1352
  type CategoryRequestSchema = {
@@ -940,6 +1463,117 @@ type CronSchedule = {
940
1463
  end?: string;
941
1464
  start?: string;
942
1465
  };
1466
+ /** @returns {CustomDataDeleteSchema} */
1467
+ declare function CustomDataDeleteSchema(): CustomDataDeleteSchema;
1468
+ type CustomDataDeleteSchema = {
1469
+ message?: string;
1470
+ success?: boolean;
1471
+ };
1472
+ /** @returns {CustomField} */
1473
+ declare function CustomField(): CustomField;
1474
+ type CustomField = {
1475
+ definition_id?: string;
1476
+ value?: any[];
1477
+ };
1478
+ /** @returns {CustomFieldDefinitionDetailResSchema} */
1479
+ declare function CustomFieldDefinitionDetailResSchema(): CustomFieldDefinitionDetailResSchema;
1480
+ type CustomFieldDefinitionDetailResSchema = {
1481
+ _id?: string;
1482
+ application_id?: string;
1483
+ company_id?: string;
1484
+ created_at?: string;
1485
+ created_by?: string;
1486
+ creator?: string;
1487
+ description?: string;
1488
+ is_deleted?: boolean;
1489
+ key?: string;
1490
+ multi_value?: boolean;
1491
+ name?: string;
1492
+ namespace?: string;
1493
+ required?: boolean;
1494
+ resource?: string;
1495
+ type?: string;
1496
+ updated_at?: string;
1497
+ updated_by?: string;
1498
+ validations?: any[];
1499
+ };
1500
+ /** @returns {CustomFieldDefinitionRequestSchema} */
1501
+ declare function CustomFieldDefinitionRequestSchema(): CustomFieldDefinitionRequestSchema;
1502
+ type CustomFieldDefinitionRequestSchema = {
1503
+ description?: string;
1504
+ key?: string;
1505
+ multi_value?: boolean;
1506
+ name?: string;
1507
+ namespace?: string;
1508
+ resource?: string;
1509
+ type?: string;
1510
+ validations?: FieldValidations[];
1511
+ };
1512
+ /** @returns {CustomFieldDefinitionsSchema} */
1513
+ declare function CustomFieldDefinitionsSchema(): CustomFieldDefinitionsSchema;
1514
+ type CustomFieldDefinitionsSchema = {
1515
+ items?: FieldDefinitionSchema[];
1516
+ page?: Page;
1517
+ };
1518
+ /** @returns {CustomFieldRequestSchema} */
1519
+ declare function CustomFieldRequestSchema(): CustomFieldRequestSchema;
1520
+ type CustomFieldRequestSchema = {
1521
+ fields?: CustomField[];
1522
+ };
1523
+ /** @returns {CustomFieldSchema} */
1524
+ declare function CustomFieldSchema(): CustomFieldSchema;
1525
+ type CustomFieldSchema = {
1526
+ _id?: string;
1527
+ company_id?: string;
1528
+ created_at?: string;
1529
+ created_by?: string;
1530
+ creator?: string;
1531
+ definition_id?: string;
1532
+ has_invalid_values?: boolean;
1533
+ invalid_value_errors?: any[];
1534
+ is_deleted?: boolean;
1535
+ key?: string;
1536
+ multi_value?: boolean;
1537
+ namespace?: string;
1538
+ resource?: string;
1539
+ resource_id?: string;
1540
+ type?: string;
1541
+ updated_at?: string;
1542
+ value?: CustomFieldValue[];
1543
+ };
1544
+ /** @returns {CustomFieldsResponseByResourceIdSchema} */
1545
+ declare function CustomFieldsResponseByResourceIdSchema(): CustomFieldsResponseByResourceIdSchema;
1546
+ type CustomFieldsResponseByResourceIdSchema = {
1547
+ items?: CustomFieldSchema[];
1548
+ };
1549
+ /** @returns {CustomFieldsResponseSchema} */
1550
+ declare function CustomFieldsResponseSchema(): CustomFieldsResponseSchema;
1551
+ type CustomFieldsResponseSchema = {
1552
+ items?: CustomFieldSchema[];
1553
+ page?: Page;
1554
+ };
1555
+ /** @returns {CustomFieldTypeSchema} */
1556
+ declare function CustomFieldTypeSchema(): CustomFieldTypeSchema;
1557
+ type CustomFieldTypeSchema = {
1558
+ boolean_type?: BooleanType;
1559
+ date?: Date;
1560
+ datetime?: Datetime;
1561
+ dropdown?: Dropdown;
1562
+ file?: File;
1563
+ float_type?: FloatType;
1564
+ integer?: Integer;
1565
+ json?: Json;
1566
+ metaobject?: Metaobject;
1567
+ product?: Product;
1568
+ string_multi_line?: StringMultiLine;
1569
+ string_single_line?: StringSingleLine;
1570
+ url?: Url;
1571
+ };
1572
+ /** @returns {CustomFieldValue} */
1573
+ declare function CustomFieldValue(): CustomFieldValue;
1574
+ type CustomFieldValue = {
1575
+ value?: any;
1576
+ };
943
1577
  /** @returns {CustomMetaTag} */
944
1578
  declare function CustomMetaTag(): CustomMetaTag;
945
1579
  type CustomMetaTag = {
@@ -947,6 +1581,220 @@ type CustomMetaTag = {
947
1581
  content?: string;
948
1582
  name?: string;
949
1583
  };
1584
+ /** @returns {CustomObjectBulkEntry} */
1585
+ declare function CustomObjectBulkEntry(): CustomObjectBulkEntry;
1586
+ type CustomObjectBulkEntry = {
1587
+ items?: CustomObjectJobSchema[];
1588
+ page?: Page;
1589
+ };
1590
+ /** @returns {CustomObjectBulkEntryInitiateDownload} */
1591
+ declare function CustomObjectBulkEntryInitiateDownload(): CustomObjectBulkEntryInitiateDownload;
1592
+ type CustomObjectBulkEntryInitiateDownload = {
1593
+ message?: string;
1594
+ task_id?: string;
1595
+ };
1596
+ /** @returns {CustomObjectBulkSchema} */
1597
+ declare function CustomObjectBulkSchema(): CustomObjectBulkSchema;
1598
+ type CustomObjectBulkSchema = {
1599
+ total_records?: number;
1600
+ url?: string;
1601
+ };
1602
+ /** @returns {CustomObjectByIdSchema} */
1603
+ declare function CustomObjectByIdSchema(): CustomObjectByIdSchema;
1604
+ type CustomObjectByIdSchema = {
1605
+ _id?: string;
1606
+ definition?: CustomObjectListItemDefinationSchema;
1607
+ display_name?: string;
1608
+ fields?: CustomObjectFieldSchema[];
1609
+ references?: any[];
1610
+ status?: string;
1611
+ };
1612
+ /** @returns {CustomObjectCustomFieldDefinitionResSchema} */
1613
+ declare function CustomObjectCustomFieldDefinitionResSchema(): CustomObjectCustomFieldDefinitionResSchema;
1614
+ type CustomObjectCustomFieldDefinitionResSchema = {
1615
+ _id?: string;
1616
+ company_id?: string;
1617
+ created_at?: string;
1618
+ created_by?: string;
1619
+ creator?: string;
1620
+ description?: string;
1621
+ is_deleted?: boolean;
1622
+ key?: string;
1623
+ metaobject_definition_id?: string;
1624
+ multi_value?: boolean;
1625
+ name?: string;
1626
+ namespace?: string;
1627
+ required?: boolean;
1628
+ resource?: string;
1629
+ type?: string;
1630
+ updated_at?: string;
1631
+ validations?: FieldValidations[];
1632
+ };
1633
+ /** @returns {CustomObjectCustomFieldDefinitions} */
1634
+ declare function CustomObjectCustomFieldDefinitions(): CustomObjectCustomFieldDefinitions;
1635
+ type CustomObjectCustomFieldDefinitions = {
1636
+ action?: string;
1637
+ description?: string;
1638
+ id?: string;
1639
+ key?: string;
1640
+ multi_value?: boolean;
1641
+ name?: string;
1642
+ required?: boolean;
1643
+ type?: string;
1644
+ validations?: FieldValidations[];
1645
+ };
1646
+ /** @returns {CustomObjectDefinitionDeleteResponseSchema} */
1647
+ declare function CustomObjectDefinitionDeleteResponseSchema(): CustomObjectDefinitionDeleteResponseSchema;
1648
+ type CustomObjectDefinitionDeleteResponseSchema = {
1649
+ message?: string;
1650
+ success?: boolean;
1651
+ };
1652
+ /** @returns {CustomObjectDefinitionRequestSchema} */
1653
+ declare function CustomObjectDefinitionRequestSchema(): CustomObjectDefinitionRequestSchema;
1654
+ type CustomObjectDefinitionRequestSchema = {
1655
+ description?: string;
1656
+ display_name_key?: string;
1657
+ field_definitions?: CustomObjectCustomFieldDefinitions[];
1658
+ name?: string;
1659
+ type?: string;
1660
+ };
1661
+ /** @returns {CustomObjectDefinitionSchema} */
1662
+ declare function CustomObjectDefinitionSchema(): CustomObjectDefinitionSchema;
1663
+ type CustomObjectDefinitionSchema = {
1664
+ _id?: string;
1665
+ created_by?: string;
1666
+ creator?: string;
1667
+ description?: string;
1668
+ display_name_key?: string;
1669
+ field_definitions?: CustomObjectCustomFieldDefinitionResSchema[];
1670
+ name?: string;
1671
+ type?: string;
1672
+ updated_by?: string;
1673
+ };
1674
+ /** @returns {CustomObjectDefinitionsSchema} */
1675
+ declare function CustomObjectDefinitionsSchema(): CustomObjectDefinitionsSchema;
1676
+ type CustomObjectDefinitionsSchema = {
1677
+ items?: CustomObjectEntry[];
1678
+ page?: Page;
1679
+ };
1680
+ /** @returns {CustomObjectDefinitionUpdateRequestSchema} */
1681
+ declare function CustomObjectDefinitionUpdateRequestSchema(): CustomObjectDefinitionUpdateRequestSchema;
1682
+ type CustomObjectDefinitionUpdateRequestSchema = {
1683
+ description?: string;
1684
+ display_name_key?: string;
1685
+ field_definitions?: CustomObjectCustomFieldDefinitions[];
1686
+ name?: string;
1687
+ type?: string;
1688
+ };
1689
+ /** @returns {CustomObjectEntry} */
1690
+ declare function CustomObjectEntry(): CustomObjectEntry;
1691
+ type CustomObjectEntry = {
1692
+ _id?: string;
1693
+ entries_count?: number;
1694
+ fields_count?: number;
1695
+ name?: string;
1696
+ type?: string;
1697
+ updated_at?: string;
1698
+ };
1699
+ /** @returns {CustomObjectEntryBulkUploadResponse} */
1700
+ declare function CustomObjectEntryBulkUploadResponse(): CustomObjectEntryBulkUploadResponse;
1701
+ type CustomObjectEntryBulkUploadResponse = {
1702
+ total_records?: number;
1703
+ url?: string;
1704
+ };
1705
+ /** @returns {CustomObjectEntryFieldSchema} */
1706
+ declare function CustomObjectEntryFieldSchema(): CustomObjectEntryFieldSchema;
1707
+ type CustomObjectEntryFieldSchema = {
1708
+ definition_id?: string;
1709
+ value?: any[];
1710
+ };
1711
+ /** @returns {CustomObjectFieldSchema} */
1712
+ declare function CustomObjectFieldSchema(): CustomObjectFieldSchema;
1713
+ type CustomObjectFieldSchema = {
1714
+ _id?: string;
1715
+ definition_id?: string;
1716
+ key?: string;
1717
+ type?: string;
1718
+ value?: any[];
1719
+ };
1720
+ /** @returns {CustomObjectJobSchema} */
1721
+ declare function CustomObjectJobSchema(): CustomObjectJobSchema;
1722
+ type CustomObjectJobSchema = {
1723
+ _id?: string;
1724
+ action_type?: string;
1725
+ company_id?: string;
1726
+ created_at?: string;
1727
+ created_by?: string;
1728
+ creator?: string;
1729
+ entity?: string;
1730
+ error_count?: number;
1731
+ error_jobs?: string[];
1732
+ error_url?: string;
1733
+ errors_occured?: string[];
1734
+ finished_count?: number;
1735
+ finished_jobs?: string[];
1736
+ jobs?: string[];
1737
+ meta?: CustomObjectMetaSchema;
1738
+ status?: string;
1739
+ success_count?: number;
1740
+ total_jobs?: number;
1741
+ updated_at?: string;
1742
+ url?: string;
1743
+ };
1744
+ /** @returns {CustomObjectListItemDefinationSchema} */
1745
+ declare function CustomObjectListItemDefinationSchema(): CustomObjectListItemDefinationSchema;
1746
+ type CustomObjectListItemDefinationSchema = {
1747
+ _id?: string;
1748
+ name?: string;
1749
+ type?: string;
1750
+ };
1751
+ /** @returns {CustomObjectListItemSchema} */
1752
+ declare function CustomObjectListItemSchema(): CustomObjectListItemSchema;
1753
+ type CustomObjectListItemSchema = {
1754
+ _id?: string;
1755
+ definition?: CustomObjectListItemDefinationSchema;
1756
+ definition_id?: string;
1757
+ display_name?: string;
1758
+ references?: number;
1759
+ status?: string;
1760
+ updated_at?: string;
1761
+ };
1762
+ /** @returns {CustomObjectMetaSchema} */
1763
+ declare function CustomObjectMetaSchema(): CustomObjectMetaSchema;
1764
+ type CustomObjectMetaSchema = {
1765
+ mo_defintion_type?: string;
1766
+ mo_error_count?: number;
1767
+ mo_success_count?: number;
1768
+ mo_total_count?: number;
1769
+ };
1770
+ /** @returns {CustomObjectRequestSchema} */
1771
+ declare function CustomObjectRequestSchema(): CustomObjectRequestSchema;
1772
+ type CustomObjectRequestSchema = {
1773
+ definition_id?: string;
1774
+ fields?: CustomObjectEntryFieldSchema[];
1775
+ status?: string;
1776
+ };
1777
+ /** @returns {CustomObjectSchema} */
1778
+ declare function CustomObjectSchema(): CustomObjectSchema;
1779
+ type CustomObjectSchema = {
1780
+ _id?: string;
1781
+ application_id?: string;
1782
+ company_id?: string;
1783
+ created_by?: string;
1784
+ creator?: string;
1785
+ definition_id?: string;
1786
+ display_name?: string;
1787
+ fields?: CustomFieldSchema[];
1788
+ status?: string;
1789
+ type?: string;
1790
+ updated_by?: string;
1791
+ };
1792
+ /** @returns {CustomObjectsSchema} */
1793
+ declare function CustomObjectsSchema(): CustomObjectsSchema;
1794
+ type CustomObjectsSchema = {
1795
+ items?: CustomObjectListItemSchema[];
1796
+ page?: Page;
1797
+ };
950
1798
  /** @returns {DataLoaderResetResponseSchema} */
951
1799
  declare function DataLoaderResetResponseSchema(): DataLoaderResetResponseSchema;
952
1800
  type DataLoaderResetResponseSchema = {
@@ -989,17 +1837,47 @@ declare function DataLoadersSchema(): DataLoadersSchema;
989
1837
  type DataLoadersSchema = {
990
1838
  items?: DataLoaderSchema[];
991
1839
  };
1840
+ /** @returns {Date} */
1841
+ declare function Date(): Date;
1842
+ type Date = {
1843
+ category?: string;
1844
+ list_enabled?: boolean;
1845
+ name?: string;
1846
+ supported_validations?: SupportedValidationsSchema[];
1847
+ type?: string;
1848
+ };
992
1849
  /** @returns {DateMeta} */
993
1850
  declare function DateMeta(): DateMeta;
994
1851
  type DateMeta = {
995
1852
  created_on?: string;
996
1853
  modified_on?: string;
997
1854
  };
1855
+ /** @returns {Datetime} */
1856
+ declare function Datetime(): Datetime;
1857
+ type Datetime = {
1858
+ category?: string;
1859
+ list_enabled?: boolean;
1860
+ name?: string;
1861
+ supported_validations?: SupportedValidationsSchema[];
1862
+ type?: string;
1863
+ };
998
1864
  /** @returns {DefaultNavigationResponse} */
999
1865
  declare function DefaultNavigationResponse(): DefaultNavigationResponse;
1000
1866
  type DefaultNavigationResponse = {
1001
1867
  items?: NavigationSchema[];
1002
1868
  };
1869
+ /** @returns {DefaultSchemaComponent} */
1870
+ declare function DefaultSchemaComponent(): DefaultSchemaComponent;
1871
+ type DefaultSchemaComponent = {
1872
+ items?: DefaultSEOSchemaMarkupTemplate[];
1873
+ };
1874
+ /** @returns {DefaultSEOSchemaMarkupTemplate} */
1875
+ declare function DefaultSEOSchemaMarkupTemplate(): DefaultSEOSchemaMarkupTemplate;
1876
+ type DefaultSEOSchemaMarkupTemplate = {
1877
+ page_type?: string;
1878
+ schema?: string;
1879
+ target_json?: any;
1880
+ };
1003
1881
  /** @returns {Detail} */
1004
1882
  declare function Detail(): Detail;
1005
1883
  type Detail = {
@@ -1007,6 +1885,15 @@ type Detail = {
1007
1885
  image_url?: string;
1008
1886
  title?: string;
1009
1887
  };
1888
+ /** @returns {Dropdown} */
1889
+ declare function Dropdown(): Dropdown;
1890
+ type Dropdown = {
1891
+ category?: string;
1892
+ list_enabled?: boolean;
1893
+ name?: string;
1894
+ supported_validations?: SupportedValidationsSchema[];
1895
+ type?: string;
1896
+ };
1010
1897
  /** @returns {EditorMeta} */
1011
1898
  declare function EditorMeta(): EditorMeta;
1012
1899
  type EditorMeta = {
@@ -1057,6 +1944,54 @@ type FaqSchema = {
1057
1944
  slug?: string;
1058
1945
  tags?: string[];
1059
1946
  };
1947
+ /** @returns {FieldDefinitionSchema} */
1948
+ declare function FieldDefinitionSchema(): FieldDefinitionSchema;
1949
+ type FieldDefinitionSchema = {
1950
+ _id?: string;
1951
+ company_id?: string;
1952
+ created_at?: string;
1953
+ created_by?: string;
1954
+ creator?: string;
1955
+ description?: string;
1956
+ invalid_fields_count?: number;
1957
+ is_deleted?: boolean;
1958
+ key?: string;
1959
+ multi_value?: boolean;
1960
+ name?: string;
1961
+ namespace?: string;
1962
+ required?: boolean;
1963
+ resource?: string;
1964
+ type?: string;
1965
+ type_name?: string;
1966
+ updated_at?: string;
1967
+ updated_by?: string;
1968
+ validations?: FieldValidations[];
1969
+ };
1970
+ /** @returns {FieldValidations} */
1971
+ declare function FieldValidations(): FieldValidations;
1972
+ type FieldValidations = {
1973
+ name?: string;
1974
+ type?: string;
1975
+ value?: any;
1976
+ };
1977
+ /** @returns {File} */
1978
+ declare function File(): File;
1979
+ type File = {
1980
+ category?: string;
1981
+ list_enabled?: boolean;
1982
+ name?: string;
1983
+ supported_validations?: SupportedValidationsSchema[];
1984
+ type?: string;
1985
+ };
1986
+ /** @returns {FloatType} */
1987
+ declare function FloatType(): FloatType;
1988
+ type FloatType = {
1989
+ category?: string;
1990
+ list_enabled?: boolean;
1991
+ name?: string;
1992
+ supported_validations?: SupportedValidationsSchema[];
1993
+ type?: string;
1994
+ };
1060
1995
  /** @returns {GeneratedSEOContent} */
1061
1996
  declare function GeneratedSEOContent(): GeneratedSEOContent;
1062
1997
  type GeneratedSEOContent = {
@@ -1103,6 +2038,24 @@ type HandpickedTagSchema = {
1103
2038
  type?: string;
1104
2039
  url?: string;
1105
2040
  };
2041
+ /** @returns {Integer} */
2042
+ declare function Integer(): Integer;
2043
+ type Integer = {
2044
+ category?: string;
2045
+ list_enabled?: boolean;
2046
+ name?: string;
2047
+ supported_validations?: SupportedValidationsSchema[];
2048
+ type?: string;
2049
+ };
2050
+ /** @returns {Json} */
2051
+ declare function Json(): Json;
2052
+ type Json = {
2053
+ category?: string;
2054
+ list_enabled?: boolean;
2055
+ name?: string;
2056
+ supported_validations?: SupportedValidationsSchema[];
2057
+ type?: string;
2058
+ };
1106
2059
  /** @returns {LandingPageGetResponse} */
1107
2060
  declare function LandingPageGetResponse(): LandingPageGetResponse;
1108
2061
  type LandingPageGetResponse = {
@@ -1134,6 +2087,15 @@ type LocaleLanguage = {
1134
2087
  en_us?: Language;
1135
2088
  hi?: Language;
1136
2089
  };
2090
+ /** @returns {Metaobject} */
2091
+ declare function Metaobject(): Metaobject;
2092
+ type Metaobject = {
2093
+ category?: string;
2094
+ list_enabled?: boolean;
2095
+ name?: string;
2096
+ supported_validations?: SupportedValidationsSchema[];
2097
+ type?: string;
2098
+ };
1137
2099
  /** @returns {NavigationGetResponse} */
1138
2100
  declare function NavigationGetResponse(): NavigationGetResponse;
1139
2101
  type NavigationGetResponse = {
@@ -1315,6 +2277,15 @@ type PhoneSchema = {
1315
2277
  active?: boolean;
1316
2278
  phone?: PhoneProperties[];
1317
2279
  };
2280
+ /** @returns {Product} */
2281
+ declare function Product(): Product;
2282
+ type Product = {
2283
+ category?: string;
2284
+ list_enabled?: boolean;
2285
+ name?: string;
2286
+ supported_validations?: SupportedValidationsSchema[];
2287
+ type?: string;
2288
+ };
1318
2289
  /** @returns {RemoveHandpickedSchema} */
1319
2290
  declare function RemoveHandpickedSchema(): RemoveHandpickedSchema;
1320
2291
  type RemoveHandpickedSchema = {
@@ -1326,6 +2297,27 @@ type ResourceContent = {
1326
2297
  type?: string;
1327
2298
  value?: string;
1328
2299
  };
2300
+ /** @returns {ResourceSchema} */
2301
+ declare function ResourceSchema(): ResourceSchema;
2302
+ type ResourceSchema = {
2303
+ /**
2304
+ * - Number of definitions
2305
+ */
2306
+ definitions_count?: number;
2307
+ /**
2308
+ * - Resource key
2309
+ */
2310
+ key?: string;
2311
+ /**
2312
+ * - Resource name
2313
+ */
2314
+ name?: string;
2315
+ };
2316
+ /** @returns {ResourcesSchema} */
2317
+ declare function ResourcesSchema(): ResourcesSchema;
2318
+ type ResourcesSchema = {
2319
+ resources?: ResourceSchema[];
2320
+ };
1329
2321
  /** @returns {ScheduleSchema} */
1330
2322
  declare function ScheduleSchema(): ScheduleSchema;
1331
2323
  type ScheduleSchema = {
@@ -1338,10 +2330,20 @@ type ScheduleSchema = {
1338
2330
  /** @returns {SEO} */
1339
2331
  declare function SEO(): SEO;
1340
2332
  type SEO = {
2333
+ breadcrumb?: SEObreadcrumb[];
2334
+ canonical_url?: string;
1341
2335
  description?: string;
1342
2336
  image?: SEOImage;
2337
+ meta_tags?: SEOMetaItem[];
2338
+ sitemap?: SEOSitemap;
1343
2339
  title?: string;
1344
2340
  };
2341
+ /** @returns {SEObreadcrumb} */
2342
+ declare function SEObreadcrumb(): SEObreadcrumb;
2343
+ type SEObreadcrumb = {
2344
+ action?: Action;
2345
+ url?: string;
2346
+ };
1345
2347
  /** @returns {SeoComponent} */
1346
2348
  declare function SeoComponent(): SeoComponent;
1347
2349
  type SeoComponent = {
@@ -1352,10 +2354,23 @@ declare function SEOImage(): SEOImage;
1352
2354
  type SEOImage = {
1353
2355
  url?: string;
1354
2356
  };
2357
+ /** @returns {SEOMetaItem} */
2358
+ declare function SEOMetaItem(): SEOMetaItem;
2359
+ type SEOMetaItem = {
2360
+ items?: SEOMetaItems[];
2361
+ title?: string;
2362
+ };
2363
+ /** @returns {SEOMetaItems} */
2364
+ declare function SEOMetaItems(): SEOMetaItems;
2365
+ type SEOMetaItems = {
2366
+ key?: string;
2367
+ value?: string;
2368
+ };
1355
2369
  /** @returns {SeoSchema} */
1356
2370
  declare function SeoSchema(): SeoSchema;
1357
2371
  type SeoSchema = {
1358
2372
  _id?: string;
2373
+ additional_sitemap?: string;
1359
2374
  app?: string;
1360
2375
  cannonical_enabled?: boolean;
1361
2376
  created_at?: string;
@@ -1365,6 +2380,44 @@ type SeoSchema = {
1365
2380
  sitemap_enabled?: boolean;
1366
2381
  updated_at?: string;
1367
2382
  };
2383
+ /** @returns {SeoSchemaComponent} */
2384
+ declare function SeoSchemaComponent(): SeoSchemaComponent;
2385
+ type SeoSchemaComponent = {
2386
+ items?: SEOSchemaMarkupTemplate[];
2387
+ page?: Page;
2388
+ };
2389
+ /** @returns {SEOSchemaMarkupTemplate} */
2390
+ declare function SEOSchemaMarkupTemplate(): SEOSchemaMarkupTemplate;
2391
+ type SEOSchemaMarkupTemplate = {
2392
+ active?: boolean;
2393
+ application?: string;
2394
+ created_at?: string;
2395
+ description?: string;
2396
+ id?: string;
2397
+ page_type?: string;
2398
+ schema?: string;
2399
+ target_json?: any;
2400
+ title?: string;
2401
+ updated_at?: string;
2402
+ };
2403
+ /** @returns {SEOSchemaMarkupTemplateRequestBody} */
2404
+ declare function SEOSchemaMarkupTemplateRequestBody(): SEOSchemaMarkupTemplateRequestBody;
2405
+ type SEOSchemaMarkupTemplateRequestBody = {
2406
+ active?: boolean;
2407
+ created_at?: string;
2408
+ description?: string;
2409
+ page_type?: string;
2410
+ schema?: string;
2411
+ target_json?: any;
2412
+ title?: string;
2413
+ updated_at?: string;
2414
+ };
2415
+ /** @returns {SEOSitemap} */
2416
+ declare function SEOSitemap(): SEOSitemap;
2417
+ type SEOSitemap = {
2418
+ frequency?: string;
2419
+ priority?: number;
2420
+ };
1368
2421
  /** @returns {SlideshowGetResponse} */
1369
2422
  declare function SlideshowGetResponse(): SlideshowGetResponse;
1370
2423
  type SlideshowGetResponse = {
@@ -1404,6 +2457,24 @@ type SlideshowSchema = {
1404
2457
  platform?: string;
1405
2458
  slug?: string;
1406
2459
  };
2460
+ /** @returns {StringMultiLine} */
2461
+ declare function StringMultiLine(): StringMultiLine;
2462
+ type StringMultiLine = {
2463
+ category?: string;
2464
+ list_enabled?: boolean;
2465
+ name?: string;
2466
+ supported_validations?: SupportedValidationsSchema[];
2467
+ type?: string;
2468
+ };
2469
+ /** @returns {StringSingleLine} */
2470
+ declare function StringSingleLine(): StringSingleLine;
2471
+ type StringSingleLine = {
2472
+ category?: string;
2473
+ list_enabled?: boolean;
2474
+ name?: string;
2475
+ supported_validations?: SupportedValidationsSchema[];
2476
+ type?: string;
2477
+ };
1407
2478
  /** @returns {Support} */
1408
2479
  declare function Support(): Support;
1409
2480
  type Support = {
@@ -1415,6 +2486,26 @@ type Support = {
1415
2486
  created_at?: string;
1416
2487
  updated_at?: string;
1417
2488
  };
2489
+ /** @returns {SupportedValidationsMetaExampleSchema} */
2490
+ declare function SupportedValidationsMetaExampleSchema(): SupportedValidationsMetaExampleSchema;
2491
+ type SupportedValidationsMetaExampleSchema = {
2492
+ name?: string;
2493
+ value?: string;
2494
+ };
2495
+ /** @returns {SupportedValidationsMetaSchema} */
2496
+ declare function SupportedValidationsMetaSchema(): SupportedValidationsMetaSchema;
2497
+ type SupportedValidationsMetaSchema = {
2498
+ examples?: SupportedValidationsMetaExampleSchema[];
2499
+ };
2500
+ /** @returns {SupportedValidationsSchema} */
2501
+ declare function SupportedValidationsSchema(): SupportedValidationsSchema;
2502
+ type SupportedValidationsSchema = {
2503
+ display?: string;
2504
+ meta?: SupportedValidationsMetaSchema;
2505
+ name?: string;
2506
+ required?: boolean;
2507
+ type?: string;
2508
+ };
1418
2509
  /** @returns {TagDeleteSuccessResponse} */
1419
2510
  declare function TagDeleteSuccessResponse(): TagDeleteSuccessResponse;
1420
2511
  type TagDeleteSuccessResponse = {
@@ -1457,6 +2548,14 @@ declare function UpdateHandpickedSchema(): UpdateHandpickedSchema;
1457
2548
  type UpdateHandpickedSchema = {
1458
2549
  tag?: HandpickedTagSchema;
1459
2550
  };
2551
+ /** @returns {Url} */
2552
+ declare function Url(): Url;
2553
+ type Url = {
2554
+ list_enabled?: boolean;
2555
+ name?: string;
2556
+ supported_validations?: SupportedValidationsSchema[];
2557
+ type?: string;
2558
+ };
1460
2559
  /**
1461
2560
  * Enum: GenerationEntityType Used By: Content
1462
2561
  *