@gofynd/fdk-client-javascript 1.1.6 → 1.2.0
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 +12 -0
- package/index.js +0 -3
- package/package.json +1 -1
- package/sdk/application/ApplicationAPIClient.d.ts +15 -1
- package/sdk/application/ApplicationAPIClient.js +8 -1
- package/sdk/application/ApplicationClient.d.ts +37 -6
- package/sdk/application/ApplicationClient.js +31 -0
- package/sdk/application/ApplicationConfig.d.ts +52 -12
- package/sdk/application/ApplicationConfig.js +37 -2
- package/sdk/application/ApplicationModels.d.ts +46 -1
- package/sdk/application/ApplicationModels.js +18 -0
- package/sdk/application/Cart/CartApplicationClient.d.ts +172 -357
- package/sdk/application/Cart/CartApplicationClient.js +620 -483
- package/sdk/application/Cart/CartApplicationModel.d.ts +2054 -96
- package/sdk/application/Cart/CartApplicationModel.js +1224 -93
- package/sdk/application/Cart/CartApplicationValidator.d.ts +508 -30
- package/sdk/application/Cart/CartApplicationValidator.js +270 -15
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +234 -413
- package/sdk/application/Catalog/CatalogApplicationClient.js +777 -630
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +2218 -117
- package/sdk/application/Catalog/CatalogApplicationModel.js +1499 -170
- package/sdk/application/Catalog/CatalogApplicationValidator.d.ts +798 -31
- package/sdk/application/Catalog/CatalogApplicationValidator.js +318 -3
- package/sdk/application/Common/CommonApplicationClient.d.ts +14 -21
- package/sdk/application/Common/CommonApplicationClient.js +50 -33
- package/sdk/application/Common/CommonApplicationModel.d.ts +448 -19
- package/sdk/application/Common/CommonApplicationModel.js +224 -16
- package/sdk/application/Common/CommonApplicationValidator.d.ts +42 -4
- package/sdk/application/Common/CommonApplicationValidator.js +21 -3
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +25 -18
- package/sdk/application/Communication/CommunicationApplicationClient.js +74 -47
- package/sdk/application/Communication/CommunicationApplicationModel.d.ts +190 -14
- package/sdk/application/Communication/CommunicationApplicationModel.js +124 -7
- package/sdk/application/Communication/CommunicationApplicationValidator.d.ts +27 -4
- package/sdk/application/Communication/CommunicationApplicationValidator.js +21 -5
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +113 -112
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +381 -260
- package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +2453 -110
- package/sdk/application/Configuration/ConfigurationApplicationModel.js +1254 -108
- package/sdk/application/Configuration/ConfigurationApplicationValidator.d.ts +160 -8
- package/sdk/application/Configuration/ConfigurationApplicationValidator.js +88 -4
- package/sdk/application/Content/ContentApplicationClient.d.ts +120 -138
- package/sdk/application/Content/ContentApplicationClient.js +409 -277
- package/sdk/application/Content/ContentApplicationModel.d.ts +1627 -105
- package/sdk/application/Content/ContentApplicationModel.js +1202 -109
- package/sdk/application/Content/ContentApplicationValidator.d.ts +214 -12
- package/sdk/application/Content/ContentApplicationValidator.js +113 -3
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +20 -29
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +68 -47
- package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +299 -20
- package/sdk/application/FileStorage/FileStorageApplicationModel.js +209 -16
- package/sdk/application/FileStorage/FileStorageApplicationValidator.d.ts +55 -5
- package/sdk/application/FileStorage/FileStorageApplicationValidator.js +33 -6
- package/sdk/application/Lead/LeadApplicationClient.d.ts +50 -53
- package/sdk/application/Lead/LeadApplicationClient.js +169 -103
- package/sdk/application/Lead/LeadApplicationModel.d.ts +1405 -54
- package/sdk/application/Lead/LeadApplicationModel.js +619 -73
- package/sdk/application/Lead/LeadApplicationValidator.d.ts +91 -9
- package/sdk/application/Lead/LeadApplicationValidator.js +51 -6
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +34 -33
- package/sdk/application/Logistic/LogisticApplicationClient.js +110 -73
- package/sdk/application/Logistic/LogisticApplicationModel.d.ts +399 -28
- package/sdk/application/Logistic/LogisticApplicationModel.js +293 -24
- package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +48 -6
- package/sdk/application/Logistic/LogisticApplicationValidator.js +34 -6
- package/sdk/application/Order/OrderApplicationClient.d.ts +81 -133
- package/sdk/application/Order/OrderApplicationClient.js +297 -217
- package/sdk/application/Order/OrderApplicationModel.d.ts +1101 -66
- package/sdk/application/Order/OrderApplicationModel.js +776 -57
- package/sdk/application/Order/OrderApplicationValidator.d.ts +249 -14
- package/sdk/application/Order/OrderApplicationValidator.js +114 -5
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +341 -356
- package/sdk/application/Payment/PaymentApplicationClient.js +1077 -703
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +3125 -99
- package/sdk/application/Payment/PaymentApplicationModel.js +1158 -62
- package/sdk/application/Payment/PaymentApplicationValidator.d.ts +494 -41
- package/sdk/application/Payment/PaymentApplicationValidator.js +297 -25
- package/sdk/application/PosCart/PosCartApplicationClient.d.ts +178 -350
- package/sdk/application/PosCart/PosCartApplicationClient.js +636 -491
- package/sdk/application/PosCart/PosCartApplicationModel.d.ts +1823 -89
- package/sdk/application/PosCart/PosCartApplicationModel.js +1117 -85
- package/sdk/application/PosCart/PosCartApplicationValidator.d.ts +480 -29
- package/sdk/application/PosCart/PosCartApplicationValidator.js +262 -15
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +49 -47
- package/sdk/application/Rewards/RewardsApplicationClient.js +160 -102
- package/sdk/application/Rewards/RewardsApplicationModel.d.ts +343 -22
- package/sdk/application/Rewards/RewardsApplicationModel.js +230 -15
- package/sdk/application/Rewards/RewardsApplicationValidator.d.ts +70 -7
- package/sdk/application/Rewards/RewardsApplicationValidator.js +45 -6
- package/sdk/application/Share/ShareApplicationClient.d.ts +44 -50
- package/sdk/application/Share/ShareApplicationClient.js +165 -97
- package/sdk/application/Share/ShareApplicationModel.d.ts +230 -15
- package/sdk/application/Share/ShareApplicationModel.js +154 -16
- package/sdk/application/Share/ShareApplicationValidator.d.ts +86 -8
- package/sdk/application/Share/ShareApplicationValidator.js +48 -4
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +25 -27
- package/sdk/application/Theme/ThemeApplicationClient.js +83 -54
- package/sdk/application/Theme/ThemeApplicationModel.d.ts +621 -48
- package/sdk/application/Theme/ThemeApplicationModel.js +464 -40
- package/sdk/application/Theme/ThemeApplicationValidator.d.ts +49 -5
- package/sdk/application/Theme/ThemeApplicationValidator.js +26 -3
- package/sdk/application/User/UserApplicationClient.d.ts +219 -303
- package/sdk/application/User/UserApplicationClient.js +819 -522
- package/sdk/application/User/UserApplicationModel.d.ts +1390 -101
- package/sdk/application/User/UserApplicationModel.js +983 -44
- package/sdk/application/User/UserApplicationValidator.d.ts +457 -33
- package/sdk/application/User/UserApplicationValidator.js +265 -31
- package/sdk/common/AxiosHelper.js +8 -2
- package/sdk/common/Paginator.d.ts +27 -12
- package/sdk/common/Paginator.js +15 -0
- package/sdk/common/RequestSigner.js +0 -1
- package/sdk/partner/PartnerAPIClient.d.ts +15 -1
- package/sdk/partner/PartnerAPIClient.js +8 -1
- package/sdk/partner/PartnerClient.d.ts +20 -3
- package/sdk/partner/PartnerClient.js +17 -0
- package/sdk/partner/PartnerConfig.d.ts +40 -14
- package/sdk/partner/PartnerConfig.js +31 -6
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +26 -25
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +82 -53
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +202 -17
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +139 -10
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +42 -5
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +26 -4
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +88 -97
- package/sdk/platform/Billing/BillingPlatformClient.js +310 -191
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +1211 -68
- package/sdk/platform/Billing/BillingPlatformModel.js +824 -59
- package/sdk/platform/Billing/BillingPlatformValidator.d.ts +153 -12
- package/sdk/platform/Billing/BillingPlatformValidator.js +87 -8
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +392 -634
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +1480 -957
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +827 -57
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +492 -34
- package/sdk/platform/Cart/CartPlatformModel.d.ts +3639 -175
- package/sdk/platform/Cart/CartPlatformModel.js +2368 -212
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +438 -615
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +1449 -984
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +1081 -49
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +482 -23
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +573 -824
- package/sdk/platform/Catalog/CatalogPlatformClient.js +1773 -1264
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +6871 -326
- package/sdk/platform/Catalog/CatalogPlatformModel.js +4215 -349
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +1331 -71
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +611 -30
- package/sdk/platform/Common/CommonPlatformClient.d.ts +14 -21
- package/sdk/platform/Common/CommonPlatformClient.js +48 -33
- package/sdk/platform/Common/CommonPlatformModel.d.ts +448 -19
- package/sdk/platform/Common/CommonPlatformModel.js +224 -16
- package/sdk/platform/Common/CommonPlatformValidator.d.ts +42 -4
- package/sdk/platform/Common/CommonPlatformValidator.js +21 -3
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +457 -279
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1423 -553
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +581 -42
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +294 -22
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +18 -5
- package/sdk/platform/Communication/CommunicationPlatformClient.js +58 -19
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +1630 -102
- package/sdk/platform/Communication/CommunicationPlatformModel.js +1150 -85
- package/sdk/platform/Communication/CommunicationPlatformValidator.d.ts +16 -3
- package/sdk/platform/Communication/CommunicationPlatformValidator.js +11 -3
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +102 -111
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +321 -225
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +830 -43
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +612 -78
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +180 -13
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +98 -10
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +232 -212
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +737 -438
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +293 -22
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +184 -17
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +166 -178
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +519 -310
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +4504 -188
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +2242 -204
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +332 -19
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +153 -10
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +495 -560
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +1777 -987
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +872 -62
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +487 -35
- package/sdk/platform/Content/ContentPlatformModel.d.ts +1661 -108
- package/sdk/platform/Content/ContentPlatformModel.js +1217 -113
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +67 -101
- package/sdk/platform/Discount/DiscountPlatformClient.js +240 -176
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +242 -15
- package/sdk/platform/Discount/DiscountPlatformModel.js +162 -10
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +185 -13
- package/sdk/platform/Discount/DiscountPlatformValidator.js +88 -8
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +32 -41
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +106 -74
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +77 -6
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +41 -6
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +39 -54
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +124 -99
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +299 -20
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +207 -16
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +98 -8
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +54 -7
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +85 -91
- package/sdk/platform/Finance/FinancePlatformClient.js +272 -180
- package/sdk/platform/Finance/FinancePlatformModel.d.ts +619 -50
- package/sdk/platform/Finance/FinancePlatformModel.js +458 -30
- package/sdk/platform/Finance/FinancePlatformValidator.d.ts +123 -15
- package/sdk/platform/Finance/FinancePlatformValidator.js +95 -16
- package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +99 -97
- package/sdk/platform/Inventory/InventoryPlatformClient.js +288 -199
- package/sdk/platform/Inventory/InventoryPlatformModel.d.ts +1354 -61
- package/sdk/platform/Inventory/InventoryPlatformModel.js +916 -83
- package/sdk/platform/Inventory/InventoryPlatformValidator.d.ts +168 -12
- package/sdk/platform/Inventory/InventoryPlatformValidator.js +82 -6
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +86 -106
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +326 -186
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +180 -14
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +94 -9
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +75 -101
- package/sdk/platform/Lead/LeadPlatformClient.js +240 -174
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +1403 -54
- package/sdk/platform/Lead/LeadPlatformModel.js +618 -73
- package/sdk/platform/Lead/LeadPlatformValidator.d.ts +173 -12
- package/sdk/platform/Lead/LeadPlatformValidator.js +85 -8
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +18 -14
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +56 -29
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +26 -4
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +16 -3
- package/sdk/platform/Order/OrderPlatformClient.d.ts +343 -556
- package/sdk/platform/Order/OrderPlatformClient.js +969 -762
- package/sdk/platform/Order/OrderPlatformModel.d.ts +4967 -247
- package/sdk/platform/Order/OrderPlatformModel.js +3249 -259
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +758 -37
- package/sdk/platform/Order/OrderPlatformValidator.js +351 -22
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +28 -36
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +103 -59
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +66 -6
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +32 -4
- package/sdk/platform/Partner/PartnerPlatformClient.d.ts +68 -107
- package/sdk/platform/Partner/PartnerPlatformClient.js +253 -174
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +767 -45
- package/sdk/platform/Partner/PartnerPlatformModel.js +524 -41
- package/sdk/platform/Partner/PartnerPlatformValidator.d.ts +207 -13
- package/sdk/platform/Partner/PartnerPlatformValidator.js +87 -5
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +255 -260
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +860 -504
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +348 -30
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +221 -19
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +73 -73
- package/sdk/platform/Payment/PaymentPlatformClient.js +238 -154
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +2658 -93
- package/sdk/platform/Payment/PaymentPlatformModel.js +1035 -36
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +111 -11
- package/sdk/platform/Payment/PaymentPlatformValidator.js +68 -7
- package/sdk/platform/PlatformAPIClient.d.ts +16 -1
- package/sdk/platform/PlatformAPIClient.js +9 -1
- package/sdk/platform/PlatformApplicationClient.d.ts +22 -1798
- package/sdk/platform/PlatformApplicationClient.js +17 -1899
- package/sdk/platform/PlatformClient.d.ts +29 -12579
- package/sdk/platform/PlatformClient.js +26 -15085
- package/sdk/platform/PlatformConfig.d.ts +37 -11
- package/sdk/platform/PlatformConfig.js +32 -6
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +80 -92
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +307 -177
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +149 -12
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +82 -8
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +371 -23
- package/sdk/platform/Rewards/RewardsPlatformModel.js +246 -16
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +120 -89
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +349 -201
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +128 -12
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +85 -11
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +148 -178
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +454 -329
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +1399 -96
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +1022 -71
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +280 -18
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +134 -11
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +38 -47
- package/sdk/platform/Share/SharePlatformApplicationClient.js +137 -73
- package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +87 -7
- package/sdk/platform/Share/SharePlatformApplicationValidator.js +42 -5
- package/sdk/platform/Share/SharePlatformModel.d.ts +250 -16
- package/sdk/platform/Share/SharePlatformModel.js +165 -17
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +149 -183
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +579 -330
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +308 -24
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +162 -10
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +621 -48
- package/sdk/platform/Theme/ThemePlatformModel.js +464 -40
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +119 -151
- package/sdk/platform/User/UserPlatformApplicationClient.js +411 -244
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +235 -18
- package/sdk/platform/User/UserPlatformApplicationValidator.js +126 -12
- package/sdk/platform/User/UserPlatformModel.d.ts +1390 -101
- package/sdk/platform/User/UserPlatformModel.js +983 -44
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +38 -47
- package/sdk/platform/Webhook/WebhookPlatformClient.js +137 -87
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +242 -16
- package/sdk/platform/Webhook/WebhookPlatformModel.js +167 -18
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +83 -7
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +43 -5
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +14 -21
- package/sdk/public/Configuration/ConfigurationPublicClient.js +46 -33
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +473 -19
- package/sdk/public/Configuration/ConfigurationPublicModel.js +224 -16
- package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +42 -4
- package/sdk/public/Configuration/ConfigurationPublicValidator.js +21 -3
- package/sdk/public/Inventory/InventoryPublicClient.d.ts +48 -48
- package/sdk/public/Inventory/InventoryPublicClient.js +146 -98
- package/sdk/public/Inventory/InventoryPublicModel.d.ts +392 -21
- package/sdk/public/Inventory/InventoryPublicModel.js +267 -27
- package/sdk/public/Inventory/InventoryPublicValidator.d.ts +90 -8
- package/sdk/public/Inventory/InventoryPublicValidator.js +44 -4
- package/sdk/public/PublicClient.d.ts +19 -3
- package/sdk/public/PublicClient.js +16 -0
- package/sdk/public/PublicConfig.d.ts +27 -6
- package/sdk/public/PublicConfig.js +17 -1
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +13 -11
- package/sdk/public/Webhook/WebhookPublicClient.js +42 -27
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +242 -16
- package/sdk/public/Webhook/WebhookPublicModel.js +167 -18
- package/sdk/public/Webhook/WebhookPublicValidator.d.ts +18 -3
- package/sdk/public/Webhook/WebhookPublicValidator.js +14 -4
|
@@ -1,73 +1,883 @@
|
|
|
1
|
-
export =
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
1
|
+
export = ContentPlatformApplicationValidator;
|
|
2
|
+
/**
|
|
3
|
+
* @typedef AddDataLoaderParam
|
|
4
|
+
* @property {ContentPlatformModel.DataLoaderSchema} body
|
|
5
|
+
*/
|
|
6
|
+
/**
|
|
7
|
+
* @typedef AddFaqParam
|
|
8
|
+
* @property {string} categoryId - ID allotted to an FAQ category.
|
|
9
|
+
* @property {ContentPlatformModel.CreateFaqSchema} body
|
|
10
|
+
*/
|
|
11
|
+
/**
|
|
12
|
+
* @typedef AddInjectableTagParam
|
|
13
|
+
* @property {ContentPlatformModel.CreateTagRequestSchema} body
|
|
14
|
+
*/
|
|
15
|
+
/**
|
|
16
|
+
* @typedef AddPathRedirectionRulesParam
|
|
17
|
+
* @property {ContentPlatformModel.PathMappingSchema} body
|
|
18
|
+
*/
|
|
19
|
+
/**
|
|
20
|
+
* @typedef CreateAnnouncementParam
|
|
21
|
+
* @property {ContentPlatformModel.AdminAnnouncementSchema} body
|
|
22
|
+
*/
|
|
23
|
+
/**
|
|
24
|
+
* @typedef CreateBlogParam
|
|
25
|
+
* @property {ContentPlatformModel.BlogRequest} body
|
|
26
|
+
*/
|
|
27
|
+
/**
|
|
28
|
+
* @typedef CreateFaqCategoryParam
|
|
29
|
+
* @property {ContentPlatformModel.CreateFaqCategoryRequestSchema} body
|
|
30
|
+
*/
|
|
31
|
+
/**
|
|
32
|
+
* @typedef CreateLandingPageParam
|
|
33
|
+
* @property {ContentPlatformModel.LandingPageSchema} body
|
|
34
|
+
*/
|
|
35
|
+
/**
|
|
36
|
+
* @typedef CreateNavigationParam
|
|
37
|
+
* @property {ContentPlatformModel.NavigationRequest} body
|
|
38
|
+
*/
|
|
39
|
+
/**
|
|
40
|
+
* @typedef CreatePageParam
|
|
41
|
+
* @property {ContentPlatformModel.PageRequest} body
|
|
42
|
+
*/
|
|
43
|
+
/**
|
|
44
|
+
* @typedef CreatePagePreviewParam
|
|
45
|
+
* @property {ContentPlatformModel.PageRequest} body
|
|
46
|
+
*/
|
|
47
|
+
/**
|
|
48
|
+
* @typedef CreateSlideshowParam
|
|
49
|
+
* @property {ContentPlatformModel.SlideshowRequest} body
|
|
50
|
+
*/
|
|
51
|
+
/** @typedef DeleteAllInjectableTagsParam */
|
|
52
|
+
/**
|
|
53
|
+
* @typedef DeleteAnnouncementParam
|
|
54
|
+
* @property {string} announcementId - ID allotted to the announcement.
|
|
55
|
+
*/
|
|
56
|
+
/**
|
|
57
|
+
* @typedef DeleteBlogParam
|
|
58
|
+
* @property {string} id - ID allotted to the blog.
|
|
59
|
+
*/
|
|
60
|
+
/**
|
|
61
|
+
* @typedef DeleteDataLoaderParam
|
|
62
|
+
* @property {string} dataLoaderId - ID allotted to the data loader.
|
|
63
|
+
*/
|
|
64
|
+
/**
|
|
65
|
+
* @typedef DeleteFaqParam
|
|
66
|
+
* @property {string} categoryId - ID allotted to an FAQ category.
|
|
67
|
+
* @property {string} faqId - ID allotted to an FAQ.
|
|
68
|
+
*/
|
|
69
|
+
/**
|
|
70
|
+
* @typedef DeleteFaqCategoryParam
|
|
71
|
+
* @property {string} id - ID allotted to an FAQ category.
|
|
72
|
+
*/
|
|
73
|
+
/**
|
|
74
|
+
* @typedef DeleteLandingPageParam
|
|
75
|
+
* @property {string} id - ID allotted to a landing page.
|
|
76
|
+
*/
|
|
77
|
+
/**
|
|
78
|
+
* @typedef DeleteNavigationParam
|
|
79
|
+
* @property {string} id - ID allotted to the navigation.
|
|
80
|
+
*/
|
|
81
|
+
/**
|
|
82
|
+
* @typedef DeletePageParam
|
|
83
|
+
* @property {string} id - ID allotted to the page.
|
|
84
|
+
*/
|
|
85
|
+
/**
|
|
86
|
+
* @typedef DeletePathRedirectionRulesParam
|
|
87
|
+
* @property {string} pathId - ID allotted to the path redirection rule.
|
|
88
|
+
*/
|
|
89
|
+
/**
|
|
90
|
+
* @typedef DeleteSlideshowParam
|
|
91
|
+
* @property {string} id - ID allotted to the slideshow.
|
|
92
|
+
*/
|
|
93
|
+
/**
|
|
94
|
+
* @typedef EditDataLoaderParam
|
|
95
|
+
* @property {string} dataLoaderId - ID allotted to the data loader.
|
|
96
|
+
* @property {ContentPlatformModel.DataLoaderSchema} body
|
|
97
|
+
*/
|
|
98
|
+
/**
|
|
99
|
+
* @typedef EditInjectableTagParam
|
|
100
|
+
* @property {string} tagId - ID allotted to the tag.
|
|
101
|
+
* @property {ContentPlatformModel.UpdateHandpickedSchema} body
|
|
102
|
+
*/
|
|
103
|
+
/**
|
|
104
|
+
* @typedef GenerateSEOTitleParam
|
|
105
|
+
* @property {ContentPlatformModel.GenerationEntityType} type - String
|
|
106
|
+
* representing the type of SEO content to be generated. Possible values are:
|
|
107
|
+
* title, description
|
|
108
|
+
* @property {ContentPlatformModel.GenerateSEOContent} body
|
|
109
|
+
*/
|
|
110
|
+
/**
|
|
111
|
+
* @typedef GetAnnouncementByIdParam
|
|
112
|
+
* @property {string} announcementId - ID allotted to the announcement.
|
|
113
|
+
*/
|
|
114
|
+
/**
|
|
115
|
+
* @typedef GetAnnouncementsListParam
|
|
116
|
+
* @property {number} [pageNo] - The page number to navigate through the given
|
|
117
|
+
* set of results. Default value is 1.
|
|
118
|
+
* @property {number} [pageSize] - The number of items to retrieve in each page.
|
|
119
|
+
* Default value is 10.
|
|
120
|
+
*/
|
|
121
|
+
/**
|
|
122
|
+
* @typedef GetBlogBySlugParam
|
|
123
|
+
* @property {string} slug - A short, human-readable, URL-friendly identifier of
|
|
124
|
+
* a blog page. You can get slug value of a blog from `getBlogs` API.
|
|
125
|
+
*/
|
|
126
|
+
/**
|
|
127
|
+
* @typedef GetBlogsParam
|
|
128
|
+
* @property {number} [pageNo] - The page number to navigate through the given
|
|
129
|
+
* set of results. Default value is 1.
|
|
130
|
+
* @property {number} [pageSize] - The number of items to retrieve in each page.
|
|
131
|
+
* Default value is 10.
|
|
132
|
+
*/
|
|
133
|
+
/**
|
|
134
|
+
* @typedef GetComponentByIdParam
|
|
135
|
+
* @property {string} slug - A short, human-readable, URL-friendly identifier of
|
|
136
|
+
* a blog page. You can get slug value of a blog from `getBlogs` API.
|
|
137
|
+
*/
|
|
138
|
+
/** @typedef GetDataLoadersParam */
|
|
139
|
+
/** @typedef GetDefaultNavigationsParam */
|
|
140
|
+
/**
|
|
141
|
+
* @typedef GetFaqByIdOrSlugParam
|
|
142
|
+
* @property {string} idOrSlug - ID or the slug allotted to an FAQ category.
|
|
143
|
+
* Slug is a short, human-readable, URL-friendly identifier of an object. You
|
|
144
|
+
* can get slug value of an FAQ category from `getFaqCategories` API.
|
|
145
|
+
*/
|
|
146
|
+
/** @typedef GetFaqCategoriesParam */
|
|
147
|
+
/**
|
|
148
|
+
* @typedef GetFaqCategoryBySlugOrIdParam
|
|
149
|
+
* @property {string} idOrSlug - ID or the slug allotted to an FAQ category.
|
|
150
|
+
* Slug is a short, human-readable, URL-friendly identifier of an object. You
|
|
151
|
+
* can get slug value of an FAQ category from `getFaqCategories` API.
|
|
152
|
+
*/
|
|
153
|
+
/**
|
|
154
|
+
* @typedef GetFaqsByCategoryIdOrSlugParam
|
|
155
|
+
* @property {string} idOrSlug - ID or the slug allotted to an FAQ category.
|
|
156
|
+
* Slug is a short, human-readable, URL-friendly identifier of an object. You
|
|
157
|
+
* can get slug value of an FAQ category from `getFaqCategories` API.
|
|
158
|
+
*/
|
|
159
|
+
/** @typedef GetInjectableTagsParam */
|
|
160
|
+
/**
|
|
161
|
+
* @typedef GetLandingPagesParam
|
|
162
|
+
* @property {number} [pageNo] - The page number to navigate through the given
|
|
163
|
+
* set of results. Default value is 1.
|
|
164
|
+
* @property {number} [pageSize] - The number of items to retrieve in each page.
|
|
165
|
+
* Default value is 10.
|
|
166
|
+
*/
|
|
167
|
+
/** @typedef GetLegalInformationParam */
|
|
168
|
+
/**
|
|
169
|
+
* @typedef GetNavigationBySlugParam
|
|
170
|
+
* @property {string} slug - A short, human-readable, URL-friendly identifier of
|
|
171
|
+
* a navigation. You can get slug value of a navigation from `getNavigations` API.
|
|
172
|
+
* @property {string} devicePlatform - Filter navigations by platform.
|
|
173
|
+
* Acceptable values are: web, android, ios, all
|
|
174
|
+
*/
|
|
175
|
+
/**
|
|
176
|
+
* @typedef GetNavigationsParam
|
|
177
|
+
* @property {string} devicePlatform - Filter navigations by platform.
|
|
178
|
+
* Acceptable values are: web, android, ios, all
|
|
179
|
+
* @property {number} [pageNo] - The page number to navigate through the given
|
|
180
|
+
* set of results. Default value is 1.
|
|
181
|
+
* @property {number} [pageSize] - The number of items to retrieve in each page.
|
|
182
|
+
* Default value is 10.
|
|
183
|
+
*/
|
|
184
|
+
/**
|
|
185
|
+
* @typedef GetPageBySlugParam
|
|
186
|
+
* @property {string} slug - A short, human-readable, URL-friendly identifier of
|
|
187
|
+
* a page. You can get slug value of a page from `getPages` API.
|
|
188
|
+
*/
|
|
189
|
+
/** @typedef GetPageMetaParam */
|
|
190
|
+
/** @typedef GetPageSpecParam */
|
|
191
|
+
/**
|
|
192
|
+
* @typedef GetPagesParam
|
|
193
|
+
* @property {number} [pageNo] - The page number to navigate through the given
|
|
194
|
+
* set of results. Default value is 1.
|
|
195
|
+
* @property {number} [pageSize] - The number of items to retrieve in each page.
|
|
196
|
+
* Default value is 10.
|
|
197
|
+
*/
|
|
198
|
+
/**
|
|
199
|
+
* @typedef GetPathRedirectionRuleParam
|
|
200
|
+
* @property {string} pathId - ID allotted to the path redirection rule.
|
|
201
|
+
*/
|
|
202
|
+
/**
|
|
203
|
+
* @typedef GetPathRedirectionRulesParam
|
|
204
|
+
* @property {number} [pageSize] - The number of items to retrieve in each page.
|
|
205
|
+
* Default value is 5.
|
|
206
|
+
* @property {number} [pageNo] - The page number to navigate through the given
|
|
207
|
+
* set of results. Default value is 1.
|
|
208
|
+
*/
|
|
209
|
+
/** @typedef GetSEOConfigurationParam */
|
|
210
|
+
/**
|
|
211
|
+
* @typedef GetSlideshowBySlugParam
|
|
212
|
+
* @property {string} slug - A short, human-readable, URL-friendly identifier of
|
|
213
|
+
* a slideshow. You can get slug value of a page from `getSlideshows` API.
|
|
214
|
+
* @property {string} devicePlatform - Filter slideshows by platform. Acceptable
|
|
215
|
+
* values are: web, android, ios and all
|
|
216
|
+
*/
|
|
217
|
+
/**
|
|
218
|
+
* @typedef GetSlideshowsParam
|
|
219
|
+
* @property {string} devicePlatform - Filter slideshows by platform. Acceptable
|
|
220
|
+
* values are: web, android, ios and all
|
|
221
|
+
* @property {number} [pageNo] - The page number to navigate through the given
|
|
222
|
+
* set of results. Default value is 1.
|
|
223
|
+
* @property {number} [pageSize] - The number of items to retrieve in each page.
|
|
224
|
+
* Default value is 10.
|
|
225
|
+
*/
|
|
226
|
+
/** @typedef GetSupportInformationParam */
|
|
227
|
+
/**
|
|
228
|
+
* @typedef RemoveInjectableTagParam
|
|
229
|
+
* @property {ContentPlatformModel.RemoveHandpickedSchema} body
|
|
230
|
+
*/
|
|
231
|
+
/**
|
|
232
|
+
* @typedef ResetDataLoaderParam
|
|
233
|
+
* @property {string} service - Name of service.
|
|
234
|
+
* @property {string} operationId - Name of operation id of the service.
|
|
235
|
+
*/
|
|
236
|
+
/**
|
|
237
|
+
* @typedef SelectDataLoaderParam
|
|
238
|
+
* @property {string} dataLoaderId - ID allotted to the data loader.
|
|
239
|
+
*/
|
|
240
|
+
/**
|
|
241
|
+
* @typedef UpdateAnnouncementParam
|
|
242
|
+
* @property {string} announcementId - ID allotted to the announcement.
|
|
243
|
+
* @property {ContentPlatformModel.AdminAnnouncementSchema} body
|
|
244
|
+
*/
|
|
245
|
+
/**
|
|
246
|
+
* @typedef UpdateAnnouncementScheduleParam
|
|
247
|
+
* @property {string} announcementId - ID allotted to the announcement.
|
|
248
|
+
* @property {ContentPlatformModel.ScheduleSchema} body
|
|
249
|
+
*/
|
|
250
|
+
/**
|
|
251
|
+
* @typedef UpdateBlogParam
|
|
252
|
+
* @property {string} id - ID allotted to the blog.
|
|
253
|
+
* @property {ContentPlatformModel.BlogRequest} body
|
|
254
|
+
*/
|
|
255
|
+
/**
|
|
256
|
+
* @typedef UpdateFaqParam
|
|
257
|
+
* @property {string} categoryId - ID allotted to an FAQ category.
|
|
258
|
+
* @property {string} faqId - ID allotted to an FAQ.
|
|
259
|
+
* @property {ContentPlatformModel.CreateFaqSchema} body
|
|
260
|
+
*/
|
|
261
|
+
/**
|
|
262
|
+
* @typedef UpdateFaqCategoryParam
|
|
263
|
+
* @property {string} id - ID allotted to an FAQ category.
|
|
264
|
+
* @property {ContentPlatformModel.UpdateFaqCategoryRequestSchema} body
|
|
265
|
+
*/
|
|
266
|
+
/**
|
|
267
|
+
* @typedef UpdateInjectableTagParam
|
|
268
|
+
* @property {ContentPlatformModel.CreateTagRequestSchema} body
|
|
269
|
+
*/
|
|
270
|
+
/**
|
|
271
|
+
* @typedef UpdateLandingPageParam
|
|
272
|
+
* @property {string} id - ID allotted to a landing page.
|
|
273
|
+
* @property {ContentPlatformModel.LandingPageSchema} body
|
|
274
|
+
*/
|
|
275
|
+
/**
|
|
276
|
+
* @typedef UpdateLegalInformationParam
|
|
277
|
+
* @property {ContentPlatformModel.ApplicationLegal} body
|
|
278
|
+
*/
|
|
279
|
+
/**
|
|
280
|
+
* @typedef UpdateNavigationParam
|
|
281
|
+
* @property {string} id - ID allotted to the navigation.
|
|
282
|
+
* @property {ContentPlatformModel.NavigationRequest} body
|
|
283
|
+
*/
|
|
284
|
+
/**
|
|
285
|
+
* @typedef UpdatePageParam
|
|
286
|
+
* @property {string} id - ID allotted to the page.
|
|
287
|
+
* @property {ContentPlatformModel.PageSchema} body
|
|
288
|
+
*/
|
|
289
|
+
/**
|
|
290
|
+
* @typedef UpdatePagePreviewParam
|
|
291
|
+
* @property {string} slug - A short, human-readable, URL-friendly identifier of
|
|
292
|
+
* a page. You can get slug value of a page from `getPages` API.
|
|
293
|
+
* @property {ContentPlatformModel.PagePublishRequest} body
|
|
294
|
+
*/
|
|
295
|
+
/**
|
|
296
|
+
* @typedef UpdatePathRedirectionRulesParam
|
|
297
|
+
* @property {string} pathId - ID allotted to the path redirection rule.
|
|
298
|
+
* @property {ContentPlatformModel.PathMappingSchema} body
|
|
299
|
+
*/
|
|
300
|
+
/**
|
|
301
|
+
* @typedef UpdateSEOConfigurationParam
|
|
302
|
+
* @property {ContentPlatformModel.SeoComponent} body
|
|
303
|
+
*/
|
|
304
|
+
/**
|
|
305
|
+
* @typedef UpdateSlideshowParam
|
|
306
|
+
* @property {string} id - ID allotted to the slideshow.
|
|
307
|
+
* @property {ContentPlatformModel.SlideshowRequest} body
|
|
308
|
+
*/
|
|
309
|
+
/**
|
|
310
|
+
* @typedef UpdateSupportInformationParam
|
|
311
|
+
* @property {ContentPlatformModel.Support} body
|
|
312
|
+
*/
|
|
313
|
+
declare class ContentPlatformApplicationValidator {
|
|
314
|
+
/** @returns {AddDataLoaderParam} */
|
|
315
|
+
static addDataLoader(): AddDataLoaderParam;
|
|
316
|
+
/** @returns {AddFaqParam} */
|
|
317
|
+
static addFaq(): AddFaqParam;
|
|
318
|
+
/** @returns {AddInjectableTagParam} */
|
|
319
|
+
static addInjectableTag(): AddInjectableTagParam;
|
|
320
|
+
/** @returns {AddPathRedirectionRulesParam} */
|
|
321
|
+
static addPathRedirectionRules(): AddPathRedirectionRulesParam;
|
|
322
|
+
/** @returns {CreateAnnouncementParam} */
|
|
323
|
+
static createAnnouncement(): CreateAnnouncementParam;
|
|
324
|
+
/** @returns {CreateBlogParam} */
|
|
325
|
+
static createBlog(): CreateBlogParam;
|
|
326
|
+
/** @returns {CreateFaqCategoryParam} */
|
|
327
|
+
static createFaqCategory(): CreateFaqCategoryParam;
|
|
328
|
+
/** @returns {CreateLandingPageParam} */
|
|
329
|
+
static createLandingPage(): CreateLandingPageParam;
|
|
330
|
+
/** @returns {CreateNavigationParam} */
|
|
331
|
+
static createNavigation(): CreateNavigationParam;
|
|
332
|
+
/** @returns {CreatePageParam} */
|
|
333
|
+
static createPage(): CreatePageParam;
|
|
334
|
+
/** @returns {CreatePagePreviewParam} */
|
|
335
|
+
static createPagePreview(): CreatePagePreviewParam;
|
|
336
|
+
/** @returns {CreateSlideshowParam} */
|
|
337
|
+
static createSlideshow(): CreateSlideshowParam;
|
|
338
|
+
/** @returns {DeleteAllInjectableTagsParam} */
|
|
15
339
|
static deleteAllInjectableTags(): any;
|
|
16
|
-
|
|
17
|
-
static
|
|
18
|
-
|
|
19
|
-
static
|
|
20
|
-
|
|
21
|
-
static
|
|
22
|
-
|
|
23
|
-
static
|
|
24
|
-
|
|
25
|
-
static
|
|
26
|
-
|
|
27
|
-
static
|
|
28
|
-
|
|
29
|
-
static
|
|
30
|
-
|
|
31
|
-
static
|
|
32
|
-
|
|
33
|
-
static
|
|
340
|
+
/** @returns {DeleteAnnouncementParam} */
|
|
341
|
+
static deleteAnnouncement(): DeleteAnnouncementParam;
|
|
342
|
+
/** @returns {DeleteBlogParam} */
|
|
343
|
+
static deleteBlog(): DeleteBlogParam;
|
|
344
|
+
/** @returns {DeleteDataLoaderParam} */
|
|
345
|
+
static deleteDataLoader(): DeleteDataLoaderParam;
|
|
346
|
+
/** @returns {DeleteFaqParam} */
|
|
347
|
+
static deleteFaq(): DeleteFaqParam;
|
|
348
|
+
/** @returns {DeleteFaqCategoryParam} */
|
|
349
|
+
static deleteFaqCategory(): DeleteFaqCategoryParam;
|
|
350
|
+
/** @returns {DeleteLandingPageParam} */
|
|
351
|
+
static deleteLandingPage(): DeleteLandingPageParam;
|
|
352
|
+
/** @returns {DeleteNavigationParam} */
|
|
353
|
+
static deleteNavigation(): DeleteNavigationParam;
|
|
354
|
+
/** @returns {DeletePageParam} */
|
|
355
|
+
static deletePage(): DeletePageParam;
|
|
356
|
+
/** @returns {DeletePathRedirectionRulesParam} */
|
|
357
|
+
static deletePathRedirectionRules(): DeletePathRedirectionRulesParam;
|
|
358
|
+
/** @returns {DeleteSlideshowParam} */
|
|
359
|
+
static deleteSlideshow(): DeleteSlideshowParam;
|
|
360
|
+
/** @returns {EditDataLoaderParam} */
|
|
361
|
+
static editDataLoader(): EditDataLoaderParam;
|
|
362
|
+
/** @returns {EditInjectableTagParam} */
|
|
363
|
+
static editInjectableTag(): EditInjectableTagParam;
|
|
364
|
+
/** @returns {GenerateSEOTitleParam} */
|
|
365
|
+
static generateSEOTitle(): GenerateSEOTitleParam;
|
|
366
|
+
/** @returns {GetAnnouncementByIdParam} */
|
|
367
|
+
static getAnnouncementById(): GetAnnouncementByIdParam;
|
|
368
|
+
/** @returns {GetAnnouncementsListParam} */
|
|
369
|
+
static getAnnouncementsList(): GetAnnouncementsListParam;
|
|
370
|
+
/** @returns {GetBlogBySlugParam} */
|
|
371
|
+
static getBlogBySlug(): GetBlogBySlugParam;
|
|
372
|
+
/** @returns {GetBlogsParam} */
|
|
373
|
+
static getBlogs(): GetBlogsParam;
|
|
374
|
+
/** @returns {GetComponentByIdParam} */
|
|
375
|
+
static getComponentById(): GetComponentByIdParam;
|
|
376
|
+
/** @returns {GetDataLoadersParam} */
|
|
34
377
|
static getDataLoaders(): any;
|
|
378
|
+
/** @returns {GetDefaultNavigationsParam} */
|
|
35
379
|
static getDefaultNavigations(): any;
|
|
36
|
-
|
|
380
|
+
/** @returns {GetFaqByIdOrSlugParam} */
|
|
381
|
+
static getFaqByIdOrSlug(): GetFaqByIdOrSlugParam;
|
|
382
|
+
/** @returns {GetFaqCategoriesParam} */
|
|
37
383
|
static getFaqCategories(): any;
|
|
38
|
-
|
|
39
|
-
static
|
|
384
|
+
/** @returns {GetFaqCategoryBySlugOrIdParam} */
|
|
385
|
+
static getFaqCategoryBySlugOrId(): GetFaqCategoryBySlugOrIdParam;
|
|
386
|
+
/** @returns {GetFaqsByCategoryIdOrSlugParam} */
|
|
387
|
+
static getFaqsByCategoryIdOrSlug(): GetFaqsByCategoryIdOrSlugParam;
|
|
388
|
+
/** @returns {GetInjectableTagsParam} */
|
|
40
389
|
static getInjectableTags(): any;
|
|
41
|
-
|
|
390
|
+
/** @returns {GetLandingPagesParam} */
|
|
391
|
+
static getLandingPages(): GetLandingPagesParam;
|
|
392
|
+
/** @returns {GetLegalInformationParam} */
|
|
42
393
|
static getLegalInformation(): any;
|
|
43
|
-
|
|
44
|
-
static
|
|
45
|
-
|
|
394
|
+
/** @returns {GetNavigationBySlugParam} */
|
|
395
|
+
static getNavigationBySlug(): GetNavigationBySlugParam;
|
|
396
|
+
/** @returns {GetNavigationsParam} */
|
|
397
|
+
static getNavigations(): GetNavigationsParam;
|
|
398
|
+
/** @returns {GetPageBySlugParam} */
|
|
399
|
+
static getPageBySlug(): GetPageBySlugParam;
|
|
400
|
+
/** @returns {GetPageMetaParam} */
|
|
46
401
|
static getPageMeta(): any;
|
|
402
|
+
/** @returns {GetPageSpecParam} */
|
|
47
403
|
static getPageSpec(): any;
|
|
48
|
-
|
|
49
|
-
static
|
|
50
|
-
|
|
404
|
+
/** @returns {GetPagesParam} */
|
|
405
|
+
static getPages(): GetPagesParam;
|
|
406
|
+
/** @returns {GetPathRedirectionRuleParam} */
|
|
407
|
+
static getPathRedirectionRule(): GetPathRedirectionRuleParam;
|
|
408
|
+
/** @returns {GetPathRedirectionRulesParam} */
|
|
409
|
+
static getPathRedirectionRules(): GetPathRedirectionRulesParam;
|
|
410
|
+
/** @returns {GetSEOConfigurationParam} */
|
|
51
411
|
static getSEOConfiguration(): any;
|
|
52
|
-
|
|
53
|
-
static
|
|
412
|
+
/** @returns {GetSlideshowBySlugParam} */
|
|
413
|
+
static getSlideshowBySlug(): GetSlideshowBySlugParam;
|
|
414
|
+
/** @returns {GetSlideshowsParam} */
|
|
415
|
+
static getSlideshows(): GetSlideshowsParam;
|
|
416
|
+
/** @returns {GetSupportInformationParam} */
|
|
54
417
|
static getSupportInformation(): any;
|
|
55
|
-
|
|
56
|
-
static
|
|
57
|
-
|
|
58
|
-
static
|
|
59
|
-
|
|
60
|
-
static
|
|
61
|
-
|
|
62
|
-
static
|
|
63
|
-
|
|
64
|
-
static
|
|
65
|
-
|
|
66
|
-
static
|
|
67
|
-
|
|
68
|
-
static
|
|
69
|
-
|
|
70
|
-
static
|
|
71
|
-
|
|
72
|
-
static
|
|
418
|
+
/** @returns {RemoveInjectableTagParam} */
|
|
419
|
+
static removeInjectableTag(): RemoveInjectableTagParam;
|
|
420
|
+
/** @returns {ResetDataLoaderParam} */
|
|
421
|
+
static resetDataLoader(): ResetDataLoaderParam;
|
|
422
|
+
/** @returns {SelectDataLoaderParam} */
|
|
423
|
+
static selectDataLoader(): SelectDataLoaderParam;
|
|
424
|
+
/** @returns {UpdateAnnouncementParam} */
|
|
425
|
+
static updateAnnouncement(): UpdateAnnouncementParam;
|
|
426
|
+
/** @returns {UpdateAnnouncementScheduleParam} */
|
|
427
|
+
static updateAnnouncementSchedule(): UpdateAnnouncementScheduleParam;
|
|
428
|
+
/** @returns {UpdateBlogParam} */
|
|
429
|
+
static updateBlog(): UpdateBlogParam;
|
|
430
|
+
/** @returns {UpdateFaqParam} */
|
|
431
|
+
static updateFaq(): UpdateFaqParam;
|
|
432
|
+
/** @returns {UpdateFaqCategoryParam} */
|
|
433
|
+
static updateFaqCategory(): UpdateFaqCategoryParam;
|
|
434
|
+
/** @returns {UpdateInjectableTagParam} */
|
|
435
|
+
static updateInjectableTag(): UpdateInjectableTagParam;
|
|
436
|
+
/** @returns {UpdateLandingPageParam} */
|
|
437
|
+
static updateLandingPage(): UpdateLandingPageParam;
|
|
438
|
+
/** @returns {UpdateLegalInformationParam} */
|
|
439
|
+
static updateLegalInformation(): UpdateLegalInformationParam;
|
|
440
|
+
/** @returns {UpdateNavigationParam} */
|
|
441
|
+
static updateNavigation(): UpdateNavigationParam;
|
|
442
|
+
/** @returns {UpdatePageParam} */
|
|
443
|
+
static updatePage(): UpdatePageParam;
|
|
444
|
+
/** @returns {UpdatePagePreviewParam} */
|
|
445
|
+
static updatePagePreview(): UpdatePagePreviewParam;
|
|
446
|
+
/** @returns {UpdatePathRedirectionRulesParam} */
|
|
447
|
+
static updatePathRedirectionRules(): UpdatePathRedirectionRulesParam;
|
|
448
|
+
/** @returns {UpdateSEOConfigurationParam} */
|
|
449
|
+
static updateSEOConfiguration(): UpdateSEOConfigurationParam;
|
|
450
|
+
/** @returns {UpdateSlideshowParam} */
|
|
451
|
+
static updateSlideshow(): UpdateSlideshowParam;
|
|
452
|
+
/** @returns {UpdateSupportInformationParam} */
|
|
453
|
+
static updateSupportInformation(): UpdateSupportInformationParam;
|
|
73
454
|
}
|
|
455
|
+
declare namespace ContentPlatformApplicationValidator {
|
|
456
|
+
export { AddDataLoaderParam, AddFaqParam, AddInjectableTagParam, AddPathRedirectionRulesParam, CreateAnnouncementParam, CreateBlogParam, CreateFaqCategoryParam, CreateLandingPageParam, CreateNavigationParam, CreatePageParam, CreatePagePreviewParam, CreateSlideshowParam, DeleteAllInjectableTagsParam, 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 };
|
|
457
|
+
}
|
|
458
|
+
type AddDataLoaderParam = {
|
|
459
|
+
body: ContentPlatformModel.DataLoaderSchema;
|
|
460
|
+
};
|
|
461
|
+
type AddFaqParam = {
|
|
462
|
+
/**
|
|
463
|
+
* - ID allotted to an FAQ category.
|
|
464
|
+
*/
|
|
465
|
+
categoryId: string;
|
|
466
|
+
body: ContentPlatformModel.CreateFaqSchema;
|
|
467
|
+
};
|
|
468
|
+
type AddInjectableTagParam = {
|
|
469
|
+
body: ContentPlatformModel.CreateTagRequestSchema;
|
|
470
|
+
};
|
|
471
|
+
type AddPathRedirectionRulesParam = {
|
|
472
|
+
body: ContentPlatformModel.PathMappingSchema;
|
|
473
|
+
};
|
|
474
|
+
type CreateAnnouncementParam = {
|
|
475
|
+
body: ContentPlatformModel.AdminAnnouncementSchema;
|
|
476
|
+
};
|
|
477
|
+
type CreateBlogParam = {
|
|
478
|
+
body: ContentPlatformModel.BlogRequest;
|
|
479
|
+
};
|
|
480
|
+
type CreateFaqCategoryParam = {
|
|
481
|
+
body: ContentPlatformModel.CreateFaqCategoryRequestSchema;
|
|
482
|
+
};
|
|
483
|
+
type CreateLandingPageParam = {
|
|
484
|
+
body: ContentPlatformModel.LandingPageSchema;
|
|
485
|
+
};
|
|
486
|
+
type CreateNavigationParam = {
|
|
487
|
+
body: ContentPlatformModel.NavigationRequest;
|
|
488
|
+
};
|
|
489
|
+
type CreatePageParam = {
|
|
490
|
+
body: ContentPlatformModel.PageRequest;
|
|
491
|
+
};
|
|
492
|
+
type CreatePagePreviewParam = {
|
|
493
|
+
body: ContentPlatformModel.PageRequest;
|
|
494
|
+
};
|
|
495
|
+
type CreateSlideshowParam = {
|
|
496
|
+
body: ContentPlatformModel.SlideshowRequest;
|
|
497
|
+
};
|
|
498
|
+
type DeleteAnnouncementParam = {
|
|
499
|
+
/**
|
|
500
|
+
* - ID allotted to the announcement.
|
|
501
|
+
*/
|
|
502
|
+
announcementId: string;
|
|
503
|
+
};
|
|
504
|
+
type DeleteBlogParam = {
|
|
505
|
+
/**
|
|
506
|
+
* - ID allotted to the blog.
|
|
507
|
+
*/
|
|
508
|
+
id: string;
|
|
509
|
+
};
|
|
510
|
+
type DeleteDataLoaderParam = {
|
|
511
|
+
/**
|
|
512
|
+
* - ID allotted to the data loader.
|
|
513
|
+
*/
|
|
514
|
+
dataLoaderId: string;
|
|
515
|
+
};
|
|
516
|
+
type DeleteFaqParam = {
|
|
517
|
+
/**
|
|
518
|
+
* - ID allotted to an FAQ category.
|
|
519
|
+
*/
|
|
520
|
+
categoryId: string;
|
|
521
|
+
/**
|
|
522
|
+
* - ID allotted to an FAQ.
|
|
523
|
+
*/
|
|
524
|
+
faqId: string;
|
|
525
|
+
};
|
|
526
|
+
type DeleteFaqCategoryParam = {
|
|
527
|
+
/**
|
|
528
|
+
* - ID allotted to an FAQ category.
|
|
529
|
+
*/
|
|
530
|
+
id: string;
|
|
531
|
+
};
|
|
532
|
+
type DeleteLandingPageParam = {
|
|
533
|
+
/**
|
|
534
|
+
* - ID allotted to a landing page.
|
|
535
|
+
*/
|
|
536
|
+
id: string;
|
|
537
|
+
};
|
|
538
|
+
type DeleteNavigationParam = {
|
|
539
|
+
/**
|
|
540
|
+
* - ID allotted to the navigation.
|
|
541
|
+
*/
|
|
542
|
+
id: string;
|
|
543
|
+
};
|
|
544
|
+
type DeletePageParam = {
|
|
545
|
+
/**
|
|
546
|
+
* - ID allotted to the page.
|
|
547
|
+
*/
|
|
548
|
+
id: string;
|
|
549
|
+
};
|
|
550
|
+
type DeletePathRedirectionRulesParam = {
|
|
551
|
+
/**
|
|
552
|
+
* - ID allotted to the path redirection rule.
|
|
553
|
+
*/
|
|
554
|
+
pathId: string;
|
|
555
|
+
};
|
|
556
|
+
type DeleteSlideshowParam = {
|
|
557
|
+
/**
|
|
558
|
+
* - ID allotted to the slideshow.
|
|
559
|
+
*/
|
|
560
|
+
id: string;
|
|
561
|
+
};
|
|
562
|
+
type EditDataLoaderParam = {
|
|
563
|
+
/**
|
|
564
|
+
* - ID allotted to the data loader.
|
|
565
|
+
*/
|
|
566
|
+
dataLoaderId: string;
|
|
567
|
+
body: ContentPlatformModel.DataLoaderSchema;
|
|
568
|
+
};
|
|
569
|
+
type EditInjectableTagParam = {
|
|
570
|
+
/**
|
|
571
|
+
* - ID allotted to the tag.
|
|
572
|
+
*/
|
|
573
|
+
tagId: string;
|
|
574
|
+
body: ContentPlatformModel.UpdateHandpickedSchema;
|
|
575
|
+
};
|
|
576
|
+
type GenerateSEOTitleParam = {
|
|
577
|
+
/**
|
|
578
|
+
* - String
|
|
579
|
+
* representing the type of SEO content to be generated. Possible values are:
|
|
580
|
+
* title, description
|
|
581
|
+
*/
|
|
582
|
+
type: ContentPlatformModel.GenerationEntityType;
|
|
583
|
+
body: ContentPlatformModel.GenerateSEOContent;
|
|
584
|
+
};
|
|
585
|
+
type GetAnnouncementByIdParam = {
|
|
586
|
+
/**
|
|
587
|
+
* - ID allotted to the announcement.
|
|
588
|
+
*/
|
|
589
|
+
announcementId: string;
|
|
590
|
+
};
|
|
591
|
+
type GetAnnouncementsListParam = {
|
|
592
|
+
/**
|
|
593
|
+
* - The page number to navigate through the given
|
|
594
|
+
* set of results. Default value is 1.
|
|
595
|
+
*/
|
|
596
|
+
pageNo?: number;
|
|
597
|
+
/**
|
|
598
|
+
* - The number of items to retrieve in each page.
|
|
599
|
+
* Default value is 10.
|
|
600
|
+
*/
|
|
601
|
+
pageSize?: number;
|
|
602
|
+
};
|
|
603
|
+
type GetBlogBySlugParam = {
|
|
604
|
+
/**
|
|
605
|
+
* - A short, human-readable, URL-friendly identifier of
|
|
606
|
+
* a blog page. You can get slug value of a blog from `getBlogs` API.
|
|
607
|
+
*/
|
|
608
|
+
slug: string;
|
|
609
|
+
};
|
|
610
|
+
type GetBlogsParam = {
|
|
611
|
+
/**
|
|
612
|
+
* - The page number to navigate through the given
|
|
613
|
+
* set of results. Default value is 1.
|
|
614
|
+
*/
|
|
615
|
+
pageNo?: number;
|
|
616
|
+
/**
|
|
617
|
+
* - The number of items to retrieve in each page.
|
|
618
|
+
* Default value is 10.
|
|
619
|
+
*/
|
|
620
|
+
pageSize?: number;
|
|
621
|
+
};
|
|
622
|
+
type GetComponentByIdParam = {
|
|
623
|
+
/**
|
|
624
|
+
* - A short, human-readable, URL-friendly identifier of
|
|
625
|
+
* a blog page. You can get slug value of a blog from `getBlogs` API.
|
|
626
|
+
*/
|
|
627
|
+
slug: string;
|
|
628
|
+
};
|
|
629
|
+
type GetFaqByIdOrSlugParam = {
|
|
630
|
+
/**
|
|
631
|
+
* - ID or the slug allotted to an FAQ category.
|
|
632
|
+
* Slug is a short, human-readable, URL-friendly identifier of an object. You
|
|
633
|
+
* can get slug value of an FAQ category from `getFaqCategories` API.
|
|
634
|
+
*/
|
|
635
|
+
idOrSlug: string;
|
|
636
|
+
};
|
|
637
|
+
type GetFaqCategoryBySlugOrIdParam = {
|
|
638
|
+
/**
|
|
639
|
+
* - ID or the slug allotted to an FAQ category.
|
|
640
|
+
* Slug is a short, human-readable, URL-friendly identifier of an object. You
|
|
641
|
+
* can get slug value of an FAQ category from `getFaqCategories` API.
|
|
642
|
+
*/
|
|
643
|
+
idOrSlug: string;
|
|
644
|
+
};
|
|
645
|
+
type GetFaqsByCategoryIdOrSlugParam = {
|
|
646
|
+
/**
|
|
647
|
+
* - ID or the slug allotted to an FAQ category.
|
|
648
|
+
* Slug is a short, human-readable, URL-friendly identifier of an object. You
|
|
649
|
+
* can get slug value of an FAQ category from `getFaqCategories` API.
|
|
650
|
+
*/
|
|
651
|
+
idOrSlug: string;
|
|
652
|
+
};
|
|
653
|
+
type GetLandingPagesParam = {
|
|
654
|
+
/**
|
|
655
|
+
* - The page number to navigate through the given
|
|
656
|
+
* set of results. Default value is 1.
|
|
657
|
+
*/
|
|
658
|
+
pageNo?: number;
|
|
659
|
+
/**
|
|
660
|
+
* - The number of items to retrieve in each page.
|
|
661
|
+
* Default value is 10.
|
|
662
|
+
*/
|
|
663
|
+
pageSize?: number;
|
|
664
|
+
};
|
|
665
|
+
type GetNavigationBySlugParam = {
|
|
666
|
+
/**
|
|
667
|
+
* - A short, human-readable, URL-friendly identifier of
|
|
668
|
+
* a navigation. You can get slug value of a navigation from `getNavigations` API.
|
|
669
|
+
*/
|
|
670
|
+
slug: string;
|
|
671
|
+
/**
|
|
672
|
+
* - Filter navigations by platform.
|
|
673
|
+
* Acceptable values are: web, android, ios, all
|
|
674
|
+
*/
|
|
675
|
+
devicePlatform: string;
|
|
676
|
+
};
|
|
677
|
+
type GetNavigationsParam = {
|
|
678
|
+
/**
|
|
679
|
+
* - Filter navigations by platform.
|
|
680
|
+
* Acceptable values are: web, android, ios, all
|
|
681
|
+
*/
|
|
682
|
+
devicePlatform: string;
|
|
683
|
+
/**
|
|
684
|
+
* - The page number to navigate through the given
|
|
685
|
+
* set of results. Default value is 1.
|
|
686
|
+
*/
|
|
687
|
+
pageNo?: number;
|
|
688
|
+
/**
|
|
689
|
+
* - The number of items to retrieve in each page.
|
|
690
|
+
* Default value is 10.
|
|
691
|
+
*/
|
|
692
|
+
pageSize?: number;
|
|
693
|
+
};
|
|
694
|
+
type GetPageBySlugParam = {
|
|
695
|
+
/**
|
|
696
|
+
* - A short, human-readable, URL-friendly identifier of
|
|
697
|
+
* a page. You can get slug value of a page from `getPages` API.
|
|
698
|
+
*/
|
|
699
|
+
slug: string;
|
|
700
|
+
};
|
|
701
|
+
type GetPagesParam = {
|
|
702
|
+
/**
|
|
703
|
+
* - The page number to navigate through the given
|
|
704
|
+
* set of results. Default value is 1.
|
|
705
|
+
*/
|
|
706
|
+
pageNo?: number;
|
|
707
|
+
/**
|
|
708
|
+
* - The number of items to retrieve in each page.
|
|
709
|
+
* Default value is 10.
|
|
710
|
+
*/
|
|
711
|
+
pageSize?: number;
|
|
712
|
+
};
|
|
713
|
+
type GetPathRedirectionRuleParam = {
|
|
714
|
+
/**
|
|
715
|
+
* - ID allotted to the path redirection rule.
|
|
716
|
+
*/
|
|
717
|
+
pathId: string;
|
|
718
|
+
};
|
|
719
|
+
type GetPathRedirectionRulesParam = {
|
|
720
|
+
/**
|
|
721
|
+
* - The number of items to retrieve in each page.
|
|
722
|
+
* Default value is 5.
|
|
723
|
+
*/
|
|
724
|
+
pageSize?: number;
|
|
725
|
+
/**
|
|
726
|
+
* - The page number to navigate through the given
|
|
727
|
+
* set of results. Default value is 1.
|
|
728
|
+
*/
|
|
729
|
+
pageNo?: number;
|
|
730
|
+
};
|
|
731
|
+
type GetSlideshowBySlugParam = {
|
|
732
|
+
/**
|
|
733
|
+
* - A short, human-readable, URL-friendly identifier of
|
|
734
|
+
* a slideshow. You can get slug value of a page from `getSlideshows` API.
|
|
735
|
+
*/
|
|
736
|
+
slug: string;
|
|
737
|
+
/**
|
|
738
|
+
* - Filter slideshows by platform. Acceptable
|
|
739
|
+
* values are: web, android, ios and all
|
|
740
|
+
*/
|
|
741
|
+
devicePlatform: string;
|
|
742
|
+
};
|
|
743
|
+
type GetSlideshowsParam = {
|
|
744
|
+
/**
|
|
745
|
+
* - Filter slideshows by platform. Acceptable
|
|
746
|
+
* values are: web, android, ios and all
|
|
747
|
+
*/
|
|
748
|
+
devicePlatform: string;
|
|
749
|
+
/**
|
|
750
|
+
* - The page number to navigate through the given
|
|
751
|
+
* set of results. Default value is 1.
|
|
752
|
+
*/
|
|
753
|
+
pageNo?: number;
|
|
754
|
+
/**
|
|
755
|
+
* - The number of items to retrieve in each page.
|
|
756
|
+
* Default value is 10.
|
|
757
|
+
*/
|
|
758
|
+
pageSize?: number;
|
|
759
|
+
};
|
|
760
|
+
type RemoveInjectableTagParam = {
|
|
761
|
+
body: ContentPlatformModel.RemoveHandpickedSchema;
|
|
762
|
+
};
|
|
763
|
+
type ResetDataLoaderParam = {
|
|
764
|
+
/**
|
|
765
|
+
* - Name of service.
|
|
766
|
+
*/
|
|
767
|
+
service: string;
|
|
768
|
+
/**
|
|
769
|
+
* - Name of operation id of the service.
|
|
770
|
+
*/
|
|
771
|
+
operationId: string;
|
|
772
|
+
};
|
|
773
|
+
type SelectDataLoaderParam = {
|
|
774
|
+
/**
|
|
775
|
+
* - ID allotted to the data loader.
|
|
776
|
+
*/
|
|
777
|
+
dataLoaderId: string;
|
|
778
|
+
};
|
|
779
|
+
type UpdateAnnouncementParam = {
|
|
780
|
+
/**
|
|
781
|
+
* - ID allotted to the announcement.
|
|
782
|
+
*/
|
|
783
|
+
announcementId: string;
|
|
784
|
+
body: ContentPlatformModel.AdminAnnouncementSchema;
|
|
785
|
+
};
|
|
786
|
+
type UpdateAnnouncementScheduleParam = {
|
|
787
|
+
/**
|
|
788
|
+
* - ID allotted to the announcement.
|
|
789
|
+
*/
|
|
790
|
+
announcementId: string;
|
|
791
|
+
body: ContentPlatformModel.ScheduleSchema;
|
|
792
|
+
};
|
|
793
|
+
type UpdateBlogParam = {
|
|
794
|
+
/**
|
|
795
|
+
* - ID allotted to the blog.
|
|
796
|
+
*/
|
|
797
|
+
id: string;
|
|
798
|
+
body: ContentPlatformModel.BlogRequest;
|
|
799
|
+
};
|
|
800
|
+
type UpdateFaqParam = {
|
|
801
|
+
/**
|
|
802
|
+
* - ID allotted to an FAQ category.
|
|
803
|
+
*/
|
|
804
|
+
categoryId: string;
|
|
805
|
+
/**
|
|
806
|
+
* - ID allotted to an FAQ.
|
|
807
|
+
*/
|
|
808
|
+
faqId: string;
|
|
809
|
+
body: ContentPlatformModel.CreateFaqSchema;
|
|
810
|
+
};
|
|
811
|
+
type UpdateFaqCategoryParam = {
|
|
812
|
+
/**
|
|
813
|
+
* - ID allotted to an FAQ category.
|
|
814
|
+
*/
|
|
815
|
+
id: string;
|
|
816
|
+
body: ContentPlatformModel.UpdateFaqCategoryRequestSchema;
|
|
817
|
+
};
|
|
818
|
+
type UpdateInjectableTagParam = {
|
|
819
|
+
body: ContentPlatformModel.CreateTagRequestSchema;
|
|
820
|
+
};
|
|
821
|
+
type UpdateLandingPageParam = {
|
|
822
|
+
/**
|
|
823
|
+
* - ID allotted to a landing page.
|
|
824
|
+
*/
|
|
825
|
+
id: string;
|
|
826
|
+
body: ContentPlatformModel.LandingPageSchema;
|
|
827
|
+
};
|
|
828
|
+
type UpdateLegalInformationParam = {
|
|
829
|
+
body: ContentPlatformModel.ApplicationLegal;
|
|
830
|
+
};
|
|
831
|
+
type UpdateNavigationParam = {
|
|
832
|
+
/**
|
|
833
|
+
* - ID allotted to the navigation.
|
|
834
|
+
*/
|
|
835
|
+
id: string;
|
|
836
|
+
body: ContentPlatformModel.NavigationRequest;
|
|
837
|
+
};
|
|
838
|
+
type UpdatePageParam = {
|
|
839
|
+
/**
|
|
840
|
+
* - ID allotted to the page.
|
|
841
|
+
*/
|
|
842
|
+
id: string;
|
|
843
|
+
body: ContentPlatformModel.PageSchema;
|
|
844
|
+
};
|
|
845
|
+
type UpdatePagePreviewParam = {
|
|
846
|
+
/**
|
|
847
|
+
* - A short, human-readable, URL-friendly identifier of
|
|
848
|
+
* a page. You can get slug value of a page from `getPages` API.
|
|
849
|
+
*/
|
|
850
|
+
slug: string;
|
|
851
|
+
body: ContentPlatformModel.PagePublishRequest;
|
|
852
|
+
};
|
|
853
|
+
type UpdatePathRedirectionRulesParam = {
|
|
854
|
+
/**
|
|
855
|
+
* - ID allotted to the path redirection rule.
|
|
856
|
+
*/
|
|
857
|
+
pathId: string;
|
|
858
|
+
body: ContentPlatformModel.PathMappingSchema;
|
|
859
|
+
};
|
|
860
|
+
type UpdateSEOConfigurationParam = {
|
|
861
|
+
body: ContentPlatformModel.SeoComponent;
|
|
862
|
+
};
|
|
863
|
+
type UpdateSlideshowParam = {
|
|
864
|
+
/**
|
|
865
|
+
* - ID allotted to the slideshow.
|
|
866
|
+
*/
|
|
867
|
+
id: string;
|
|
868
|
+
body: ContentPlatformModel.SlideshowRequest;
|
|
869
|
+
};
|
|
870
|
+
type UpdateSupportInformationParam = {
|
|
871
|
+
body: ContentPlatformModel.Support;
|
|
872
|
+
};
|
|
873
|
+
type DeleteAllInjectableTagsParam = any;
|
|
874
|
+
type GetDataLoadersParam = any;
|
|
875
|
+
type GetDefaultNavigationsParam = any;
|
|
876
|
+
type GetFaqCategoriesParam = any;
|
|
877
|
+
type GetInjectableTagsParam = any;
|
|
878
|
+
type GetLegalInformationParam = any;
|
|
879
|
+
type GetPageMetaParam = any;
|
|
880
|
+
type GetPageSpecParam = any;
|
|
881
|
+
type GetSEOConfigurationParam = any;
|
|
882
|
+
type GetSupportInformationParam = any;
|
|
883
|
+
import ContentPlatformModel = require("./ContentPlatformModel");
|