@gofynd/fdk-client-javascript 1.6.3 → 3.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
- package/sdk/application/ApplicationClient.d.ts +0 -2
- package/sdk/application/ApplicationClient.js +0 -2
- package/sdk/application/Cart/CartApplicationClient.d.ts +113 -93
- package/sdk/application/Cart/CartApplicationClient.js +270 -139
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +110 -110
- package/sdk/application/Catalog/CatalogApplicationClient.js +122 -138
- package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
- package/sdk/application/Common/CommonApplicationClient.js +3 -3
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +43 -3
- package/sdk/application/Communication/CommunicationApplicationClient.js +190 -3
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +71 -36
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +103 -29
- package/sdk/application/Content/ContentApplicationClient.d.ts +51 -21
- package/sdk/application/Content/ContentApplicationClient.js +197 -36
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +6 -6
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +3 -3
- package/sdk/application/Lead/LeadApplicationClient.d.ts +3 -3
- package/sdk/application/Lead/LeadApplicationClient.js +3 -3
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +79 -64
- package/sdk/application/Logistic/LogisticApplicationClient.js +246 -264
- package/sdk/application/Order/OrderApplicationClient.d.ts +44 -24
- package/sdk/application/Order/OrderApplicationClient.js +140 -21
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +211 -111
- package/sdk/application/Payment/PaymentApplicationClient.js +610 -109
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +13 -13
- package/sdk/application/Rewards/RewardsApplicationClient.js +7 -7
- package/sdk/application/Share/ShareApplicationClient.d.ts +7 -7
- package/sdk/application/Share/ShareApplicationClient.js +14 -14
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +23 -3
- package/sdk/application/Theme/ThemeApplicationClient.js +103 -5
- package/sdk/application/User/UserApplicationClient.d.ts +13 -23
- package/sdk/application/User/UserApplicationClient.js +9 -57
- package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
- package/sdk/application/Webhook/WebhookApplicationClient.js +3 -3
- package/sdk/partner/Authorization/AuthorizationPartnerClient.d.ts +66 -0
- package/sdk/partner/Authorization/AuthorizationPartnerClient.js +431 -0
- package/sdk/partner/Authorization/AuthorizationPartnerModel.d.ts +231 -0
- package/sdk/partner/Authorization/AuthorizationPartnerModel.js +152 -0
- package/sdk/partner/Authorization/AuthorizationPartnerValidator.d.ts +8 -0
- package/sdk/partner/Authorization/AuthorizationPartnerValidator.js +39 -0
- package/sdk/partner/Catalog/CatalogPartnerClient.d.ts +26 -0
- package/sdk/partner/Catalog/CatalogPartnerClient.js +173 -0
- package/sdk/partner/Catalog/CatalogPartnerModel.d.ts +238 -0
- package/sdk/partner/Catalog/CatalogPartnerModel.js +248 -0
- package/sdk/partner/Catalog/CatalogPartnerValidator.d.ts +5 -0
- package/sdk/partner/Catalog/CatalogPartnerValidator.js +19 -0
- package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +12 -22
- package/sdk/partner/FileStorage/FileStoragePartnerClient.js +12 -87
- package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +33 -99
- package/sdk/partner/FileStorage/FileStoragePartnerModel.js +25 -84
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +0 -1
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +4 -10
- package/sdk/partner/Lead/LeadPartnerClient.d.ts +5 -5
- package/sdk/partner/Lead/LeadPartnerClient.js +4 -4
- package/sdk/partner/Lead/LeadPartnerModel.d.ts +100 -49
- package/sdk/partner/Lead/LeadPartnerModel.js +100 -74
- package/sdk/partner/Lead/LeadPartnerValidator.js +1 -1
- package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +33 -160
- package/sdk/partner/Logistics/LogisticsPartnerClient.js +66 -1180
- package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +288 -1685
- package/sdk/partner/Logistics/LogisticsPartnerModel.js +226 -824
- package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +1 -13
- package/sdk/partner/Logistics/LogisticsPartnerValidator.js +14 -141
- package/sdk/partner/PartnerClient.d.ts +6 -0
- package/sdk/partner/PartnerClient.js +9 -0
- package/sdk/partner/Payment/PaymentPartnerClient.d.ts +116 -0
- package/sdk/partner/Payment/PaymentPartnerClient.js +857 -0
- package/sdk/partner/Payment/PaymentPartnerModel.d.ts +388 -0
- package/sdk/partner/Payment/PaymentPartnerModel.js +442 -0
- package/sdk/partner/Payment/PaymentPartnerValidator.d.ts +14 -0
- package/sdk/partner/Payment/PaymentPartnerValidator.js +74 -0
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +63 -21
- package/sdk/partner/Theme/ThemePartnerClient.js +396 -71
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +104 -72
- package/sdk/partner/Theme/ThemePartnerModel.js +101 -75
- package/sdk/partner/Theme/ThemePartnerValidator.d.ts +5 -1
- package/sdk/partner/Theme/ThemePartnerValidator.js +42 -12
- package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +18 -18
- package/sdk/partner/Webhook/WebhookPartnerClient.js +18 -18
- package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +191 -612
- package/sdk/partner/Webhook/WebhookPartnerModel.js +159 -234
- package/sdk/partner/Webhook/WebhookPartnerValidator.js +3 -3
- package/sdk/partner/index.d.ts +3 -0
- package/sdk/partner/index.js +6 -0
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +1 -4
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +5 -0
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +3 -1
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +32 -2
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +243 -3
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +145 -49
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +171 -20
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +39 -1
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +35 -0
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +406 -15
- package/sdk/platform/Billing/BillingPlatformClient.js +3214 -76
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +3798 -459
- package/sdk/platform/Billing/BillingPlatformModel.js +2577 -342
- package/sdk/platform/Billing/BillingPlatformValidator.d.ts +465 -24
- package/sdk/platform/Billing/BillingPlatformValidator.js +490 -14
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +284 -205
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +671 -553
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +165 -165
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +108 -132
- package/sdk/platform/Cart/CartPlatformModel.d.ts +3136 -4788
- package/sdk/platform/Cart/CartPlatformModel.js +2850 -2031
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +1015 -419
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +6450 -2010
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +1121 -230
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +919 -127
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +372 -574
- package/sdk/platform/Catalog/CatalogPlatformClient.js +1238 -1317
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +8351 -9825
- package/sdk/platform/Catalog/CatalogPlatformModel.js +9662 -6881
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +288 -235
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +241 -183
- package/sdk/platform/Common/CommonPlatformClient.d.ts +5 -6
- package/sdk/platform/Common/CommonPlatformClient.js +5 -6
- package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
- package/sdk/platform/Common/CommonPlatformModel.js +6 -6
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +374 -234
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +875 -583
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +170 -139
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +145 -126
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +56 -3
- package/sdk/platform/Communication/CommunicationPlatformClient.js +307 -4
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +424 -252
- package/sdk/platform/Communication/CommunicationPlatformModel.js +540 -320
- package/sdk/platform/Communication/CommunicationPlatformValidator.d.ts +62 -3
- package/sdk/platform/Communication/CommunicationPlatformValidator.js +48 -2
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +68 -99
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +84 -140
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +238 -256
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +222 -244
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +20 -20
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +20 -20
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +333 -118
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +1470 -409
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +158 -55
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +163 -41
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +151 -61
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +595 -101
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +1199 -462
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +1008 -321
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +80 -34
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +79 -24
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +253 -140
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +1087 -458
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +221 -178
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +220 -157
- package/sdk/platform/Content/ContentPlatformClient.d.ts +124 -123
- package/sdk/platform/Content/ContentPlatformClient.js +459 -379
- package/sdk/platform/Content/ContentPlatformModel.d.ts +833 -1307
- package/sdk/platform/Content/ContentPlatformModel.js +893 -582
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +140 -150
- package/sdk/platform/Content/ContentPlatformValidator.js +131 -135
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +60 -36
- package/sdk/platform/Discount/DiscountPlatformClient.js +85 -36
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +46 -47
- package/sdk/platform/Discount/DiscountPlatformModel.js +42 -46
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
- package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +18 -15
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +24 -22
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +4 -4
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +4 -4
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +8 -8
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +8 -8
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +75 -86
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +60 -74
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +320 -0
- package/sdk/platform/Finance/FinancePlatformClient.js +2333 -0
- package/sdk/platform/Finance/FinancePlatformModel.d.ts +2895 -0
- package/sdk/platform/Finance/FinancePlatformModel.js +2150 -0
- package/sdk/platform/Finance/FinancePlatformValidator.d.ts +284 -0
- package/sdk/platform/Finance/FinancePlatformValidator.js +354 -0
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +17 -17
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +33 -33
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +19 -19
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +14 -14
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +4 -24
- package/sdk/platform/Lead/LeadPlatformClient.js +4 -160
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +142 -57
- package/sdk/platform/Lead/LeadPlatformModel.js +162 -79
- package/sdk/platform/Lead/LeadPlatformValidator.d.ts +3 -29
- package/sdk/platform/Lead/LeadPlatformValidator.js +2 -28
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +94 -25
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +600 -57
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +115 -115
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +120 -43
- package/sdk/platform/Order/OrderPlatformClient.d.ts +502 -293
- package/sdk/platform/Order/OrderPlatformClient.js +1466 -913
- package/sdk/platform/Order/OrderPlatformModel.d.ts +4111 -9093
- package/sdk/platform/Order/OrderPlatformModel.js +3202 -4230
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +445 -612
- package/sdk/platform/Order/OrderPlatformValidator.js +316 -326
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -6
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +7 -9
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
- package/sdk/platform/Partner/PartnerPlatformModel.js +7 -7
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +382 -135
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +2453 -935
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +306 -93
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +305 -70
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +66 -56
- package/sdk/platform/Payment/PaymentPlatformClient.js +269 -124
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +3525 -1313
- package/sdk/platform/Payment/PaymentPlatformModel.js +3813 -1511
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +64 -35
- package/sdk/platform/Payment/PaymentPlatformValidator.js +60 -34
- package/sdk/platform/PlatformClient.d.ts +2 -0
- package/sdk/platform/PlatformClient.js +4 -0
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +14 -9
- package/sdk/platform/Rewards/RewardsPlatformModel.js +10 -8
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +344 -56
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +2180 -302
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +380 -54
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +336 -37
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +127 -213
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +538 -1306
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +3429 -2979
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +3642 -1785
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +218 -392
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +151 -290
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +4 -16
- package/sdk/platform/Share/SharePlatformApplicationClient.js +8 -86
- package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +6 -23
- package/sdk/platform/Share/SharePlatformApplicationValidator.js +3 -16
- package/sdk/platform/Share/SharePlatformModel.d.ts +6 -50
- package/sdk/platform/Share/SharePlatformModel.js +3 -43
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +26 -4
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +157 -10
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +21 -10
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +23 -6
- package/sdk/platform/Theme/ThemePlatformClient.d.ts +18 -8
- package/sdk/platform/Theme/ThemePlatformClient.js +85 -8
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +425 -17
- package/sdk/platform/Theme/ThemePlatformModel.js +329 -23
- package/sdk/platform/Theme/ThemePlatformValidator.d.ts +7 -3
- package/sdk/platform/Theme/ThemePlatformValidator.js +9 -2
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +22 -12
- package/sdk/platform/User/UserPlatformApplicationClient.js +91 -12
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +15 -3
- package/sdk/platform/User/UserPlatformApplicationValidator.js +14 -2
- package/sdk/platform/User/UserPlatformModel.d.ts +223 -59
- package/sdk/platform/User/UserPlatformModel.js +204 -65
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +78 -25
- package/sdk/platform/Webhook/WebhookPlatformClient.js +470 -75
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +434 -758
- package/sdk/platform/Webhook/WebhookPlatformModel.js +395 -410
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +55 -10
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +72 -12
- package/sdk/platform/index.d.ts +1 -0
- package/sdk/platform/index.js +2 -0
- package/sdk/public/Billing/BillingPublicClient.d.ts +56 -0
- package/sdk/public/Billing/BillingPublicClient.js +397 -0
- package/sdk/public/Billing/BillingPublicModel.d.ts +919 -0
- package/sdk/public/Billing/BillingPublicModel.js +560 -0
- package/sdk/public/Billing/BillingPublicValidator.d.ts +43 -0
- package/sdk/public/Billing/BillingPublicValidator.js +50 -0
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +14 -4
- package/sdk/public/Configuration/ConfigurationPublicClient.js +97 -9
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +102 -40
- package/sdk/public/Configuration/ConfigurationPublicModel.js +111 -29
- package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +11 -1
- package/sdk/public/Configuration/ConfigurationPublicValidator.js +12 -0
- package/sdk/public/Content/ContentPublicClient.d.ts +22 -0
- package/sdk/public/Content/ContentPublicClient.js +183 -0
- package/sdk/public/Content/ContentPublicModel.d.ts +38 -1
- package/sdk/public/Content/ContentPublicModel.js +47 -1
- package/sdk/public/Content/ContentPublicValidator.d.ts +17 -1
- package/sdk/public/Content/ContentPublicValidator.js +19 -0
- package/sdk/public/PublicClient.d.ts +2 -2
- package/sdk/public/PublicClient.js +2 -2
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
- package/sdk/public/Webhook/WebhookPublicClient.js +8 -8
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +67 -215
- package/sdk/public/Webhook/WebhookPublicModel.js +61 -66
- package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
- package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
- package/sdk/public/index.d.ts +1 -1
- package/sdk/public/index.js +1 -1
- package/sdk/application/Finance/FinanceApplicationClient.d.ts +0 -29
- package/sdk/application/Finance/FinanceApplicationClient.js +0 -126
- package/sdk/public/Catalog/CatalogPublicClient.d.ts +0 -22
- package/sdk/public/Catalog/CatalogPublicClient.js +0 -138
- package/sdk/public/Catalog/CatalogPublicModel.d.ts +0 -155
- package/sdk/public/Catalog/CatalogPublicModel.js +0 -116
- package/sdk/public/Catalog/CatalogPublicValidator.d.ts +0 -55
- package/sdk/public/Catalog/CatalogPublicValidator.js +0 -35
|
@@ -1,5 +1,113 @@
|
|
|
1
1
|
const Joi = require("joi");
|
|
2
2
|
|
|
3
|
+
/**
|
|
4
|
+
* @typedef MarketplaceTheme
|
|
5
|
+
* @property {string} [_id] - Theme ID
|
|
6
|
+
* @property {PaymentInfo} [payment]
|
|
7
|
+
* @property {ContactInfo} [contact]
|
|
8
|
+
* @property {string[]} [industry] - Industries the theme is suitable for
|
|
9
|
+
* @property {boolean} [is_update] - Indicates if the theme is an update
|
|
10
|
+
* @property {boolean} [is_default] - Indicates if the theme is a default theme
|
|
11
|
+
* @property {string} [name] - Theme name
|
|
12
|
+
* @property {string} [tagline] - Theme tagline
|
|
13
|
+
* @property {string} [description] - Theme description
|
|
14
|
+
* @property {CatalogSize} [catalog_size]
|
|
15
|
+
* @property {MarketplaceThemeImages} [images]
|
|
16
|
+
* @property {CarouselItem[]} [carousel]
|
|
17
|
+
* @property {string} [src] - Theme source URL
|
|
18
|
+
* @property {ExploreInfo} [explore]
|
|
19
|
+
* @property {Feature[]} [features]
|
|
20
|
+
* @property {Highlight[]} [highlights]
|
|
21
|
+
* @property {Variation[]} [variations]
|
|
22
|
+
* @property {Documentation} [documentation]
|
|
23
|
+
* @property {string} [status] - Theme status
|
|
24
|
+
* @property {number} [step] - Theme step
|
|
25
|
+
* @property {Comments} [comments]
|
|
26
|
+
* @property {Release} [release]
|
|
27
|
+
* @property {string} [slug] - Theme slug
|
|
28
|
+
* @property {string} [organization_id] - Organization ID
|
|
29
|
+
* @property {string} [user_id] - User ID
|
|
30
|
+
* @property {string} [created_at] - Theme creation timestamp
|
|
31
|
+
* @property {string} [updated_at] - Theme update timestamp
|
|
32
|
+
* @property {string} [template_theme_id] - Template theme ID
|
|
33
|
+
* @property {string} [theme_type] - Theme type
|
|
34
|
+
*/
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* @typedef PaymentInfo
|
|
38
|
+
* @property {boolean} [is_paid] - Indicates if the theme is paid
|
|
39
|
+
* @property {number} [amount] - Amount of payment
|
|
40
|
+
*/
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* @typedef ContactInfo
|
|
44
|
+
* @property {string[]} [developer_contact] - Developer contact information
|
|
45
|
+
* @property {string} [seller_contact] - Seller contact information
|
|
46
|
+
*/
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* @typedef CatalogSize
|
|
50
|
+
* @property {number} [min] - Minimum catalog size
|
|
51
|
+
* @property {number} [max] - Maximum catalog size
|
|
52
|
+
*/
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* @typedef MarketplaceThemeImages
|
|
56
|
+
* @property {string} [desktop] - Desktop theme image URL
|
|
57
|
+
* @property {string} [mobile] - Mobile theme image URL
|
|
58
|
+
*/
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* @typedef CarouselItem
|
|
62
|
+
* @property {string} [desktop] - Desktop carousel image URL
|
|
63
|
+
* @property {string} [mobile] - Mobile carousel image URL
|
|
64
|
+
*/
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* @typedef ExploreInfo
|
|
68
|
+
* @property {string} [title] - Explore feature title
|
|
69
|
+
* @property {string} [description] - Explore feature description
|
|
70
|
+
*/
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* @typedef Feature
|
|
74
|
+
* @property {string} [category] - Feature category
|
|
75
|
+
* @property {FeatureItem[]} [list]
|
|
76
|
+
*/
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* @typedef FeatureItem
|
|
80
|
+
* @property {string} [label] - Feature properties
|
|
81
|
+
* @property {string} [description] - Feature description
|
|
82
|
+
*/
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* @typedef Highlight
|
|
86
|
+
* @property {string} [title] - Highlight title
|
|
87
|
+
* @property {string} [description] - Highlight description
|
|
88
|
+
* @property {string} [image] - Highlight image URL
|
|
89
|
+
*/
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* @typedef Variation
|
|
93
|
+
* @property {string} [name] - Variation name
|
|
94
|
+
* @property {string} [color] - Variation color
|
|
95
|
+
* @property {string} [demo_url] - Variation demo URL
|
|
96
|
+
* @property {MarketplaceThemeImages} [images]
|
|
97
|
+
*/
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* @typedef Documentation
|
|
101
|
+
* @property {string} [notes] - Documentation notes
|
|
102
|
+
* @property {string} [url] - Documentation URL
|
|
103
|
+
*/
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* @typedef Comments
|
|
107
|
+
* @property {string} [developer_remark] - Developer remark
|
|
108
|
+
* @property {string} [reviewer_feedback] - Reviewer feedback
|
|
109
|
+
*/
|
|
110
|
+
|
|
3
111
|
/**
|
|
4
112
|
* @typedef GetExtensionSectionRes
|
|
5
113
|
* @property {string} [extension_id]
|
|
@@ -53,6 +161,22 @@ const Joi = require("joi");
|
|
|
53
161
|
* @property {AppliedThemes[]} [applied_themes]
|
|
54
162
|
*/
|
|
55
163
|
|
|
164
|
+
/**
|
|
165
|
+
* @typedef CompanyThemeReqSchema
|
|
166
|
+
* @property {string} [marketplace_theme_id] - Theme id of the marketplace
|
|
167
|
+
*/
|
|
168
|
+
|
|
169
|
+
/**
|
|
170
|
+
* @typedef CompanyThemeResponse
|
|
171
|
+
* @property {string} [_id] - The unique identifier for the theme.
|
|
172
|
+
* @property {string} [name] - The name of the theme.
|
|
173
|
+
* @property {string} [marketplace_theme_id]
|
|
174
|
+
* @property {number} [company_id] - The ID of the company that the theme belongs to.
|
|
175
|
+
* @property {CompanyThemeMeta} [meta]
|
|
176
|
+
* @property {string} [created_at] - The timestamp when the theme was created.
|
|
177
|
+
* @property {string} [updated_at] - The timestamp when the theme was last updated.
|
|
178
|
+
*/
|
|
179
|
+
|
|
56
180
|
/**
|
|
57
181
|
* @typedef MarketplaceThemeId
|
|
58
182
|
* @property {string} [_id] - The unique identifier for the marketplace theme.
|
|
@@ -98,6 +222,7 @@ const Joi = require("joi");
|
|
|
98
222
|
* @property {string} [_id]
|
|
99
223
|
* @property {string} [created_at] - The creation timestamp of the page
|
|
100
224
|
* @property {string} [updated_at] - The last update timestamp of the page
|
|
225
|
+
* @property {string} [application]
|
|
101
226
|
*/
|
|
102
227
|
|
|
103
228
|
/**
|
|
@@ -142,12 +267,14 @@ const Joi = require("joi");
|
|
|
142
267
|
* @property {string} [description]
|
|
143
268
|
* @property {SEOMetaItem[]} [meta_tags]
|
|
144
269
|
* @property {SEOSitemap} [sitemap]
|
|
145
|
-
* @property {SEObreadcrumb[]} [
|
|
270
|
+
* @property {SEObreadcrumb[]} [breadcrumbs]
|
|
146
271
|
* @property {string} [_id]
|
|
272
|
+
* @property {string} [canonical_url]
|
|
147
273
|
*/
|
|
148
274
|
|
|
149
275
|
/**
|
|
150
276
|
* @typedef AvailablePageSchemaSections
|
|
277
|
+
* @property {string} [_id] - Unique Id for section.
|
|
151
278
|
* @property {string} [name]
|
|
152
279
|
* @property {string} [label]
|
|
153
280
|
* @property {Object} [props]
|
|
@@ -222,7 +349,7 @@ const Joi = require("joi");
|
|
|
222
349
|
|
|
223
350
|
/**
|
|
224
351
|
* @typedef FontsSchema
|
|
225
|
-
* @property {
|
|
352
|
+
* @property {Object[]} [items]
|
|
226
353
|
* @property {string} [kind]
|
|
227
354
|
*/
|
|
228
355
|
|
|
@@ -246,6 +373,7 @@ const Joi = require("joi");
|
|
|
246
373
|
* @property {FontsSchemaItemsFiles} [files]
|
|
247
374
|
* @property {string} [category]
|
|
248
375
|
* @property {string} [kind]
|
|
376
|
+
* @property {string} [menu]
|
|
249
377
|
*/
|
|
250
378
|
|
|
251
379
|
/**
|
|
@@ -272,6 +400,7 @@ const Joi = require("joi");
|
|
|
272
400
|
* @property {Object} [styles] - The styles associated with the theme
|
|
273
401
|
* @property {string} [created_at] - The creation timestamp of the theme
|
|
274
402
|
* @property {string} [updated_at] - The last update timestamp of the theme
|
|
403
|
+
* @property {Object[]} [global_sections]
|
|
275
404
|
* @property {Assets} [assets]
|
|
276
405
|
* @property {SectionItem[]} [available_sections] - Available sections information
|
|
277
406
|
* @property {string} [theme_type]
|
|
@@ -280,9 +409,9 @@ const Joi = require("joi");
|
|
|
280
409
|
*/
|
|
281
410
|
|
|
282
411
|
/**
|
|
283
|
-
* @typedef
|
|
412
|
+
* @typedef ThemeUpgradableResponse
|
|
284
413
|
* @property {boolean} [upgrade] - Indicates if the theme is upgradable or not
|
|
285
|
-
* @property {
|
|
414
|
+
* @property {Object} [versions]
|
|
286
415
|
* @property {string} [message] - A message describing the theme upgrade status
|
|
287
416
|
*/
|
|
288
417
|
|
|
@@ -323,7 +452,7 @@ const Joi = require("joi");
|
|
|
323
452
|
* @property {string} current - The current configuration
|
|
324
453
|
* @property {ThemeConfiguration[]} list - A list of configurations
|
|
325
454
|
* @property {GlobalSchema} [global_schema]
|
|
326
|
-
* @property {
|
|
455
|
+
* @property {Object} [preset] - An Object of default theme configurations
|
|
327
456
|
*/
|
|
328
457
|
|
|
329
458
|
/**
|
|
@@ -447,6 +576,7 @@ const Joi = require("joi");
|
|
|
447
576
|
/**
|
|
448
577
|
* @typedef Prop
|
|
449
578
|
* @property {string} [type] - The type of the property
|
|
579
|
+
* @property {Option[]} [options]
|
|
450
580
|
* @property {string} [category] - The category of the property
|
|
451
581
|
* @property {string} [value] - The value of the property
|
|
452
582
|
* @property {string} [id] - The ID of the property
|
|
@@ -483,6 +613,7 @@ const Joi = require("joi");
|
|
|
483
613
|
* @property {Object[]} [props]
|
|
484
614
|
* @property {Object[]} [blocks] - Blocks
|
|
485
615
|
* @property {string} [name] - Name of the section
|
|
616
|
+
* @property {SectionPreset} [preset]
|
|
486
617
|
* @property {string} [label] - Label for the section
|
|
487
618
|
*/
|
|
488
619
|
|
|
@@ -595,7 +726,7 @@ const Joi = require("joi");
|
|
|
595
726
|
*/
|
|
596
727
|
|
|
597
728
|
/**
|
|
598
|
-
* @typedef
|
|
729
|
+
* @typedef DummyResponse
|
|
599
730
|
* @property {string} [message]
|
|
600
731
|
*/
|
|
601
732
|
|
|
@@ -619,6 +750,12 @@ const Joi = require("joi");
|
|
|
619
750
|
* @property {CompanyThemeMeta} [meta]
|
|
620
751
|
*/
|
|
621
752
|
|
|
753
|
+
/**
|
|
754
|
+
* @typedef Option
|
|
755
|
+
* @property {string} [text]
|
|
756
|
+
* @property {string} [value]
|
|
757
|
+
*/
|
|
758
|
+
|
|
622
759
|
/**
|
|
623
760
|
* @typedef ActionPage
|
|
624
761
|
* @property {Object} [params] - Parameters that should be considered in path.
|
|
@@ -679,6 +816,140 @@ const Joi = require("joi");
|
|
|
679
816
|
*/
|
|
680
817
|
|
|
681
818
|
class ThemePlatformModel {
|
|
819
|
+
/** @returns {MarketplaceTheme} */
|
|
820
|
+
static MarketplaceTheme() {
|
|
821
|
+
return Joi.object({
|
|
822
|
+
_id: Joi.string().allow(""),
|
|
823
|
+
payment: ThemePlatformModel.PaymentInfo(),
|
|
824
|
+
contact: ThemePlatformModel.ContactInfo(),
|
|
825
|
+
industry: Joi.array().items(Joi.string().allow("")),
|
|
826
|
+
is_update: Joi.boolean(),
|
|
827
|
+
is_default: Joi.boolean(),
|
|
828
|
+
name: Joi.string().allow(""),
|
|
829
|
+
tagline: Joi.string().allow(""),
|
|
830
|
+
description: Joi.string().allow(""),
|
|
831
|
+
catalog_size: ThemePlatformModel.CatalogSize(),
|
|
832
|
+
images: ThemePlatformModel.MarketplaceThemeImages(),
|
|
833
|
+
carousel: Joi.array().items(ThemePlatformModel.CarouselItem()),
|
|
834
|
+
src: Joi.string().allow(""),
|
|
835
|
+
explore: ThemePlatformModel.ExploreInfo(),
|
|
836
|
+
features: Joi.array().items(ThemePlatformModel.Feature()),
|
|
837
|
+
highlights: Joi.array().items(ThemePlatformModel.Highlight()),
|
|
838
|
+
variations: Joi.array().items(ThemePlatformModel.Variation()),
|
|
839
|
+
documentation: ThemePlatformModel.Documentation(),
|
|
840
|
+
status: Joi.string().allow(""),
|
|
841
|
+
step: Joi.number(),
|
|
842
|
+
comments: ThemePlatformModel.Comments(),
|
|
843
|
+
release: ThemePlatformModel.Release(),
|
|
844
|
+
slug: Joi.string().allow(""),
|
|
845
|
+
organization_id: Joi.string().allow(""),
|
|
846
|
+
user_id: Joi.string().allow(""),
|
|
847
|
+
created_at: Joi.string().allow(""),
|
|
848
|
+
updated_at: Joi.string().allow(""),
|
|
849
|
+
template_theme_id: Joi.string().allow(""),
|
|
850
|
+
theme_type: Joi.string().allow(""),
|
|
851
|
+
});
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
/** @returns {PaymentInfo} */
|
|
855
|
+
static PaymentInfo() {
|
|
856
|
+
return Joi.object({
|
|
857
|
+
is_paid: Joi.boolean(),
|
|
858
|
+
amount: Joi.number(),
|
|
859
|
+
});
|
|
860
|
+
}
|
|
861
|
+
|
|
862
|
+
/** @returns {ContactInfo} */
|
|
863
|
+
static ContactInfo() {
|
|
864
|
+
return Joi.object({
|
|
865
|
+
developer_contact: Joi.array().items(Joi.string().allow("")),
|
|
866
|
+
seller_contact: Joi.string().allow(""),
|
|
867
|
+
});
|
|
868
|
+
}
|
|
869
|
+
|
|
870
|
+
/** @returns {CatalogSize} */
|
|
871
|
+
static CatalogSize() {
|
|
872
|
+
return Joi.object({
|
|
873
|
+
min: Joi.number(),
|
|
874
|
+
max: Joi.number(),
|
|
875
|
+
});
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
/** @returns {MarketplaceThemeImages} */
|
|
879
|
+
static MarketplaceThemeImages() {
|
|
880
|
+
return Joi.object({
|
|
881
|
+
desktop: Joi.string().allow(""),
|
|
882
|
+
mobile: Joi.string().allow(""),
|
|
883
|
+
});
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
/** @returns {CarouselItem} */
|
|
887
|
+
static CarouselItem() {
|
|
888
|
+
return Joi.object({
|
|
889
|
+
desktop: Joi.string().allow(""),
|
|
890
|
+
mobile: Joi.string().allow(""),
|
|
891
|
+
});
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
/** @returns {ExploreInfo} */
|
|
895
|
+
static ExploreInfo() {
|
|
896
|
+
return Joi.object({
|
|
897
|
+
title: Joi.string().allow(""),
|
|
898
|
+
description: Joi.string().allow(""),
|
|
899
|
+
});
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
/** @returns {Feature} */
|
|
903
|
+
static Feature() {
|
|
904
|
+
return Joi.object({
|
|
905
|
+
category: Joi.string().allow(""),
|
|
906
|
+
list: Joi.array().items(ThemePlatformModel.FeatureItem()),
|
|
907
|
+
});
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
/** @returns {FeatureItem} */
|
|
911
|
+
static FeatureItem() {
|
|
912
|
+
return Joi.object({
|
|
913
|
+
label: Joi.string().allow(""),
|
|
914
|
+
description: Joi.string().allow(""),
|
|
915
|
+
});
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
/** @returns {Highlight} */
|
|
919
|
+
static Highlight() {
|
|
920
|
+
return Joi.object({
|
|
921
|
+
title: Joi.string().allow(""),
|
|
922
|
+
description: Joi.string().allow(""),
|
|
923
|
+
image: Joi.string().allow(""),
|
|
924
|
+
});
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
/** @returns {Variation} */
|
|
928
|
+
static Variation() {
|
|
929
|
+
return Joi.object({
|
|
930
|
+
name: Joi.string().allow(""),
|
|
931
|
+
color: Joi.string().allow(""),
|
|
932
|
+
demo_url: Joi.string().allow(""),
|
|
933
|
+
images: ThemePlatformModel.MarketplaceThemeImages(),
|
|
934
|
+
});
|
|
935
|
+
}
|
|
936
|
+
|
|
937
|
+
/** @returns {Documentation} */
|
|
938
|
+
static Documentation() {
|
|
939
|
+
return Joi.object({
|
|
940
|
+
notes: Joi.string().allow(""),
|
|
941
|
+
url: Joi.string().allow(""),
|
|
942
|
+
});
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
/** @returns {Comments} */
|
|
946
|
+
static Comments() {
|
|
947
|
+
return Joi.object({
|
|
948
|
+
developer_remark: Joi.string().allow(""),
|
|
949
|
+
reviewer_feedback: Joi.string().allow(""),
|
|
950
|
+
});
|
|
951
|
+
}
|
|
952
|
+
|
|
682
953
|
/** @returns {GetExtensionSectionRes} */
|
|
683
954
|
static GetExtensionSectionRes() {
|
|
684
955
|
return Joi.object({
|
|
@@ -743,6 +1014,26 @@ class ThemePlatformModel {
|
|
|
743
1014
|
});
|
|
744
1015
|
}
|
|
745
1016
|
|
|
1017
|
+
/** @returns {CompanyThemeReqSchema} */
|
|
1018
|
+
static CompanyThemeReqSchema() {
|
|
1019
|
+
return Joi.object({
|
|
1020
|
+
marketplace_theme_id: Joi.string().allow(""),
|
|
1021
|
+
});
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
/** @returns {CompanyThemeResponse} */
|
|
1025
|
+
static CompanyThemeResponse() {
|
|
1026
|
+
return Joi.object({
|
|
1027
|
+
_id: Joi.string().allow(""),
|
|
1028
|
+
name: Joi.string().allow(""),
|
|
1029
|
+
marketplace_theme_id: Joi.string().allow(""),
|
|
1030
|
+
company_id: Joi.number(),
|
|
1031
|
+
meta: ThemePlatformModel.CompanyThemeMeta(),
|
|
1032
|
+
created_at: Joi.string().allow(""),
|
|
1033
|
+
updated_at: Joi.string().allow(""),
|
|
1034
|
+
});
|
|
1035
|
+
}
|
|
1036
|
+
|
|
746
1037
|
/** @returns {MarketplaceThemeId} */
|
|
747
1038
|
static MarketplaceThemeId() {
|
|
748
1039
|
return Joi.object({
|
|
@@ -800,13 +1091,14 @@ class ThemePlatformModel {
|
|
|
800
1091
|
_id: Joi.string().allow(""),
|
|
801
1092
|
created_at: Joi.string().allow(""),
|
|
802
1093
|
updated_at: Joi.string().allow(""),
|
|
1094
|
+
application: Joi.string().allow(""),
|
|
803
1095
|
});
|
|
804
1096
|
}
|
|
805
1097
|
|
|
806
1098
|
/** @returns {AvailablePageSectionMetaAttributes} */
|
|
807
1099
|
static AvailablePageSectionMetaAttributes() {
|
|
808
1100
|
return Joi.object({
|
|
809
|
-
attributes: Joi.
|
|
1101
|
+
attributes: Joi.any(),
|
|
810
1102
|
});
|
|
811
1103
|
}
|
|
812
1104
|
|
|
@@ -858,19 +1150,21 @@ class ThemePlatformModel {
|
|
|
858
1150
|
description: Joi.string().allow(""),
|
|
859
1151
|
meta_tags: Joi.array().items(ThemePlatformModel.SEOMetaItem()),
|
|
860
1152
|
sitemap: ThemePlatformModel.SEOSitemap(),
|
|
861
|
-
|
|
1153
|
+
breadcrumbs: Joi.array().items(ThemePlatformModel.SEObreadcrumb()),
|
|
862
1154
|
_id: Joi.string().allow(""),
|
|
1155
|
+
canonical_url: Joi.string().allow(""),
|
|
863
1156
|
});
|
|
864
1157
|
}
|
|
865
1158
|
|
|
866
1159
|
/** @returns {AvailablePageSchemaSections} */
|
|
867
1160
|
static AvailablePageSchemaSections() {
|
|
868
1161
|
return Joi.object({
|
|
1162
|
+
_id: Joi.string().allow(""),
|
|
869
1163
|
name: Joi.string().allow(""),
|
|
870
1164
|
label: Joi.string().allow(""),
|
|
871
|
-
props: Joi.
|
|
1165
|
+
props: Joi.any(),
|
|
872
1166
|
blocks: Joi.array().items(Joi.any()),
|
|
873
|
-
preset: Joi.
|
|
1167
|
+
preset: Joi.any(),
|
|
874
1168
|
predicate: ThemePlatformModel.AvailablePagePredicate(),
|
|
875
1169
|
__source: ThemePlatformModel.SectionSource(),
|
|
876
1170
|
});
|
|
@@ -919,7 +1213,7 @@ class ThemePlatformModel {
|
|
|
919
1213
|
return Joi.object({
|
|
920
1214
|
selected: Joi.string().allow(""),
|
|
921
1215
|
exact_url: Joi.string().allow(""),
|
|
922
|
-
query: Joi.
|
|
1216
|
+
query: Joi.any(),
|
|
923
1217
|
});
|
|
924
1218
|
}
|
|
925
1219
|
|
|
@@ -958,7 +1252,7 @@ class ThemePlatformModel {
|
|
|
958
1252
|
/** @returns {FontsSchema} */
|
|
959
1253
|
static FontsSchema() {
|
|
960
1254
|
return Joi.object({
|
|
961
|
-
items:
|
|
1255
|
+
items: Joi.array().items(Joi.any()),
|
|
962
1256
|
kind: Joi.string().allow(""),
|
|
963
1257
|
});
|
|
964
1258
|
}
|
|
@@ -988,6 +1282,7 @@ class ThemePlatformModel {
|
|
|
988
1282
|
files: ThemePlatformModel.FontsSchemaItemsFiles(),
|
|
989
1283
|
category: Joi.string().allow(""),
|
|
990
1284
|
kind: Joi.string().allow(""),
|
|
1285
|
+
menu: Joi.string().allow(""),
|
|
991
1286
|
});
|
|
992
1287
|
}
|
|
993
1288
|
|
|
@@ -1015,9 +1310,10 @@ class ThemePlatformModel {
|
|
|
1015
1310
|
name: Joi.string().allow(""),
|
|
1016
1311
|
template_theme_id: Joi.string().allow(""),
|
|
1017
1312
|
version: Joi.string().allow(""),
|
|
1018
|
-
styles: Joi.
|
|
1313
|
+
styles: Joi.any(),
|
|
1019
1314
|
created_at: Joi.string().allow(""),
|
|
1020
1315
|
updated_at: Joi.string().allow(""),
|
|
1316
|
+
global_sections: Joi.array().items(Joi.any()),
|
|
1021
1317
|
assets: ThemePlatformModel.Assets(),
|
|
1022
1318
|
available_sections: Joi.array().items(ThemePlatformModel.SectionItem()),
|
|
1023
1319
|
theme_type: Joi.string().allow(""),
|
|
@@ -1026,11 +1322,11 @@ class ThemePlatformModel {
|
|
|
1026
1322
|
});
|
|
1027
1323
|
}
|
|
1028
1324
|
|
|
1029
|
-
/** @returns {
|
|
1030
|
-
static
|
|
1325
|
+
/** @returns {ThemeUpgradableResponse} */
|
|
1326
|
+
static ThemeUpgradableResponse() {
|
|
1031
1327
|
return Joi.object({
|
|
1032
1328
|
upgrade: Joi.boolean(),
|
|
1033
|
-
versions:
|
|
1329
|
+
versions: Joi.any(),
|
|
1034
1330
|
message: Joi.string().allow(""),
|
|
1035
1331
|
});
|
|
1036
1332
|
}
|
|
@@ -1085,7 +1381,7 @@ class ThemePlatformModel {
|
|
|
1085
1381
|
.items(ThemePlatformModel.ThemeConfiguration())
|
|
1086
1382
|
.required(),
|
|
1087
1383
|
global_schema: ThemePlatformModel.GlobalSchema(),
|
|
1088
|
-
preset:
|
|
1384
|
+
preset: Joi.any(),
|
|
1089
1385
|
});
|
|
1090
1386
|
}
|
|
1091
1387
|
|
|
@@ -1093,7 +1389,7 @@ class ThemePlatformModel {
|
|
|
1093
1389
|
static ThemeConfiguration() {
|
|
1094
1390
|
return Joi.object({
|
|
1095
1391
|
name: Joi.string().allow(""),
|
|
1096
|
-
global_config: Joi.
|
|
1392
|
+
global_config: Joi.any(),
|
|
1097
1393
|
page: Joi.array().items(ThemePlatformModel.ThemeConfigListPage()),
|
|
1098
1394
|
});
|
|
1099
1395
|
}
|
|
@@ -1145,7 +1441,7 @@ class ThemePlatformModel {
|
|
|
1145
1441
|
/** @returns {ThemeConfigListPageSettingsProps} */
|
|
1146
1442
|
static ThemeConfigListPageSettingsProps() {
|
|
1147
1443
|
return Joi.object({
|
|
1148
|
-
props: Joi.
|
|
1444
|
+
props: Joi.any(),
|
|
1149
1445
|
});
|
|
1150
1446
|
}
|
|
1151
1447
|
|
|
@@ -1232,6 +1528,7 @@ class ThemePlatformModel {
|
|
|
1232
1528
|
static Prop() {
|
|
1233
1529
|
return Joi.object({
|
|
1234
1530
|
type: Joi.string().allow(""),
|
|
1531
|
+
options: Joi.array().items(ThemePlatformModel.Option()),
|
|
1235
1532
|
category: Joi.string().allow(""),
|
|
1236
1533
|
value: Joi.string().allow(""),
|
|
1237
1534
|
id: Joi.string().allow(""),
|
|
@@ -1275,9 +1572,10 @@ class ThemePlatformModel {
|
|
|
1275
1572
|
/** @returns {SectionItem} */
|
|
1276
1573
|
static SectionItem() {
|
|
1277
1574
|
return Joi.object({
|
|
1278
|
-
props: Joi.array().items(Joi.any()),
|
|
1279
|
-
blocks: Joi.array().items(Joi.any()),
|
|
1575
|
+
props: Joi.array().items(Joi.object().pattern(/\S/, Joi.any())),
|
|
1576
|
+
blocks: Joi.array().items(Joi.object().pattern(/\S/, Joi.any())),
|
|
1280
1577
|
name: Joi.string().allow(""),
|
|
1578
|
+
preset: ThemePlatformModel.SectionPreset(),
|
|
1281
1579
|
label: Joi.string().allow(""),
|
|
1282
1580
|
});
|
|
1283
1581
|
}
|
|
@@ -1424,8 +1722,8 @@ class ThemePlatformModel {
|
|
|
1424
1722
|
});
|
|
1425
1723
|
}
|
|
1426
1724
|
|
|
1427
|
-
/** @returns {
|
|
1428
|
-
static
|
|
1725
|
+
/** @returns {DummyResponse} */
|
|
1726
|
+
static DummyResponse() {
|
|
1429
1727
|
return Joi.object({
|
|
1430
1728
|
message: Joi.string().allow(""),
|
|
1431
1729
|
});
|
|
@@ -1455,6 +1753,14 @@ class ThemePlatformModel {
|
|
|
1455
1753
|
});
|
|
1456
1754
|
}
|
|
1457
1755
|
|
|
1756
|
+
/** @returns {Option} */
|
|
1757
|
+
static Option() {
|
|
1758
|
+
return Joi.object({
|
|
1759
|
+
text: Joi.string().allow(""),
|
|
1760
|
+
value: Joi.string().allow(""),
|
|
1761
|
+
});
|
|
1762
|
+
}
|
|
1763
|
+
|
|
1458
1764
|
/** @returns {ActionPage} */
|
|
1459
1765
|
static ActionPage() {
|
|
1460
1766
|
return Joi.object({
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export = ThemePlatformValidator;
|
|
2
2
|
/**
|
|
3
3
|
* @typedef AddMarketplaceThemeToCompanyParam
|
|
4
|
-
* @property {ThemePlatformModel.
|
|
4
|
+
* @property {ThemePlatformModel.CompanyThemeReqSchema} body
|
|
5
5
|
*/
|
|
6
6
|
/**
|
|
7
7
|
* @typedef DeleteCompanyThemeParam
|
|
@@ -17,6 +17,7 @@ export = ThemePlatformValidator;
|
|
|
17
17
|
* @property {string} [searchText] - Search Text to match the Theme Names and
|
|
18
18
|
* return the response.
|
|
19
19
|
*/
|
|
20
|
+
/** @typedef GetDefaultMarketplaceThemeParam */
|
|
20
21
|
declare class ThemePlatformValidator {
|
|
21
22
|
/** @returns {AddMarketplaceThemeToCompanyParam} */
|
|
22
23
|
static addMarketplaceThemeToCompany(): AddMarketplaceThemeToCompanyParam;
|
|
@@ -26,12 +27,14 @@ declare class ThemePlatformValidator {
|
|
|
26
27
|
static getCompanyLevelPrivateThemes(): GetCompanyLevelPrivateThemesParam;
|
|
27
28
|
/** @returns {GetCompanyLevelThemesParam} */
|
|
28
29
|
static getCompanyLevelThemes(): GetCompanyLevelThemesParam;
|
|
30
|
+
/** @returns {GetDefaultMarketplaceThemeParam} */
|
|
31
|
+
static getDefaultMarketplaceTheme(): any;
|
|
29
32
|
}
|
|
30
33
|
declare namespace ThemePlatformValidator {
|
|
31
|
-
export { AddMarketplaceThemeToCompanyParam, DeleteCompanyThemeParam, GetCompanyLevelPrivateThemesParam, GetCompanyLevelThemesParam };
|
|
34
|
+
export { AddMarketplaceThemeToCompanyParam, DeleteCompanyThemeParam, GetCompanyLevelPrivateThemesParam, GetCompanyLevelThemesParam, GetDefaultMarketplaceThemeParam };
|
|
32
35
|
}
|
|
33
36
|
type AddMarketplaceThemeToCompanyParam = {
|
|
34
|
-
body: ThemePlatformModel.
|
|
37
|
+
body: ThemePlatformModel.CompanyThemeReqSchema;
|
|
35
38
|
};
|
|
36
39
|
type DeleteCompanyThemeParam = {
|
|
37
40
|
/**
|
|
@@ -53,4 +56,5 @@ type GetCompanyLevelThemesParam = {
|
|
|
53
56
|
*/
|
|
54
57
|
searchText?: string;
|
|
55
58
|
};
|
|
59
|
+
type GetDefaultMarketplaceThemeParam = any;
|
|
56
60
|
import ThemePlatformModel = require("./ThemePlatformModel");
|
|
@@ -4,7 +4,7 @@ const ThemePlatformModel = require("./ThemePlatformModel");
|
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* @typedef AddMarketplaceThemeToCompanyParam
|
|
7
|
-
* @property {ThemePlatformModel.
|
|
7
|
+
* @property {ThemePlatformModel.CompanyThemeReqSchema} body
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
/**
|
|
@@ -24,11 +24,13 @@ const ThemePlatformModel = require("./ThemePlatformModel");
|
|
|
24
24
|
* return the response.
|
|
25
25
|
*/
|
|
26
26
|
|
|
27
|
+
/** @typedef GetDefaultMarketplaceThemeParam */
|
|
28
|
+
|
|
27
29
|
class ThemePlatformValidator {
|
|
28
30
|
/** @returns {AddMarketplaceThemeToCompanyParam} */
|
|
29
31
|
static addMarketplaceThemeToCompany() {
|
|
30
32
|
return Joi.object({
|
|
31
|
-
body: ThemePlatformModel.
|
|
33
|
+
body: ThemePlatformModel.CompanyThemeReqSchema().required(),
|
|
32
34
|
}).required();
|
|
33
35
|
}
|
|
34
36
|
|
|
@@ -52,6 +54,11 @@ class ThemePlatformValidator {
|
|
|
52
54
|
searchText: Joi.string().allow(""),
|
|
53
55
|
}).required();
|
|
54
56
|
}
|
|
57
|
+
|
|
58
|
+
/** @returns {GetDefaultMarketplaceThemeParam} */
|
|
59
|
+
static getDefaultMarketplaceTheme() {
|
|
60
|
+
return Joi.object({}).required();
|
|
61
|
+
}
|
|
55
62
|
}
|
|
56
63
|
|
|
57
64
|
module.exports = ThemePlatformValidator;
|