@gofynd/fdk-client-javascript 1.4.16-beta.4 → 1.4.16-beta.5

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 (239) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/sdk/application/ApplicationClient.d.ts +2 -0
  4. package/sdk/application/ApplicationClient.js +2 -0
  5. package/sdk/application/Cart/CartApplicationClient.d.ts +68 -48
  6. package/sdk/application/Cart/CartApplicationClient.js +118 -27
  7. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +59 -58
  8. package/sdk/application/Catalog/CatalogApplicationClient.js +30 -29
  9. package/sdk/application/Common/CommonApplicationClient.d.ts +2 -2
  10. package/sdk/application/Common/CommonApplicationClient.js +1 -1
  11. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +20 -20
  12. package/sdk/application/Configuration/ConfigurationApplicationClient.js +10 -10
  13. package/sdk/application/Content/ContentApplicationClient.d.ts +51 -30
  14. package/sdk/application/Content/ContentApplicationClient.js +161 -56
  15. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +9 -11
  16. package/sdk/application/FileStorage/FileStorageApplicationClient.js +7 -10
  17. package/sdk/application/Finance/FinanceApplicationClient.d.ts +29 -0
  18. package/sdk/application/Finance/FinanceApplicationClient.js +111 -0
  19. package/sdk/application/Lead/LeadApplicationClient.d.ts +2 -2
  20. package/sdk/application/Lead/LeadApplicationClient.js +1 -1
  21. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +35 -15
  22. package/sdk/application/Logistic/LogisticApplicationClient.js +101 -8
  23. package/sdk/application/Order/OrderApplicationClient.d.ts +22 -12
  24. package/sdk/application/Order/OrderApplicationClient.js +56 -8
  25. package/sdk/application/Payment/PaymentApplicationClient.d.ts +87 -87
  26. package/sdk/application/Payment/PaymentApplicationClient.js +46 -46
  27. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +13 -13
  28. package/sdk/application/Rewards/RewardsApplicationClient.js +7 -7
  29. package/sdk/application/Theme/ThemeApplicationClient.d.ts +2 -2
  30. package/sdk/application/Theme/ThemeApplicationClient.js +4 -2
  31. package/sdk/application/User/UserApplicationClient.d.ts +10 -10
  32. package/sdk/application/User/UserApplicationClient.js +6 -6
  33. package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
  34. package/sdk/application/Webhook/WebhookApplicationClient.js +3 -3
  35. package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +86 -12
  36. package/sdk/partner/FileStorage/FileStoragePartnerClient.js +582 -24
  37. package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +116 -21
  38. package/sdk/partner/FileStorage/FileStoragePartnerModel.js +121 -16
  39. package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +8 -1
  40. package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +51 -4
  41. package/sdk/partner/Lead/LeadPartnerClient.d.ts +2 -2
  42. package/sdk/partner/Lead/LeadPartnerClient.js +2 -2
  43. package/sdk/partner/Lead/LeadPartnerModel.d.ts +5 -5
  44. package/sdk/partner/Lead/LeadPartnerModel.js +15 -15
  45. package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +126 -20
  46. package/sdk/partner/Logistics/LogisticsPartnerClient.js +970 -20
  47. package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +1200 -167
  48. package/sdk/partner/Logistics/LogisticsPartnerModel.js +571 -160
  49. package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +10 -0
  50. package/sdk/partner/Logistics/LogisticsPartnerValidator.js +121 -7
  51. package/sdk/partner/Theme/ThemePartnerClient.d.ts +8 -10
  52. package/sdk/partner/Theme/ThemePartnerClient.js +14 -16
  53. package/sdk/partner/Theme/ThemePartnerModel.d.ts +96 -37
  54. package/sdk/partner/Theme/ThemePartnerModel.js +90 -36
  55. package/sdk/partner/Theme/ThemePartnerValidator.js +4 -4
  56. package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +28 -18
  57. package/sdk/partner/Webhook/WebhookPartnerClient.js +103 -18
  58. package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +612 -179
  59. package/sdk/partner/Webhook/WebhookPartnerModel.js +253 -150
  60. package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +1 -0
  61. package/sdk/partner/Webhook/WebhookPartnerValidator.js +11 -3
  62. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +5 -4
  63. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +14 -8
  64. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +59 -9
  65. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +40 -4
  66. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +2 -32
  67. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +3 -243
  68. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +11 -130
  69. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +12 -152
  70. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -39
  71. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +0 -35
  72. package/sdk/platform/Billing/BillingPlatformClient.d.ts +12 -12
  73. package/sdk/platform/Billing/BillingPlatformClient.js +15 -15
  74. package/sdk/platform/Billing/BillingPlatformModel.d.ts +443 -388
  75. package/sdk/platform/Billing/BillingPlatformModel.js +280 -263
  76. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +16 -18
  77. package/sdk/platform/Billing/BillingPlatformValidator.js +8 -9
  78. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +134 -103
  79. package/sdk/platform/Cart/CartPlatformApplicationClient.js +419 -115
  80. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +121 -65
  81. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +109 -44
  82. package/sdk/platform/Cart/CartPlatformModel.d.ts +5070 -1296
  83. package/sdk/platform/Cart/CartPlatformModel.js +1992 -1217
  84. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +209 -183
  85. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +452 -395
  86. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +185 -142
  87. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +96 -78
  88. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +154 -117
  89. package/sdk/platform/Catalog/CatalogPlatformClient.js +292 -172
  90. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +6512 -1770
  91. package/sdk/platform/Catalog/CatalogPlatformModel.js +3228 -1687
  92. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +72 -31
  93. package/sdk/platform/Catalog/CatalogPlatformValidator.js +50 -24
  94. package/sdk/platform/Common/CommonPlatformClient.d.ts +3 -2
  95. package/sdk/platform/Common/CommonPlatformClient.js +3 -2
  96. package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
  97. package/sdk/platform/Common/CommonPlatformModel.js +6 -6
  98. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +16 -17
  99. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +16 -17
  100. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +8 -8
  101. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +8 -8
  102. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +43 -33
  103. package/sdk/platform/Communication/CommunicationPlatformModel.js +38 -34
  104. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +46 -42
  105. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +47 -43
  106. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +223 -223
  107. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +210 -212
  108. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +12 -12
  109. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +12 -12
  110. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +46 -33
  111. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +67 -54
  112. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +18 -18
  113. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +18 -18
  114. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +45 -24
  115. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +134 -30
  116. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +283 -124
  117. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +219 -94
  118. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +37 -9
  119. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +27 -8
  120. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +204 -141
  121. package/sdk/platform/Content/ContentPlatformApplicationClient.js +1076 -478
  122. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +253 -141
  123. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +256 -130
  124. package/sdk/platform/Content/ContentPlatformClient.d.ts +142 -106
  125. package/sdk/platform/Content/ContentPlatformClient.js +523 -336
  126. package/sdk/platform/Content/ContentPlatformModel.d.ts +1372 -400
  127. package/sdk/platform/Content/ContentPlatformModel.js +631 -394
  128. package/sdk/platform/Content/ContentPlatformValidator.d.ts +168 -117
  129. package/sdk/platform/Content/ContentPlatformValidator.js +162 -108
  130. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +14 -12
  131. package/sdk/platform/Discount/DiscountPlatformClient.js +14 -12
  132. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +13 -13
  133. package/sdk/platform/Discount/DiscountPlatformModel.js +12 -12
  134. package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
  135. package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
  136. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +95 -39
  137. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +462 -63
  138. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +62 -15
  139. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +75 -13
  140. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +20 -22
  141. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +21 -24
  142. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +370 -116
  143. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +313 -104
  144. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
  145. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
  146. package/sdk/platform/Lead/LeadPlatformClient.d.ts +2 -2
  147. package/sdk/platform/Lead/LeadPlatformClient.js +2 -2
  148. package/sdk/platform/Lead/LeadPlatformModel.d.ts +5 -5
  149. package/sdk/platform/Lead/LeadPlatformModel.js +16 -16
  150. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +17 -6
  151. package/sdk/platform/Order/OrderPlatformApplicationClient.js +85 -7
  152. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +95 -24
  153. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +39 -19
  154. package/sdk/platform/Order/OrderPlatformClient.d.ts +153 -96
  155. package/sdk/platform/Order/OrderPlatformClient.js +416 -198
  156. package/sdk/platform/Order/OrderPlatformModel.d.ts +7607 -1267
  157. package/sdk/platform/Order/OrderPlatformModel.js +3929 -1269
  158. package/sdk/platform/Order/OrderPlatformValidator.d.ts +270 -109
  159. package/sdk/platform/Order/OrderPlatformValidator.js +135 -77
  160. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +6 -4
  161. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +9 -7
  162. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
  163. package/sdk/platform/Partner/PartnerPlatformModel.js +8 -8
  164. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +93 -105
  165. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +129 -141
  166. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +48 -48
  167. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +48 -48
  168. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +20 -20
  169. package/sdk/platform/Payment/PaymentPlatformClient.js +20 -20
  170. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +333 -319
  171. package/sdk/platform/Payment/PaymentPlatformModel.js +288 -278
  172. package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +8 -8
  173. package/sdk/platform/Payment/PaymentPlatformValidator.js +8 -8
  174. package/sdk/platform/PlatformClient.d.ts +0 -2
  175. package/sdk/platform/PlatformClient.js +0 -4
  176. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
  177. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
  178. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
  179. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
  180. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +9 -9
  181. package/sdk/platform/Rewards/RewardsPlatformModel.js +8 -8
  182. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +46 -36
  183. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +132 -41
  184. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +46 -17
  185. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +34 -14
  186. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +40 -46
  187. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +58 -64
  188. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +1842 -609
  189. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +886 -554
  190. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +42 -46
  191. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +26 -28
  192. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +5 -5
  193. package/sdk/platform/Share/SharePlatformApplicationClient.js +9 -9
  194. package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +3 -6
  195. package/sdk/platform/Share/SharePlatformApplicationValidator.js +2 -2
  196. package/sdk/platform/Share/SharePlatformModel.d.ts +46 -7
  197. package/sdk/platform/Share/SharePlatformModel.js +31 -6
  198. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +3 -3
  199. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +8 -4
  200. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +5 -0
  201. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +2 -0
  202. package/sdk/platform/Theme/ThemePlatformModel.d.ts +37 -11
  203. package/sdk/platform/Theme/ThemePlatformModel.js +33 -15
  204. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +12 -12
  205. package/sdk/platform/User/UserPlatformApplicationClient.js +12 -12
  206. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +2 -2
  207. package/sdk/platform/User/UserPlatformApplicationValidator.js +2 -2
  208. package/sdk/platform/User/UserPlatformModel.d.ts +21 -21
  209. package/sdk/platform/User/UserPlatformModel.js +23 -23
  210. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +25 -78
  211. package/sdk/platform/Webhook/WebhookPlatformClient.js +75 -470
  212. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +720 -427
  213. package/sdk/platform/Webhook/WebhookPlatformModel.js +410 -386
  214. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +10 -55
  215. package/sdk/platform/Webhook/WebhookPlatformValidator.js +12 -72
  216. package/sdk/platform/index.d.ts +0 -1
  217. package/sdk/platform/index.js +0 -2
  218. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +3 -2
  219. package/sdk/public/Configuration/ConfigurationPublicClient.js +6 -5
  220. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +9 -9
  221. package/sdk/public/Configuration/ConfigurationPublicModel.js +6 -6
  222. package/sdk/public/Content/ContentPublicClient.d.ts +112 -2
  223. package/sdk/public/Content/ContentPublicClient.js +810 -6
  224. package/sdk/public/Content/ContentPublicModel.d.ts +549 -3
  225. package/sdk/public/Content/ContentPublicModel.js +649 -3
  226. package/sdk/public/Content/ContentPublicValidator.d.ts +69 -3
  227. package/sdk/public/Content/ContentPublicValidator.js +88 -2
  228. package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
  229. package/sdk/public/Webhook/WebhookPublicClient.js +8 -8
  230. package/sdk/public/Webhook/WebhookPublicModel.d.ts +21 -21
  231. package/sdk/public/Webhook/WebhookPublicModel.js +15 -15
  232. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
  233. package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
  234. package/sdk/platform/Finance/FinancePlatformClient.d.ts +0 -320
  235. package/sdk/platform/Finance/FinancePlatformClient.js +0 -2333
  236. package/sdk/platform/Finance/FinancePlatformModel.d.ts +0 -2890
  237. package/sdk/platform/Finance/FinancePlatformModel.js +0 -2148
  238. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +0 -284
  239. package/sdk/platform/Finance/FinancePlatformValidator.js +0 -354
