@gofynd/fdk-client-javascript 1.3.11-beta.6 → 1.3.11-beta.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
- package/sdk/application/Cart/CartApplicationClient.d.ts +1 -1
- package/sdk/application/Cart/CartApplicationClient.js +5 -3
- package/sdk/application/Cart/CartApplicationModel.d.ts +107 -1
- package/sdk/application/Cart/CartApplicationModel.js +74 -0
- package/sdk/application/Cart/CartApplicationValidator.d.ts +4 -0
- package/sdk/application/Cart/CartApplicationValidator.js +4 -0
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +3 -6
- package/sdk/application/Catalog/CatalogApplicationClient.js +7 -20
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +2 -2
- package/sdk/application/Catalog/CatalogApplicationModel.js +2 -2
- package/sdk/application/Catalog/CatalogApplicationValidator.d.ts +0 -14
- package/sdk/application/Catalog/CatalogApplicationValidator.js +0 -6
- package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +183 -49
- package/sdk/application/Configuration/ConfigurationApplicationModel.js +173 -31
- package/sdk/application/Content/ContentApplicationClient.d.ts +36 -0
- package/sdk/application/Content/ContentApplicationClient.js +246 -0
- package/sdk/application/Content/ContentApplicationModel.d.ts +208 -1
- package/sdk/application/Content/ContentApplicationModel.js +252 -0
- package/sdk/application/Content/ContentApplicationValidator.d.ts +40 -1
- package/sdk/application/Content/ContentApplicationValidator.js +41 -0
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +67 -0
- package/sdk/application/Logistic/LogisticApplicationClient.js +547 -0
- package/sdk/application/Logistic/LogisticApplicationModel.d.ts +456 -1
- package/sdk/application/Logistic/LogisticApplicationModel.js +488 -0
- package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +211 -1
- package/sdk/application/Logistic/LogisticApplicationValidator.js +131 -0
- package/sdk/application/Order/OrderApplicationClient.d.ts +3 -3
- package/sdk/application/Order/OrderApplicationClient.js +32 -8
- package/sdk/application/Order/OrderApplicationModel.d.ts +6 -0
- package/sdk/application/Order/OrderApplicationModel.js +6 -0
- package/sdk/application/Order/OrderApplicationValidator.d.ts +20 -0
- package/sdk/application/Order/OrderApplicationValidator.js +8 -0
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +46 -2
- package/sdk/application/Payment/PaymentApplicationClient.js +341 -10
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +493 -186
- package/sdk/application/Payment/PaymentApplicationModel.js +341 -70
- package/sdk/application/Payment/PaymentApplicationValidator.d.ts +59 -14
- package/sdk/application/Payment/PaymentApplicationValidator.js +64 -10
- package/sdk/application/PosCart/PosCartApplicationModel.d.ts +34 -1
- package/sdk/application/PosCart/PosCartApplicationModel.js +24 -0
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +1 -1
- package/sdk/application/Theme/ThemeApplicationClient.js +7 -3
- package/sdk/application/Theme/ThemeApplicationModel.d.ts +222 -36
- package/sdk/application/Theme/ThemeApplicationModel.js +322 -26
- package/sdk/application/Theme/ThemeApplicationValidator.d.ts +10 -0
- package/sdk/application/Theme/ThemeApplicationValidator.js +4 -0
- package/sdk/application/User/UserApplicationClient.d.ts +33 -0
- package/sdk/application/User/UserApplicationClient.js +239 -0
- package/sdk/application/User/UserApplicationModel.d.ts +28 -13
- package/sdk/application/User/UserApplicationModel.js +36 -12
- package/sdk/application/User/UserApplicationValidator.d.ts +34 -1
- package/sdk/application/User/UserApplicationValidator.js +36 -0
- package/sdk/partner/Lead/LeadPartnerClient.d.ts +125 -0
- package/sdk/partner/Lead/LeadPartnerClient.js +785 -0
- package/sdk/partner/Lead/LeadPartnerModel.d.ts +1127 -0
- package/sdk/partner/Lead/LeadPartnerModel.js +896 -0
- package/sdk/partner/Lead/LeadPartnerValidator.d.ts +12 -0
- package/sdk/partner/Lead/LeadPartnerValidator.js +67 -0
- package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +155 -0
- package/sdk/partner/Logistics/LogisticsPartnerClient.js +1195 -0
- package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +372 -0
- package/sdk/partner/Logistics/LogisticsPartnerModel.js +442 -0
- package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +16 -0
- package/sdk/partner/Logistics/LogisticsPartnerValidator.js +123 -0
- package/sdk/partner/PartnerClient.d.ts +6 -0
- package/sdk/partner/PartnerClient.js +9 -0
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +10 -0
- package/sdk/partner/Theme/ThemePartnerClient.js +80 -0
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +100 -43
- package/sdk/partner/Theme/ThemePartnerModel.js +74 -30
- package/sdk/partner/Theme/ThemePartnerValidator.d.ts +1 -0
- package/sdk/partner/Theme/ThemePartnerValidator.js +9 -0
- package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +99 -0
- package/sdk/partner/Webhook/WebhookPartnerClient.js +753 -0
- package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +566 -0
- package/sdk/partner/Webhook/WebhookPartnerModel.js +583 -0
- package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +12 -0
- package/sdk/partner/Webhook/WebhookPartnerValidator.js +74 -0
- package/sdk/partner/index.d.ts +3 -0
- package/sdk/partner/index.js +6 -0
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +2 -2
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +11 -1
- package/sdk/platform/Billing/BillingPlatformClient.js +110 -3
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +67 -1
- package/sdk/platform/Billing/BillingPlatformModel.js +78 -0
- package/sdk/platform/Billing/BillingPlatformValidator.d.ts +43 -4
- package/sdk/platform/Billing/BillingPlatformValidator.js +29 -2
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +1 -1
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +7 -1
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +4 -0
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +4 -0
- package/sdk/platform/Cart/CartPlatformModel.d.ts +100 -5
- package/sdk/platform/Cart/CartPlatformModel.js +71 -4
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +15 -11
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +52 -21
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +27 -0
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +11 -0
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +26 -4
- package/sdk/platform/Catalog/CatalogPlatformClient.js +173 -7
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +304 -1
- package/sdk/platform/Catalog/CatalogPlatformModel.js +335 -0
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +31 -3
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +27 -2
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +138 -36
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +739 -57
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +128 -3
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +111 -1
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +150 -1
- package/sdk/platform/Communication/CommunicationPlatformModel.js +172 -0
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +8 -2
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +32 -4
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +38 -9
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +42 -8
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +14 -0
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +6 -0
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +8 -8
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +4 -4
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +371 -132
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +288 -77
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +2 -2
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +2 -2
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +391 -0
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +3630 -1059
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +342 -1
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +401 -0
- package/sdk/platform/Content/ContentPlatformClient.d.ts +277 -0
- package/sdk/platform/Content/ContentPlatformClient.js +2000 -0
- package/sdk/platform/Content/ContentPlatformModel.d.ts +1094 -1
- package/sdk/platform/Content/ContentPlatformModel.js +1356 -46
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +238 -0
- package/sdk/platform/Content/ContentPlatformValidator.js +310 -0
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +2 -2
- package/sdk/platform/Discount/DiscountPlatformClient.js +2 -2
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +96 -13
- package/sdk/platform/Discount/DiscountPlatformModel.js +104 -12
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +16 -6
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +117 -8
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +55 -4
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +39 -2
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +16 -5
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +18 -4
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +33 -0
- package/sdk/platform/Finance/FinancePlatformClient.js +240 -0
- package/sdk/platform/Finance/FinancePlatformModel.d.ts +151 -5
- package/sdk/platform/Finance/FinancePlatformModel.js +190 -4
- package/sdk/platform/Finance/FinancePlatformValidator.d.ts +38 -1
- package/sdk/platform/Finance/FinancePlatformValidator.js +38 -0
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +38 -28
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +137 -56
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +41 -29
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +33 -21
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +12 -3
- package/sdk/platform/Lead/LeadPlatformModel.js +16 -2
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +23 -1
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +178 -1
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +39 -1
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +32 -0
- package/sdk/platform/Order/OrderPlatformClient.d.ts +202 -31
- package/sdk/platform/Order/OrderPlatformClient.js +2010 -586
- package/sdk/platform/Order/OrderPlatformModel.d.ts +1030 -468
- package/sdk/platform/Order/OrderPlatformModel.js +1176 -523
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +318 -35
- package/sdk/platform/Order/OrderPlatformValidator.js +292 -29
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +119 -13
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +749 -39
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +143 -7
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +133 -6
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +1 -1
- package/sdk/platform/Payment/PaymentPlatformClient.js +1 -1
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +996 -134
- package/sdk/platform/Payment/PaymentPlatformModel.js +721 -58
- package/sdk/platform/PlatformApplicationClient.d.ts +2 -2
- package/sdk/platform/PlatformApplicationClient.js +4 -4
- package/sdk/platform/PlatformClient.d.ts +4 -2
- package/sdk/platform/PlatformClient.js +8 -4
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +142 -66
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +645 -147
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +131 -63
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +126 -47
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +217 -105
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +1136 -347
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +912 -313
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +1071 -355
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +382 -133
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +266 -102
- package/sdk/platform/Theme/ThemePlatformClient.d.ts +11 -1
- package/sdk/platform/Theme/ThemePlatformClient.js +87 -3
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +333 -47
- package/sdk/platform/Theme/ThemePlatformModel.js +395 -35
- package/sdk/platform/Theme/ThemePlatformValidator.d.ts +28 -4
- package/sdk/platform/Theme/ThemePlatformValidator.js +21 -2
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +116 -1
- package/sdk/platform/User/UserPlatformApplicationClient.js +931 -85
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +224 -7
- package/sdk/platform/User/UserPlatformApplicationValidator.js +173 -5
- package/sdk/platform/User/UserPlatformModel.d.ts +344 -7
- package/sdk/platform/User/UserPlatformModel.js +256 -5
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +47 -39
- package/sdk/platform/Webhook/WebhookPlatformClient.js +63 -61
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +264 -156
- package/sdk/platform/Webhook/WebhookPlatformModel.js +276 -153
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +7 -10
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +6 -6
- package/sdk/platform/index.d.ts +1 -1
- package/sdk/platform/index.js +2 -2
- package/sdk/public/Billing/BillingPublicClient.d.ts +23 -0
- package/sdk/public/Billing/BillingPublicClient.js +116 -0
- package/sdk/public/Billing/BillingPublicModel.d.ts +92 -0
- package/sdk/public/Billing/BillingPublicModel.js +96 -0
- package/sdk/public/Billing/BillingPublicValidator.d.ts +18 -0
- package/sdk/public/Billing/BillingPublicValidator.js +19 -0
- package/sdk/public/Content/ContentPublicClient.d.ts +22 -0
- package/sdk/public/Content/ContentPublicClient.js +114 -0
- package/sdk/public/Content/ContentPublicModel.d.ts +53 -0
- package/sdk/public/Content/ContentPublicModel.js +60 -0
- package/sdk/public/Content/ContentPublicValidator.d.ts +18 -0
- package/sdk/public/Content/ContentPublicValidator.js +19 -0
- package/sdk/public/PublicClient.d.ts +4 -0
- package/sdk/public/PublicClient.js +8 -0
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +33 -0
- package/sdk/public/Webhook/WebhookPublicClient.js +242 -0
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +147 -1
- package/sdk/public/Webhook/WebhookPublicModel.js +177 -1
- package/sdk/public/Webhook/WebhookPublicValidator.d.ts +23 -1
- package/sdk/public/Webhook/WebhookPublicValidator.js +31 -0
- package/sdk/public/index.d.ts +2 -0
- package/sdk/public/index.js +4 -0
|
@@ -35,7 +35,7 @@ export = ConfigurationPlatformValidator;
|
|
|
35
35
|
*/
|
|
36
36
|
/**
|
|
37
37
|
* @typedef GetIntegrationByIdParam
|
|
38
|
-
* @property {
|
|
38
|
+
* @property {string} id - Integration id
|
|
39
39
|
*/
|
|
40
40
|
/**
|
|
41
41
|
* @typedef GetIntegrationByLevelIdParam
|
|
@@ -195,7 +195,7 @@ type GetIntegrationByIdParam = {
|
|
|
195
195
|
/**
|
|
196
196
|
* - Integration id
|
|
197
197
|
*/
|
|
198
|
-
id:
|
|
198
|
+
id: string;
|
|
199
199
|
};
|
|
200
200
|
type GetIntegrationByLevelIdParam = {
|
|
201
201
|
/**
|
|
@@ -45,7 +45,7 @@ const ConfigurationPlatformModel = require("./ConfigurationPlatformModel");
|
|
|
45
45
|
|
|
46
46
|
/**
|
|
47
47
|
* @typedef GetIntegrationByIdParam
|
|
48
|
-
* @property {
|
|
48
|
+
* @property {string} id - Integration id
|
|
49
49
|
*/
|
|
50
50
|
|
|
51
51
|
/**
|
|
@@ -182,7 +182,7 @@ class ConfigurationPlatformValidator {
|
|
|
182
182
|
/** @returns {GetIntegrationByIdParam} */
|
|
183
183
|
static getIntegrationById() {
|
|
184
184
|
return Joi.object({
|
|
185
|
-
id: Joi.
|
|
185
|
+
id: Joi.string().allow("").required(),
|
|
186
186
|
}).required();
|
|
187
187
|
}
|
|
188
188
|
|
|
@@ -59,6 +59,59 @@ declare class Content {
|
|
|
59
59
|
* @description: Announcements are useful to highlight a message or information on top of a webpage. Use this API to create an 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: Use this API to create the custom field entry for given resource and resource_id in param. - 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
|
+
/**
|
|
77
|
+
* @param {ContentPlatformApplicationValidator.CreateAppCustomFieldDefinitionParam} arg
|
|
78
|
+
* - Arg object
|
|
79
|
+
*
|
|
80
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
81
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
82
|
+
* @returns {Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>}
|
|
83
|
+
* - Success response
|
|
84
|
+
*
|
|
85
|
+
* @name createAppCustomFieldDefinition
|
|
86
|
+
* @summary: Create custom field definition
|
|
87
|
+
* @description: Use this API to create a custom field definition for your application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createAppCustomFieldDefinition/).
|
|
88
|
+
*/
|
|
89
|
+
createAppCustomFieldDefinition({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomFieldDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>;
|
|
90
|
+
/**
|
|
91
|
+
* @param {ContentPlatformApplicationValidator.CreateAppCustomObjectParam} arg
|
|
92
|
+
* - Arg object
|
|
93
|
+
*
|
|
94
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
95
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
96
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectSchema>} - Success response
|
|
97
|
+
* @name createAppCustomObject
|
|
98
|
+
* @summary: Create custom object entries
|
|
99
|
+
* @description: Use this API to create the custom object entry. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createAppCustomObject/).
|
|
100
|
+
*/
|
|
101
|
+
createAppCustomObject({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomObjectParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectSchema>;
|
|
102
|
+
/**
|
|
103
|
+
* @param {ContentPlatformApplicationValidator.CreateAppCustomObjectDefinitionParam} arg
|
|
104
|
+
* - Arg object
|
|
105
|
+
*
|
|
106
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
107
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
108
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSchema>} -
|
|
109
|
+
* Success response
|
|
110
|
+
* @name createAppCustomObjectDefinition
|
|
111
|
+
* @summary: Create custom object definition
|
|
112
|
+
* @description: Use this API to create custom object defintion - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createAppCustomObjectDefinition/).
|
|
113
|
+
*/
|
|
114
|
+
createAppCustomObjectDefinition({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSchema>;
|
|
62
115
|
/**
|
|
63
116
|
* @param {ContentPlatformApplicationValidator.CreateBlogParam} arg - Arg object
|
|
64
117
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -125,6 +178,18 @@ declare class Content {
|
|
|
125
178
|
* @description: Use this API to create a page preview to check the appearance of a custom page. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createPagePreview/).
|
|
126
179
|
*/
|
|
127
180
|
createPagePreview({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreatePagePreviewParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PageSchema>;
|
|
181
|
+
/**
|
|
182
|
+
* @param {ContentPlatformApplicationValidator.CreateSEOMarkupSchemaParam} arg
|
|
183
|
+
* - Arg object
|
|
184
|
+
*
|
|
185
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
186
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
187
|
+
* @returns {Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>} - Success response
|
|
188
|
+
* @name createSEOMarkupSchema
|
|
189
|
+
* @summary: Create a SEO Markup schema Template of a page type for an application
|
|
190
|
+
* @description: Use this API to create a SEO Markup schema Template inside an application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createSEOMarkupSchema/).
|
|
191
|
+
*/
|
|
192
|
+
createSEOMarkupSchema({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateSEOMarkupSchemaParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>;
|
|
128
193
|
/**
|
|
129
194
|
* @param {ContentPlatformApplicationValidator.CreateSlideshowParam} arg - Arg object
|
|
130
195
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -148,6 +213,44 @@ declare class Content {
|
|
|
148
213
|
* @description: Use this API to delete an existing announcement. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteAnnouncement/).
|
|
149
214
|
*/
|
|
150
215
|
deleteAnnouncement({ announcementId, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAnnouncementParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateAnnouncementSchema>;
|
|
216
|
+
/**
|
|
217
|
+
* @param {ContentPlatformApplicationValidator.DeleteAppCustomFieldDefinitionParam} arg
|
|
218
|
+
* - Arg object
|
|
219
|
+
*
|
|
220
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
221
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
222
|
+
* @returns {Promise<ContentPlatformModel.CustomDataDeleteSchema>} - Success response
|
|
223
|
+
* @name deleteAppCustomFieldDefinition
|
|
224
|
+
* @summary: Delete custom fields definition.
|
|
225
|
+
* @description: Use this API to delete the definitions of custom fields using definition_id. This will also delete related custom fields entries related to this definition. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteAppCustomFieldDefinition/).
|
|
226
|
+
*/
|
|
227
|
+
deleteAppCustomFieldDefinition({ definitionId, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomFieldDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomDataDeleteSchema>;
|
|
228
|
+
/**
|
|
229
|
+
* @param {ContentPlatformApplicationValidator.DeleteAppCustomObjectParam} arg
|
|
230
|
+
* - Arg object
|
|
231
|
+
*
|
|
232
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
233
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
234
|
+
* @returns {Promise<ContentPlatformModel.CustomDataDeleteSchema>} - Success response
|
|
235
|
+
* @name deleteAppCustomObject
|
|
236
|
+
* @summary: Delete custom object
|
|
237
|
+
* @description: Use this API to delete the custom object entry by id. This will also delete related custom fields entries related to this custom object. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteAppCustomObject/).
|
|
238
|
+
*/
|
|
239
|
+
deleteAppCustomObject({ metaobjectId, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomObjectParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomDataDeleteSchema>;
|
|
240
|
+
/**
|
|
241
|
+
* @param {ContentPlatformApplicationValidator.DeleteAppCustomObjectDefinitionParam} arg
|
|
242
|
+
* - Arg object
|
|
243
|
+
*
|
|
244
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
245
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
246
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectDefinitionDeleteResponseSchema>}
|
|
247
|
+
* - Success response
|
|
248
|
+
*
|
|
249
|
+
* @name deleteAppCustomObjectDefinition
|
|
250
|
+
* @summary: delete custom object definition by id
|
|
251
|
+
* @description: Use this API to delete a custom object definition and related data for your application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteAppCustomObjectDefinition/).
|
|
252
|
+
*/
|
|
253
|
+
deleteAppCustomObjectDefinition({ definitionId, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionDeleteResponseSchema>;
|
|
151
254
|
/**
|
|
152
255
|
* @param {ContentPlatformApplicationValidator.DeleteBlogParam} arg - Arg object
|
|
153
256
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -235,6 +338,18 @@ declare class Content {
|
|
|
235
338
|
* @description: Use this API to delete redirection rules - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deletePathRedirectionRules/).
|
|
236
339
|
*/
|
|
237
340
|
deletePathRedirectionRules({ pathId, requestHeaders }?: ContentPlatformApplicationValidator.DeletePathRedirectionRulesParam, { responseHeaders }?: object): Promise<any>;
|
|
341
|
+
/**
|
|
342
|
+
* @param {ContentPlatformApplicationValidator.DeleteSEOMarkupSchemaParam} arg
|
|
343
|
+
* - Arg object
|
|
344
|
+
*
|
|
345
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
346
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
347
|
+
* @returns {Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>} - Success response
|
|
348
|
+
* @name deleteSEOMarkupSchema
|
|
349
|
+
* @summary: delete a particular SEO Markup schema of an application using its id
|
|
350
|
+
* @description: Use this API to delete an existing SEO Markup schema an application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteSEOMarkupSchema/).
|
|
351
|
+
*/
|
|
352
|
+
deleteSEOMarkupSchema({ id, requestHeaders }?: ContentPlatformApplicationValidator.DeleteSEOMarkupSchemaParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>;
|
|
238
353
|
/**
|
|
239
354
|
* @param {ContentPlatformApplicationValidator.DeleteSlideshowParam} arg - Arg object
|
|
240
355
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -268,6 +383,32 @@ declare class Content {
|
|
|
268
383
|
* @description: Use this API to edit the details of an existing tag by its ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/editInjectableTag/).
|
|
269
384
|
*/
|
|
270
385
|
editInjectableTag({ tagId, body, requestHeaders }?: ContentPlatformApplicationValidator.EditInjectableTagParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TagsSchema>;
|
|
386
|
+
/**
|
|
387
|
+
* @param {ContentPlatformApplicationValidator.EditSEOMarkupSchemaParam} arg
|
|
388
|
+
* - Arg object
|
|
389
|
+
*
|
|
390
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
391
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
392
|
+
* @returns {Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>} - Success response
|
|
393
|
+
* @name editSEOMarkupSchema
|
|
394
|
+
* @summary: Get a particular SEO Markup schema of an application using its id
|
|
395
|
+
* @description: Use this API to edit an existing SEO Markup schema an application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/editSEOMarkupSchema/).
|
|
396
|
+
*/
|
|
397
|
+
editSEOMarkupSchema({ id, body, requestHeaders }?: ContentPlatformApplicationValidator.EditSEOMarkupSchemaParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>;
|
|
398
|
+
/**
|
|
399
|
+
* @param {ContentPlatformApplicationValidator.ExportAppCustomObjectEntriesParam} arg
|
|
400
|
+
* - Arg object
|
|
401
|
+
*
|
|
402
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
403
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
404
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectBulkEntryInitiateDownload>}
|
|
405
|
+
* - Success response
|
|
406
|
+
*
|
|
407
|
+
* @name exportAppCustomObjectEntries
|
|
408
|
+
* @summary: Initiate download for bulk custom object entries
|
|
409
|
+
* @description: Use this api to initiate download of bulk entries - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/exportAppCustomObjectEntries/).
|
|
410
|
+
*/
|
|
411
|
+
exportAppCustomObjectEntries({ definitionId, requestHeaders }?: ContentPlatformApplicationValidator.ExportAppCustomObjectEntriesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectBulkEntryInitiateDownload>;
|
|
271
412
|
/**
|
|
272
413
|
* @param {ContentPlatformApplicationValidator.GenerateSEOTitleParam} arg - Arg object
|
|
273
414
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -320,6 +461,142 @@ declare class Content {
|
|
|
320
461
|
applicationId: string;
|
|
321
462
|
pageSize?: number;
|
|
322
463
|
}): Paginator<ContentPlatformModel.GetAnnouncementListSchema>;
|
|
464
|
+
/**
|
|
465
|
+
* @param {ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionParam} arg
|
|
466
|
+
* - Arg object
|
|
467
|
+
*
|
|
468
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
469
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
470
|
+
* @returns {Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>}
|
|
471
|
+
* - Success response
|
|
472
|
+
*
|
|
473
|
+
* @name getAppCustomFieldDefinition
|
|
474
|
+
* @summary: Get custom fields definition by id
|
|
475
|
+
* @description: Use this API to retrieve the definitions of custom fields using definition_id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldDefinition/).
|
|
476
|
+
*/
|
|
477
|
+
getAppCustomFieldDefinition({ definitionId, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>;
|
|
478
|
+
/**
|
|
479
|
+
* @param {ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionsParam} arg
|
|
480
|
+
* - Arg object
|
|
481
|
+
*
|
|
482
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
483
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
484
|
+
* @returns {Promise<ContentPlatformModel.CustomFieldDefinitionsSchema>} -
|
|
485
|
+
* Success response
|
|
486
|
+
* @name getAppCustomFieldDefinitions
|
|
487
|
+
* @summary: Get custom fields definitions
|
|
488
|
+
* @description: Use this API to retrieve the definitions of custom fields. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldDefinitions/).
|
|
489
|
+
*/
|
|
490
|
+
getAppCustomFieldDefinitions({ pageNo, pageSize, resource, type, search, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionsSchema>;
|
|
491
|
+
/**
|
|
492
|
+
* @param {ContentPlatformApplicationValidator.GetAppCustomFieldTypesParam} arg
|
|
493
|
+
* - Arg object
|
|
494
|
+
*
|
|
495
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
496
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
497
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectByIdSchema>} - Success response
|
|
498
|
+
* @name getAppCustomFieldTypes
|
|
499
|
+
* @summary: Get custom field types
|
|
500
|
+
* @description: Use this API to retrieve the custom field types - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldTypes/).
|
|
501
|
+
*/
|
|
502
|
+
getAppCustomFieldTypes({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectByIdSchema>;
|
|
503
|
+
/**
|
|
504
|
+
* @param {ContentPlatformApplicationValidator.GetAppCustomFieldsParam} arg
|
|
505
|
+
* - Arg object
|
|
506
|
+
*
|
|
507
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
508
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
509
|
+
* @returns {Promise<ContentPlatformModel.CustomFieldsResponseSchema>} -
|
|
510
|
+
* Success response
|
|
511
|
+
* @name getAppCustomFields
|
|
512
|
+
* @summary: Get list of custom fields of given resource
|
|
513
|
+
* @description: Use this API to retrieve the custom fields for given resource in param. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFields/).
|
|
514
|
+
*/
|
|
515
|
+
getAppCustomFields({ resource, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsResponseSchema>;
|
|
516
|
+
/**
|
|
517
|
+
* @param {ContentPlatformApplicationValidator.GetAppCustomFieldsByResourceIdParam} arg
|
|
518
|
+
* - Arg object
|
|
519
|
+
*
|
|
520
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
521
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
522
|
+
* @returns {Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>}
|
|
523
|
+
* - Success response
|
|
524
|
+
*
|
|
525
|
+
* @name getAppCustomFieldsByResourceId
|
|
526
|
+
* @summary: Get list of custom fields of given resource and resource id
|
|
527
|
+
* @description: Use this API to retrieve the custom fields for given resource in param. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldsByResourceId/).
|
|
528
|
+
*/
|
|
529
|
+
getAppCustomFieldsByResourceId({ resource, resourceId, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldsByResourceIdParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>;
|
|
530
|
+
/**
|
|
531
|
+
* @param {ContentPlatformApplicationValidator.GetAppCustomObjectParam} arg
|
|
532
|
+
* - Arg object
|
|
533
|
+
*
|
|
534
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
535
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
536
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectByIdSchema>} - Success response
|
|
537
|
+
* @name getAppCustomObject
|
|
538
|
+
* @summary: Get custom object details
|
|
539
|
+
* @description: Use this API to retrieve the custom object details and their fields details and definitions and references. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomObject/).
|
|
540
|
+
*/
|
|
541
|
+
getAppCustomObject({ metaobjectId, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectByIdSchema>;
|
|
542
|
+
/**
|
|
543
|
+
* @param {ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionParam} arg
|
|
544
|
+
* - Arg object
|
|
545
|
+
*
|
|
546
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
547
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
548
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSchema>} -
|
|
549
|
+
* Success response
|
|
550
|
+
* @name getAppCustomObjectDefinition
|
|
551
|
+
* @summary: get custom object definition by id
|
|
552
|
+
* @description: Use this API to update a custom object definition for your application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomObjectDefinition/).
|
|
553
|
+
*/
|
|
554
|
+
getAppCustomObjectDefinition({ definitionId, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSchema>;
|
|
555
|
+
/**
|
|
556
|
+
* @param {ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionsParam} arg
|
|
557
|
+
* - Arg object
|
|
558
|
+
*
|
|
559
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
560
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
561
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectDefinitionsSchema>} -
|
|
562
|
+
* Success response
|
|
563
|
+
* @name getAppCustomObjectDefinitions
|
|
564
|
+
* @summary: Get custom object definitions
|
|
565
|
+
* @description: Use this API to retrieve the custom object definitions - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomObjectDefinitions/).
|
|
566
|
+
*/
|
|
567
|
+
getAppCustomObjectDefinitions({ pageNo, pageSize, search, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionsSchema>;
|
|
568
|
+
/**
|
|
569
|
+
* @param {ContentPlatformApplicationValidator.GetAppCustomObjectsParam} arg
|
|
570
|
+
* - Arg object
|
|
571
|
+
*
|
|
572
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
573
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
574
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectsSchema>} - Success response
|
|
575
|
+
* @name getAppCustomObjects
|
|
576
|
+
* @summary: Get list of custom objects
|
|
577
|
+
* @description: Use this API to retrieve the custom objects. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomObjects/).
|
|
578
|
+
*/
|
|
579
|
+
getAppCustomObjects({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectsSchema>;
|
|
580
|
+
/**
|
|
581
|
+
* @param {ContentPlatformApplicationValidator.GetAppJobsParam} arg - Arg object
|
|
582
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
583
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
584
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectBulkEntry>} - Success response
|
|
585
|
+
* @name getAppJobs
|
|
586
|
+
* @summary: Fetch bulk import and export job list.
|
|
587
|
+
* @description: Use this api to get list of jobs of bulk import and exports - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppJobs/).
|
|
588
|
+
*/
|
|
589
|
+
getAppJobs({ page, pageSize, actionType, requestHeaders }?: ContentPlatformApplicationValidator.GetAppJobsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectBulkEntry>;
|
|
590
|
+
/**
|
|
591
|
+
* @param {ContentPlatformApplicationValidator.GetAppResourcesParam} arg - Arg object
|
|
592
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
593
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
594
|
+
* @returns {Promise<ContentPlatformModel.ResourcesSchema>} - Success response
|
|
595
|
+
* @name getAppResources
|
|
596
|
+
* @summary: Get resources
|
|
597
|
+
* @description: Use this API to retrieve the resources, such as products, collections, customers, selling locations, etc. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppResources/).
|
|
598
|
+
*/
|
|
599
|
+
getAppResources({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.ResourcesSchema>;
|
|
323
600
|
/**
|
|
324
601
|
* @param {ContentPlatformApplicationValidator.GetBlogBySlugParam} arg - Arg object
|
|
325
602
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -377,6 +654,19 @@ declare class Content {
|
|
|
377
654
|
* @description: Use this to get all data loaders of an application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getDataLoaders/).
|
|
378
655
|
*/
|
|
379
656
|
getDataLoaders({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.DataLoadersSchema>;
|
|
657
|
+
/**
|
|
658
|
+
* @param {ContentPlatformApplicationValidator.GetDataLoadersByServiceParam} arg
|
|
659
|
+
* - Arg object
|
|
660
|
+
*
|
|
661
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
662
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
663
|
+
* @returns {Promise<ContentPlatformModel.DataLoaderResponseSchema>} -
|
|
664
|
+
* Success response
|
|
665
|
+
* @name getDataLoadersByService
|
|
666
|
+
* @summary: Get all the data loaders in an application by service name
|
|
667
|
+
* @description: Use this to get all data loaders of an application by service name - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getDataLoadersByService/).
|
|
668
|
+
*/
|
|
669
|
+
getDataLoadersByService({ serviceName, requestHeaders }?: ContentPlatformApplicationValidator.GetDataLoadersByServiceParam, { responseHeaders }?: object): Promise<ContentPlatformModel.DataLoaderResponseSchema>;
|
|
380
670
|
/**
|
|
381
671
|
* @param {ContentPlatformApplicationValidator.GetDefaultNavigationsParam} arg
|
|
382
672
|
* - Arg object
|
|
@@ -390,6 +680,18 @@ declare class Content {
|
|
|
390
680
|
* @description: On any website (application), there are navigations that are present by default. Use this API to retrieve those default navigations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getDefaultNavigations/).
|
|
391
681
|
*/
|
|
392
682
|
getDefaultNavigations({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.DefaultNavigationResponse>;
|
|
683
|
+
/**
|
|
684
|
+
* @param {ContentPlatformApplicationValidator.GetDefaultSEOMarkupSchemaParam} arg
|
|
685
|
+
* - Arg object
|
|
686
|
+
*
|
|
687
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
688
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
689
|
+
* @returns {Promise<ContentPlatformModel.DefaultSchemaComponent>} - Success response
|
|
690
|
+
* @name getDefaultSEOMarkupSchema
|
|
691
|
+
* @summary: Get Default SEO Markup schemas of an application
|
|
692
|
+
* @description: Use this API to get the Default SEO Markup schema Templates setup for an application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getDefaultSEOMarkupSchema/).
|
|
693
|
+
*/
|
|
694
|
+
getDefaultSEOMarkupSchema({ pageType, requestHeaders }?: ContentPlatformApplicationValidator.GetDefaultSEOMarkupSchemaParam, { responseHeaders }?: object): Promise<ContentPlatformModel.DefaultSchemaComponent>;
|
|
393
695
|
/**
|
|
394
696
|
* @param {ContentPlatformApplicationValidator.GetFaqByIdOrSlugParam} arg - Arg object
|
|
395
697
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -621,6 +923,30 @@ declare class Content {
|
|
|
621
923
|
* @description: Use this API to know how the SEO is configured in the application. This includes the sitemap, robot.txt, custom meta tags, etc. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getSEOConfiguration/).
|
|
622
924
|
*/
|
|
623
925
|
getSEOConfiguration({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.SeoComponent>;
|
|
926
|
+
/**
|
|
927
|
+
* @param {ContentPlatformApplicationValidator.GetSEOMarkupSchemaParam} arg
|
|
928
|
+
* - Arg object
|
|
929
|
+
*
|
|
930
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
931
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
932
|
+
* @returns {Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>} - Success response
|
|
933
|
+
* @name getSEOMarkupSchema
|
|
934
|
+
* @summary: Get a particular SEO Markup schema of an application using its id
|
|
935
|
+
* @description: Use this API to get a existing SEO Markup schema an application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getSEOMarkupSchema/).
|
|
936
|
+
*/
|
|
937
|
+
getSEOMarkupSchema({ id, requestHeaders }?: ContentPlatformApplicationValidator.GetSEOMarkupSchemaParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>;
|
|
938
|
+
/**
|
|
939
|
+
* @param {ContentPlatformApplicationValidator.GetSEOMarkupSchemasParam} arg
|
|
940
|
+
* - Arg object
|
|
941
|
+
*
|
|
942
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
943
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
944
|
+
* @returns {Promise<ContentPlatformModel.SeoSchemaComponent>} - Success response
|
|
945
|
+
* @name getSEOMarkupSchemas
|
|
946
|
+
* @summary: Get SEO Markup schemas of an application
|
|
947
|
+
* @description: Use this API to get all SEO Markup schema Templates setup for an application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getSEOMarkupSchemas/).
|
|
948
|
+
*/
|
|
949
|
+
getSEOMarkupSchemas({ title, active, pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetSEOMarkupSchemasParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SeoSchemaComponent>;
|
|
624
950
|
/**
|
|
625
951
|
* @param {ContentPlatformApplicationValidator.GetSlideshowBySlugParam} arg
|
|
626
952
|
* - Arg object
|
|
@@ -675,6 +1001,20 @@ declare class Content {
|
|
|
675
1001
|
* @description: Use this API to get the contact details for customer support, including emails and phone numbers. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getSupportInformation/).
|
|
676
1002
|
*/
|
|
677
1003
|
getSupportInformation({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.Support>;
|
|
1004
|
+
/**
|
|
1005
|
+
* @param {ContentPlatformApplicationValidator.ImportAppCustomObjectEntriesParam} arg
|
|
1006
|
+
* - Arg object
|
|
1007
|
+
*
|
|
1008
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
1009
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
1010
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectEntryBulkUploadResponse>}
|
|
1011
|
+
* - Success response
|
|
1012
|
+
*
|
|
1013
|
+
* @name importAppCustomObjectEntries
|
|
1014
|
+
* @summary: Bulk custom object entries upload
|
|
1015
|
+
* @description: Use this API to upload custom object entries - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/importAppCustomObjectEntries/).
|
|
1016
|
+
*/
|
|
1017
|
+
importAppCustomObjectEntries({ definitionId, body, requestHeaders }?: ContentPlatformApplicationValidator.ImportAppCustomObjectEntriesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectEntryBulkUploadResponse>;
|
|
678
1018
|
/**
|
|
679
1019
|
* @param {ContentPlatformApplicationValidator.RemoveInjectableTagParam} arg
|
|
680
1020
|
* - Arg object
|
|
@@ -699,6 +1039,18 @@ declare class Content {
|
|
|
699
1039
|
* @description: Use this API to reselect a data loader. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/resetDataLoader/).
|
|
700
1040
|
*/
|
|
701
1041
|
resetDataLoader({ service, operationId, requestHeaders }?: ContentPlatformApplicationValidator.ResetDataLoaderParam, { responseHeaders }?: object): Promise<ContentPlatformModel.DataLoaderResetResponseSchema>;
|
|
1042
|
+
/**
|
|
1043
|
+
* @param {ContentPlatformApplicationValidator.SampleAppCustomObjectBulkEntryParam} arg
|
|
1044
|
+
* - Arg object
|
|
1045
|
+
*
|
|
1046
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
1047
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
1048
|
+
* @returns {Promise<string>} - Success response
|
|
1049
|
+
* @name sampleAppCustomObjectBulkEntry
|
|
1050
|
+
* @summary: download sample for custom object bulk entry
|
|
1051
|
+
* @description: Use this api to get sample csv file - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/sampleAppCustomObjectBulkEntry/).
|
|
1052
|
+
*/
|
|
1053
|
+
sampleAppCustomObjectBulkEntry({ definitionId, requestHeaders }?: ContentPlatformApplicationValidator.SampleAppCustomObjectBulkEntryParam, { responseHeaders }?: object): Promise<string>;
|
|
702
1054
|
/**
|
|
703
1055
|
* @param {ContentPlatformApplicationValidator.SelectDataLoaderParam} arg - Arg object
|
|
704
1056
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -736,6 +1088,45 @@ declare class Content {
|
|
|
736
1088
|
* @description: Use this API to edit the duration, i.e. start date-time and end date-time of an announcement. Moreover, you can enable/disable an announcement using this API. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAnnouncementSchedule/).
|
|
737
1089
|
*/
|
|
738
1090
|
updateAnnouncementSchedule({ announcementId, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAnnouncementScheduleParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateAnnouncementSchema>;
|
|
1091
|
+
/**
|
|
1092
|
+
* @param {ContentPlatformApplicationValidator.UpdateAppCustomFieldDefinitionParam} arg
|
|
1093
|
+
* - Arg object
|
|
1094
|
+
*
|
|
1095
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
1096
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
1097
|
+
* @returns {Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>}
|
|
1098
|
+
* - Success response
|
|
1099
|
+
*
|
|
1100
|
+
* @name updateAppCustomFieldDefinition
|
|
1101
|
+
* @summary: Update custom field definition
|
|
1102
|
+
* @description: Use this API to update a custom field definition for your application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomFieldDefinition/).
|
|
1103
|
+
*/
|
|
1104
|
+
updateAppCustomFieldDefinition({ definitionId, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomFieldDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>;
|
|
1105
|
+
/**
|
|
1106
|
+
* @param {ContentPlatformApplicationValidator.UpdateAppCustomObjectParam} arg
|
|
1107
|
+
* - Arg object
|
|
1108
|
+
*
|
|
1109
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
1110
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
1111
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectByIdSchema>} - Success response
|
|
1112
|
+
* @name updateAppCustomObject
|
|
1113
|
+
* @summary: Update custom object details
|
|
1114
|
+
* @description: Use this API to update a custom object detail for your application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomObject/).
|
|
1115
|
+
*/
|
|
1116
|
+
updateAppCustomObject({ metaobjectId, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomObjectParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectByIdSchema>;
|
|
1117
|
+
/**
|
|
1118
|
+
* @param {ContentPlatformApplicationValidator.UpdateAppCustomObjectDefinitionParam} arg
|
|
1119
|
+
* - Arg object
|
|
1120
|
+
*
|
|
1121
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
1122
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
1123
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSchema>} -
|
|
1124
|
+
* Success response
|
|
1125
|
+
* @name updateAppCustomObjectDefinition
|
|
1126
|
+
* @summary: Update custom object definition
|
|
1127
|
+
* @description: Use this API to update a custom object definition for your application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomObjectDefinition/).
|
|
1128
|
+
*/
|
|
1129
|
+
updateAppCustomObjectDefinition({ definitionId, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSchema>;
|
|
739
1130
|
/**
|
|
740
1131
|
* @param {ContentPlatformApplicationValidator.UpdateBlogParam} arg - Arg object
|
|
741
1132
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|