@gofynd/fdk-client-javascript 1.6.3 → 3.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
- package/sdk/application/ApplicationClient.d.ts +0 -2
- package/sdk/application/ApplicationClient.js +0 -2
- package/sdk/application/Cart/CartApplicationClient.d.ts +113 -93
- package/sdk/application/Cart/CartApplicationClient.js +270 -139
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +110 -110
- package/sdk/application/Catalog/CatalogApplicationClient.js +122 -138
- package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
- package/sdk/application/Common/CommonApplicationClient.js +3 -3
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +43 -3
- package/sdk/application/Communication/CommunicationApplicationClient.js +190 -3
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +71 -36
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +103 -29
- package/sdk/application/Content/ContentApplicationClient.d.ts +51 -21
- package/sdk/application/Content/ContentApplicationClient.js +197 -36
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +6 -6
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +3 -3
- package/sdk/application/Lead/LeadApplicationClient.d.ts +3 -3
- package/sdk/application/Lead/LeadApplicationClient.js +3 -3
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +79 -64
- package/sdk/application/Logistic/LogisticApplicationClient.js +246 -264
- package/sdk/application/Order/OrderApplicationClient.d.ts +44 -24
- package/sdk/application/Order/OrderApplicationClient.js +140 -21
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +211 -111
- package/sdk/application/Payment/PaymentApplicationClient.js +610 -109
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +13 -13
- package/sdk/application/Rewards/RewardsApplicationClient.js +7 -7
- package/sdk/application/Share/ShareApplicationClient.d.ts +7 -7
- package/sdk/application/Share/ShareApplicationClient.js +14 -14
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +23 -3
- package/sdk/application/Theme/ThemeApplicationClient.js +103 -5
- package/sdk/application/User/UserApplicationClient.d.ts +13 -23
- package/sdk/application/User/UserApplicationClient.js +9 -57
- package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
- package/sdk/application/Webhook/WebhookApplicationClient.js +3 -3
- package/sdk/partner/Authorization/AuthorizationPartnerClient.d.ts +66 -0
- package/sdk/partner/Authorization/AuthorizationPartnerClient.js +431 -0
- package/sdk/partner/Authorization/AuthorizationPartnerModel.d.ts +231 -0
- package/sdk/partner/Authorization/AuthorizationPartnerModel.js +152 -0
- package/sdk/partner/Authorization/AuthorizationPartnerValidator.d.ts +8 -0
- package/sdk/partner/Authorization/AuthorizationPartnerValidator.js +39 -0
- package/sdk/partner/Catalog/CatalogPartnerClient.d.ts +26 -0
- package/sdk/partner/Catalog/CatalogPartnerClient.js +173 -0
- package/sdk/partner/Catalog/CatalogPartnerModel.d.ts +238 -0
- package/sdk/partner/Catalog/CatalogPartnerModel.js +248 -0
- package/sdk/partner/Catalog/CatalogPartnerValidator.d.ts +5 -0
- package/sdk/partner/Catalog/CatalogPartnerValidator.js +19 -0
- package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +12 -22
- package/sdk/partner/FileStorage/FileStoragePartnerClient.js +12 -87
- package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +33 -99
- package/sdk/partner/FileStorage/FileStoragePartnerModel.js +25 -84
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +0 -1
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +4 -10
- package/sdk/partner/Lead/LeadPartnerClient.d.ts +5 -5
- package/sdk/partner/Lead/LeadPartnerClient.js +4 -4
- package/sdk/partner/Lead/LeadPartnerModel.d.ts +100 -49
- package/sdk/partner/Lead/LeadPartnerModel.js +100 -74
- package/sdk/partner/Lead/LeadPartnerValidator.js +1 -1
- package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +33 -160
- package/sdk/partner/Logistics/LogisticsPartnerClient.js +66 -1180
- package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +288 -1685
- package/sdk/partner/Logistics/LogisticsPartnerModel.js +226 -824
- package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +1 -13
- package/sdk/partner/Logistics/LogisticsPartnerValidator.js +14 -141
- package/sdk/partner/PartnerClient.d.ts +6 -0
- package/sdk/partner/PartnerClient.js +9 -0
- package/sdk/partner/Payment/PaymentPartnerClient.d.ts +116 -0
- package/sdk/partner/Payment/PaymentPartnerClient.js +857 -0
- package/sdk/partner/Payment/PaymentPartnerModel.d.ts +388 -0
- package/sdk/partner/Payment/PaymentPartnerModel.js +442 -0
- package/sdk/partner/Payment/PaymentPartnerValidator.d.ts +14 -0
- package/sdk/partner/Payment/PaymentPartnerValidator.js +74 -0
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +63 -21
- package/sdk/partner/Theme/ThemePartnerClient.js +396 -71
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +104 -72
- package/sdk/partner/Theme/ThemePartnerModel.js +101 -75
- package/sdk/partner/Theme/ThemePartnerValidator.d.ts +5 -1
- package/sdk/partner/Theme/ThemePartnerValidator.js +42 -12
- package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +18 -18
- package/sdk/partner/Webhook/WebhookPartnerClient.js +18 -18
- package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +191 -612
- package/sdk/partner/Webhook/WebhookPartnerModel.js +159 -234
- package/sdk/partner/Webhook/WebhookPartnerValidator.js +3 -3
- package/sdk/partner/index.d.ts +3 -0
- package/sdk/partner/index.js +6 -0
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +1 -4
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +5 -0
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +3 -1
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +32 -2
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +243 -3
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +145 -49
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +171 -20
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +39 -1
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +35 -0
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +406 -15
- package/sdk/platform/Billing/BillingPlatformClient.js +3214 -76
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +3798 -459
- package/sdk/platform/Billing/BillingPlatformModel.js +2577 -342
- package/sdk/platform/Billing/BillingPlatformValidator.d.ts +465 -24
- package/sdk/platform/Billing/BillingPlatformValidator.js +490 -14
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +284 -205
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +671 -553
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +165 -165
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +108 -132
- package/sdk/platform/Cart/CartPlatformModel.d.ts +3136 -4788
- package/sdk/platform/Cart/CartPlatformModel.js +2850 -2031
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +1015 -419
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +6450 -2010
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +1121 -230
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +919 -127
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +372 -574
- package/sdk/platform/Catalog/CatalogPlatformClient.js +1238 -1317
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +8351 -9825
- package/sdk/platform/Catalog/CatalogPlatformModel.js +9662 -6881
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +288 -235
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +241 -183
- package/sdk/platform/Common/CommonPlatformClient.d.ts +5 -6
- package/sdk/platform/Common/CommonPlatformClient.js +5 -6
- package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
- package/sdk/platform/Common/CommonPlatformModel.js +6 -6
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +374 -234
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +875 -583
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +170 -139
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +145 -126
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +56 -3
- package/sdk/platform/Communication/CommunicationPlatformClient.js +307 -4
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +424 -252
- package/sdk/platform/Communication/CommunicationPlatformModel.js +540 -320
- package/sdk/platform/Communication/CommunicationPlatformValidator.d.ts +62 -3
- package/sdk/platform/Communication/CommunicationPlatformValidator.js +48 -2
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +68 -99
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +84 -140
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +238 -256
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +222 -244
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +20 -20
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +20 -20
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +333 -118
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +1470 -409
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +158 -55
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +163 -41
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +151 -61
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +595 -101
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +1199 -462
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +1008 -321
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +80 -34
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +79 -24
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +253 -140
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +1087 -458
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +221 -178
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +220 -157
- package/sdk/platform/Content/ContentPlatformClient.d.ts +124 -123
- package/sdk/platform/Content/ContentPlatformClient.js +459 -379
- package/sdk/platform/Content/ContentPlatformModel.d.ts +833 -1307
- package/sdk/platform/Content/ContentPlatformModel.js +893 -582
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +140 -150
- package/sdk/platform/Content/ContentPlatformValidator.js +131 -135
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +60 -36
- package/sdk/platform/Discount/DiscountPlatformClient.js +85 -36
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +46 -47
- package/sdk/platform/Discount/DiscountPlatformModel.js +42 -46
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
- package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +18 -15
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +24 -22
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +4 -4
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +4 -4
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +8 -8
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +8 -8
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +75 -86
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +60 -74
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +320 -0
- package/sdk/platform/Finance/FinancePlatformClient.js +2333 -0
- package/sdk/platform/Finance/FinancePlatformModel.d.ts +2895 -0
- package/sdk/platform/Finance/FinancePlatformModel.js +2150 -0
- package/sdk/platform/Finance/FinancePlatformValidator.d.ts +284 -0
- package/sdk/platform/Finance/FinancePlatformValidator.js +354 -0
- 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 +4 -24
- package/sdk/platform/Lead/LeadPlatformClient.js +4 -160
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +142 -57
- package/sdk/platform/Lead/LeadPlatformModel.js +162 -79
- package/sdk/platform/Lead/LeadPlatformValidator.d.ts +3 -29
- package/sdk/platform/Lead/LeadPlatformValidator.js +2 -28
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +94 -25
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +600 -57
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +115 -115
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +120 -43
- package/sdk/platform/Order/OrderPlatformClient.d.ts +502 -293
- package/sdk/platform/Order/OrderPlatformClient.js +1466 -913
- package/sdk/platform/Order/OrderPlatformModel.d.ts +4111 -9093
- package/sdk/platform/Order/OrderPlatformModel.js +3202 -4230
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +445 -612
- package/sdk/platform/Order/OrderPlatformValidator.js +316 -326
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -6
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +7 -9
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
- package/sdk/platform/Partner/PartnerPlatformModel.js +7 -7
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +382 -135
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +2453 -935
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +306 -93
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +305 -70
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +66 -56
- package/sdk/platform/Payment/PaymentPlatformClient.js +269 -124
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +3525 -1313
- package/sdk/platform/Payment/PaymentPlatformModel.js +3813 -1511
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +64 -35
- package/sdk/platform/Payment/PaymentPlatformValidator.js +60 -34
- package/sdk/platform/PlatformClient.d.ts +2 -0
- package/sdk/platform/PlatformClient.js +4 -0
- 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 +14 -9
- package/sdk/platform/Rewards/RewardsPlatformModel.js +10 -8
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +344 -56
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +2180 -302
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +380 -54
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +336 -37
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +127 -213
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +538 -1306
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +3429 -2979
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +3642 -1785
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +218 -392
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +151 -290
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +4 -16
- package/sdk/platform/Share/SharePlatformApplicationClient.js +8 -86
- package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +6 -23
- package/sdk/platform/Share/SharePlatformApplicationValidator.js +3 -16
- package/sdk/platform/Share/SharePlatformModel.d.ts +6 -50
- package/sdk/platform/Share/SharePlatformModel.js +3 -43
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +26 -4
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +157 -10
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +21 -10
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +23 -6
- package/sdk/platform/Theme/ThemePlatformClient.d.ts +18 -8
- package/sdk/platform/Theme/ThemePlatformClient.js +85 -8
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +425 -17
- package/sdk/platform/Theme/ThemePlatformModel.js +329 -23
- package/sdk/platform/Theme/ThemePlatformValidator.d.ts +7 -3
- package/sdk/platform/Theme/ThemePlatformValidator.js +9 -2
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +22 -12
- package/sdk/platform/User/UserPlatformApplicationClient.js +91 -12
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +15 -3
- package/sdk/platform/User/UserPlatformApplicationValidator.js +14 -2
- package/sdk/platform/User/UserPlatformModel.d.ts +223 -59
- package/sdk/platform/User/UserPlatformModel.js +204 -65
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +78 -25
- package/sdk/platform/Webhook/WebhookPlatformClient.js +470 -75
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +434 -758
- package/sdk/platform/Webhook/WebhookPlatformModel.js +395 -410
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +55 -10
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +72 -12
- package/sdk/platform/index.d.ts +1 -0
- package/sdk/platform/index.js +2 -0
- package/sdk/public/Billing/BillingPublicClient.d.ts +56 -0
- package/sdk/public/Billing/BillingPublicClient.js +397 -0
- package/sdk/public/Billing/BillingPublicModel.d.ts +919 -0
- package/sdk/public/Billing/BillingPublicModel.js +560 -0
- package/sdk/public/Billing/BillingPublicValidator.d.ts +43 -0
- package/sdk/public/Billing/BillingPublicValidator.js +50 -0
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +14 -4
- package/sdk/public/Configuration/ConfigurationPublicClient.js +97 -9
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +102 -40
- package/sdk/public/Configuration/ConfigurationPublicModel.js +111 -29
- package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +11 -1
- package/sdk/public/Configuration/ConfigurationPublicValidator.js +12 -0
- package/sdk/public/Content/ContentPublicClient.d.ts +22 -0
- package/sdk/public/Content/ContentPublicClient.js +183 -0
- package/sdk/public/Content/ContentPublicModel.d.ts +38 -1
- package/sdk/public/Content/ContentPublicModel.js +47 -1
- package/sdk/public/Content/ContentPublicValidator.d.ts +17 -1
- package/sdk/public/Content/ContentPublicValidator.js +19 -0
- package/sdk/public/PublicClient.d.ts +2 -2
- package/sdk/public/PublicClient.js +2 -2
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
- package/sdk/public/Webhook/WebhookPublicClient.js +8 -8
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +67 -215
- package/sdk/public/Webhook/WebhookPublicModel.js +61 -66
- package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
- package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
- package/sdk/public/index.d.ts +1 -1
- package/sdk/public/index.js +1 -1
- package/sdk/application/Finance/FinanceApplicationClient.d.ts +0 -29
- package/sdk/application/Finance/FinanceApplicationClient.js +0 -126
- package/sdk/public/Catalog/CatalogPublicClient.d.ts +0 -22
- package/sdk/public/Catalog/CatalogPublicClient.js +0 -138
- package/sdk/public/Catalog/CatalogPublicModel.d.ts +0 -155
- package/sdk/public/Catalog/CatalogPublicModel.js +0 -116
- package/sdk/public/Catalog/CatalogPublicValidator.d.ts +0 -55
- package/sdk/public/Catalog/CatalogPublicValidator.js +0 -35
|
@@ -21,14 +21,18 @@ export = ContentPlatformApplicationValidator;
|
|
|
21
21
|
* @property {ContentPlatformModel.AdminAnnouncementSchema} body
|
|
22
22
|
*/
|
|
23
23
|
/**
|
|
24
|
-
* @typedef
|
|
24
|
+
* @typedef CreateAppCustomFieldByResourceIdParam
|
|
25
25
|
* @property {string} resource
|
|
26
|
+
* @property {string} resourceId
|
|
27
|
+
* @property {ContentPlatformModel.CustomFieldRequestSchema} body
|
|
28
|
+
*/
|
|
29
|
+
/**
|
|
30
|
+
* @typedef CreateAppCustomFieldDefinitionParam
|
|
26
31
|
* @property {ContentPlatformModel.CustomFieldDefinitionRequestSchema} body
|
|
27
32
|
*/
|
|
28
33
|
/**
|
|
29
|
-
* @typedef
|
|
30
|
-
* @property {
|
|
31
|
-
* @property {ContentPlatformModel.CustomObjectRequestSchemaWithoutId} body
|
|
34
|
+
* @typedef CreateAppCustomObjectParam
|
|
35
|
+
* @property {ContentPlatformModel.CustomObjectRequestSchema} body
|
|
32
36
|
*/
|
|
33
37
|
/**
|
|
34
38
|
* @typedef CreateAppCustomObjectDefinitionParam
|
|
@@ -36,46 +40,58 @@ export = ContentPlatformApplicationValidator;
|
|
|
36
40
|
*/
|
|
37
41
|
/**
|
|
38
42
|
* @typedef CreateBlogParam
|
|
39
|
-
* @property {ContentPlatformModel.
|
|
43
|
+
* @property {ContentPlatformModel.BlogRequest} body
|
|
40
44
|
*/
|
|
41
45
|
/**
|
|
42
46
|
* @typedef CreateFaqCategoryParam
|
|
43
47
|
* @property {ContentPlatformModel.CreateFaqCategoryRequestSchema} body
|
|
44
48
|
*/
|
|
49
|
+
/**
|
|
50
|
+
* @typedef CreateInjectableTagParam
|
|
51
|
+
* @property {ContentPlatformModel.CreateTagRequestSchema} body
|
|
52
|
+
*/
|
|
45
53
|
/**
|
|
46
54
|
* @typedef CreateLandingPageParam
|
|
47
55
|
* @property {ContentPlatformModel.LandingPageSchema} body
|
|
48
56
|
*/
|
|
49
57
|
/**
|
|
50
58
|
* @typedef CreateNavigationParam
|
|
51
|
-
* @property {ContentPlatformModel.
|
|
59
|
+
* @property {ContentPlatformModel.NavigationRequest} body
|
|
52
60
|
*/
|
|
53
61
|
/**
|
|
54
62
|
* @typedef CreatePageParam
|
|
55
|
-
* @property {ContentPlatformModel.
|
|
63
|
+
* @property {ContentPlatformModel.PageRequest} body
|
|
64
|
+
*/
|
|
65
|
+
/**
|
|
66
|
+
* @typedef CreatePagePreviewParam
|
|
67
|
+
* @property {ContentPlatformModel.PageRequest} body
|
|
56
68
|
*/
|
|
57
69
|
/**
|
|
58
70
|
* @typedef CreateSEOMarkupSchemaParam
|
|
59
71
|
* @property {ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody} body
|
|
60
72
|
*/
|
|
73
|
+
/** @typedef DeleteAllInjectableTagsParam */
|
|
61
74
|
/**
|
|
62
75
|
* @typedef DeleteAnnouncementParam
|
|
63
76
|
* @property {string} announcementId - ID allotted to the announcement.
|
|
64
77
|
*/
|
|
65
78
|
/**
|
|
66
|
-
* @typedef
|
|
67
|
-
* @property {string}
|
|
79
|
+
* @typedef DeleteAppCustomFieldDefinitionParam
|
|
80
|
+
* @property {string} id
|
|
81
|
+
*/
|
|
82
|
+
/**
|
|
83
|
+
* @typedef DeleteAppCustomFieldsByResourceIdParam
|
|
68
84
|
* @property {string} resource
|
|
69
|
-
* @property {string}
|
|
85
|
+
* @property {string} resourceId
|
|
86
|
+
* @property {string} ids
|
|
70
87
|
*/
|
|
71
88
|
/**
|
|
72
|
-
* @typedef
|
|
73
|
-
* @property {string}
|
|
74
|
-
* @property {string} slug
|
|
89
|
+
* @typedef DeleteAppCustomObjectParam
|
|
90
|
+
* @property {string} id
|
|
75
91
|
*/
|
|
76
92
|
/**
|
|
77
|
-
* @typedef
|
|
78
|
-
* @property {string}
|
|
93
|
+
* @typedef DeleteAppCustomObjectDefinitionParam
|
|
94
|
+
* @property {string} id
|
|
79
95
|
*/
|
|
80
96
|
/**
|
|
81
97
|
* @typedef DeleteBlogParam
|
|
@@ -112,7 +128,7 @@ export = ContentPlatformApplicationValidator;
|
|
|
112
128
|
*/
|
|
113
129
|
/**
|
|
114
130
|
* @typedef DeleteSEOMarkupSchemaParam
|
|
115
|
-
* @property {string}
|
|
131
|
+
* @property {string} schemaId - Alphanumeric ID allotted to a SEO Markup Schema
|
|
116
132
|
* Template created within a business.
|
|
117
133
|
*/
|
|
118
134
|
/**
|
|
@@ -127,19 +143,18 @@ export = ContentPlatformApplicationValidator;
|
|
|
127
143
|
*/
|
|
128
144
|
/**
|
|
129
145
|
* @typedef EditSEOMarkupSchemaParam
|
|
130
|
-
* @property {string}
|
|
146
|
+
* @property {string} schemaId - Alphanumeric ID allotted to a SEO Markup Schema
|
|
131
147
|
* Template created within a business.
|
|
132
148
|
* @property {ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody} body
|
|
133
149
|
*/
|
|
134
150
|
/**
|
|
135
|
-
* @typedef
|
|
136
|
-
* @property {string}
|
|
151
|
+
* @typedef ExportAppCustomObjectEntriesParam
|
|
152
|
+
* @property {string} definitionId
|
|
137
153
|
*/
|
|
138
154
|
/**
|
|
139
155
|
* @typedef GenerateSEOTitleParam
|
|
140
|
-
* @property {
|
|
141
|
-
*
|
|
142
|
-
* title, description
|
|
156
|
+
* @property {string} type - String representing the type of SEO content to be
|
|
157
|
+
* generated. Possible values are: title, description
|
|
143
158
|
* @property {ContentPlatformModel.GenerateSEOContent} body
|
|
144
159
|
*/
|
|
145
160
|
/**
|
|
@@ -154,20 +169,8 @@ export = ContentPlatformApplicationValidator;
|
|
|
154
169
|
* Default value is 10.
|
|
155
170
|
*/
|
|
156
171
|
/**
|
|
157
|
-
* @typedef
|
|
158
|
-
* @property {string}
|
|
159
|
-
* @property {string} pageSize
|
|
160
|
-
* @property {string} resource
|
|
161
|
-
* @property {string} [types]
|
|
162
|
-
* @property {string} [search]
|
|
163
|
-
* @property {string} [slugs]
|
|
164
|
-
* @property {string} [namespaces]
|
|
165
|
-
*/
|
|
166
|
-
/**
|
|
167
|
-
* @typedef GetAppCustomFieldDefinitionBySlugParam
|
|
168
|
-
* @property {string} slug
|
|
169
|
-
* @property {string} resource
|
|
170
|
-
* @property {string} namespace
|
|
172
|
+
* @typedef GetAppCustomFieldDefinitionParam
|
|
173
|
+
* @property {string} id
|
|
171
174
|
*/
|
|
172
175
|
/**
|
|
173
176
|
* @typedef GetAppCustomFieldDefinitionsParam
|
|
@@ -177,22 +180,30 @@ export = ContentPlatformApplicationValidator;
|
|
|
177
180
|
* @property {string} [types]
|
|
178
181
|
* @property {string} [search]
|
|
179
182
|
* @property {string} [slugs]
|
|
180
|
-
|
|
183
|
+
*/
|
|
184
|
+
/**
|
|
185
|
+
* @typedef GetAppCustomFieldJobsParam
|
|
186
|
+
* @property {string} page
|
|
187
|
+
* @property {string} pageSize
|
|
188
|
+
* @property {string} actionType
|
|
181
189
|
*/
|
|
182
190
|
/** @typedef GetAppCustomFieldTypesParam */
|
|
183
191
|
/**
|
|
184
|
-
* @typedef
|
|
192
|
+
* @typedef GetAppCustomFieldsParam
|
|
193
|
+
* @property {string} resource
|
|
194
|
+
*/
|
|
195
|
+
/**
|
|
196
|
+
* @typedef GetAppCustomFieldsByResourceIdParam
|
|
185
197
|
* @property {string} resource
|
|
186
|
-
* @property {string}
|
|
198
|
+
* @property {string} resourceId
|
|
187
199
|
*/
|
|
188
200
|
/**
|
|
189
|
-
* @typedef
|
|
190
|
-
* @property {string}
|
|
191
|
-
* @property {string} slug
|
|
201
|
+
* @typedef GetAppCustomObjectParam
|
|
202
|
+
* @property {string} id
|
|
192
203
|
*/
|
|
193
204
|
/**
|
|
194
|
-
* @typedef
|
|
195
|
-
* @property {string}
|
|
205
|
+
* @typedef GetAppCustomObjectDefinitionParam
|
|
206
|
+
* @property {string} id
|
|
196
207
|
*/
|
|
197
208
|
/**
|
|
198
209
|
* @typedef GetAppCustomObjectDefinitionsParam
|
|
@@ -201,10 +212,10 @@ export = ContentPlatformApplicationValidator;
|
|
|
201
212
|
* @property {string} [search]
|
|
202
213
|
*/
|
|
203
214
|
/**
|
|
204
|
-
* @typedef
|
|
215
|
+
* @typedef GetAppCustomObjectsParam
|
|
216
|
+
* @property {string} [definitionId]
|
|
205
217
|
* @property {string} pageNo
|
|
206
218
|
* @property {string} pageSize
|
|
207
|
-
* @property {string} definitionSlug
|
|
208
219
|
*/
|
|
209
220
|
/**
|
|
210
221
|
* @typedef GetAppJobsParam
|
|
@@ -230,6 +241,16 @@ export = ContentPlatformApplicationValidator;
|
|
|
230
241
|
* @property {string} [title] - Blogs retrieve based on the title passed.
|
|
231
242
|
* @property {string} [status] - Blogs retrieve based on the status passed.
|
|
232
243
|
*/
|
|
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
|
+
*/
|
|
233
254
|
/** @typedef GetDataLoadersParam */
|
|
234
255
|
/**
|
|
235
256
|
* @typedef GetDataLoadersByServiceParam
|
|
@@ -260,10 +281,7 @@ export = ContentPlatformApplicationValidator;
|
|
|
260
281
|
* Slug is a short, human-readable, URL-friendly identifier of an object. You
|
|
261
282
|
* can get slug value of an FAQ category from `getFaqCategories` API.
|
|
262
283
|
*/
|
|
263
|
-
/**
|
|
264
|
-
* @typedef GetInjectableTagsParam
|
|
265
|
-
* @property {boolean} [all] - Get all tags irrespective of the creator of tags
|
|
266
|
-
*/
|
|
284
|
+
/** @typedef GetInjectableTagsParam */
|
|
267
285
|
/**
|
|
268
286
|
* @typedef GetLandingPagesParam
|
|
269
287
|
* @property {number} [pageNo] - The page number to navigate through the given
|
|
@@ -316,7 +334,7 @@ export = ContentPlatformApplicationValidator;
|
|
|
316
334
|
/** @typedef GetSEOConfigurationParam */
|
|
317
335
|
/**
|
|
318
336
|
* @typedef GetSEOMarkupSchemaParam
|
|
319
|
-
* @property {string}
|
|
337
|
+
* @property {string} schemaId - Alphanumeric ID allotted to a SEO Markup Schema
|
|
320
338
|
* Template created within a business.
|
|
321
339
|
*/
|
|
322
340
|
/**
|
|
@@ -330,8 +348,8 @@ export = ContentPlatformApplicationValidator;
|
|
|
330
348
|
*/
|
|
331
349
|
/** @typedef GetSupportInformationParam */
|
|
332
350
|
/**
|
|
333
|
-
* @typedef
|
|
334
|
-
* @property {string}
|
|
351
|
+
* @typedef ImportAppCustomObjectEntriesParam
|
|
352
|
+
* @property {string} definitionId
|
|
335
353
|
* @property {ContentPlatformModel.CustomObjectBulkSchema} body
|
|
336
354
|
*/
|
|
337
355
|
/**
|
|
@@ -344,8 +362,8 @@ export = ContentPlatformApplicationValidator;
|
|
|
344
362
|
* @property {string} operationId - Name of operation id of the service.
|
|
345
363
|
*/
|
|
346
364
|
/**
|
|
347
|
-
* @typedef
|
|
348
|
-
* @property {string}
|
|
365
|
+
* @typedef SampleAppCustomObjectBulkEntryParam
|
|
366
|
+
* @property {string} definitionId
|
|
349
367
|
*/
|
|
350
368
|
/**
|
|
351
369
|
* @typedef SelectDataLoaderParam
|
|
@@ -362,33 +380,30 @@ export = ContentPlatformApplicationValidator;
|
|
|
362
380
|
* @property {ContentPlatformModel.ScheduleSchema} body
|
|
363
381
|
*/
|
|
364
382
|
/**
|
|
365
|
-
* @typedef
|
|
383
|
+
* @typedef UpdateAppCustomFieldByResourceIdParam
|
|
366
384
|
* @property {string} resource
|
|
367
|
-
* @property {string}
|
|
385
|
+
* @property {string} resourceId
|
|
368
386
|
* @property {ContentPlatformModel.CustomFieldRequestSchema} body
|
|
369
387
|
*/
|
|
370
388
|
/**
|
|
371
|
-
* @typedef
|
|
372
|
-
* @property {string}
|
|
373
|
-
* @property {string} resource
|
|
374
|
-
* @property {string} namespace
|
|
389
|
+
* @typedef UpdateAppCustomFieldDefinitionParam
|
|
390
|
+
* @property {string} id
|
|
375
391
|
* @property {ContentPlatformModel.CustomFieldDefinitionRequestSchema} body
|
|
376
392
|
*/
|
|
377
393
|
/**
|
|
378
|
-
* @typedef
|
|
379
|
-
* @property {string}
|
|
380
|
-
* @property {
|
|
381
|
-
* @property {ContentPlatformModel.CustomObjectRequestSchemaWithoutId} body
|
|
394
|
+
* @typedef UpdateAppCustomObjectParam
|
|
395
|
+
* @property {string} id
|
|
396
|
+
* @property {ContentPlatformModel.CustomObjectRequestSchema} body
|
|
382
397
|
*/
|
|
383
398
|
/**
|
|
384
|
-
* @typedef
|
|
385
|
-
* @property {string}
|
|
399
|
+
* @typedef UpdateAppCustomObjectDefinitionParam
|
|
400
|
+
* @property {string} id
|
|
386
401
|
* @property {ContentPlatformModel.CustomObjectDefinitionUpdateRequestSchema} body
|
|
387
402
|
*/
|
|
388
403
|
/**
|
|
389
404
|
* @typedef UpdateBlogParam
|
|
390
405
|
* @property {string} id - ID allotted to the blog.
|
|
391
|
-
* @property {ContentPlatformModel.
|
|
406
|
+
* @property {ContentPlatformModel.BlogRequest} body
|
|
392
407
|
*/
|
|
393
408
|
/**
|
|
394
409
|
* @typedef UpdateFaqParam
|
|
@@ -417,7 +432,7 @@ export = ContentPlatformApplicationValidator;
|
|
|
417
432
|
/**
|
|
418
433
|
* @typedef UpdateNavigationParam
|
|
419
434
|
* @property {string} id - ID allotted to the navigation.
|
|
420
|
-
* @property {ContentPlatformModel.
|
|
435
|
+
* @property {ContentPlatformModel.NavigationRequest} body
|
|
421
436
|
*/
|
|
422
437
|
/**
|
|
423
438
|
* @typedef UpdatePageParam
|
|
@@ -428,7 +443,7 @@ export = ContentPlatformApplicationValidator;
|
|
|
428
443
|
* @typedef UpdatePagePreviewParam
|
|
429
444
|
* @property {string} slug - A short, human-readable, URL-friendly identifier of
|
|
430
445
|
* a page. You can get slug value of a page from `getPages` API.
|
|
431
|
-
* @property {ContentPlatformModel.
|
|
446
|
+
* @property {ContentPlatformModel.PagePublishRequest} body
|
|
432
447
|
*/
|
|
433
448
|
/**
|
|
434
449
|
* @typedef UpdatePathRedirectionRulesParam
|
|
@@ -454,32 +469,42 @@ declare class ContentPlatformApplicationValidator {
|
|
|
454
469
|
static addPathRedirectionRules(): AddPathRedirectionRulesParam;
|
|
455
470
|
/** @returns {CreateAnnouncementParam} */
|
|
456
471
|
static createAnnouncement(): CreateAnnouncementParam;
|
|
472
|
+
/** @returns {CreateAppCustomFieldByResourceIdParam} */
|
|
473
|
+
static createAppCustomFieldByResourceId(): CreateAppCustomFieldByResourceIdParam;
|
|
457
474
|
/** @returns {CreateAppCustomFieldDefinitionParam} */
|
|
458
475
|
static createAppCustomFieldDefinition(): CreateAppCustomFieldDefinitionParam;
|
|
459
|
-
/** @returns {
|
|
460
|
-
static
|
|
476
|
+
/** @returns {CreateAppCustomObjectParam} */
|
|
477
|
+
static createAppCustomObject(): CreateAppCustomObjectParam;
|
|
461
478
|
/** @returns {CreateAppCustomObjectDefinitionParam} */
|
|
462
479
|
static createAppCustomObjectDefinition(): CreateAppCustomObjectDefinitionParam;
|
|
463
480
|
/** @returns {CreateBlogParam} */
|
|
464
481
|
static createBlog(): CreateBlogParam;
|
|
465
482
|
/** @returns {CreateFaqCategoryParam} */
|
|
466
483
|
static createFaqCategory(): CreateFaqCategoryParam;
|
|
484
|
+
/** @returns {CreateInjectableTagParam} */
|
|
485
|
+
static createInjectableTag(): CreateInjectableTagParam;
|
|
467
486
|
/** @returns {CreateLandingPageParam} */
|
|
468
487
|
static createLandingPage(): CreateLandingPageParam;
|
|
469
488
|
/** @returns {CreateNavigationParam} */
|
|
470
489
|
static createNavigation(): CreateNavigationParam;
|
|
471
490
|
/** @returns {CreatePageParam} */
|
|
472
491
|
static createPage(): CreatePageParam;
|
|
492
|
+
/** @returns {CreatePagePreviewParam} */
|
|
493
|
+
static createPagePreview(): CreatePagePreviewParam;
|
|
473
494
|
/** @returns {CreateSEOMarkupSchemaParam} */
|
|
474
495
|
static createSEOMarkupSchema(): CreateSEOMarkupSchemaParam;
|
|
496
|
+
/** @returns {DeleteAllInjectableTagsParam} */
|
|
497
|
+
static deleteAllInjectableTags(): any;
|
|
475
498
|
/** @returns {DeleteAnnouncementParam} */
|
|
476
499
|
static deleteAnnouncement(): DeleteAnnouncementParam;
|
|
477
|
-
/** @returns {
|
|
478
|
-
static
|
|
479
|
-
/** @returns {
|
|
480
|
-
static
|
|
481
|
-
/** @returns {
|
|
482
|
-
static
|
|
500
|
+
/** @returns {DeleteAppCustomFieldDefinitionParam} */
|
|
501
|
+
static deleteAppCustomFieldDefinition(): DeleteAppCustomFieldDefinitionParam;
|
|
502
|
+
/** @returns {DeleteAppCustomFieldsByResourceIdParam} */
|
|
503
|
+
static deleteAppCustomFieldsByResourceId(): DeleteAppCustomFieldsByResourceIdParam;
|
|
504
|
+
/** @returns {DeleteAppCustomObjectParam} */
|
|
505
|
+
static deleteAppCustomObject(): DeleteAppCustomObjectParam;
|
|
506
|
+
/** @returns {DeleteAppCustomObjectDefinitionParam} */
|
|
507
|
+
static deleteAppCustomObjectDefinition(): DeleteAppCustomObjectDefinitionParam;
|
|
483
508
|
/** @returns {DeleteBlogParam} */
|
|
484
509
|
static deleteBlog(): DeleteBlogParam;
|
|
485
510
|
/** @returns {DeleteDataLoaderParam} */
|
|
@@ -504,32 +529,34 @@ declare class ContentPlatformApplicationValidator {
|
|
|
504
529
|
static editInjectableTag(): EditInjectableTagParam;
|
|
505
530
|
/** @returns {EditSEOMarkupSchemaParam} */
|
|
506
531
|
static editSEOMarkupSchema(): EditSEOMarkupSchemaParam;
|
|
507
|
-
/** @returns {
|
|
508
|
-
static
|
|
532
|
+
/** @returns {ExportAppCustomObjectEntriesParam} */
|
|
533
|
+
static exportAppCustomObjectEntries(): ExportAppCustomObjectEntriesParam;
|
|
509
534
|
/** @returns {GenerateSEOTitleParam} */
|
|
510
535
|
static generateSEOTitle(): GenerateSEOTitleParam;
|
|
511
536
|
/** @returns {GetAnnouncementByIdParam} */
|
|
512
537
|
static getAnnouncementById(): GetAnnouncementByIdParam;
|
|
513
538
|
/** @returns {GetAnnouncementsListParam} */
|
|
514
539
|
static getAnnouncementsList(): GetAnnouncementsListParam;
|
|
515
|
-
/** @returns {
|
|
516
|
-
static
|
|
517
|
-
/** @returns {GetAppCustomFieldDefinitionBySlugParam} */
|
|
518
|
-
static getAppCustomFieldDefinitionBySlug(): GetAppCustomFieldDefinitionBySlugParam;
|
|
540
|
+
/** @returns {GetAppCustomFieldDefinitionParam} */
|
|
541
|
+
static getAppCustomFieldDefinition(): GetAppCustomFieldDefinitionParam;
|
|
519
542
|
/** @returns {GetAppCustomFieldDefinitionsParam} */
|
|
520
543
|
static getAppCustomFieldDefinitions(): GetAppCustomFieldDefinitionsParam;
|
|
544
|
+
/** @returns {GetAppCustomFieldJobsParam} */
|
|
545
|
+
static getAppCustomFieldJobs(): GetAppCustomFieldJobsParam;
|
|
521
546
|
/** @returns {GetAppCustomFieldTypesParam} */
|
|
522
547
|
static getAppCustomFieldTypes(): any;
|
|
523
|
-
/** @returns {
|
|
524
|
-
static
|
|
525
|
-
/** @returns {
|
|
526
|
-
static
|
|
527
|
-
/** @returns {
|
|
528
|
-
static
|
|
548
|
+
/** @returns {GetAppCustomFieldsParam} */
|
|
549
|
+
static getAppCustomFields(): GetAppCustomFieldsParam;
|
|
550
|
+
/** @returns {GetAppCustomFieldsByResourceIdParam} */
|
|
551
|
+
static getAppCustomFieldsByResourceId(): GetAppCustomFieldsByResourceIdParam;
|
|
552
|
+
/** @returns {GetAppCustomObjectParam} */
|
|
553
|
+
static getAppCustomObject(): GetAppCustomObjectParam;
|
|
554
|
+
/** @returns {GetAppCustomObjectDefinitionParam} */
|
|
555
|
+
static getAppCustomObjectDefinition(): GetAppCustomObjectDefinitionParam;
|
|
529
556
|
/** @returns {GetAppCustomObjectDefinitionsParam} */
|
|
530
557
|
static getAppCustomObjectDefinitions(): GetAppCustomObjectDefinitionsParam;
|
|
531
|
-
/** @returns {
|
|
532
|
-
static
|
|
558
|
+
/** @returns {GetAppCustomObjectsParam} */
|
|
559
|
+
static getAppCustomObjects(): GetAppCustomObjectsParam;
|
|
533
560
|
/** @returns {GetAppJobsParam} */
|
|
534
561
|
static getAppJobs(): GetAppJobsParam;
|
|
535
562
|
/** @returns {GetAppResourcesParam} */
|
|
@@ -538,6 +565,10 @@ declare class ContentPlatformApplicationValidator {
|
|
|
538
565
|
static getBlogBySlug(): GetBlogBySlugParam;
|
|
539
566
|
/** @returns {GetBlogsParam} */
|
|
540
567
|
static getBlogs(): GetBlogsParam;
|
|
568
|
+
/** @returns {GetComponentByIdParam} */
|
|
569
|
+
static getComponentById(): GetComponentByIdParam;
|
|
570
|
+
/** @returns {GetDataLoaderApiSpecsParam} */
|
|
571
|
+
static getDataLoaderApiSpecs(): GetDataLoaderApiSpecsParam;
|
|
541
572
|
/** @returns {GetDataLoadersParam} */
|
|
542
573
|
static getDataLoaders(): any;
|
|
543
574
|
/** @returns {GetDataLoadersByServiceParam} */
|
|
@@ -555,7 +586,7 @@ declare class ContentPlatformApplicationValidator {
|
|
|
555
586
|
/** @returns {GetFaqsByCategoryIdOrSlugParam} */
|
|
556
587
|
static getFaqsByCategoryIdOrSlug(): GetFaqsByCategoryIdOrSlugParam;
|
|
557
588
|
/** @returns {GetInjectableTagsParam} */
|
|
558
|
-
static getInjectableTags():
|
|
589
|
+
static getInjectableTags(): any;
|
|
559
590
|
/** @returns {GetLandingPagesParam} */
|
|
560
591
|
static getLandingPages(): GetLandingPagesParam;
|
|
561
592
|
/** @returns {GetLegalInformationParam} */
|
|
@@ -584,28 +615,28 @@ declare class ContentPlatformApplicationValidator {
|
|
|
584
615
|
static getSEOMarkupSchemas(): GetSEOMarkupSchemasParam;
|
|
585
616
|
/** @returns {GetSupportInformationParam} */
|
|
586
617
|
static getSupportInformation(): any;
|
|
587
|
-
/** @returns {
|
|
588
|
-
static
|
|
618
|
+
/** @returns {ImportAppCustomObjectEntriesParam} */
|
|
619
|
+
static importAppCustomObjectEntries(): ImportAppCustomObjectEntriesParam;
|
|
589
620
|
/** @returns {RemoveInjectableTagParam} */
|
|
590
621
|
static removeInjectableTag(): RemoveInjectableTagParam;
|
|
591
622
|
/** @returns {ResetDataLoaderParam} */
|
|
592
623
|
static resetDataLoader(): ResetDataLoaderParam;
|
|
593
|
-
/** @returns {
|
|
594
|
-
static
|
|
624
|
+
/** @returns {SampleAppCustomObjectBulkEntryParam} */
|
|
625
|
+
static sampleAppCustomObjectBulkEntry(): SampleAppCustomObjectBulkEntryParam;
|
|
595
626
|
/** @returns {SelectDataLoaderParam} */
|
|
596
627
|
static selectDataLoader(): SelectDataLoaderParam;
|
|
597
628
|
/** @returns {UpdateAnnouncementParam} */
|
|
598
629
|
static updateAnnouncement(): UpdateAnnouncementParam;
|
|
599
630
|
/** @returns {UpdateAnnouncementScheduleParam} */
|
|
600
631
|
static updateAnnouncementSchedule(): UpdateAnnouncementScheduleParam;
|
|
601
|
-
/** @returns {
|
|
602
|
-
static
|
|
603
|
-
/** @returns {
|
|
604
|
-
static
|
|
605
|
-
/** @returns {
|
|
606
|
-
static
|
|
607
|
-
/** @returns {
|
|
608
|
-
static
|
|
632
|
+
/** @returns {UpdateAppCustomFieldByResourceIdParam} */
|
|
633
|
+
static updateAppCustomFieldByResourceId(): UpdateAppCustomFieldByResourceIdParam;
|
|
634
|
+
/** @returns {UpdateAppCustomFieldDefinitionParam} */
|
|
635
|
+
static updateAppCustomFieldDefinition(): UpdateAppCustomFieldDefinitionParam;
|
|
636
|
+
/** @returns {UpdateAppCustomObjectParam} */
|
|
637
|
+
static updateAppCustomObject(): UpdateAppCustomObjectParam;
|
|
638
|
+
/** @returns {UpdateAppCustomObjectDefinitionParam} */
|
|
639
|
+
static updateAppCustomObjectDefinition(): UpdateAppCustomObjectDefinitionParam;
|
|
609
640
|
/** @returns {UpdateBlogParam} */
|
|
610
641
|
static updateBlog(): UpdateBlogParam;
|
|
611
642
|
/** @returns {UpdateFaqParam} */
|
|
@@ -632,7 +663,7 @@ declare class ContentPlatformApplicationValidator {
|
|
|
632
663
|
static updateSupportInformation(): UpdateSupportInformationParam;
|
|
633
664
|
}
|
|
634
665
|
declare namespace ContentPlatformApplicationValidator {
|
|
635
|
-
export { AddDataLoaderParam, AddFaqParam, AddInjectableTagParam, AddPathRedirectionRulesParam, CreateAnnouncementParam, CreateAppCustomFieldDefinitionParam,
|
|
666
|
+
export { AddDataLoaderParam, AddFaqParam, AddInjectableTagParam, AddPathRedirectionRulesParam, CreateAnnouncementParam, CreateAppCustomFieldByResourceIdParam, CreateAppCustomFieldDefinitionParam, CreateAppCustomObjectParam, CreateAppCustomObjectDefinitionParam, CreateBlogParam, CreateFaqCategoryParam, CreateInjectableTagParam, CreateLandingPageParam, CreateNavigationParam, CreatePageParam, CreatePagePreviewParam, CreateSEOMarkupSchemaParam, DeleteAllInjectableTagsParam, DeleteAnnouncementParam, DeleteAppCustomFieldDefinitionParam, DeleteAppCustomFieldsByResourceIdParam, DeleteAppCustomObjectParam, DeleteAppCustomObjectDefinitionParam, DeleteBlogParam, DeleteDataLoaderParam, DeleteFaqParam, DeleteFaqCategoryParam, DeleteLandingPageParam, DeleteNavigationParam, DeletePageParam, DeletePathRedirectionRulesParam, DeleteSEOMarkupSchemaParam, EditDataLoaderParam, EditInjectableTagParam, EditSEOMarkupSchemaParam, ExportAppCustomObjectEntriesParam, GenerateSEOTitleParam, GetAnnouncementByIdParam, GetAnnouncementsListParam, GetAppCustomFieldDefinitionParam, GetAppCustomFieldDefinitionsParam, GetAppCustomFieldJobsParam, GetAppCustomFieldTypesParam, GetAppCustomFieldsParam, GetAppCustomFieldsByResourceIdParam, GetAppCustomObjectParam, GetAppCustomObjectDefinitionParam, GetAppCustomObjectDefinitionsParam, GetAppCustomObjectsParam, GetAppJobsParam, GetAppResourcesParam, GetBlogBySlugParam, GetBlogsParam, GetComponentByIdParam, GetDataLoaderApiSpecsParam, GetDataLoadersParam, GetDataLoadersByServiceParam, GetDefaultNavigationsParam, GetDefaultSEOMarkupSchemaParam, GetFaqByIdOrSlugParam, GetFaqCategoriesParam, GetFaqCategoryBySlugOrIdParam, GetFaqsByCategoryIdOrSlugParam, GetInjectableTagsParam, GetLandingPagesParam, GetLegalInformationParam, GetNavigationBySlugParam, GetNavigationsParam, GetPageBySlugParam, GetPageMetaParam, GetPageSpecParam, GetPagesParam, GetPathRedirectionRuleParam, GetPathRedirectionRulesParam, GetSEOConfigurationParam, GetSEOMarkupSchemaParam, GetSEOMarkupSchemasParam, GetSupportInformationParam, ImportAppCustomObjectEntriesParam, RemoveInjectableTagParam, ResetDataLoaderParam, SampleAppCustomObjectBulkEntryParam, SelectDataLoaderParam, UpdateAnnouncementParam, UpdateAnnouncementScheduleParam, UpdateAppCustomFieldByResourceIdParam, UpdateAppCustomFieldDefinitionParam, UpdateAppCustomObjectParam, UpdateAppCustomObjectDefinitionParam, UpdateBlogParam, UpdateFaqParam, UpdateFaqCategoryParam, UpdateInjectableTagParam, UpdateLandingPageParam, UpdateLegalInformationParam, UpdateNavigationParam, UpdatePageParam, UpdatePagePreviewParam, UpdatePathRedirectionRulesParam, UpdateSEOConfigurationParam, UpdateSupportInformationParam };
|
|
636
667
|
}
|
|
637
668
|
type AddDataLoaderParam = {
|
|
638
669
|
body: ContentPlatformModel.DataLoaderSchema;
|
|
@@ -653,31 +684,40 @@ type AddPathRedirectionRulesParam = {
|
|
|
653
684
|
type CreateAnnouncementParam = {
|
|
654
685
|
body: ContentPlatformModel.AdminAnnouncementSchema;
|
|
655
686
|
};
|
|
656
|
-
type
|
|
687
|
+
type CreateAppCustomFieldByResourceIdParam = {
|
|
657
688
|
resource: string;
|
|
689
|
+
resourceId: string;
|
|
690
|
+
body: ContentPlatformModel.CustomFieldRequestSchema;
|
|
691
|
+
};
|
|
692
|
+
type CreateAppCustomFieldDefinitionParam = {
|
|
658
693
|
body: ContentPlatformModel.CustomFieldDefinitionRequestSchema;
|
|
659
694
|
};
|
|
660
|
-
type
|
|
661
|
-
|
|
662
|
-
body: ContentPlatformModel.CustomObjectRequestSchemaWithoutId;
|
|
695
|
+
type CreateAppCustomObjectParam = {
|
|
696
|
+
body: ContentPlatformModel.CustomObjectRequestSchema;
|
|
663
697
|
};
|
|
664
698
|
type CreateAppCustomObjectDefinitionParam = {
|
|
665
699
|
body: ContentPlatformModel.CustomObjectDefinitionRequestSchema;
|
|
666
700
|
};
|
|
667
701
|
type CreateBlogParam = {
|
|
668
|
-
body: ContentPlatformModel.
|
|
702
|
+
body: ContentPlatformModel.BlogRequest;
|
|
669
703
|
};
|
|
670
704
|
type CreateFaqCategoryParam = {
|
|
671
705
|
body: ContentPlatformModel.CreateFaqCategoryRequestSchema;
|
|
672
706
|
};
|
|
707
|
+
type CreateInjectableTagParam = {
|
|
708
|
+
body: ContentPlatformModel.CreateTagRequestSchema;
|
|
709
|
+
};
|
|
673
710
|
type CreateLandingPageParam = {
|
|
674
711
|
body: ContentPlatformModel.LandingPageSchema;
|
|
675
712
|
};
|
|
676
713
|
type CreateNavigationParam = {
|
|
677
|
-
body: ContentPlatformModel.
|
|
714
|
+
body: ContentPlatformModel.NavigationRequest;
|
|
678
715
|
};
|
|
679
716
|
type CreatePageParam = {
|
|
680
|
-
body: ContentPlatformModel.
|
|
717
|
+
body: ContentPlatformModel.PageRequest;
|
|
718
|
+
};
|
|
719
|
+
type CreatePagePreviewParam = {
|
|
720
|
+
body: ContentPlatformModel.PageRequest;
|
|
681
721
|
};
|
|
682
722
|
type CreateSEOMarkupSchemaParam = {
|
|
683
723
|
body: ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody;
|
|
@@ -688,17 +728,19 @@ type DeleteAnnouncementParam = {
|
|
|
688
728
|
*/
|
|
689
729
|
announcementId: string;
|
|
690
730
|
};
|
|
691
|
-
type
|
|
692
|
-
|
|
731
|
+
type DeleteAppCustomFieldDefinitionParam = {
|
|
732
|
+
id: string;
|
|
733
|
+
};
|
|
734
|
+
type DeleteAppCustomFieldsByResourceIdParam = {
|
|
693
735
|
resource: string;
|
|
694
|
-
|
|
736
|
+
resourceId: string;
|
|
737
|
+
ids: string;
|
|
695
738
|
};
|
|
696
|
-
type
|
|
697
|
-
|
|
698
|
-
slug: string;
|
|
739
|
+
type DeleteAppCustomObjectParam = {
|
|
740
|
+
id: string;
|
|
699
741
|
};
|
|
700
|
-
type
|
|
701
|
-
|
|
742
|
+
type DeleteAppCustomObjectDefinitionParam = {
|
|
743
|
+
id: string;
|
|
702
744
|
};
|
|
703
745
|
type DeleteBlogParam = {
|
|
704
746
|
/**
|
|
@@ -757,7 +799,7 @@ type DeleteSEOMarkupSchemaParam = {
|
|
|
757
799
|
* - Alphanumeric ID allotted to a SEO Markup Schema
|
|
758
800
|
* Template created within a business.
|
|
759
801
|
*/
|
|
760
|
-
|
|
802
|
+
schemaId: string;
|
|
761
803
|
};
|
|
762
804
|
type EditDataLoaderParam = {
|
|
763
805
|
/**
|
|
@@ -778,19 +820,18 @@ type EditSEOMarkupSchemaParam = {
|
|
|
778
820
|
* - Alphanumeric ID allotted to a SEO Markup Schema
|
|
779
821
|
* Template created within a business.
|
|
780
822
|
*/
|
|
781
|
-
|
|
823
|
+
schemaId: string;
|
|
782
824
|
body: ContentPlatformModel.SEOSchemaMarkupTemplateRequestBody;
|
|
783
825
|
};
|
|
784
|
-
type
|
|
785
|
-
|
|
826
|
+
type ExportAppCustomObjectEntriesParam = {
|
|
827
|
+
definitionId: string;
|
|
786
828
|
};
|
|
787
829
|
type GenerateSEOTitleParam = {
|
|
788
830
|
/**
|
|
789
|
-
* - String
|
|
790
|
-
*
|
|
791
|
-
* title, description
|
|
831
|
+
* - String representing the type of SEO content to be
|
|
832
|
+
* generated. Possible values are: title, description
|
|
792
833
|
*/
|
|
793
|
-
type:
|
|
834
|
+
type: string;
|
|
794
835
|
body: ContentPlatformModel.GenerateSEOContent;
|
|
795
836
|
};
|
|
796
837
|
type GetAnnouncementByIdParam = {
|
|
@@ -811,19 +852,8 @@ type GetAnnouncementsListParam = {
|
|
|
811
852
|
*/
|
|
812
853
|
pageSize?: number;
|
|
813
854
|
};
|
|
814
|
-
type
|
|
815
|
-
|
|
816
|
-
pageSize: string;
|
|
817
|
-
resource: string;
|
|
818
|
-
types?: string;
|
|
819
|
-
search?: string;
|
|
820
|
-
slugs?: string;
|
|
821
|
-
namespaces?: string;
|
|
822
|
-
};
|
|
823
|
-
type GetAppCustomFieldDefinitionBySlugParam = {
|
|
824
|
-
slug: string;
|
|
825
|
-
resource: string;
|
|
826
|
-
namespace: string;
|
|
855
|
+
type GetAppCustomFieldDefinitionParam = {
|
|
856
|
+
id: string;
|
|
827
857
|
};
|
|
828
858
|
type GetAppCustomFieldDefinitionsParam = {
|
|
829
859
|
pageNo: string;
|
|
@@ -832,28 +862,34 @@ type GetAppCustomFieldDefinitionsParam = {
|
|
|
832
862
|
types?: string;
|
|
833
863
|
search?: string;
|
|
834
864
|
slugs?: string;
|
|
835
|
-
namespaces?: string;
|
|
836
865
|
};
|
|
837
|
-
type
|
|
866
|
+
type GetAppCustomFieldJobsParam = {
|
|
867
|
+
page: string;
|
|
868
|
+
pageSize: string;
|
|
869
|
+
actionType: string;
|
|
870
|
+
};
|
|
871
|
+
type GetAppCustomFieldsParam = {
|
|
838
872
|
resource: string;
|
|
839
|
-
resourceSlug: string;
|
|
840
873
|
};
|
|
841
|
-
type
|
|
842
|
-
|
|
843
|
-
|
|
874
|
+
type GetAppCustomFieldsByResourceIdParam = {
|
|
875
|
+
resource: string;
|
|
876
|
+
resourceId: string;
|
|
844
877
|
};
|
|
845
|
-
type
|
|
846
|
-
|
|
878
|
+
type GetAppCustomObjectParam = {
|
|
879
|
+
id: string;
|
|
880
|
+
};
|
|
881
|
+
type GetAppCustomObjectDefinitionParam = {
|
|
882
|
+
id: string;
|
|
847
883
|
};
|
|
848
884
|
type GetAppCustomObjectDefinitionsParam = {
|
|
849
885
|
pageNo: string;
|
|
850
886
|
pageSize: string;
|
|
851
887
|
search?: string;
|
|
852
888
|
};
|
|
853
|
-
type
|
|
889
|
+
type GetAppCustomObjectsParam = {
|
|
890
|
+
definitionId?: string;
|
|
854
891
|
pageNo: string;
|
|
855
892
|
pageSize: string;
|
|
856
|
-
definitionSlug: string;
|
|
857
893
|
};
|
|
858
894
|
type GetAppJobsParam = {
|
|
859
895
|
page: string;
|
|
@@ -899,6 +935,20 @@ type GetBlogsParam = {
|
|
|
899
935
|
*/
|
|
900
936
|
status?: string;
|
|
901
937
|
};
|
|
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
|
+
};
|
|
902
952
|
type GetDataLoadersByServiceParam = {
|
|
903
953
|
/**
|
|
904
954
|
* - Service name of the data loader..
|
|
@@ -936,12 +986,6 @@ type GetFaqsByCategoryIdOrSlugParam = {
|
|
|
936
986
|
*/
|
|
937
987
|
idOrSlug: string;
|
|
938
988
|
};
|
|
939
|
-
type GetInjectableTagsParam = {
|
|
940
|
-
/**
|
|
941
|
-
* - Get all tags irrespective of the creator of tags
|
|
942
|
-
*/
|
|
943
|
-
all?: boolean;
|
|
944
|
-
};
|
|
945
989
|
type GetLandingPagesParam = {
|
|
946
990
|
/**
|
|
947
991
|
* - The page number to navigate through the given
|
|
@@ -1025,7 +1069,7 @@ type GetSEOMarkupSchemaParam = {
|
|
|
1025
1069
|
* - Alphanumeric ID allotted to a SEO Markup Schema
|
|
1026
1070
|
* Template created within a business.
|
|
1027
1071
|
*/
|
|
1028
|
-
|
|
1072
|
+
schemaId: string;
|
|
1029
1073
|
};
|
|
1030
1074
|
type GetSEOMarkupSchemasParam = {
|
|
1031
1075
|
/**
|
|
@@ -1047,8 +1091,8 @@ type GetSEOMarkupSchemasParam = {
|
|
|
1047
1091
|
*/
|
|
1048
1092
|
pageSize?: number;
|
|
1049
1093
|
};
|
|
1050
|
-
type
|
|
1051
|
-
|
|
1094
|
+
type ImportAppCustomObjectEntriesParam = {
|
|
1095
|
+
definitionId: string;
|
|
1052
1096
|
body: ContentPlatformModel.CustomObjectBulkSchema;
|
|
1053
1097
|
};
|
|
1054
1098
|
type RemoveInjectableTagParam = {
|
|
@@ -1064,8 +1108,8 @@ type ResetDataLoaderParam = {
|
|
|
1064
1108
|
*/
|
|
1065
1109
|
operationId: string;
|
|
1066
1110
|
};
|
|
1067
|
-
type
|
|
1068
|
-
|
|
1111
|
+
type SampleAppCustomObjectBulkEntryParam = {
|
|
1112
|
+
definitionId: string;
|
|
1069
1113
|
};
|
|
1070
1114
|
type SelectDataLoaderParam = {
|
|
1071
1115
|
/**
|
|
@@ -1087,24 +1131,21 @@ type UpdateAnnouncementScheduleParam = {
|
|
|
1087
1131
|
announcementId: string;
|
|
1088
1132
|
body: ContentPlatformModel.ScheduleSchema;
|
|
1089
1133
|
};
|
|
1090
|
-
type
|
|
1134
|
+
type UpdateAppCustomFieldByResourceIdParam = {
|
|
1091
1135
|
resource: string;
|
|
1092
|
-
|
|
1136
|
+
resourceId: string;
|
|
1093
1137
|
body: ContentPlatformModel.CustomFieldRequestSchema;
|
|
1094
1138
|
};
|
|
1095
|
-
type
|
|
1096
|
-
|
|
1097
|
-
resource: string;
|
|
1098
|
-
namespace: string;
|
|
1139
|
+
type UpdateAppCustomFieldDefinitionParam = {
|
|
1140
|
+
id: string;
|
|
1099
1141
|
body: ContentPlatformModel.CustomFieldDefinitionRequestSchema;
|
|
1100
1142
|
};
|
|
1101
|
-
type
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
body: ContentPlatformModel.CustomObjectRequestSchemaWithoutId;
|
|
1143
|
+
type UpdateAppCustomObjectParam = {
|
|
1144
|
+
id: string;
|
|
1145
|
+
body: ContentPlatformModel.CustomObjectRequestSchema;
|
|
1105
1146
|
};
|
|
1106
|
-
type
|
|
1107
|
-
|
|
1147
|
+
type UpdateAppCustomObjectDefinitionParam = {
|
|
1148
|
+
id: string;
|
|
1108
1149
|
body: ContentPlatformModel.CustomObjectDefinitionUpdateRequestSchema;
|
|
1109
1150
|
};
|
|
1110
1151
|
type UpdateBlogParam = {
|
|
@@ -1112,7 +1153,7 @@ type UpdateBlogParam = {
|
|
|
1112
1153
|
* - ID allotted to the blog.
|
|
1113
1154
|
*/
|
|
1114
1155
|
id: string;
|
|
1115
|
-
body: ContentPlatformModel.
|
|
1156
|
+
body: ContentPlatformModel.BlogRequest;
|
|
1116
1157
|
};
|
|
1117
1158
|
type UpdateFaqParam = {
|
|
1118
1159
|
/**
|
|
@@ -1150,7 +1191,7 @@ type UpdateNavigationParam = {
|
|
|
1150
1191
|
* - ID allotted to the navigation.
|
|
1151
1192
|
*/
|
|
1152
1193
|
id: string;
|
|
1153
|
-
body: ContentPlatformModel.
|
|
1194
|
+
body: ContentPlatformModel.NavigationRequest;
|
|
1154
1195
|
};
|
|
1155
1196
|
type UpdatePageParam = {
|
|
1156
1197
|
/**
|
|
@@ -1165,7 +1206,7 @@ type UpdatePagePreviewParam = {
|
|
|
1165
1206
|
* a page. You can get slug value of a page from `getPages` API.
|
|
1166
1207
|
*/
|
|
1167
1208
|
slug: string;
|
|
1168
|
-
body: ContentPlatformModel.
|
|
1209
|
+
body: ContentPlatformModel.PagePublishRequest;
|
|
1169
1210
|
};
|
|
1170
1211
|
type UpdatePathRedirectionRulesParam = {
|
|
1171
1212
|
/**
|
|
@@ -1180,11 +1221,13 @@ type UpdateSEOConfigurationParam = {
|
|
|
1180
1221
|
type UpdateSupportInformationParam = {
|
|
1181
1222
|
body: ContentPlatformModel.Support;
|
|
1182
1223
|
};
|
|
1224
|
+
type DeleteAllInjectableTagsParam = any;
|
|
1183
1225
|
type GetAppCustomFieldTypesParam = any;
|
|
1184
1226
|
type GetAppResourcesParam = any;
|
|
1185
1227
|
type GetDataLoadersParam = any;
|
|
1186
1228
|
type GetDefaultNavigationsParam = any;
|
|
1187
1229
|
type GetFaqCategoriesParam = any;
|
|
1230
|
+
type GetInjectableTagsParam = any;
|
|
1188
1231
|
type GetLegalInformationParam = any;
|
|
1189
1232
|
type GetPageMetaParam = any;
|
|
1190
1233
|
type GetPageSpecParam = any;
|