@@ -20,19 +20,15 @@ export = ContentPlatformApplicationValidator;
20
20
  * @typedef CreateAnnouncementParam
21
21
  * @property {ContentPlatformModel.AdminAnnouncementSchema} body
22
22
  */
23
- /**
24
- * @typedef CreateAppCustomFieldByResourceIdParam
25
- * @property {string} resource
26
- * @property {string} resourceId
27
- * @property {ContentPlatformModel.CustomFieldRequestSchema} body
28
- */
29
23
  /**
30
24
  * @typedef CreateAppCustomFieldDefinitionParam
25
+ * @property {string} resource
31
26
  * @property {ContentPlatformModel.CustomFieldDefinitionRequestSchema} body
32
27
  */
33
28
  /**
34
- * @typedef CreateAppCustomObjectParam
35
- * @property {ContentPlatformModel.CustomObjectRequestSchema} body
29
+ * @typedef CreateAppCustomObjectBySlugParam
30
+ * @property {string} definitionSlug
31
+ * @property {ContentPlatformModel.CustomObjectRequestSchemaWithoutId} body
36
32
  */
37
33
  /**
38
34
  * @typedef CreateAppCustomObjectDefinitionParam
@@ -40,7 +36,7 @@ export = ContentPlatformApplicationValidator;
40
36
  */
41
37
  /**
42
38
  * @typedef CreateBlogParam
43
- * @property {ContentPlatformModel.BlogRequest} body
39
+ * @property {ContentPlatformModel.BlogPayload} body
44
40
  */
45
41
  /**
46
42
  * @typedef CreateFaqCategoryParam
@@ -52,39 +48,46 @@ export = ContentPlatformApplicationValidator;
52
48
  */
53
49
  /**
54
50
  * @typedef CreateNavigationParam
55
- * @property {ContentPlatformModel.NavigationRequest} body
51
+ * @property {ContentPlatformModel.NavigationPayload} body
56
52
  */
57
53
  /**
58
54
  * @typedef CreatePageParam
59
- * @property {ContentPlatformModel.PageRequest} body
55
+ * @property {ContentPlatformModel.PagePayload} body
60
56
  */
61
57
  /**
62
58
  * @typedef CreatePagePreviewParam
63
- * @property {ContentPlatformModel.PageRequest} body
59
+ * @property {ContentPlatformModel.PagePayload} body
64
60
  */
65
61
  /**
66
62
  * @typedef CreateSEOMarkupSchemaParam
67
63
  * @property {ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody} body
68
64
  */
