@gofynd/fdk-client-javascript 1.4.15-beta.14 → 1.4.15-beta.15
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 +23 -26
- package/package.json +5 -1
- package/sdk/application/ApplicationClient.d.ts +5 -6
- package/sdk/application/ApplicationClient.js +24 -20
- package/sdk/application/Cart/CartApplicationClient.d.ts +133 -83
- package/sdk/application/Cart/CartApplicationClient.js +444 -76
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +132 -114
- package/sdk/application/Catalog/CatalogApplicationClient.js +209 -126
- package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
- package/sdk/application/Common/CommonApplicationClient.js +4 -4
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +3 -3
- package/sdk/application/Communication/CommunicationApplicationClient.js +3 -3
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +58 -36
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +73 -29
- package/sdk/application/Content/ContentApplicationClient.d.ts +95 -66
- package/sdk/application/Content/ContentApplicationClient.js +274 -111
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +11 -11
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +10 -10
- package/sdk/application/Finance/FinanceApplicationClient.d.ts +29 -0
- package/sdk/application/Finance/FinanceApplicationClient.js +111 -0
- package/sdk/application/Lead/LeadApplicationClient.d.ts +7 -7
- package/sdk/application/Lead/LeadApplicationClient.js +6 -6
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +37 -57
- package/sdk/application/Logistic/LogisticApplicationClient.js +117 -180
- package/sdk/application/Order/OrderApplicationClient.d.ts +63 -21
- package/sdk/application/Order/OrderApplicationClient.js +217 -17
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +179 -149
- package/sdk/application/Payment/PaymentApplicationClient.js +301 -167
- package/sdk/application/Share/ShareApplicationClient.d.ts +7 -7
- package/sdk/application/Share/ShareApplicationClient.js +7 -7
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +7 -7
- package/sdk/application/Theme/ThemeApplicationClient.js +10 -6
- package/sdk/application/User/UserApplicationClient.d.ts +103 -53
- package/sdk/application/User/UserApplicationClient.js +308 -49
- package/sdk/common/AxiosHelper.js +11 -4
- package/sdk/common/Constant.d.ts +27 -4
- package/sdk/common/Constant.js +33 -6
- package/sdk/common/utils.d.ts +10 -0
- package/sdk/common/utils.js +24 -3
- package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +46 -16
- package/sdk/partner/FileStorage/FileStoragePartnerClient.js +266 -40
- package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +163 -19
- package/sdk/partner/FileStorage/FileStoragePartnerModel.js +158 -14
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +5 -2
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +23 -7
- package/sdk/partner/Lead/LeadPartnerClient.d.ts +9 -9
- package/sdk/partner/Lead/LeadPartnerClient.js +9 -9
- package/sdk/partner/Lead/LeadPartnerModel.d.ts +14 -9
- package/sdk/partner/Lead/LeadPartnerModel.js +19 -17
- package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +264 -49
- package/sdk/partner/Logistics/LogisticsPartnerClient.js +2116 -252
- package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +2256 -258
- package/sdk/partner/Logistics/LogisticsPartnerModel.js +1187 -230
- package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +21 -1
- package/sdk/partner/Logistics/LogisticsPartnerValidator.js +218 -13
- package/sdk/partner/PartnerClient.d.ts +5 -2
- package/sdk/partner/PartnerClient.js +21 -7
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +32 -34
- package/sdk/partner/Theme/ThemePartnerClient.js +42 -44
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +142 -43
- package/sdk/partner/Theme/ThemePartnerModel.js +129 -44
- package/sdk/partner/Theme/ThemePartnerValidator.js +4 -4
- package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +83 -27
- package/sdk/partner/Webhook/WebhookPartnerClient.js +446 -27
- package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +920 -185
- package/sdk/partner/Webhook/WebhookPartnerModel.js +462 -154
- package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +5 -0
- package/sdk/partner/Webhook/WebhookPartnerValidator.js +41 -3
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +8 -7
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +17 -11
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +4 -1
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +68 -13
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +44 -6
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +3 -33
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +4 -244
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +49 -145
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +20 -171
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -39
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +0 -35
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +15 -15
- package/sdk/platform/Billing/BillingPlatformClient.js +18 -18
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +443 -388
- package/sdk/platform/Billing/BillingPlatformModel.js +280 -263
- package/sdk/platform/Billing/BillingPlatformValidator.d.ts +16 -18
- package/sdk/platform/Billing/BillingPlatformValidator.js +8 -9
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +266 -203
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +1446 -500
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +729 -100
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +446 -82
- package/sdk/platform/Cart/CartPlatformModel.d.ts +6927 -1396
- package/sdk/platform/Cart/CartPlatformModel.js +3065 -1316
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +433 -248
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +1662 -559
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +464 -159
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +304 -87
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +383 -234
- package/sdk/platform/Catalog/CatalogPlatformClient.js +2475 -1557
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +9573 -2678
- package/sdk/platform/Catalog/CatalogPlatformModel.js +5033 -1973
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +364 -117
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +281 -104
- package/sdk/platform/Common/CommonPlatformClient.d.ts +5 -4
- package/sdk/platform/Common/CommonPlatformClient.js +6 -5
- package/sdk/platform/Common/CommonPlatformModel.d.ts +36 -25
- package/sdk/platform/Common/CommonPlatformModel.js +25 -14
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +80 -153
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +102 -541
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +36 -49
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +20 -60
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +1 -1
- package/sdk/platform/Communication/CommunicationPlatformClient.js +1 -1
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +189 -43
- package/sdk/platform/Communication/CommunicationPlatformModel.js +165 -42
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +58 -81
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +68 -116
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +291 -249
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +243 -234
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +12 -12
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +12 -12
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +78 -65
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +101 -88
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +20 -20
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +19 -19
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +68 -34
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +174 -41
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +667 -244
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +474 -155
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +37 -9
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +27 -8
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +366 -280
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +1435 -753
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +323 -223
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +335 -205
- package/sdk/platform/Content/ContentPlatformClient.d.ts +304 -106
- package/sdk/platform/Content/ContentPlatformClient.js +1842 -450
- package/sdk/platform/Content/ContentPlatformModel.d.ts +2582 -566
- package/sdk/platform/Content/ContentPlatformModel.js +1426 -558
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +293 -114
- package/sdk/platform/Content/ContentPlatformValidator.js +328 -101
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +59 -23
- package/sdk/platform/Discount/DiscountPlatformClient.js +84 -23
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +403 -110
- package/sdk/platform/Discount/DiscountPlatformModel.js +121 -107
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +56 -36
- package/sdk/platform/Discount/DiscountPlatformValidator.js +29 -19
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +12 -110
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +14 -684
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +5 -94
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +4 -115
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +20 -20
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +22 -22
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +90 -920
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +53 -949
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +10 -10
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +10 -10
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +11 -11
- package/sdk/platform/Lead/LeadPlatformClient.js +11 -11
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +14 -9
- package/sdk/platform/Lead/LeadPlatformModel.js +20 -18
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +56 -9
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +340 -10
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +128 -24
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +81 -19
- package/sdk/platform/Order/OrderPlatformClient.d.ts +517 -160
- package/sdk/platform/Order/OrderPlatformClient.js +1623 -384
- package/sdk/platform/Order/OrderPlatformModel.d.ts +10372 -1587
- package/sdk/platform/Order/OrderPlatformModel.js +5726 -1512
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +539 -123
- package/sdk/platform/Order/OrderPlatformValidator.js +323 -92
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +8 -6
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +11 -9
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +6 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +3 -2
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +77 -25
- package/sdk/platform/Partner/PartnerPlatformModel.js +32 -21
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +144 -219
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +307 -796
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +86 -121
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +80 -138
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +30 -30
- package/sdk/platform/Payment/PaymentPlatformClient.js +30 -30
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +901 -761
- package/sdk/platform/Payment/PaymentPlatformModel.js +663 -583
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +8 -8
- package/sdk/platform/Payment/PaymentPlatformValidator.js +8 -8
- package/sdk/platform/PlatformApplicationClient.d.ts +0 -2
- package/sdk/platform/PlatformApplicationClient.js +0 -4
- package/sdk/platform/PlatformClient.d.ts +5 -4
- package/sdk/platform/PlatformClient.js +32 -22
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +526 -69
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +3337 -337
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +603 -38
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +529 -32
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +184 -133
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +780 -491
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +9408 -1666
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +5720 -1765
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +257 -180
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +185 -127
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +7 -7
- package/sdk/platform/Share/SharePlatformApplicationClient.js +7 -7
- package/sdk/platform/Share/SharePlatformModel.d.ts +45 -9
- package/sdk/platform/Share/SharePlatformModel.js +31 -6
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +26 -26
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +38 -29
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +18 -3
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +10 -2
- package/sdk/platform/Theme/ThemePlatformClient.d.ts +4 -4
- package/sdk/platform/Theme/ThemePlatformClient.js +4 -4
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +103 -17
- package/sdk/platform/Theme/ThemePlatformModel.js +92 -23
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +167 -45
- package/sdk/platform/User/UserPlatformApplicationClient.js +950 -67
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +189 -3
- package/sdk/platform/User/UserPlatformApplicationValidator.js +157 -3
- package/sdk/platform/User/UserPlatformModel.d.ts +880 -47
- package/sdk/platform/User/UserPlatformModel.js +607 -46
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +33 -86
- package/sdk/platform/Webhook/WebhookPlatformClient.js +79 -474
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +861 -422
- package/sdk/platform/Webhook/WebhookPlatformModel.js +469 -391
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +10 -55
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +12 -72
- package/sdk/platform/index.d.ts +0 -2
- package/sdk/platform/index.js +0 -4
- package/sdk/public/Catalog/CatalogPublicClient.d.ts +22 -0
- package/sdk/public/Catalog/CatalogPublicClient.js +133 -0
- package/sdk/public/Catalog/CatalogPublicModel.d.ts +158 -0
- package/sdk/public/Catalog/CatalogPublicModel.js +116 -0
- package/sdk/public/Catalog/CatalogPublicValidator.d.ts +55 -0
- package/sdk/public/Catalog/CatalogPublicValidator.js +35 -0
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +5 -4
- package/sdk/public/Configuration/ConfigurationPublicClient.js +9 -8
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +41 -21
- package/sdk/public/Configuration/ConfigurationPublicModel.js +28 -12
- package/sdk/public/Content/ContentPublicClient.d.ts +145 -2
- package/sdk/public/Content/ContentPublicClient.js +1067 -17
- package/sdk/public/Content/ContentPublicModel.d.ts +704 -3
- package/sdk/public/Content/ContentPublicModel.js +751 -3
- package/sdk/public/Content/ContentPublicValidator.d.ts +94 -3
- package/sdk/public/Content/ContentPublicValidator.js +119 -2
- package/sdk/public/Partner/PartnerPublicClient.d.ts +1 -1
- package/sdk/public/Partner/PartnerPublicClient.js +1 -1
- package/sdk/public/Partner/PartnerPublicModel.d.ts +248 -72
- package/sdk/public/Partner/PartnerPublicModel.js +81 -71
- package/sdk/public/Partner/PartnerPublicValidator.d.ts +2 -2
- package/sdk/public/Partner/PartnerPublicValidator.js +1 -1
- package/sdk/public/PublicClient.d.ts +5 -2
- package/sdk/public/PublicClient.js +16 -6
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +13 -13
- package/sdk/public/Webhook/WebhookPublicClient.js +13 -13
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +249 -67
- package/sdk/public/Webhook/WebhookPublicModel.js +81 -61
- package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
- package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
- package/sdk/public/index.d.ts +1 -0
- package/sdk/public/index.js +2 -0
- package/utility.d.ts +3 -0
- package/utility.js +7 -0
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +0 -79
- package/sdk/application/Rewards/RewardsApplicationClient.js +0 -315
- package/sdk/application/Webhook/WebhookApplicationClient.d.ts +0 -19
- package/sdk/application/Webhook/WebhookApplicationClient.js +0 -72
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +0 -320
- package/sdk/platform/Finance/FinancePlatformClient.js +0 -2333
- package/sdk/platform/Finance/FinancePlatformModel.d.ts +0 -2890
- package/sdk/platform/Finance/FinancePlatformModel.js +0 -2148
- package/sdk/platform/Finance/FinancePlatformValidator.d.ts +0 -284
- package/sdk/platform/Finance/FinancePlatformValidator.js +0 -354
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +0 -136
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +0 -976
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +0 -152
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +0 -157
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +0 -382
- package/sdk/platform/Rewards/RewardsPlatformModel.js +0 -408
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
export = ContentPlatformApplicationValidator;
|
|
2
|
+
/**
|
|
3
|
+
* @typedef AddApplicationLanguageParam
|
|
4
|
+
* @property {ContentPlatformModel.ApplicationLanguageCreate} body
|
|
5
|
+
*/
|
|
2
6
|
/**
|
|
3
7
|
* @typedef AddDataLoaderParam
|
|
4
8
|
* @property {ContentPlatformModel.DataLoaderSchema} body
|
|
@@ -17,30 +21,34 @@ export = ContentPlatformApplicationValidator;
|
|
|
17
21
|
* @property {ContentPlatformModel.PathMappingSchema} body
|
|
18
22
|
*/
|
|
19
23
|
/**
|
|
20
|
-
* @typedef
|
|
21
|
-
* @property {ContentPlatformModel.
|
|
24
|
+
* @typedef BulkUnPublishApplicationLanguageParam
|
|
25
|
+
* @property {ContentPlatformModel.unPublishApplicationLanguage} body
|
|
22
26
|
*/
|
|
23
27
|
/**
|
|
24
|
-
* @typedef
|
|
25
|
-
* @property {
|
|
26
|
-
* @property {string} resourceId
|
|
27
|
-
* @property {ContentPlatformModel.CustomFieldRequestSchema} body
|
|
28
|
+
* @typedef CreateAnnouncementParam
|
|
29
|
+
* @property {ContentPlatformModel.AdminAnnouncementSchema} body
|
|
28
30
|
*/
|
|
29
31
|
/**
|
|
30
32
|
* @typedef CreateAppCustomFieldDefinitionParam
|
|
33
|
+
* @property {string} resource
|
|
31
34
|
* @property {ContentPlatformModel.CustomFieldDefinitionRequestSchema} body
|
|
32
35
|
*/
|
|
33
36
|
/**
|
|
34
|
-
* @typedef
|
|
35
|
-
* @property {
|
|
37
|
+
* @typedef CreateAppCustomObjectBySlugParam
|
|
38
|
+
* @property {string} definitionSlug
|
|
39
|
+
* @property {ContentPlatformModel.CustomObjectRequestSchemaWithoutId} body
|
|
36
40
|
*/
|
|
37
41
|
/**
|
|
38
42
|
* @typedef CreateAppCustomObjectDefinitionParam
|
|
39
43
|
* @property {ContentPlatformModel.CustomObjectDefinitionRequestSchema} body
|
|
40
44
|
*/
|
|
45
|
+
/**
|
|
46
|
+
* @typedef CreateApplicationResourceTranslationParam
|
|
47
|
+
* @property {ContentPlatformModel.ResourceTranslationCreate} body
|
|
48
|
+
*/
|
|
41
49
|
/**
|
|
42
50
|
* @typedef CreateBlogParam
|
|
43
|
-
* @property {ContentPlatformModel.
|
|
51
|
+
* @property {ContentPlatformModel.BlogPayload} body
|
|
44
52
|
*/
|
|
45
53
|
/**
|
|
46
54
|
* @typedef CreateFaqCategoryParam
|
|
@@ -52,39 +60,46 @@ export = ContentPlatformApplicationValidator;
|
|
|
52
60
|
*/
|
|
53
61
|
/**
|
|
54
62
|
* @typedef CreateNavigationParam
|
|
55
|
-
* @property {ContentPlatformModel.
|
|
63
|
+
* @property {ContentPlatformModel.NavigationPayload} body
|
|
56
64
|
*/
|
|
57
65
|
/**
|
|
58
66
|
* @typedef CreatePageParam
|
|
59
|
-
* @property {ContentPlatformModel.
|
|
60
|
-
*/
|
|
61
|
-
/**
|
|
62
|
-
* @typedef CreatePagePreviewParam
|
|
63
|
-
* @property {ContentPlatformModel.PageRequest} body
|
|
67
|
+
* @property {ContentPlatformModel.PagePayload} body
|
|
64
68
|
*/
|
|
65
69
|
/**
|
|
66
70
|
* @typedef CreateSEOMarkupSchemaParam
|
|
67
71
|
* @property {ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody} body
|
|
68
72
|
*/
|
|
69
73
|
/**
|
|
70
|
-
* @typedef
|
|
71
|
-
* @property {ContentPlatformModel.
|
|
74
|
+
* @typedef CreateTranslateUILabelsParam
|
|
75
|
+
* @property {ContentPlatformModel.TranslateUiLabelsCreate} body
|
|
72
76
|
*/
|
|
73
77
|
/**
|
|
74
78
|
* @typedef DeleteAnnouncementParam
|
|
75
79
|
* @property {string} announcementId - ID allotted to the announcement.
|
|
76
80
|
*/
|
|
77
81
|
/**
|
|
78
|
-
* @typedef
|
|
79
|
-
* @property {string}
|
|
82
|
+
* @typedef DeleteAppCustomFieldDefinitionBySlugParam
|
|
83
|
+
* @property {string} slug
|
|
84
|
+
* @property {string} resource
|
|
85
|
+
* @property {string} namespace
|
|
86
|
+
*/
|
|
87
|
+
/**
|
|
88
|
+
* @typedef DeleteAppCustomObjectBySlugParam
|
|
89
|
+
* @property {string} definitionSlug
|
|
90
|
+
* @property {string} slug
|
|
80
91
|
*/
|
|
81
92
|
/**
|
|
82
|
-
* @typedef
|
|
83
|
-
* @property {string}
|
|
93
|
+
* @typedef DeleteAppCustomObjectDefinitionBySlugParam
|
|
94
|
+
* @property {string} slug
|
|
84
95
|
*/
|
|
85
96
|
/**
|
|
86
|
-
* @typedef
|
|
87
|
-
* @property {string}
|
|
97
|
+
* @typedef DeleteApplicationLanguageParam
|
|
98
|
+
* @property {string} locale
|
|
99
|
+
*/
|
|
100
|
+
/**
|
|
101
|
+
* @typedef DeleteApplicationResourceTranslationParam
|
|
102
|
+
* @property {string} id
|
|
88
103
|
*/
|
|
89
104
|
/**
|
|
90
105
|
* @typedef DeleteBlogParam
|
|
@@ -124,10 +139,6 @@ export = ContentPlatformApplicationValidator;
|
|
|
124
139
|
* @property {string} id - Alphanumeric ID allotted to a SEO Markup Schema
|
|
125
140
|
* Template created within a business.
|
|
126
141
|
*/
|
|
127
|
-
/**
|
|
128
|
-
* @typedef DeleteSlideshowParam
|
|
129
|
-
* @property {string} id - ID allotted to the slideshow.
|
|
130
|
-
*/
|
|
131
142
|
/**
|
|
132
143
|
* @typedef EditDataLoaderParam
|
|
133
144
|
* @property {string} dataLoaderId - ID allotted to the data loader.
|
|
@@ -145,8 +156,8 @@ export = ContentPlatformApplicationValidator;
|
|
|
145
156
|
* @property {ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody} body
|
|
146
157
|
*/
|
|
147
158
|
/**
|
|
148
|
-
* @typedef
|
|
149
|
-
* @property {string}
|
|
159
|
+
* @typedef ExportAppCustomObjectEntriesBySlugParam
|
|
160
|
+
* @property {string} slug
|
|
150
161
|
*/
|
|
151
162
|
/**
|
|
152
163
|
* @typedef GenerateSEOTitleParam
|
|
@@ -167,34 +178,45 @@ export = ContentPlatformApplicationValidator;
|
|
|
167
178
|
* Default value is 10.
|
|
168
179
|
*/
|
|
169
180
|
/**
|
|
170
|
-
* @typedef
|
|
171
|
-
* @property {string}
|
|
181
|
+
* @typedef GetAppCustomFieldDefinitionByResourceParam
|
|
182
|
+
* @property {string} pageNo
|
|
183
|
+
* @property {string} pageSize
|
|
184
|
+
* @property {string} resource
|
|
185
|
+
* @property {string} [types]
|
|
186
|
+
* @property {string} [search]
|
|
187
|
+
* @property {string} [slugs]
|
|
188
|
+
* @property {string} [namespaces]
|
|
189
|
+
*/
|
|
190
|
+
/**
|
|
191
|
+
* @typedef GetAppCustomFieldDefinitionBySlugParam
|
|
192
|
+
* @property {string} slug
|
|
193
|
+
* @property {string} resource
|
|
194
|
+
* @property {string} namespace
|
|
172
195
|
*/
|
|
173
196
|
/**
|
|
174
197
|
* @typedef GetAppCustomFieldDefinitionsParam
|
|
175
198
|
* @property {string} pageNo
|
|
176
199
|
* @property {string} pageSize
|
|
177
|
-
* @property {string} [
|
|
178
|
-
* @property {string} [
|
|
200
|
+
* @property {string} [resources]
|
|
201
|
+
* @property {string} [types]
|
|
179
202
|
* @property {string} [search]
|
|
203
|
+
* @property {string} [slugs]
|
|
204
|
+
* @property {string} [namespaces]
|
|
180
205
|
*/
|
|
181
206
|
/** @typedef GetAppCustomFieldTypesParam */
|
|
182
207
|
/**
|
|
183
|
-
* @typedef
|
|
184
|
-
* @property {string} resource
|
|
185
|
-
*/
|
|
186
|
-
/**
|
|
187
|
-
* @typedef GetAppCustomFieldsByResourceIdParam
|
|
208
|
+
* @typedef GetAppCustomFieldsByResourceSlugParam
|
|
188
209
|
* @property {string} resource
|
|
189
|
-
* @property {string}
|
|
210
|
+
* @property {string} resourceSlug
|
|
190
211
|
*/
|
|
191
212
|
/**
|
|
192
|
-
* @typedef
|
|
193
|
-
* @property {string}
|
|
213
|
+
* @typedef GetAppCustomObjectBySlugParam
|
|
214
|
+
* @property {string} definitionSlug
|
|
215
|
+
* @property {string} slug
|
|
194
216
|
*/
|
|
195
217
|
/**
|
|
196
|
-
* @typedef
|
|
197
|
-
* @property {string}
|
|
218
|
+
* @typedef GetAppCustomObjectDefinitionBySlugParam
|
|
219
|
+
* @property {string} slug
|
|
198
220
|
*/
|
|
199
221
|
/**
|
|
200
222
|
* @typedef GetAppCustomObjectDefinitionsParam
|
|
@@ -203,10 +225,10 @@ export = ContentPlatformApplicationValidator;
|
|
|
203
225
|
* @property {string} [search]
|
|
204
226
|
*/
|
|
205
227
|
/**
|
|
206
|
-
* @typedef
|
|
207
|
-
* @property {string} [definitionId]
|
|
228
|
+
* @typedef GetAppCustomObjectsBySlugParam
|
|
208
229
|
* @property {string} pageNo
|
|
209
230
|
* @property {string} pageSize
|
|
231
|
+
* @property {string} definitionSlug
|
|
210
232
|
*/
|
|
211
233
|
/**
|
|
212
234
|
* @typedef GetAppJobsParam
|
|
@@ -215,6 +237,13 @@ export = ContentPlatformApplicationValidator;
|
|
|
215
237
|
* @property {string} actionType
|
|
216
238
|
*/
|
|
217
239
|
/** @typedef GetAppResourcesParam */
|
|
240
|
+
/** @typedef GetApplicationLanguagesParam */
|
|
241
|
+
/**
|
|
242
|
+
* @typedef GetApplicationResourceTranslationsParam
|
|
243
|
+
* @property {string} locale
|
|
244
|
+
* @property {string} type
|
|
245
|
+
* @property {string} resourceId
|
|
246
|
+
*/
|
|
218
247
|
/**
|
|
219
248
|
* @typedef GetBlogBySlugParam
|
|
220
249
|
* @property {string} slug - A short, human-readable, URL-friendly identifier of
|
|
@@ -240,8 +269,8 @@ export = ContentPlatformApplicationValidator;
|
|
|
240
269
|
/** @typedef GetDefaultNavigationsParam */
|
|
241
270
|
/**
|
|
242
271
|
* @typedef GetDefaultSEOMarkupSchemaParam
|
|
243
|
-
* @property {
|
|
244
|
-
* template was created
|
|
272
|
+
* @property {ContentPlatformModel.PageType} [pageType] - The type of page
|
|
273
|
+
* against which schema template was created
|
|
245
274
|
*/
|
|
246
275
|
/**
|
|
247
276
|
* @typedef GetFaqByIdOrSlugParam
|
|
@@ -265,6 +294,7 @@ export = ContentPlatformApplicationValidator;
|
|
|
265
294
|
/**
|
|
266
295
|
* @typedef GetInjectableTagsParam
|
|
267
296
|
* @property {boolean} [all] - Get all tags irrespective of the creator of tags
|
|
297
|
+
* @property {string} [search] - Keyword to filter and find tags by name.
|
|
268
298
|
*/
|
|
269
299
|
/**
|
|
270
300
|
* @typedef GetLandingPagesParam
|
|
@@ -278,8 +308,8 @@ export = ContentPlatformApplicationValidator;
|
|
|
278
308
|
* @typedef GetNavigationBySlugParam
|
|
279
309
|
* @property {string} slug - A short, human-readable, URL-friendly identifier of
|
|
280
310
|
* a navigation. You can get slug value of a navigation from `getNavigations` API.
|
|
281
|
-
* @property {string} devicePlatform - Filter navigations by platform.
|
|
282
|
-
* Acceptable values are: web, android, ios
|
|
311
|
+
* @property {string} [devicePlatform] - Filter navigations by platform.
|
|
312
|
+
* Acceptable values are: web, android, ios.
|
|
283
313
|
*/
|
|
284
314
|
/**
|
|
285
315
|
* @typedef GetNavigationsParam
|
|
@@ -330,26 +360,22 @@ export = ContentPlatformApplicationValidator;
|
|
|
330
360
|
* @property {number} [pageSize] - The number of items to retrieve in each page.
|
|
331
361
|
* Default value is 10.
|
|
332
362
|
*/
|
|
363
|
+
/** @typedef GetSupportInformationParam */
|
|
364
|
+
/** @typedef GetTagsTemplateParam */
|
|
333
365
|
/**
|
|
334
|
-
* @typedef
|
|
335
|
-
* @property {string}
|
|
336
|
-
*
|
|
337
|
-
* @property {string}
|
|
338
|
-
*
|
|
366
|
+
* @typedef GetTranslateUILabelsParam
|
|
367
|
+
* @property {string} [templateThemeId] - Unique id of template theme
|
|
368
|
+
* @property {string} [themeId] - Unique id of theme
|
|
369
|
+
* @property {string} [locale] - Multilingual locale
|
|
370
|
+
* @property {string} [type] - Filter Translate Ui Labels by type
|
|
339
371
|
*/
|
|
340
372
|
/**
|
|
341
|
-
* @typedef
|
|
342
|
-
* @property {string}
|
|
343
|
-
* values are: web, android, ios and all
|
|
344
|
-
* @property {number} [pageNo] - The page number to navigate through the given
|
|
345
|
-
* set of results. Default value is 1.
|
|
346
|
-
* @property {number} [pageSize] - The number of items to retrieve in each page.
|
|
347
|
-
* Default value is 10.
|
|
373
|
+
* @typedef GetTranslateUILabelsByIdParam
|
|
374
|
+
* @property {string} id - ID of the Translate Ui Labels
|
|
348
375
|
*/
|
|
349
|
-
/** @typedef GetSupportInformationParam */
|
|
350
376
|
/**
|
|
351
|
-
* @typedef
|
|
352
|
-
* @property {string}
|
|
377
|
+
* @typedef ImportAppCustomObjectEntriesBySlugParam
|
|
378
|
+
* @property {string} slug
|
|
353
379
|
* @property {ContentPlatformModel.CustomObjectBulkSchema} body
|
|
354
380
|
*/
|
|
355
381
|
/**
|
|
@@ -362,8 +388,8 @@ export = ContentPlatformApplicationValidator;
|
|
|
362
388
|
* @property {string} operationId - Name of operation id of the service.
|
|
363
389
|
*/
|
|
364
390
|
/**
|
|
365
|
-
* @typedef
|
|
366
|
-
* @property {string}
|
|
391
|
+
* @typedef SampleAppCustomObjectBulkEntryBySlugParam
|
|
392
|
+
* @property {string} slug
|
|
367
393
|
*/
|
|
368
394
|
/**
|
|
369
395
|
* @typedef SelectDataLoaderParam
|
|
@@ -380,24 +406,43 @@ export = ContentPlatformApplicationValidator;
|
|
|
380
406
|
* @property {ContentPlatformModel.ScheduleSchema} body
|
|
381
407
|
*/
|
|
382
408
|
/**
|
|
383
|
-
* @typedef
|
|
384
|
-
* @property {string}
|
|
409
|
+
* @typedef UpdateAppCustomFieldByResourceSlugParam
|
|
410
|
+
* @property {string} resource
|
|
411
|
+
* @property {string} resourceSlug
|
|
412
|
+
* @property {ContentPlatformModel.CustomFieldRequestSchema} body
|
|
413
|
+
*/
|
|
414
|
+
/**
|
|
415
|
+
* @typedef UpdateAppCustomFieldDefinitionBySlugParam
|
|
416
|
+
* @property {string} slug
|
|
417
|
+
* @property {string} resource
|
|
418
|
+
* @property {string} namespace
|
|
385
419
|
* @property {ContentPlatformModel.CustomFieldDefinitionRequestSchema} body
|
|
386
420
|
*/
|
|
387
421
|
/**
|
|
388
|
-
* @typedef
|
|
389
|
-
* @property {string}
|
|
390
|
-
* @property {
|
|
422
|
+
* @typedef UpdateAppCustomObjectBySlugParam
|
|
423
|
+
* @property {string} definitionSlug
|
|
424
|
+
* @property {string} slug
|
|
425
|
+
* @property {ContentPlatformModel.CustomObjectRequestSchemaWithoutId} body
|
|
391
426
|
*/
|
|
392
427
|
/**
|
|
393
|
-
* @typedef
|
|
394
|
-
* @property {string}
|
|
428
|
+
* @typedef UpdateAppCustomObjectDefinitionBySlugParam
|
|
429
|
+
* @property {string} slug
|
|
395
430
|
* @property {ContentPlatformModel.CustomObjectDefinitionUpdateRequestSchema} body
|
|
396
431
|
*/
|
|
432
|
+
/**
|
|
433
|
+
* @typedef UpdateApplicationLanguageStatusParam
|
|
434
|
+
* @property {string} locale
|
|
435
|
+
* @property {ContentPlatformModel.ApplicationLanguageUpdate} body
|
|
436
|
+
*/
|
|
437
|
+
/**
|
|
438
|
+
* @typedef UpdateApplicationResourceTranslationParam
|
|
439
|
+
* @property {string} id
|
|
440
|
+
* @property {ContentPlatformModel.ResourceTranslationUpdate} body
|
|
441
|
+
*/
|
|
397
442
|
/**
|
|
398
443
|
* @typedef UpdateBlogParam
|
|
399
444
|
* @property {string} id - ID allotted to the blog.
|
|
400
|
-
* @property {ContentPlatformModel.
|
|
445
|
+
* @property {ContentPlatformModel.BlogPayload} body
|
|
401
446
|
*/
|
|
402
447
|
/**
|
|
403
448
|
* @typedef UpdateFaqParam
|
|
@@ -410,10 +455,6 @@ export = ContentPlatformApplicationValidator;
|
|
|
410
455
|
* @property {string} id - ID allotted to an FAQ category.
|
|
411
456
|
* @property {ContentPlatformModel.UpdateFaqCategoryRequestSchema} body
|
|
412
457
|
*/
|
|
413
|
-
/**
|
|
414
|
-
* @typedef UpdateInjectableTagParam
|
|
415
|
-
* @property {ContentPlatformModel.CreateTagRequestSchema} body
|
|
416
|
-
*/
|
|
417
458
|
/**
|
|
418
459
|
* @typedef UpdateLandingPageParam
|
|
419
460
|
* @property {string} id - ID allotted to a landing page.
|
|
@@ -426,7 +467,7 @@ export = ContentPlatformApplicationValidator;
|
|
|
426
467
|
/**
|
|
427
468
|
* @typedef UpdateNavigationParam
|
|
428
469
|
* @property {string} id - ID allotted to the navigation.
|
|
429
|
-
* @property {ContentPlatformModel.
|
|
470
|
+
* @property {ContentPlatformModel.NavigationPayload} body
|
|
430
471
|
*/
|
|
431
472
|
/**
|
|
432
473
|
* @typedef UpdatePageParam
|
|
@@ -437,7 +478,7 @@ export = ContentPlatformApplicationValidator;
|
|
|
437
478
|
* @typedef UpdatePagePreviewParam
|
|
438
479
|
* @property {string} slug - A short, human-readable, URL-friendly identifier of
|
|
439
480
|
* a page. You can get slug value of a page from `getPages` API.
|
|
440
|
-
* @property {ContentPlatformModel.
|
|
481
|
+
* @property {ContentPlatformModel.PagePublishPayload} body
|
|
441
482
|
*/
|
|
442
483
|
/**
|
|
443
484
|
* @typedef UpdatePathRedirectionRulesParam
|
|
@@ -448,16 +489,22 @@ export = ContentPlatformApplicationValidator;
|
|
|
448
489
|
* @typedef UpdateSEOConfigurationParam
|
|
449
490
|
* @property {ContentPlatformModel.SeoComponent} body
|
|
450
491
|
*/
|
|
451
|
-
/**
|
|
452
|
-
* @typedef UpdateSlideshowParam
|
|
453
|
-
* @property {string} id - ID allotted to the slideshow.
|
|
454
|
-
* @property {ContentPlatformModel.SlideshowRequest} body
|
|
455
|
-
*/
|
|
456
492
|
/**
|
|
457
493
|
* @typedef UpdateSupportInformationParam
|
|
458
494
|
* @property {ContentPlatformModel.Support} body
|
|
459
495
|
*/
|
|
496
|
+
/**
|
|
497
|
+
* @typedef UpdateTranslateUILabelsParam
|
|
498
|
+
* @property {string} id - The unique identifier of the Translate Ui Labels to update
|
|
499
|
+
* @property {ContentPlatformModel.StaticResourceUpdate} body
|
|
500
|
+
*/
|
|
501
|
+
/**
|
|
502
|
+
* @typedef UpsertApplicationResourceTranslationInBulkParam
|
|
503
|
+
* @property {ContentPlatformModel.ResourceTranslationList} body
|
|
504
|
+
*/
|
|
460
505
|
declare class ContentPlatformApplicationValidator {
|
|
506
|
+
/** @returns {AddApplicationLanguageParam} */
|
|
507
|
+
static addApplicationLanguage(): AddApplicationLanguageParam;
|
|
461
508
|
/** @returns {AddDataLoaderParam} */
|
|
462
509
|
static addDataLoader(): AddDataLoaderParam;
|
|
463
510
|
/** @returns {AddFaqParam} */
|
|
@@ -466,16 +513,18 @@ declare class ContentPlatformApplicationValidator {
|
|
|
466
513
|
static addInjectableTag(): AddInjectableTagParam;
|
|
467
514
|
/** @returns {AddPathRedirectionRulesParam} */
|
|
468
515
|
static addPathRedirectionRules(): AddPathRedirectionRulesParam;
|
|
516
|
+
/** @returns {BulkUnPublishApplicationLanguageParam} */
|
|
517
|
+
static bulkUnPublishApplicationLanguage(): BulkUnPublishApplicationLanguageParam;
|
|
469
518
|
/** @returns {CreateAnnouncementParam} */
|
|
470
519
|
static createAnnouncement(): CreateAnnouncementParam;
|
|
471
|
-
/** @returns {CreateAppCustomFieldByResourceIdParam} */
|
|
472
|
-
static createAppCustomFieldByResourceId(): CreateAppCustomFieldByResourceIdParam;
|
|
473
520
|
/** @returns {CreateAppCustomFieldDefinitionParam} */
|
|
474
521
|
static createAppCustomFieldDefinition(): CreateAppCustomFieldDefinitionParam;
|
|
475
|
-
/** @returns {
|
|
476
|
-
static
|
|
522
|
+
/** @returns {CreateAppCustomObjectBySlugParam} */
|
|
523
|
+
static createAppCustomObjectBySlug(): CreateAppCustomObjectBySlugParam;
|
|
477
524
|
/** @returns {CreateAppCustomObjectDefinitionParam} */
|
|
478
525
|
static createAppCustomObjectDefinition(): CreateAppCustomObjectDefinitionParam;
|
|
526
|
+
/** @returns {CreateApplicationResourceTranslationParam} */
|
|
527
|
+
static createApplicationResourceTranslation(): CreateApplicationResourceTranslationParam;
|
|
479
528
|
/** @returns {CreateBlogParam} */
|
|
480
529
|
static createBlog(): CreateBlogParam;
|
|
481
530
|
/** @returns {CreateFaqCategoryParam} */
|
|
@@ -486,20 +535,22 @@ declare class ContentPlatformApplicationValidator {
|
|
|
486
535
|
static createNavigation(): CreateNavigationParam;
|
|
487
536
|
/** @returns {CreatePageParam} */
|
|
488
537
|
static createPage(): CreatePageParam;
|
|
489
|
-
/** @returns {CreatePagePreviewParam} */
|
|
490
|
-
static createPagePreview(): CreatePagePreviewParam;
|
|
491
538
|
/** @returns {CreateSEOMarkupSchemaParam} */
|
|
492
539
|
static createSEOMarkupSchema(): CreateSEOMarkupSchemaParam;
|
|
493
|
-
/** @returns {
|
|
494
|
-
static
|
|
540
|
+
/** @returns {CreateTranslateUILabelsParam} */
|
|
541
|
+
static createTranslateUILabels(): CreateTranslateUILabelsParam;
|
|
495
542
|
/** @returns {DeleteAnnouncementParam} */
|
|
496
543
|
static deleteAnnouncement(): DeleteAnnouncementParam;
|
|
497
|
-
/** @returns {
|
|
498
|
-
static
|
|
499
|
-
/** @returns {
|
|
500
|
-
static
|
|
501
|
-
/** @returns {
|
|
502
|
-
static
|
|
544
|
+
/** @returns {DeleteAppCustomFieldDefinitionBySlugParam} */
|
|
545
|
+
static deleteAppCustomFieldDefinitionBySlug(): DeleteAppCustomFieldDefinitionBySlugParam;
|
|
546
|
+
/** @returns {DeleteAppCustomObjectBySlugParam} */
|
|
547
|
+
static deleteAppCustomObjectBySlug(): DeleteAppCustomObjectBySlugParam;
|
|
548
|
+
/** @returns {DeleteAppCustomObjectDefinitionBySlugParam} */
|
|
549
|
+
static deleteAppCustomObjectDefinitionBySlug(): DeleteAppCustomObjectDefinitionBySlugParam;
|
|
550
|
+
/** @returns {DeleteApplicationLanguageParam} */
|
|
551
|
+
static deleteApplicationLanguage(): DeleteApplicationLanguageParam;
|
|
552
|
+
/** @returns {DeleteApplicationResourceTranslationParam} */
|
|
553
|
+
static deleteApplicationResourceTranslation(): DeleteApplicationResourceTranslationParam;
|
|
503
554
|
/** @returns {DeleteBlogParam} */
|
|
504
555
|
static deleteBlog(): DeleteBlogParam;
|
|
505
556
|
/** @returns {DeleteDataLoaderParam} */
|
|
@@ -518,44 +569,46 @@ declare class ContentPlatformApplicationValidator {
|
|
|
518
569
|
static deletePathRedirectionRules(): DeletePathRedirectionRulesParam;
|
|
519
570
|
/** @returns {DeleteSEOMarkupSchemaParam} */
|
|
520
571
|
static deleteSEOMarkupSchema(): DeleteSEOMarkupSchemaParam;
|
|
521
|
-
/** @returns {DeleteSlideshowParam} */
|
|
522
|
-
static deleteSlideshow(): DeleteSlideshowParam;
|
|
523
572
|
/** @returns {EditDataLoaderParam} */
|
|
524
573
|
static editDataLoader(): EditDataLoaderParam;
|
|
525
574
|
/** @returns {EditInjectableTagParam} */
|
|
526
575
|
static editInjectableTag(): EditInjectableTagParam;
|
|
527
576
|
/** @returns {EditSEOMarkupSchemaParam} */
|
|
528
577
|
static editSEOMarkupSchema(): EditSEOMarkupSchemaParam;
|
|
529
|
-
/** @returns {
|
|
530
|
-
static
|
|
578
|
+
/** @returns {ExportAppCustomObjectEntriesBySlugParam} */
|
|
579
|
+
static exportAppCustomObjectEntriesBySlug(): ExportAppCustomObjectEntriesBySlugParam;
|
|
531
580
|
/** @returns {GenerateSEOTitleParam} */
|
|
532
581
|
static generateSEOTitle(): GenerateSEOTitleParam;
|
|
533
582
|
/** @returns {GetAnnouncementByIdParam} */
|
|
534
583
|
static getAnnouncementById(): GetAnnouncementByIdParam;
|
|
535
584
|
/** @returns {GetAnnouncementsListParam} */
|
|
536
585
|
static getAnnouncementsList(): GetAnnouncementsListParam;
|
|
537
|
-
/** @returns {
|
|
538
|
-
static
|
|
586
|
+
/** @returns {GetAppCustomFieldDefinitionByResourceParam} */
|
|
587
|
+
static getAppCustomFieldDefinitionByResource(): GetAppCustomFieldDefinitionByResourceParam;
|
|
588
|
+
/** @returns {GetAppCustomFieldDefinitionBySlugParam} */
|
|
589
|
+
static getAppCustomFieldDefinitionBySlug(): GetAppCustomFieldDefinitionBySlugParam;
|
|
539
590
|
/** @returns {GetAppCustomFieldDefinitionsParam} */
|
|
540
591
|
static getAppCustomFieldDefinitions(): GetAppCustomFieldDefinitionsParam;
|
|
541
592
|
/** @returns {GetAppCustomFieldTypesParam} */
|
|
542
593
|
static getAppCustomFieldTypes(): any;
|
|
543
|
-
/** @returns {
|
|
544
|
-
static
|
|
545
|
-
/** @returns {
|
|
546
|
-
static
|
|
547
|
-
/** @returns {
|
|
548
|
-
static
|
|
549
|
-
/** @returns {GetAppCustomObjectDefinitionParam} */
|
|
550
|
-
static getAppCustomObjectDefinition(): GetAppCustomObjectDefinitionParam;
|
|
594
|
+
/** @returns {GetAppCustomFieldsByResourceSlugParam} */
|
|
595
|
+
static getAppCustomFieldsByResourceSlug(): GetAppCustomFieldsByResourceSlugParam;
|
|
596
|
+
/** @returns {GetAppCustomObjectBySlugParam} */
|
|
597
|
+
static getAppCustomObjectBySlug(): GetAppCustomObjectBySlugParam;
|
|
598
|
+
/** @returns {GetAppCustomObjectDefinitionBySlugParam} */
|
|
599
|
+
static getAppCustomObjectDefinitionBySlug(): GetAppCustomObjectDefinitionBySlugParam;
|
|
551
600
|
/** @returns {GetAppCustomObjectDefinitionsParam} */
|
|
552
601
|
static getAppCustomObjectDefinitions(): GetAppCustomObjectDefinitionsParam;
|
|
553
|
-
/** @returns {
|
|
554
|
-
static
|
|
602
|
+
/** @returns {GetAppCustomObjectsBySlugParam} */
|
|
603
|
+
static getAppCustomObjectsBySlug(): GetAppCustomObjectsBySlugParam;
|
|
555
604
|
/** @returns {GetAppJobsParam} */
|
|
556
605
|
static getAppJobs(): GetAppJobsParam;
|
|
557
606
|
/** @returns {GetAppResourcesParam} */
|
|
558
607
|
static getAppResources(): any;
|
|
608
|
+
/** @returns {GetApplicationLanguagesParam} */
|
|
609
|
+
static getApplicationLanguages(): any;
|
|
610
|
+
/** @returns {GetApplicationResourceTranslationsParam} */
|
|
611
|
+
static getApplicationResourceTranslations(): GetApplicationResourceTranslationsParam;
|
|
559
612
|
/** @returns {GetBlogBySlugParam} */
|
|
560
613
|
static getBlogBySlug(): GetBlogBySlugParam;
|
|
561
614
|
/** @returns {GetBlogsParam} */
|
|
@@ -604,40 +657,46 @@ declare class ContentPlatformApplicationValidator {
|
|
|
604
657
|
static getSEOMarkupSchema(): GetSEOMarkupSchemaParam;
|
|
605
658
|
/** @returns {GetSEOMarkupSchemasParam} */
|
|
606
659
|
static getSEOMarkupSchemas(): GetSEOMarkupSchemasParam;
|
|
607
|
-
/** @returns {GetSlideshowBySlugParam} */
|
|
608
|
-
static getSlideshowBySlug(): GetSlideshowBySlugParam;
|
|
609
|
-
/** @returns {GetSlideshowsParam} */
|
|
610
|
-
static getSlideshows(): GetSlideshowsParam;
|
|
611
660
|
/** @returns {GetSupportInformationParam} */
|
|
612
661
|
static getSupportInformation(): any;
|
|
613
|
-
/** @returns {
|
|
614
|
-
static
|
|
662
|
+
/** @returns {GetTagsTemplateParam} */
|
|
663
|
+
static getTagsTemplate(): any;
|
|
664
|
+
/** @returns {GetTranslateUILabelsParam} */
|
|
665
|
+
static getTranslateUILabels(): GetTranslateUILabelsParam;
|
|
666
|
+
/** @returns {GetTranslateUILabelsByIdParam} */
|
|
667
|
+
static getTranslateUILabelsById(): GetTranslateUILabelsByIdParam;
|
|
668
|
+
/** @returns {ImportAppCustomObjectEntriesBySlugParam} */
|
|
669
|
+
static importAppCustomObjectEntriesBySlug(): ImportAppCustomObjectEntriesBySlugParam;
|
|
615
670
|
/** @returns {RemoveInjectableTagParam} */
|
|
616
671
|
static removeInjectableTag(): RemoveInjectableTagParam;
|
|
617
672
|
/** @returns {ResetDataLoaderParam} */
|
|
618
673
|
static resetDataLoader(): ResetDataLoaderParam;
|
|
619
|
-
/** @returns {
|
|
620
|
-
static
|
|
674
|
+
/** @returns {SampleAppCustomObjectBulkEntryBySlugParam} */
|
|
675
|
+
static sampleAppCustomObjectBulkEntryBySlug(): SampleAppCustomObjectBulkEntryBySlugParam;
|
|
621
676
|
/** @returns {SelectDataLoaderParam} */
|
|
622
677
|
static selectDataLoader(): SelectDataLoaderParam;
|
|
623
678
|
/** @returns {UpdateAnnouncementParam} */
|
|
624
679
|
static updateAnnouncement(): UpdateAnnouncementParam;
|
|
625
680
|
/** @returns {UpdateAnnouncementScheduleParam} */
|
|
626
681
|
static updateAnnouncementSchedule(): UpdateAnnouncementScheduleParam;
|
|
627
|
-
/** @returns {
|
|
628
|
-
static
|
|
629
|
-
/** @returns {
|
|
630
|
-
static
|
|
631
|
-
/** @returns {
|
|
632
|
-
static
|
|
682
|
+
/** @returns {UpdateAppCustomFieldByResourceSlugParam} */
|
|
683
|
+
static updateAppCustomFieldByResourceSlug(): UpdateAppCustomFieldByResourceSlugParam;
|
|
684
|
+
/** @returns {UpdateAppCustomFieldDefinitionBySlugParam} */
|
|
685
|
+
static updateAppCustomFieldDefinitionBySlug(): UpdateAppCustomFieldDefinitionBySlugParam;
|
|
686
|
+
/** @returns {UpdateAppCustomObjectBySlugParam} */
|
|
687
|
+
static updateAppCustomObjectBySlug(): UpdateAppCustomObjectBySlugParam;
|
|
688
|
+
/** @returns {UpdateAppCustomObjectDefinitionBySlugParam} */
|
|
689
|
+
static updateAppCustomObjectDefinitionBySlug(): UpdateAppCustomObjectDefinitionBySlugParam;
|
|
690
|
+
/** @returns {UpdateApplicationLanguageStatusParam} */
|
|
691
|
+
static updateApplicationLanguageStatus(): UpdateApplicationLanguageStatusParam;
|
|
692
|
+
/** @returns {UpdateApplicationResourceTranslationParam} */
|
|
693
|
+
static updateApplicationResourceTranslation(): UpdateApplicationResourceTranslationParam;
|
|
633
694
|
/** @returns {UpdateBlogParam} */
|
|
634
695
|
static updateBlog(): UpdateBlogParam;
|
|
635
696
|
/** @returns {UpdateFaqParam} */
|
|
636
697
|
static updateFaq(): UpdateFaqParam;
|
|
637
698
|
/** @returns {UpdateFaqCategoryParam} */
|
|
638
699
|
static updateFaqCategory(): UpdateFaqCategoryParam;
|
|
639
|
-
/** @returns {UpdateInjectableTagParam} */
|
|
640
|
-
static updateInjectableTag(): UpdateInjectableTagParam;
|
|
641
700
|
/** @returns {UpdateLandingPageParam} */
|
|
642
701
|
static updateLandingPage(): UpdateLandingPageParam;
|
|
643
702
|
/** @returns {UpdateLegalInformationParam} */
|
|
@@ -652,14 +711,19 @@ declare class ContentPlatformApplicationValidator {
|
|
|
652
711
|
static updatePathRedirectionRules(): UpdatePathRedirectionRulesParam;
|
|
653
712
|
/** @returns {UpdateSEOConfigurationParam} */
|
|
654
713
|
static updateSEOConfiguration(): UpdateSEOConfigurationParam;
|
|
655
|
-
/** @returns {UpdateSlideshowParam} */
|
|
656
|
-
static updateSlideshow(): UpdateSlideshowParam;
|
|
657
714
|
/** @returns {UpdateSupportInformationParam} */
|
|
658
715
|
static updateSupportInformation(): UpdateSupportInformationParam;
|
|
716
|
+
/** @returns {UpdateTranslateUILabelsParam} */
|
|
717
|
+
static updateTranslateUILabels(): UpdateTranslateUILabelsParam;
|
|
718
|
+
/** @returns {UpsertApplicationResourceTranslationInBulkParam} */
|
|
719
|
+
static upsertApplicationResourceTranslationInBulk(): UpsertApplicationResourceTranslationInBulkParam;
|
|
659
720
|
}
|
|
660
721
|
declare namespace ContentPlatformApplicationValidator {
|
|
661
|
-
export { AddDataLoaderParam, AddFaqParam, AddInjectableTagParam, AddPathRedirectionRulesParam,
|
|
722
|
+
export { AddApplicationLanguageParam, AddDataLoaderParam, AddFaqParam, AddInjectableTagParam, AddPathRedirectionRulesParam, BulkUnPublishApplicationLanguageParam, CreateAnnouncementParam, CreateAppCustomFieldDefinitionParam, CreateAppCustomObjectBySlugParam, CreateAppCustomObjectDefinitionParam, CreateApplicationResourceTranslationParam, CreateBlogParam, CreateFaqCategoryParam, CreateLandingPageParam, CreateNavigationParam, CreatePageParam, CreateSEOMarkupSchemaParam, CreateTranslateUILabelsParam, DeleteAnnouncementParam, DeleteAppCustomFieldDefinitionBySlugParam, DeleteAppCustomObjectBySlugParam, DeleteAppCustomObjectDefinitionBySlugParam, DeleteApplicationLanguageParam, DeleteApplicationResourceTranslationParam, DeleteBlogParam, DeleteDataLoaderParam, DeleteFaqParam, DeleteFaqCategoryParam, DeleteLandingPageParam, DeleteNavigationParam, DeletePageParam, DeletePathRedirectionRulesParam, DeleteSEOMarkupSchemaParam, EditDataLoaderParam, EditInjectableTagParam, EditSEOMarkupSchemaParam, ExportAppCustomObjectEntriesBySlugParam, GenerateSEOTitleParam, GetAnnouncementByIdParam, GetAnnouncementsListParam, GetAppCustomFieldDefinitionByResourceParam, GetAppCustomFieldDefinitionBySlugParam, GetAppCustomFieldDefinitionsParam, GetAppCustomFieldTypesParam, GetAppCustomFieldsByResourceSlugParam, GetAppCustomObjectBySlugParam, GetAppCustomObjectDefinitionBySlugParam, GetAppCustomObjectDefinitionsParam, GetAppCustomObjectsBySlugParam, GetAppJobsParam, GetAppResourcesParam, GetApplicationLanguagesParam, GetApplicationResourceTranslationsParam, GetBlogBySlugParam, GetBlogsParam, GetDataLoadersParam, GetDataLoadersByServiceParam, GetDefaultNavigationsParam, GetDefaultSEOMarkupSchemaParam, GetFaqByIdOrSlugParam, GetFaqCategoriesParam, GetFaqCategoryBySlugOrIdParam, GetFaqsByCategoryIdOrSlugParam, GetInjectableTagsParam, GetLandingPagesParam, GetLegalInformationParam, GetNavigationBySlugParam, GetNavigationsParam, GetPageBySlugParam, GetPageMetaParam, GetPageSpecParam, GetPagesParam, GetPathRedirectionRuleParam, GetPathRedirectionRulesParam, GetSEOConfigurationParam, GetSEOMarkupSchemaParam, GetSEOMarkupSchemasParam, GetSupportInformationParam, GetTagsTemplateParam, GetTranslateUILabelsParam, GetTranslateUILabelsByIdParam, ImportAppCustomObjectEntriesBySlugParam, RemoveInjectableTagParam, ResetDataLoaderParam, SampleAppCustomObjectBulkEntryBySlugParam, SelectDataLoaderParam, UpdateAnnouncementParam, UpdateAnnouncementScheduleParam, UpdateAppCustomFieldByResourceSlugParam, UpdateAppCustomFieldDefinitionBySlugParam, UpdateAppCustomObjectBySlugParam, UpdateAppCustomObjectDefinitionBySlugParam, UpdateApplicationLanguageStatusParam, UpdateApplicationResourceTranslationParam, UpdateBlogParam, UpdateFaqParam, UpdateFaqCategoryParam, UpdateLandingPageParam, UpdateLegalInformationParam, UpdateNavigationParam, UpdatePageParam, UpdatePagePreviewParam, UpdatePathRedirectionRulesParam, UpdateSEOConfigurationParam, UpdateSupportInformationParam, UpdateTranslateUILabelsParam, UpsertApplicationResourceTranslationInBulkParam };
|
|
662
723
|
}
|
|
724
|
+
type AddApplicationLanguageParam = {
|
|
725
|
+
body: ContentPlatformModel.ApplicationLanguageCreate;
|
|
726
|
+
};
|
|
663
727
|
type AddDataLoaderParam = {
|
|
664
728
|
body: ContentPlatformModel.DataLoaderSchema;
|
|
665
729
|
};
|
|
@@ -676,25 +740,28 @@ type AddInjectableTagParam = {
|
|
|
676
740
|
type AddPathRedirectionRulesParam = {
|
|
677
741
|
body: ContentPlatformModel.PathMappingSchema;
|
|
678
742
|
};
|
|
743
|
+
type BulkUnPublishApplicationLanguageParam = {
|
|
744
|
+
body: ContentPlatformModel.unPublishApplicationLanguage;
|
|
745
|
+
};
|
|
679
746
|
type CreateAnnouncementParam = {
|
|
680
747
|
body: ContentPlatformModel.AdminAnnouncementSchema;
|
|
681
748
|
};
|
|
682
|
-
type CreateAppCustomFieldByResourceIdParam = {
|
|
683
|
-
resource: string;
|
|
684
|
-
resourceId: string;
|
|
685
|
-
body: ContentPlatformModel.CustomFieldRequestSchema;
|
|
686
|
-
};
|
|
687
749
|
type CreateAppCustomFieldDefinitionParam = {
|
|
750
|
+
resource: string;
|
|
688
751
|
body: ContentPlatformModel.CustomFieldDefinitionRequestSchema;
|
|
689
752
|
};
|
|
690
|
-
type
|
|
691
|
-
|
|
753
|
+
type CreateAppCustomObjectBySlugParam = {
|
|
754
|
+
definitionSlug: string;
|
|
755
|
+
body: ContentPlatformModel.CustomObjectRequestSchemaWithoutId;
|
|
692
756
|
};
|
|
693
757
|
type CreateAppCustomObjectDefinitionParam = {
|
|
694
758
|
body: ContentPlatformModel.CustomObjectDefinitionRequestSchema;
|
|
695
759
|
};
|
|
760
|
+
type CreateApplicationResourceTranslationParam = {
|
|
761
|
+
body: ContentPlatformModel.ResourceTranslationCreate;
|
|
762
|
+
};
|
|
696
763
|
type CreateBlogParam = {
|
|
697
|
-
body: ContentPlatformModel.
|
|
764
|
+
body: ContentPlatformModel.BlogPayload;
|
|
698
765
|
};
|
|
699
766
|
type CreateFaqCategoryParam = {
|
|
700
767
|
body: ContentPlatformModel.CreateFaqCategoryRequestSchema;
|
|
@@ -703,19 +770,16 @@ type CreateLandingPageParam = {
|
|
|
703
770
|
body: ContentPlatformModel.LandingPageSchema;
|
|
704
771
|
};
|
|
705
772
|
type CreateNavigationParam = {
|
|
706
|
-
body: ContentPlatformModel.
|
|
773
|
+
body: ContentPlatformModel.NavigationPayload;
|
|
707
774
|
};
|
|
708
775
|
type CreatePageParam = {
|
|
709
|
-
body: ContentPlatformModel.
|
|
710
|
-
};
|
|
711
|
-
type CreatePagePreviewParam = {
|
|
712
|
-
body: ContentPlatformModel.PageRequest;
|
|
776
|
+
body: ContentPlatformModel.PagePayload;
|
|
713
777
|
};
|
|
714
778
|
type CreateSEOMarkupSchemaParam = {
|
|
715
779
|
body: ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody;
|
|
716
780
|
};
|
|
717
|
-
type
|
|
718
|
-
body: ContentPlatformModel.
|
|
781
|
+
type CreateTranslateUILabelsParam = {
|
|
782
|
+
body: ContentPlatformModel.TranslateUiLabelsCreate;
|
|
719
783
|
};
|
|
720
784
|
type DeleteAnnouncementParam = {
|
|
721
785
|
/**
|
|
@@ -723,14 +787,23 @@ type DeleteAnnouncementParam = {
|
|
|
723
787
|
*/
|
|
724
788
|
announcementId: string;
|
|
725
789
|
};
|
|
726
|
-
type
|
|
727
|
-
|
|
790
|
+
type DeleteAppCustomFieldDefinitionBySlugParam = {
|
|
791
|
+
slug: string;
|
|
792
|
+
resource: string;
|
|
793
|
+
namespace: string;
|
|
728
794
|
};
|
|
729
|
-
type
|
|
730
|
-
|
|
795
|
+
type DeleteAppCustomObjectBySlugParam = {
|
|
796
|
+
definitionSlug: string;
|
|
797
|
+
slug: string;
|
|
798
|
+
};
|
|
799
|
+
type DeleteAppCustomObjectDefinitionBySlugParam = {
|
|
800
|
+
slug: string;
|
|
731
801
|
};
|
|
732
|
-
type
|
|
733
|
-
|
|
802
|
+
type DeleteApplicationLanguageParam = {
|
|
803
|
+
locale: string;
|
|
804
|
+
};
|
|
805
|
+
type DeleteApplicationResourceTranslationParam = {
|
|
806
|
+
id: string;
|
|
734
807
|
};
|
|
735
808
|
type DeleteBlogParam = {
|
|
736
809
|
/**
|
|
@@ -791,12 +864,6 @@ type DeleteSEOMarkupSchemaParam = {
|
|
|
791
864
|
*/
|
|
792
865
|
id: string;
|
|
793
866
|
};
|
|
794
|
-
type DeleteSlideshowParam = {
|
|
795
|
-
/**
|
|
796
|
-
* - ID allotted to the slideshow.
|
|
797
|
-
*/
|
|
798
|
-
id: string;
|
|
799
|
-
};
|
|
800
867
|
type EditDataLoaderParam = {
|
|
801
868
|
/**
|
|
802
869
|
* - ID allotted to the data loader.
|
|
@@ -819,8 +886,8 @@ type EditSEOMarkupSchemaParam = {
|
|
|
819
886
|
id: string;
|
|
820
887
|
body: ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody;
|
|
821
888
|
};
|
|
822
|
-
type
|
|
823
|
-
|
|
889
|
+
type ExportAppCustomObjectEntriesBySlugParam = {
|
|
890
|
+
slug: string;
|
|
824
891
|
};
|
|
825
892
|
type GenerateSEOTitleParam = {
|
|
826
893
|
/**
|
|
@@ -849,44 +916,60 @@ type GetAnnouncementsListParam = {
|
|
|
849
916
|
*/
|
|
850
917
|
pageSize?: number;
|
|
851
918
|
};
|
|
852
|
-
type
|
|
853
|
-
definitionId: string;
|
|
854
|
-
};
|
|
855
|
-
type GetAppCustomFieldDefinitionsParam = {
|
|
919
|
+
type GetAppCustomFieldDefinitionByResourceParam = {
|
|
856
920
|
pageNo: string;
|
|
857
921
|
pageSize: string;
|
|
858
|
-
resource
|
|
859
|
-
|
|
922
|
+
resource: string;
|
|
923
|
+
types?: string;
|
|
860
924
|
search?: string;
|
|
925
|
+
slugs?: string;
|
|
926
|
+
namespaces?: string;
|
|
861
927
|
};
|
|
862
|
-
type
|
|
928
|
+
type GetAppCustomFieldDefinitionBySlugParam = {
|
|
929
|
+
slug: string;
|
|
863
930
|
resource: string;
|
|
931
|
+
namespace: string;
|
|
864
932
|
};
|
|
865
|
-
type
|
|
933
|
+
type GetAppCustomFieldDefinitionsParam = {
|
|
934
|
+
pageNo: string;
|
|
935
|
+
pageSize: string;
|
|
936
|
+
resources?: string;
|
|
937
|
+
types?: string;
|
|
938
|
+
search?: string;
|
|
939
|
+
slugs?: string;
|
|
940
|
+
namespaces?: string;
|
|
941
|
+
};
|
|
942
|
+
type GetAppCustomFieldsByResourceSlugParam = {
|
|
866
943
|
resource: string;
|
|
867
|
-
|
|
944
|
+
resourceSlug: string;
|
|
868
945
|
};
|
|
869
|
-
type
|
|
870
|
-
|
|
946
|
+
type GetAppCustomObjectBySlugParam = {
|
|
947
|
+
definitionSlug: string;
|
|
948
|
+
slug: string;
|
|
871
949
|
};
|
|
872
|
-
type
|
|
873
|
-
|
|
950
|
+
type GetAppCustomObjectDefinitionBySlugParam = {
|
|
951
|
+
slug: string;
|
|
874
952
|
};
|
|
875
953
|
type GetAppCustomObjectDefinitionsParam = {
|
|
876
954
|
pageNo: string;
|
|
877
955
|
pageSize: string;
|
|
878
956
|
search?: string;
|
|
879
957
|
};
|
|
880
|
-
type
|
|
881
|
-
definitionId?: string;
|
|
958
|
+
type GetAppCustomObjectsBySlugParam = {
|
|
882
959
|
pageNo: string;
|
|
883
960
|
pageSize: string;
|
|
961
|
+
definitionSlug: string;
|
|
884
962
|
};
|
|
885
963
|
type GetAppJobsParam = {
|
|
886
964
|
page: string;
|
|
887
965
|
pageSize: string;
|
|
888
966
|
actionType: string;
|
|
889
967
|
};
|
|
968
|
+
type GetApplicationResourceTranslationsParam = {
|
|
969
|
+
locale: string;
|
|
970
|
+
type: string;
|
|
971
|
+
resourceId: string;
|
|
972
|
+
};
|
|
890
973
|
type GetBlogBySlugParam = {
|
|
891
974
|
/**
|
|
892
975
|
* - A short, human-readable, URL-friendly identifier of
|
|
@@ -934,10 +1017,10 @@ type GetDataLoadersByServiceParam = {
|
|
|
934
1017
|
};
|
|
935
1018
|
type GetDefaultSEOMarkupSchemaParam = {
|
|
936
1019
|
/**
|
|
937
|
-
* - The type of page
|
|
938
|
-
* template was created
|
|
1020
|
+
* - The type of page
|
|
1021
|
+
* against which schema template was created
|
|
939
1022
|
*/
|
|
940
|
-
pageType?:
|
|
1023
|
+
pageType?: ContentPlatformModel.PageType;
|
|
941
1024
|
};
|
|
942
1025
|
type GetFaqByIdOrSlugParam = {
|
|
943
1026
|
/**
|
|
@@ -968,6 +1051,10 @@ type GetInjectableTagsParam = {
|
|
|
968
1051
|
* - Get all tags irrespective of the creator of tags
|
|
969
1052
|
*/
|
|
970
1053
|
all?: boolean;
|
|
1054
|
+
/**
|
|
1055
|
+
* - Keyword to filter and find tags by name.
|
|
1056
|
+
*/
|
|
1057
|
+
search?: string;
|
|
971
1058
|
};
|
|
972
1059
|
type GetLandingPagesParam = {
|
|
973
1060
|
/**
|
|
@@ -989,9 +1076,9 @@ type GetNavigationBySlugParam = {
|
|
|
989
1076
|
slug: string;
|
|
990
1077
|
/**
|
|
991
1078
|
* - Filter navigations by platform.
|
|
992
|
-
* Acceptable values are: web, android, ios
|
|
1079
|
+
* Acceptable values are: web, android, ios.
|
|
993
1080
|
*/
|
|
994
|
-
devicePlatform
|
|
1081
|
+
devicePlatform?: string;
|
|
995
1082
|
};
|
|
996
1083
|
type GetNavigationsParam = {
|
|
997
1084
|
/**
|
|
@@ -1074,37 +1161,32 @@ type GetSEOMarkupSchemasParam = {
|
|
|
1074
1161
|
*/
|
|
1075
1162
|
pageSize?: number;
|
|
1076
1163
|
};
|
|
1077
|
-
type
|
|
1164
|
+
type GetTranslateUILabelsParam = {
|
|
1078
1165
|
/**
|
|
1079
|
-
* -
|
|
1080
|
-
* a slideshow. You can get slug value of a page from `getSlideshows` API.
|
|
1166
|
+
* - Unique id of template theme
|
|
1081
1167
|
*/
|
|
1082
|
-
|
|
1168
|
+
templateThemeId?: string;
|
|
1083
1169
|
/**
|
|
1084
|
-
* -
|
|
1085
|
-
* values are: web, android, ios and all
|
|
1170
|
+
* - Unique id of theme
|
|
1086
1171
|
*/
|
|
1087
|
-
|
|
1088
|
-
};
|
|
1089
|
-
type GetSlideshowsParam = {
|
|
1172
|
+
themeId?: string;
|
|
1090
1173
|
/**
|
|
1091
|
-
* -
|
|
1092
|
-
* values are: web, android, ios and all
|
|
1174
|
+
* - Multilingual locale
|
|
1093
1175
|
*/
|
|
1094
|
-
|
|
1176
|
+
locale?: string;
|
|
1095
1177
|
/**
|
|
1096
|
-
* -
|
|
1097
|
-
* set of results. Default value is 1.
|
|
1178
|
+
* - Filter Translate Ui Labels by type
|
|
1098
1179
|
*/
|
|
1099
|
-
|
|
1180
|
+
type?: string;
|
|
1181
|
+
};
|
|
1182
|
+
type GetTranslateUILabelsByIdParam = {
|
|
1100
1183
|
/**
|
|
1101
|
-
* -
|
|
1102
|
-
* Default value is 10.
|
|
1184
|
+
* - ID of the Translate Ui Labels
|
|
1103
1185
|
*/
|
|
1104
|
-
|
|
1186
|
+
id: string;
|
|
1105
1187
|
};
|
|
1106
|
-
type
|
|
1107
|
-
|
|
1188
|
+
type ImportAppCustomObjectEntriesBySlugParam = {
|
|
1189
|
+
slug: string;
|
|
1108
1190
|
body: ContentPlatformModel.CustomObjectBulkSchema;
|
|
1109
1191
|
};
|
|
1110
1192
|
type RemoveInjectableTagParam = {
|
|
@@ -1120,8 +1202,8 @@ type ResetDataLoaderParam = {
|
|
|
1120
1202
|
*/
|
|
1121
1203
|
operationId: string;
|
|
1122
1204
|
};
|
|
1123
|
-
type
|
|
1124
|
-
|
|
1205
|
+
type SampleAppCustomObjectBulkEntryBySlugParam = {
|
|
1206
|
+
slug: string;
|
|
1125
1207
|
};
|
|
1126
1208
|
type SelectDataLoaderParam = {
|
|
1127
1209
|
/**
|
|
@@ -1143,24 +1225,40 @@ type UpdateAnnouncementScheduleParam = {
|
|
|
1143
1225
|
announcementId: string;
|
|
1144
1226
|
body: ContentPlatformModel.ScheduleSchema;
|
|
1145
1227
|
};
|
|
1146
|
-
type
|
|
1147
|
-
|
|
1228
|
+
type UpdateAppCustomFieldByResourceSlugParam = {
|
|
1229
|
+
resource: string;
|
|
1230
|
+
resourceSlug: string;
|
|
1231
|
+
body: ContentPlatformModel.CustomFieldRequestSchema;
|
|
1232
|
+
};
|
|
1233
|
+
type UpdateAppCustomFieldDefinitionBySlugParam = {
|
|
1234
|
+
slug: string;
|
|
1235
|
+
resource: string;
|
|
1236
|
+
namespace: string;
|
|
1148
1237
|
body: ContentPlatformModel.CustomFieldDefinitionRequestSchema;
|
|
1149
1238
|
};
|
|
1150
|
-
type
|
|
1151
|
-
|
|
1152
|
-
|
|
1239
|
+
type UpdateAppCustomObjectBySlugParam = {
|
|
1240
|
+
definitionSlug: string;
|
|
1241
|
+
slug: string;
|
|
1242
|
+
body: ContentPlatformModel.CustomObjectRequestSchemaWithoutId;
|
|
1153
1243
|
};
|
|
1154
|
-
type
|
|
1155
|
-
|
|
1244
|
+
type UpdateAppCustomObjectDefinitionBySlugParam = {
|
|
1245
|
+
slug: string;
|
|
1156
1246
|
body: ContentPlatformModel.CustomObjectDefinitionUpdateRequestSchema;
|
|
1157
1247
|
};
|
|
1248
|
+
type UpdateApplicationLanguageStatusParam = {
|
|
1249
|
+
locale: string;
|
|
1250
|
+
body: ContentPlatformModel.ApplicationLanguageUpdate;
|
|
1251
|
+
};
|
|
1252
|
+
type UpdateApplicationResourceTranslationParam = {
|
|
1253
|
+
id: string;
|
|
1254
|
+
body: ContentPlatformModel.ResourceTranslationUpdate;
|
|
1255
|
+
};
|
|
1158
1256
|
type UpdateBlogParam = {
|
|
1159
1257
|
/**
|
|
1160
1258
|
* - ID allotted to the blog.
|
|
1161
1259
|
*/
|
|
1162
1260
|
id: string;
|
|
1163
|
-
body: ContentPlatformModel.
|
|
1261
|
+
body: ContentPlatformModel.BlogPayload;
|
|
1164
1262
|
};
|
|
1165
1263
|
type UpdateFaqParam = {
|
|
1166
1264
|
/**
|
|
@@ -1180,9 +1278,6 @@ type UpdateFaqCategoryParam = {
|
|
|
1180
1278
|
id: string;
|
|
1181
1279
|
body: ContentPlatformModel.UpdateFaqCategoryRequestSchema;
|
|
1182
1280
|
};
|
|
1183
|
-
type UpdateInjectableTagParam = {
|
|
1184
|
-
body: ContentPlatformModel.CreateTagRequestSchema;
|
|
1185
|
-
};
|
|
1186
1281
|
type UpdateLandingPageParam = {
|
|
1187
1282
|
/**
|
|
1188
1283
|
* - ID allotted to a landing page.
|
|
@@ -1198,7 +1293,7 @@ type UpdateNavigationParam = {
|
|
|
1198
1293
|
* - ID allotted to the navigation.
|
|
1199
1294
|
*/
|
|
1200
1295
|
id: string;
|
|
1201
|
-
body: ContentPlatformModel.
|
|
1296
|
+
body: ContentPlatformModel.NavigationPayload;
|
|
1202
1297
|
};
|
|
1203
1298
|
type UpdatePageParam = {
|
|
1204
1299
|
/**
|
|
@@ -1213,7 +1308,7 @@ type UpdatePagePreviewParam = {
|
|
|
1213
1308
|
* a page. You can get slug value of a page from `getPages` API.
|
|
1214
1309
|
*/
|
|
1215
1310
|
slug: string;
|
|
1216
|
-
body: ContentPlatformModel.
|
|
1311
|
+
body: ContentPlatformModel.PagePublishPayload;
|
|
1217
1312
|
};
|
|
1218
1313
|
type UpdatePathRedirectionRulesParam = {
|
|
1219
1314
|
/**
|
|
@@ -1225,18 +1320,22 @@ type UpdatePathRedirectionRulesParam = {
|
|
|
1225
1320
|
type UpdateSEOConfigurationParam = {
|
|
1226
1321
|
body: ContentPlatformModel.SeoComponent;
|
|
1227
1322
|
};
|
|
1228
|
-
type
|
|
1323
|
+
type UpdateSupportInformationParam = {
|
|
1324
|
+
body: ContentPlatformModel.Support;
|
|
1325
|
+
};
|
|
1326
|
+
type UpdateTranslateUILabelsParam = {
|
|
1229
1327
|
/**
|
|
1230
|
-
* -
|
|
1328
|
+
* - The unique identifier of the Translate Ui Labels to update
|
|
1231
1329
|
*/
|
|
1232
1330
|
id: string;
|
|
1233
|
-
body: ContentPlatformModel.
|
|
1331
|
+
body: ContentPlatformModel.StaticResourceUpdate;
|
|
1234
1332
|
};
|
|
1235
|
-
type
|
|
1236
|
-
body: ContentPlatformModel.
|
|
1333
|
+
type UpsertApplicationResourceTranslationInBulkParam = {
|
|
1334
|
+
body: ContentPlatformModel.ResourceTranslationList;
|
|
1237
1335
|
};
|
|
1238
1336
|
type GetAppCustomFieldTypesParam = any;
|
|
1239
1337
|
type GetAppResourcesParam = any;
|
|
1338
|
+
type GetApplicationLanguagesParam = any;
|
|
1240
1339
|
type GetDataLoadersParam = any;
|
|
1241
1340
|
type GetDefaultNavigationsParam = any;
|
|
1242
1341
|
type GetFaqCategoriesParam = any;
|
|
@@ -1245,4 +1344,5 @@ type GetPageMetaParam = any;
|
|
|
1245
1344
|
type GetPageSpecParam = any;
|
|
1246
1345
|
type GetSEOConfigurationParam = any;
|
|
1247
1346
|
type GetSupportInformationParam = any;
|
|
1347
|
+
type GetTagsTemplateParam = any;
|
|
1248
1348
|
import ContentPlatformModel = require("./ContentPlatformModel");
|