@gofynd/fdk-client-javascript 1.4.15-beta.6 → 1.4.16-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 (237) 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 +130 -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 +19 -30
  14. package/sdk/application/Content/ContentApplicationClient.js +40 -60
  15. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +8 -8
  16. package/sdk/application/FileStorage/FileStorageApplicationClient.js +7 -7
  17. package/sdk/application/Finance/FinanceApplicationClient.d.ts +29 -0
  18. package/sdk/application/Finance/FinanceApplicationClient.js +126 -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 +118 -8
  23. package/sdk/application/Order/OrderApplicationClient.d.ts +22 -12
  24. package/sdk/application/Order/OrderApplicationClient.js +62 -8
  25. package/sdk/application/Payment/PaymentApplicationClient.d.ts +87 -87
  26. package/sdk/application/Payment/PaymentApplicationClient.js +65 -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 -19
  38. package/sdk/partner/FileStorage/FileStoragePartnerModel.js +121 -14
  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 +5039 -1300
  83. package/sdk/platform/Cart/CartPlatformModel.js +1976 -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 +6941 -2203
  91. package/sdk/platform/Catalog/CatalogPlatformModel.js +3224 -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 +124 -141
  121. package/sdk/platform/Content/ContentPlatformApplicationClient.js +449 -422
  122. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +179 -141
  123. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +168 -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 +1241 -395
  127. package/sdk/platform/Content/ContentPlatformModel.js +521 -390
  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 +94 -36
  137. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +462 -60
  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 +19 -19
  141. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +21 -21
  142. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +370 -101
  143. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +313 -84
  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 +7602 -1269
  157. package/sdk/platform/Order/OrderPlatformModel.js +3926 -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 +48 -38
  183. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +134 -43
  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 +38 -44
  187. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +56 -62
  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 +2 -2
  193. package/sdk/platform/Share/SharePlatformApplicationClient.js +2 -2
  194. package/sdk/platform/Share/SharePlatformModel.d.ts +36 -5
  195. package/sdk/platform/Share/SharePlatformModel.js +27 -4
  196. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +3 -3
  197. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +8 -4
  198. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +5 -0
  199. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +2 -0
  200. package/sdk/platform/Theme/ThemePlatformModel.d.ts +37 -11
  201. package/sdk/platform/Theme/ThemePlatformModel.js +33 -15
  202. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +12 -12
  203. package/sdk/platform/User/UserPlatformApplicationClient.js +12 -12
  204. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +2 -2
  205. package/sdk/platform/User/UserPlatformApplicationValidator.js +2 -2
  206. package/sdk/platform/User/UserPlatformModel.d.ts +21 -21
  207. package/sdk/platform/User/UserPlatformModel.js +23 -23
  208. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +25 -78
  209. package/sdk/platform/Webhook/WebhookPlatformClient.js +75 -470
  210. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +720 -427
  211. package/sdk/platform/Webhook/WebhookPlatformModel.js +410 -386
  212. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +10 -55
  213. package/sdk/platform/Webhook/WebhookPlatformValidator.js +12 -72
  214. package/sdk/platform/index.d.ts +0 -1
  215. package/sdk/platform/index.js +0 -2
  216. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +3 -2
  217. package/sdk/public/Configuration/ConfigurationPublicClient.js +6 -5
  218. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +9 -9
  219. package/sdk/public/Configuration/ConfigurationPublicModel.js +6 -6
  220. package/sdk/public/Content/ContentPublicClient.d.ts +112 -2
  221. package/sdk/public/Content/ContentPublicClient.js +895 -8
  222. package/sdk/public/Content/ContentPublicModel.d.ts +549 -3
  223. package/sdk/public/Content/ContentPublicModel.js +649 -3
  224. package/sdk/public/Content/ContentPublicValidator.d.ts +69 -3
  225. package/sdk/public/Content/ContentPublicValidator.js +88 -2
  226. package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
  227. package/sdk/public/Webhook/WebhookPublicClient.js +8 -8
  228. package/sdk/public/Webhook/WebhookPublicModel.d.ts +21 -21
  229. package/sdk/public/Webhook/WebhookPublicModel.js +15 -15
  230. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
  231. package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
  232. package/sdk/platform/Finance/FinancePlatformClient.d.ts +0 -320
  233. package/sdk/platform/Finance/FinancePlatformClient.js +0 -2333
  234. package/sdk/platform/Finance/FinancePlatformModel.d.ts +0 -2890
  235. package/sdk/platform/Finance/FinancePlatformModel.js +0 -2148
  236. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +0 -284
  237. package/sdk/platform/Finance/FinancePlatformValidator.js +0 -354
@@ -59,20 +59,6 @@ declare class Content {
59
59
  * @description: Generate and add a new announcement. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createAnnouncement/).
60
60
  */
