@gofynd/fdk-client-javascript 3.1.0-beta.1 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +2 -2
- package/sdk/application/ApplicationClient.d.ts +2 -0
- package/sdk/application/ApplicationClient.js +2 -0
- package/sdk/application/Cart/CartApplicationClient.d.ts +81 -101
- package/sdk/application/Cart/CartApplicationClient.js +173 -511
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +110 -110
- package/sdk/application/Catalog/CatalogApplicationClient.js +214 -447
- package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
- package/sdk/application/Common/CommonApplicationClient.js +4 -19
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +3 -43
- package/sdk/application/Communication/CommunicationApplicationClient.js +4 -214
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +41 -54
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +39 -192
- package/sdk/application/Content/ContentApplicationClient.d.ts +61 -61
- package/sdk/application/Content/ContentApplicationClient.js +183 -366
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +2 -2
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +11 -30
- package/sdk/application/Finance/FinanceApplicationClient.d.ts +29 -0
- package/sdk/application/Finance/FinanceApplicationClient.js +111 -0
- package/sdk/application/Lead/LeadApplicationClient.d.ts +6 -6
- package/sdk/application/Lead/LeadApplicationClient.js +24 -55
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +28 -117
- package/sdk/application/Logistic/LogisticApplicationClient.js +99 -492
- package/sdk/application/Order/OrderApplicationClient.d.ts +31 -51
- package/sdk/application/Order/OrderApplicationClient.js +89 -293
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +108 -218
- package/sdk/application/Payment/PaymentApplicationClient.js +100 -1081
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +14 -14
- package/sdk/application/Rewards/RewardsApplicationClient.js +13 -66
- package/sdk/application/Share/ShareApplicationClient.d.ts +11 -11
- package/sdk/application/Share/ShareApplicationClient.js +35 -89
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +5 -25
- package/sdk/application/Theme/ThemeApplicationClient.js +24 -150
- package/sdk/application/User/UserApplicationClient.d.ts +23 -13
- package/sdk/application/User/UserApplicationClient.js +49 -407
- package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
- package/sdk/application/Webhook/WebhookApplicationClient.js +4 -11
- package/sdk/common/Utility.d.ts +1 -1
- package/sdk/common/Utility.js +10 -7
- package/sdk/common/Validator.d.ts +1 -0
- package/sdk/common/Validator.js +20 -0
- package/sdk/common/utils.d.ts +0 -1
- package/sdk/common/utils.js +0 -14
- package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +10 -54
- package/sdk/partner/FileStorage/FileStoragePartnerClient.js +32 -364
- package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +54 -1
- package/sdk/partner/FileStorage/FileStoragePartnerModel.js +43 -0
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +1 -5
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +4 -35
- package/sdk/partner/Lead/LeadPartnerClient.d.ts +5 -5
- package/sdk/partner/Lead/LeadPartnerClient.js +4 -4
- package/sdk/partner/Lead/LeadPartnerModel.d.ts +52 -98
- package/sdk/partner/Lead/LeadPartnerModel.js +76 -100
- package/sdk/partner/Lead/LeadPartnerValidator.js +1 -1
- package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +172 -41
- package/sdk/partner/Logistics/LogisticsPartnerClient.js +1222 -85
- package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +1921 -297
- package/sdk/partner/Logistics/LogisticsPartnerModel.js +973 -258
- package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +13 -1
- package/sdk/partner/Logistics/LogisticsPartnerValidator.js +148 -16
- package/sdk/partner/PartnerClient.d.ts +0 -6
- package/sdk/partner/PartnerClient.js +0 -9
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +21 -63
- package/sdk/partner/Theme/ThemePartnerClient.js +67 -392
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +72 -104
- package/sdk/partner/Theme/ThemePartnerModel.js +75 -101
- package/sdk/partner/Theme/ThemePartnerValidator.d.ts +1 -5
- package/sdk/partner/Theme/ThemePartnerValidator.js +12 -42
- package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +18 -18
- package/sdk/partner/Webhook/WebhookPartnerClient.js +18 -18
- package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +673 -189
- package/sdk/partner/Webhook/WebhookPartnerModel.js +270 -159
- package/sdk/partner/Webhook/WebhookPartnerValidator.js +3 -3
- package/sdk/partner/index.d.ts +0 -3
- package/sdk/partner/index.js +0 -6
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +4 -1
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +3 -3
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +3 -3
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +2 -32
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +3 -243
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +49 -145
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +20 -171
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -39
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +0 -35
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +12 -12
- package/sdk/platform/Billing/BillingPlatformClient.js +15 -15
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +443 -388
- package/sdk/platform/Billing/BillingPlatformModel.js +280 -263
- package/sdk/platform/Billing/BillingPlatformValidator.d.ts +16 -18
- package/sdk/platform/Billing/BillingPlatformValidator.js +8 -9
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +172 -251
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +577 -648
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +270 -165
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +192 -108
- package/sdk/platform/Cart/CartPlatformModel.d.ts +4554 -3154
- package/sdk/platform/Cart/CartPlatformModel.js +1935 -2854
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +380 -976
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +2004 -6464
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +161 -1082
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +80 -884
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +568 -325
- package/sdk/platform/Catalog/CatalogPlatformClient.js +1560 -1162
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +9772 -7871
- package/sdk/platform/Catalog/CatalogPlatformModel.js +6978 -9516
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +231 -240
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +180 -188
- package/sdk/platform/Common/CommonPlatformClient.d.ts +6 -5
- package/sdk/platform/Common/CommonPlatformClient.js +6 -5
- package/sdk/platform/Common/CommonPlatformModel.d.ts +19 -25
- package/sdk/platform/Common/CommonPlatformModel.js +11 -14
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +240 -376
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +589 -874
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +139 -170
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +126 -145
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +3 -56
- package/sdk/platform/Communication/CommunicationPlatformClient.js +4 -307
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +330 -502
- package/sdk/platform/Communication/CommunicationPlatformModel.js +376 -610
- package/sdk/platform/Communication/CommunicationPlatformValidator.d.ts +3 -62
- package/sdk/platform/Communication/CommunicationPlatformValidator.js +2 -48
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +72 -100
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +88 -146
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +270 -241
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +248 -226
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +20 -31
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +20 -25
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +117 -332
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +409 -1470
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +55 -158
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +41 -163
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +65 -142
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +103 -568
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +562 -1289
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +368 -1037
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +34 -80
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +24 -79
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +302 -248
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +1292 -773
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +330 -218
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +325 -208
- package/sdk/platform/Content/ContentPlatformClient.d.ts +279 -118
- package/sdk/platform/Content/ContentPlatformClient.js +1617 -492
- package/sdk/platform/Content/ContentPlatformModel.d.ts +2391 -924
- package/sdk/platform/Content/ContentPlatformModel.js +1314 -970
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +272 -134
- package/sdk/platform/Content/ContentPlatformValidator.js +295 -118
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +53 -43
- package/sdk/platform/Discount/DiscountPlatformClient.js +53 -43
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +383 -110
- package/sdk/platform/Discount/DiscountPlatformModel.js +117 -108
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +56 -36
- package/sdk/platform/Discount/DiscountPlatformValidator.js +29 -19
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +4 -163
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +4 -1078
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +5 -141
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +4 -177
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +8 -8
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +8 -8
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +30 -1123
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +24 -1135
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +17 -17
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +33 -33
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +19 -19
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +14 -14
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +24 -4
- package/sdk/platform/Lead/LeadPlatformClient.js +160 -4
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +60 -140
- package/sdk/platform/Lead/LeadPlatformModel.js +81 -162
- package/sdk/platform/Lead/LeadPlatformValidator.d.ts +29 -3
- package/sdk/platform/Lead/LeadPlatformValidator.js +28 -2
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +19 -98
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +27 -662
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +91 -118
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +32 -127
- package/sdk/platform/Order/OrderPlatformClient.d.ts +406 -403
- package/sdk/platform/Order/OrderPlatformClient.js +1200 -1343
- package/sdk/platform/Order/OrderPlatformModel.d.ts +8665 -4505
- package/sdk/platform/Order/OrderPlatformModel.js +4088 -3601
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +666 -442
- package/sdk/platform/Order/OrderPlatformValidator.js +353 -312
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +6 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +9 -7
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +67 -19
- package/sdk/platform/Partner/PartnerPlatformModel.js +26 -17
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +135 -382
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +937 -2452
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +100 -306
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +74 -305
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +56 -66
- package/sdk/platform/Payment/PaymentPlatformClient.js +124 -269
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +1307 -3536
- package/sdk/platform/Payment/PaymentPlatformModel.js +1389 -3692
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +35 -64
- package/sdk/platform/Payment/PaymentPlatformValidator.js +34 -60
- package/sdk/platform/PlatformClient.d.ts +0 -2
- package/sdk/platform/PlatformClient.js +0 -4
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +12 -12
- package/sdk/platform/Rewards/RewardsPlatformModel.js +10 -10
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +64 -136
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +111 -521
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +75 -117
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +50 -105
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +160 -149
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +766 -545
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +6196 -3978
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +3181 -3895
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +294 -220
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +205 -149
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +16 -4
- package/sdk/platform/Share/SharePlatformApplicationClient.js +86 -8
- package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +23 -6
- package/sdk/platform/Share/SharePlatformApplicationValidator.js +16 -3
- package/sdk/platform/Share/SharePlatformModel.d.ts +53 -9
- package/sdk/platform/Share/SharePlatformModel.js +45 -5
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +17 -37
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +66 -204
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +25 -26
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +20 -31
- package/sdk/platform/Theme/ThemePlatformClient.d.ts +8 -18
- package/sdk/platform/Theme/ThemePlatformClient.js +8 -85
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +17 -425
- package/sdk/platform/Theme/ThemePlatformModel.js +23 -329
- package/sdk/platform/Theme/ThemePlatformValidator.d.ts +3 -7
- package/sdk/platform/Theme/ThemePlatformValidator.js +2 -9
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +81 -18
- package/sdk/platform/User/UserPlatformApplicationClient.js +491 -27
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +126 -10
- package/sdk/platform/User/UserPlatformApplicationValidator.js +92 -7
- package/sdk/platform/User/UserPlatformModel.d.ts +317 -218
- package/sdk/platform/User/UserPlatformModel.js +253 -210
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +25 -78
- package/sdk/platform/Webhook/WebhookPlatformClient.js +75 -470
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +813 -426
- package/sdk/platform/Webhook/WebhookPlatformModel.js +446 -395
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +10 -55
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +12 -72
- package/sdk/platform/index.d.ts +0 -1
- package/sdk/platform/index.js +0 -2
- package/sdk/public/Catalog/CatalogPublicClient.d.ts +22 -0
- package/sdk/public/Catalog/CatalogPublicClient.js +133 -0
- package/sdk/public/Catalog/CatalogPublicModel.d.ts +158 -0
- package/sdk/public/Catalog/CatalogPublicModel.js +116 -0
- package/sdk/public/Catalog/CatalogPublicValidator.d.ts +55 -0
- package/sdk/public/Catalog/CatalogPublicValidator.js +35 -0
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +4 -14
- package/sdk/public/Configuration/ConfigurationPublicClient.js +10 -113
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +46 -114
- package/sdk/public/Configuration/ConfigurationPublicModel.js +32 -117
- package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +1 -11
- package/sdk/public/Configuration/ConfigurationPublicValidator.js +0 -12
- package/sdk/public/Content/ContentPublicClient.d.ts +36 -25
- package/sdk/public/Content/ContentPublicClient.js +254 -280
- package/sdk/public/Content/ContentPublicModel.d.ts +151 -38
- package/sdk/public/Content/ContentPublicModel.js +98 -44
- package/sdk/public/Content/ContentPublicValidator.d.ts +18 -17
- package/sdk/public/Content/ContentPublicValidator.js +26 -19
- package/sdk/public/Partner/PartnerPublicClient.d.ts +1 -1
- package/sdk/public/Partner/PartnerPublicClient.js +6 -11
- package/sdk/public/Partner/PartnerPublicModel.d.ts +248 -72
- package/sdk/public/Partner/PartnerPublicModel.js +81 -71
- package/sdk/public/Partner/PartnerPublicValidator.d.ts +2 -2
- package/sdk/public/Partner/PartnerPublicValidator.js +1 -1
- package/sdk/public/PublicClient.d.ts +2 -0
- package/sdk/public/PublicClient.js +4 -0
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
- package/sdk/public/Webhook/WebhookPublicClient.js +9 -48
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +215 -67
- package/sdk/public/Webhook/WebhookPublicModel.js +66 -61
- package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
- package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
- package/sdk/public/index.d.ts +1 -0
- package/sdk/public/index.js +2 -0
- package/sdk/partner/Authorization/AuthorizationPartnerClient.d.ts +0 -66
- package/sdk/partner/Authorization/AuthorizationPartnerClient.js +0 -431
- package/sdk/partner/Authorization/AuthorizationPartnerModel.d.ts +0 -231
- package/sdk/partner/Authorization/AuthorizationPartnerModel.js +0 -152
- package/sdk/partner/Authorization/AuthorizationPartnerValidator.d.ts +0 -8
- package/sdk/partner/Authorization/AuthorizationPartnerValidator.js +0 -39
- package/sdk/partner/Catalog/CatalogPartnerClient.d.ts +0 -26
- package/sdk/partner/Catalog/CatalogPartnerClient.js +0 -173
- package/sdk/partner/Catalog/CatalogPartnerModel.d.ts +0 -238
- package/sdk/partner/Catalog/CatalogPartnerModel.js +0 -248
- package/sdk/partner/Catalog/CatalogPartnerValidator.d.ts +0 -5
- package/sdk/partner/Catalog/CatalogPartnerValidator.js +0 -19
- package/sdk/partner/Payment/PaymentPartnerClient.d.ts +0 -116
- package/sdk/partner/Payment/PaymentPartnerClient.js +0 -857
- package/sdk/partner/Payment/PaymentPartnerModel.d.ts +0 -388
- package/sdk/partner/Payment/PaymentPartnerModel.js +0 -442
- package/sdk/partner/Payment/PaymentPartnerValidator.d.ts +0 -14
- package/sdk/partner/Payment/PaymentPartnerValidator.js +0 -74
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +0 -320
- package/sdk/platform/Finance/FinancePlatformClient.js +0 -2333
- package/sdk/platform/Finance/FinancePlatformModel.d.ts +0 -2895
- package/sdk/platform/Finance/FinancePlatformModel.js +0 -2150
- package/sdk/platform/Finance/FinancePlatformValidator.d.ts +0 -284
- package/sdk/platform/Finance/FinancePlatformValidator.js +0 -354
|
@@ -1,80 +1,112 @@
|
|
|
1
1
|
export = ContentPlatformValidator;
|
|
2
2
|
/**
|
|
3
|
-
* @typedef
|
|
4
|
-
* @property {
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
* @typedef AddCompanyLanguageParam
|
|
4
|
+
* @property {ContentPlatformModel.CompanyLanguageCreate} body
|
|
5
|
+
*/
|
|
6
|
+
/**
|
|
7
|
+
* @typedef CreateCompanyResourceTranslationParam
|
|
8
|
+
* @property {ContentPlatformModel.ResourceTranslationCreate} body
|
|
7
9
|
*/
|
|
8
10
|
/**
|
|
9
11
|
* @typedef CreateCustomFieldDefinitionParam
|
|
12
|
+
* @property {string} resource
|
|
10
13
|
* @property {ContentPlatformModel.CustomFieldDefinitionRequestSchema} body
|
|
11
14
|
*/
|
|
12
15
|
/**
|
|
13
|
-
* @typedef
|
|
14
|
-
* @property {
|
|
16
|
+
* @typedef CreateCustomObjectBySlugParam
|
|
17
|
+
* @property {string} definitionSlug
|
|
18
|
+
* @property {ContentPlatformModel.CustomObjectRequestSchemaWithoutId} body
|
|
15
19
|
*/
|
|
16
20
|
/**
|
|
17
21
|
* @typedef CreateCustomObjectDefinitionParam
|
|
18
22
|
* @property {ContentPlatformModel.CustomObjectDefinitionRequestSchema} body
|
|
19
23
|
*/
|
|
20
24
|
/**
|
|
21
|
-
* @typedef
|
|
25
|
+
* @typedef DeleteCompanyLanguageParam
|
|
26
|
+
* @property {string} locale
|
|
27
|
+
*/
|
|
28
|
+
/**
|
|
29
|
+
* @typedef DeleteCompanyResourceTranslationParam
|
|
22
30
|
* @property {string} id
|
|
23
31
|
*/
|
|
24
32
|
/**
|
|
25
|
-
* @typedef
|
|
33
|
+
* @typedef DeleteCustomFieldDefinitionBySlugParam
|
|
34
|
+
* @property {string} slug
|
|
26
35
|
* @property {string} resource
|
|
27
|
-
* @property {string}
|
|
36
|
+
* @property {string} namespace
|
|
37
|
+
*/
|
|
38
|
+
/**
|
|
39
|
+
* @typedef DeleteCustomFieldsByResourceSlugParam
|
|
40
|
+
* @property {string} resource
|
|
41
|
+
* @property {string} resourceSlug
|
|
28
42
|
* @property {string} ids
|
|
29
43
|
*/
|
|
30
44
|
/**
|
|
31
|
-
* @typedef
|
|
32
|
-
* @property {string}
|
|
45
|
+
* @typedef DeleteCustomObjectBySlugParam
|
|
46
|
+
* @property {string} definitionSlug
|
|
47
|
+
* @property {string} slug
|
|
33
48
|
*/
|
|
34
49
|
/**
|
|
35
|
-
* @typedef
|
|
36
|
-
* @property {string}
|
|
50
|
+
* @typedef DeleteCustomObjectDefinitionBySlugParam
|
|
51
|
+
* @property {string} slug
|
|
37
52
|
*/
|
|
38
53
|
/**
|
|
39
|
-
* @typedef
|
|
40
|
-
* @property {string}
|
|
54
|
+
* @typedef ExportCustomObjectEntriesBySlugParam
|
|
55
|
+
* @property {string} slug
|
|
41
56
|
*/
|
|
42
57
|
/**
|
|
43
|
-
* @typedef
|
|
44
|
-
* @property {string}
|
|
58
|
+
* @typedef GetAllResourceDefinitionsParam
|
|
59
|
+
* @property {string} [translatableResourceId]
|
|
45
60
|
*/
|
|
61
|
+
/** @typedef GetAllSectionsParam */
|
|
62
|
+
/** @typedef GetAllTranslatableResourcesParam */
|
|
63
|
+
/** @typedef GetCompanyLanguagesParam */
|
|
46
64
|
/**
|
|
47
|
-
* @typedef
|
|
65
|
+
* @typedef GetCompanyResourceTranslationParam
|
|
66
|
+
* @property {string} locale
|
|
67
|
+
* @property {string} type
|
|
68
|
+
* @property {string} resourceId
|
|
69
|
+
*/
|
|
70
|
+
/**
|
|
71
|
+
* @typedef GetCustomFieldDefinitionByResourceParam
|
|
48
72
|
* @property {string} pageNo
|
|
49
73
|
* @property {string} pageSize
|
|
50
|
-
* @property {string}
|
|
74
|
+
* @property {string} resource
|
|
51
75
|
* @property {string} [types]
|
|
52
76
|
* @property {string} [search]
|
|
53
77
|
* @property {string} [slugs]
|
|
78
|
+
* @property {string} [namespaces]
|
|
54
79
|
*/
|
|
55
80
|
/**
|
|
56
|
-
* @typedef
|
|
57
|
-
* @property {string}
|
|
58
|
-
* @property {string}
|
|
59
|
-
* @property {string}
|
|
81
|
+
* @typedef GetCustomFieldDefinitionBySlugParam
|
|
82
|
+
* @property {string} slug
|
|
83
|
+
* @property {string} resource
|
|
84
|
+
* @property {string} namespace
|
|
60
85
|
*/
|
|
61
|
-
/** @typedef GetCustomFieldTypesParam */
|
|
62
86
|
/**
|
|
63
|
-
* @typedef
|
|
64
|
-
* @property {string}
|
|
87
|
+
* @typedef GetCustomFieldDefinitionsParam
|
|
88
|
+
* @property {string} pageNo
|
|
89
|
+
* @property {string} pageSize
|
|
90
|
+
* @property {string} [resources]
|
|
91
|
+
* @property {string} [types]
|
|
92
|
+
* @property {string} [search]
|
|
93
|
+
* @property {string} [slugs]
|
|
94
|
+
* @property {string} [namespaces]
|
|
65
95
|
*/
|
|
96
|
+
/** @typedef GetCustomFieldTypesParam */
|
|
66
97
|
/**
|
|
67
|
-
* @typedef
|
|
98
|
+
* @typedef GetCustomFieldsByResourceSlugParam
|
|
68
99
|
* @property {string} resource
|
|
69
|
-
* @property {string}
|
|
100
|
+
* @property {string} resourceSlug
|
|
70
101
|
*/
|
|
71
102
|
/**
|
|
72
|
-
* @typedef
|
|
73
|
-
* @property {string}
|
|
103
|
+
* @typedef GetCustomObjectBySlugParam
|
|
104
|
+
* @property {string} definitionSlug
|
|
105
|
+
* @property {string} slug
|
|
74
106
|
*/
|
|
75
107
|
/**
|
|
76
|
-
* @typedef
|
|
77
|
-
* @property {string}
|
|
108
|
+
* @typedef GetCustomObjectDefinitionBySlugParam
|
|
109
|
+
* @property {string} slug
|
|
78
110
|
*/
|
|
79
111
|
/**
|
|
80
112
|
* @typedef GetCustomObjectDefinitionsParam
|
|
@@ -83,10 +115,10 @@ export = ContentPlatformValidator;
|
|
|
83
115
|
* @property {string} [search]
|
|
84
116
|
*/
|
|
85
117
|
/**
|
|
86
|
-
* @typedef
|
|
87
|
-
* @property {string} [definitionId]
|
|
118
|
+
* @typedef GetCustomObjectsBySlugParam
|
|
88
119
|
* @property {string} pageNo
|
|
89
120
|
* @property {string} pageSize
|
|
121
|
+
* @property {string} definitionSlug
|
|
90
122
|
*/
|
|
91
123
|
/**
|
|
92
124
|
* @typedef GetJobsParam
|
|
@@ -94,195 +126,301 @@ export = ContentPlatformValidator;
|
|
|
94
126
|
* @property {string} pageSize
|
|
95
127
|
* @property {string} actionType
|
|
96
128
|
*/
|
|
129
|
+
/**
|
|
130
|
+
* @typedef GetResourceDefinitionByIdParam
|
|
131
|
+
* @property {string} id
|
|
132
|
+
*/
|
|
97
133
|
/** @typedef GetResourcesParam */
|
|
98
134
|
/**
|
|
99
|
-
* @typedef
|
|
100
|
-
* @property {string}
|
|
135
|
+
* @typedef GetSectionByIdParam
|
|
136
|
+
* @property {string} id
|
|
137
|
+
*/
|
|
138
|
+
/**
|
|
139
|
+
* @typedef GetTranslatableResourceByIdParam
|
|
140
|
+
* @property {string} id
|
|
141
|
+
*/
|
|
142
|
+
/**
|
|
143
|
+
* @typedef GetTranslatableResourcesBySectionIdParam
|
|
144
|
+
* @property {string} id
|
|
145
|
+
*/
|
|
146
|
+
/**
|
|
147
|
+
* @typedef ImportCustomObjectEntriesBySlugParam
|
|
148
|
+
* @property {string} slug
|
|
101
149
|
* @property {ContentPlatformModel.CustomObjectBulkSchema} body
|
|
102
150
|
*/
|
|
103
151
|
/**
|
|
104
|
-
* @typedef
|
|
105
|
-
* @property {string}
|
|
152
|
+
* @typedef SampleCustomObjectBulkEntryBySlugParam
|
|
153
|
+
* @property {string} slug
|
|
154
|
+
*/
|
|
155
|
+
/**
|
|
156
|
+
* @typedef UpdateCompanyLanguageDefaultParam
|
|
157
|
+
* @property {string} locale
|
|
158
|
+
* @property {ContentPlatformModel.CompanyLanguageUpdate} body
|
|
159
|
+
*/
|
|
160
|
+
/**
|
|
161
|
+
* @typedef UpdateCompanyResourceTranslationParam
|
|
162
|
+
* @property {string} id
|
|
163
|
+
* @property {ContentPlatformModel.ResourceTranslationUpdate} body
|
|
106
164
|
*/
|
|
107
165
|
/**
|
|
108
|
-
* @typedef
|
|
166
|
+
* @typedef UpdateCustomFieldByResourceSlugParam
|
|
109
167
|
* @property {string} resource
|
|
110
|
-
* @property {string}
|
|
168
|
+
* @property {string} resourceSlug
|
|
111
169
|
* @property {ContentPlatformModel.CustomFieldRequestSchema} body
|
|
112
170
|
*/
|
|
113
171
|
/**
|
|
114
|
-
* @typedef
|
|
115
|
-
* @property {string}
|
|
172
|
+
* @typedef UpdateCustomFieldDefinitionBySlugParam
|
|
173
|
+
* @property {string} slug
|
|
174
|
+
* @property {string} resource
|
|
175
|
+
* @property {string} namespace
|
|
116
176
|
* @property {ContentPlatformModel.CustomFieldDefinitionRequestSchema} body
|
|
117
177
|
*/
|
|
118
178
|
/**
|
|
119
|
-
* @typedef
|
|
120
|
-
* @property {string}
|
|
121
|
-
* @property {
|
|
179
|
+
* @typedef UpdateCustomObjectBySlugParam
|
|
180
|
+
* @property {string} definitionSlug
|
|
181
|
+
* @property {string} slug
|
|
182
|
+
* @property {ContentPlatformModel.CustomObjectRequestSchemaWithoutId} body
|
|
122
183
|
*/
|
|
123
184
|
/**
|
|
124
|
-
* @typedef
|
|
125
|
-
* @property {string}
|
|
185
|
+
* @typedef UpdateCustomObjectDefinitionBySlugParam
|
|
186
|
+
* @property {string} slug
|
|
126
187
|
* @property {ContentPlatformModel.CustomObjectDefinitionUpdateRequestSchema} body
|
|
127
188
|
*/
|
|
128
189
|
declare class ContentPlatformValidator {
|
|
129
|
-
/** @returns {
|
|
130
|
-
static
|
|
190
|
+
/** @returns {AddCompanyLanguageParam} */
|
|
191
|
+
static addCompanyLanguage(): AddCompanyLanguageParam;
|
|
192
|
+
/** @returns {CreateCompanyResourceTranslationParam} */
|
|
193
|
+
static createCompanyResourceTranslation(): CreateCompanyResourceTranslationParam;
|
|
131
194
|
/** @returns {CreateCustomFieldDefinitionParam} */
|
|
132
195
|
static createCustomFieldDefinition(): CreateCustomFieldDefinitionParam;
|
|
133
|
-
/** @returns {
|
|
134
|
-
static
|
|
196
|
+
/** @returns {CreateCustomObjectBySlugParam} */
|
|
197
|
+
static createCustomObjectBySlug(): CreateCustomObjectBySlugParam;
|
|
135
198
|
/** @returns {CreateCustomObjectDefinitionParam} */
|
|
136
199
|
static createCustomObjectDefinition(): CreateCustomObjectDefinitionParam;
|
|
137
|
-
/** @returns {
|
|
138
|
-
static
|
|
139
|
-
/** @returns {
|
|
140
|
-
static
|
|
141
|
-
/** @returns {
|
|
142
|
-
static
|
|
143
|
-
/** @returns {
|
|
144
|
-
static
|
|
145
|
-
/** @returns {
|
|
146
|
-
static
|
|
147
|
-
/** @returns {
|
|
148
|
-
static
|
|
200
|
+
/** @returns {DeleteCompanyLanguageParam} */
|
|
201
|
+
static deleteCompanyLanguage(): DeleteCompanyLanguageParam;
|
|
202
|
+
/** @returns {DeleteCompanyResourceTranslationParam} */
|
|
203
|
+
static deleteCompanyResourceTranslation(): DeleteCompanyResourceTranslationParam;
|
|
204
|
+
/** @returns {DeleteCustomFieldDefinitionBySlugParam} */
|
|
205
|
+
static deleteCustomFieldDefinitionBySlug(): DeleteCustomFieldDefinitionBySlugParam;
|
|
206
|
+
/** @returns {DeleteCustomFieldsByResourceSlugParam} */
|
|
207
|
+
static deleteCustomFieldsByResourceSlug(): DeleteCustomFieldsByResourceSlugParam;
|
|
208
|
+
/** @returns {DeleteCustomObjectBySlugParam} */
|
|
209
|
+
static deleteCustomObjectBySlug(): DeleteCustomObjectBySlugParam;
|
|
210
|
+
/** @returns {DeleteCustomObjectDefinitionBySlugParam} */
|
|
211
|
+
static deleteCustomObjectDefinitionBySlug(): DeleteCustomObjectDefinitionBySlugParam;
|
|
212
|
+
/** @returns {ExportCustomObjectEntriesBySlugParam} */
|
|
213
|
+
static exportCustomObjectEntriesBySlug(): ExportCustomObjectEntriesBySlugParam;
|
|
214
|
+
/** @returns {GetAllResourceDefinitionsParam} */
|
|
215
|
+
static getAllResourceDefinitions(): GetAllResourceDefinitionsParam;
|
|
216
|
+
/** @returns {GetAllSectionsParam} */
|
|
217
|
+
static getAllSections(): any;
|
|
218
|
+
/** @returns {GetAllTranslatableResourcesParam} */
|
|
219
|
+
static getAllTranslatableResources(): any;
|
|
220
|
+
/** @returns {GetCompanyLanguagesParam} */
|
|
221
|
+
static getCompanyLanguages(): any;
|
|
222
|
+
/** @returns {GetCompanyResourceTranslationParam} */
|
|
223
|
+
static getCompanyResourceTranslation(): GetCompanyResourceTranslationParam;
|
|
224
|
+
/** @returns {GetCustomFieldDefinitionByResourceParam} */
|
|
225
|
+
static getCustomFieldDefinitionByResource(): GetCustomFieldDefinitionByResourceParam;
|
|
226
|
+
/** @returns {GetCustomFieldDefinitionBySlugParam} */
|
|
227
|
+
static getCustomFieldDefinitionBySlug(): GetCustomFieldDefinitionBySlugParam;
|
|
149
228
|
/** @returns {GetCustomFieldDefinitionsParam} */
|
|
150
229
|
static getCustomFieldDefinitions(): GetCustomFieldDefinitionsParam;
|
|
151
|
-
/** @returns {GetCustomFieldJobsParam} */
|
|
152
|
-
static getCustomFieldJobs(): GetCustomFieldJobsParam;
|
|
153
230
|
/** @returns {GetCustomFieldTypesParam} */
|
|
154
231
|
static getCustomFieldTypes(): any;
|
|
155
|
-
/** @returns {
|
|
156
|
-
static
|
|
157
|
-
/** @returns {
|
|
158
|
-
static
|
|
159
|
-
/** @returns {
|
|
160
|
-
static
|
|
161
|
-
/** @returns {GetCustomObjectDefinitionParam} */
|
|
162
|
-
static getCustomObjectDefinition(): GetCustomObjectDefinitionParam;
|
|
232
|
+
/** @returns {GetCustomFieldsByResourceSlugParam} */
|
|
233
|
+
static getCustomFieldsByResourceSlug(): GetCustomFieldsByResourceSlugParam;
|
|
234
|
+
/** @returns {GetCustomObjectBySlugParam} */
|
|
235
|
+
static getCustomObjectBySlug(): GetCustomObjectBySlugParam;
|
|
236
|
+
/** @returns {GetCustomObjectDefinitionBySlugParam} */
|
|
237
|
+
static getCustomObjectDefinitionBySlug(): GetCustomObjectDefinitionBySlugParam;
|
|
163
238
|
/** @returns {GetCustomObjectDefinitionsParam} */
|
|
164
239
|
static getCustomObjectDefinitions(): GetCustomObjectDefinitionsParam;
|
|
165
|
-
/** @returns {
|
|
166
|
-
static
|
|
240
|
+
/** @returns {GetCustomObjectsBySlugParam} */
|
|
241
|
+
static getCustomObjectsBySlug(): GetCustomObjectsBySlugParam;
|
|
167
242
|
/** @returns {GetJobsParam} */
|
|
168
243
|
static getJobs(): GetJobsParam;
|
|
244
|
+
/** @returns {GetResourceDefinitionByIdParam} */
|
|
245
|
+
static getResourceDefinitionById(): GetResourceDefinitionByIdParam;
|
|
169
246
|
/** @returns {GetResourcesParam} */
|
|
170
247
|
static getResources(): any;
|
|
171
|
-
/** @returns {
|
|
172
|
-
static
|
|
173
|
-
/** @returns {
|
|
174
|
-
static
|
|
175
|
-
/** @returns {
|
|
176
|
-
static
|
|
177
|
-
/** @returns {
|
|
178
|
-
static
|
|
179
|
-
/** @returns {
|
|
180
|
-
static
|
|
181
|
-
/** @returns {
|
|
182
|
-
static
|
|
248
|
+
/** @returns {GetSectionByIdParam} */
|
|
249
|
+
static getSectionById(): GetSectionByIdParam;
|
|
250
|
+
/** @returns {GetTranslatableResourceByIdParam} */
|
|
251
|
+
static getTranslatableResourceById(): GetTranslatableResourceByIdParam;
|
|
252
|
+
/** @returns {GetTranslatableResourcesBySectionIdParam} */
|
|
253
|
+
static getTranslatableResourcesBySectionId(): GetTranslatableResourcesBySectionIdParam;
|
|
254
|
+
/** @returns {ImportCustomObjectEntriesBySlugParam} */
|
|
255
|
+
static importCustomObjectEntriesBySlug(): ImportCustomObjectEntriesBySlugParam;
|
|
256
|
+
/** @returns {SampleCustomObjectBulkEntryBySlugParam} */
|
|
257
|
+
static sampleCustomObjectBulkEntryBySlug(): SampleCustomObjectBulkEntryBySlugParam;
|
|
258
|
+
/** @returns {UpdateCompanyLanguageDefaultParam} */
|
|
259
|
+
static updateCompanyLanguageDefault(): UpdateCompanyLanguageDefaultParam;
|
|
260
|
+
/** @returns {UpdateCompanyResourceTranslationParam} */
|
|
261
|
+
static updateCompanyResourceTranslation(): UpdateCompanyResourceTranslationParam;
|
|
262
|
+
/** @returns {UpdateCustomFieldByResourceSlugParam} */
|
|
263
|
+
static updateCustomFieldByResourceSlug(): UpdateCustomFieldByResourceSlugParam;
|
|
264
|
+
/** @returns {UpdateCustomFieldDefinitionBySlugParam} */
|
|
265
|
+
static updateCustomFieldDefinitionBySlug(): UpdateCustomFieldDefinitionBySlugParam;
|
|
266
|
+
/** @returns {UpdateCustomObjectBySlugParam} */
|
|
267
|
+
static updateCustomObjectBySlug(): UpdateCustomObjectBySlugParam;
|
|
268
|
+
/** @returns {UpdateCustomObjectDefinitionBySlugParam} */
|
|
269
|
+
static updateCustomObjectDefinitionBySlug(): UpdateCustomObjectDefinitionBySlugParam;
|
|
183
270
|
}
|
|
184
271
|
declare namespace ContentPlatformValidator {
|
|
185
|
-
export {
|
|
272
|
+
export { AddCompanyLanguageParam, CreateCompanyResourceTranslationParam, CreateCustomFieldDefinitionParam, CreateCustomObjectBySlugParam, CreateCustomObjectDefinitionParam, DeleteCompanyLanguageParam, DeleteCompanyResourceTranslationParam, DeleteCustomFieldDefinitionBySlugParam, DeleteCustomFieldsByResourceSlugParam, DeleteCustomObjectBySlugParam, DeleteCustomObjectDefinitionBySlugParam, ExportCustomObjectEntriesBySlugParam, GetAllResourceDefinitionsParam, GetAllSectionsParam, GetAllTranslatableResourcesParam, GetCompanyLanguagesParam, GetCompanyResourceTranslationParam, GetCustomFieldDefinitionByResourceParam, GetCustomFieldDefinitionBySlugParam, GetCustomFieldDefinitionsParam, GetCustomFieldTypesParam, GetCustomFieldsByResourceSlugParam, GetCustomObjectBySlugParam, GetCustomObjectDefinitionBySlugParam, GetCustomObjectDefinitionsParam, GetCustomObjectsBySlugParam, GetJobsParam, GetResourceDefinitionByIdParam, GetResourcesParam, GetSectionByIdParam, GetTranslatableResourceByIdParam, GetTranslatableResourcesBySectionIdParam, ImportCustomObjectEntriesBySlugParam, SampleCustomObjectBulkEntryBySlugParam, UpdateCompanyLanguageDefaultParam, UpdateCompanyResourceTranslationParam, UpdateCustomFieldByResourceSlugParam, UpdateCustomFieldDefinitionBySlugParam, UpdateCustomObjectBySlugParam, UpdateCustomObjectDefinitionBySlugParam };
|
|
186
273
|
}
|
|
187
|
-
type
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
274
|
+
type AddCompanyLanguageParam = {
|
|
275
|
+
body: ContentPlatformModel.CompanyLanguageCreate;
|
|
276
|
+
};
|
|
277
|
+
type CreateCompanyResourceTranslationParam = {
|
|
278
|
+
body: ContentPlatformModel.ResourceTranslationCreate;
|
|
191
279
|
};
|
|
192
280
|
type CreateCustomFieldDefinitionParam = {
|
|
281
|
+
resource: string;
|
|
193
282
|
body: ContentPlatformModel.CustomFieldDefinitionRequestSchema;
|
|
194
283
|
};
|
|
195
|
-
type
|
|
196
|
-
|
|
284
|
+
type CreateCustomObjectBySlugParam = {
|
|
285
|
+
definitionSlug: string;
|
|
286
|
+
body: ContentPlatformModel.CustomObjectRequestSchemaWithoutId;
|
|
197
287
|
};
|
|
198
288
|
type CreateCustomObjectDefinitionParam = {
|
|
199
289
|
body: ContentPlatformModel.CustomObjectDefinitionRequestSchema;
|
|
200
290
|
};
|
|
201
|
-
type
|
|
291
|
+
type DeleteCompanyLanguageParam = {
|
|
292
|
+
locale: string;
|
|
293
|
+
};
|
|
294
|
+
type DeleteCompanyResourceTranslationParam = {
|
|
202
295
|
id: string;
|
|
203
296
|
};
|
|
204
|
-
type
|
|
297
|
+
type DeleteCustomFieldDefinitionBySlugParam = {
|
|
298
|
+
slug: string;
|
|
205
299
|
resource: string;
|
|
206
|
-
|
|
300
|
+
namespace: string;
|
|
301
|
+
};
|
|
302
|
+
type DeleteCustomFieldsByResourceSlugParam = {
|
|
303
|
+
resource: string;
|
|
304
|
+
resourceSlug: string;
|
|
207
305
|
ids: string;
|
|
208
306
|
};
|
|
209
|
-
type
|
|
210
|
-
|
|
307
|
+
type DeleteCustomObjectBySlugParam = {
|
|
308
|
+
definitionSlug: string;
|
|
309
|
+
slug: string;
|
|
211
310
|
};
|
|
212
|
-
type
|
|
213
|
-
|
|
311
|
+
type DeleteCustomObjectDefinitionBySlugParam = {
|
|
312
|
+
slug: string;
|
|
214
313
|
};
|
|
215
|
-
type
|
|
216
|
-
|
|
314
|
+
type ExportCustomObjectEntriesBySlugParam = {
|
|
315
|
+
slug: string;
|
|
217
316
|
};
|
|
218
|
-
type
|
|
219
|
-
|
|
317
|
+
type GetAllResourceDefinitionsParam = {
|
|
318
|
+
translatableResourceId?: string;
|
|
220
319
|
};
|
|
221
|
-
type
|
|
320
|
+
type GetCompanyResourceTranslationParam = {
|
|
321
|
+
locale: string;
|
|
322
|
+
type: string;
|
|
323
|
+
resourceId: string;
|
|
324
|
+
};
|
|
325
|
+
type GetCustomFieldDefinitionByResourceParam = {
|
|
222
326
|
pageNo: string;
|
|
223
327
|
pageSize: string;
|
|
224
|
-
|
|
328
|
+
resource: string;
|
|
225
329
|
types?: string;
|
|
226
330
|
search?: string;
|
|
227
331
|
slugs?: string;
|
|
332
|
+
namespaces?: string;
|
|
228
333
|
};
|
|
229
|
-
type
|
|
230
|
-
|
|
231
|
-
pageSize: string;
|
|
232
|
-
actionType: string;
|
|
233
|
-
};
|
|
234
|
-
type GetCustomFieldsParam = {
|
|
334
|
+
type GetCustomFieldDefinitionBySlugParam = {
|
|
335
|
+
slug: string;
|
|
235
336
|
resource: string;
|
|
337
|
+
namespace: string;
|
|
236
338
|
};
|
|
237
|
-
type
|
|
339
|
+
type GetCustomFieldDefinitionsParam = {
|
|
340
|
+
pageNo: string;
|
|
341
|
+
pageSize: string;
|
|
342
|
+
resources?: string;
|
|
343
|
+
types?: string;
|
|
344
|
+
search?: string;
|
|
345
|
+
slugs?: string;
|
|
346
|
+
namespaces?: string;
|
|
347
|
+
};
|
|
348
|
+
type GetCustomFieldsByResourceSlugParam = {
|
|
238
349
|
resource: string;
|
|
239
|
-
|
|
350
|
+
resourceSlug: string;
|
|
240
351
|
};
|
|
241
|
-
type
|
|
242
|
-
|
|
352
|
+
type GetCustomObjectBySlugParam = {
|
|
353
|
+
definitionSlug: string;
|
|
354
|
+
slug: string;
|
|
243
355
|
};
|
|
244
|
-
type
|
|
245
|
-
|
|
356
|
+
type GetCustomObjectDefinitionBySlugParam = {
|
|
357
|
+
slug: string;
|
|
246
358
|
};
|
|
247
359
|
type GetCustomObjectDefinitionsParam = {
|
|
248
360
|
pageNo: string;
|
|
249
361
|
pageSize: string;
|
|
250
362
|
search?: string;
|
|
251
363
|
};
|
|
252
|
-
type
|
|
253
|
-
definitionId?: string;
|
|
364
|
+
type GetCustomObjectsBySlugParam = {
|
|
254
365
|
pageNo: string;
|
|
255
366
|
pageSize: string;
|
|
367
|
+
definitionSlug: string;
|
|
256
368
|
};
|
|
257
369
|
type GetJobsParam = {
|
|
258
370
|
page: string;
|
|
259
371
|
pageSize: string;
|
|
260
372
|
actionType: string;
|
|
261
373
|
};
|
|
262
|
-
type
|
|
263
|
-
|
|
374
|
+
type GetResourceDefinitionByIdParam = {
|
|
375
|
+
id: string;
|
|
376
|
+
};
|
|
377
|
+
type GetSectionByIdParam = {
|
|
378
|
+
id: string;
|
|
379
|
+
};
|
|
380
|
+
type GetTranslatableResourceByIdParam = {
|
|
381
|
+
id: string;
|
|
382
|
+
};
|
|
383
|
+
type GetTranslatableResourcesBySectionIdParam = {
|
|
384
|
+
id: string;
|
|
385
|
+
};
|
|
386
|
+
type ImportCustomObjectEntriesBySlugParam = {
|
|
387
|
+
slug: string;
|
|
264
388
|
body: ContentPlatformModel.CustomObjectBulkSchema;
|
|
265
389
|
};
|
|
266
|
-
type
|
|
267
|
-
|
|
390
|
+
type SampleCustomObjectBulkEntryBySlugParam = {
|
|
391
|
+
slug: string;
|
|
392
|
+
};
|
|
393
|
+
type UpdateCompanyLanguageDefaultParam = {
|
|
394
|
+
locale: string;
|
|
395
|
+
body: ContentPlatformModel.CompanyLanguageUpdate;
|
|
268
396
|
};
|
|
269
|
-
type
|
|
397
|
+
type UpdateCompanyResourceTranslationParam = {
|
|
398
|
+
id: string;
|
|
399
|
+
body: ContentPlatformModel.ResourceTranslationUpdate;
|
|
400
|
+
};
|
|
401
|
+
type UpdateCustomFieldByResourceSlugParam = {
|
|
270
402
|
resource: string;
|
|
271
|
-
|
|
403
|
+
resourceSlug: string;
|
|
272
404
|
body: ContentPlatformModel.CustomFieldRequestSchema;
|
|
273
405
|
};
|
|
274
|
-
type
|
|
275
|
-
|
|
406
|
+
type UpdateCustomFieldDefinitionBySlugParam = {
|
|
407
|
+
slug: string;
|
|
408
|
+
resource: string;
|
|
409
|
+
namespace: string;
|
|
276
410
|
body: ContentPlatformModel.CustomFieldDefinitionRequestSchema;
|
|
277
411
|
};
|
|
278
|
-
type
|
|
279
|
-
|
|
280
|
-
|
|
412
|
+
type UpdateCustomObjectBySlugParam = {
|
|
413
|
+
definitionSlug: string;
|
|
414
|
+
slug: string;
|
|
415
|
+
body: ContentPlatformModel.CustomObjectRequestSchemaWithoutId;
|
|
281
416
|
};
|
|
282
|
-
type
|
|
283
|
-
|
|
417
|
+
type UpdateCustomObjectDefinitionBySlugParam = {
|
|
418
|
+
slug: string;
|
|
284
419
|
body: ContentPlatformModel.CustomObjectDefinitionUpdateRequestSchema;
|
|
285
420
|
};
|
|
421
|
+
type GetAllSectionsParam = any;
|
|
422
|
+
type GetAllTranslatableResourcesParam = any;
|
|
423
|
+
type GetCompanyLanguagesParam = any;
|
|
286
424
|
type GetCustomFieldTypesParam = any;
|
|
287
425
|
type GetResourcesParam = any;
|
|
288
426
|
import ContentPlatformModel = require("./ContentPlatformModel");
|