65
+ /**
66
+ * @typedef CreateSitemapParam
67
+ * @property {ContentPlatformModel.SitemapConfigCreate} body
68
+ */
69
69
  /**
70
70
  * @typedef CreateSlideshowParam
71
- * @property {ContentPlatformModel.SlideshowRequest} body
71
+ * @property {ContentPlatformModel.SlideshowPayload} body
72
72
  */
73
73
  /**
74
74
  * @typedef DeleteAnnouncementParam
75
75
  * @property {string} announcementId - ID allotted to the announcement.
76
76
  */
77
77
  /**
78
- * @typedef DeleteAppCustomFieldDefinitionParam
79
- * @property {string} definitionId
78
+ * @typedef DeleteAppCustomFieldDefinitionBySlugParam
79
+ * @property {string} slug
80
+ * @property {string} resource
81
+ * @property {string} namespace
80
82
  */
81
83
  /**
82
- * @typedef DeleteAppCustomObjectParam
83
- * @property {string} metaobjectId
84
+ * @typedef DeleteAppCustomObjectBySlugParam
85
+ * @property {string} definitionSlug
86
+ * @property {string} slug
84
87
  */
85
88
  /**
86
- * @typedef DeleteAppCustomObjectDefinitionParam
87
- * @property {string} definitionId
89
+ * @typedef DeleteAppCustomObjectDefinitionBySlugParam
90
+ * @property {string} slug
88
91
  */
89
92
  /**
90
93
  * @typedef DeleteBlogParam
@@ -124,6 +127,10 @@ export = ContentPlatformApplicationValidator;
124
127
  * @property {string} id - Alphanumeric ID allotted to a SEO Markup Schema
125
128
  * Template created within a business.
126
129
  */
130
+ /**
131
+ * @typedef DeleteSitemapParam
132
+ * @property {string} name
133
+ */
127
134
  /**
128
135
  * @typedef DeleteSlideshowParam
129
136
  * @property {string} id - ID allotted to the slideshow.
@@ -145,8 +152,8 @@ export = ContentPlatformApplicationValidator;
145
152
  * @property {ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody} body
146
153
  */
147
154
  /**
148
- * @typedef ExportAppCustomObjectEntriesParam
149
- * @property {string} definitionId
155
+ * @typedef ExportAppCustomObjectEntriesBySlugParam
156
+ * @property {string} slug
150
157
  */
151
158
  /**
152
159
  * @typedef GenerateSEOTitleParam
@@ -167,34 +174,45 @@ export = ContentPlatformApplicationValidator;
167
174
  * Default value is 10.
168
175
  */
169
176
  /**
170
- * @typedef GetAppCustomFieldDefinitionParam
171
- * @property {string} definitionId
177
+ * @typedef GetAppCustomFieldDefinitionByResourceParam
178
+ * @property {string} pageNo
179
+ * @property {string} pageSize
180
+ * @property {string} resource
181
+ * @property {string} [types]
182
+ * @property {string} [search]
183
+ * @property {string} [slugs]
184
+ * @property {string} [namespaces]
185
+ */
186
+ /**
187
+ * @typedef GetAppCustomFieldDefinitionBySlugParam
188
+ * @property {string} slug
189
+ * @property {string} resource
190
+ * @property {string} namespace
172
191
  */
173
192
  /**
174
193
  * @typedef GetAppCustomFieldDefinitionsParam
175
194
  * @property {string} pageNo
176
195
  * @property {string} pageSize
177
- * @property {string} [resource]
178
- * @property {string} [type]
196
+ * @property {string} [resources]
197
+ * @property {string} [types]
179
198
  * @property {string} [search]
199
+ * @property {string} [slugs]
200
+ * @property {string} [namespaces]
180
201
  */
181
202
  /** @typedef GetAppCustomFieldTypesParam */
182
203
  /**
183
- * @typedef GetAppCustomFieldsParam
184
- * @property {string} resource
185
- */
186
- /**
187
- * @typedef GetAppCustomFieldsByResourceIdParam
204
+ * @typedef GetAppCustomFieldsByResourceSlugParam
188
205
  * @property {string} resource
189
- * @property {string} resourceId
206
+ * @property {string} resourceSlug
190
207
  */
191
208
  /**
192
- * @typedef GetAppCustomObjectParam
193
- * @property {string} metaobjectId
209
+ * @typedef GetAppCustomObjectBySlugParam
210
+ * @property {string} definitionSlug
211
+ * @property {string} slug
194
212
  */
195
213
  /**
196
- * @typedef GetAppCustomObjectDefinitionParam
197
- * @property {string} definitionId
214
+ * @typedef GetAppCustomObjectDefinitionBySlugParam
215
+ * @property {string} slug
198
216
  */
199
217
  /**
200
218
  * @typedef GetAppCustomObjectDefinitionsParam
@@ -203,10 +221,10 @@ export = ContentPlatformApplicationValidator;
203
221
  * @property {string} [search]
204
222
  */
205
223
  /**
206
- * @typedef GetAppCustomObjectsParam
207
- * @property {string} [definitionId]
224
+ * @typedef GetAppCustomObjectsBySlugParam
208
225
  * @property {string} pageNo
209
226
  * @property {string} pageSize
227
+ * @property {string} definitionSlug
210
228
  */
211
229
  /**
212
230
  * @typedef GetAppJobsParam
@@ -243,6 +261,7 @@ export = ContentPlatformApplicationValidator;
243
261
  * @property {string} [pageType] - The type of page against which schema
244
262
  * template was created
245
263
  */
264
+ /** @typedef GetDefaultSitemapConfigParam */
246
265
  /**
247
266
  * @typedef GetFaqByIdOrSlugParam
248
267
  * @property {string} idOrSlug - ID or the slug allotted to an FAQ category.
@@ -278,8 +297,8 @@ export = ContentPlatformApplicationValidator;
278
297
  * @typedef GetNavigationBySlugParam
279
298
  * @property {string} slug - A short, human-readable, URL-friendly identifier of
280
299
  * a navigation. You can get slug value of a navigation from `getNavigations` API.
281
- * @property {string} devicePlatform - Filter navigations by platform.
282
- * Acceptable values are: web, android, ios, all
300
+ * @property {string} [devicePlatform] - Filter navigations by platform.
301
+ * Acceptable values are: web, android, ios.
283
302
  */
284
303
  /**
285
304
  * @typedef GetNavigationsParam
@@ -330,6 +349,18 @@ export = ContentPlatformApplicationValidator;
330
349
  * @property {number} [pageSize] - The number of items to retrieve in each page.
331
350
  * Default value is 10.
332
351
  */
352
+ /**
353
+ * @typedef GetSitemapParam
354
+ * @property {string} name
355
+ */
356
+ /**
357
+ * @typedef GetSitemapsParam
358
+ * @property {string} pageNo
359
+ * @property {string} pageSize
360
+ * @property {boolean} [isActive] - Boolean flag for checking if sitemap is
361
+ * active or not in storefront
362
+ * @property {string} [name] - Query parameter to search sitemaps with name
363
+ */
333
364
  /**
334
365
  * @typedef GetSlideshowBySlugParam
335
366
  * @property {string} slug - A short, human-readable, URL-friendly identifier of
@@ -348,8 +379,8 @@ export = ContentPlatformApplicationValidator;
348
379
  */
349
380
  /** @typedef GetSupportInformationParam */
350
381
  /**
351
- * @typedef ImportAppCustomObjectEntriesParam
352
- * @property {string} definitionId
382
+ * @typedef ImportAppCustomObjectEntriesBySlugParam
383
+ * @property {string} slug
353
384
  * @property {ContentPlatformModel.CustomObjectBulkSchema} body
354
385
  */
355
386
  /**
@@ -362,8 +393,8 @@ export = ContentPlatformApplicationValidator;
362
393
  * @property {string} operationId - Name of operation id of the service.
363
394
  */
