@gofynd/fdk-client-javascript 3.1.0-beta.1 → 3.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 +1 -1
- package/package.json +2 -2
- package/sdk/application/ApplicationClient.d.ts +2 -0
- package/sdk/application/ApplicationClient.js +2 -0
- package/sdk/application/Cart/CartApplicationClient.d.ts +81 -101
- package/sdk/application/Cart/CartApplicationClient.js +173 -511
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +110 -110
- package/sdk/application/Catalog/CatalogApplicationClient.js +214 -447
- package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
- package/sdk/application/Common/CommonApplicationClient.js +4 -19
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +3 -43
- package/sdk/application/Communication/CommunicationApplicationClient.js +4 -214
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +41 -54
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +39 -192
- package/sdk/application/Content/ContentApplicationClient.d.ts +61 -61
- package/sdk/application/Content/ContentApplicationClient.js +183 -366
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +2 -2
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +11 -30
- package/sdk/application/Finance/FinanceApplicationClient.d.ts +29 -0
- package/sdk/application/Finance/FinanceApplicationClient.js +111 -0
- package/sdk/application/Lead/LeadApplicationClient.d.ts +6 -6
- package/sdk/application/Lead/LeadApplicationClient.js +24 -55
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +28 -117
- package/sdk/application/Logistic/LogisticApplicationClient.js +99 -492
- package/sdk/application/Order/OrderApplicationClient.d.ts +31 -51
- package/sdk/application/Order/OrderApplicationClient.js +89 -293
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +108 -218
- package/sdk/application/Payment/PaymentApplicationClient.js +100 -1081
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +14 -14
- package/sdk/application/Rewards/RewardsApplicationClient.js +13 -66
- package/sdk/application/Share/ShareApplicationClient.d.ts +11 -11
- package/sdk/application/Share/ShareApplicationClient.js +35 -89
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +5 -25
- package/sdk/application/Theme/ThemeApplicationClient.js +24 -150
- package/sdk/application/User/UserApplicationClient.d.ts +23 -13
- package/sdk/application/User/UserApplicationClient.js +49 -407
- package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
- package/sdk/application/Webhook/WebhookApplicationClient.js +4 -11
- package/sdk/common/Utility.d.ts +1 -1
- package/sdk/common/Utility.js +10 -7
- package/sdk/common/Validator.d.ts +1 -0
- package/sdk/common/Validator.js +20 -0
- package/sdk/common/utils.d.ts +0 -1
- package/sdk/common/utils.js +0 -14
- package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +10 -54
- package/sdk/partner/FileStorage/FileStoragePartnerClient.js +32 -364
- package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +54 -1
- package/sdk/partner/FileStorage/FileStoragePartnerModel.js +43 -0
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +1 -5
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +4 -35
- package/sdk/partner/Lead/LeadPartnerClient.d.ts +5 -5
- package/sdk/partner/Lead/LeadPartnerClient.js +4 -4
- package/sdk/partner/Lead/LeadPartnerModel.d.ts +52 -98
- package/sdk/partner/Lead/LeadPartnerModel.js +76 -100
- package/sdk/partner/Lead/LeadPartnerValidator.js +1 -1
- package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +172 -41
- package/sdk/partner/Logistics/LogisticsPartnerClient.js +1222 -85
- package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +1921 -297
- package/sdk/partner/Logistics/LogisticsPartnerModel.js +973 -258
- package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +13 -1
- package/sdk/partner/Logistics/LogisticsPartnerValidator.js +148 -16
- package/sdk/partner/PartnerClient.d.ts +0 -6
- package/sdk/partner/PartnerClient.js +0 -9
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +21 -63
- package/sdk/partner/Theme/ThemePartnerClient.js +67 -392
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +72 -104
- package/sdk/partner/Theme/ThemePartnerModel.js +75 -101
- package/sdk/partner/Theme/ThemePartnerValidator.d.ts +1 -5
- package/sdk/partner/Theme/ThemePartnerValidator.js +12 -42
- package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +18 -18
- package/sdk/partner/Webhook/WebhookPartnerClient.js +18 -18
- package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +673 -189
- package/sdk/partner/Webhook/WebhookPartnerModel.js +270 -159
- package/sdk/partner/Webhook/WebhookPartnerValidator.js +3 -3
- package/sdk/partner/index.d.ts +0 -3
- package/sdk/partner/index.js +0 -6
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +4 -1
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +3 -3
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +3 -3
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +2 -32
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +3 -243
- 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 +12 -12
- package/sdk/platform/Billing/BillingPlatformClient.js +15 -15
- 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 +172 -251
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +577 -648
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +270 -165
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +192 -108
- package/sdk/platform/Cart/CartPlatformModel.d.ts +4554 -3154
- package/sdk/platform/Cart/CartPlatformModel.js +1935 -2854
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +380 -976
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +2004 -6464
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +161 -1082
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +80 -884
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +568 -325
- package/sdk/platform/Catalog/CatalogPlatformClient.js +1560 -1162
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +9772 -7871
- package/sdk/platform/Catalog/CatalogPlatformModel.js +6978 -9516
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +231 -240
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +180 -188
- package/sdk/platform/Common/CommonPlatformClient.d.ts +6 -5
- package/sdk/platform/Common/CommonPlatformClient.js +6 -5
- package/sdk/platform/Common/CommonPlatformModel.d.ts +19 -25
- package/sdk/platform/Common/CommonPlatformModel.js +11 -14
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +240 -376
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +589 -874
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +139 -170
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +126 -145
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +3 -56
- package/sdk/platform/Communication/CommunicationPlatformClient.js +4 -307
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +330 -502
- package/sdk/platform/Communication/CommunicationPlatformModel.js +376 -610
- package/sdk/platform/Communication/CommunicationPlatformValidator.d.ts +3 -62
- package/sdk/platform/Communication/CommunicationPlatformValidator.js +2 -48
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +72 -100
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +88 -146
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +270 -241
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +248 -226
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +20 -31
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +20 -25
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +117 -332
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +409 -1470
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +55 -158
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +41 -163
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +65 -142
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +103 -568
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +562 -1289
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +368 -1037
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +34 -80
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +24 -79
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +302 -248
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +1292 -773
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +330 -218
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +325 -208
- package/sdk/platform/Content/ContentPlatformClient.d.ts +279 -118
- package/sdk/platform/Content/ContentPlatformClient.js +1617 -492
- package/sdk/platform/Content/ContentPlatformModel.d.ts +2391 -924
- package/sdk/platform/Content/ContentPlatformModel.js +1314 -970
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +272 -134
- package/sdk/platform/Content/ContentPlatformValidator.js +295 -118
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +53 -43
- package/sdk/platform/Discount/DiscountPlatformClient.js +53 -43
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +383 -110
- package/sdk/platform/Discount/DiscountPlatformModel.js +117 -108
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +56 -36
- package/sdk/platform/Discount/DiscountPlatformValidator.js +29 -19
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +4 -163
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +4 -1078
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +5 -141
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +4 -177
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +8 -8
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +8 -8
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +30 -1123
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +24 -1135
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +17 -17
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +33 -33
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +19 -19
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +14 -14
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +24 -4
- package/sdk/platform/Lead/LeadPlatformClient.js +160 -4
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +60 -140
- package/sdk/platform/Lead/LeadPlatformModel.js +81 -162
- package/sdk/platform/Lead/LeadPlatformValidator.d.ts +29 -3
- package/sdk/platform/Lead/LeadPlatformValidator.js +28 -2
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +19 -98
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +27 -662
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +91 -118
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +32 -127
- package/sdk/platform/Order/OrderPlatformClient.d.ts +406 -403
- package/sdk/platform/Order/OrderPlatformClient.js +1200 -1343
- package/sdk/platform/Order/OrderPlatformModel.d.ts +8665 -4505
- package/sdk/platform/Order/OrderPlatformModel.js +4088 -3601
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +666 -442
- package/sdk/platform/Order/OrderPlatformValidator.js +353 -312
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +6 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +9 -7
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +67 -19
- package/sdk/platform/Partner/PartnerPlatformModel.js +26 -17
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +135 -382
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +937 -2452
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +100 -306
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +74 -305
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +56 -66
- package/sdk/platform/Payment/PaymentPlatformClient.js +124 -269
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +1307 -3536
- package/sdk/platform/Payment/PaymentPlatformModel.js +1389 -3692
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +35 -64
- package/sdk/platform/Payment/PaymentPlatformValidator.js +34 -60
- package/sdk/platform/PlatformClient.d.ts +0 -2
- package/sdk/platform/PlatformClient.js +0 -4
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +12 -12
- package/sdk/platform/Rewards/RewardsPlatformModel.js +10 -10
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +64 -136
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +111 -521
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +75 -117
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +50 -105
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +160 -149
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +766 -545
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +6196 -3978
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +3181 -3895
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +294 -220
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +205 -149
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +16 -4
- package/sdk/platform/Share/SharePlatformApplicationClient.js +86 -8
- package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +23 -6
- package/sdk/platform/Share/SharePlatformApplicationValidator.js +16 -3
- package/sdk/platform/Share/SharePlatformModel.d.ts +53 -9
- package/sdk/platform/Share/SharePlatformModel.js +45 -5
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +17 -37
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +66 -204
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +25 -26
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +20 -31
- package/sdk/platform/Theme/ThemePlatformClient.d.ts +8 -18
- package/sdk/platform/Theme/ThemePlatformClient.js +8 -85
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +17 -425
- package/sdk/platform/Theme/ThemePlatformModel.js +23 -329
- package/sdk/platform/Theme/ThemePlatformValidator.d.ts +3 -7
- package/sdk/platform/Theme/ThemePlatformValidator.js +2 -9
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +81 -18
- package/sdk/platform/User/UserPlatformApplicationClient.js +491 -27
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +126 -10
- package/sdk/platform/User/UserPlatformApplicationValidator.js +92 -7
- package/sdk/platform/User/UserPlatformModel.d.ts +317 -218
- package/sdk/platform/User/UserPlatformModel.js +253 -210
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +25 -78
- package/sdk/platform/Webhook/WebhookPlatformClient.js +75 -470
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +813 -426
- package/sdk/platform/Webhook/WebhookPlatformModel.js +446 -395
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +10 -55
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +12 -72
- package/sdk/platform/index.d.ts +0 -1
- package/sdk/platform/index.js +0 -2
- 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 +4 -14
- package/sdk/public/Configuration/ConfigurationPublicClient.js +10 -113
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +46 -114
- package/sdk/public/Configuration/ConfigurationPublicModel.js +32 -117
- package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +1 -11
- package/sdk/public/Configuration/ConfigurationPublicValidator.js +0 -12
- package/sdk/public/Content/ContentPublicClient.d.ts +36 -25
- package/sdk/public/Content/ContentPublicClient.js +254 -280
- package/sdk/public/Content/ContentPublicModel.d.ts +151 -38
- package/sdk/public/Content/ContentPublicModel.js +98 -44
- package/sdk/public/Content/ContentPublicValidator.d.ts +18 -17
- package/sdk/public/Content/ContentPublicValidator.js +26 -19
- package/sdk/public/Partner/PartnerPublicClient.d.ts +1 -1
- package/sdk/public/Partner/PartnerPublicClient.js +6 -11
- 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 +2 -0
- package/sdk/public/PublicClient.js +4 -0
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
- package/sdk/public/Webhook/WebhookPublicClient.js +9 -48
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +215 -67
- package/sdk/public/Webhook/WebhookPublicModel.js +66 -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/sdk/partner/Authorization/AuthorizationPartnerClient.d.ts +0 -66
- package/sdk/partner/Authorization/AuthorizationPartnerClient.js +0 -431
- package/sdk/partner/Authorization/AuthorizationPartnerModel.d.ts +0 -231
- package/sdk/partner/Authorization/AuthorizationPartnerModel.js +0 -152
- package/sdk/partner/Authorization/AuthorizationPartnerValidator.d.ts +0 -8
- package/sdk/partner/Authorization/AuthorizationPartnerValidator.js +0 -39
- package/sdk/partner/Catalog/CatalogPartnerClient.d.ts +0 -26
- package/sdk/partner/Catalog/CatalogPartnerClient.js +0 -173
- package/sdk/partner/Catalog/CatalogPartnerModel.d.ts +0 -238
- package/sdk/partner/Catalog/CatalogPartnerModel.js +0 -248
- package/sdk/partner/Catalog/CatalogPartnerValidator.d.ts +0 -5
- package/sdk/partner/Catalog/CatalogPartnerValidator.js +0 -19
- package/sdk/partner/Payment/PaymentPartnerClient.d.ts +0 -116
- package/sdk/partner/Payment/PaymentPartnerClient.js +0 -857
- package/sdk/partner/Payment/PaymentPartnerModel.d.ts +0 -388
- package/sdk/partner/Payment/PaymentPartnerModel.js +0 -442
- package/sdk/partner/Payment/PaymentPartnerValidator.d.ts +0 -14
- package/sdk/partner/Payment/PaymentPartnerValidator.js +0 -74
- 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 -2895
- package/sdk/platform/Finance/FinancePlatformModel.js +0 -2150
- package/sdk/platform/Finance/FinancePlatformValidator.d.ts +0 -284
- package/sdk/platform/Finance/FinancePlatformValidator.js +0 -354
|
@@ -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,80 +21,84 @@ 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
|
|
47
55
|
* @property {ContentPlatformModel.CreateFaqCategoryRequestSchema} body
|
|
48
56
|
*/
|
|
49
|
-
/**
|
|
50
|
-
* @typedef CreateInjectableTagParam
|
|
51
|
-
* @property {ContentPlatformModel.CreateTagRequestSchema} body
|
|
52
|
-
*/
|
|
53
57
|
/**
|
|
54
58
|
* @typedef CreateLandingPageParam
|
|
55
59
|
* @property {ContentPlatformModel.LandingPageSchema} body
|
|
56
60
|
*/
|
|
57
61
|
/**
|
|
58
62
|
* @typedef CreateNavigationParam
|
|
59
|
-
* @property {ContentPlatformModel.
|
|
63
|
+
* @property {ContentPlatformModel.NavigationPayload} body
|
|
60
64
|
*/
|
|
61
65
|
/**
|
|
62
66
|
* @typedef CreatePageParam
|
|
63
|
-
* @property {ContentPlatformModel.
|
|
64
|
-
*/
|
|
65
|
-
/**
|
|
66
|
-
* @typedef CreatePagePreviewParam
|
|
67
|
-
* @property {ContentPlatformModel.PageRequest} body
|
|
67
|
+
* @property {ContentPlatformModel.PagePayload} body
|
|
68
68
|
*/
|
|
69
69
|
/**
|
|
70
70
|
* @typedef CreateSEOMarkupSchemaParam
|
|
71
71
|
* @property {ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody} body
|
|
72
72
|
*/
|
|
73
|
-
/**
|
|
73
|
+
/**
|
|
74
|
+
* @typedef CreateTranslateUILabelsParam
|
|
75
|
+
* @property {ContentPlatformModel.TranslateUiLabelsCreate} body
|
|
76
|
+
*/
|
|
74
77
|
/**
|
|
75
78
|
* @typedef DeleteAnnouncementParam
|
|
76
79
|
* @property {string} announcementId - ID allotted to the announcement.
|
|
77
80
|
*/
|
|
78
81
|
/**
|
|
79
|
-
* @typedef
|
|
80
|
-
* @property {string}
|
|
82
|
+
* @typedef DeleteAppCustomFieldDefinitionBySlugParam
|
|
83
|
+
* @property {string} slug
|
|
84
|
+
* @property {string} resource
|
|
85
|
+
* @property {string} namespace
|
|
81
86
|
*/
|
|
82
87
|
/**
|
|
83
|
-
* @typedef
|
|
84
|
-
* @property {string}
|
|
85
|
-
* @property {string}
|
|
86
|
-
* @property {string} ids
|
|
88
|
+
* @typedef DeleteAppCustomObjectBySlugParam
|
|
89
|
+
* @property {string} definitionSlug
|
|
90
|
+
* @property {string} slug
|
|
87
91
|
*/
|
|
88
92
|
/**
|
|
89
|
-
* @typedef
|
|
90
|
-
* @property {string}
|
|
93
|
+
* @typedef DeleteAppCustomObjectDefinitionBySlugParam
|
|
94
|
+
* @property {string} slug
|
|
95
|
+
*/
|
|
96
|
+
/**
|
|
97
|
+
* @typedef DeleteApplicationLanguageParam
|
|
98
|
+
* @property {string} locale
|
|
91
99
|
*/
|
|
92
100
|
/**
|
|
93
|
-
* @typedef
|
|
101
|
+
* @typedef DeleteApplicationResourceTranslationParam
|
|
94
102
|
* @property {string} id
|
|
95
103
|
*/
|
|
96
104
|
/**
|
|
@@ -128,7 +136,7 @@ export = ContentPlatformApplicationValidator;
|
|
|
128
136
|
*/
|
|
129
137
|
/**
|
|
130
138
|
* @typedef DeleteSEOMarkupSchemaParam
|
|
131
|
-
* @property {string}
|
|
139
|
+
* @property {string} id - Alphanumeric ID allotted to a SEO Markup Schema
|
|
132
140
|
* Template created within a business.
|
|
133
141
|
*/
|
|
134
142
|
/**
|
|
@@ -143,18 +151,19 @@ export = ContentPlatformApplicationValidator;
|
|
|
143
151
|
*/
|
|
144
152
|
/**
|
|
145
153
|
* @typedef EditSEOMarkupSchemaParam
|
|
146
|
-
* @property {string}
|
|
154
|
+
* @property {string} id - Alphanumeric ID allotted to a SEO Markup Schema
|
|
147
155
|
* Template created within a business.
|
|
148
156
|
* @property {ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody} body
|
|
149
157
|
*/
|
|
150
158
|
/**
|
|
151
|
-
* @typedef
|
|
152
|
-
* @property {string}
|
|
159
|
+
* @typedef ExportAppCustomObjectEntriesBySlugParam
|
|
160
|
+
* @property {string} slug
|
|
153
161
|
*/
|
|
154
162
|
/**
|
|
155
163
|
* @typedef GenerateSEOTitleParam
|
|
156
|
-
* @property {
|
|
157
|
-
* generated. Possible values are:
|
|
164
|
+
* @property {ContentPlatformModel.GenerationEntityType} type - String
|
|
165
|
+
* representing the type of SEO content to be generated. Possible values are:
|
|
166
|
+
* title, description
|
|
158
167
|
* @property {ContentPlatformModel.GenerateSEOContent} body
|
|
159
168
|
*/
|
|
160
169
|
/**
|
|
@@ -169,8 +178,20 @@ export = ContentPlatformApplicationValidator;
|
|
|
169
178
|
* Default value is 10.
|
|
170
179
|
*/
|
|
171
180
|
/**
|
|
172
|
-
* @typedef
|
|
173
|
-
* @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
|
|
174
195
|
*/
|
|
175
196
|
/**
|
|
176
197
|
* @typedef GetAppCustomFieldDefinitionsParam
|
|
@@ -180,30 +201,22 @@ export = ContentPlatformApplicationValidator;
|
|
|
180
201
|
* @property {string} [types]
|
|
181
202
|
* @property {string} [search]
|
|
182
203
|
* @property {string} [slugs]
|
|
183
|
-
|
|
184
|
-
/**
|
|
185
|
-
* @typedef GetAppCustomFieldJobsParam
|
|
186
|
-
* @property {string} page
|
|
187
|
-
* @property {string} pageSize
|
|
188
|
-
* @property {string} actionType
|
|
204
|
+
* @property {string} [namespaces]
|
|
189
205
|
*/
|
|
190
206
|
/** @typedef GetAppCustomFieldTypesParam */
|
|
191
207
|
/**
|
|
192
|
-
* @typedef
|
|
208
|
+
* @typedef GetAppCustomFieldsByResourceSlugParam
|
|
193
209
|
* @property {string} resource
|
|
210
|
+
* @property {string} resourceSlug
|
|
194
211
|
*/
|
|
195
212
|
/**
|
|
196
|
-
* @typedef
|
|
197
|
-
* @property {string}
|
|
198
|
-
* @property {string}
|
|
213
|
+
* @typedef GetAppCustomObjectBySlugParam
|
|
214
|
+
* @property {string} definitionSlug
|
|
215
|
+
* @property {string} slug
|
|
199
216
|
*/
|
|
200
217
|
/**
|
|
201
|
-
* @typedef
|
|
202
|
-
* @property {string}
|
|
203
|
-
*/
|
|
204
|
-
/**
|
|
205
|
-
* @typedef GetAppCustomObjectDefinitionParam
|
|
206
|
-
* @property {string} id
|
|
218
|
+
* @typedef GetAppCustomObjectDefinitionBySlugParam
|
|
219
|
+
* @property {string} slug
|
|
207
220
|
*/
|
|
208
221
|
/**
|
|
209
222
|
* @typedef GetAppCustomObjectDefinitionsParam
|
|
@@ -212,10 +225,10 @@ export = ContentPlatformApplicationValidator;
|
|
|
212
225
|
* @property {string} [search]
|
|
213
226
|
*/
|
|
214
227
|
/**
|
|
215
|
-
* @typedef
|
|
216
|
-
* @property {string} [definitionId]
|
|
228
|
+
* @typedef GetAppCustomObjectsBySlugParam
|
|
217
229
|
* @property {string} pageNo
|
|
218
230
|
* @property {string} pageSize
|
|
231
|
+
* @property {string} definitionSlug
|
|
219
232
|
*/
|
|
220
233
|
/**
|
|
221
234
|
* @typedef GetAppJobsParam
|
|
@@ -224,6 +237,13 @@ export = ContentPlatformApplicationValidator;
|
|
|
224
237
|
* @property {string} actionType
|
|
225
238
|
*/
|
|
226
239
|
/** @typedef GetAppResourcesParam */
|
|
240
|
+
/** @typedef GetApplicationLanguagesParam */
|
|
241
|
+
/**
|
|
242
|
+
* @typedef GetApplicationResourceTranslationsParam
|
|
243
|
+
* @property {string} locale
|
|
244
|
+
* @property {string} type
|
|
245
|
+
* @property {string} resourceId
|
|
246
|
+
*/
|
|
227
247
|
/**
|
|
228
248
|
* @typedef GetBlogBySlugParam
|
|
229
249
|
* @property {string} slug - A short, human-readable, URL-friendly identifier of
|
|
@@ -241,16 +261,6 @@ export = ContentPlatformApplicationValidator;
|
|
|
241
261
|
* @property {string} [title] - Blogs retrieve based on the title passed.
|
|
242
262
|
* @property {string} [status] - Blogs retrieve based on the status passed.
|
|
243
263
|
*/
|
|
244
|
-
/**
|
|
245
|
-
* @typedef GetComponentByIdParam
|
|
246
|
-
* @property {string} slug - A short, human-readable, URL-friendly identifier of
|
|
247
|
-
* a blog page. You can get slug value of a blog from `getBlogs` API.
|
|
248
|
-
*/
|
|
249
|
-
/**
|
|
250
|
-
* @typedef GetDataLoaderApiSpecsParam
|
|
251
|
-
* @property {string} dataLoader - Alphanumeric ID allotted to an application
|
|
252
|
-
* created within a business account.
|
|
253
|
-
*/
|
|
254
264
|
/** @typedef GetDataLoadersParam */
|
|
255
265
|
/**
|
|
256
266
|
* @typedef GetDataLoadersByServiceParam
|
|
@@ -281,7 +291,10 @@ export = ContentPlatformApplicationValidator;
|
|
|
281
291
|
* Slug is a short, human-readable, URL-friendly identifier of an object. You
|
|
282
292
|
* can get slug value of an FAQ category from `getFaqCategories` API.
|
|
283
293
|
*/
|
|
284
|
-
/**
|
|
294
|
+
/**
|
|
295
|
+
* @typedef GetInjectableTagsParam
|
|
296
|
+
* @property {boolean} [all] - Get all tags irrespective of the creator of tags
|
|
297
|
+
*/
|
|
285
298
|
/**
|
|
286
299
|
* @typedef GetLandingPagesParam
|
|
287
300
|
* @property {number} [pageNo] - The page number to navigate through the given
|
|
@@ -334,7 +347,7 @@ export = ContentPlatformApplicationValidator;
|
|
|
334
347
|
/** @typedef GetSEOConfigurationParam */
|
|
335
348
|
/**
|
|
336
349
|
* @typedef GetSEOMarkupSchemaParam
|
|
337
|
-
* @property {string}
|
|
350
|
+
* @property {string} id - Alphanumeric ID allotted to a SEO Markup Schema
|
|
338
351
|
* Template created within a business.
|
|
339
352
|
*/
|
|
340
353
|
/**
|
|
@@ -348,8 +361,19 @@ export = ContentPlatformApplicationValidator;
|
|
|
348
361
|
*/
|
|
349
362
|
/** @typedef GetSupportInformationParam */
|
|
350
363
|
/**
|
|
351
|
-
* @typedef
|
|
352
|
-
* @property {string}
|
|
364
|
+
* @typedef GetTranslateUILabelsParam
|
|
365
|
+
* @property {string} [templateThemeId] - Unique id of template theme
|
|
366
|
+
* @property {string} [themeId] - Unique id of theme
|
|
367
|
+
* @property {string} [locale] - Multilingual locale
|
|
368
|
+
* @property {string} [type] - Filter Translate Ui Labels by type
|
|
369
|
+
*/
|
|
370
|
+
/**
|
|
371
|
+
* @typedef GetTranslateUILabelsByIdParam
|
|
372
|
+
* @property {string} id - ID of the Translate Ui Labels
|
|
373
|
+
*/
|
|
374
|
+
/**
|
|
375
|
+
* @typedef ImportAppCustomObjectEntriesBySlugParam
|
|
376
|
+
* @property {string} slug
|
|
353
377
|
* @property {ContentPlatformModel.CustomObjectBulkSchema} body
|
|
354
378
|
*/
|
|
355
379
|
/**
|
|
@@ -362,8 +386,8 @@ export = ContentPlatformApplicationValidator;
|
|
|
362
386
|
* @property {string} operationId - Name of operation id of the service.
|
|
363
387
|
*/
|
|
364
388
|
/**
|
|
365
|
-
* @typedef
|
|
366
|
-
* @property {string}
|
|
389
|
+
* @typedef SampleAppCustomObjectBulkEntryBySlugParam
|
|
390
|
+
* @property {string} slug
|
|
367
391
|
*/
|
|
368
392
|
/**
|
|
369
393
|
* @typedef SelectDataLoaderParam
|
|
@@ -380,30 +404,43 @@ export = ContentPlatformApplicationValidator;
|
|
|
380
404
|
* @property {ContentPlatformModel.ScheduleSchema} body
|
|
381
405
|
*/
|
|
382
406
|
/**
|
|
383
|
-
* @typedef
|
|
407
|
+
* @typedef UpdateAppCustomFieldByResourceSlugParam
|
|
384
408
|
* @property {string} resource
|
|
385
|
-
* @property {string}
|
|
409
|
+
* @property {string} resourceSlug
|
|
386
410
|
* @property {ContentPlatformModel.CustomFieldRequestSchema} body
|
|
387
411
|
*/
|
|
388
412
|
/**
|
|
389
|
-
* @typedef
|
|
390
|
-
* @property {string}
|
|
413
|
+
* @typedef UpdateAppCustomFieldDefinitionBySlugParam
|
|
414
|
+
* @property {string} slug
|
|
415
|
+
* @property {string} resource
|
|
416
|
+
* @property {string} namespace
|
|
391
417
|
* @property {ContentPlatformModel.CustomFieldDefinitionRequestSchema} body
|
|
392
418
|
*/
|
|
393
419
|
/**
|
|
394
|
-
* @typedef
|
|
395
|
-
* @property {string}
|
|
396
|
-
* @property {
|
|
420
|
+
* @typedef UpdateAppCustomObjectBySlugParam
|
|
421
|
+
* @property {string} definitionSlug
|
|
422
|
+
* @property {string} slug
|
|
423
|
+
* @property {ContentPlatformModel.CustomObjectRequestSchemaWithoutId} body
|
|
397
424
|
*/
|
|
398
425
|
/**
|
|
399
|
-
* @typedef
|
|
400
|
-
* @property {string}
|
|
426
|
+
* @typedef UpdateAppCustomObjectDefinitionBySlugParam
|
|
427
|
+
* @property {string} slug
|
|
401
428
|
* @property {ContentPlatformModel.CustomObjectDefinitionUpdateRequestSchema} body
|
|
402
429
|
*/
|
|
430
|
+
/**
|
|
431
|
+
* @typedef UpdateApplicationLanguageStatusParam
|
|
432
|
+
* @property {string} locale
|
|
433
|
+
* @property {ContentPlatformModel.ApplicationLanguageUpdate} body
|
|
434
|
+
*/
|
|
435
|
+
/**
|
|
436
|
+
* @typedef UpdateApplicationResourceTranslationParam
|
|
437
|
+
* @property {string} id
|
|
438
|
+
* @property {ContentPlatformModel.ResourceTranslationUpdate} body
|
|
439
|
+
*/
|
|
403
440
|
/**
|
|
404
441
|
* @typedef UpdateBlogParam
|
|
405
442
|
* @property {string} id - ID allotted to the blog.
|
|
406
|
-
* @property {ContentPlatformModel.
|
|
443
|
+
* @property {ContentPlatformModel.BlogPayload} body
|
|
407
444
|
*/
|
|
408
445
|
/**
|
|
409
446
|
* @typedef UpdateFaqParam
|
|
@@ -432,7 +469,7 @@ export = ContentPlatformApplicationValidator;
|
|
|
432
469
|
/**
|
|
433
470
|
* @typedef UpdateNavigationParam
|
|
434
471
|
* @property {string} id - ID allotted to the navigation.
|
|
435
|
-
* @property {ContentPlatformModel.
|
|
472
|
+
* @property {ContentPlatformModel.NavigationPayload} body
|
|
436
473
|
*/
|
|
437
474
|
/**
|
|
438
475
|
* @typedef UpdatePageParam
|
|
@@ -443,7 +480,7 @@ export = ContentPlatformApplicationValidator;
|
|
|
443
480
|
* @typedef UpdatePagePreviewParam
|
|
444
481
|
* @property {string} slug - A short, human-readable, URL-friendly identifier of
|
|
445
482
|
* a page. You can get slug value of a page from `getPages` API.
|
|
446
|
-
* @property {ContentPlatformModel.
|
|
483
|
+
* @property {ContentPlatformModel.PagePublishPayload} body
|
|
447
484
|
*/
|
|
448
485
|
/**
|
|
449
486
|
* @typedef UpdatePathRedirectionRulesParam
|
|
@@ -458,7 +495,18 @@ export = ContentPlatformApplicationValidator;
|
|
|
458
495
|
* @typedef UpdateSupportInformationParam
|
|
459
496
|
* @property {ContentPlatformModel.Support} body
|
|
460
497
|
*/
|
|
498
|
+
/**
|
|
499
|
+
* @typedef UpdateTranslateUILabelsParam
|
|
500
|
+
* @property {string} id - The unique identifier of the Translate Ui Labels to update
|
|
501
|
+
* @property {ContentPlatformModel.StaticResourceUpdate} body
|
|
502
|
+
*/
|
|
503
|
+
/**
|
|
504
|
+
* @typedef UpsertApplicationResourceTranslationInBulkParam
|
|
505
|
+
* @property {ContentPlatformModel.ResourceTranslationList} body
|
|
506
|
+
*/
|
|
461
507
|
declare class ContentPlatformApplicationValidator {
|
|
508
|
+
/** @returns {AddApplicationLanguageParam} */
|
|
509
|
+
static addApplicationLanguage(): AddApplicationLanguageParam;
|
|
462
510
|
/** @returns {AddDataLoaderParam} */
|
|
463
511
|
static addDataLoader(): AddDataLoaderParam;
|
|
464
512
|
/** @returns {AddFaqParam} */
|
|
@@ -467,44 +515,44 @@ declare class ContentPlatformApplicationValidator {
|
|
|
467
515
|
static addInjectableTag(): AddInjectableTagParam;
|
|
468
516
|
/** @returns {AddPathRedirectionRulesParam} */
|
|
469
517
|
static addPathRedirectionRules(): AddPathRedirectionRulesParam;
|
|
518
|
+
/** @returns {BulkUnPublishApplicationLanguageParam} */
|
|
519
|
+
static bulkUnPublishApplicationLanguage(): BulkUnPublishApplicationLanguageParam;
|
|
470
520
|
/** @returns {CreateAnnouncementParam} */
|
|
471
521
|
static createAnnouncement(): CreateAnnouncementParam;
|
|
472
|
-
/** @returns {CreateAppCustomFieldByResourceIdParam} */
|
|
473
|
-
static createAppCustomFieldByResourceId(): CreateAppCustomFieldByResourceIdParam;
|
|
474
522
|
/** @returns {CreateAppCustomFieldDefinitionParam} */
|
|
475
523
|
static createAppCustomFieldDefinition(): CreateAppCustomFieldDefinitionParam;
|
|
476
|
-
/** @returns {
|
|
477
|
-
static
|
|
524
|
+
/** @returns {CreateAppCustomObjectBySlugParam} */
|
|
525
|
+
static createAppCustomObjectBySlug(): CreateAppCustomObjectBySlugParam;
|
|
478
526
|
/** @returns {CreateAppCustomObjectDefinitionParam} */
|
|
479
527
|
static createAppCustomObjectDefinition(): CreateAppCustomObjectDefinitionParam;
|
|
528
|
+
/** @returns {CreateApplicationResourceTranslationParam} */
|
|
529
|
+
static createApplicationResourceTranslation(): CreateApplicationResourceTranslationParam;
|
|
480
530
|
/** @returns {CreateBlogParam} */
|
|
481
531
|
static createBlog(): CreateBlogParam;
|
|
482
532
|
/** @returns {CreateFaqCategoryParam} */
|
|
483
533
|
static createFaqCategory(): CreateFaqCategoryParam;
|
|
484
|
-
/** @returns {CreateInjectableTagParam} */
|
|
485
|
-
static createInjectableTag(): CreateInjectableTagParam;
|
|
486
534
|
/** @returns {CreateLandingPageParam} */
|
|
487
535
|
static createLandingPage(): CreateLandingPageParam;
|
|
488
536
|
/** @returns {CreateNavigationParam} */
|
|
489
537
|
static createNavigation(): CreateNavigationParam;
|
|
490
538
|
/** @returns {CreatePageParam} */
|
|
491
539
|
static createPage(): CreatePageParam;
|
|
492
|
-
/** @returns {CreatePagePreviewParam} */
|
|
493
|
-
static createPagePreview(): CreatePagePreviewParam;
|
|
494
540
|
/** @returns {CreateSEOMarkupSchemaParam} */
|
|
495
541
|
static createSEOMarkupSchema(): CreateSEOMarkupSchemaParam;
|
|
496
|
-
/** @returns {
|
|
497
|
-
static
|
|
542
|
+
/** @returns {CreateTranslateUILabelsParam} */
|
|
543
|
+
static createTranslateUILabels(): CreateTranslateUILabelsParam;
|
|
498
544
|
/** @returns {DeleteAnnouncementParam} */
|
|
499
545
|
static deleteAnnouncement(): DeleteAnnouncementParam;
|
|
500
|
-
/** @returns {
|
|
501
|
-
static
|
|
502
|
-
/** @returns {
|
|
503
|
-
static
|
|
504
|
-
/** @returns {
|
|
505
|
-
static
|
|
506
|
-
/** @returns {
|
|
507
|
-
static
|
|
546
|
+
/** @returns {DeleteAppCustomFieldDefinitionBySlugParam} */
|
|
547
|
+
static deleteAppCustomFieldDefinitionBySlug(): DeleteAppCustomFieldDefinitionBySlugParam;
|
|
548
|
+
/** @returns {DeleteAppCustomObjectBySlugParam} */
|
|
549
|
+
static deleteAppCustomObjectBySlug(): DeleteAppCustomObjectBySlugParam;
|
|
550
|
+
/** @returns {DeleteAppCustomObjectDefinitionBySlugParam} */
|
|
551
|
+
static deleteAppCustomObjectDefinitionBySlug(): DeleteAppCustomObjectDefinitionBySlugParam;
|
|
552
|
+
/** @returns {DeleteApplicationLanguageParam} */
|
|
553
|
+
static deleteApplicationLanguage(): DeleteApplicationLanguageParam;
|
|
554
|
+
/** @returns {DeleteApplicationResourceTranslationParam} */
|
|
555
|
+
static deleteApplicationResourceTranslation(): DeleteApplicationResourceTranslationParam;
|
|
508
556
|
/** @returns {DeleteBlogParam} */
|
|
509
557
|
static deleteBlog(): DeleteBlogParam;
|
|
510
558
|
/** @returns {DeleteDataLoaderParam} */
|
|
@@ -529,46 +577,44 @@ declare class ContentPlatformApplicationValidator {
|
|
|
529
577
|
static editInjectableTag(): EditInjectableTagParam;
|
|
530
578
|
/** @returns {EditSEOMarkupSchemaParam} */
|
|
531
579
|
static editSEOMarkupSchema(): EditSEOMarkupSchemaParam;
|
|
532
|
-
/** @returns {
|
|
533
|
-
static
|
|
580
|
+
/** @returns {ExportAppCustomObjectEntriesBySlugParam} */
|
|
581
|
+
static exportAppCustomObjectEntriesBySlug(): ExportAppCustomObjectEntriesBySlugParam;
|
|
534
582
|
/** @returns {GenerateSEOTitleParam} */
|
|
535
583
|
static generateSEOTitle(): GenerateSEOTitleParam;
|
|
536
584
|
/** @returns {GetAnnouncementByIdParam} */
|
|
537
585
|
static getAnnouncementById(): GetAnnouncementByIdParam;
|
|
538
586
|
/** @returns {GetAnnouncementsListParam} */
|
|
539
587
|
static getAnnouncementsList(): GetAnnouncementsListParam;
|
|
540
|
-
/** @returns {
|
|
541
|
-
static
|
|
588
|
+
/** @returns {GetAppCustomFieldDefinitionByResourceParam} */
|
|
589
|
+
static getAppCustomFieldDefinitionByResource(): GetAppCustomFieldDefinitionByResourceParam;
|
|
590
|
+
/** @returns {GetAppCustomFieldDefinitionBySlugParam} */
|
|
591
|
+
static getAppCustomFieldDefinitionBySlug(): GetAppCustomFieldDefinitionBySlugParam;
|
|
542
592
|
/** @returns {GetAppCustomFieldDefinitionsParam} */
|
|
543
593
|
static getAppCustomFieldDefinitions(): GetAppCustomFieldDefinitionsParam;
|
|
544
|
-
/** @returns {GetAppCustomFieldJobsParam} */
|
|
545
|
-
static getAppCustomFieldJobs(): GetAppCustomFieldJobsParam;
|
|
546
594
|
/** @returns {GetAppCustomFieldTypesParam} */
|
|
547
595
|
static getAppCustomFieldTypes(): any;
|
|
548
|
-
/** @returns {
|
|
549
|
-
static
|
|
550
|
-
/** @returns {
|
|
551
|
-
static
|
|
552
|
-
/** @returns {
|
|
553
|
-
static
|
|
554
|
-
/** @returns {GetAppCustomObjectDefinitionParam} */
|
|
555
|
-
static getAppCustomObjectDefinition(): GetAppCustomObjectDefinitionParam;
|
|
596
|
+
/** @returns {GetAppCustomFieldsByResourceSlugParam} */
|
|
597
|
+
static getAppCustomFieldsByResourceSlug(): GetAppCustomFieldsByResourceSlugParam;
|
|
598
|
+
/** @returns {GetAppCustomObjectBySlugParam} */
|
|
599
|
+
static getAppCustomObjectBySlug(): GetAppCustomObjectBySlugParam;
|
|
600
|
+
/** @returns {GetAppCustomObjectDefinitionBySlugParam} */
|
|
601
|
+
static getAppCustomObjectDefinitionBySlug(): GetAppCustomObjectDefinitionBySlugParam;
|
|
556
602
|
/** @returns {GetAppCustomObjectDefinitionsParam} */
|
|
557
603
|
static getAppCustomObjectDefinitions(): GetAppCustomObjectDefinitionsParam;
|
|
558
|
-
/** @returns {
|
|
559
|
-
static
|
|
604
|
+
/** @returns {GetAppCustomObjectsBySlugParam} */
|
|
605
|
+
static getAppCustomObjectsBySlug(): GetAppCustomObjectsBySlugParam;
|
|
560
606
|
/** @returns {GetAppJobsParam} */
|
|
561
607
|
static getAppJobs(): GetAppJobsParam;
|
|
562
608
|
/** @returns {GetAppResourcesParam} */
|
|
563
609
|
static getAppResources(): any;
|
|
610
|
+
/** @returns {GetApplicationLanguagesParam} */
|
|
611
|
+
static getApplicationLanguages(): any;
|
|
612
|
+
/** @returns {GetApplicationResourceTranslationsParam} */
|
|
613
|
+
static getApplicationResourceTranslations(): GetApplicationResourceTranslationsParam;
|
|
564
614
|
/** @returns {GetBlogBySlugParam} */
|
|
565
615
|
static getBlogBySlug(): GetBlogBySlugParam;
|
|
566
616
|
/** @returns {GetBlogsParam} */
|
|
567
617
|
static getBlogs(): GetBlogsParam;
|
|
568
|
-
/** @returns {GetComponentByIdParam} */
|
|
569
|
-
static getComponentById(): GetComponentByIdParam;
|
|
570
|
-
/** @returns {GetDataLoaderApiSpecsParam} */
|
|
571
|
-
static getDataLoaderApiSpecs(): GetDataLoaderApiSpecsParam;
|
|
572
618
|
/** @returns {GetDataLoadersParam} */
|
|
573
619
|
static getDataLoaders(): any;
|
|
574
620
|
/** @returns {GetDataLoadersByServiceParam} */
|
|
@@ -586,7 +632,7 @@ declare class ContentPlatformApplicationValidator {
|
|
|
586
632
|
/** @returns {GetFaqsByCategoryIdOrSlugParam} */
|
|
587
633
|
static getFaqsByCategoryIdOrSlug(): GetFaqsByCategoryIdOrSlugParam;
|
|
588
634
|
/** @returns {GetInjectableTagsParam} */
|
|
589
|
-
static getInjectableTags():
|
|
635
|
+
static getInjectableTags(): GetInjectableTagsParam;
|
|
590
636
|
/** @returns {GetLandingPagesParam} */
|
|
591
637
|
static getLandingPages(): GetLandingPagesParam;
|
|
592
638
|
/** @returns {GetLegalInformationParam} */
|
|
@@ -615,28 +661,36 @@ declare class ContentPlatformApplicationValidator {
|
|
|
615
661
|
static getSEOMarkupSchemas(): GetSEOMarkupSchemasParam;
|
|
616
662
|
/** @returns {GetSupportInformationParam} */
|
|
617
663
|
static getSupportInformation(): any;
|
|
618
|
-
/** @returns {
|
|
619
|
-
static
|
|
664
|
+
/** @returns {GetTranslateUILabelsParam} */
|
|
665
|
+
static getTranslateUILabels(): GetTranslateUILabelsParam;
|
|
666
|
+
/** @returns {GetTranslateUILabelsByIdParam} */
|
|
667
|
+
static getTranslateUILabelsById(): GetTranslateUILabelsByIdParam;
|
|
668
|
+
/** @returns {ImportAppCustomObjectEntriesBySlugParam} */
|
|
669
|
+
static importAppCustomObjectEntriesBySlug(): ImportAppCustomObjectEntriesBySlugParam;
|
|
620
670
|
/** @returns {RemoveInjectableTagParam} */
|
|
621
671
|
static removeInjectableTag(): RemoveInjectableTagParam;
|
|
622
672
|
/** @returns {ResetDataLoaderParam} */
|
|
623
673
|
static resetDataLoader(): ResetDataLoaderParam;
|
|
624
|
-
/** @returns {
|
|
625
|
-
static
|
|
674
|
+
/** @returns {SampleAppCustomObjectBulkEntryBySlugParam} */
|
|
675
|
+
static sampleAppCustomObjectBulkEntryBySlug(): SampleAppCustomObjectBulkEntryBySlugParam;
|
|
626
676
|
/** @returns {SelectDataLoaderParam} */
|
|
627
677
|
static selectDataLoader(): SelectDataLoaderParam;
|
|
628
678
|
/** @returns {UpdateAnnouncementParam} */
|
|
629
679
|
static updateAnnouncement(): UpdateAnnouncementParam;
|
|
630
680
|
/** @returns {UpdateAnnouncementScheduleParam} */
|
|
631
681
|
static updateAnnouncementSchedule(): UpdateAnnouncementScheduleParam;
|
|
632
|
-
/** @returns {
|
|
633
|
-
static
|
|
634
|
-
/** @returns {
|
|
635
|
-
static
|
|
636
|
-
/** @returns {
|
|
637
|
-
static
|
|
638
|
-
/** @returns {
|
|
639
|
-
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;
|
|
640
694
|
/** @returns {UpdateBlogParam} */
|
|
641
695
|
static updateBlog(): UpdateBlogParam;
|
|
642
696
|
/** @returns {UpdateFaqParam} */
|
|
@@ -661,10 +715,17 @@ declare class ContentPlatformApplicationValidator {
|
|
|
661
715
|
static updateSEOConfiguration(): UpdateSEOConfigurationParam;
|
|
662
716
|
/** @returns {UpdateSupportInformationParam} */
|
|
663
717
|
static updateSupportInformation(): UpdateSupportInformationParam;
|
|
718
|
+
/** @returns {UpdateTranslateUILabelsParam} */
|
|
719
|
+
static updateTranslateUILabels(): UpdateTranslateUILabelsParam;
|
|
720
|
+
/** @returns {UpsertApplicationResourceTranslationInBulkParam} */
|
|
721
|
+
static upsertApplicationResourceTranslationInBulk(): UpsertApplicationResourceTranslationInBulkParam;
|
|
664
722
|
}
|
|
665
723
|
declare namespace ContentPlatformApplicationValidator {
|
|
666
|
-
export { AddDataLoaderParam, AddFaqParam, AddInjectableTagParam, AddPathRedirectionRulesParam,
|
|
724
|
+
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, GetTranslateUILabelsParam, GetTranslateUILabelsByIdParam, ImportAppCustomObjectEntriesBySlugParam, RemoveInjectableTagParam, ResetDataLoaderParam, SampleAppCustomObjectBulkEntryBySlugParam, SelectDataLoaderParam, UpdateAnnouncementParam, UpdateAnnouncementScheduleParam, UpdateAppCustomFieldByResourceSlugParam, UpdateAppCustomFieldDefinitionBySlugParam, UpdateAppCustomObjectBySlugParam, UpdateAppCustomObjectDefinitionBySlugParam, UpdateApplicationLanguageStatusParam, UpdateApplicationResourceTranslationParam, UpdateBlogParam, UpdateFaqParam, UpdateFaqCategoryParam, UpdateInjectableTagParam, UpdateLandingPageParam, UpdateLegalInformationParam, UpdateNavigationParam, UpdatePageParam, UpdatePagePreviewParam, UpdatePathRedirectionRulesParam, UpdateSEOConfigurationParam, UpdateSupportInformationParam, UpdateTranslateUILabelsParam, UpsertApplicationResourceTranslationInBulkParam };
|
|
667
725
|
}
|
|
726
|
+
type AddApplicationLanguageParam = {
|
|
727
|
+
body: ContentPlatformModel.ApplicationLanguageCreate;
|
|
728
|
+
};
|
|
668
729
|
type AddDataLoaderParam = {
|
|
669
730
|
body: ContentPlatformModel.DataLoaderSchema;
|
|
670
731
|
};
|
|
@@ -681,65 +742,69 @@ type AddInjectableTagParam = {
|
|
|
681
742
|
type AddPathRedirectionRulesParam = {
|
|
682
743
|
body: ContentPlatformModel.PathMappingSchema;
|
|
683
744
|
};
|
|
745
|
+
type BulkUnPublishApplicationLanguageParam = {
|
|
746
|
+
body: ContentPlatformModel.unPublishApplicationLanguage;
|
|
747
|
+
};
|
|
684
748
|
type CreateAnnouncementParam = {
|
|
685
749
|
body: ContentPlatformModel.AdminAnnouncementSchema;
|
|
686
750
|
};
|
|
687
|
-
type CreateAppCustomFieldByResourceIdParam = {
|
|
688
|
-
resource: string;
|
|
689
|
-
resourceId: string;
|
|
690
|
-
body: ContentPlatformModel.CustomFieldRequestSchema;
|
|
691
|
-
};
|
|
692
751
|
type CreateAppCustomFieldDefinitionParam = {
|
|
752
|
+
resource: string;
|
|
693
753
|
body: ContentPlatformModel.CustomFieldDefinitionRequestSchema;
|
|
694
754
|
};
|
|
695
|
-
type
|
|
696
|
-
|
|
755
|
+
type CreateAppCustomObjectBySlugParam = {
|
|
756
|
+
definitionSlug: string;
|
|
757
|
+
body: ContentPlatformModel.CustomObjectRequestSchemaWithoutId;
|
|
697
758
|
};
|
|
698
759
|
type CreateAppCustomObjectDefinitionParam = {
|
|
699
760
|
body: ContentPlatformModel.CustomObjectDefinitionRequestSchema;
|
|
700
761
|
};
|
|
762
|
+
type CreateApplicationResourceTranslationParam = {
|
|
763
|
+
body: ContentPlatformModel.ResourceTranslationCreate;
|
|
764
|
+
};
|
|
701
765
|
type CreateBlogParam = {
|
|
702
|
-
body: ContentPlatformModel.
|
|
766
|
+
body: ContentPlatformModel.BlogPayload;
|
|
703
767
|
};
|
|
704
768
|
type CreateFaqCategoryParam = {
|
|
705
769
|
body: ContentPlatformModel.CreateFaqCategoryRequestSchema;
|
|
706
770
|
};
|
|
707
|
-
type CreateInjectableTagParam = {
|
|
708
|
-
body: ContentPlatformModel.CreateTagRequestSchema;
|
|
709
|
-
};
|
|
710
771
|
type CreateLandingPageParam = {
|
|
711
772
|
body: ContentPlatformModel.LandingPageSchema;
|
|
712
773
|
};
|
|
713
774
|
type CreateNavigationParam = {
|
|
714
|
-
body: ContentPlatformModel.
|
|
775
|
+
body: ContentPlatformModel.NavigationPayload;
|
|
715
776
|
};
|
|
716
777
|
type CreatePageParam = {
|
|
717
|
-
body: ContentPlatformModel.
|
|
718
|
-
};
|
|
719
|
-
type CreatePagePreviewParam = {
|
|
720
|
-
body: ContentPlatformModel.PageRequest;
|
|
778
|
+
body: ContentPlatformModel.PagePayload;
|
|
721
779
|
};
|
|
722
780
|
type CreateSEOMarkupSchemaParam = {
|
|
723
781
|
body: ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody;
|
|
724
782
|
};
|
|
783
|
+
type CreateTranslateUILabelsParam = {
|
|
784
|
+
body: ContentPlatformModel.TranslateUiLabelsCreate;
|
|
785
|
+
};
|
|
725
786
|
type DeleteAnnouncementParam = {
|
|
726
787
|
/**
|
|
727
788
|
* - ID allotted to the announcement.
|
|
728
789
|
*/
|
|
729
790
|
announcementId: string;
|
|
730
791
|
};
|
|
731
|
-
type
|
|
732
|
-
|
|
733
|
-
};
|
|
734
|
-
type DeleteAppCustomFieldsByResourceIdParam = {
|
|
792
|
+
type DeleteAppCustomFieldDefinitionBySlugParam = {
|
|
793
|
+
slug: string;
|
|
735
794
|
resource: string;
|
|
736
|
-
|
|
737
|
-
ids: string;
|
|
795
|
+
namespace: string;
|
|
738
796
|
};
|
|
739
|
-
type
|
|
740
|
-
|
|
797
|
+
type DeleteAppCustomObjectBySlugParam = {
|
|
798
|
+
definitionSlug: string;
|
|
799
|
+
slug: string;
|
|
800
|
+
};
|
|
801
|
+
type DeleteAppCustomObjectDefinitionBySlugParam = {
|
|
802
|
+
slug: string;
|
|
741
803
|
};
|
|
742
|
-
type
|
|
804
|
+
type DeleteApplicationLanguageParam = {
|
|
805
|
+
locale: string;
|
|
806
|
+
};
|
|
807
|
+
type DeleteApplicationResourceTranslationParam = {
|
|
743
808
|
id: string;
|
|
744
809
|
};
|
|
745
810
|
type DeleteBlogParam = {
|
|
@@ -799,7 +864,7 @@ type DeleteSEOMarkupSchemaParam = {
|
|
|
799
864
|
* - Alphanumeric ID allotted to a SEO Markup Schema
|
|
800
865
|
* Template created within a business.
|
|
801
866
|
*/
|
|
802
|
-
|
|
867
|
+
id: string;
|
|
803
868
|
};
|
|
804
869
|
type EditDataLoaderParam = {
|
|
805
870
|
/**
|
|
@@ -820,18 +885,19 @@ type EditSEOMarkupSchemaParam = {
|
|
|
820
885
|
* - Alphanumeric ID allotted to a SEO Markup Schema
|
|
821
886
|
* Template created within a business.
|
|
822
887
|
*/
|
|
823
|
-
|
|
888
|
+
id: string;
|
|
824
889
|
body: ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody;
|
|
825
890
|
};
|
|
826
|
-
type
|
|
827
|
-
|
|
891
|
+
type ExportAppCustomObjectEntriesBySlugParam = {
|
|
892
|
+
slug: string;
|
|
828
893
|
};
|
|
829
894
|
type GenerateSEOTitleParam = {
|
|
830
895
|
/**
|
|
831
|
-
* - String
|
|
832
|
-
* generated. Possible values are:
|
|
896
|
+
* - String
|
|
897
|
+
* representing the type of SEO content to be generated. Possible values are:
|
|
898
|
+
* title, description
|
|
833
899
|
*/
|
|
834
|
-
type:
|
|
900
|
+
type: ContentPlatformModel.GenerationEntityType;
|
|
835
901
|
body: ContentPlatformModel.GenerateSEOContent;
|
|
836
902
|
};
|
|
837
903
|
type GetAnnouncementByIdParam = {
|
|
@@ -852,8 +918,19 @@ type GetAnnouncementsListParam = {
|
|
|
852
918
|
*/
|
|
853
919
|
pageSize?: number;
|
|
854
920
|
};
|
|
855
|
-
type
|
|
856
|
-
|
|
921
|
+
type GetAppCustomFieldDefinitionByResourceParam = {
|
|
922
|
+
pageNo: string;
|
|
923
|
+
pageSize: string;
|
|
924
|
+
resource: string;
|
|
925
|
+
types?: string;
|
|
926
|
+
search?: string;
|
|
927
|
+
slugs?: string;
|
|
928
|
+
namespaces?: string;
|
|
929
|
+
};
|
|
930
|
+
type GetAppCustomFieldDefinitionBySlugParam = {
|
|
931
|
+
slug: string;
|
|
932
|
+
resource: string;
|
|
933
|
+
namespace: string;
|
|
857
934
|
};
|
|
858
935
|
type GetAppCustomFieldDefinitionsParam = {
|
|
859
936
|
pageNo: string;
|
|
@@ -862,40 +939,39 @@ type GetAppCustomFieldDefinitionsParam = {
|
|
|
862
939
|
types?: string;
|
|
863
940
|
search?: string;
|
|
864
941
|
slugs?: string;
|
|
942
|
+
namespaces?: string;
|
|
865
943
|
};
|
|
866
|
-
type
|
|
867
|
-
page: string;
|
|
868
|
-
pageSize: string;
|
|
869
|
-
actionType: string;
|
|
870
|
-
};
|
|
871
|
-
type GetAppCustomFieldsParam = {
|
|
944
|
+
type GetAppCustomFieldsByResourceSlugParam = {
|
|
872
945
|
resource: string;
|
|
946
|
+
resourceSlug: string;
|
|
873
947
|
};
|
|
874
|
-
type
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
};
|
|
878
|
-
type GetAppCustomObjectParam = {
|
|
879
|
-
id: string;
|
|
948
|
+
type GetAppCustomObjectBySlugParam = {
|
|
949
|
+
definitionSlug: string;
|
|
950
|
+
slug: string;
|
|
880
951
|
};
|
|
881
|
-
type
|
|
882
|
-
|
|
952
|
+
type GetAppCustomObjectDefinitionBySlugParam = {
|
|
953
|
+
slug: string;
|
|
883
954
|
};
|
|
884
955
|
type GetAppCustomObjectDefinitionsParam = {
|
|
885
956
|
pageNo: string;
|
|
886
957
|
pageSize: string;
|
|
887
958
|
search?: string;
|
|
888
959
|
};
|
|
889
|
-
type
|
|
890
|
-
definitionId?: string;
|
|
960
|
+
type GetAppCustomObjectsBySlugParam = {
|
|
891
961
|
pageNo: string;
|
|
892
962
|
pageSize: string;
|
|
963
|
+
definitionSlug: string;
|
|
893
964
|
};
|
|
894
965
|
type GetAppJobsParam = {
|
|
895
966
|
page: string;
|
|
896
967
|
pageSize: string;
|
|
897
968
|
actionType: string;
|
|
898
969
|
};
|
|
970
|
+
type GetApplicationResourceTranslationsParam = {
|
|
971
|
+
locale: string;
|
|
972
|
+
type: string;
|
|
973
|
+
resourceId: string;
|
|
974
|
+
};
|
|
899
975
|
type GetBlogBySlugParam = {
|
|
900
976
|
/**
|
|
901
977
|
* - A short, human-readable, URL-friendly identifier of
|
|
@@ -935,20 +1011,6 @@ type GetBlogsParam = {
|
|
|
935
1011
|
*/
|
|
936
1012
|
status?: string;
|
|
937
1013
|
};
|
|
938
|
-
type GetComponentByIdParam = {
|
|
939
|
-
/**
|
|
940
|
-
* - A short, human-readable, URL-friendly identifier of
|
|
941
|
-
* a blog page. You can get slug value of a blog from `getBlogs` API.
|
|
942
|
-
*/
|
|
943
|
-
slug: string;
|
|
944
|
-
};
|
|
945
|
-
type GetDataLoaderApiSpecsParam = {
|
|
946
|
-
/**
|
|
947
|
-
* - Alphanumeric ID allotted to an application
|
|
948
|
-
* created within a business account.
|
|
949
|
-
*/
|
|
950
|
-
dataLoader: string;
|
|
951
|
-
};
|
|
952
1014
|
type GetDataLoadersByServiceParam = {
|
|
953
1015
|
/**
|
|
954
1016
|
* - Service name of the data loader..
|
|
@@ -986,6 +1048,12 @@ type GetFaqsByCategoryIdOrSlugParam = {
|
|
|
986
1048
|
*/
|
|
987
1049
|
idOrSlug: string;
|
|
988
1050
|
};
|
|
1051
|
+
type GetInjectableTagsParam = {
|
|
1052
|
+
/**
|
|
1053
|
+
* - Get all tags irrespective of the creator of tags
|
|
1054
|
+
*/
|
|
1055
|
+
all?: boolean;
|
|
1056
|
+
};
|
|
989
1057
|
type GetLandingPagesParam = {
|
|
990
1058
|
/**
|
|
991
1059
|
* - The page number to navigate through the given
|
|
@@ -1069,7 +1137,7 @@ type GetSEOMarkupSchemaParam = {
|
|
|
1069
1137
|
* - Alphanumeric ID allotted to a SEO Markup Schema
|
|
1070
1138
|
* Template created within a business.
|
|
1071
1139
|
*/
|
|
1072
|
-
|
|
1140
|
+
id: string;
|
|
1073
1141
|
};
|
|
1074
1142
|
type GetSEOMarkupSchemasParam = {
|
|
1075
1143
|
/**
|
|
@@ -1091,8 +1159,32 @@ type GetSEOMarkupSchemasParam = {
|
|
|
1091
1159
|
*/
|
|
1092
1160
|
pageSize?: number;
|
|
1093
1161
|
};
|
|
1094
|
-
type
|
|
1095
|
-
|
|
1162
|
+
type GetTranslateUILabelsParam = {
|
|
1163
|
+
/**
|
|
1164
|
+
* - Unique id of template theme
|
|
1165
|
+
*/
|
|
1166
|
+
templateThemeId?: string;
|
|
1167
|
+
/**
|
|
1168
|
+
* - Unique id of theme
|
|
1169
|
+
*/
|
|
1170
|
+
themeId?: string;
|
|
1171
|
+
/**
|
|
1172
|
+
* - Multilingual locale
|
|
1173
|
+
*/
|
|
1174
|
+
locale?: string;
|
|
1175
|
+
/**
|
|
1176
|
+
* - Filter Translate Ui Labels by type
|
|
1177
|
+
*/
|
|
1178
|
+
type?: string;
|
|
1179
|
+
};
|
|
1180
|
+
type GetTranslateUILabelsByIdParam = {
|
|
1181
|
+
/**
|
|
1182
|
+
* - ID of the Translate Ui Labels
|
|
1183
|
+
*/
|
|
1184
|
+
id: string;
|
|
1185
|
+
};
|
|
1186
|
+
type ImportAppCustomObjectEntriesBySlugParam = {
|
|
1187
|
+
slug: string;
|
|
1096
1188
|
body: ContentPlatformModel.CustomObjectBulkSchema;
|
|
1097
1189
|
};
|
|
1098
1190
|
type RemoveInjectableTagParam = {
|
|
@@ -1108,8 +1200,8 @@ type ResetDataLoaderParam = {
|
|
|
1108
1200
|
*/
|
|
1109
1201
|
operationId: string;
|
|
1110
1202
|
};
|
|
1111
|
-
type
|
|
1112
|
-
|
|
1203
|
+
type SampleAppCustomObjectBulkEntryBySlugParam = {
|
|
1204
|
+
slug: string;
|
|
1113
1205
|
};
|
|
1114
1206
|
type SelectDataLoaderParam = {
|
|
1115
1207
|
/**
|
|
@@ -1131,29 +1223,40 @@ type UpdateAnnouncementScheduleParam = {
|
|
|
1131
1223
|
announcementId: string;
|
|
1132
1224
|
body: ContentPlatformModel.ScheduleSchema;
|
|
1133
1225
|
};
|
|
1134
|
-
type
|
|
1226
|
+
type UpdateAppCustomFieldByResourceSlugParam = {
|
|
1135
1227
|
resource: string;
|
|
1136
|
-
|
|
1228
|
+
resourceSlug: string;
|
|
1137
1229
|
body: ContentPlatformModel.CustomFieldRequestSchema;
|
|
1138
1230
|
};
|
|
1139
|
-
type
|
|
1140
|
-
|
|
1231
|
+
type UpdateAppCustomFieldDefinitionBySlugParam = {
|
|
1232
|
+
slug: string;
|
|
1233
|
+
resource: string;
|
|
1234
|
+
namespace: string;
|
|
1141
1235
|
body: ContentPlatformModel.CustomFieldDefinitionRequestSchema;
|
|
1142
1236
|
};
|
|
1143
|
-
type
|
|
1144
|
-
|
|
1145
|
-
|
|
1237
|
+
type UpdateAppCustomObjectBySlugParam = {
|
|
1238
|
+
definitionSlug: string;
|
|
1239
|
+
slug: string;
|
|
1240
|
+
body: ContentPlatformModel.CustomObjectRequestSchemaWithoutId;
|
|
1146
1241
|
};
|
|
1147
|
-
type
|
|
1148
|
-
|
|
1242
|
+
type UpdateAppCustomObjectDefinitionBySlugParam = {
|
|
1243
|
+
slug: string;
|
|
1149
1244
|
body: ContentPlatformModel.CustomObjectDefinitionUpdateRequestSchema;
|
|
1150
1245
|
};
|
|
1246
|
+
type UpdateApplicationLanguageStatusParam = {
|
|
1247
|
+
locale: string;
|
|
1248
|
+
body: ContentPlatformModel.ApplicationLanguageUpdate;
|
|
1249
|
+
};
|
|
1250
|
+
type UpdateApplicationResourceTranslationParam = {
|
|
1251
|
+
id: string;
|
|
1252
|
+
body: ContentPlatformModel.ResourceTranslationUpdate;
|
|
1253
|
+
};
|
|
1151
1254
|
type UpdateBlogParam = {
|
|
1152
1255
|
/**
|
|
1153
1256
|
* - ID allotted to the blog.
|
|
1154
1257
|
*/
|
|
1155
1258
|
id: string;
|
|
1156
|
-
body: ContentPlatformModel.
|
|
1259
|
+
body: ContentPlatformModel.BlogPayload;
|
|
1157
1260
|
};
|
|
1158
1261
|
type UpdateFaqParam = {
|
|
1159
1262
|
/**
|
|
@@ -1191,7 +1294,7 @@ type UpdateNavigationParam = {
|
|
|
1191
1294
|
* - ID allotted to the navigation.
|
|
1192
1295
|
*/
|
|
1193
1296
|
id: string;
|
|
1194
|
-
body: ContentPlatformModel.
|
|
1297
|
+
body: ContentPlatformModel.NavigationPayload;
|
|
1195
1298
|
};
|
|
1196
1299
|
type UpdatePageParam = {
|
|
1197
1300
|
/**
|
|
@@ -1206,7 +1309,7 @@ type UpdatePagePreviewParam = {
|
|
|
1206
1309
|
* a page. You can get slug value of a page from `getPages` API.
|
|
1207
1310
|
*/
|
|
1208
1311
|
slug: string;
|
|
1209
|
-
body: ContentPlatformModel.
|
|
1312
|
+
body: ContentPlatformModel.PagePublishPayload;
|
|
1210
1313
|
};
|
|
1211
1314
|
type UpdatePathRedirectionRulesParam = {
|
|
1212
1315
|
/**
|
|
@@ -1221,13 +1324,22 @@ type UpdateSEOConfigurationParam = {
|
|
|
1221
1324
|
type UpdateSupportInformationParam = {
|
|
1222
1325
|
body: ContentPlatformModel.Support;
|
|
1223
1326
|
};
|
|
1224
|
-
type
|
|
1327
|
+
type UpdateTranslateUILabelsParam = {
|
|
1328
|
+
/**
|
|
1329
|
+
* - The unique identifier of the Translate Ui Labels to update
|
|
1330
|
+
*/
|
|
1331
|
+
id: string;
|
|
1332
|
+
body: ContentPlatformModel.StaticResourceUpdate;
|
|
1333
|
+
};
|
|
1334
|
+
type UpsertApplicationResourceTranslationInBulkParam = {
|
|
1335
|
+
body: ContentPlatformModel.ResourceTranslationList;
|
|
1336
|
+
};
|
|
1225
1337
|
type GetAppCustomFieldTypesParam = any;
|
|
1226
1338
|
type GetAppResourcesParam = any;
|
|
1339
|
+
type GetApplicationLanguagesParam = any;
|
|
1227
1340
|
type GetDataLoadersParam = any;
|
|
1228
1341
|
type GetDefaultNavigationsParam = any;
|
|
1229
1342
|
type GetFaqCategoriesParam = any;
|
|
1230
|
-
type GetInjectableTagsParam = any;
|
|
1231
1343
|
type GetLegalInformationParam = any;
|
|
1232
1344
|
type GetPageMetaParam = any;
|
|
1233
1345
|
type GetPageSpecParam = any;
|