@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
|
@@ -3,6 +3,18 @@ declare class Content {
|
|
|
3
3
|
constructor(config: any, applicationId: any);
|
|
4
4
|
config: any;
|
|
5
5
|
applicationId: any;
|
|
6
|
+
/**
|
|
7
|
+
* @param {ContentPlatformApplicationValidator.AddApplicationLanguageParam} arg
|
|
8
|
+
* - Arg object
|
|
9
|
+
*
|
|
10
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
11
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
12
|
+
* @returns {Promise<Object>} - Success response
|
|
13
|
+
* @name addApplicationLanguage
|
|
14
|
+
* @summary: Add app language
|
|
15
|
+
* @description: Add new languages to application's supported language list. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/addApplicationLanguage/).
|
|
16
|
+
*/
|
|
17
|
+
addApplicationLanguage({ body, requestHeaders }?: ContentPlatformApplicationValidator.AddApplicationLanguageParam, { responseHeaders }?: object): Promise<any>;
|
|
6
18
|
/**
|
|
7
19
|
* @param {ContentPlatformApplicationValidator.AddDataLoaderParam} arg - Arg object
|
|
8
20
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -31,7 +43,7 @@ declare class Content {
|
|
|
31
43
|
* @returns {Promise<ContentPlatformModel.TagsSchema>} - Success response
|
|
32
44
|
* @name addInjectableTag
|
|
33
45
|
* @summary: Create HTML tag
|
|
34
|
-
* @description: Create and add a new injectable tag - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/addInjectableTag/).
|
|
46
|
+
* @description: Create and add a new injectable tag. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/addInjectableTag/).
|
|
35
47
|
*/
|
|
36
48
|
addInjectableTag({ body, requestHeaders }?: ContentPlatformApplicationValidator.AddInjectableTagParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TagsSchema>;
|
|
37
49
|
/**
|
|
@@ -40,12 +52,24 @@ declare class Content {
|
|
|
40
52
|
*
|
|
41
53
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
42
54
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
43
|
-
* @returns {Promise<ContentPlatformModel.
|
|
55
|
+
* @returns {Promise<ContentPlatformModel.PathMappingSchema>} - Success response
|
|
44
56
|
* @name addPathRedirectionRules
|
|
45
57
|
* @summary: Create path redirection rules
|
|
46
58
|
* @description: Create and add rules for path redirection. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/addPathRedirectionRules/).
|
|
47
59
|
*/
|
|
48
|
-
addPathRedirectionRules({ body, requestHeaders }?: ContentPlatformApplicationValidator.AddPathRedirectionRulesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
60
|
+
addPathRedirectionRules({ body, requestHeaders }?: ContentPlatformApplicationValidator.AddPathRedirectionRulesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PathMappingSchema>;
|
|
61
|
+
/**
|
|
62
|
+
* @param {ContentPlatformApplicationValidator.BulkUnPublishApplicationLanguageParam} arg
|
|
63
|
+
* - Arg object
|
|
64
|
+
*
|
|
65
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
66
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
67
|
+
* @returns {Promise<Object>} - Success response
|
|
68
|
+
* @name bulkUnPublishApplicationLanguage
|
|
69
|
+
* @summary: Unpublish all languages of sales channel.
|
|
70
|
+
* @description: Unpublish all application's published languages of specific sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/bulkUnPublishApplicationLanguage/).
|
|
71
|
+
*/
|
|
72
|
+
bulkUnPublishApplicationLanguage({ body, requestHeaders }?: ContentPlatformApplicationValidator.BulkUnPublishApplicationLanguageParam, { responseHeaders }?: object): Promise<any>;
|
|
49
73
|
/**
|
|
50
74
|
* @param {ContentPlatformApplicationValidator.CreateAnnouncementParam} arg
|
|
51
75
|
* - Arg object
|
|
@@ -59,20 +83,6 @@ declare class Content {
|
|
|
59
83
|
* @description: Generate and add a new announcement. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createAnnouncement/).
|
|
60
84
|
*/
|
|
61
85
|
createAnnouncement({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAnnouncementParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateAnnouncementSchema>;
|
|
62
|
-
/**
|
|
63
|
-
* @param {ContentPlatformApplicationValidator.CreateAppCustomFieldByResourceIdParam} arg
|
|
64
|
-
* - Arg object
|
|
65
|
-
*
|
|
66
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
67
|
-
* @param {import("../PlatformAPIClient").Options} - Options
|
|
68
|
-
* @returns {Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>}
|
|
69
|
-
* - Success response
|
|
70
|
-
*
|
|
71
|
-
* @name createAppCustomFieldByResourceId
|
|
72
|
-
* @summary: Create custom field entries for gives resource and resource_id
|
|
73
|
-
* @description: You can add a custom field using this endpoint to any resource by providing the resource ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createAppCustomFieldByResourceId/).
|
|
74
|
-
*/
|
|
75
|
-
createAppCustomFieldByResourceId({ resource, resourceId, body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomFieldByResourceIdParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>;
|
|
76
86
|
/**
|
|
77
87
|
* @param {ContentPlatformApplicationValidator.CreateAppCustomFieldDefinitionParam} arg
|
|
78
88
|
* - Arg object
|
|
@@ -83,36 +93,48 @@ declare class Content {
|
|
|
83
93
|
* - Success response
|
|
84
94
|
*
|
|
85
95
|
* @name createAppCustomFieldDefinition
|
|
86
|
-
* @summary: Create custom field definition
|
|
96
|
+
* @summary: Create custom field definition for a given resource type
|
|
87
97
|
* @description: You can create custom fields definition to any resource so you can extend property of resource. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createAppCustomFieldDefinition/).
|
|
88
98
|
*/
|
|
89
|
-
createAppCustomFieldDefinition({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomFieldDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>;
|
|
99
|
+
createAppCustomFieldDefinition({ resource, body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomFieldDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>;
|
|
90
100
|
/**
|
|
91
|
-
* @param {ContentPlatformApplicationValidator.
|
|
101
|
+
* @param {ContentPlatformApplicationValidator.CreateAppCustomObjectBySlugParam} arg
|
|
92
102
|
* - Arg object
|
|
93
103
|
*
|
|
94
104
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
95
105
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
96
|
-
* @returns {Promise<ContentPlatformModel.
|
|
97
|
-
*
|
|
98
|
-
* @name createAppCustomObject
|
|
106
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectSchema>} - Success response
|
|
107
|
+
* @name createAppCustomObjectBySlug
|
|
99
108
|
* @summary: Create custom object entries
|
|
100
|
-
* @description: Custom object entries against the custom object definition can be added using this API. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/
|
|
109
|
+
* @description: Custom object entries against the custom object definition can be added using this API. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createAppCustomObjectBySlug/).
|
|
101
110
|
*/
|
|
102
|
-
|
|
111
|
+
createAppCustomObjectBySlug({ definitionSlug, body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomObjectBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectSchema>;
|
|
103
112
|
/**
|
|
104
113
|
* @param {ContentPlatformApplicationValidator.CreateAppCustomObjectDefinitionParam} arg
|
|
105
114
|
* - Arg object
|
|
106
115
|
*
|
|
107
116
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
108
117
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
109
|
-
* @returns {Promise<ContentPlatformModel.
|
|
110
|
-
* Success response
|
|
118
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>}
|
|
119
|
+
* - Success response
|
|
120
|
+
*
|
|
111
121
|
* @name createAppCustomObjectDefinition
|
|
112
122
|
* @summary: Create custom object definition
|
|
113
123
|
* @description: Create a custom object that will have a collection of custom fields and can be used anywhere in the custom field for any resource. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createAppCustomObjectDefinition/).
|
|
114
124
|
*/
|
|
115
|
-
createAppCustomObjectDefinition({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
125
|
+
createAppCustomObjectDefinition({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateAppCustomObjectDefinitionParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>;
|
|
126
|
+
/**
|
|
127
|
+
* @param {ContentPlatformApplicationValidator.CreateApplicationResourceTranslationParam} arg
|
|
128
|
+
* - Arg object
|
|
129
|
+
*
|
|
130
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
131
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
132
|
+
* @returns {Promise<ContentPlatformModel.ResourceTranslation>} - Success response
|
|
133
|
+
* @name createApplicationResourceTranslation
|
|
134
|
+
* @summary: Add app translation
|
|
135
|
+
* @description: Create new translations for application resources. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createApplicationResourceTranslation/).
|
|
136
|
+
*/
|
|
137
|
+
createApplicationResourceTranslation({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateApplicationResourceTranslationParam, { responseHeaders }?: object): Promise<ContentPlatformModel.ResourceTranslation>;
|
|
116
138
|
/**
|
|
117
139
|
* @param {ContentPlatformApplicationValidator.CreateBlogParam} arg - Arg object
|
|
118
140
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -135,18 +157,6 @@ declare class Content {
|
|
|
135
157
|
* @description: Generate and add a new FAQ category. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createFaqCategory/).
|
|
136
158
|
*/
|
|
137
159
|
createFaqCategory({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateFaqCategoryParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateFaqCategorySchema>;
|
|
138
|
-
/**
|
|
139
|
-
* @param {ContentPlatformApplicationValidator.CreateInjectableTagParam} arg
|
|
140
|
-
* - Arg object
|
|
141
|
-
*
|
|
142
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
143
|
-
* @param {import("../PlatformAPIClient").Options} - Options
|
|
144
|
-
* @returns {Promise<ContentPlatformModel.TagsSchema>} - Success response
|
|
145
|
-
* @name createInjectableTag
|
|
146
|
-
* @summary: Create HTML tags
|
|
147
|
-
* @description: Use this API to create HTML tags. This includes a list of tags with name, tag type (css/js), url and position of the tag - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createInjectableTag/).
|
|
148
|
-
*/
|
|
149
|
-
createInjectableTag({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateInjectableTagParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TagsSchema>;
|
|
150
160
|
/**
|
|
151
161
|
* @param {ContentPlatformApplicationValidator.CreateLandingPageParam} arg
|
|
152
162
|
* - Arg object
|
|
@@ -179,18 +189,6 @@ declare class Content {
|
|
|
179
189
|
* @description: Generate and add a new page to the platform. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createPage/).
|
|
180
190
|
*/
|
|
181
191
|
createPage({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreatePageParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PageSchema>;
|
|
182
|
-
/**
|
|
183
|
-
* @param {ContentPlatformApplicationValidator.CreatePagePreviewParam} arg
|
|
184
|
-
* - Arg object
|
|
185
|
-
*
|
|
186
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
187
|
-
* @param {import("../PlatformAPIClient").Options} - Options
|
|
188
|
-
* @returns {Promise<ContentPlatformModel.PageSchema>} - Success response
|
|
189
|
-
* @name createPagePreview
|
|
190
|
-
* @summary: Create page preview
|
|
191
|
-
* @description: Generate and add a new page preview. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createPagePreview/).
|
|
192
|
-
*/
|
|
193
|
-
createPagePreview({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreatePagePreviewParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PageSchema>;
|
|
194
192
|
/**
|
|
195
193
|
* @param {ContentPlatformApplicationValidator.CreateSEOMarkupSchemaParam} arg
|
|
196
194
|
* - Arg object
|
|
@@ -204,17 +202,17 @@ declare class Content {
|
|
|
204
202
|
*/
|
|
205
203
|
createSEOMarkupSchema({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateSEOMarkupSchemaParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>;
|
|
206
204
|
/**
|
|
207
|
-
* @param {ContentPlatformApplicationValidator.
|
|
205
|
+
* @param {ContentPlatformApplicationValidator.CreateTranslateUILabelsParam} arg
|
|
208
206
|
* - Arg object
|
|
209
207
|
*
|
|
210
208
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
211
209
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
212
|
-
* @returns {Promise<ContentPlatformModel.
|
|
213
|
-
* @name
|
|
214
|
-
* @summary:
|
|
215
|
-
* @description:
|
|
210
|
+
* @returns {Promise<ContentPlatformModel.TranslateUiLabels>} - Success response
|
|
211
|
+
* @name createTranslateUILabels
|
|
212
|
+
* @summary: Add Translate Ui Labels
|
|
213
|
+
* @description: Creates a new Translate Ui Labels entry with specified configuration and locale settings. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/createTranslateUILabels/).
|
|
216
214
|
*/
|
|
217
|
-
|
|
215
|
+
createTranslateUILabels({ body, requestHeaders }?: ContentPlatformApplicationValidator.CreateTranslateUILabelsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TranslateUiLabels>;
|
|
218
216
|
/**
|
|
219
217
|
* @param {ContentPlatformApplicationValidator.DeleteAnnouncementParam} arg
|
|
220
218
|
* - Arg object
|
|
@@ -229,56 +227,67 @@ declare class Content {
|
|
|
229
227
|
*/
|
|
230
228
|
deleteAnnouncement({ announcementId, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAnnouncementParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateAnnouncementSchema>;
|
|
231
229
|
/**
|
|
232
|
-
* @param {ContentPlatformApplicationValidator.
|
|
230
|
+
* @param {ContentPlatformApplicationValidator.DeleteAppCustomFieldDefinitionBySlugParam} arg
|
|
233
231
|
* - Arg object
|
|
234
232
|
*
|
|
235
233
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
236
234
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
237
235
|
* @returns {Promise<ContentPlatformModel.CustomDataDeleteSchema>} - Success response
|
|
238
|
-
* @name
|
|
236
|
+
* @name deleteAppCustomFieldDefinitionBySlug
|
|
239
237
|
* @summary: Delete custom fields definition
|
|
240
|
-
* @description: Custom field definition and its assosiated custom fields value can be deleted using this api on the basis of definition id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/
|
|
238
|
+
* @description: Custom field definition and its assosiated custom fields value can be deleted using this api on the basis of definition id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteAppCustomFieldDefinitionBySlug/).
|
|
241
239
|
*/
|
|
242
|
-
|
|
240
|
+
deleteAppCustomFieldDefinitionBySlug({ slug, resource, namespace, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomFieldDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomDataDeleteSchema>;
|
|
243
241
|
/**
|
|
244
|
-
* @param {ContentPlatformApplicationValidator.
|
|
242
|
+
* @param {ContentPlatformApplicationValidator.DeleteAppCustomObjectBySlugParam} arg
|
|
245
243
|
* - Arg object
|
|
246
244
|
*
|
|
247
245
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
248
246
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
249
|
-
* @returns {Promise<ContentPlatformModel.
|
|
250
|
-
*
|
|
251
|
-
* @
|
|
252
|
-
* @
|
|
253
|
-
* @description: Use this API to delete the custom fields for given resource in param. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteAppCustomFieldsByResourceId/).
|
|
247
|
+
* @returns {Promise<ContentPlatformModel.CustomDataDeleteSchema>} - Success response
|
|
248
|
+
* @name deleteAppCustomObjectBySlug
|
|
249
|
+
* @summary: Delete custom object
|
|
250
|
+
* @description: A Custom object entry can be deleted by providing the custom object definition slug and custom object entry slug using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteAppCustomObjectBySlug/).
|
|
254
251
|
*/
|
|
255
|
-
|
|
252
|
+
deleteAppCustomObjectBySlug({ definitionSlug, slug, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomObjectBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomDataDeleteSchema>;
|
|
256
253
|
/**
|
|
257
|
-
* @param {ContentPlatformApplicationValidator.
|
|
254
|
+
* @param {ContentPlatformApplicationValidator.DeleteAppCustomObjectDefinitionBySlugParam} arg
|
|
258
255
|
* - Arg object
|
|
259
256
|
*
|
|
260
257
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
261
258
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
262
|
-
* @returns {Promise<ContentPlatformModel.
|
|
263
|
-
*
|
|
264
|
-
*
|
|
265
|
-
* @
|
|
259
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectDefinitionDeleteResponseSchema>}
|
|
260
|
+
* - Success response
|
|
261
|
+
*
|
|
262
|
+
* @name deleteAppCustomObjectDefinitionBySlug
|
|
263
|
+
* @summary: Delete custom object definition
|
|
264
|
+
* @description: Custom object definitions can be deleted using this endpoint by providing the definition ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteAppCustomObjectDefinitionBySlug/).
|
|
266
265
|
*/
|
|
267
|
-
|
|
266
|
+
deleteAppCustomObjectDefinitionBySlug({ slug, requestHeaders }?: ContentPlatformApplicationValidator.DeleteAppCustomObjectDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionDeleteResponseSchema>;
|
|
268
267
|
/**
|
|
269
|
-
* @param {ContentPlatformApplicationValidator.
|
|
268
|
+
* @param {ContentPlatformApplicationValidator.DeleteApplicationLanguageParam} arg
|
|
270
269
|
* - Arg object
|
|
271
270
|
*
|
|
272
271
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
273
272
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
274
|
-
* @returns {Promise<ContentPlatformModel.
|
|
275
|
-
*
|
|
273
|
+
* @returns {Promise<ContentPlatformModel.OperationResponseSchema>} - Success response
|
|
274
|
+
* @name deleteApplicationLanguage
|
|
275
|
+
* @summary: Remove app language
|
|
276
|
+
* @description: Remove a language from application's supported languages. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteApplicationLanguage/).
|
|
277
|
+
*/
|
|
278
|
+
deleteApplicationLanguage({ locale, requestHeaders }?: ContentPlatformApplicationValidator.DeleteApplicationLanguageParam, { responseHeaders }?: object): Promise<ContentPlatformModel.OperationResponseSchema>;
|
|
279
|
+
/**
|
|
280
|
+
* @param {ContentPlatformApplicationValidator.DeleteApplicationResourceTranslationParam} arg
|
|
281
|
+
* - Arg object
|
|
276
282
|
*
|
|
277
|
-
* @
|
|
278
|
-
* @
|
|
279
|
-
* @
|
|
283
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
284
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
285
|
+
* @returns {Promise<ContentPlatformModel.OperationResponseSchema>} - Success response
|
|
286
|
+
* @name deleteApplicationResourceTranslation
|
|
287
|
+
* @summary: Remove app translation
|
|
288
|
+
* @description: Remove translations for application resources. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteApplicationResourceTranslation/).
|
|
280
289
|
*/
|
|
281
|
-
|
|
290
|
+
deleteApplicationResourceTranslation({ id, requestHeaders }?: ContentPlatformApplicationValidator.DeleteApplicationResourceTranslationParam, { responseHeaders }?: object): Promise<ContentPlatformModel.OperationResponseSchema>;
|
|
282
291
|
/**
|
|
283
292
|
* @param {ContentPlatformApplicationValidator.DeleteBlogParam} arg - Arg object
|
|
284
293
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -316,12 +325,12 @@ declare class Content {
|
|
|
316
325
|
*
|
|
317
326
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
318
327
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
319
|
-
* @returns {Promise<ContentPlatformModel.
|
|
328
|
+
* @returns {Promise<ContentPlatformModel.FaqSchema>} - Success response
|
|
320
329
|
* @name deleteFaqCategory
|
|
321
330
|
* @summary: Delete FAQ category
|
|
322
331
|
* @description: Remove a specific FAQ category. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteFaqCategory/).
|
|
323
332
|
*/
|
|
324
|
-
deleteFaqCategory({ id, requestHeaders }?: ContentPlatformApplicationValidator.DeleteFaqCategoryParam, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
333
|
+
deleteFaqCategory({ id, requestHeaders }?: ContentPlatformApplicationValidator.DeleteFaqCategoryParam, { responseHeaders }?: object): Promise<ContentPlatformModel.FaqSchema>;
|
|
325
334
|
/**
|
|
326
335
|
* @param {ContentPlatformApplicationValidator.DeleteLandingPageParam} arg
|
|
327
336
|
* - Arg object
|
|
@@ -360,12 +369,12 @@ declare class Content {
|
|
|
360
369
|
*
|
|
361
370
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
362
371
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
363
|
-
* @returns {Promise<
|
|
372
|
+
* @returns {Promise<Object>} - Success response
|
|
364
373
|
* @name deletePathRedirectionRules
|
|
365
374
|
* @summary: Delete path redirection rule
|
|
366
375
|
* @description: Remove specific path redirection rules. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deletePathRedirectionRules/).
|
|
367
376
|
*/
|
|
368
|
-
deletePathRedirectionRules({ pathId, requestHeaders }?: ContentPlatformApplicationValidator.DeletePathRedirectionRulesParam, { responseHeaders }?: object): Promise<
|
|
377
|
+
deletePathRedirectionRules({ pathId, requestHeaders }?: ContentPlatformApplicationValidator.DeletePathRedirectionRulesParam, { responseHeaders }?: object): Promise<any>;
|
|
369
378
|
/**
|
|
370
379
|
* @param {ContentPlatformApplicationValidator.DeleteSEOMarkupSchemaParam} arg
|
|
371
380
|
* - Arg object
|
|
@@ -377,7 +386,7 @@ declare class Content {
|
|
|
377
386
|
* @summary: Delete SEO Markup Schema
|
|
378
387
|
* @description: Use this API to Delete SEO Markup Schema - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/deleteSEOMarkupSchema/).
|
|
379
388
|
*/
|
|
380
|
-
deleteSEOMarkupSchema({
|
|
389
|
+
deleteSEOMarkupSchema({ id, requestHeaders }?: ContentPlatformApplicationValidator.DeleteSEOMarkupSchemaParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>;
|
|
381
390
|
/**
|
|
382
391
|
* @param {ContentPlatformApplicationValidator.EditDataLoaderParam} arg - Arg object
|
|
383
392
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -398,7 +407,7 @@ declare class Content {
|
|
|
398
407
|
* @returns {Promise<ContentPlatformModel.TagsSchema>} - Success response
|
|
399
408
|
* @name editInjectableTag
|
|
400
409
|
* @summary: Update HTML tag
|
|
401
|
-
* @description: Modify an injectable tag - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/editInjectableTag/).
|
|
410
|
+
* @description: Modify settings for an injectable tag. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/editInjectableTag/).
|
|
402
411
|
*/
|
|
403
412
|
editInjectableTag({ tagId, body, requestHeaders }?: ContentPlatformApplicationValidator.EditInjectableTagParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TagsSchema>;
|
|
404
413
|
/**
|
|
@@ -409,12 +418,12 @@ declare class Content {
|
|
|
409
418
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
410
419
|
* @returns {Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>} - Success response
|
|
411
420
|
* @name editSEOMarkupSchema
|
|
412
|
-
* @summary:
|
|
413
|
-
* @description: Use this API to
|
|
421
|
+
* @summary: Get SEO Markup Schema
|
|
422
|
+
* @description: Use this API to Get SEO Markup Schema - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/editSEOMarkupSchema/).
|
|
414
423
|
*/
|
|
415
|
-
editSEOMarkupSchema({
|
|
424
|
+
editSEOMarkupSchema({ id, body, requestHeaders }?: ContentPlatformApplicationValidator.EditSEOMarkupSchemaParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>;
|
|
416
425
|
/**
|
|
417
|
-
* @param {ContentPlatformApplicationValidator.
|
|
426
|
+
* @param {ContentPlatformApplicationValidator.ExportAppCustomObjectEntriesBySlugParam} arg
|
|
418
427
|
* - Arg object
|
|
419
428
|
*
|
|
420
429
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -422,11 +431,11 @@ declare class Content {
|
|
|
422
431
|
* @returns {Promise<ContentPlatformModel.CustomObjectBulkEntryInitiateDownload>}
|
|
423
432
|
* - Success response
|
|
424
433
|
*
|
|
425
|
-
* @name
|
|
434
|
+
* @name exportAppCustomObjectEntriesBySlug
|
|
426
435
|
* @summary: Initiate download for bulk custom object entries
|
|
427
|
-
* @description: Custom object bulk export of bulk entries can be perform using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/
|
|
436
|
+
* @description: Custom object bulk export of bulk entries can be perform using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/exportAppCustomObjectEntriesBySlug/).
|
|
428
437
|
*/
|
|
429
|
-
|
|
438
|
+
exportAppCustomObjectEntriesBySlug({ slug, requestHeaders }?: ContentPlatformApplicationValidator.ExportAppCustomObjectEntriesBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectBulkEntryInitiateDownload>;
|
|
430
439
|
/**
|
|
431
440
|
* @param {ContentPlatformApplicationValidator.GenerateSEOTitleParam} arg - Arg object
|
|
432
441
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -463,45 +472,45 @@ declare class Content {
|
|
|
463
472
|
*/
|
|
464
473
|
getAnnouncementsList({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetAnnouncementsListParam, { responseHeaders }?: object): Promise<ContentPlatformModel.GetAnnouncementListSchema>;
|
|
465
474
|
/**
|
|
466
|
-
* @param {ContentPlatformApplicationValidator.
|
|
475
|
+
* @param {ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionByResourceParam} arg
|
|
467
476
|
* - Arg object
|
|
468
477
|
*
|
|
469
478
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
470
479
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
471
|
-
* @returns {Promise<ContentPlatformModel.
|
|
472
|
-
*
|
|
473
|
-
*
|
|
474
|
-
* @
|
|
475
|
-
* @
|
|
476
|
-
* @description: Use this API to retrieve the definitions of custom fields using definition_id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldDefinition/).
|
|
480
|
+
* @returns {Promise<ContentPlatformModel.CustomFieldDefinitionsSchema>} -
|
|
481
|
+
* Success response
|
|
482
|
+
* @name getAppCustomFieldDefinitionByResource
|
|
483
|
+
* @summary: Get custom fields definitions for a given resource type
|
|
484
|
+
* @description: Custom field definitions enable you to include data validation for custom fields, and enable sellers to add custom fields values for resources. With the help of this seller can retrive list of custom field definitions list. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldDefinitionByResource/).
|
|
477
485
|
*/
|
|
478
|
-
|
|
486
|
+
getAppCustomFieldDefinitionByResource({ pageNo, pageSize, resource, types, search, slugs, namespaces, requestHeaders, }?: ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionByResourceParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionsSchema>;
|
|
479
487
|
/**
|
|
480
|
-
* @param {ContentPlatformApplicationValidator.
|
|
488
|
+
* @param {ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionBySlugParam} arg
|
|
481
489
|
* - Arg object
|
|
482
490
|
*
|
|
483
491
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
484
492
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
485
|
-
* @returns {Promise<ContentPlatformModel.
|
|
493
|
+
* @returns {Promise<ContentPlatformModel.MetaFieldDefinitionDetailResSchema>}
|
|
486
494
|
* - Success response
|
|
487
495
|
*
|
|
488
|
-
* @name
|
|
489
|
-
* @summary: Get custom fields
|
|
490
|
-
* @description: Custom field definitions
|
|
496
|
+
* @name getAppCustomFieldDefinitionBySlug
|
|
497
|
+
* @summary: Get custom fields definition by resource, slug and namespace
|
|
498
|
+
* @description: Custom field definitions can be retrived from this using its slug, namespace and resource - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldDefinitionBySlug/).
|
|
491
499
|
*/
|
|
492
|
-
|
|
500
|
+
getAppCustomFieldDefinitionBySlug({ slug, resource, namespace, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.MetaFieldDefinitionDetailResSchema>;
|
|
493
501
|
/**
|
|
494
|
-
* @param {ContentPlatformApplicationValidator.
|
|
502
|
+
* @param {ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionsParam} arg
|
|
495
503
|
* - Arg object
|
|
496
504
|
*
|
|
497
505
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
498
506
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
499
|
-
* @returns {Promise<ContentPlatformModel.
|
|
500
|
-
*
|
|
501
|
-
* @
|
|
502
|
-
* @
|
|
507
|
+
* @returns {Promise<ContentPlatformModel.CustomFieldDefinitionsSchema>} -
|
|
508
|
+
* Success response
|
|
509
|
+
* @name getAppCustomFieldDefinitions
|
|
510
|
+
* @summary: Get custom fields definitions
|
|
511
|
+
* @description: Custom field definitions enable you to include data validation for custom fields, and enable sellers to add custom fields values for resources. With the help of this seller can retrive list of custom field definitions list. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldDefinitions/).
|
|
503
512
|
*/
|
|
504
|
-
|
|
513
|
+
getAppCustomFieldDefinitions({ pageNo, pageSize, resources, types, search, slugs, namespaces, requestHeaders, }?: ContentPlatformApplicationValidator.GetAppCustomFieldDefinitionsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionsSchema>;
|
|
505
514
|
/**
|
|
506
515
|
* @param {ContentPlatformApplicationValidator.GetAppCustomFieldTypesParam} arg
|
|
507
516
|
* - Arg object
|
|
@@ -515,20 +524,7 @@ declare class Content {
|
|
|
515
524
|
*/
|
|
516
525
|
getAppCustomFieldTypes({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.MetafieldTypesSchema>;
|
|
517
526
|
/**
|
|
518
|
-
* @param {ContentPlatformApplicationValidator.
|
|
519
|
-
* - Arg object
|
|
520
|
-
*
|
|
521
|
-
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
522
|
-
* @param {import("../PlatformAPIClient").Options} - Options
|
|
523
|
-
* @returns {Promise<ContentPlatformModel.CustomFieldsResponseSchema>} -
|
|
524
|
-
* Success response
|
|
525
|
-
* @name getAppCustomFields
|
|
526
|
-
* @summary: Get list of custom fields of gives resource
|
|
527
|
-
* @description: Retrieves a list of custom fields attached to a particular resource by using the resource. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFields/).
|
|
528
|
-
*/
|
|
529
|
-
getAppCustomFields({ resource, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsResponseSchema>;
|
|
530
|
-
/**
|
|
531
|
-
* @param {ContentPlatformApplicationValidator.GetAppCustomFieldsByResourceIdParam} arg
|
|
527
|
+
* @param {ContentPlatformApplicationValidator.GetAppCustomFieldsByResourceSlugParam} arg
|
|
532
528
|
* - Arg object
|
|
533
529
|
*
|
|
534
530
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -536,36 +532,38 @@ declare class Content {
|
|
|
536
532
|
* @returns {Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>}
|
|
537
533
|
* - Success response
|
|
538
534
|
*
|
|
539
|
-
* @name
|
|
540
|
-
* @summary: Get list of custom fields of given resource and resource
|
|
541
|
-
* @description: Retrieves a list of custom fields attached to a particular resource by using the resource and resource
|
|
535
|
+
* @name getAppCustomFieldsByResourceSlug
|
|
536
|
+
* @summary: Get list of custom fields of given resource and resource slug
|
|
537
|
+
* @description: Retrieves a list of custom fields attached to a particular resource by using the resource and resource slug. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomFieldsByResourceSlug/).
|
|
542
538
|
*/
|
|
543
|
-
|
|
539
|
+
getAppCustomFieldsByResourceSlug({ resource, resourceSlug, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomFieldsByResourceSlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>;
|
|
544
540
|
/**
|
|
545
|
-
* @param {ContentPlatformApplicationValidator.
|
|
541
|
+
* @param {ContentPlatformApplicationValidator.GetAppCustomObjectBySlugParam} arg
|
|
546
542
|
* - Arg object
|
|
547
543
|
*
|
|
548
544
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
549
545
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
550
|
-
* @returns {Promise<ContentPlatformModel.
|
|
551
|
-
*
|
|
546
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectBySlugSchema>} -
|
|
547
|
+
* Success response
|
|
548
|
+
* @name getAppCustomObjectBySlug
|
|
552
549
|
* @summary: Get custom object details
|
|
553
|
-
* @description: Details of custom
|
|
550
|
+
* @description: Details of a custom object entry can be obtained using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomObjectBySlug/).
|
|
554
551
|
*/
|
|
555
|
-
|
|
552
|
+
getAppCustomObjectBySlug({ definitionSlug, slug, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectBySlugSchema>;
|
|
556
553
|
/**
|
|
557
|
-
* @param {ContentPlatformApplicationValidator.
|
|
554
|
+
* @param {ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionBySlugParam} arg
|
|
558
555
|
* - Arg object
|
|
559
556
|
*
|
|
560
557
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
561
558
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
562
|
-
* @returns {Promise<ContentPlatformModel.
|
|
563
|
-
* Success response
|
|
564
|
-
*
|
|
559
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>}
|
|
560
|
+
* - Success response
|
|
561
|
+
*
|
|
562
|
+
* @name getAppCustomObjectDefinitionBySlug
|
|
565
563
|
* @summary: Get custom object definition
|
|
566
|
-
* @description: Custom object definitions can be fetched using their definition
|
|
564
|
+
* @description: Custom object definitions can be fetched using their custom object definition slug. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomObjectDefinitionBySlug/).
|
|
567
565
|
*/
|
|
568
|
-
|
|
566
|
+
getAppCustomObjectDefinitionBySlug({ slug, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>;
|
|
569
567
|
/**
|
|
570
568
|
* @param {ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionsParam} arg
|
|
571
569
|
* - Arg object
|
|
@@ -580,17 +578,17 @@ declare class Content {
|
|
|
580
578
|
*/
|
|
581
579
|
getAppCustomObjectDefinitions({ pageNo, pageSize, search, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectDefinitionsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionsSchema>;
|
|
582
580
|
/**
|
|
583
|
-
* @param {ContentPlatformApplicationValidator.
|
|
581
|
+
* @param {ContentPlatformApplicationValidator.GetAppCustomObjectsBySlugParam} arg
|
|
584
582
|
* - Arg object
|
|
585
583
|
*
|
|
586
584
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
587
585
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
588
586
|
* @returns {Promise<ContentPlatformModel.CustomObjectsSchema>} - Success response
|
|
589
|
-
* @name
|
|
587
|
+
* @name getAppCustomObjectsBySlug
|
|
590
588
|
* @summary: Get list of custom objects
|
|
591
|
-
* @description: Custom object entries can fetch using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/
|
|
589
|
+
* @description: Custom object entries can fetch using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getAppCustomObjectsBySlug/).
|
|
592
590
|
*/
|
|
593
|
-
|
|
591
|
+
getAppCustomObjectsBySlug({ pageNo, pageSize, definitionSlug, requestHeaders }?: ContentPlatformApplicationValidator.GetAppCustomObjectsBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectsSchema>;
|
|
594
592
|
/**
|
|
595
593
|
* @param {ContentPlatformApplicationValidator.GetAppJobsParam} arg - Arg object
|
|
596
594
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -612,48 +610,49 @@ declare class Content {
|
|
|
612
610
|
*/
|
|
613
611
|
getAppResources({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.ResourcesSchema>;
|
|
614
612
|
/**
|
|
615
|
-
* @param {ContentPlatformApplicationValidator.
|
|
613
|
+
* @param {ContentPlatformApplicationValidator.GetApplicationLanguagesParam} arg
|
|
614
|
+
* - Arg object
|
|
615
|
+
*
|
|
616
616
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
617
617
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
618
|
-
* @returns {Promise<
|
|
619
|
-
* @name
|
|
620
|
-
* @summary: Get
|
|
621
|
-
* @description:
|
|
618
|
+
* @returns {Promise<Object>} - Success response
|
|
619
|
+
* @name getApplicationLanguages
|
|
620
|
+
* @summary: Get app languages
|
|
621
|
+
* @description: Fetch all languages configured for the specified application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getApplicationLanguages/).
|
|
622
622
|
*/
|
|
623
|
-
|
|
623
|
+
getApplicationLanguages({ requestHeaders }?: any, { responseHeaders }?: object): Promise<any>;
|
|
624
624
|
/**
|
|
625
|
-
* @param {ContentPlatformApplicationValidator.
|
|
625
|
+
* @param {ContentPlatformApplicationValidator.GetApplicationResourceTranslationsParam} arg
|
|
626
|
+
* - Arg object
|
|
627
|
+
*
|
|
626
628
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
627
629
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
628
|
-
* @returns {Promise<
|
|
629
|
-
* @name
|
|
630
|
-
* @summary:
|
|
631
|
-
* @description:
|
|
630
|
+
* @returns {Promise<Object>} - Success response
|
|
631
|
+
* @name getApplicationResourceTranslations
|
|
632
|
+
* @summary: Get app translations
|
|
633
|
+
* @description: Fetch translations for application-level resources. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getApplicationResourceTranslations/).
|
|
632
634
|
*/
|
|
633
|
-
|
|
635
|
+
getApplicationResourceTranslations({ locale, type, resourceId, requestHeaders }?: ContentPlatformApplicationValidator.GetApplicationResourceTranslationsParam, { responseHeaders }?: object): Promise<any>;
|
|
634
636
|
/**
|
|
635
|
-
* @param {ContentPlatformApplicationValidator.
|
|
637
|
+
* @param {ContentPlatformApplicationValidator.GetBlogBySlugParam} arg - Arg object
|
|
636
638
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
637
639
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
638
640
|
* @returns {Promise<ContentPlatformModel.BlogSchema>} - Success response
|
|
639
|
-
* @name
|
|
640
|
-
* @summary: Get
|
|
641
|
-
* @description: Retrieve detailed information about a specific
|
|
641
|
+
* @name getBlogBySlug
|
|
642
|
+
* @summary: Get blog by slug
|
|
643
|
+
* @description: Retrieve detailed information about a specific blog using its slug. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getBlogBySlug/).
|
|
642
644
|
*/
|
|
643
|
-
|
|
645
|
+
getBlogBySlug({ slug, requestHeaders }?: ContentPlatformApplicationValidator.GetBlogBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.BlogSchema>;
|
|
644
646
|
/**
|
|
645
|
-
* @param {ContentPlatformApplicationValidator.
|
|
646
|
-
* - Arg object
|
|
647
|
-
*
|
|
647
|
+
* @param {ContentPlatformApplicationValidator.GetBlogsParam} arg - Arg object
|
|
648
648
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
649
649
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
650
|
-
* @returns {Promise<ContentPlatformModel.
|
|
651
|
-
*
|
|
652
|
-
* @
|
|
653
|
-
* @
|
|
654
|
-
* @description: Retrieve a list of data loaders api specs. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getDataLoaderApiSpecs/).
|
|
650
|
+
* @returns {Promise<ContentPlatformModel.BlogGetDetails>} - Success response
|
|
651
|
+
* @name getBlogs
|
|
652
|
+
* @summary: List blogs
|
|
653
|
+
* @description: List all blogs - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getBlogs/).
|
|
655
654
|
*/
|
|
656
|
-
|
|
655
|
+
getBlogs({ pageNo, pageSize, tags, q, slug, title, status, requestHeaders }?: ContentPlatformApplicationValidator.GetBlogsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.BlogGetDetails>;
|
|
657
656
|
/**
|
|
658
657
|
* @param {ContentPlatformApplicationValidator.GetDataLoadersParam} arg - Arg object
|
|
659
658
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -670,26 +669,26 @@ declare class Content {
|
|
|
670
669
|
*
|
|
671
670
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
672
671
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
673
|
-
* @returns {Promise<ContentPlatformModel.
|
|
672
|
+
* @returns {Promise<ContentPlatformModel.DataLoaderResponseSchema>} -
|
|
674
673
|
* Success response
|
|
675
674
|
* @name getDataLoadersByService
|
|
676
675
|
* @summary: List all data loaders
|
|
677
676
|
* @description: Use this to get all data loaders of an application by service name - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getDataLoadersByService/).
|
|
678
677
|
*/
|
|
679
|
-
getDataLoadersByService({ serviceName, requestHeaders }?: ContentPlatformApplicationValidator.GetDataLoadersByServiceParam, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
678
|
+
getDataLoadersByService({ serviceName, requestHeaders }?: ContentPlatformApplicationValidator.GetDataLoadersByServiceParam, { responseHeaders }?: object): Promise<ContentPlatformModel.DataLoaderResponseSchema>;
|
|
680
679
|
/**
|
|
681
680
|
* @param {ContentPlatformApplicationValidator.GetDefaultNavigationsParam} arg
|
|
682
681
|
* - Arg object
|
|
683
682
|
*
|
|
684
683
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
685
684
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
686
|
-
* @returns {Promise<ContentPlatformModel.
|
|
685
|
+
* @returns {Promise<ContentPlatformModel.DefaultNavigationDetails>} -
|
|
687
686
|
* Success response
|
|
688
687
|
* @name getDefaultNavigations
|
|
689
688
|
* @summary: Get default navigations
|
|
690
689
|
* @description: Retrieve default navigation elements. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getDefaultNavigations/).
|
|
691
690
|
*/
|
|
692
|
-
getDefaultNavigations({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
691
|
+
getDefaultNavigations({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.DefaultNavigationDetails>;
|
|
693
692
|
/**
|
|
694
693
|
* @param {ContentPlatformApplicationValidator.GetDefaultSEOMarkupSchemaParam} arg
|
|
695
694
|
* - Arg object
|
|
@@ -755,20 +754,20 @@ declare class Content {
|
|
|
755
754
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
756
755
|
* @returns {Promise<ContentPlatformModel.TagsSchema>} - Success response
|
|
757
756
|
* @name getInjectableTags
|
|
758
|
-
* @summary: Get all
|
|
759
|
-
* @description:
|
|
757
|
+
* @summary: Get all HTML tags
|
|
758
|
+
* @description: Retrieve a list of injectable tags. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getInjectableTags/).
|
|
760
759
|
*/
|
|
761
|
-
getInjectableTags({ requestHeaders }?:
|
|
760
|
+
getInjectableTags({ all, requestHeaders }?: ContentPlatformApplicationValidator.GetInjectableTagsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TagsSchema>;
|
|
762
761
|
/**
|
|
763
762
|
* @param {ContentPlatformApplicationValidator.GetLandingPagesParam} arg - Arg object
|
|
764
763
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
765
764
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
766
|
-
* @returns {Promise<ContentPlatformModel.
|
|
765
|
+
* @returns {Promise<ContentPlatformModel.LandingPageGetDetails>} - Success response
|
|
767
766
|
* @name getLandingPages
|
|
768
767
|
* @summary: Get landing pages
|
|
769
768
|
* @description: Lists a list landing pages as per device types - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getLandingPages/).
|
|
770
769
|
*/
|
|
771
|
-
getLandingPages({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetLandingPagesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
770
|
+
getLandingPages({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetLandingPagesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.LandingPageGetDetails>;
|
|
772
771
|
/**
|
|
773
772
|
* @param {ContentPlatformApplicationValidator.GetLegalInformationParam} arg
|
|
774
773
|
* - Arg object
|
|
@@ -797,12 +796,12 @@ declare class Content {
|
|
|
797
796
|
* @param {ContentPlatformApplicationValidator.GetNavigationsParam} arg - Arg object
|
|
798
797
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
799
798
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
800
|
-
* @returns {Promise<ContentPlatformModel.
|
|
799
|
+
* @returns {Promise<ContentPlatformModel.NavigationGetDetails>} - Success response
|
|
801
800
|
* @name getNavigations
|
|
802
801
|
* @summary: Get navigation items
|
|
803
802
|
* @description: Retrieve a list of navigational elements. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getNavigations/).
|
|
804
803
|
*/
|
|
805
|
-
getNavigations({ devicePlatform, pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetNavigationsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
804
|
+
getNavigations({ devicePlatform, pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetNavigationsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.NavigationGetDetails>;
|
|
806
805
|
/**
|
|
807
806
|
* @param {ContentPlatformApplicationValidator.GetPageBySlugParam} arg - Arg object
|
|
808
807
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -810,7 +809,7 @@ declare class Content {
|
|
|
810
809
|
* @returns {Promise<ContentPlatformModel.PageSchema>} - Success response
|
|
811
810
|
* @name getPageBySlug
|
|
812
811
|
* @summary: Get page by slug
|
|
813
|
-
* @description: Get detailed information about a specific page using its slug - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getPageBySlug/).
|
|
812
|
+
* @description: Get detailed information about a specific page using its slug. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getPageBySlug/).
|
|
814
813
|
*/
|
|
815
814
|
getPageBySlug({ slug, requestHeaders }?: ContentPlatformApplicationValidator.GetPageBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PageSchema>;
|
|
816
815
|
/**
|
|
@@ -837,53 +836,36 @@ declare class Content {
|
|
|
837
836
|
* @param {ContentPlatformApplicationValidator.GetPagesParam} arg - Arg object
|
|
838
837
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
839
838
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
840
|
-
* @returns {Promise<ContentPlatformModel.
|
|
839
|
+
* @returns {Promise<ContentPlatformModel.PageGetDetails>} - Success response
|
|
841
840
|
* @name getPages
|
|
842
|
-
* @summary: Get pages
|
|
841
|
+
* @summary: Get pages
|
|
843
842
|
* @description: Retrieve a list of available pages. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getPages/).
|
|
844
843
|
*/
|
|
845
|
-
getPages({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetPagesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
846
|
-
/**
|
|
847
|
-
* @param {Object} arg - Arg object.
|
|
848
|
-
* @param {string} arg.companyId - Numeric ID allotted to a business account
|
|
849
|
-
* on Fynd Platform
|
|
850
|
-
* @param {string} arg.applicationId - Numeric ID allotted to an application
|
|
851
|
-
* created within a business account.
|
|
852
|
-
* @param {number} [arg.pageSize] - The number of items to retrieve in each
|
|
853
|
-
* page. Default value is 10.
|
|
854
|
-
* @returns {Paginator<ContentPlatformModel.PageGetResponse>}
|
|
855
|
-
* @summary: Get pages.
|
|
856
|
-
* @description: Retrieve a list of available pages.
|
|
857
|
-
*/
|
|
858
|
-
getPagesPaginator({ companyId, applicationId, pageSize }?: {
|
|
859
|
-
companyId: string;
|
|
860
|
-
applicationId: string;
|
|
861
|
-
pageSize?: number;
|
|
862
|
-
}): Paginator<ContentPlatformModel.PageGetResponse>;
|
|
844
|
+
getPages({ pageNo, pageSize, requestHeaders }?: ContentPlatformApplicationValidator.GetPagesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PageGetDetails>;
|
|
863
845
|
/**
|
|
864
846
|
* @param {ContentPlatformApplicationValidator.GetPathRedirectionRuleParam} arg
|
|
865
847
|
* - Arg object
|
|
866
848
|
*
|
|
867
849
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
868
850
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
869
|
-
* @returns {Promise<ContentPlatformModel.
|
|
851
|
+
* @returns {Promise<ContentPlatformModel.PathMappingSchema>} - Success response
|
|
870
852
|
* @name getPathRedirectionRule
|
|
871
853
|
* @summary: Get Path Redirection Rule
|
|
872
854
|
* @description: Use this API to Get detailed information about a specific path redirection rule - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getPathRedirectionRule/).
|
|
873
855
|
*/
|
|
874
|
-
getPathRedirectionRule({ pathId, requestHeaders }?: ContentPlatformApplicationValidator.GetPathRedirectionRuleParam, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
856
|
+
getPathRedirectionRule({ pathId, requestHeaders }?: ContentPlatformApplicationValidator.GetPathRedirectionRuleParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PathMappingSchema>;
|
|
875
857
|
/**
|
|
876
858
|
* @param {ContentPlatformApplicationValidator.GetPathRedirectionRulesParam} arg
|
|
877
859
|
* - Arg object
|
|
878
860
|
*
|
|
879
861
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
880
862
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
881
|
-
* @returns {Promise<ContentPlatformModel.
|
|
863
|
+
* @returns {Promise<ContentPlatformModel.PathMappingSchema>} - Success response
|
|
882
864
|
* @name getPathRedirectionRules
|
|
883
865
|
* @summary: List Path Redirection Rules
|
|
884
866
|
* @description: Use this API to List Path Redirection Rules - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getPathRedirectionRules/).
|
|
885
867
|
*/
|
|
886
|
-
getPathRedirectionRules({ pageSize, pageNo, requestHeaders }?: ContentPlatformApplicationValidator.GetPathRedirectionRulesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
868
|
+
getPathRedirectionRules({ pageSize, pageNo, requestHeaders }?: ContentPlatformApplicationValidator.GetPathRedirectionRulesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PathMappingSchema>;
|
|
887
869
|
/**
|
|
888
870
|
* @param {ContentPlatformApplicationValidator.GetSEOConfigurationParam} arg
|
|
889
871
|
* - Arg object
|
|
@@ -907,7 +889,7 @@ declare class Content {
|
|
|
907
889
|
* @summary: Get SEO Markup Schema
|
|
908
890
|
* @description: Use this API to Get SEO Markup Schema - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getSEOMarkupSchema/).
|
|
909
891
|
*/
|
|
910
|
-
getSEOMarkupSchema({
|
|
892
|
+
getSEOMarkupSchema({ id, requestHeaders }?: ContentPlatformApplicationValidator.GetSEOMarkupSchemaParam, { responseHeaders }?: object): Promise<ContentPlatformModel.SEOSchemaMarkupTemplate>;
|
|
911
893
|
/**
|
|
912
894
|
* @param {ContentPlatformApplicationValidator.GetSEOMarkupSchemasParam} arg
|
|
913
895
|
* - Arg object
|
|
@@ -933,32 +915,55 @@ declare class Content {
|
|
|
933
915
|
*/
|
|
934
916
|
getSupportInformation({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ContentPlatformModel.Support>;
|
|
935
917
|
/**
|
|
936
|
-
* @param {ContentPlatformApplicationValidator.
|
|
918
|
+
* @param {ContentPlatformApplicationValidator.GetTranslateUILabelsParam} arg
|
|
919
|
+
* - Arg object
|
|
920
|
+
*
|
|
921
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
922
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
923
|
+
* @returns {Promise<ContentPlatformModel.TranslateUiLabelsPage>} - Success response
|
|
924
|
+
* @name getTranslateUILabels
|
|
925
|
+
* @summary: Get Translate Ui Labels
|
|
926
|
+
* @description: Retrieves Translate Ui Labels with optional filtering by type, application, and company identifiers. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getTranslateUILabels/).
|
|
927
|
+
*/
|
|
928
|
+
getTranslateUILabels({ templateThemeId, themeId, locale, type, requestHeaders }?: ContentPlatformApplicationValidator.GetTranslateUILabelsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TranslateUiLabelsPage>;
|
|
929
|
+
/**
|
|
930
|
+
* @param {ContentPlatformApplicationValidator.GetTranslateUILabelsByIdParam} arg
|
|
931
|
+
* - Arg object
|
|
932
|
+
*
|
|
933
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
934
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
935
|
+
* @returns {Promise<ContentPlatformModel.TranslateUiLabels>} - Success response
|
|
936
|
+
* @name getTranslateUILabelsById
|
|
937
|
+
* @summary: Get Resource Detail
|
|
938
|
+
* @description: Fetches detailed information for a specific Translate Ui Labels using its unique identifier. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/getTranslateUILabelsById/).
|
|
939
|
+
*/
|
|
940
|
+
getTranslateUILabelsById({ id, requestHeaders }?: ContentPlatformApplicationValidator.GetTranslateUILabelsByIdParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TranslateUiLabels>;
|
|
941
|
+
/**
|
|
942
|
+
* @param {ContentPlatformApplicationValidator.ImportAppCustomObjectEntriesBySlugParam} arg
|
|
937
943
|
* - Arg object
|
|
938
944
|
*
|
|
939
945
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
940
946
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
941
|
-
* @returns {Promise<ContentPlatformModel.
|
|
947
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectEntryBulkUploadDetails>}
|
|
942
948
|
* - Success response
|
|
943
949
|
*
|
|
944
|
-
* @name
|
|
950
|
+
* @name importAppCustomObjectEntriesBySlug
|
|
945
951
|
* @summary: Bulk custom object entries upload
|
|
946
|
-
* @description: Custom object bulk import of bulk entries can be performed using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/
|
|
952
|
+
* @description: Custom object bulk import of bulk entries can be performed using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/importAppCustomObjectEntriesBySlug/).
|
|
947
953
|
*/
|
|
948
|
-
|
|
954
|
+
importAppCustomObjectEntriesBySlug({ slug, body, requestHeaders }?: ContentPlatformApplicationValidator.ImportAppCustomObjectEntriesBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectEntryBulkUploadDetails>;
|
|
949
955
|
/**
|
|
950
956
|
* @param {ContentPlatformApplicationValidator.RemoveInjectableTagParam} arg
|
|
951
957
|
* - Arg object
|
|
952
958
|
*
|
|
953
959
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
954
960
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
955
|
-
* @returns {Promise<ContentPlatformModel.
|
|
956
|
-
* Success response
|
|
961
|
+
* @returns {Promise<ContentPlatformModel.TagDeleteSuccessDetails>} - Success response
|
|
957
962
|
* @name removeInjectableTag
|
|
958
963
|
* @summary: Remove HTML tag
|
|
959
964
|
* @description: Delete a specific injectable tag. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/removeInjectableTag/).
|
|
960
965
|
*/
|
|
961
|
-
removeInjectableTag({ body, requestHeaders }?: ContentPlatformApplicationValidator.RemoveInjectableTagParam, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
966
|
+
removeInjectableTag({ body, requestHeaders }?: ContentPlatformApplicationValidator.RemoveInjectableTagParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TagDeleteSuccessDetails>;
|
|
962
967
|
/**
|
|
963
968
|
* @param {ContentPlatformApplicationValidator.ResetDataLoaderParam} arg - Arg object
|
|
964
969
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -971,17 +976,17 @@ declare class Content {
|
|
|
971
976
|
*/
|
|
972
977
|
resetDataLoader({ service, operationId, requestHeaders }?: ContentPlatformApplicationValidator.ResetDataLoaderParam, { responseHeaders }?: object): Promise<ContentPlatformModel.DataLoaderResetResponseSchema>;
|
|
973
978
|
/**
|
|
974
|
-
* @param {ContentPlatformApplicationValidator.
|
|
979
|
+
* @param {ContentPlatformApplicationValidator.SampleAppCustomObjectBulkEntryBySlugParam} arg
|
|
975
980
|
* - Arg object
|
|
976
981
|
*
|
|
977
982
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
978
983
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
979
984
|
* @returns {Promise<string>} - Success response
|
|
980
|
-
* @name
|
|
985
|
+
* @name sampleAppCustomObjectBulkEntryBySlug
|
|
981
986
|
* @summary: Download sample for custom object bulk entry
|
|
982
|
-
* @description: Sample files for custom object bulk import can be obtained from this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/
|
|
987
|
+
* @description: Sample files for custom object bulk import can be obtained from this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/sampleAppCustomObjectBulkEntryBySlug/).
|
|
983
988
|
*/
|
|
984
|
-
|
|
989
|
+
sampleAppCustomObjectBulkEntryBySlug({ slug, requestHeaders }?: ContentPlatformApplicationValidator.SampleAppCustomObjectBulkEntryBySlugParam, { responseHeaders }?: object): Promise<string>;
|
|
985
990
|
/**
|
|
986
991
|
* @param {ContentPlatformApplicationValidator.SelectDataLoaderParam} arg - Arg object
|
|
987
992
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -1020,7 +1025,7 @@ declare class Content {
|
|
|
1020
1025
|
*/
|
|
1021
1026
|
updateAnnouncementSchedule({ announcementId, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAnnouncementScheduleParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CreateAnnouncementSchema>;
|
|
1022
1027
|
/**
|
|
1023
|
-
* @param {ContentPlatformApplicationValidator.
|
|
1028
|
+
* @param {ContentPlatformApplicationValidator.UpdateAppCustomFieldByResourceSlugParam} arg
|
|
1024
1029
|
* - Arg object
|
|
1025
1030
|
*
|
|
1026
1031
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -1028,13 +1033,13 @@ declare class Content {
|
|
|
1028
1033
|
* @returns {Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>}
|
|
1029
1034
|
* - Success response
|
|
1030
1035
|
*
|
|
1031
|
-
* @name
|
|
1032
|
-
* @summary: Create custom field entries for gives resource and
|
|
1033
|
-
* @description:
|
|
1036
|
+
* @name updateAppCustomFieldByResourceSlug
|
|
1037
|
+
* @summary: Create custom field entries for gives resource and resource slug
|
|
1038
|
+
* @description: You can add a custom field using this endpoint to any resource by providing the resource slug. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomFieldByResourceSlug/).
|
|
1034
1039
|
*/
|
|
1035
|
-
|
|
1040
|
+
updateAppCustomFieldByResourceSlug({ resource, resourceSlug, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomFieldByResourceSlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldsResponseByResourceIdSchema>;
|
|
1036
1041
|
/**
|
|
1037
|
-
* @param {ContentPlatformApplicationValidator.
|
|
1042
|
+
* @param {ContentPlatformApplicationValidator.UpdateAppCustomFieldDefinitionBySlugParam} arg
|
|
1038
1043
|
* - Arg object
|
|
1039
1044
|
*
|
|
1040
1045
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -1042,37 +1047,62 @@ declare class Content {
|
|
|
1042
1047
|
* @returns {Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>}
|
|
1043
1048
|
* - Success response
|
|
1044
1049
|
*
|
|
1045
|
-
* @name
|
|
1050
|
+
* @name updateAppCustomFieldDefinitionBySlug
|
|
1046
1051
|
* @summary: Update custom field definition
|
|
1047
|
-
* @description: Custom fields definition can be update using this api, You can update custom field definition name and description. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/
|
|
1052
|
+
* @description: Custom fields definition can be update using this api, You can update custom field definition name and description. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomFieldDefinitionBySlug/).
|
|
1048
1053
|
*/
|
|
1049
|
-
|
|
1054
|
+
updateAppCustomFieldDefinitionBySlug({ slug, resource, namespace, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomFieldDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomFieldDefinitionDetailResSchema>;
|
|
1050
1055
|
/**
|
|
1051
|
-
* @param {ContentPlatformApplicationValidator.
|
|
1056
|
+
* @param {ContentPlatformApplicationValidator.UpdateAppCustomObjectBySlugParam} arg
|
|
1052
1057
|
* - Arg object
|
|
1053
1058
|
*
|
|
1054
1059
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
1055
1060
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
1056
|
-
* @returns {Promise<ContentPlatformModel.
|
|
1061
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectBySlugSchema>} -
|
|
1057
1062
|
* Success response
|
|
1058
|
-
* @name
|
|
1063
|
+
* @name updateAppCustomObjectBySlug
|
|
1059
1064
|
* @summary: Update custom object details
|
|
1060
|
-
* @description: Custom object entries can be updated using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/
|
|
1065
|
+
* @description: Custom object entries can be updated using this endpoint. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomObjectBySlug/).
|
|
1061
1066
|
*/
|
|
1062
|
-
|
|
1067
|
+
updateAppCustomObjectBySlug({ definitionSlug, slug, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomObjectBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectBySlugSchema>;
|
|
1063
1068
|
/**
|
|
1064
|
-
* @param {ContentPlatformApplicationValidator.
|
|
1069
|
+
* @param {ContentPlatformApplicationValidator.UpdateAppCustomObjectDefinitionBySlugParam} arg
|
|
1065
1070
|
* - Arg object
|
|
1066
1071
|
*
|
|
1067
1072
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
1068
1073
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
1069
|
-
* @returns {Promise<ContentPlatformModel.
|
|
1070
|
-
* Success response
|
|
1071
|
-
*
|
|
1074
|
+
* @returns {Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>}
|
|
1075
|
+
* - Success response
|
|
1076
|
+
*
|
|
1077
|
+
* @name updateAppCustomObjectDefinitionBySlug
|
|
1072
1078
|
* @summary: Update custom object definition
|
|
1073
|
-
* @description:
|
|
1079
|
+
* @description: Custom object definitions can be updated using this endpoint. You can update the name and description of the custom object and add more custom field definitions to the existing custom object. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateAppCustomObjectDefinitionBySlug/).
|
|
1080
|
+
*/
|
|
1081
|
+
updateAppCustomObjectDefinitionBySlug({ slug, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateAppCustomObjectDefinitionBySlugParam, { responseHeaders }?: object): Promise<ContentPlatformModel.CustomObjectDefinitionSlugSchema>;
|
|
1082
|
+
/**
|
|
1083
|
+
* @param {ContentPlatformApplicationValidator.UpdateApplicationLanguageStatusParam} arg
|
|
1084
|
+
* - Arg object
|
|
1085
|
+
*
|
|
1086
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
1087
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
1088
|
+
* @returns {Promise<ContentPlatformModel.ApplicationLanguage>} - Success response
|
|
1089
|
+
* @name updateApplicationLanguageStatus
|
|
1090
|
+
* @summary: Set app language
|
|
1091
|
+
* @description: Update language status and settings for the application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateApplicationLanguageStatus/).
|
|
1074
1092
|
*/
|
|
1075
|
-
|
|
1093
|
+
updateApplicationLanguageStatus({ locale, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateApplicationLanguageStatusParam, { responseHeaders }?: object): Promise<ContentPlatformModel.ApplicationLanguage>;
|
|
1094
|
+
/**
|
|
1095
|
+
* @param {ContentPlatformApplicationValidator.UpdateApplicationResourceTranslationParam} arg
|
|
1096
|
+
* - Arg object
|
|
1097
|
+
*
|
|
1098
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
1099
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
1100
|
+
* @returns {Promise<ContentPlatformModel.ResourceTranslation>} - Success response
|
|
1101
|
+
* @name updateApplicationResourceTranslation
|
|
1102
|
+
* @summary: Update app translation
|
|
1103
|
+
* @description: Update existing translations for application resources. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateApplicationResourceTranslation/).
|
|
1104
|
+
*/
|
|
1105
|
+
updateApplicationResourceTranslation({ id, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateApplicationResourceTranslationParam, { responseHeaders }?: object): Promise<ContentPlatformModel.ResourceTranslation>;
|
|
1076
1106
|
/**
|
|
1077
1107
|
* @param {ContentPlatformApplicationValidator.UpdateBlogParam} arg - Arg object
|
|
1078
1108
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -1113,8 +1143,8 @@ declare class Content {
|
|
|
1113
1143
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
1114
1144
|
* @returns {Promise<ContentPlatformModel.TagsSchema>} - Success response
|
|
1115
1145
|
* @name updateInjectableTag
|
|
1116
|
-
* @summary: Update HTML
|
|
1117
|
-
* @description:
|
|
1146
|
+
* @summary: Update HTML tag
|
|
1147
|
+
* @description: Modify settings for an injectable tag. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateInjectableTag/).
|
|
1118
1148
|
*/
|
|
1119
1149
|
updateInjectableTag({ body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateInjectableTagParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TagsSchema>;
|
|
1120
1150
|
/**
|
|
@@ -1179,12 +1209,12 @@ declare class Content {
|
|
|
1179
1209
|
*
|
|
1180
1210
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
1181
1211
|
* @param {import("../PlatformAPIClient").Options} - Options
|
|
1182
|
-
* @returns {Promise<ContentPlatformModel.
|
|
1212
|
+
* @returns {Promise<ContentPlatformModel.PathMappingSchema>} - Success response
|
|
1183
1213
|
* @name updatePathRedirectionRules
|
|
1184
1214
|
* @summary: Update path redirection rule
|
|
1185
1215
|
* @description: Modify settings for path redirection rules. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updatePathRedirectionRules/).
|
|
1186
1216
|
*/
|
|
1187
|
-
updatePathRedirectionRules({ pathId, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdatePathRedirectionRulesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.
|
|
1217
|
+
updatePathRedirectionRules({ pathId, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdatePathRedirectionRulesParam, { responseHeaders }?: object): Promise<ContentPlatformModel.PathMappingSchema>;
|
|
1188
1218
|
/**
|
|
1189
1219
|
* @param {ContentPlatformApplicationValidator.UpdateSEOConfigurationParam} arg
|
|
1190
1220
|
* - Arg object
|
|
@@ -1209,7 +1239,31 @@ declare class Content {
|
|
|
1209
1239
|
* @description: Modify information related to customer support. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateSupportInformation/).
|
|
1210
1240
|
*/
|
|
1211
1241
|
updateSupportInformation({ body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateSupportInformationParam, { responseHeaders }?: object): Promise<ContentPlatformModel.Support>;
|
|
1242
|
+
/**
|
|
1243
|
+
* @param {ContentPlatformApplicationValidator.UpdateTranslateUILabelsParam} arg
|
|
1244
|
+
* - Arg object
|
|
1245
|
+
*
|
|
1246
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
1247
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
1248
|
+
* @returns {Promise<ContentPlatformModel.TranslateUiLabels>} - Success response
|
|
1249
|
+
* @name updateTranslateUILabels
|
|
1250
|
+
* @summary: Update Resource Detail
|
|
1251
|
+
* @description: Modifies existing Translate Ui Labels properties including locale, type, and associated configurations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/updateTranslateUILabels/).
|
|
1252
|
+
*/
|
|
1253
|
+
updateTranslateUILabels({ id, body, requestHeaders }?: ContentPlatformApplicationValidator.UpdateTranslateUILabelsParam, { responseHeaders }?: object): Promise<ContentPlatformModel.TranslateUiLabels>;
|
|
1254
|
+
/**
|
|
1255
|
+
* @param {ContentPlatformApplicationValidator.UpsertApplicationResourceTranslationInBulkParam} arg
|
|
1256
|
+
* - Arg object
|
|
1257
|
+
*
|
|
1258
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
1259
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
1260
|
+
* @returns {Promise<ContentPlatformModel.ResourceTranslationBulkUpsert>} -
|
|
1261
|
+
* Success response
|
|
1262
|
+
* @name upsertApplicationResourceTranslationInBulk
|
|
1263
|
+
* @summary: Bulk update translations
|
|
1264
|
+
* @description: Create or update multiple translations in a single request. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/content/upsertApplicationResourceTranslationInBulk/).
|
|
1265
|
+
*/
|
|
1266
|
+
upsertApplicationResourceTranslationInBulk({ body, requestHeaders }?: ContentPlatformApplicationValidator.UpsertApplicationResourceTranslationInBulkParam, { responseHeaders }?: object): Promise<ContentPlatformModel.ResourceTranslationBulkUpsert>;
|
|
1212
1267
|
}
|
|
1213
1268
|
import ContentPlatformApplicationValidator = require("./ContentPlatformApplicationValidator");
|
|
1214
1269
|
import ContentPlatformModel = require("./ContentPlatformModel");
|
|
1215
|
-
import Paginator = require("../../common/Paginator");
|