364
395
  /**
365
- * @typedef SampleAppCustomObjectBulkEntryParam
366
- * @property {string} definitionId
396
+ * @typedef SampleAppCustomObjectBulkEntryBySlugParam
397
+ * @property {string} slug
367
398
  */
368
399
  /**
369
400
  * @typedef SelectDataLoaderParam
@@ -380,24 +411,37 @@ export = ContentPlatformApplicationValidator;
380
411
  * @property {ContentPlatformModel.ScheduleSchema} body
381
412
  */
382
413
  /**
383
- * @typedef UpdateAppCustomFieldDefinitionParam
384
- * @property {string} definitionId
414
+ * @typedef UpdateAppCustomFieldByResourceSlugParam
415
+ * @property {string} resource
416
+ * @property {string} resourceSlug
417
+ * @property {ContentPlatformModel.CustomFieldRequestSchema} body
418
+ */
419
+ /**
420
+ * @typedef UpdateAppCustomFieldDefinitionBySlugParam
421
+ * @property {string} slug
422
+ * @property {string} resource
423
+ * @property {string} namespace
385
424
  * @property {ContentPlatformModel.CustomFieldDefinitionRequestSchema} body
386
425
  */
387
426
  /**
388
- * @typedef UpdateAppCustomObjectParam
389
- * @property {string} metaobjectId
390
- * @property {ContentPlatformModel.CustomObjectRequestSchema} body
427
+ * @typedef UpdateAppCustomObjectBySlugParam
428
+ * @property {string} definitionSlug
429
+ * @property {string} slug
430
+ * @property {ContentPlatformModel.CustomObjectRequestSchemaWithoutId} body
391
431
  */
392
432
  /**
393
- * @typedef UpdateAppCustomObjectDefinitionParam
394
- * @property {string} definitionId
433
+ * @typedef UpdateAppCustomObjectDefinitionBySlugParam
434
+ * @property {string} slug
395
435
  * @property {ContentPlatformModel.CustomObjectDefinitionUpdateRequestSchema} body
396
436
  */
397
437
  /**
398
438
  * @typedef UpdateBlogParam
399
439
  * @property {string} id - ID allotted to the blog.
400
- * @property {ContentPlatformModel.BlogRequest} body
440
+ * @property {ContentPlatformModel.BlogPayload} body
441
+ */
442
+ /**
443
+ * @typedef UpdateDefaultSitemapConfigParam
444
+ * @property {ContentPlatformModel.DefaultSitemapConfig} body
401
445
  */
402
446
  /**
403
447
  * @typedef UpdateFaqParam
@@ -426,7 +470,7 @@ export = ContentPlatformApplicationValidator;
426
470
  /**
427
471
  * @typedef UpdateNavigationParam
428
472
  * @property {string} id - ID allotted to the navigation.
429
- * @property {ContentPlatformModel.NavigationRequest} body
473
+ * @property {ContentPlatformModel.NavigationPayload} body
430
474
  */
431
475
  /**
432
476
  * @typedef UpdatePageParam
@@ -437,7 +481,7 @@ export = ContentPlatformApplicationValidator;
437
481
  * @typedef UpdatePagePreviewParam
438
482
  * @property {string} slug - A short, human-readable, URL-friendly identifier of
439
483
  * a page. You can get slug value of a page from `getPages` API.
440
- * @property {ContentPlatformModel.PagePublishRequest} body
484
+ * @property {ContentPlatformModel.PagePublishPayload} body
441
485
  */
442
486
  /**
443
487
  * @typedef UpdatePathRedirectionRulesParam
@@ -448,10 +492,15 @@ export = ContentPlatformApplicationValidator;
448
492
  * @typedef UpdateSEOConfigurationParam
449
493
  * @property {ContentPlatformModel.SeoComponent} body
450
494
  */
495
+ /**
496
+ * @typedef UpdateSitemapParam
497
+ * @property {string} name
498
+ * @property {ContentPlatformModel.SitemapConfigUpdate} body
499
+ */
451
500
  /**
452
501
  * @typedef UpdateSlideshowParam
453
502
  * @property {string} id - ID allotted to the slideshow.
454
- * @property {ContentPlatformModel.SlideshowRequest} body
503
+ * @property {ContentPlatformModel.SlideshowPayload} body
455
504
  */
456
505
  /**
457
506
  * @typedef UpdateSupportInformationParam
@@ -468,12 +517,10 @@ declare class ContentPlatformApplicationValidator {
468
517
  static addPathRedirectionRules(): AddPathRedirectionRulesParam;
469
518
  /** @returns {CreateAnnouncementParam} */
470
519
  static createAnnouncement(): CreateAnnouncementParam;
471
- /** @returns {CreateAppCustomFieldByResourceIdParam} */
472
- static createAppCustomFieldByResourceId(): CreateAppCustomFieldByResourceIdParam;
473
520
  /** @returns {CreateAppCustomFieldDefinitionParam} */
474
521
  static createAppCustomFieldDefinition(): CreateAppCustomFieldDefinitionParam;
475
- /** @returns {CreateAppCustomObjectParam} */
476
- static createAppCustomObject(): CreateAppCustomObjectParam;
522
+ /** @returns {CreateAppCustomObjectBySlugParam} */
523
+ static createAppCustomObjectBySlug(): CreateAppCustomObjectBySlugParam;
477
524
  /** @returns {CreateAppCustomObjectDefinitionParam} */
478
525
  static createAppCustomObjectDefinition(): CreateAppCustomObjectDefinitionParam;
479
526
  /** @returns {CreateBlogParam} */
