@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
|
@@ -20,6 +20,24 @@ export = ContentPlatformApplicationValidator;
|
|
|
20
20
|
* @typedef CreateAnnouncementParam
|
|
21
21
|
* @property {ContentPlatformModel.AdminAnnouncementSchema} body
|
|
22
22
|
*/
|
|
23
|
+
/**
|
|
24
|
+
* @typedef CreateAppCustomFieldByResourceIdParam
|
|
25
|
+
* @property {string} resource
|
|
26
|
+
* @property {string} resourceId
|
|
27
|
+
* @property {ContentPlatformModel.CustomFieldRequestSchema} body
|
|
28
|
+
*/
|
|
29
|
+
/**
|
|
30
|
+
* @typedef CreateAppCustomFieldDefinitionParam
|
|
31
|
+
* @property {ContentPlatformModel.CustomFieldDefinitionRequestSchema} body
|
|
32
|
+
*/
|
|
33
|
+
/**
|
|
34
|
+
* @typedef CreateAppCustomObjectParam
|
|
35
|
+
* @property {ContentPlatformModel.CustomObjectRequestSchema} body
|
|
36
|
+
*/
|
|
37
|
+
/**
|
|
38
|
+
* @typedef CreateAppCustomObjectDefinitionParam
|
|
39
|
+
* @property {ContentPlatformModel.CustomObjectDefinitionRequestSchema} body
|
|
40
|
+
*/
|
|
23
41
|
/**
|
|
24
42
|
* @typedef CreateBlogParam
|
|
25
43
|
* @property {ContentPlatformModel.BlogRequest} body
|
|
@@ -44,6 +62,10 @@ export = ContentPlatformApplicationValidator;
|
|
|
44
62
|
* @typedef CreatePagePreviewParam
|
|
45
63
|
* @property {ContentPlatformModel.PageRequest} body
|
|
46
64
|
*/
|
|
65
|
+
/**
|
|
66
|
+
* @typedef CreateSEOMarkupSchemaParam
|
|
67
|
+
* @property {ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody} body
|
|
68
|
+
*/
|
|
47
69
|
/**
|
|
48
70
|
* @typedef CreateSlideshowParam
|
|
49
71
|
* @property {ContentPlatformModel.SlideshowRequest} body
|
|
@@ -52,6 +74,18 @@ export = ContentPlatformApplicationValidator;
|
|
|
52
74
|
* @typedef DeleteAnnouncementParam
|
|
53
75
|
* @property {string} announcementId - ID allotted to the announcement.
|
|
54
76
|
*/
|
|
77
|
+
/**
|
|
78
|
+
* @typedef DeleteAppCustomFieldDefinitionParam
|
|
79
|
+
* @property {string} definitionId
|
|
80
|
+
*/
|
|
81
|
+
/**
|
|
82
|
+
* @typedef DeleteAppCustomObjectParam
|
|
83
|
+
* @property {string} metaobjectId
|
|
84
|
+
*/
|
|
85
|
+
/**
|
|
86
|
+
* @typedef DeleteAppCustomObjectDefinitionParam
|
|
87
|
+
* @property {string} definitionId
|
|
88
|
+
*/
|
|
55
89
|
/**
|
|
56
90
|
* @typedef DeleteBlogParam
|
|
57
91
|
* @property {string} id - ID allotted to the blog.
|
|
@@ -85,6 +119,11 @@ export = ContentPlatformApplicationValidator;
|
|
|
85
119
|
* @typedef DeletePathRedirectionRulesParam
|
|
86
120
|
* @property {string} pathId - ID allotted to the path redirection rule.
|
|
87
121
|
*/
|
|
122
|
+
/**
|
|
123
|
+
* @typedef DeleteSEOMarkupSchemaParam
|
|
124
|
+
* @property {string} id - Alphanumeric ID allotted to a SEO Markup Schema
|
|
125
|
+
* Template created within a business.
|
|
126
|
+
*/
|
|
88
127
|
/**
|
|
89
128
|
* @typedef DeleteSlideshowParam
|
|
90
129
|
* @property {string} id - ID allotted to the slideshow.
|
|
@@ -99,6 +138,16 @@ export = ContentPlatformApplicationValidator;
|
|
|
99
138
|
* @property {string} tagId - ID allotted to the tag.
|
|
100
139
|
* @property {ContentPlatformModel.UpdateHandpickedSchema} body
|
|
101
140
|
*/
|
|
141
|
+
/**
|
|
142
|
+
* @typedef EditSEOMarkupSchemaParam
|
|
143
|
+
* @property {string} id - Alphanumeric ID allotted to a SEO Markup Schema
|
|
144
|
+
* Template created within a business.
|
|
145
|
+
* @property {ContentPlatformModel.SEOSchemaMarkupTemplate} body
|
|
146
|
+
*/
|
|
147
|
+
/**
|
|
148
|
+
* @typedef ExportAppCustomObjectEntriesParam
|
|
149
|
+
* @property {string} definitionId
|
|
150
|
+
*/
|
|
102
151
|
/**
|
|
103
152
|
* @typedef GenerateSEOTitleParam
|
|
104
153
|
* @property {ContentPlatformModel.GenerationEntityType} type - String
|
|
@@ -117,6 +166,50 @@ export = ContentPlatformApplicationValidator;
|
|
|
117
166
|
* @property {number} [pageSize] - The number of items to retrieve in each page.
|
|
118
167
|
* Default value is 10.
|
|
119
168
|
*/
|
|
169
|
+
/**
|
|
170
|
+
* @typedef GetAppCustomFieldDefinitionParam
|
|
171
|
+
* @property {string} definitionId
|
|
172
|
+
*/
|
|
173
|
+
/**
|
|
174
|
+
* @typedef GetAppCustomFieldDefinitionsParam
|
|
175
|
+
* @property {string} pageNo
|
|
176
|
+
* @property {string} pageSize
|
|
177
|
+
* @property {string} [resource]
|
|
178
|
+
* @property {string} [type]
|
|
179
|
+
* @property {string} [search]
|
|
180
|
+
*/
|
|
181
|
+
/** @typedef GetAppCustomFieldTypesParam */
|
|
182
|
+
/**
|
|
183
|
+
* @typedef GetAppCustomFieldsParam
|
|
184
|
+
* @property {string} resource
|
|
185
|
+
*/
|
|
186
|
+
/**
|
|
187
|
+
* @typedef GetAppCustomFieldsByResourceIdParam
|
|
188
|
+
* @property {string} resource
|
|
189
|
+
* @property {string} resourceId
|
|
190
|
+
*/
|
|
191
|
+
/**
|
|
192
|
+
* @typedef GetAppCustomObjectParam
|
|
193
|
+
* @property {string} metaobjectId
|
|
194
|
+
*/
|
|
195
|
+
/**
|
|
196
|
+
* @typedef GetAppCustomObjectDefinitionParam
|
|
197
|
+
* @property {string} definitionId
|
|
198
|
+
*/
|
|
199
|
+
/**
|
|
200
|
+
* @typedef GetAppCustomObjectDefinitionsParam
|
|
201
|
+
* @property {string} pageNo
|
|
202
|
+
* @property {string} pageSize
|
|
203
|
+
* @property {string} [search]
|
|
204
|
+
*/
|
|
205
|
+
/** @typedef GetAppCustomObjectsParam */
|
|
206
|
+
/**
|
|
207
|
+
* @typedef GetAppJobsParam
|
|
208
|
+
* @property {string} page
|
|
209
|
+
* @property {string} pageSize
|
|
210
|
+
* @property {string} actionType
|
|
211
|
+
*/
|
|
212
|
+
/** @typedef GetAppResourcesParam */
|
|
120
213
|
/**
|
|
121
214
|
* @typedef GetBlogBySlugParam
|
|
122
215
|
* @property {string} slug - A short, human-readable, URL-friendly identifier of
|
|
@@ -135,7 +228,16 @@ export = ContentPlatformApplicationValidator;
|
|
|
135
228
|
* a blog page. You can get slug value of a blog from `getBlogs` API.
|
|
136
229
|
*/
|
|
137
230
|
/** @typedef GetDataLoadersParam */
|
|
231
|
+
/**
|
|
232
|
+
* @typedef GetDataLoadersByServiceParam
|
|
233
|
+
* @property {string} serviceName - Service name of the data loader..
|
|
234
|
+
*/
|
|
138
235
|
/** @typedef GetDefaultNavigationsParam */
|
|
236
|
+
/**
|
|
237
|
+
* @typedef GetDefaultSEOMarkupSchemaParam
|
|
238
|
+
* @property {string} [pageType] - The type of page against which schema
|
|
239
|
+
* template was created
|
|
240
|
+
*/
|
|
139
241
|
/**
|
|
140
242
|
* @typedef GetFaqByIdOrSlugParam
|
|
141
243
|
* @property {string} idOrSlug - ID or the slug allotted to an FAQ category.
|
|
@@ -209,6 +311,20 @@ export = ContentPlatformApplicationValidator;
|
|
|
209
311
|
* set of results. Default value is 1.
|
|
210
312
|
*/
|
|
211
313
|
/** @typedef GetSEOConfigurationParam */
|
|
314
|
+
/**
|
|
315
|
+
* @typedef GetSEOMarkupSchemaParam
|
|
316
|
+
* @property {string} id - Alphanumeric ID allotted to a SEO Markup Schema
|
|
317
|
+
* Template created within a business.
|
|
318
|
+
*/
|
|
319
|
+
/**
|
|
320
|
+
* @typedef GetSEOMarkupSchemasParam
|
|
321
|
+
* @property {string} [title] - Title of the seo schema.
|
|
322
|
+
* @property {string} [active] - Boolean value for fetching seo schema.
|
|
323
|
+
* @property {number} [pageNo] - The page number to navigate through the given
|
|
324
|
+
* set of results. Default value is 1.
|
|
325
|
+
* @property {number} [pageSize] - The number of items to retrieve in each page.
|
|
326
|
+
* Default value is 10.
|
|
327
|
+
*/
|
|
212
328
|
/**
|
|
213
329
|
* @typedef GetSlideshowBySlugParam
|
|
214
330
|
* @property {string} slug - A short, human-readable, URL-friendly identifier of
|
|
@@ -226,6 +342,11 @@ export = ContentPlatformApplicationValidator;
|
|
|
226
342
|
* Default value is 10.
|
|
227
343
|
*/
|
|
228
344
|
/** @typedef GetSupportInformationParam */
|
|
345
|
+
/**
|
|
346
|
+
* @typedef ImportAppCustomObjectEntriesParam
|
|
347
|
+
* @property {string} definitionId
|
|
348
|
+
* @property {ContentPlatformModel.CustomObjectBulkSchema} body
|
|
349
|
+
*/
|
|
229
350
|
/**
|
|
230
351
|
* @typedef RemoveInjectableTagParam
|
|
231
352
|
* @property {ContentPlatformModel.RemoveHandpickedSchema} body
|
|
@@ -235,6 +356,10 @@ export = ContentPlatformApplicationValidator;
|
|
|
235
356
|
* @property {string} service - Name of service.
|
|
236
357
|
* @property {string} operationId - Name of operation id of the service.
|
|
237
358
|
*/
|
|
359
|
+
/**
|
|
360
|
+
* @typedef SampleAppCustomObjectBulkEntryParam
|
|
361
|
+
* @property {string} definitionId
|
|
362
|
+
*/
|
|
238
363
|
/**
|
|
239
364
|
* @typedef SelectDataLoaderParam
|
|
240
365
|
* @property {string} dataLoaderId - ID allotted to the data loader.
|
|
@@ -249,6 +374,21 @@ export = ContentPlatformApplicationValidator;
|
|
|
249
374
|
* @property {string} announcementId - ID allotted to the announcement.
|
|
250
375
|
* @property {ContentPlatformModel.ScheduleSchema} body
|
|
251
376
|
*/
|
|
377
|
+
/**
|
|
378
|
+
* @typedef UpdateAppCustomFieldDefinitionParam
|
|
379
|
+
* @property {string} definitionId
|
|
380
|
+
* @property {ContentPlatformModel.CustomFieldDefinitionRequestSchema} body
|
|
381
|
+
*/
|
|
382
|
+
/**
|
|
383
|
+
* @typedef UpdateAppCustomObjectParam
|
|
384
|
+
* @property {string} metaobjectId
|
|
385
|
+
* @property {ContentPlatformModel.CustomObjectRequestSchema} body
|
|
386
|
+
*/
|
|
387
|
+
/**
|
|
388
|
+
* @typedef UpdateAppCustomObjectDefinitionParam
|
|
389
|
+
* @property {string} definitionId
|
|
390
|
+
* @property {ContentPlatformModel.CustomObjectDefinitionUpdateRequestSchema} body
|
|
391
|
+
*/
|
|
252
392
|
/**
|
|
253
393
|
* @typedef UpdateBlogParam
|
|
254
394
|
* @property {string} id - ID allotted to the blog.
|
|
@@ -323,6 +463,14 @@ declare class ContentPlatformApplicationValidator {
|
|
|
323
463
|
static addPathRedirectionRules(): AddPathRedirectionRulesParam;
|
|
324
464
|
/** @returns {CreateAnnouncementParam} */
|
|
325
465
|
static createAnnouncement(): CreateAnnouncementParam;
|
|
466
|
+
/** @returns {CreateAppCustomFieldByResourceIdParam} */
|
|
467
|
+
static createAppCustomFieldByResourceId(): CreateAppCustomFieldByResourceIdParam;
|
|
468
|
+
/** @returns {CreateAppCustomFieldDefinitionParam} */
|
|
469
|
+
static createAppCustomFieldDefinition(): CreateAppCustomFieldDefinitionParam;
|
|
470
|
+
/** @returns {CreateAppCustomObjectParam} */
|
|
471
|
+
static createAppCustomObject(): CreateAppCustomObjectParam;
|
|
472
|
+
/** @returns {CreateAppCustomObjectDefinitionParam} */
|
|
473
|
+
static createAppCustomObjectDefinition(): CreateAppCustomObjectDefinitionParam;
|
|
326
474
|
/** @returns {CreateBlogParam} */
|
|
327
475
|
static createBlog(): CreateBlogParam;
|
|
328
476
|
/** @returns {CreateFaqCategoryParam} */
|
|
@@ -335,10 +483,18 @@ declare class ContentPlatformApplicationValidator {
|
|
|
335
483
|
static createPage(): CreatePageParam;
|
|
336
484
|
/** @returns {CreatePagePreviewParam} */
|
|
337
485
|
static createPagePreview(): CreatePagePreviewParam;
|
|
486
|
+
/** @returns {CreateSEOMarkupSchemaParam} */
|
|
487
|
+
static createSEOMarkupSchema(): CreateSEOMarkupSchemaParam;
|
|
338
488
|
/** @returns {CreateSlideshowParam} */
|
|
339
489
|
static createSlideshow(): CreateSlideshowParam;
|
|
340
490
|
/** @returns {DeleteAnnouncementParam} */
|
|
341
491
|
static deleteAnnouncement(): DeleteAnnouncementParam;
|
|
492
|
+
/** @returns {DeleteAppCustomFieldDefinitionParam} */
|
|
493
|
+
static deleteAppCustomFieldDefinition(): DeleteAppCustomFieldDefinitionParam;
|
|
494
|
+
/** @returns {DeleteAppCustomObjectParam} */
|
|
495
|
+
static deleteAppCustomObject(): DeleteAppCustomObjectParam;
|
|
496
|
+
/** @returns {DeleteAppCustomObjectDefinitionParam} */
|
|
497
|
+
static deleteAppCustomObjectDefinition(): DeleteAppCustomObjectDefinitionParam;
|
|
342
498
|
/** @returns {DeleteBlogParam} */
|
|
343
499
|
static deleteBlog(): DeleteBlogParam;
|
|
344
500
|
/** @returns {DeleteDataLoaderParam} */
|
|
@@ -355,18 +511,46 @@ declare class ContentPlatformApplicationValidator {
|
|
|
355
511
|
static deletePage(): DeletePageParam;
|
|
356
512
|
/** @returns {DeletePathRedirectionRulesParam} */
|
|
357
513
|
static deletePathRedirectionRules(): DeletePathRedirectionRulesParam;
|
|
514
|
+
/** @returns {DeleteSEOMarkupSchemaParam} */
|
|
515
|
+
static deleteSEOMarkupSchema(): DeleteSEOMarkupSchemaParam;
|
|
358
516
|
/** @returns {DeleteSlideshowParam} */
|
|
359
517
|
static deleteSlideshow(): DeleteSlideshowParam;
|
|
360
518
|
/** @returns {EditDataLoaderParam} */
|
|
361
519
|
static editDataLoader(): EditDataLoaderParam;
|
|
362
520
|
/** @returns {EditInjectableTagParam} */
|
|
363
521
|
static editInjectableTag(): EditInjectableTagParam;
|
|
522
|
+
/** @returns {EditSEOMarkupSchemaParam} */
|
|
523
|
+
static editSEOMarkupSchema(): EditSEOMarkupSchemaParam;
|
|
524
|
+
/** @returns {ExportAppCustomObjectEntriesParam} */
|
|
525
|
+
static exportAppCustomObjectEntries(): ExportAppCustomObjectEntriesParam;
|
|
364
526
|
/** @returns {GenerateSEOTitleParam} */
|
|
365
527
|
static generateSEOTitle(): GenerateSEOTitleParam;
|
|
366
528
|
/** @returns {GetAnnouncementByIdParam} */
|
|
367
529
|
static getAnnouncementById(): GetAnnouncementByIdParam;
|
|
368
530
|
/** @returns {GetAnnouncementsListParam} */
|
|
369
531
|
static getAnnouncementsList(): GetAnnouncementsListParam;
|
|
532
|
+
/** @returns {GetAppCustomFieldDefinitionParam} */
|
|
533
|
+
static getAppCustomFieldDefinition(): GetAppCustomFieldDefinitionParam;
|
|
534
|
+
/** @returns {GetAppCustomFieldDefinitionsParam} */
|
|
535
|
+
static getAppCustomFieldDefinitions(): GetAppCustomFieldDefinitionsParam;
|
|
536
|
+
/** @returns {GetAppCustomFieldTypesParam} */
|
|
537
|
+
static getAppCustomFieldTypes(): any;
|
|
538
|
+
/** @returns {GetAppCustomFieldsParam} */
|
|
539
|
+
static getAppCustomFields(): GetAppCustomFieldsParam;
|
|
540
|
+
/** @returns {GetAppCustomFieldsByResourceIdParam} */
|
|
541
|
+
static getAppCustomFieldsByResourceId(): GetAppCustomFieldsByResourceIdParam;
|
|
542
|
+
/** @returns {GetAppCustomObjectParam} */
|
|
543
|
+
static getAppCustomObject(): GetAppCustomObjectParam;
|
|
544
|
+
/** @returns {GetAppCustomObjectDefinitionParam} */
|
|
545
|
+
static getAppCustomObjectDefinition(): GetAppCustomObjectDefinitionParam;
|
|
546
|
+
/** @returns {GetAppCustomObjectDefinitionsParam} */
|
|
547
|
+
static getAppCustomObjectDefinitions(): GetAppCustomObjectDefinitionsParam;
|
|
548
|
+
/** @returns {GetAppCustomObjectsParam} */
|
|
549
|
+
static getAppCustomObjects(): any;
|
|
550
|
+
/** @returns {GetAppJobsParam} */
|
|
551
|
+
static getAppJobs(): GetAppJobsParam;
|
|
552
|
+
/** @returns {GetAppResourcesParam} */
|
|
553
|
+
static getAppResources(): any;
|
|
370
554
|
/** @returns {GetBlogBySlugParam} */
|
|
371
555
|
static getBlogBySlug(): GetBlogBySlugParam;
|
|
372
556
|
/** @returns {GetBlogsParam} */
|
|
@@ -375,8 +559,12 @@ declare class ContentPlatformApplicationValidator {
|
|
|
375
559
|
static getComponentById(): GetComponentByIdParam;
|
|
376
560
|
/** @returns {GetDataLoadersParam} */
|
|
377
561
|
static getDataLoaders(): any;
|
|
562
|
+
/** @returns {GetDataLoadersByServiceParam} */
|
|
563
|
+
static getDataLoadersByService(): GetDataLoadersByServiceParam;
|
|
378
564
|
/** @returns {GetDefaultNavigationsParam} */
|
|
379
565
|
static getDefaultNavigations(): any;
|
|
566
|
+
/** @returns {GetDefaultSEOMarkupSchemaParam} */
|
|
567
|
+
static getDefaultSEOMarkupSchema(): GetDefaultSEOMarkupSchemaParam;
|
|
380
568
|
/** @returns {GetFaqByIdOrSlugParam} */
|
|
381
569
|
static getFaqByIdOrSlug(): GetFaqByIdOrSlugParam;
|
|
382
570
|
/** @returns {GetFaqCategoriesParam} */
|
|
@@ -409,22 +597,36 @@ declare class ContentPlatformApplicationValidator {
|
|
|
409
597
|
static getPathRedirectionRules(): GetPathRedirectionRulesParam;
|
|
410
598
|
/** @returns {GetSEOConfigurationParam} */
|
|
411
599
|
static getSEOConfiguration(): any;
|
|
600
|
+
/** @returns {GetSEOMarkupSchemaParam} */
|
|
601
|
+
static getSEOMarkupSchema(): GetSEOMarkupSchemaParam;
|
|
602
|
+
/** @returns {GetSEOMarkupSchemasParam} */
|
|
603
|
+
static getSEOMarkupSchemas(): GetSEOMarkupSchemasParam;
|
|
412
604
|
/** @returns {GetSlideshowBySlugParam} */
|
|
413
605
|
static getSlideshowBySlug(): GetSlideshowBySlugParam;
|
|
414
606
|
/** @returns {GetSlideshowsParam} */
|
|
415
607
|
static getSlideshows(): GetSlideshowsParam;
|
|
416
608
|
/** @returns {GetSupportInformationParam} */
|
|
417
609
|
static getSupportInformation(): any;
|
|
610
|
+
/** @returns {ImportAppCustomObjectEntriesParam} */
|
|
611
|
+
static importAppCustomObjectEntries(): ImportAppCustomObjectEntriesParam;
|
|
418
612
|
/** @returns {RemoveInjectableTagParam} */
|
|
419
613
|
static removeInjectableTag(): RemoveInjectableTagParam;
|
|
420
614
|
/** @returns {ResetDataLoaderParam} */
|
|
421
615
|
static resetDataLoader(): ResetDataLoaderParam;
|
|
616
|
+
/** @returns {SampleAppCustomObjectBulkEntryParam} */
|
|
617
|
+
static sampleAppCustomObjectBulkEntry(): SampleAppCustomObjectBulkEntryParam;
|
|
422
618
|
/** @returns {SelectDataLoaderParam} */
|
|
423
619
|
static selectDataLoader(): SelectDataLoaderParam;
|
|
424
620
|
/** @returns {UpdateAnnouncementParam} */
|
|
425
621
|
static updateAnnouncement(): UpdateAnnouncementParam;
|
|
426
622
|
/** @returns {UpdateAnnouncementScheduleParam} */
|
|
427
623
|
static updateAnnouncementSchedule(): UpdateAnnouncementScheduleParam;
|
|
624
|
+
/** @returns {UpdateAppCustomFieldDefinitionParam} */
|
|
625
|
+
static updateAppCustomFieldDefinition(): UpdateAppCustomFieldDefinitionParam;
|
|
626
|
+
/** @returns {UpdateAppCustomObjectParam} */
|
|
627
|
+
static updateAppCustomObject(): UpdateAppCustomObjectParam;
|
|
628
|
+
/** @returns {UpdateAppCustomObjectDefinitionParam} */
|
|
629
|
+
static updateAppCustomObjectDefinition(): UpdateAppCustomObjectDefinitionParam;
|
|
428
630
|
/** @returns {UpdateBlogParam} */
|
|
429
631
|
static updateBlog(): UpdateBlogParam;
|
|
430
632
|
/** @returns {UpdateFaqParam} */
|
|
@@ -453,7 +655,7 @@ declare class ContentPlatformApplicationValidator {
|
|
|
453
655
|
static updateSupportInformation(): UpdateSupportInformationParam;
|
|
454
656
|
}
|
|
455
657
|
declare namespace ContentPlatformApplicationValidator {
|
|
456
|
-
export { AddDataLoaderParam, AddFaqParam, AddInjectableTagParam, AddPathRedirectionRulesParam, CreateAnnouncementParam, CreateBlogParam, CreateFaqCategoryParam, CreateLandingPageParam, CreateNavigationParam, CreatePageParam, CreatePagePreviewParam, CreateSlideshowParam, DeleteAnnouncementParam, DeleteBlogParam, DeleteDataLoaderParam, DeleteFaqParam, DeleteFaqCategoryParam, DeleteLandingPageParam, DeleteNavigationParam, DeletePageParam, DeletePathRedirectionRulesParam, DeleteSlideshowParam, EditDataLoaderParam, EditInjectableTagParam, GenerateSEOTitleParam, GetAnnouncementByIdParam, GetAnnouncementsListParam, GetBlogBySlugParam, GetBlogsParam, GetComponentByIdParam, GetDataLoadersParam, GetDefaultNavigationsParam, GetFaqByIdOrSlugParam, GetFaqCategoriesParam, GetFaqCategoryBySlugOrIdParam, GetFaqsByCategoryIdOrSlugParam, GetInjectableTagsParam, GetLandingPagesParam, GetLegalInformationParam, GetNavigationBySlugParam, GetNavigationsParam, GetPageBySlugParam, GetPageMetaParam, GetPageSpecParam, GetPagesParam, GetPathRedirectionRuleParam, GetPathRedirectionRulesParam, GetSEOConfigurationParam, GetSlideshowBySlugParam, GetSlideshowsParam, GetSupportInformationParam, RemoveInjectableTagParam, ResetDataLoaderParam, SelectDataLoaderParam, UpdateAnnouncementParam, UpdateAnnouncementScheduleParam, UpdateBlogParam, UpdateFaqParam, UpdateFaqCategoryParam, UpdateInjectableTagParam, UpdateLandingPageParam, UpdateLegalInformationParam, UpdateNavigationParam, UpdatePageParam, UpdatePagePreviewParam, UpdatePathRedirectionRulesParam, UpdateSEOConfigurationParam, UpdateSlideshowParam, UpdateSupportInformationParam };
|
|
658
|
+
export { AddDataLoaderParam, AddFaqParam, AddInjectableTagParam, AddPathRedirectionRulesParam, CreateAnnouncementParam, CreateAppCustomFieldByResourceIdParam, CreateAppCustomFieldDefinitionParam, CreateAppCustomObjectParam, CreateAppCustomObjectDefinitionParam, CreateBlogParam, CreateFaqCategoryParam, CreateLandingPageParam, CreateNavigationParam, CreatePageParam, CreatePagePreviewParam, CreateSEOMarkupSchemaParam, CreateSlideshowParam, DeleteAnnouncementParam, DeleteAppCustomFieldDefinitionParam, DeleteAppCustomObjectParam, DeleteAppCustomObjectDefinitionParam, DeleteBlogParam, DeleteDataLoaderParam, DeleteFaqParam, DeleteFaqCategoryParam, DeleteLandingPageParam, DeleteNavigationParam, DeletePageParam, DeletePathRedirectionRulesParam, DeleteSEOMarkupSchemaParam, DeleteSlideshowParam, EditDataLoaderParam, EditInjectableTagParam, EditSEOMarkupSchemaParam, ExportAppCustomObjectEntriesParam, GenerateSEOTitleParam, GetAnnouncementByIdParam, GetAnnouncementsListParam, GetAppCustomFieldDefinitionParam, GetAppCustomFieldDefinitionsParam, GetAppCustomFieldTypesParam, GetAppCustomFieldsParam, GetAppCustomFieldsByResourceIdParam, GetAppCustomObjectParam, GetAppCustomObjectDefinitionParam, GetAppCustomObjectDefinitionsParam, GetAppCustomObjectsParam, GetAppJobsParam, GetAppResourcesParam, GetBlogBySlugParam, GetBlogsParam, GetComponentByIdParam, GetDataLoadersParam, GetDataLoadersByServiceParam, GetDefaultNavigationsParam, GetDefaultSEOMarkupSchemaParam, GetFaqByIdOrSlugParam, GetFaqCategoriesParam, GetFaqCategoryBySlugOrIdParam, GetFaqsByCategoryIdOrSlugParam, GetInjectableTagsParam, GetLandingPagesParam, GetLegalInformationParam, GetNavigationBySlugParam, GetNavigationsParam, GetPageBySlugParam, GetPageMetaParam, GetPageSpecParam, GetPagesParam, GetPathRedirectionRuleParam, GetPathRedirectionRulesParam, GetSEOConfigurationParam, GetSEOMarkupSchemaParam, GetSEOMarkupSchemasParam, GetSlideshowBySlugParam, GetSlideshowsParam, GetSupportInformationParam, ImportAppCustomObjectEntriesParam, RemoveInjectableTagParam, ResetDataLoaderParam, SampleAppCustomObjectBulkEntryParam, SelectDataLoaderParam, UpdateAnnouncementParam, UpdateAnnouncementScheduleParam, UpdateAppCustomFieldDefinitionParam, UpdateAppCustomObjectParam, UpdateAppCustomObjectDefinitionParam, UpdateBlogParam, UpdateFaqParam, UpdateFaqCategoryParam, UpdateInjectableTagParam, UpdateLandingPageParam, UpdateLegalInformationParam, UpdateNavigationParam, UpdatePageParam, UpdatePagePreviewParam, UpdatePathRedirectionRulesParam, UpdateSEOConfigurationParam, UpdateSlideshowParam, UpdateSupportInformationParam };
|
|
457
659
|
}
|
|
458
660
|
type AddDataLoaderParam = {
|
|
459
661
|
body: ContentPlatformModel.DataLoaderSchema;
|
|
@@ -474,6 +676,20 @@ type AddPathRedirectionRulesParam = {
|
|
|
474
676
|
type CreateAnnouncementParam = {
|
|
475
677
|
body: ContentPlatformModel.AdminAnnouncementSchema;
|
|
476
678
|
};
|
|
679
|
+
type CreateAppCustomFieldByResourceIdParam = {
|
|
680
|
+
resource: string;
|
|
681
|
+
resourceId: string;
|
|
682
|
+
body: ContentPlatformModel.CustomFieldRequestSchema;
|
|
683
|
+
};
|
|
684
|
+
type CreateAppCustomFieldDefinitionParam = {
|
|
685
|
+
body: ContentPlatformModel.CustomFieldDefinitionRequestSchema;
|
|
686
|
+
};
|
|
687
|
+
type CreateAppCustomObjectParam = {
|
|
688
|
+
body: ContentPlatformModel.CustomObjectRequestSchema;
|
|
689
|
+
};
|
|
690
|
+
type CreateAppCustomObjectDefinitionParam = {
|
|
691
|
+
body: ContentPlatformModel.CustomObjectDefinitionRequestSchema;
|
|
692
|
+
};
|
|
477
693
|
type CreateBlogParam = {
|
|
478
694
|
body: ContentPlatformModel.BlogRequest;
|
|
479
695
|
};
|
|
@@ -492,6 +708,9 @@ type CreatePageParam = {
|
|
|
492
708
|
type CreatePagePreviewParam = {
|
|
493
709
|
body: ContentPlatformModel.PageRequest;
|
|
494
710
|
};
|
|
711
|
+
type CreateSEOMarkupSchemaParam = {
|
|
712
|
+
body: ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody;
|
|
713
|
+
};
|
|
495
714
|
type CreateSlideshowParam = {
|
|
496
715
|
body: ContentPlatformModel.SlideshowRequest;
|
|
497
716
|
};
|
|
@@ -501,6 +720,15 @@ type DeleteAnnouncementParam = {
|
|
|
501
720
|
*/
|
|
502
721
|
announcementId: string;
|
|
503
722
|
};
|
|
723
|
+
type DeleteAppCustomFieldDefinitionParam = {
|
|
724
|
+
definitionId: string;
|
|
725
|
+
};
|
|
726
|
+
type DeleteAppCustomObjectParam = {
|
|
727
|
+
metaobjectId: string;
|
|
728
|
+
};
|
|
729
|
+
type DeleteAppCustomObjectDefinitionParam = {
|
|
730
|
+
definitionId: string;
|
|
731
|
+
};
|
|
504
732
|
type DeleteBlogParam = {
|
|
505
733
|
/**
|
|
506
734
|
* - ID allotted to the blog.
|
|
@@ -553,6 +781,13 @@ type DeletePathRedirectionRulesParam = {
|
|
|
553
781
|
*/
|
|
554
782
|
pathId: string;
|
|
555
783
|
};
|
|
784
|
+
type DeleteSEOMarkupSchemaParam = {
|
|
785
|
+
/**
|
|
786
|
+
* - Alphanumeric ID allotted to a SEO Markup Schema
|
|
787
|
+
* Template created within a business.
|
|
788
|
+
*/
|
|
789
|
+
id: string;
|
|
790
|
+
};
|
|
556
791
|
type DeleteSlideshowParam = {
|
|
557
792
|
/**
|
|
558
793
|
* - ID allotted to the slideshow.
|
|
@@ -573,6 +808,17 @@ type EditInjectableTagParam = {
|
|
|
573
808
|
tagId: string;
|
|
574
809
|
body: ContentPlatformModel.UpdateHandpickedSchema;
|
|
575
810
|
};
|
|
811
|
+
type EditSEOMarkupSchemaParam = {
|
|
812
|
+
/**
|
|
813
|
+
* - Alphanumeric ID allotted to a SEO Markup Schema
|
|
814
|
+
* Template created within a business.
|
|
815
|
+
*/
|
|
816
|
+
id: string;
|
|
817
|
+
body: ContentPlatformModel.SEOSchemaMarkupTemplate;
|
|
818
|
+
};
|
|
819
|
+
type ExportAppCustomObjectEntriesParam = {
|
|
820
|
+
definitionId: string;
|
|
821
|
+
};
|
|
576
822
|
type GenerateSEOTitleParam = {
|
|
577
823
|
/**
|
|
578
824
|
* - String
|
|
@@ -600,6 +846,39 @@ type GetAnnouncementsListParam = {
|
|
|
600
846
|
*/
|
|
601
847
|
pageSize?: number;
|
|
602
848
|
};
|
|
849
|
+
type GetAppCustomFieldDefinitionParam = {
|
|
850
|
+
definitionId: string;
|
|
851
|
+
};
|
|
852
|
+
type GetAppCustomFieldDefinitionsParam = {
|
|
853
|
+
pageNo: string;
|
|
854
|
+
pageSize: string;
|
|
855
|
+
resource?: string;
|
|
856
|
+
type?: string;
|
|
857
|
+
search?: string;
|
|
858
|
+
};
|
|
859
|
+
type GetAppCustomFieldsParam = {
|
|
860
|
+
resource: string;
|
|
861
|
+
};
|
|
862
|
+
type GetAppCustomFieldsByResourceIdParam = {
|
|
863
|
+
resource: string;
|
|
864
|
+
resourceId: string;
|
|
865
|
+
};
|
|
866
|
+
type GetAppCustomObjectParam = {
|
|
867
|
+
metaobjectId: string;
|
|
868
|
+
};
|
|
869
|
+
type GetAppCustomObjectDefinitionParam = {
|
|
870
|
+
definitionId: string;
|
|
871
|
+
};
|
|
872
|
+
type GetAppCustomObjectDefinitionsParam = {
|
|
873
|
+
pageNo: string;
|
|
874
|
+
pageSize: string;
|
|
875
|
+
search?: string;
|
|
876
|
+
};
|
|
877
|
+
type GetAppJobsParam = {
|
|
878
|
+
page: string;
|
|
879
|
+
pageSize: string;
|
|
880
|
+
actionType: string;
|
|
881
|
+
};
|
|
603
882
|
type GetBlogBySlugParam = {
|
|
604
883
|
/**
|
|
605
884
|
* - A short, human-readable, URL-friendly identifier of
|
|
@@ -626,6 +905,19 @@ type GetComponentByIdParam = {
|
|
|
626
905
|
*/
|
|
627
906
|
slug: string;
|
|
628
907
|
};
|
|
908
|
+
type GetDataLoadersByServiceParam = {
|
|
909
|
+
/**
|
|
910
|
+
* - Service name of the data loader..
|
|
911
|
+
*/
|
|
912
|
+
serviceName: string;
|
|
913
|
+
};
|
|
914
|
+
type GetDefaultSEOMarkupSchemaParam = {
|
|
915
|
+
/**
|
|
916
|
+
* - The type of page against which schema
|
|
917
|
+
* template was created
|
|
918
|
+
*/
|
|
919
|
+
pageType?: string;
|
|
920
|
+
};
|
|
629
921
|
type GetFaqByIdOrSlugParam = {
|
|
630
922
|
/**
|
|
631
923
|
* - ID or the slug allotted to an FAQ category.
|
|
@@ -734,6 +1026,33 @@ type GetPathRedirectionRulesParam = {
|
|
|
734
1026
|
*/
|
|
735
1027
|
pageNo?: number;
|
|
736
1028
|
};
|
|
1029
|
+
type GetSEOMarkupSchemaParam = {
|
|
1030
|
+
/**
|
|
1031
|
+
* - Alphanumeric ID allotted to a SEO Markup Schema
|
|
1032
|
+
* Template created within a business.
|
|
1033
|
+
*/
|
|
1034
|
+
id: string;
|
|
1035
|
+
};
|
|
1036
|
+
type GetSEOMarkupSchemasParam = {
|
|
1037
|
+
/**
|
|
1038
|
+
* - Title of the seo schema.
|
|
1039
|
+
*/
|
|
1040
|
+
title?: string;
|
|
1041
|
+
/**
|
|
1042
|
+
* - Boolean value for fetching seo schema.
|
|
1043
|
+
*/
|
|
1044
|
+
active?: string;
|
|
1045
|
+
/**
|
|
1046
|
+
* - The page number to navigate through the given
|
|
1047
|
+
* set of results. Default value is 1.
|
|
1048
|
+
*/
|
|
1049
|
+
pageNo?: number;
|
|
1050
|
+
/**
|
|
1051
|
+
* - The number of items to retrieve in each page.
|
|
1052
|
+
* Default value is 10.
|
|
1053
|
+
*/
|
|
1054
|
+
pageSize?: number;
|
|
1055
|
+
};
|
|
737
1056
|
type GetSlideshowBySlugParam = {
|
|
738
1057
|
/**
|
|
739
1058
|
* - A short, human-readable, URL-friendly identifier of
|
|
@@ -763,6 +1082,10 @@ type GetSlideshowsParam = {
|
|
|
763
1082
|
*/
|
|
764
1083
|
pageSize?: number;
|
|
765
1084
|
};
|
|
1085
|
+
type ImportAppCustomObjectEntriesParam = {
|
|
1086
|
+
definitionId: string;
|
|
1087
|
+
body: ContentPlatformModel.CustomObjectBulkSchema;
|
|
1088
|
+
};
|
|
766
1089
|
type RemoveInjectableTagParam = {
|
|
767
1090
|
body: ContentPlatformModel.RemoveHandpickedSchema;
|
|
768
1091
|
};
|
|
@@ -776,6 +1099,9 @@ type ResetDataLoaderParam = {
|
|
|
776
1099
|
*/
|
|
777
1100
|
operationId: string;
|
|
778
1101
|
};
|
|
1102
|
+
type SampleAppCustomObjectBulkEntryParam = {
|
|
1103
|
+
definitionId: string;
|
|
1104
|
+
};
|
|
779
1105
|
type SelectDataLoaderParam = {
|
|
780
1106
|
/**
|
|
781
1107
|
* - ID allotted to the data loader.
|
|
@@ -796,6 +1122,18 @@ type UpdateAnnouncementScheduleParam = {
|
|
|
796
1122
|
announcementId: string;
|
|
797
1123
|
body: ContentPlatformModel.ScheduleSchema;
|
|
798
1124
|
};
|
|
1125
|
+
type UpdateAppCustomFieldDefinitionParam = {
|
|
1126
|
+
definitionId: string;
|
|
1127
|
+
body: ContentPlatformModel.CustomFieldDefinitionRequestSchema;
|
|
1128
|
+
};
|
|
1129
|
+
type UpdateAppCustomObjectParam = {
|
|
1130
|
+
metaobjectId: string;
|
|
1131
|
+
body: ContentPlatformModel.CustomObjectRequestSchema;
|
|
1132
|
+
};
|
|
1133
|
+
type UpdateAppCustomObjectDefinitionParam = {
|
|
1134
|
+
definitionId: string;
|
|
1135
|
+
body: ContentPlatformModel.CustomObjectDefinitionUpdateRequestSchema;
|
|
1136
|
+
};
|
|
799
1137
|
type UpdateBlogParam = {
|
|
800
1138
|
/**
|
|
801
1139
|
* - ID allotted to the blog.
|
|
@@ -876,6 +1214,9 @@ type UpdateSlideshowParam = {
|
|
|
876
1214
|
type UpdateSupportInformationParam = {
|
|
877
1215
|
body: ContentPlatformModel.Support;
|
|
878
1216
|
};
|
|
1217
|
+
type GetAppCustomFieldTypesParam = any;
|
|
1218
|
+
type GetAppCustomObjectsParam = any;
|
|
1219
|
+
type GetAppResourcesParam = any;
|
|
879
1220
|
type GetDataLoadersParam = any;
|
|
880
1221
|
type GetDefaultNavigationsParam = any;
|
|
881
1222
|
type GetFaqCategoriesParam = any;
|