61
61
  createAnnouncement({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAnnouncementParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateAnnouncementSchema>;
62
- /**
63
- * @param {ContentPlatformApplicationValidator.CreateAppCustomFieldByResourceIdParam} arg
64
- * - Arg object
65
- *
66
- * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
67
- * @param {import("../PlatformAPIClient").Options} - Options
68
- * @returns {Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>}
69
- * - Success response
70
- *
71
- * @name createAppCustomFieldByResourceId
72
- * @summary: Create custom field entries for gives resource and resource_id
73
- * @description: You can add a custom field using this endpoint to any resource by providing the resource ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createAppCustomFieldByResourceId/).
74
- */
75
- createAppCustomFieldByResourceId({ resource, resourceId, body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomFieldByResourceIdParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>;
76
62
  /**
77
63
  * @param {ContentPlatformApplicationValidator.CreateAppCustomFieldDefinitionParam} arg
78
64
  * - Arg object
@@ -83,35 +69,36 @@ declare class Content {
83
69
  * - Success response
84
70
  *
85
71
  * @name createAppCustomFieldDefinition
86
- * @summary: Create custom field definition
72
+ * @summary: Create custom field definition for a given resource type
87
73
  * @description: You can create custom fields definition to any resource so you can extend property of resource. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createAppCustomFieldDefinition/).
88
74
  */
89
- createAppCustomFieldDefinition({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomFieldDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>;
75
+ createAppCustomFieldDefinition({ resource, body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomFieldDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>;
90
76
  /**
91
- * @param {ContentPlatformApplicationValidator.CreateAppCustomObjectParam} arg
77
+ * @param {ContentPlatformApplicationValidator.CreateAppCustomObjectBySlugParam} arg
92
78
  * - Arg object
93
79
  *
94
80
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
95
81
  * @param {import("../PlatformAPIClient").Options} - Options
96
82
  * @returns {Promise<ContentPlatformModel.CustomObjectSchema>} - Success response
97
- * @name createAppCustomObject
83
+ * @name createAppCustomObjectBySlug
98
84
  * @summary: Create custom object entries
99
- * @description: Custom object entries against the custom object definition can be added using this API. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createAppCustomObject/).
85
+ * @description: Custom object entries against the custom object definition can be added using this API. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createAppCustomObjectBySlug/).
100
86
  */
101
- createAppCustomObject({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomObjectParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectSchema>;
87
+ createAppCustomObjectBySlug({ definitionSlug, body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomObjectBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectSchema>;
102
88
  /**
103
89
  * @param {ContentPlatformApplicationValidator.CreateAppCustomObjectDefinitionParam} arg
104
90
  * - Arg object
105
91
  *
106
92
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
107
93
  * @param {import("../PlatformAPIClient").Options} - Options
108
- * @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSchema>} -
109
- * Success response
94
+ * @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>}
95
+ * - Success response
96
+ *
110
97
  * @name createAppCustomObjectDefinition
111
98
  * @summary: Create custom object definition
112
99
  * @description: Create a custom object that will have a collection of custom fields and can be used anywhere in the custom field for any resource. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createAppCustomObjectDefinition/).
113
100
  */
114
- createAppCustomObjectDefinition({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSchema>;
101
+ createAppCustomObjectDefinition({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>;
115
102
  /**
116
103
  * @param {ContentPlatformApplicationValidator.CreateBlogParam} arg - Arg object
117
104
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -214,31 +201,31 @@ declare class Content {
214
201
  */
215
202
  deleteAnnouncement({ announcementId, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAnnouncementParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateAnnouncementSchema>;
216
203
  /**
217
- * @param {ContentPlatformApplicationValidator.DeleteAppCustomFieldDefinitionParam} arg
204
+ * @param {ContentPlatformApplicationValidator.DeleteAppCustomFieldDefinitionBySlugParam} arg
218
205
  * - Arg object
219
206
  *
220
207
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
221
208
  * @param {import("../PlatformAPIClient").Options} - Options
222
209
  * @returns {Promise<ContentPlatformModel.CustomDataDeleteSchema>} - Success response
223
- * @name deleteAppCustomFieldDefinition
210
+ * @name deleteAppCustomFieldDefinitionBySlug
224
211
  * @summary: Delete custom fields definition
225
- * @description: Custom field definition and its assosiated custom fields value can be deleted using this api on the basis of definition id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteAppCustomFieldDefinition/).
212
+ * @description: Custom field definition and its assosiated custom fields value can be deleted using this api on the basis of definition id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteAppCustomFieldDefinitionBySlug/).
226
213
  */
227
- deleteAppCustomFieldDefinition({ definitionId, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomFieldDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomDataDeleteSchema>;
214
+ deleteAppCustomFieldDefinitionBySlug({ slug, resource, namespace, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomFieldDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomDataDeleteSchema>;
228
215
  /**
229
- * @param {ContentPlatformApplicationValidator.DeleteAppCustomObjectParam} arg
216
+ * @param {ContentPlatformApplicationValidator.DeleteAppCustomObjectBySlugParam} arg
230
217
  * - Arg object
231
218
  *
232
219
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
233
220
  * @param {import("../PlatformAPIClient").Options} - Options
234
221
  * @returns {Promise<ContentPlatformModel.CustomDataDeleteSchema>} - Success response
235
- * @name deleteAppCustomObject
222
+ * @name deleteAppCustomObjectBySlug
236
223
  * @summary: Delete custom object
237
- * @description: Custom object entries can be deleted by providing the delete ID using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteAppCustomObject/).
224
+ * @description: A Custom object entry can be deleted by providing the custom object definition slug and custom object entry slug using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteAppCustomObjectBySlug/).
238
225
  */
239
- deleteAppCustomObject({ metaobjectId, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomObjectParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomDataDeleteSchema>;
226
+ deleteAppCustomObjectBySlug({ definitionSlug, slug, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomObjectBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomDataDeleteSchema>;
240
227
  /**
241
- * @param {ContentPlatformApplicationValidator.DeleteAppCustomObjectDefinitionParam} arg
228
+ * @param {ContentPlatformApplicationValidator.DeleteAppCustomObjectDefinitionBySlugParam} arg
242
229
  * - Arg object
243
230
  *
244
231
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -246,11 +233,11 @@ declare class Content {
246
233
  * @returns {Promise<ContentPlatformModel.CustomObjectDefinitionDeleteResponseSchema>}
247
234
  * - Success response
248
235
  *
249
- * @name deleteAppCustomObjectDefinition
236
+ * @name deleteAppCustomObjectDefinitionBySlug
250
237
  * @summary: Delete custom object definition
251
- * @description: Custom object definitions can be deleted using this endpoint by providing the definition ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteAppCustomObjectDefinition/).
238
+ * @description: Custom object definitions can be deleted using this endpoint by providing the definition ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteAppCustomObjectDefinitionBySlug/).
252
239
  */
253
- deleteAppCustomObjectDefinition({ definitionId, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionDeleteResponseSchema>;
240
+ deleteAppCustomObjectDefinitionBySlug({ slug, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomObjectDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionDeleteResponseSchema>;
254
241
  /**
255
242
  * @param {ContentPlatformApplicationValidator.DeleteBlogParam} arg - Arg object
256
243
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -396,7 +383,7 @@ declare class Content {
396
383
  */
397
384
  editSEOMarkupSchema({ id, body, requestHeaders }?: ContentPlatformApplicationValidator.EditSEOMarkupSchemaParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>;
398
385
  /**
399
- * @param {ContentPlatformApplicationValidator.ExportAppCustomObjectEntriesParam} arg
386
+ * @param {ContentPlatformApplicationValidator.ExportAppCustomObjectEntriesBySlugParam} arg
400
387
  * - Arg object
401
388
  *
402
389
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -404,11 +391,11 @@ declare class Content {
404
391
  * @returns {Promise<ContentPlatformModel.CustomObjectBulkEntryInitiateDownload>}
405
392
  * - Success response
406
393
  *
407
- * @name exportAppCustomObjectEntries
394
+ * @name exportAppCustomObjectEntriesBySlug
408
395
  * @summary: Initiate download for bulk custom object entries
409
- * @description: Custom object bulk export of bulk entries can be perform using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/exportAppCustomObjectEntries/).
396
+ * @description: Custom object bulk export of bulk entries can be perform using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/exportAppCustomObjectEntriesBySlug/).
410
397
  */
411
- exportAppCustomObjectEntries({ definitionId, requestHeaders }?: ContentPlatformApplicationValidator.ExportAppCustomObjectEntriesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectBulkEntryInitiateDownload>;
398
+ exportAppCustomObjectEntriesBySlug({ slug, requestHeaders }?: ContentPlatformApplicationValidator.ExportAppCustomObjectEntriesBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectBulkEntryInitiateDownload>;
412
399
  /**
413
400
  * @param {ContentPlatformApplicationValidator.GenerateSEOTitleParam} arg - Arg object
414
401
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -445,19 +432,32 @@ declare class Content {
445
432
  */
446
433
  getAnnouncementsList({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetAnnouncementsListParam, { responseHeaders }?: object): Promise<ContentPlatformModel.GetAnnouncementListSchema>;
447
434
  /**
448
- * @param {ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionParam} arg
435
+ * @param {ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionByResourceParam} arg
449
436
  * - Arg object
450
437
  *
451
438
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
452
439
  * @param {import("../PlatformAPIClient").Options} - Options
453
- * @returns {Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>}
440
+ * @returns {Promise<ContentPlatformModel.CustomFieldDefinitionsSchema>} -
441
+ * Success response
442
+ * @name getAppCustomFieldDefinitionByResource
443
+ * @summary: Get custom fields definitions for a given resource type
444
+ * @description: Custom field definitions enable you to include data validation for custom fields, and enable sellers to add custom fields values for resources. With the help of this seller can retrive list of custom field definitions list. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldDefinitionByResource/).
445
+ */
446
+ getAppCustomFieldDefinitionByResource({ pageNo, pageSize, resource, types, search, slugs, namespaces, requestHeaders, }?: ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionByResourceParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionsSchema>;
447
+ /**
448
+ * @param {ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionBySlugParam} arg
449
+ * - Arg object
450
+ *
451
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
452
+ * @param {import("../PlatformAPIClient").Options} - Options
453
+ * @returns {Promise<ContentPlatformModel.MetaFieldDefinitionDetailResSchema>}
454
454
  * - Success response
455
455
  *
456
- * @name getAppCustomFieldDefinition
457
- * @summary: Get custom fields definition
458
- * @description: Custom field definitions can be fetch using definition id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldDefinition/).
456
+ * @name getAppCustomFieldDefinitionBySlug
457
+ * @summary: Get custom fields definition by resource, slug and namespace
458
+ * @description: Custom field definitions can be retrived from this using its slug, namespace and resource - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldDefinitionBySlug/).
459
459
  */
460
- getAppCustomFieldDefinition({ definitionId, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>;
460
+ getAppCustomFieldDefinitionBySlug({ slug, resource, namespace, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.MetaFieldDefinitionDetailResSchema>;
461
461
  /**
462
462
  * @param {ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionsParam} arg
463
463
  * - Arg object
@@ -470,34 +470,21 @@ declare class Content {
470
470
  * @summary: Get custom fields definitions
471
471
  * @description: Custom field definitions enable you to include data validation for custom fields, and enable sellers to add custom fields values for resources. With the help of this seller can retrive list of custom field definitions list. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldDefinitions/).
472
472
  */
473
- getAppCustomFieldDefinitions({ pageNo, pageSize, resource, type, search, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionsSchema>;
473
+ getAppCustomFieldDefinitions({ pageNo, pageSize, resources, types, search, slugs, namespaces, requestHeaders, }?: ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionsSchema>;
474
474
  /**
475
475
  * @param {ContentPlatformApplicationValidator.GetAppCustomFieldTypesParam} arg
476
476
  * - Arg object
477
477
  *
478
478
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
479
479
  * @param {import("../PlatformAPIClient").Options} - Options
480
- * @returns {Promise<ContentPlatformModel.CustomObjectByIdSchema>} - Success response
480
+ * @returns {Promise<ContentPlatformModel.MetafieldTypesSchema>} - Success response
481
481
  * @name getAppCustomFieldTypes
482
482
  * @summary: Get custom field types
483
483
  * @description: Each custom field and custom field definition has a type, which defines the type of information that it can store. The custom field types have built-in validation. This api will give list of supported custom fields types - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldTypes/).
484
484
  */
485
- getAppCustomFieldTypes({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectByIdSchema>;
486
- /**
487
- * @param {ContentPlatformApplicationValidator.GetAppCustomFieldsParam} arg
488
- * - Arg object
489
- *
490
- * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
491
- * @param {import("../PlatformAPIClient").Options} - Options
492
- * @returns {Promise<ContentPlatformModel.CustomFieldsResponseSchema>} -
493
- * Success response
494
- * @name getAppCustomFields
495
- * @summary: Get list of custom fields of gives resource
496
- * @description: Retrieves a list of custom fields attached to a particular resource by using the resource. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFields/).
497
- */
498
- getAppCustomFields({ resource, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsResponseSchema>;
485
+ getAppCustomFieldTypes({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.MetafieldTypesSchema>;
499
486
  /**
500
- * @param {ContentPlatformApplicationValidator.GetAppCustomFieldsByResourceIdParam} arg
487
+ * @param {ContentPlatformApplicationValidator.GetAppCustomFieldsByResourceSlugParam} arg
501
488
  * - Arg object
502
489
  *
503
490
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -505,36 +492,38 @@ declare class Content {
505
492
  * @returns {Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>}
506
493
  * - Success response
507
494
  *
508
- * @name getAppCustomFieldsByResourceId
509
- * @summary: Get list of custom fields of given resource and resource id
510
- * @description: Retrieves a list of custom fields attached to a particular resource by using the resource and resource id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldsByResourceId/).
495
+ * @name getAppCustomFieldsByResourceSlug
496
+ * @summary: Get list of custom fields of given resource and resource slug
497
+ * @description: Retrieves a list of custom fields attached to a particular resource by using the resource and resource slug. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldsByResourceSlug/).
511
498
  */
512
- getAppCustomFieldsByResourceId({ resource, resourceId, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldsByResourceIdParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>;
499
+ getAppCustomFieldsByResourceSlug({ resource, resourceSlug, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldsByResourceSlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>;
513
500
  /**
514
- * @param {ContentPlatformApplicationValidator.GetAppCustomObjectParam} arg
501
+ * @param {ContentPlatformApplicationValidator.GetAppCustomObjectBySlugParam} arg
515
502
  * - Arg object
516
503
  *
517
504
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
518
505
  * @param {import("../PlatformAPIClient").Options} - Options
519
- * @returns {Promise<ContentPlatformModel.CustomObjectByIdSchema>} - Success response
520
- * @name getAppCustomObject
506
+ * @returns {Promise<ContentPlatformModel.CustomObjectBySlugSchema>} -
507
+ * Success response
508
+ * @name getAppCustomObjectBySlug
521
509
  * @summary: Get custom object details
522
- * @description: Details of custom objects, their field details, definitions, and references can be obtained using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomObject/).
510
+ * @description: Details of a custom object entry can be obtained using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomObjectBySlug/).
523
511
  */
524
- getAppCustomObject({ metaobjectId, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectByIdSchema>;
512
+ getAppCustomObjectBySlug({ definitionSlug, slug, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectBySlugSchema>;
525
513
  /**
526
- * @param {ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionParam} arg
514
+ * @param {ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionBySlugParam} arg
527
515
  * - Arg object
528
516
  *
529
517
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
530
518
  * @param {import("../PlatformAPIClient").Options} - Options
531
- * @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSchema>} -
532
- * Success response
533
- * @name getAppCustomObjectDefinition
519
+ * @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>}
520
+ * - Success response
521
+ *
522
+ * @name getAppCustomObjectDefinitionBySlug
534
523
  * @summary: Get custom object definition
535
- * @description: Custom object definitions can be fetched using their definition ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomObjectDefinition/).
524
+ * @description: Custom object definitions can be fetched using their custom object definition slug. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomObjectDefinitionBySlug/).
536
525
  */
537
- getAppCustomObjectDefinition({ definitionId, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSchema>;
526
+ getAppCustomObjectDefinitionBySlug({ slug, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>;
538
527
  /**
539
528
  * @param {ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionsParam} arg
540
529
  * - Arg object
@@ -549,17 +538,17 @@ declare class Content {
549
538
  */
550
539
  getAppCustomObjectDefinitions({ pageNo, pageSize, search, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionsSchema>;
551
540
  /**
552
- * @param {ContentPlatformApplicationValidator.GetAppCustomObjectsParam} arg
541
+ * @param {ContentPlatformApplicationValidator.GetAppCustomObjectsBySlugParam} arg
553
542
  * - Arg object
554
543
  *
555
544
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
556
545
  * @param {import("../PlatformAPIClient").Options} - Options
557
546
  * @returns {Promise<ContentPlatformModel.CustomObjectsSchema>} - Success response
558
- * @name getAppCustomObjects
547
+ * @name getAppCustomObjectsBySlug
559
548
  * @summary: Get list of custom objects
560
- * @description: Custom object entries can fetch using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomObjects/).
549
+ * @description: Custom object entries can fetch using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomObjectsBySlug/).
561
550
  */
562
- getAppCustomObjects({ pageNo, pageSize, definitionId, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectsSchema>;
551
+ getAppCustomObjectsBySlug({ pageNo, pageSize, definitionSlug, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectsBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectsSchema>;
563
552
  /**
564
553
  * @param {ContentPlatformApplicationValidator.GetAppJobsParam} arg - Arg object
565
554
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -594,12 +583,12 @@ declare class Content {
594
583
  * @param {ContentPlatformApplicationValidator.GetBlogsParam} arg - Arg object
595
584
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
596
585
  * @param {import("../PlatformAPIClient").Options} - Options
597
- * @returns {Promise<ContentPlatformModel.BlogGetResponse>} - Success response
586
+ * @returns {Promise<ContentPlatformModel.BlogGetDetails>} - Success response
598
587
  * @name getBlogs
599
588
  * @summary: List blogs
600
589
  * @description: List all blogs - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getBlogs/).
601
590
  */
602
- getBlogs({ pageNo, pageSize, tags, q, slug, title, status, requestHeaders }?: ContentPlatformApplicationValidator.GetBlogsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.BlogGetResponse>;
591
+ getBlogs({ pageNo, pageSize, tags, q, slug, title, status, requestHeaders }?: ContentPlatformApplicationValidator.GetBlogsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.BlogGetDetails>;
603
592
  /**
604
593
  * @param {ContentPlatformApplicationValidator.GetDataLoadersParam} arg - Arg object
605
594
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -629,13 +618,13 @@ declare class Content {
629
618
  *
630
619
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
631
620
  * @param {import("../PlatformAPIClient").Options} - Options
632
- * @returns {Promise<ContentPlatformModel.DefaultNavigationResponse>} -
621
+ * @returns {Promise<ContentPlatformModel.DefaultNavigationDetails>} -
633
622
  * Success response
634
623
  * @name getDefaultNavigations
635
624
  * @summary: Get default navigations
636
625
  * @description: Retrieve default navigation elements. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getDefaultNavigations/).
637
626
  */
638
- getDefaultNavigations({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.DefaultNavigationResponse>;
627
+ getDefaultNavigations({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.DefaultNavigationDetails>;
639
628
  /**
640
629
  * @param {ContentPlatformApplicationValidator.GetDefaultSEOMarkupSchemaParam} arg
641
630
  * - Arg object
@@ -709,12 +698,12 @@ declare class Content {
709
698
  * @param {ContentPlatformApplicationValidator.GetLandingPagesParam} arg - Arg object
710
699
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
711
700
  * @param {import("../PlatformAPIClient").Options} - Options
712
- * @returns {Promise<ContentPlatformModel.LandingPageGetResponse>} - Success response
701
+ * @returns {Promise<ContentPlatformModel.LandingPageGetDetails>} - Success response
713
702
  * @name getLandingPages
714
703
  * @summary: Get landing pages
715
704
  * @description: Lists a list landing pages as per device types - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getLandingPages/).
716
705
  */
717
- getLandingPages({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetLandingPagesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.LandingPageGetResponse>;
706
+ getLandingPages({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetLandingPagesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.LandingPageGetDetails>;
718
707
  /**
719
708
  * @param {ContentPlatformApplicationValidator.GetLegalInformationParam} arg
720
709
  * - Arg object
@@ -743,12 +732,12 @@ declare class Content {
743
732
  * @param {ContentPlatformApplicationValidator.GetNavigationsParam} arg - Arg object
744
733
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
745
734
  * @param {import("../PlatformAPIClient").Options} - Options
746
- * @returns {Promise<ContentPlatformModel.NavigationGetResponse>} - Success response
735
+ * @returns {Promise<ContentPlatformModel.NavigationGetDetails>} - Success response
747
736
  * @name getNavigations
748
737
  * @summary: Get navigation items
749
738
  * @description: Retrieve a list of navigational elements. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getNavigations/).
750
739
  */
751
- getNavigations({ devicePlatform, pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetNavigationsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.NavigationGetResponse>;
740
+ getNavigations({ devicePlatform, pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetNavigationsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.NavigationGetDetails>;
752
741
  /**
753
742
  * @param {ContentPlatformApplicationValidator.GetPageBySlugParam} arg - Arg object
754
743
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -783,12 +772,12 @@ declare class Content {
783
772
  * @param {ContentPlatformApplicationValidator.GetPagesParam} arg - Arg object
784
773
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
785
774
  * @param {import("../PlatformAPIClient").Options} - Options
786
- * @returns {Promise<ContentPlatformModel.PageGetResponse>} - Success response
775
+ * @returns {Promise<ContentPlatformModel.PageGetDetails>} - Success response
787
776
  * @name getPages
788
777
  * @summary: Get pages
789
778
  * @description: Retrieve a list of available pages. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getPages/).
790
779
  */
791
- getPages({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetPagesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PageGetResponse>;
780
+ getPages({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetPagesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PageGetDetails>;
792
781
  /**
793
782
  * @param {ContentPlatformApplicationValidator.GetPathRedirectionRuleParam} arg
794
783
  * - Arg object
@@ -865,32 +854,12 @@ declare class Content {
865
854
  * @param {ContentPlatformApplicationValidator.GetSlideshowsParam} arg - Arg object
866
855
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
867
856
  * @param {import("../PlatformAPIClient").Options} - Options
868
- * @returns {Promise<ContentPlatformModel.SlideshowGetResponse>} - Success response
857
+ * @returns {Promise<ContentPlatformModel.SlideshowGetDetails>} - Success response
869
858
  * @name getSlideshows
870
859
  * @summary: List Slideshows
871
860
  * @description: Use this API to list all Slideshows - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getSlideshows/).
872
861
  */
873
- getSlideshows({ devicePlatform, pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetSlideshowsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SlideshowGetResponse>;
874
- /**
875
- * @param {Object} arg - Arg object.
876
- * @param {string} arg.companyId - Numeric ID allotted to a business account
877
- * on Fynd Platform
878
- * @param {string} arg.applicationId - Numeric ID allotted to an application
879
- * created within a business account.
880
- * @param {string} arg.devicePlatform - Filter slideshows by platform.
881
- * Acceptable values are: web, android, ios and all
882
- * @param {number} [arg.pageSize] - The number of items to retrieve in each
883
- * page. Default value is 10.
884
- * @returns {Paginator<ContentPlatformModel.SlideshowGetResponse>}
885
- * @summary: List Slideshows
886
- * @description: Use this API to list all Slideshows
887
- */
888
- getSlideshowsPaginator({ companyId, applicationId, devicePlatform, pageSize, }?: {
889
- companyId: string;
890
- applicationId: string;
891
- devicePlatform: string;
892
- pageSize?: number;
893
- }): Paginator<ContentPlatformModel.SlideshowGetResponse>;
862
+ getSlideshows({ devicePlatform, pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetSlideshowsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SlideshowGetDetails>;
894
863
  /**
895
864
  * @param {ContentPlatformApplicationValidator.GetSupportInformationParam} arg
896
865
  * - Arg object
@@ -904,32 +873,31 @@ declare class Content {
904
873
  */
905
874
  getSupportInformation({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.Support>;
906
875
  /**
907
- * @param {ContentPlatformApplicationValidator.ImportAppCustomObjectEntriesParam} arg
876
+ * @param {ContentPlatformApplicationValidator.ImportAppCustomObjectEntriesBySlugParam} arg
908
877
  * - Arg object
909
878
  *
910
879
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
911
880
  * @param {import("../PlatformAPIClient").Options} - Options
912
- * @returns {Promise<ContentPlatformModel.CustomObjectEntryBulkUploadResponse>}
881
+ * @returns {Promise<ContentPlatformModel.CustomObjectEntryBulkUploadDetails>}
913
882
  * - Success response
914
883
  *
915
- * @name importAppCustomObjectEntries
884
+ * @name importAppCustomObjectEntriesBySlug
916
885
  * @summary: Bulk custom object entries upload
917
- * @description: Custom object bulk import of bulk entries can be performed using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/importAppCustomObjectEntries/).
886
+ * @description: Custom object bulk import of bulk entries can be performed using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/importAppCustomObjectEntriesBySlug/).
918
887
  */
919
- importAppCustomObjectEntries({ definitionId, body, requestHeaders }?: ContentPlatformApplicationValidator.ImportAppCustomObjectEntriesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectEntryBulkUploadResponse>;
888
+ importAppCustomObjectEntriesBySlug({ slug, body, requestHeaders }?: ContentPlatformApplicationValidator.ImportAppCustomObjectEntriesBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectEntryBulkUploadDetails>;
920
889
  /**
921
890
  * @param {ContentPlatformApplicationValidator.RemoveInjectableTagParam} arg
922
891
  * - Arg object
923
892
  *
924
893
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
925
894
  * @param {import("../PlatformAPIClient").Options} - Options
926
- * @returns {Promise<ContentPlatformModel.TagDeleteSuccessResponse>} -
927
- * Success response
895
+ * @returns {Promise<ContentPlatformModel.TagDeleteSuccessDetails>} - Success response
928
896
  * @name removeInjectableTag
929
897
  * @summary: Remove HTML tag
930
898
  * @description: Delete a specific injectable tag. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/removeInjectableTag/).
931
899
  */
932
- removeInjectableTag({ body, requestHeaders }?: ContentPlatformApplicationValidator.RemoveInjectableTagParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TagDeleteSuccessResponse>;
900
+ removeInjectableTag({ body, requestHeaders }?: ContentPlatformApplicationValidator.RemoveInjectableTagParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TagDeleteSuccessDetails>;
933
901
  /**
934
902
  * @param {ContentPlatformApplicationValidator.ResetDataLoaderParam} arg - Arg object
935
903
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -942,17 +910,17 @@ declare class Content {
942
910
  */
943
911
  resetDataLoader({ service, operationId, requestHeaders }?: ContentPlatformApplicationValidator.ResetDataLoaderParam, { responseHeaders }?: object): Promise<ContentPlatformModel.DataLoaderResetResponseSchema>;
944
912
  /**
945
- * @param {ContentPlatformApplicationValidator.SampleAppCustomObjectBulkEntryParam} arg
913
+ * @param {ContentPlatformApplicationValidator.SampleAppCustomObjectBulkEntryBySlugParam} arg
946
914
  * - Arg object
947
915
  *
948
916
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
949
917
  * @param {import("../PlatformAPIClient").Options} - Options
950
918
  * @returns {Promise<string>} - Success response
951
- * @name sampleAppCustomObjectBulkEntry
919
+ * @name sampleAppCustomObjectBulkEntryBySlug
952
920
  * @summary: Download sample for custom object bulk entry
953
- * @description: Sample files for custom object bulk import can be obtained from this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/sampleAppCustomObjectBulkEntry/).
921
+ * @description: Sample files for custom object bulk import can be obtained from this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/sampleAppCustomObjectBulkEntryBySlug/).
954
922
  */
955
- sampleAppCustomObjectBulkEntry({ definitionId, requestHeaders }?: ContentPlatformApplicationValidator.SampleAppCustomObjectBulkEntryParam, { responseHeaders }?: object): Promise<string>;
923
+ sampleAppCustomObjectBulkEntryBySlug({ slug, requestHeaders }?: ContentPlatformApplicationValidator.SampleAppCustomObjectBulkEntryBySlugParam, { responseHeaders }?: object): Promise<string>;
956
924
  /**
957
925
  * @param {ContentPlatformApplicationValidator.SelectDataLoaderParam} arg - Arg object
958
926
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -991,7 +959,21 @@ declare class Content {
991
959
  */
992
960
  updateAnnouncementSchedule({ announcementId, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAnnouncementScheduleParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateAnnouncementSchema>;
993
961
  /**
994
- * @param {ContentPlatformApplicationValidator.UpdateAppCustomFieldDefinitionParam} arg
962
+ * @param {ContentPlatformApplicationValidator.UpdateAppCustomFieldByResourceSlugParam} arg
963
+ * - Arg object
964
+ *
965
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
966
+ * @param {import("../PlatformAPIClient").Options} - Options
967
+ * @returns {Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>}
968
+ * - Success response
969
+ *
970
+ * @name updateAppCustomFieldByResourceSlug
971
+ * @summary: Create custom field entries for gives resource and resource slug
972
+ * @description: You can add a custom field using this endpoint to any resource by providing the resource slug. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomFieldByResourceSlug/).
973
+ */
974
+ updateAppCustomFieldByResourceSlug({ resource, resourceSlug, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomFieldByResourceSlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>;
975
+ /**
976
+ * @param {ContentPlatformApplicationValidator.UpdateAppCustomFieldDefinitionBySlugParam} arg
995
977
  * - Arg object
996
978
  *
997
979
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -999,36 +981,38 @@ declare class Content {
999
981
  * @returns {Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>}
1000
982
  * - Success response
1001
983
  *
1002
- * @name updateAppCustomFieldDefinition
984
+ * @name updateAppCustomFieldDefinitionBySlug
1003
985
  * @summary: Update custom field definition
1004
- * @description: Custom fields definition can be update using this api, You can update custom field definition name and description. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomFieldDefinition/).
986
+ * @description: Custom fields definition can be update using this api, You can update custom field definition name and description. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomFieldDefinitionBySlug/).
1005
987
  */
1006
- updateAppCustomFieldDefinition({ definitionId, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomFieldDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>;
988
+ updateAppCustomFieldDefinitionBySlug({ slug, resource, namespace, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomFieldDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>;
1007
989
  /**
1008
- * @param {ContentPlatformApplicationValidator.UpdateAppCustomObjectParam} arg
990
+ * @param {ContentPlatformApplicationValidator.UpdateAppCustomObjectBySlugParam} arg
1009
991
  * - Arg object
1010
992
  *
1011
993
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
1012
994
  * @param {import("../PlatformAPIClient").Options} - Options
1013
- * @returns {Promise<ContentPlatformModel.CustomObjectByIdSchema>} - Success response
1014
- * @name updateAppCustomObject
995
+ * @returns {Promise<ContentPlatformModel.CustomObjectBySlugSchema>} -
996
+ * Success response
997
+ * @name updateAppCustomObjectBySlug
1015
998
  * @summary: Update custom object details
1016
- * @description: Custom object entries can be updated using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomObject/).
999
+ * @description: Custom object entries can be updated using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomObjectBySlug/).
1017
1000
  */
1018
- updateAppCustomObject({ metaobjectId, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomObjectParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectByIdSchema>;
1001
+ updateAppCustomObjectBySlug({ definitionSlug, slug, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomObjectBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectBySlugSchema>;
1019
1002
  /**
1020
- * @param {ContentPlatformApplicationValidator.UpdateAppCustomObjectDefinitionParam} arg
1003
+ * @param {ContentPlatformApplicationValidator.UpdateAppCustomObjectDefinitionBySlugParam} arg
1021
1004
  * - Arg object
1022
1005
  *
1023
1006
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
1024
1007
  * @param {import("../PlatformAPIClient").Options} - Options
1025
- * @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSchema>} -
1026
- * Success response
1027
- * @name updateAppCustomObjectDefinition
1008
+ * @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>}
1009
+ * - Success response
1010
+ *
1011
+ * @name updateAppCustomObjectDefinitionBySlug
1028
1012
  * @summary: Update custom object definition
1029
- * @description: Custom object definitions can be updated using this endpoint. You can update the name and description of the custom object and add more custom field definitions to the existing custom object. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomObjectDefinition/).
1013
+ * @description: Custom object definitions can be updated using this endpoint. You can update the name and description of the custom object and add more custom field definitions to the existing custom object. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomObjectDefinitionBySlug/).
1030
1014
  */
1031
- updateAppCustomObjectDefinition({ definitionId, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSchema>;
1015
+ updateAppCustomObjectDefinitionBySlug({ slug, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomObjectDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>;
1032
1016
  /**
1033
1017
  * @param {ContentPlatformApplicationValidator.UpdateBlogParam} arg - Arg object
1034
1018
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -1178,4 +1162,3 @@ declare class Content {
1178
1162
  }
1179
1163
  import ContentPlatformApplicationValidator = require("./ContentPlatformApplicationValidator");
1180
1164
  import ContentPlatformModel = require("./ContentPlatformModel");
1181
- import Paginator = require("../../common/Paginator");