@@ -490,16 +537,18 @@ declare class ContentPlatformApplicationValidator {
490
537
  static createPagePreview(): CreatePagePreviewParam;
491
538
  /** @returns {CreateSEOMarkupSchemaParam} */
492
539
  static createSEOMarkupSchema(): CreateSEOMarkupSchemaParam;
540
+ /** @returns {CreateSitemapParam} */
541
+ static createSitemap(): CreateSitemapParam;
493
542
  /** @returns {CreateSlideshowParam} */
494
543
  static createSlideshow(): CreateSlideshowParam;
495
544
  /** @returns {DeleteAnnouncementParam} */
496
545
  static deleteAnnouncement(): DeleteAnnouncementParam;
497
- /** @returns {DeleteAppCustomFieldDefinitionParam} */
498
- static deleteAppCustomFieldDefinition(): DeleteAppCustomFieldDefinitionParam;
499
- /** @returns {DeleteAppCustomObjectParam} */
500
- static deleteAppCustomObject(): DeleteAppCustomObjectParam;
501
- /** @returns {DeleteAppCustomObjectDefinitionParam} */
502
- static deleteAppCustomObjectDefinition(): DeleteAppCustomObjectDefinitionParam;
546
+ /** @returns {DeleteAppCustomFieldDefinitionBySlugParam} */
547
+ static deleteAppCustomFieldDefinitionBySlug(): DeleteAppCustomFieldDefinitionBySlugParam;
548
+ /** @returns {DeleteAppCustomObjectBySlugParam} */
549
+ static deleteAppCustomObjectBySlug(): DeleteAppCustomObjectBySlugParam;
550
+ /** @returns {DeleteAppCustomObjectDefinitionBySlugParam} */
551
+ static deleteAppCustomObjectDefinitionBySlug(): DeleteAppCustomObjectDefinitionBySlugParam;
503
552
  /** @returns {DeleteBlogParam} */
504
553
  static deleteBlog(): DeleteBlogParam;
505
554
  /** @returns {DeleteDataLoaderParam} */
@@ -518,6 +567,8 @@ declare class ContentPlatformApplicationValidator {
518
567
  static deletePathRedirectionRules(): DeletePathRedirectionRulesParam;
519
568
  /** @returns {DeleteSEOMarkupSchemaParam} */
520
569
  static deleteSEOMarkupSchema(): DeleteSEOMarkupSchemaParam;
570
+ /** @returns {DeleteSitemapParam} */
571
+ static deleteSitemap(): DeleteSitemapParam;
521
572
  /** @returns {DeleteSlideshowParam} */
522
573
  static deleteSlideshow(): DeleteSlideshowParam;
523
574
  /** @returns {EditDataLoaderParam} */
@@ -526,32 +577,32 @@ declare class ContentPlatformApplicationValidator {
526
577
  static editInjectableTag(): EditInjectableTagParam;
527
578
  /** @returns {EditSEOMarkupSchemaParam} */
528
579
  static editSEOMarkupSchema(): EditSEOMarkupSchemaParam;
529
- /** @returns {ExportAppCustomObjectEntriesParam} */
530
- static exportAppCustomObjectEntries(): ExportAppCustomObjectEntriesParam;
580
+ /** @returns {ExportAppCustomObjectEntriesBySlugParam} */
581
+ static exportAppCustomObjectEntriesBySlug(): ExportAppCustomObjectEntriesBySlugParam;
531
582
  /** @returns {GenerateSEOTitleParam} */
532
583
  static generateSEOTitle(): GenerateSEOTitleParam;
533
584
  /** @returns {GetAnnouncementByIdParam} */
534
585
  static getAnnouncementById(): GetAnnouncementByIdParam;
535
586
  /** @returns {GetAnnouncementsListParam} */
536
587
  static getAnnouncementsList(): GetAnnouncementsListParam;
537
- /** @returns {GetAppCustomFieldDefinitionParam} */
538
- static getAppCustomFieldDefinition(): GetAppCustomFieldDefinitionParam;
588
+ /** @returns {GetAppCustomFieldDefinitionByResourceParam} */
589
+ static getAppCustomFieldDefinitionByResource(): GetAppCustomFieldDefinitionByResourceParam;
590
+ /** @returns {GetAppCustomFieldDefinitionBySlugParam} */
591
+ static getAppCustomFieldDefinitionBySlug(): GetAppCustomFieldDefinitionBySlugParam;
539
592
  /** @returns {GetAppCustomFieldDefinitionsParam} */
540
593
  static getAppCustomFieldDefinitions(): GetAppCustomFieldDefinitionsParam;
541
594
  /** @returns {GetAppCustomFieldTypesParam} */
542
595
  static getAppCustomFieldTypes(): any;
543
- /** @returns {GetAppCustomFieldsParam} */
544
- static getAppCustomFields(): GetAppCustomFieldsParam;
545
- /** @returns {GetAppCustomFieldsByResourceIdParam} */
546
- static getAppCustomFieldsByResourceId(): GetAppCustomFieldsByResourceIdParam;
547
- /** @returns {GetAppCustomObjectParam} */
548
- static getAppCustomObject(): GetAppCustomObjectParam;
549
- /** @returns {GetAppCustomObjectDefinitionParam} */
550
- static getAppCustomObjectDefinition(): GetAppCustomObjectDefinitionParam;
596
+ /** @returns {GetAppCustomFieldsByResourceSlugParam} */
597
+ static getAppCustomFieldsByResourceSlug(): GetAppCustomFieldsByResourceSlugParam;
598
+ /** @returns {GetAppCustomObjectBySlugParam} */
599
+ static getAppCustomObjectBySlug(): GetAppCustomObjectBySlugParam;
600
+ /** @returns {GetAppCustomObjectDefinitionBySlugParam} */
601
+ static getAppCustomObjectDefinitionBySlug(): GetAppCustomObjectDefinitionBySlugParam;
551
602
  /** @returns {GetAppCustomObjectDefinitionsParam} */
552
603
  static getAppCustomObjectDefinitions(): GetAppCustomObjectDefinitionsParam;
553
- /** @returns {GetAppCustomObjectsParam} */
554
- static getAppCustomObjects(): GetAppCustomObjectsParam;
604
+ /** @returns {GetAppCustomObjectsBySlugParam} */
605
+ static getAppCustomObjectsBySlug(): GetAppCustomObjectsBySlugParam;
555
606
  /** @returns {GetAppJobsParam} */
556
607
  static getAppJobs(): GetAppJobsParam;
557
608
  /** @returns {GetAppResourcesParam} */
@@ -568,6 +619,8 @@ declare class ContentPlatformApplicationValidator {
568
619
  static getDefaultNavigations(): any;
569
620
  /** @returns {GetDefaultSEOMarkupSchemaParam} */
570
621
  static getDefaultSEOMarkupSchema(): GetDefaultSEOMarkupSchemaParam;
622
+ /** @returns {GetDefaultSitemapConfigParam} */
623
+ static getDefaultSitemapConfig(): any;
571
624
  /** @returns {GetFaqByIdOrSlugParam} */
572
625
  static getFaqByIdOrSlug(): GetFaqByIdOrSlugParam;
573
626
  /** @returns {GetFaqCategoriesParam} */
@@ -604,34 +657,42 @@ declare class ContentPlatformApplicationValidator {
604
657
  static getSEOMarkupSchema(): GetSEOMarkupSchemaParam;
605
658
  /** @returns {GetSEOMarkupSchemasParam} */
606
659
  static getSEOMarkupSchemas(): GetSEOMarkupSchemasParam;
660
+ /** @returns {GetSitemapParam} */
661
+ static getSitemap(): GetSitemapParam;
662
+ /** @returns {GetSitemapsParam} */
663
+ static getSitemaps(): GetSitemapsParam;
607
664
  /** @returns {GetSlideshowBySlugParam} */
608
665
  static getSlideshowBySlug(): GetSlideshowBySlugParam;
609
666
  /** @returns {GetSlideshowsParam} */
610
667
  static getSlideshows(): GetSlideshowsParam;
611
668
  /** @returns {GetSupportInformationParam} */
612
669
  static getSupportInformation(): any;
613
- /** @returns {ImportAppCustomObjectEntriesParam} */
614
- static importAppCustomObjectEntries(): ImportAppCustomObjectEntriesParam;
670
+ /** @returns {ImportAppCustomObjectEntriesBySlugParam} */
671
+ static importAppCustomObjectEntriesBySlug(): ImportAppCustomObjectEntriesBySlugParam;
615
672
  /** @returns {RemoveInjectableTagParam} */
616
673
  static removeInjectableTag(): RemoveInjectableTagParam;
617
674
  /** @returns {ResetDataLoaderParam} */
618
675
  static resetDataLoader(): ResetDataLoaderParam;
619
- /** @returns {SampleAppCustomObjectBulkEntryParam} */
620
- static sampleAppCustomObjectBulkEntry(): SampleAppCustomObjectBulkEntryParam;
676
+ /** @returns {SampleAppCustomObjectBulkEntryBySlugParam} */
677
+ static sampleAppCustomObjectBulkEntryBySlug(): SampleAppCustomObjectBulkEntryBySlugParam;
621
678
  /** @returns {SelectDataLoaderParam} */
622
679
  static selectDataLoader(): SelectDataLoaderParam;
623
680
  /** @returns {UpdateAnnouncementParam} */
624
681
  static updateAnnouncement(): UpdateAnnouncementParam;
625
682
  /** @returns {UpdateAnnouncementScheduleParam} */
626
683
  static updateAnnouncementSchedule(): UpdateAnnouncementScheduleParam;
627
- /** @returns {UpdateAppCustomFieldDefinitionParam} */
628
- static updateAppCustomFieldDefinition(): UpdateAppCustomFieldDefinitionParam;
629
- /** @returns {UpdateAppCustomObjectParam} */
630
- static updateAppCustomObject(): UpdateAppCustomObjectParam;
631
- /** @returns {UpdateAppCustomObjectDefinitionParam} */
632
- static updateAppCustomObjectDefinition(): UpdateAppCustomObjectDefinitionParam;
684
+ /** @returns {UpdateAppCustomFieldByResourceSlugParam} */
685
+ static updateAppCustomFieldByResourceSlug(): UpdateAppCustomFieldByResourceSlugParam;
686
+ /** @returns {UpdateAppCustomFieldDefinitionBySlugParam} */
687
+ static updateAppCustomFieldDefinitionBySlug(): UpdateAppCustomFieldDefinitionBySlugParam;
688
+ /** @returns {UpdateAppCustomObjectBySlugParam} */
689
+ static updateAppCustomObjectBySlug(): UpdateAppCustomObjectBySlugParam;
690
+ /** @returns {UpdateAppCustomObjectDefinitionBySlugParam} */
691
+ static updateAppCustomObjectDefinitionBySlug(): UpdateAppCustomObjectDefinitionBySlugParam;
633
692
  /** @returns {UpdateBlogParam} */
634
693
  static updateBlog(): UpdateBlogParam;
694
+ /** @returns {UpdateDefaultSitemapConfigParam} */
695
+ static updateDefaultSitemapConfig(): UpdateDefaultSitemapConfigParam;
635
696
  /** @returns {UpdateFaqParam} */
636
697
  static updateFaq(): UpdateFaqParam;
637
698
  /** @returns {UpdateFaqCategoryParam} */
@@ -652,13 +713,15 @@ declare class ContentPlatformApplicationValidator {
652
713
  static updatePathRedirectionRules(): UpdatePathRedirectionRulesParam;
653
714
  /** @returns {UpdateSEOConfigurationParam} */
654
715
  static updateSEOConfiguration(): UpdateSEOConfigurationParam;
716
+ /** @returns {UpdateSitemapParam} */
717
+ static updateSitemap(): UpdateSitemapParam;
655
718
  /** @returns {UpdateSlideshowParam} */
656
719
  static updateSlideshow(): UpdateSlideshowParam;
657
720
  /** @returns {UpdateSupportInformationParam} */
658
721
  static updateSupportInformation(): UpdateSupportInformationParam;
659
722
  }
660
723
  declare namespace ContentPlatformApplicationValidator {
661
- export { AddDataLoaderParam, AddFaqParam, AddInjectableTagParam, AddPathRedirectionRulesParam, CreateAnnouncementParam, CreateAppCustomFieldByResourceIdParam, CreateAppCustomFieldDefinitionParam, CreateAppCustomObjectParam, CreateAppCustomObjectDefinitionParam, CreateBlogParam, CreateFaqCategoryParam, CreateLandingPageParam, CreateNavigationParam, CreatePageParam, CreatePagePreviewParam, CreateSEOMarkupSchemaParam, CreateSlideshowParam, DeleteAnnouncementParam, DeleteAppCustomFieldDefinitionParam, DeleteAppCustomObjectParam, DeleteAppCustomObjectDefinitionParam, DeleteBlogParam, DeleteDataLoaderParam, DeleteFaqParam, DeleteFaqCategoryParam, DeleteLandingPageParam, DeleteNavigationParam, DeletePageParam, DeletePathRedirectionRulesParam, DeleteSEOMarkupSchemaParam, DeleteSlideshowParam, EditDataLoaderParam, EditInjectableTagParam, EditSEOMarkupSchemaParam, ExportAppCustomObjectEntriesParam, GenerateSEOTitleParam, GetAnnouncementByIdParam, GetAnnouncementsListParam, GetAppCustomFieldDefinitionParam, GetAppCustomFieldDefinitionsParam, GetAppCustomFieldTypesParam, GetAppCustomFieldsParam, GetAppCustomFieldsByResourceIdParam, GetAppCustomObjectParam, GetAppCustomObjectDefinitionParam, GetAppCustomObjectDefinitionsParam, GetAppCustomObjectsParam, GetAppJobsParam, GetAppResourcesParam, GetBlogBySlugParam, GetBlogsParam, GetDataLoadersParam, GetDataLoadersByServiceParam, GetDefaultNavigationsParam, GetDefaultSEOMarkupSchemaParam, GetFaqByIdOrSlugParam, GetFaqCategoriesParam, GetFaqCategoryBySlugOrIdParam, GetFaqsByCategoryIdOrSlugParam, GetInjectableTagsParam, GetLandingPagesParam, GetLegalInformationParam, GetNavigationBySlugParam, GetNavigationsParam, GetPageBySlugParam, GetPageMetaParam, GetPageSpecParam, GetPagesParam, GetPathRedirectionRuleParam, GetPathRedirectionRulesParam, GetSEOConfigurationParam, GetSEOMarkupSchemaParam, GetSEOMarkupSchemasParam, GetSlideshowBySlugParam, GetSlideshowsParam, GetSupportInformationParam, ImportAppCustomObjectEntriesParam, RemoveInjectableTagParam, ResetDataLoaderParam, SampleAppCustomObjectBulkEntryParam, SelectDataLoaderParam, UpdateAnnouncementParam, UpdateAnnouncementScheduleParam, UpdateAppCustomFieldDefinitionParam, UpdateAppCustomObjectParam, UpdateAppCustomObjectDefinitionParam, UpdateBlogParam, UpdateFaqParam, UpdateFaqCategoryParam, UpdateInjectableTagParam, UpdateLandingPageParam, UpdateLegalInformationParam, UpdateNavigationParam, UpdatePageParam, UpdatePagePreviewParam, UpdatePathRedirectionRulesParam, UpdateSEOConfigurationParam, UpdateSlideshowParam, UpdateSupportInformationParam };
724
+ export { AddDataLoaderParam, AddFaqParam, AddInjectableTagParam, AddPathRedirectionRulesParam, CreateAnnouncementParam, CreateAppCustomFieldDefinitionParam, CreateAppCustomObjectBySlugParam, CreateAppCustomObjectDefinitionParam, CreateBlogParam, CreateFaqCategoryParam, CreateLandingPageParam, CreateNavigationParam, CreatePageParam, CreatePagePreviewParam, CreateSEOMarkupSchemaParam, CreateSitemapParam, CreateSlideshowParam, DeleteAnnouncementParam, DeleteAppCustomFieldDefinitionBySlugParam, DeleteAppCustomObjectBySlugParam, DeleteAppCustomObjectDefinitionBySlugParam, DeleteBlogParam, DeleteDataLoaderParam, DeleteFaqParam, DeleteFaqCategoryParam, DeleteLandingPageParam, DeleteNavigationParam, DeletePageParam, DeletePathRedirectionRulesParam, DeleteSEOMarkupSchemaParam, DeleteSitemapParam, DeleteSlideshowParam, EditDataLoaderParam, EditInjectableTagParam, EditSEOMarkupSchemaParam, ExportAppCustomObjectEntriesBySlugParam, GenerateSEOTitleParam, GetAnnouncementByIdParam, GetAnnouncementsListParam, GetAppCustomFieldDefinitionByResourceParam, GetAppCustomFieldDefinitionBySlugParam, GetAppCustomFieldDefinitionsParam, GetAppCustomFieldTypesParam, GetAppCustomFieldsByResourceSlugParam, GetAppCustomObjectBySlugParam, GetAppCustomObjectDefinitionBySlugParam, GetAppCustomObjectDefinitionsParam, GetAppCustomObjectsBySlugParam, GetAppJobsParam, GetAppResourcesParam, GetBlogBySlugParam, GetBlogsParam, GetDataLoadersParam, GetDataLoadersByServiceParam, GetDefaultNavigationsParam, GetDefaultSEOMarkupSchemaParam, GetDefaultSitemapConfigParam, GetFaqByIdOrSlugParam, GetFaqCategoriesParam, GetFaqCategoryBySlugOrIdParam, GetFaqsByCategoryIdOrSlugParam, GetInjectableTagsParam, GetLandingPagesParam, GetLegalInformationParam, GetNavigationBySlugParam, GetNavigationsParam, GetPageBySlugParam, GetPageMetaParam, GetPageSpecParam, GetPagesParam, GetPathRedirectionRuleParam, GetPathRedirectionRulesParam, GetSEOConfigurationParam, GetSEOMarkupSchemaParam, GetSEOMarkupSchemasParam, GetSitemapParam, GetSitemapsParam, GetSlideshowBySlugParam, GetSlideshowsParam, GetSupportInformationParam, ImportAppCustomObjectEntriesBySlugParam, RemoveInjectableTagParam, ResetDataLoaderParam, SampleAppCustomObjectBulkEntryBySlugParam, SelectDataLoaderParam, UpdateAnnouncementParam, UpdateAnnouncementScheduleParam, UpdateAppCustomFieldByResourceSlugParam, UpdateAppCustomFieldDefinitionBySlugParam, UpdateAppCustomObjectBySlugParam, UpdateAppCustomObjectDefinitionBySlugParam, UpdateBlogParam, UpdateDefaultSitemapConfigParam, UpdateFaqParam, UpdateFaqCategoryParam, UpdateInjectableTagParam, UpdateLandingPageParam, UpdateLegalInformationParam, UpdateNavigationParam, UpdatePageParam, UpdatePagePreviewParam, UpdatePathRedirectionRulesParam, UpdateSEOConfigurationParam, UpdateSitemapParam, UpdateSlideshowParam, UpdateSupportInformationParam };
662
725
  }
663
726
  type AddDataLoaderParam = {
664
727
  body: ContentPlatformModel.DataLoaderSchema;
@@ -679,22 +742,19 @@ type AddPathRedirectionRulesParam = {
679
742
  type CreateAnnouncementParam = {
680
743
  body: ContentPlatformModel.AdminAnnouncementSchema;
681
744
  };
682
- type CreateAppCustomFieldByResourceIdParam = {
683
- resource: string;
684
- resourceId: string;
685
- body: ContentPlatformModel.CustomFieldRequestSchema;
686
- };
687
745
  type CreateAppCustomFieldDefinitionParam = {
746
+ resource: string;
688
747
  body: ContentPlatformModel.CustomFieldDefinitionRequestSchema;
689
748
  };
690
- type CreateAppCustomObjectParam = {
691
- body: ContentPlatformModel.CustomObjectRequestSchema;
749
+ type CreateAppCustomObjectBySlugParam = {
750
+ definitionSlug: string;
751
+ body: ContentPlatformModel.CustomObjectRequestSchemaWithoutId;
692
752
  };
693
753
  type CreateAppCustomObjectDefinitionParam = {
694
754
  body: ContentPlatformModel.CustomObjectDefinitionRequestSchema;
695
755
  };
696
756
  type CreateBlogParam = {
697
- body: ContentPlatformModel.BlogRequest;
757
+ body: ContentPlatformModel.BlogPayload;
698
758
  };
699
759
  type CreateFaqCategoryParam = {
700
760
  body: ContentPlatformModel.CreateFaqCategoryRequestSchema;
@@ -703,19 +763,22 @@ type CreateLandingPageParam = {
703
763
  body: ContentPlatformModel.LandingPageSchema;
704
764
  };
705
765
  type CreateNavigationParam = {
706
- body: ContentPlatformModel.NavigationRequest;
766
+ body: ContentPlatformModel.NavigationPayload;
707
767
  };
708
768
  type CreatePageParam = {
709
- body: ContentPlatformModel.PageRequest;
769
+ body: ContentPlatformModel.PagePayload;
710
770
  };
711
771
  type CreatePagePreviewParam = {
712
- body: ContentPlatformModel.PageRequest;
772
+ body: ContentPlatformModel.PagePayload;
713
773
  };
714
774
  type CreateSEOMarkupSchemaParam = {
715
775
  body: ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody;
716
776
  };
777
+ type CreateSitemapParam = {
778
+ body: ContentPlatformModel.SitemapConfigCreate;
779
+ };
717
780
  type CreateSlideshowParam = {
718
- body: ContentPlatformModel.SlideshowRequest;
781
+ body: ContentPlatformModel.SlideshowPayload;
719
782
  };
720
783
  type DeleteAnnouncementParam = {
721
784
  /**
@@ -723,14 +786,17 @@ type DeleteAnnouncementParam = {
723
786
  */
724
787
  announcementId: string;
725
788
  };
726
- type DeleteAppCustomFieldDefinitionParam = {
727
- definitionId: string;
789
+ type DeleteAppCustomFieldDefinitionBySlugParam = {
790
+ slug: string;
791
+ resource: string;
792
+ namespace: string;
728
793
  };
729
- type DeleteAppCustomObjectParam = {
730
- metaobjectId: string;
794
+ type DeleteAppCustomObjectBySlugParam = {
795
+ definitionSlug: string;
796
+ slug: string;
731
797
  };
732
- type DeleteAppCustomObjectDefinitionParam = {
733
- definitionId: string;
798
+ type DeleteAppCustomObjectDefinitionBySlugParam = {
799
+ slug: string;
734
800
  };
735
801
  type DeleteBlogParam = {
736
802
  /**
@@ -791,6 +857,9 @@ type DeleteSEOMarkupSchemaParam = {
791
857
  */
792
858
  id: string;
793
859
  };
860
+ type DeleteSitemapParam = {
861
+ name: string;
862
+ };
794
863
  type DeleteSlideshowParam = {
795
864
  /**
796
865
  * - ID allotted to the slideshow.
@@ -819,8 +888,8 @@ type EditSEOMarkupSchemaParam = {
819
888
  id: string;
820
889
  body: ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody;
821
890
  };
822
- type ExportAppCustomObjectEntriesParam = {
823
- definitionId: string;
891
+ type ExportAppCustomObjectEntriesBySlugParam = {
892
+ slug: string;
824
893
  };
825
894
  type GenerateSEOTitleParam = {
826
895
  /**
@@ -849,38 +918,49 @@ type GetAnnouncementsListParam = {
849
918
  */
850
919
  pageSize?: number;
851
920
  };
852
- type GetAppCustomFieldDefinitionParam = {
853
- definitionId: string;
854
- };
855
- type GetAppCustomFieldDefinitionsParam = {
921
+ type GetAppCustomFieldDefinitionByResourceParam = {
856
922
  pageNo: string;
857
923
  pageSize: string;
858
- resource?: string;
859
- type?: string;
924
+ resource: string;
925
+ types?: string;
860
926
  search?: string;
927
+ slugs?: string;
928
+ namespaces?: string;
861
929
  };
862
- type GetAppCustomFieldsParam = {
930
+ type GetAppCustomFieldDefinitionBySlugParam = {
931
+ slug: string;
863
932
  resource: string;
933
+ namespace: string;
934
+ };
935
+ type GetAppCustomFieldDefinitionsParam = {
936
+ pageNo: string;
937
+ pageSize: string;
938
+ resources?: string;
939
+ types?: string;
940
+ search?: string;
941
+ slugs?: string;
942
+ namespaces?: string;
864
943
  };
865
- type GetAppCustomFieldsByResourceIdParam = {
944
+ type GetAppCustomFieldsByResourceSlugParam = {
866
945
  resource: string;
867
- resourceId: string;
946
+ resourceSlug: string;
868
947
  };
869
- type GetAppCustomObjectParam = {
870
- metaobjectId: string;
948
+ type GetAppCustomObjectBySlugParam = {
949
+ definitionSlug: string;
950
+ slug: string;
871
951
  };
872
- type GetAppCustomObjectDefinitionParam = {
873
- definitionId: string;
952
+ type GetAppCustomObjectDefinitionBySlugParam = {
953
+ slug: string;
874
954
  };
875
955
  type GetAppCustomObjectDefinitionsParam = {
876
956
  pageNo: string;
877
957
  pageSize: string;
878
958
  search?: string;
879
959
  };
880
- type GetAppCustomObjectsParam = {
881
- definitionId?: string;
960
+ type GetAppCustomObjectsBySlugParam = {
882
961
  pageNo: string;
883
962
  pageSize: string;
963
+ definitionSlug: string;
884
964
  };
885
965
  type GetAppJobsParam = {
886
966
  page: string;
@@ -989,9 +1069,9 @@ type GetNavigationBySlugParam = {
989
1069
  slug: string;
990
1070
  /**
991
1071
  * - Filter navigations by platform.
992
- * Acceptable values are: web, android, ios, all
1072
+ * Acceptable values are: web, android, ios.
993
1073
  */
994
- devicePlatform: string;
1074
+ devicePlatform?: string;
995
1075
  };
996
1076
  type GetNavigationsParam = {
997
1077
  /**
@@ -1074,6 +1154,22 @@ type GetSEOMarkupSchemasParam = {
1074
1154
  */
1075
1155
  pageSize?: number;
1076
1156
  };
1157
+ type GetSitemapParam = {
1158
+ name: string;
1159
+ };
1160
+ type GetSitemapsParam = {
1161
+ pageNo: string;
1162
+ pageSize: string;
1163
+ /**
1164
+ * - Boolean flag for checking if sitemap is
1165
+ * active or not in storefront
1166
+ */
1167
+ isActive?: boolean;
1168
+ /**
1169
+ * - Query parameter to search sitemaps with name
1170
+ */
1171
+ name?: string;
1172
+ };
1077
1173
  type GetSlideshowBySlugParam = {
1078
1174
  /**
1079
1175
  * - A short, human-readable, URL-friendly identifier of
@@ -1103,8 +1199,8 @@ type GetSlideshowsParam = {
1103
1199
  */
1104
1200
  pageSize?: number;
1105
1201
  };
1106
- type ImportAppCustomObjectEntriesParam = {
1107
- definitionId: string;
1202
+ type ImportAppCustomObjectEntriesBySlugParam = {
1203
+ slug: string;
1108
1204
  body: ContentPlatformModel.CustomObjectBulkSchema;
1109
1205
  };
1110
1206
  type RemoveInjectableTagParam = {
@@ -1120,8 +1216,8 @@ type ResetDataLoaderParam = {
1120
1216
  */
1121
1217
  operationId: string;
1122
1218
  };
1123
- type SampleAppCustomObjectBulkEntryParam = {
1124
- definitionId: string;
1219
+ type SampleAppCustomObjectBulkEntryBySlugParam = {
1220
+ slug: string;
1125
1221
  };
1126
1222
  type SelectDataLoaderParam = {
1127
1223
  /**
@@ -1143,16 +1239,24 @@ type UpdateAnnouncementScheduleParam = {
1143
1239
  announcementId: string;
1144
1240
  body: ContentPlatformModel.ScheduleSchema;
1145
1241
  };
1146
- type UpdateAppCustomFieldDefinitionParam = {
1147
- definitionId: string;
1242
+ type UpdateAppCustomFieldByResourceSlugParam = {
1243
+ resource: string;
1244
+ resourceSlug: string;
1245
+ body: ContentPlatformModel.CustomFieldRequestSchema;
1246
+ };
1247
+ type UpdateAppCustomFieldDefinitionBySlugParam = {
1248
+ slug: string;
1249
+ resource: string;
1250
+ namespace: string;
1148
1251
  body: ContentPlatformModel.CustomFieldDefinitionRequestSchema;
1149
1252
  };
1150
- type UpdateAppCustomObjectParam = {
1151
- metaobjectId: string;
1152
- body: ContentPlatformModel.CustomObjectRequestSchema;
1253
+ type UpdateAppCustomObjectBySlugParam = {
1254
+ definitionSlug: string;
1255
+ slug: string;
1256
+ body: ContentPlatformModel.CustomObjectRequestSchemaWithoutId;
1153
1257
  };
1154
- type UpdateAppCustomObjectDefinitionParam = {
1155
- definitionId: string;
1258
+ type UpdateAppCustomObjectDefinitionBySlugParam = {
1259
+ slug: string;
1156
1260
  body: ContentPlatformModel.CustomObjectDefinitionUpdateRequestSchema;
1157
1261
  };
1158
1262
  type UpdateBlogParam = {
@@ -1160,7 +1264,10 @@ type UpdateBlogParam = {
1160
1264
  * - ID allotted to the blog.
1161
1265
  */
1162
1266
  id: string;
1163
- body: ContentPlatformModel.BlogRequest;
1267
+ body: ContentPlatformModel.BlogPayload;
1268
+ };
1269
+ type UpdateDefaultSitemapConfigParam = {
1270
+ body: ContentPlatformModel.DefaultSitemapConfig;
1164
1271
  };
1165
1272
  type UpdateFaqParam = {
1166
1273
  /**
@@ -1198,7 +1305,7 @@ type UpdateNavigationParam = {
1198
1305
  * - ID allotted to the navigation.
1199
1306
  */
1200
1307
  id: string;
1201
- body: ContentPlatformModel.NavigationRequest;
1308
+ body: ContentPlatformModel.NavigationPayload;
1202
1309
  };
1203
1310
  type UpdatePageParam = {
1204
1311
  /**
@@ -1213,7 +1320,7 @@ type UpdatePagePreviewParam = {
1213
1320
  * a page. You can get slug value of a page from `getPages` API.
1214
1321
  */
1215
1322
  slug: string;
1216
- body: ContentPlatformModel.PagePublishRequest;
1323
+ body: ContentPlatformModel.PagePublishPayload;
1217
1324
  };
1218
1325
  type UpdatePathRedirectionRulesParam = {
1219
1326
  /**
@@ -1225,12 +1332,16 @@ type UpdatePathRedirectionRulesParam = {
1225
1332
  type UpdateSEOConfigurationParam = {
1226
1333
  body: ContentPlatformModel.SeoComponent;
1227
1334
  };
1335
+ type UpdateSitemapParam = {
1336
+ name: string;
1337
+ body: ContentPlatformModel.SitemapConfigUpdate;
1338
+ };
1228
1339
  type UpdateSlideshowParam = {
1229
1340
  /**
1230
1341
  * - ID allotted to the slideshow.
1231
1342
  */
1232
1343
  id: string;
1233
- body: ContentPlatformModel.SlideshowRequest;
1344
+ body: ContentPlatformModel.SlideshowPayload;
1234
1345
  };
1235
1346
  type UpdateSupportInformationParam = {
1236
1347
  body: ContentPlatformModel.Support;
@@ -1239,6 +1350,7 @@ type GetAppCustomFieldTypesParam = any;
1239
1350
  type GetAppResourcesParam = any;
1240
1351
  type GetDataLoadersParam = any;
1241
1352
  type GetDefaultNavigationsParam = any;
1353
+ type GetDefaultSitemapConfigParam = any;
1242
1354
  type GetFaqCategoriesParam = any;
1243
1355
  type GetLegalInformationParam = any;
1244
1356
  type GetPageMetaParam = any;