@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,99 +1,4 @@
|
|
|
1
1
|
export = ThemePlatformModel;
|
|
2
|
-
/**
|
|
3
|
-
* @typedef MarketplaceTheme
|
|
4
|
-
* @property {string} [_id] - Theme ID
|
|
5
|
-
* @property {PaymentInfo} [payment]
|
|
6
|
-
* @property {ContactInfo} [contact]
|
|
7
|
-
* @property {string[]} [industry] - Industries the theme is suitable for
|
|
8
|
-
* @property {boolean} [is_update] - Indicates if the theme is an update
|
|
9
|
-
* @property {boolean} [is_default] - Indicates if the theme is a default theme
|
|
10
|
-
* @property {string} [name] - Theme name
|
|
11
|
-
* @property {string} [tagline] - Theme tagline
|
|
12
|
-
* @property {string} [description] - Theme description
|
|
13
|
-
* @property {CatalogSize} [catalog_size]
|
|
14
|
-
* @property {MarketplaceThemeImages} [images]
|
|
15
|
-
* @property {CarouselItem[]} [carousel]
|
|
16
|
-
* @property {string} [src] - Theme source URL
|
|
17
|
-
* @property {ExploreInfo} [explore]
|
|
18
|
-
* @property {Feature[]} [features]
|
|
19
|
-
* @property {Highlight[]} [highlights]
|
|
20
|
-
* @property {Variation[]} [variations]
|
|
21
|
-
* @property {Documentation} [documentation]
|
|
22
|
-
* @property {string} [status] - Theme status
|
|
23
|
-
* @property {number} [step] - Theme step
|
|
24
|
-
* @property {Comments} [comments]
|
|
25
|
-
* @property {Release} [release]
|
|
26
|
-
* @property {string} [slug] - Theme slug
|
|
27
|
-
* @property {string} [organization_id] - Organization ID
|
|
28
|
-
* @property {string} [user_id] - User ID
|
|
29
|
-
* @property {string} [created_at] - Theme creation timestamp
|
|
30
|
-
* @property {string} [updated_at] - Theme update timestamp
|
|
31
|
-
* @property {string} [template_theme_id] - Template theme ID
|
|
32
|
-
* @property {string} [theme_type] - Theme type
|
|
33
|
-
*/
|
|
34
|
-
/**
|
|
35
|
-
* @typedef PaymentInfo
|
|
36
|
-
* @property {boolean} [is_paid] - Indicates if the theme is paid
|
|
37
|
-
* @property {number} [amount] - Amount of payment
|
|
38
|
-
*/
|
|
39
|
-
/**
|
|
40
|
-
* @typedef ContactInfo
|
|
41
|
-
* @property {string[]} [developer_contact] - Developer contact information
|
|
42
|
-
* @property {string} [seller_contact] - Seller contact information
|
|
43
|
-
*/
|
|
44
|
-
/**
|
|
45
|
-
* @typedef CatalogSize
|
|
46
|
-
* @property {number} [min] - Minimum catalog size
|
|
47
|
-
* @property {number} [max] - Maximum catalog size
|
|
48
|
-
*/
|
|
49
|
-
/**
|
|
50
|
-
* @typedef MarketplaceThemeImages
|
|
51
|
-
* @property {string} [desktop] - Desktop theme image URL
|
|
52
|
-
* @property {string} [mobile] - Mobile theme image URL
|
|
53
|
-
*/
|
|
54
|
-
/**
|
|
55
|
-
* @typedef CarouselItem
|
|
56
|
-
* @property {string} [desktop] - Desktop carousel image URL
|
|
57
|
-
* @property {string} [mobile] - Mobile carousel image URL
|
|
58
|
-
*/
|
|
59
|
-
/**
|
|
60
|
-
* @typedef ExploreInfo
|
|
61
|
-
* @property {string} [title] - Explore feature title
|
|
62
|
-
* @property {string} [description] - Explore feature description
|
|
63
|
-
*/
|
|
64
|
-
/**
|
|
65
|
-
* @typedef Feature
|
|
66
|
-
* @property {string} [category] - Feature category
|
|
67
|
-
* @property {FeatureItem[]} [list]
|
|
68
|
-
*/
|
|
69
|
-
/**
|
|
70
|
-
* @typedef FeatureItem
|
|
71
|
-
* @property {string} [label] - Feature properties
|
|
72
|
-
* @property {string} [description] - Feature description
|
|
73
|
-
*/
|
|
74
|
-
/**
|
|
75
|
-
* @typedef Highlight
|
|
76
|
-
* @property {string} [title] - Highlight title
|
|
77
|
-
* @property {string} [description] - Highlight description
|
|
78
|
-
* @property {string} [image] - Highlight image URL
|
|
79
|
-
*/
|
|
80
|
-
/**
|
|
81
|
-
* @typedef Variation
|
|
82
|
-
* @property {string} [name] - Variation name
|
|
83
|
-
* @property {string} [color] - Variation color
|
|
84
|
-
* @property {string} [demo_url] - Variation demo URL
|
|
85
|
-
* @property {MarketplaceThemeImages} [images]
|
|
86
|
-
*/
|
|
87
|
-
/**
|
|
88
|
-
* @typedef Documentation
|
|
89
|
-
* @property {string} [notes] - Documentation notes
|
|
90
|
-
* @property {string} [url] - Documentation URL
|
|
91
|
-
*/
|
|
92
|
-
/**
|
|
93
|
-
* @typedef Comments
|
|
94
|
-
* @property {string} [developer_remark] - Developer remark
|
|
95
|
-
* @property {string} [reviewer_feedback] - Reviewer feedback
|
|
96
|
-
*/
|
|
97
2
|
/**
|
|
98
3
|
* @typedef GetExtensionSectionRes
|
|
99
4
|
* @property {string} [extension_id]
|
|
@@ -141,20 +46,6 @@ export = ThemePlatformModel;
|
|
|
141
46
|
* @property {string} [updated_at] - The timestamp when the theme was last updated.
|
|
142
47
|
* @property {AppliedThemes[]} [applied_themes]
|
|
143
48
|
*/
|
|
144
|
-
/**
|
|
145
|
-
* @typedef CompanyThemeReqSchema
|
|
146
|
-
* @property {string} [marketplace_theme_id] - Theme id of the marketplace
|
|
147
|
-
*/
|
|
148
|
-
/**
|
|
149
|
-
* @typedef CompanyThemeResponse
|
|
150
|
-
* @property {string} [_id] - The unique identifier for the theme.
|
|
151
|
-
* @property {string} [name] - The name of the theme.
|
|
152
|
-
* @property {string} [marketplace_theme_id]
|
|
153
|
-
* @property {number} [company_id] - The ID of the company that the theme belongs to.
|
|
154
|
-
* @property {CompanyThemeMeta} [meta]
|
|
155
|
-
* @property {string} [created_at] - The timestamp when the theme was created.
|
|
156
|
-
* @property {string} [updated_at] - The timestamp when the theme was last updated.
|
|
157
|
-
*/
|
|
158
49
|
/**
|
|
159
50
|
* @typedef MarketplaceThemeId
|
|
160
51
|
* @property {string} [_id] - The unique identifier for the marketplace theme.
|
|
@@ -196,7 +87,6 @@ export = ThemePlatformModel;
|
|
|
196
87
|
* @property {string} [_id]
|
|
197
88
|
* @property {string} [created_at] - The creation timestamp of the page
|
|
198
89
|
* @property {string} [updated_at] - The last update timestamp of the page
|
|
199
|
-
* @property {string} [application]
|
|
200
90
|
*/
|
|
201
91
|
/**
|
|
202
92
|
* @typedef AvailablePageSectionMetaAttributes
|
|
@@ -234,13 +124,11 @@ export = ThemePlatformModel;
|
|
|
234
124
|
* @property {string} [description]
|
|
235
125
|
* @property {SEOMetaItem[]} [meta_tags]
|
|
236
126
|
* @property {SEOSitemap} [sitemap]
|
|
237
|
-
* @property {SEObreadcrumb[]} [
|
|
127
|
+
* @property {SEObreadcrumb[]} [breadcrumb]
|
|
238
128
|
* @property {string} [_id]
|
|
239
|
-
* @property {string} [canonical_url]
|
|
240
129
|
*/
|
|
241
130
|
/**
|
|
242
131
|
* @typedef AvailablePageSchemaSections
|
|
243
|
-
* @property {string} [_id] - Unique Id for section.
|
|
244
132
|
* @property {string} [name]
|
|
245
133
|
* @property {string} [label]
|
|
246
134
|
* @property {Object} [props]
|
|
@@ -305,7 +193,7 @@ export = ThemePlatformModel;
|
|
|
305
193
|
*/
|
|
306
194
|
/**
|
|
307
195
|
* @typedef FontsSchema
|
|
308
|
-
* @property {
|
|
196
|
+
* @property {FontsSchemaItems} [items]
|
|
309
197
|
* @property {string} [kind]
|
|
310
198
|
*/
|
|
311
199
|
/**
|
|
@@ -326,7 +214,6 @@ export = ThemePlatformModel;
|
|
|
326
214
|
* @property {FontsSchemaItemsFiles} [files]
|
|
327
215
|
* @property {string} [category]
|
|
328
216
|
* @property {string} [kind]
|
|
329
|
-
* @property {string} [menu]
|
|
330
217
|
*/
|
|
331
218
|
/**
|
|
332
219
|
* @typedef FontsSchemaItemsFiles
|
|
@@ -351,7 +238,6 @@ export = ThemePlatformModel;
|
|
|
351
238
|
* @property {Object} [styles] - The styles associated with the theme
|
|
352
239
|
* @property {string} [created_at] - The creation timestamp of the theme
|
|
353
240
|
* @property {string} [updated_at] - The last update timestamp of the theme
|
|
354
|
-
* @property {Object[]} [global_sections]
|
|
355
241
|
* @property {Assets} [assets]
|
|
356
242
|
* @property {SectionItem[]} [available_sections] - Available sections information
|
|
357
243
|
* @property {string} [theme_type]
|
|
@@ -359,9 +245,9 @@ export = ThemePlatformModel;
|
|
|
359
245
|
* @property {string} [src]
|
|
360
246
|
*/
|
|
361
247
|
/**
|
|
362
|
-
* @typedef
|
|
248
|
+
* @typedef ThemeUpgradable
|
|
363
249
|
* @property {boolean} [upgrade] - Indicates if the theme is upgradable or not
|
|
364
|
-
* @property {
|
|
250
|
+
* @property {ThemeVersions} [versions]
|
|
365
251
|
* @property {string} [message] - A message describing the theme upgrade status
|
|
366
252
|
*/
|
|
367
253
|
/**
|
|
@@ -396,7 +282,7 @@ export = ThemePlatformModel;
|
|
|
396
282
|
* @property {string} current - The current configuration
|
|
397
283
|
* @property {ThemeConfiguration[]} list - A list of configurations
|
|
398
284
|
* @property {GlobalSchema} [global_schema]
|
|
399
|
-
* @property {
|
|
285
|
+
* @property {Preset} [preset]
|
|
400
286
|
*/
|
|
401
287
|
/**
|
|
402
288
|
* @typedef ThemeConfiguration
|
|
@@ -506,7 +392,6 @@ export = ThemePlatformModel;
|
|
|
506
392
|
/**
|
|
507
393
|
* @typedef Prop
|
|
508
394
|
* @property {string} [type] - The type of the property
|
|
509
|
-
* @property {Option[]} [options]
|
|
510
395
|
* @property {string} [category] - The category of the property
|
|
511
396
|
* @property {string} [value] - The value of the property
|
|
512
397
|
* @property {string} [id] - The ID of the property
|
|
@@ -538,7 +423,6 @@ export = ThemePlatformModel;
|
|
|
538
423
|
* @property {Object[]} [props]
|
|
539
424
|
* @property {Object[]} [blocks] - Blocks
|
|
540
425
|
* @property {string} [name] - Name of the section
|
|
541
|
-
* @property {SectionPreset} [preset]
|
|
542
426
|
* @property {string} [label] - Label for the section
|
|
543
427
|
*/
|
|
544
428
|
/**
|
|
@@ -633,7 +517,7 @@ export = ThemePlatformModel;
|
|
|
633
517
|
* @property {string} [applied_theme] - The version of the applied theme
|
|
634
518
|
*/
|
|
635
519
|
/**
|
|
636
|
-
* @typedef
|
|
520
|
+
* @typedef DummyTheme
|
|
637
521
|
* @property {string} [message]
|
|
638
522
|
*/
|
|
639
523
|
/**
|
|
@@ -654,11 +538,6 @@ export = ThemePlatformModel;
|
|
|
654
538
|
* @property {boolean} [is_private] - Whether the theme is private or not
|
|
655
539
|
* @property {CompanyThemeMeta} [meta]
|
|
656
540
|
*/
|
|
657
|
-
/**
|
|
658
|
-
* @typedef Option
|
|
659
|
-
* @property {string} [text]
|
|
660
|
-
* @property {string} [value]
|
|
661
|
-
*/
|
|
662
541
|
/**
|
|
663
542
|
* @typedef ActionPage
|
|
664
543
|
* @property {Object} [params] - Parameters that should be considered in path.
|
|
@@ -719,242 +598,8 @@ export = ThemePlatformModel;
|
|
|
719
598
|
declare class ThemePlatformModel {
|
|
720
599
|
}
|
|
721
600
|
declare namespace ThemePlatformModel {
|
|
722
|
-
export {
|
|
601
|
+
export { GetExtensionSectionRes, ExtensionSection, PropExtension, AssetsExtension, ThemeReq, CompanyThemeSchema, MarketplaceThemeId, CompanyThemeMeta, ThemePayment, ThemeImages, AvailablePageSchema, AvailablePageSectionMetaAttributes, SEOMetaItem, SEOMetaItems, SEOSitemap, SEObreadcrumb, Action, AvailablePageSeo, AvailablePageSchemaSections, SectionSource, AvailablePagePredicate, AvailablePageScreenPredicate, AvailablePageUserPredicate, AvailablePageRoutePredicate, AvailablePagePlatformPredicate, AvailablePageSchedulePredicate, AllAvailablePageSchema, AddThemeRequestSchema, FontsSchema, BlitzkriegApiErrorSchema, BlitzkriegInternalServerErrorSchema, FontsSchemaItems, FontsSchemaItemsFiles, ThemesSchema, ThemeUpgradable, UpdateThemeNameRequestBody, UpdateThemeRequestBody, Font, FontVariants, FontVariant, Config, ThemeConfiguration, OverlayPopup, DividerStrokeHighlight, UserAlerts, OrderTracking, ThemeConfigListPage, ThemeConfigListPageSettingsProps, CustomConfig, ThemeMeta, Release, Images, CustomProps, GlobalSchema, Prop, Assets, UMDJs, CommonJS, CSS, SectionItem, Preset, Page, Section, Block, Predicate, Screen, ThemeUserSchema, Route, SectionProps, SectionPreset, BlockProps, TextProp, CheckboxProp, RangeProp, ImagePickerProp, UrlProp, ThemeVersions, DummyTheme, AppliedThemes, CompanyPrivateTheme, ActionPage, PageType };
|
|
723
602
|
}
|
|
724
|
-
/** @returns {MarketplaceTheme} */
|
|
725
|
-
declare function MarketplaceTheme(): MarketplaceTheme;
|
|
726
|
-
type MarketplaceTheme = {
|
|
727
|
-
/**
|
|
728
|
-
* - Theme ID
|
|
729
|
-
*/
|
|
730
|
-
_id?: string;
|
|
731
|
-
payment?: PaymentInfo;
|
|
732
|
-
contact?: ContactInfo;
|
|
733
|
-
/**
|
|
734
|
-
* - Industries the theme is suitable for
|
|
735
|
-
*/
|
|
736
|
-
industry?: string[];
|
|
737
|
-
/**
|
|
738
|
-
* - Indicates if the theme is an update
|
|
739
|
-
*/
|
|
740
|
-
is_update?: boolean;
|
|
741
|
-
/**
|
|
742
|
-
* - Indicates if the theme is a default theme
|
|
743
|
-
*/
|
|
744
|
-
is_default?: boolean;
|
|
745
|
-
/**
|
|
746
|
-
* - Theme name
|
|
747
|
-
*/
|
|
748
|
-
name?: string;
|
|
749
|
-
/**
|
|
750
|
-
* - Theme tagline
|
|
751
|
-
*/
|
|
752
|
-
tagline?: string;
|
|
753
|
-
/**
|
|
754
|
-
* - Theme description
|
|
755
|
-
*/
|
|
756
|
-
description?: string;
|
|
757
|
-
catalog_size?: CatalogSize;
|
|
758
|
-
images?: MarketplaceThemeImages;
|
|
759
|
-
carousel?: CarouselItem[];
|
|
760
|
-
/**
|
|
761
|
-
* - Theme source URL
|
|
762
|
-
*/
|
|
763
|
-
src?: string;
|
|
764
|
-
explore?: ExploreInfo;
|
|
765
|
-
features?: Feature[];
|
|
766
|
-
highlights?: Highlight[];
|
|
767
|
-
variations?: Variation[];
|
|
768
|
-
documentation?: Documentation;
|
|
769
|
-
/**
|
|
770
|
-
* - Theme status
|
|
771
|
-
*/
|
|
772
|
-
status?: string;
|
|
773
|
-
/**
|
|
774
|
-
* - Theme step
|
|
775
|
-
*/
|
|
776
|
-
step?: number;
|
|
777
|
-
comments?: Comments;
|
|
778
|
-
release?: Release;
|
|
779
|
-
/**
|
|
780
|
-
* - Theme slug
|
|
781
|
-
*/
|
|
782
|
-
slug?: string;
|
|
783
|
-
/**
|
|
784
|
-
* - Organization ID
|
|
785
|
-
*/
|
|
786
|
-
organization_id?: string;
|
|
787
|
-
/**
|
|
788
|
-
* - User ID
|
|
789
|
-
*/
|
|
790
|
-
user_id?: string;
|
|
791
|
-
/**
|
|
792
|
-
* - Theme creation timestamp
|
|
793
|
-
*/
|
|
794
|
-
created_at?: string;
|
|
795
|
-
/**
|
|
796
|
-
* - Theme update timestamp
|
|
797
|
-
*/
|
|
798
|
-
updated_at?: string;
|
|
799
|
-
/**
|
|
800
|
-
* - Template theme ID
|
|
801
|
-
*/
|
|
802
|
-
template_theme_id?: string;
|
|
803
|
-
/**
|
|
804
|
-
* - Theme type
|
|
805
|
-
*/
|
|
806
|
-
theme_type?: string;
|
|
807
|
-
};
|
|
808
|
-
/** @returns {PaymentInfo} */
|
|
809
|
-
declare function PaymentInfo(): PaymentInfo;
|
|
810
|
-
type PaymentInfo = {
|
|
811
|
-
/**
|
|
812
|
-
* - Indicates if the theme is paid
|
|
813
|
-
*/
|
|
814
|
-
is_paid?: boolean;
|
|
815
|
-
/**
|
|
816
|
-
* - Amount of payment
|
|
817
|
-
*/
|
|
818
|
-
amount?: number;
|
|
819
|
-
};
|
|
820
|
-
/** @returns {ContactInfo} */
|
|
821
|
-
declare function ContactInfo(): ContactInfo;
|
|
822
|
-
type ContactInfo = {
|
|
823
|
-
/**
|
|
824
|
-
* - Developer contact information
|
|
825
|
-
*/
|
|
826
|
-
developer_contact?: string[];
|
|
827
|
-
/**
|
|
828
|
-
* - Seller contact information
|
|
829
|
-
*/
|
|
830
|
-
seller_contact?: string;
|
|
831
|
-
};
|
|
832
|
-
/** @returns {CatalogSize} */
|
|
833
|
-
declare function CatalogSize(): CatalogSize;
|
|
834
|
-
type CatalogSize = {
|
|
835
|
-
/**
|
|
836
|
-
* - Minimum catalog size
|
|
837
|
-
*/
|
|
838
|
-
min?: number;
|
|
839
|
-
/**
|
|
840
|
-
* - Maximum catalog size
|
|
841
|
-
*/
|
|
842
|
-
max?: number;
|
|
843
|
-
};
|
|
844
|
-
/** @returns {MarketplaceThemeImages} */
|
|
845
|
-
declare function MarketplaceThemeImages(): MarketplaceThemeImages;
|
|
846
|
-
type MarketplaceThemeImages = {
|
|
847
|
-
/**
|
|
848
|
-
* - Desktop theme image URL
|
|
849
|
-
*/
|
|
850
|
-
desktop?: string;
|
|
851
|
-
/**
|
|
852
|
-
* - Mobile theme image URL
|
|
853
|
-
*/
|
|
854
|
-
mobile?: string;
|
|
855
|
-
};
|
|
856
|
-
/** @returns {CarouselItem} */
|
|
857
|
-
declare function CarouselItem(): CarouselItem;
|
|
858
|
-
type CarouselItem = {
|
|
859
|
-
/**
|
|
860
|
-
* - Desktop carousel image URL
|
|
861
|
-
*/
|
|
862
|
-
desktop?: string;
|
|
863
|
-
/**
|
|
864
|
-
* - Mobile carousel image URL
|
|
865
|
-
*/
|
|
866
|
-
mobile?: string;
|
|
867
|
-
};
|
|
868
|
-
/** @returns {ExploreInfo} */
|
|
869
|
-
declare function ExploreInfo(): ExploreInfo;
|
|
870
|
-
type ExploreInfo = {
|
|
871
|
-
/**
|
|
872
|
-
* - Explore feature title
|
|
873
|
-
*/
|
|
874
|
-
title?: string;
|
|
875
|
-
/**
|
|
876
|
-
* - Explore feature description
|
|
877
|
-
*/
|
|
878
|
-
description?: string;
|
|
879
|
-
};
|
|
880
|
-
/** @returns {Feature} */
|
|
881
|
-
declare function Feature(): Feature;
|
|
882
|
-
type Feature = {
|
|
883
|
-
/**
|
|
884
|
-
* - Feature category
|
|
885
|
-
*/
|
|
886
|
-
category?: string;
|
|
887
|
-
list?: FeatureItem[];
|
|
888
|
-
};
|
|
889
|
-
/** @returns {FeatureItem} */
|
|
890
|
-
declare function FeatureItem(): FeatureItem;
|
|
891
|
-
type FeatureItem = {
|
|
892
|
-
/**
|
|
893
|
-
* - Feature properties
|
|
894
|
-
*/
|
|
895
|
-
label?: string;
|
|
896
|
-
/**
|
|
897
|
-
* - Feature description
|
|
898
|
-
*/
|
|
899
|
-
description?: string;
|
|
900
|
-
};
|
|
901
|
-
/** @returns {Highlight} */
|
|
902
|
-
declare function Highlight(): Highlight;
|
|
903
|
-
type Highlight = {
|
|
904
|
-
/**
|
|
905
|
-
* - Highlight title
|
|
906
|
-
*/
|
|
907
|
-
title?: string;
|
|
908
|
-
/**
|
|
909
|
-
* - Highlight description
|
|
910
|
-
*/
|
|
911
|
-
description?: string;
|
|
912
|
-
/**
|
|
913
|
-
* - Highlight image URL
|
|
914
|
-
*/
|
|
915
|
-
image?: string;
|
|
916
|
-
};
|
|
917
|
-
/** @returns {Variation} */
|
|
918
|
-
declare function Variation(): Variation;
|
|
919
|
-
type Variation = {
|
|
920
|
-
/**
|
|
921
|
-
* - Variation name
|
|
922
|
-
*/
|
|
923
|
-
name?: string;
|
|
924
|
-
/**
|
|
925
|
-
* - Variation color
|
|
926
|
-
*/
|
|
927
|
-
color?: string;
|
|
928
|
-
/**
|
|
929
|
-
* - Variation demo URL
|
|
930
|
-
*/
|
|
931
|
-
demo_url?: string;
|
|
932
|
-
images?: MarketplaceThemeImages;
|
|
933
|
-
};
|
|
934
|
-
/** @returns {Documentation} */
|
|
935
|
-
declare function Documentation(): Documentation;
|
|
936
|
-
type Documentation = {
|
|
937
|
-
/**
|
|
938
|
-
* - Documentation notes
|
|
939
|
-
*/
|
|
940
|
-
notes?: string;
|
|
941
|
-
/**
|
|
942
|
-
* - Documentation URL
|
|
943
|
-
*/
|
|
944
|
-
url?: string;
|
|
945
|
-
};
|
|
946
|
-
/** @returns {Comments} */
|
|
947
|
-
declare function Comments(): Comments;
|
|
948
|
-
type Comments = {
|
|
949
|
-
/**
|
|
950
|
-
* - Developer remark
|
|
951
|
-
*/
|
|
952
|
-
developer_remark?: string;
|
|
953
|
-
/**
|
|
954
|
-
* - Reviewer feedback
|
|
955
|
-
*/
|
|
956
|
-
reviewer_feedback?: string;
|
|
957
|
-
};
|
|
958
603
|
/** @returns {GetExtensionSectionRes} */
|
|
959
604
|
declare function GetExtensionSectionRes(): GetExtensionSectionRes;
|
|
960
605
|
type GetExtensionSectionRes = {
|
|
@@ -1026,40 +671,6 @@ type CompanyThemeSchema = {
|
|
|
1026
671
|
updated_at?: string;
|
|
1027
672
|
applied_themes?: AppliedThemes[];
|
|
1028
673
|
};
|
|
1029
|
-
/** @returns {CompanyThemeReqSchema} */
|
|
1030
|
-
declare function CompanyThemeReqSchema(): CompanyThemeReqSchema;
|
|
1031
|
-
type CompanyThemeReqSchema = {
|
|
1032
|
-
/**
|
|
1033
|
-
* - Theme id of the marketplace
|
|
1034
|
-
*/
|
|
1035
|
-
marketplace_theme_id?: string;
|
|
1036
|
-
};
|
|
1037
|
-
/** @returns {CompanyThemeResponse} */
|
|
1038
|
-
declare function CompanyThemeResponse(): CompanyThemeResponse;
|
|
1039
|
-
type CompanyThemeResponse = {
|
|
1040
|
-
/**
|
|
1041
|
-
* - The unique identifier for the theme.
|
|
1042
|
-
*/
|
|
1043
|
-
_id?: string;
|
|
1044
|
-
/**
|
|
1045
|
-
* - The name of the theme.
|
|
1046
|
-
*/
|
|
1047
|
-
name?: string;
|
|
1048
|
-
marketplace_theme_id?: string;
|
|
1049
|
-
/**
|
|
1050
|
-
* - The ID of the company that the theme belongs to.
|
|
1051
|
-
*/
|
|
1052
|
-
company_id?: number;
|
|
1053
|
-
meta?: CompanyThemeMeta;
|
|
1054
|
-
/**
|
|
1055
|
-
* - The timestamp when the theme was created.
|
|
1056
|
-
*/
|
|
1057
|
-
created_at?: string;
|
|
1058
|
-
/**
|
|
1059
|
-
* - The timestamp when the theme was last updated.
|
|
1060
|
-
*/
|
|
1061
|
-
updated_at?: string;
|
|
1062
|
-
};
|
|
1063
674
|
/** @returns {MarketplaceThemeId} */
|
|
1064
675
|
declare function MarketplaceThemeId(): MarketplaceThemeId;
|
|
1065
676
|
type MarketplaceThemeId = {
|
|
@@ -1145,7 +756,6 @@ type AvailablePageSchema = {
|
|
|
1145
756
|
* - The last update timestamp of the page
|
|
1146
757
|
*/
|
|
1147
758
|
updated_at?: string;
|
|
1148
|
-
application?: string;
|
|
1149
759
|
};
|
|
1150
760
|
/** @returns {AvailablePageSectionMetaAttributes} */
|
|
1151
761
|
declare function AvailablePageSectionMetaAttributes(): AvailablePageSectionMetaAttributes;
|
|
@@ -1193,17 +803,12 @@ type AvailablePageSeo = {
|
|
|
1193
803
|
description?: string;
|
|
1194
804
|
meta_tags?: SEOMetaItem[];
|
|
1195
805
|
sitemap?: SEOSitemap;
|
|
1196
|
-
|
|
806
|
+
breadcrumb?: SEObreadcrumb[];
|
|
1197
807
|
_id?: string;
|
|
1198
|
-
canonical_url?: string;
|
|
1199
808
|
};
|
|
1200
809
|
/** @returns {AvailablePageSchemaSections} */
|
|
1201
810
|
declare function AvailablePageSchemaSections(): AvailablePageSchemaSections;
|
|
1202
811
|
type AvailablePageSchemaSections = {
|
|
1203
|
-
/**
|
|
1204
|
-
* - Unique Id for section.
|
|
1205
|
-
*/
|
|
1206
|
-
_id?: string;
|
|
1207
812
|
name?: string;
|
|
1208
813
|
label?: string;
|
|
1209
814
|
props?: any;
|
|
@@ -1299,7 +904,7 @@ type AddThemeRequestSchema = {
|
|
|
1299
904
|
/** @returns {FontsSchema} */
|
|
1300
905
|
declare function FontsSchema(): FontsSchema;
|
|
1301
906
|
type FontsSchema = {
|
|
1302
|
-
items?:
|
|
907
|
+
items?: FontsSchemaItems;
|
|
1303
908
|
kind?: string;
|
|
1304
909
|
};
|
|
1305
910
|
/** @returns {BlitzkriegApiErrorSchema} */
|
|
@@ -1323,7 +928,6 @@ type FontsSchemaItems = {
|
|
|
1323
928
|
files?: FontsSchemaItemsFiles;
|
|
1324
929
|
category?: string;
|
|
1325
930
|
kind?: string;
|
|
1326
|
-
menu?: string;
|
|
1327
931
|
};
|
|
1328
932
|
/** @returns {FontsSchemaItemsFiles} */
|
|
1329
933
|
declare function FontsSchemaItemsFiles(): FontsSchemaItemsFiles;
|
|
@@ -1386,7 +990,6 @@ type ThemesSchema = {
|
|
|
1386
990
|
* - The last update timestamp of the theme
|
|
1387
991
|
*/
|
|
1388
992
|
updated_at?: string;
|
|
1389
|
-
global_sections?: any[];
|
|
1390
993
|
assets?: Assets;
|
|
1391
994
|
/**
|
|
1392
995
|
* - Available sections information
|
|
@@ -1399,14 +1002,14 @@ type ThemesSchema = {
|
|
|
1399
1002
|
company_id?: number;
|
|
1400
1003
|
src?: string;
|
|
1401
1004
|
};
|
|
1402
|
-
/** @returns {
|
|
1403
|
-
declare function
|
|
1404
|
-
type
|
|
1005
|
+
/** @returns {ThemeUpgradable} */
|
|
1006
|
+
declare function ThemeUpgradable(): ThemeUpgradable;
|
|
1007
|
+
type ThemeUpgradable = {
|
|
1405
1008
|
/**
|
|
1406
1009
|
* - Indicates if the theme is upgradable or not
|
|
1407
1010
|
*/
|
|
1408
1011
|
upgrade?: boolean;
|
|
1409
|
-
versions?:
|
|
1012
|
+
versions?: ThemeVersions;
|
|
1410
1013
|
/**
|
|
1411
1014
|
* - A message describing the theme upgrade status
|
|
1412
1015
|
*/
|
|
@@ -1468,10 +1071,7 @@ type Config = {
|
|
|
1468
1071
|
*/
|
|
1469
1072
|
list: ThemeConfiguration[];
|
|
1470
1073
|
global_schema?: GlobalSchema;
|
|
1471
|
-
|
|
1472
|
-
* - An Object of default theme configurations
|
|
1473
|
-
*/
|
|
1474
|
-
preset?: any;
|
|
1074
|
+
preset?: Preset;
|
|
1475
1075
|
};
|
|
1476
1076
|
/** @returns {ThemeConfiguration} */
|
|
1477
1077
|
declare function ThemeConfiguration(): ThemeConfiguration;
|
|
@@ -1721,7 +1321,6 @@ type Prop = {
|
|
|
1721
1321
|
* - The type of the property
|
|
1722
1322
|
*/
|
|
1723
1323
|
type?: string;
|
|
1724
|
-
options?: Option[];
|
|
1725
1324
|
/**
|
|
1726
1325
|
* - The category of the property
|
|
1727
1326
|
*/
|
|
@@ -1782,7 +1381,6 @@ type SectionItem = {
|
|
|
1782
1381
|
* - Name of the section
|
|
1783
1382
|
*/
|
|
1784
1383
|
name?: string;
|
|
1785
|
-
preset?: SectionPreset;
|
|
1786
1384
|
/**
|
|
1787
1385
|
* - Label for the section
|
|
1788
1386
|
*/
|
|
@@ -1965,9 +1563,9 @@ type ThemeVersions = {
|
|
|
1965
1563
|
*/
|
|
1966
1564
|
applied_theme?: string;
|
|
1967
1565
|
};
|
|
1968
|
-
/** @returns {
|
|
1969
|
-
declare function
|
|
1970
|
-
type
|
|
1566
|
+
/** @returns {DummyTheme} */
|
|
1567
|
+
declare function DummyTheme(): DummyTheme;
|
|
1568
|
+
type DummyTheme = {
|
|
1971
1569
|
message?: string;
|
|
1972
1570
|
};
|
|
1973
1571
|
/** @returns {AppliedThemes} */
|
|
@@ -2023,12 +1621,6 @@ type CompanyPrivateTheme = {
|
|
|
2023
1621
|
is_private?: boolean;
|
|
2024
1622
|
meta?: CompanyThemeMeta;
|
|
2025
1623
|
};
|
|
2026
|
-
/** @returns {Option} */
|
|
2027
|
-
declare function Option(): Option;
|
|
2028
|
-
type Option = {
|
|
2029
|
-
text?: string;
|
|
2030
|
-
value?: string;
|
|
2031
|
-
};
|
|
2032
1624
|
/** @returns {ActionPage} */
|
|
2033
1625
|
declare function ActionPage(): ActionPage;
|
|
2034
1626
|
type ActionPage = {
|