@gofynd/fdk-client-javascript 1.4.15-beta.14 → 1.4.15-beta.15
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 +23 -26
- package/package.json +5 -1
- package/sdk/application/ApplicationClient.d.ts +5 -6
- package/sdk/application/ApplicationClient.js +24 -20
- package/sdk/application/Cart/CartApplicationClient.d.ts +133 -83
- package/sdk/application/Cart/CartApplicationClient.js +444 -76
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +132 -114
- package/sdk/application/Catalog/CatalogApplicationClient.js +209 -126
- package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
- package/sdk/application/Common/CommonApplicationClient.js +4 -4
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +3 -3
- package/sdk/application/Communication/CommunicationApplicationClient.js +3 -3
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +58 -36
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +73 -29
- package/sdk/application/Content/ContentApplicationClient.d.ts +95 -66
- package/sdk/application/Content/ContentApplicationClient.js +274 -111
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +11 -11
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +10 -10
- package/sdk/application/Finance/FinanceApplicationClient.d.ts +29 -0
- package/sdk/application/Finance/FinanceApplicationClient.js +111 -0
- package/sdk/application/Lead/LeadApplicationClient.d.ts +7 -7
- package/sdk/application/Lead/LeadApplicationClient.js +6 -6
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +37 -57
- package/sdk/application/Logistic/LogisticApplicationClient.js +117 -180
- package/sdk/application/Order/OrderApplicationClient.d.ts +63 -21
- package/sdk/application/Order/OrderApplicationClient.js +217 -17
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +179 -149
- package/sdk/application/Payment/PaymentApplicationClient.js +301 -167
- package/sdk/application/Share/ShareApplicationClient.d.ts +7 -7
- package/sdk/application/Share/ShareApplicationClient.js +7 -7
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +7 -7
- package/sdk/application/Theme/ThemeApplicationClient.js +10 -6
- package/sdk/application/User/UserApplicationClient.d.ts +103 -53
- package/sdk/application/User/UserApplicationClient.js +308 -49
- package/sdk/common/AxiosHelper.js +11 -4
- package/sdk/common/Constant.d.ts +27 -4
- package/sdk/common/Constant.js +33 -6
- package/sdk/common/utils.d.ts +10 -0
- package/sdk/common/utils.js +24 -3
- package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +46 -16
- package/sdk/partner/FileStorage/FileStoragePartnerClient.js +266 -40
- package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +163 -19
- package/sdk/partner/FileStorage/FileStoragePartnerModel.js +158 -14
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +5 -2
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +23 -7
- package/sdk/partner/Lead/LeadPartnerClient.d.ts +9 -9
- package/sdk/partner/Lead/LeadPartnerClient.js +9 -9
- package/sdk/partner/Lead/LeadPartnerModel.d.ts +14 -9
- package/sdk/partner/Lead/LeadPartnerModel.js +19 -17
- package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +264 -49
- package/sdk/partner/Logistics/LogisticsPartnerClient.js +2116 -252
- package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +2256 -258
- package/sdk/partner/Logistics/LogisticsPartnerModel.js +1187 -230
- package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +21 -1
- package/sdk/partner/Logistics/LogisticsPartnerValidator.js +218 -13
- package/sdk/partner/PartnerClient.d.ts +5 -2
- package/sdk/partner/PartnerClient.js +21 -7
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +32 -34
- package/sdk/partner/Theme/ThemePartnerClient.js +42 -44
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +142 -43
- package/sdk/partner/Theme/ThemePartnerModel.js +129 -44
- package/sdk/partner/Theme/ThemePartnerValidator.js +4 -4
- package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +83 -27
- package/sdk/partner/Webhook/WebhookPartnerClient.js +446 -27
- package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +920 -185
- package/sdk/partner/Webhook/WebhookPartnerModel.js +462 -154
- package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +5 -0
- package/sdk/partner/Webhook/WebhookPartnerValidator.js +41 -3
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +8 -7
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +17 -11
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +4 -1
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +68 -13
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +44 -6
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +3 -33
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +4 -244
- 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 +15 -15
- package/sdk/platform/Billing/BillingPlatformClient.js +18 -18
- 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 +266 -203
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +1446 -500
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +729 -100
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +446 -82
- package/sdk/platform/Cart/CartPlatformModel.d.ts +6927 -1396
- package/sdk/platform/Cart/CartPlatformModel.js +3065 -1316
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +433 -248
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +1662 -559
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +464 -159
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +304 -87
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +383 -234
- package/sdk/platform/Catalog/CatalogPlatformClient.js +2475 -1557
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +9573 -2678
- package/sdk/platform/Catalog/CatalogPlatformModel.js +5033 -1973
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +364 -117
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +281 -104
- package/sdk/platform/Common/CommonPlatformClient.d.ts +5 -4
- package/sdk/platform/Common/CommonPlatformClient.js +6 -5
- package/sdk/platform/Common/CommonPlatformModel.d.ts +36 -25
- package/sdk/platform/Common/CommonPlatformModel.js +25 -14
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +80 -153
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +102 -541
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +36 -49
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +20 -60
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +1 -1
- package/sdk/platform/Communication/CommunicationPlatformClient.js +1 -1
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +189 -43
- package/sdk/platform/Communication/CommunicationPlatformModel.js +165 -42
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +58 -81
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +68 -116
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +291 -249
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +243 -234
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +12 -12
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +12 -12
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +78 -65
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +101 -88
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +20 -20
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +19 -19
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +68 -34
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +174 -41
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +667 -244
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +474 -155
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +37 -9
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +27 -8
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +366 -280
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +1435 -753
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +323 -223
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +335 -205
- package/sdk/platform/Content/ContentPlatformClient.d.ts +304 -106
- package/sdk/platform/Content/ContentPlatformClient.js +1842 -450
- package/sdk/platform/Content/ContentPlatformModel.d.ts +2582 -566
- package/sdk/platform/Content/ContentPlatformModel.js +1426 -558
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +293 -114
- package/sdk/platform/Content/ContentPlatformValidator.js +328 -101
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +59 -23
- package/sdk/platform/Discount/DiscountPlatformClient.js +84 -23
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +403 -110
- package/sdk/platform/Discount/DiscountPlatformModel.js +121 -107
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +56 -36
- package/sdk/platform/Discount/DiscountPlatformValidator.js +29 -19
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +12 -110
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +14 -684
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +5 -94
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +4 -115
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +20 -20
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +22 -22
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +90 -920
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +53 -949
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +10 -10
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +10 -10
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +11 -11
- package/sdk/platform/Lead/LeadPlatformClient.js +11 -11
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +14 -9
- package/sdk/platform/Lead/LeadPlatformModel.js +20 -18
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +56 -9
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +340 -10
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +128 -24
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +81 -19
- package/sdk/platform/Order/OrderPlatformClient.d.ts +517 -160
- package/sdk/platform/Order/OrderPlatformClient.js +1623 -384
- package/sdk/platform/Order/OrderPlatformModel.d.ts +10372 -1587
- package/sdk/platform/Order/OrderPlatformModel.js +5726 -1512
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +539 -123
- package/sdk/platform/Order/OrderPlatformValidator.js +323 -92
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +8 -6
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +11 -9
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +6 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +3 -2
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +77 -25
- package/sdk/platform/Partner/PartnerPlatformModel.js +32 -21
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +144 -219
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +307 -796
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +86 -121
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +80 -138
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +30 -30
- package/sdk/platform/Payment/PaymentPlatformClient.js +30 -30
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +901 -761
- package/sdk/platform/Payment/PaymentPlatformModel.js +663 -583
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +8 -8
- package/sdk/platform/Payment/PaymentPlatformValidator.js +8 -8
- package/sdk/platform/PlatformApplicationClient.d.ts +0 -2
- package/sdk/platform/PlatformApplicationClient.js +0 -4
- package/sdk/platform/PlatformClient.d.ts +5 -4
- package/sdk/platform/PlatformClient.js +32 -22
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +526 -69
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +3337 -337
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +603 -38
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +529 -32
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +184 -133
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +780 -491
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +9408 -1666
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +5720 -1765
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +257 -180
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +185 -127
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +7 -7
- package/sdk/platform/Share/SharePlatformApplicationClient.js +7 -7
- package/sdk/platform/Share/SharePlatformModel.d.ts +45 -9
- package/sdk/platform/Share/SharePlatformModel.js +31 -6
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +26 -26
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +38 -29
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +18 -3
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +10 -2
- package/sdk/platform/Theme/ThemePlatformClient.d.ts +4 -4
- package/sdk/platform/Theme/ThemePlatformClient.js +4 -4
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +103 -17
- package/sdk/platform/Theme/ThemePlatformModel.js +92 -23
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +167 -45
- package/sdk/platform/User/UserPlatformApplicationClient.js +950 -67
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +189 -3
- package/sdk/platform/User/UserPlatformApplicationValidator.js +157 -3
- package/sdk/platform/User/UserPlatformModel.d.ts +880 -47
- package/sdk/platform/User/UserPlatformModel.js +607 -46
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +33 -86
- package/sdk/platform/Webhook/WebhookPlatformClient.js +79 -474
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +861 -422
- package/sdk/platform/Webhook/WebhookPlatformModel.js +469 -391
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +10 -55
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +12 -72
- package/sdk/platform/index.d.ts +0 -2
- package/sdk/platform/index.js +0 -4
- 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 +5 -4
- package/sdk/public/Configuration/ConfigurationPublicClient.js +9 -8
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +41 -21
- package/sdk/public/Configuration/ConfigurationPublicModel.js +28 -12
- package/sdk/public/Content/ContentPublicClient.d.ts +145 -2
- package/sdk/public/Content/ContentPublicClient.js +1067 -17
- package/sdk/public/Content/ContentPublicModel.d.ts +704 -3
- package/sdk/public/Content/ContentPublicModel.js +751 -3
- package/sdk/public/Content/ContentPublicValidator.d.ts +94 -3
- package/sdk/public/Content/ContentPublicValidator.js +119 -2
- package/sdk/public/Partner/PartnerPublicClient.d.ts +1 -1
- package/sdk/public/Partner/PartnerPublicClient.js +1 -1
- 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 +5 -2
- package/sdk/public/PublicClient.js +16 -6
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +13 -13
- package/sdk/public/Webhook/WebhookPublicClient.js +13 -13
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +249 -67
- package/sdk/public/Webhook/WebhookPublicModel.js +81 -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/utility.d.ts +3 -0
- package/utility.js +7 -0
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +0 -79
- package/sdk/application/Rewards/RewardsApplicationClient.js +0 -315
- package/sdk/application/Webhook/WebhookApplicationClient.d.ts +0 -19
- package/sdk/application/Webhook/WebhookApplicationClient.js +0 -72
- 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 -2890
- package/sdk/platform/Finance/FinancePlatformModel.js +0 -2148
- package/sdk/platform/Finance/FinancePlatformValidator.d.ts +0 -284
- package/sdk/platform/Finance/FinancePlatformValidator.js +0 -354
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +0 -136
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +0 -976
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +0 -152
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +0 -157
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +0 -382
- package/sdk/platform/Rewards/RewardsPlatformModel.js +0 -408
|
@@ -91,6 +91,12 @@ export = ThemePlatformModel;
|
|
|
91
91
|
/**
|
|
92
92
|
* @typedef AvailablePageSectionMetaAttributes
|
|
93
93
|
* @property {Object} [attributes]
|
|
94
|
+
* @property {CanvasItem} [canvas]
|
|
95
|
+
*/
|
|
96
|
+
/**
|
|
97
|
+
* @typedef CanvasItem
|
|
98
|
+
* @property {string} [value]
|
|
99
|
+
* @property {string} [label]
|
|
94
100
|
*/
|
|
95
101
|
/**
|
|
96
102
|
* @typedef SEOMetaItem
|
|
@@ -131,11 +137,21 @@ export = ThemePlatformModel;
|
|
|
131
137
|
* @typedef AvailablePageSchemaSections
|
|
132
138
|
* @property {string} [name]
|
|
133
139
|
* @property {string} [label]
|
|
140
|
+
* @property {string} [canvas]
|
|
134
141
|
* @property {Object} [props]
|
|
142
|
+
* @property {string} [custom_css] - Custom CSS for a section
|
|
135
143
|
* @property {Object[]} [blocks]
|
|
136
144
|
* @property {Object} [preset]
|
|
137
145
|
* @property {AvailablePagePredicate} [predicate]
|
|
138
|
-
* @property {
|
|
146
|
+
* @property {SectionSource} [__source]
|
|
147
|
+
*/
|
|
148
|
+
/**
|
|
149
|
+
* @typedef SectionSource
|
|
150
|
+
* @property {string} [id] - The source id specifying the source of the section.
|
|
151
|
+
* @property {string} [bundle_name] - This is the extension binding name
|
|
152
|
+
* containing this section.
|
|
153
|
+
* @property {string} [type] - This is source type. It will either be
|
|
154
|
+
* themeBundle or extension.
|
|
139
155
|
*/
|
|
140
156
|
/**
|
|
141
157
|
* @typedef AvailablePagePredicate
|
|
@@ -237,7 +253,7 @@ export = ThemePlatformModel;
|
|
|
237
253
|
* @property {string} [src]
|
|
238
254
|
*/
|
|
239
255
|
/**
|
|
240
|
-
* @typedef
|
|
256
|
+
* @typedef ThemeUpgradable
|
|
241
257
|
* @property {boolean} [upgrade] - Indicates if the theme is upgradable or not
|
|
242
258
|
* @property {ThemeVersions} [versions]
|
|
243
259
|
* @property {string} [message] - A message describing the theme upgrade status
|
|
@@ -379,7 +395,16 @@ export = ThemePlatformModel;
|
|
|
379
395
|
*/
|
|
380
396
|
/**
|
|
381
397
|
* @typedef GlobalSchema
|
|
382
|
-
* @property {
|
|
398
|
+
* @property {Prop[]} [props]
|
|
399
|
+
*/
|
|
400
|
+
/**
|
|
401
|
+
* @typedef Prop
|
|
402
|
+
* @property {string} [type] - The type of the property
|
|
403
|
+
* @property {string} [category] - The category of the property
|
|
404
|
+
* @property {string} [value] - The value of the property
|
|
405
|
+
* @property {string} [id] - The ID of the property
|
|
406
|
+
* @property {string} [label] - The label of the property
|
|
407
|
+
* @property {string} [info] - Additional information about the property
|
|
383
408
|
*/
|
|
384
409
|
/**
|
|
385
410
|
* @typedef Assets
|
|
@@ -500,7 +525,7 @@ export = ThemePlatformModel;
|
|
|
500
525
|
* @property {string} [applied_theme] - The version of the applied theme
|
|
501
526
|
*/
|
|
502
527
|
/**
|
|
503
|
-
* @typedef
|
|
528
|
+
* @typedef DummyTheme
|
|
504
529
|
* @property {string} [message]
|
|
505
530
|
*/
|
|
506
531
|
/**
|
|
@@ -557,8 +582,8 @@ export = ThemePlatformModel;
|
|
|
557
582
|
* | "profile-order-shipment"
|
|
558
583
|
* | "profile-basic"
|
|
559
584
|
* | "profile-company"
|
|
560
|
-
* | "profile-
|
|
561
|
-
* | "profile-
|
|
585
|
+
* | "profile-email"
|
|
586
|
+
* | "profile-phone"
|
|
562
587
|
* | "rate-us"
|
|
563
588
|
* | "refer-earn"
|
|
564
589
|
* | "settings"
|
|
@@ -576,12 +601,15 @@ export = ThemePlatformModel;
|
|
|
576
601
|
* | "shipping-policy"
|
|
577
602
|
* | "return-policy"
|
|
578
603
|
* | "order-status"
|
|
579
|
-
* | "locate-us"
|
|
604
|
+
* | "locate-us"
|
|
605
|
+
* | "single-page-checkout"
|
|
606
|
+
* | "request-reattempt"
|
|
607
|
+
* | "files"} PageType
|
|
580
608
|
*/
|
|
581
609
|
declare class ThemePlatformModel {
|
|
582
610
|
}
|
|
583
611
|
declare namespace ThemePlatformModel {
|
|
584
|
-
export { GetExtensionSectionRes, ExtensionSection, PropExtension, AssetsExtension, ThemeReq, CompanyThemeSchema, MarketplaceThemeId, CompanyThemeMeta, ThemePayment, ThemeImages, AvailablePageSchema, AvailablePageSectionMetaAttributes, SEOMetaItem, SEOMetaItems, SEOSitemap, SEObreadcrumb, Action, AvailablePageSeo, AvailablePageSchemaSections, AvailablePagePredicate, AvailablePageScreenPredicate, AvailablePageUserPredicate, AvailablePageRoutePredicate, AvailablePagePlatformPredicate, AvailablePageSchedulePredicate, AllAvailablePageSchema, AddThemeRequestSchema, FontsSchema, BlitzkriegApiErrorSchema, BlitzkriegInternalServerErrorSchema, FontsSchemaItems, FontsSchemaItemsFiles, ThemesSchema,
|
|
612
|
+
export { GetExtensionSectionRes, ExtensionSection, PropExtension, AssetsExtension, ThemeReq, CompanyThemeSchema, MarketplaceThemeId, CompanyThemeMeta, ThemePayment, ThemeImages, AvailablePageSchema, AvailablePageSectionMetaAttributes, CanvasItem, 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 };
|
|
585
613
|
}
|
|
586
614
|
/** @returns {GetExtensionSectionRes} */
|
|
587
615
|
declare function GetExtensionSectionRes(): GetExtensionSectionRes;
|
|
@@ -744,6 +772,13 @@ type AvailablePageSchema = {
|
|
|
744
772
|
declare function AvailablePageSectionMetaAttributes(): AvailablePageSectionMetaAttributes;
|
|
745
773
|
type AvailablePageSectionMetaAttributes = {
|
|
746
774
|
attributes?: any;
|
|
775
|
+
canvas?: CanvasItem;
|
|
776
|
+
};
|
|
777
|
+
/** @returns {CanvasItem} */
|
|
778
|
+
declare function CanvasItem(): CanvasItem;
|
|
779
|
+
type CanvasItem = {
|
|
780
|
+
value?: string;
|
|
781
|
+
label?: string;
|
|
747
782
|
};
|
|
748
783
|
/** @returns {SEOMetaItem} */
|
|
749
784
|
declare function SEOMetaItem(): SEOMetaItem;
|
|
@@ -794,11 +829,34 @@ declare function AvailablePageSchemaSections(): AvailablePageSchemaSections;
|
|
|
794
829
|
type AvailablePageSchemaSections = {
|
|
795
830
|
name?: string;
|
|
796
831
|
label?: string;
|
|
832
|
+
canvas?: string;
|
|
797
833
|
props?: any;
|
|
834
|
+
/**
|
|
835
|
+
* - Custom CSS for a section
|
|
836
|
+
*/
|
|
837
|
+
custom_css?: string;
|
|
798
838
|
blocks?: any[];
|
|
799
839
|
preset?: any;
|
|
800
840
|
predicate?: AvailablePagePredicate;
|
|
801
|
-
|
|
841
|
+
__source?: SectionSource;
|
|
842
|
+
};
|
|
843
|
+
/** @returns {SectionSource} */
|
|
844
|
+
declare function SectionSource(): SectionSource;
|
|
845
|
+
type SectionSource = {
|
|
846
|
+
/**
|
|
847
|
+
* - The source id specifying the source of the section.
|
|
848
|
+
*/
|
|
849
|
+
id?: string;
|
|
850
|
+
/**
|
|
851
|
+
* - This is the extension binding name
|
|
852
|
+
* containing this section.
|
|
853
|
+
*/
|
|
854
|
+
bundle_name?: string;
|
|
855
|
+
/**
|
|
856
|
+
* - This is source type. It will either be
|
|
857
|
+
* themeBundle or extension.
|
|
858
|
+
*/
|
|
859
|
+
type?: string;
|
|
802
860
|
};
|
|
803
861
|
/** @returns {AvailablePagePredicate} */
|
|
804
862
|
declare function AvailablePagePredicate(): AvailablePagePredicate;
|
|
@@ -967,9 +1025,9 @@ type ThemesSchema = {
|
|
|
967
1025
|
company_id?: number;
|
|
968
1026
|
src?: string;
|
|
969
1027
|
};
|
|
970
|
-
/** @returns {
|
|
971
|
-
declare function
|
|
972
|
-
type
|
|
1028
|
+
/** @returns {ThemeUpgradable} */
|
|
1029
|
+
declare function ThemeUpgradable(): ThemeUpgradable;
|
|
1030
|
+
type ThemeUpgradable = {
|
|
973
1031
|
/**
|
|
974
1032
|
* - Indicates if the theme is upgradable or not
|
|
975
1033
|
*/
|
|
@@ -1277,7 +1335,35 @@ type CustomProps = {
|
|
|
1277
1335
|
/** @returns {GlobalSchema} */
|
|
1278
1336
|
declare function GlobalSchema(): GlobalSchema;
|
|
1279
1337
|
type GlobalSchema = {
|
|
1280
|
-
props?:
|
|
1338
|
+
props?: Prop[];
|
|
1339
|
+
};
|
|
1340
|
+
/** @returns {Prop} */
|
|
1341
|
+
declare function Prop(): Prop;
|
|
1342
|
+
type Prop = {
|
|
1343
|
+
/**
|
|
1344
|
+
* - The type of the property
|
|
1345
|
+
*/
|
|
1346
|
+
type?: string;
|
|
1347
|
+
/**
|
|
1348
|
+
* - The category of the property
|
|
1349
|
+
*/
|
|
1350
|
+
category?: string;
|
|
1351
|
+
/**
|
|
1352
|
+
* - The value of the property
|
|
1353
|
+
*/
|
|
1354
|
+
value?: string;
|
|
1355
|
+
/**
|
|
1356
|
+
* - The ID of the property
|
|
1357
|
+
*/
|
|
1358
|
+
id?: string;
|
|
1359
|
+
/**
|
|
1360
|
+
* - The label of the property
|
|
1361
|
+
*/
|
|
1362
|
+
label?: string;
|
|
1363
|
+
/**
|
|
1364
|
+
* - Additional information about the property
|
|
1365
|
+
*/
|
|
1366
|
+
info?: string;
|
|
1281
1367
|
};
|
|
1282
1368
|
/** @returns {Assets} */
|
|
1283
1369
|
declare function Assets(): Assets;
|
|
@@ -1500,9 +1586,9 @@ type ThemeVersions = {
|
|
|
1500
1586
|
*/
|
|
1501
1587
|
applied_theme?: string;
|
|
1502
1588
|
};
|
|
1503
|
-
/** @returns {
|
|
1504
|
-
declare function
|
|
1505
|
-
type
|
|
1589
|
+
/** @returns {DummyTheme} */
|
|
1590
|
+
declare function DummyTheme(): DummyTheme;
|
|
1591
|
+
type DummyTheme = {
|
|
1506
1592
|
message?: string;
|
|
1507
1593
|
};
|
|
1508
1594
|
/** @returns {AppliedThemes} */
|
|
@@ -1581,4 +1667,4 @@ type ActionPage = {
|
|
|
1581
1667
|
* @returns {PageType}
|
|
1582
1668
|
*/
|
|
1583
1669
|
declare function PageType(): PageType;
|
|
1584
|
-
type PageType = "about-us" | "addresses" | "blog" | "brands" | "cards" | "cart" | "categories" | "brand" | "category" | "collection" | "collections" | "custom" | "contact-us" | "external" | "faq" | "freshchat" | "home" | "notification-settings" | "orders" | "page" | "policy" | "product" | "product-request" | "products" | "profile" | "profile-order-shipment" | "profile-basic" | "profile-company" | "profile-
|
|
1670
|
+
type PageType = "about-us" | "addresses" | "blog" | "brands" | "cards" | "cart" | "categories" | "brand" | "category" | "collection" | "collections" | "custom" | "contact-us" | "external" | "faq" | "freshchat" | "home" | "notification-settings" | "orders" | "page" | "policy" | "product" | "product-request" | "products" | "profile" | "profile-order-shipment" | "profile-basic" | "profile-company" | "profile-email" | "profile-phone" | "rate-us" | "refer-earn" | "settings" | "shared-cart" | "tnc" | "track-order" | "wishlist" | "sections" | "form" | "cart-delivery" | "cart-payment" | "cart-review" | "login" | "register" | "shipping-policy" | "return-policy" | "order-status" | "locate-us" | "single-page-checkout" | "request-reattempt" | "files";
|
|
@@ -103,6 +103,13 @@ const Joi = require("joi");
|
|
|
103
103
|
/**
|
|
104
104
|
* @typedef AvailablePageSectionMetaAttributes
|
|
105
105
|
* @property {Object} [attributes]
|
|
106
|
+
* @property {CanvasItem} [canvas]
|
|
107
|
+
*/
|
|
108
|
+
|
|
109
|
+
/**
|
|
110
|
+
* @typedef CanvasItem
|
|
111
|
+
* @property {string} [value]
|
|
112
|
+
* @property {string} [label]
|
|
106
113
|
*/
|
|
107
114
|
|
|
108
115
|
/**
|
|
@@ -150,11 +157,22 @@ const Joi = require("joi");
|
|
|
150
157
|
* @typedef AvailablePageSchemaSections
|
|
151
158
|
* @property {string} [name]
|
|
152
159
|
* @property {string} [label]
|
|
160
|
+
* @property {string} [canvas]
|
|
153
161
|
* @property {Object} [props]
|
|
162
|
+
* @property {string} [custom_css] - Custom CSS for a section
|
|
154
163
|
* @property {Object[]} [blocks]
|
|
155
164
|
* @property {Object} [preset]
|
|
156
165
|
* @property {AvailablePagePredicate} [predicate]
|
|
157
|
-
* @property {
|
|
166
|
+
* @property {SectionSource} [__source]
|
|
167
|
+
*/
|
|
168
|
+
|
|
169
|
+
/**
|
|
170
|
+
* @typedef SectionSource
|
|
171
|
+
* @property {string} [id] - The source id specifying the source of the section.
|
|
172
|
+
* @property {string} [bundle_name] - This is the extension binding name
|
|
173
|
+
* containing this section.
|
|
174
|
+
* @property {string} [type] - This is source type. It will either be
|
|
175
|
+
* themeBundle or extension.
|
|
158
176
|
*/
|
|
159
177
|
|
|
160
178
|
/**
|
|
@@ -271,7 +289,7 @@ const Joi = require("joi");
|
|
|
271
289
|
*/
|
|
272
290
|
|
|
273
291
|
/**
|
|
274
|
-
* @typedef
|
|
292
|
+
* @typedef ThemeUpgradable
|
|
275
293
|
* @property {boolean} [upgrade] - Indicates if the theme is upgradable or not
|
|
276
294
|
* @property {ThemeVersions} [versions]
|
|
277
295
|
* @property {string} [message] - A message describing the theme upgrade status
|
|
@@ -432,7 +450,17 @@ const Joi = require("joi");
|
|
|
432
450
|
|
|
433
451
|
/**
|
|
434
452
|
* @typedef GlobalSchema
|
|
435
|
-
* @property {
|
|
453
|
+
* @property {Prop[]} [props]
|
|
454
|
+
*/
|
|
455
|
+
|
|
456
|
+
/**
|
|
457
|
+
* @typedef Prop
|
|
458
|
+
* @property {string} [type] - The type of the property
|
|
459
|
+
* @property {string} [category] - The category of the property
|
|
460
|
+
* @property {string} [value] - The value of the property
|
|
461
|
+
* @property {string} [id] - The ID of the property
|
|
462
|
+
* @property {string} [label] - The label of the property
|
|
463
|
+
* @property {string} [info] - Additional information about the property
|
|
436
464
|
*/
|
|
437
465
|
|
|
438
466
|
/**
|
|
@@ -576,7 +604,7 @@ const Joi = require("joi");
|
|
|
576
604
|
*/
|
|
577
605
|
|
|
578
606
|
/**
|
|
579
|
-
* @typedef
|
|
607
|
+
* @typedef DummyTheme
|
|
580
608
|
* @property {string} [message]
|
|
581
609
|
*/
|
|
582
610
|
|
|
@@ -637,8 +665,8 @@ const Joi = require("joi");
|
|
|
637
665
|
* | "profile-order-shipment"
|
|
638
666
|
* | "profile-basic"
|
|
639
667
|
* | "profile-company"
|
|
640
|
-
* | "profile-
|
|
641
|
-
* | "profile-
|
|
668
|
+
* | "profile-email"
|
|
669
|
+
* | "profile-phone"
|
|
642
670
|
* | "rate-us"
|
|
643
671
|
* | "refer-earn"
|
|
644
672
|
* | "settings"
|
|
@@ -656,7 +684,10 @@ const Joi = require("joi");
|
|
|
656
684
|
* | "shipping-policy"
|
|
657
685
|
* | "return-policy"
|
|
658
686
|
* | "order-status"
|
|
659
|
-
* | "locate-us"
|
|
687
|
+
* | "locate-us"
|
|
688
|
+
* | "single-page-checkout"
|
|
689
|
+
* | "request-reattempt"
|
|
690
|
+
* | "files"} PageType
|
|
660
691
|
*/
|
|
661
692
|
|
|
662
693
|
class ThemePlatformModel {
|
|
@@ -787,7 +818,16 @@ class ThemePlatformModel {
|
|
|
787
818
|
/** @returns {AvailablePageSectionMetaAttributes} */
|
|
788
819
|
static AvailablePageSectionMetaAttributes() {
|
|
789
820
|
return Joi.object({
|
|
790
|
-
attributes: Joi.any(),
|
|
821
|
+
attributes: Joi.object().pattern(/\S/, Joi.any()),
|
|
822
|
+
canvas: ThemePlatformModel.CanvasItem(),
|
|
823
|
+
});
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
/** @returns {CanvasItem} */
|
|
827
|
+
static CanvasItem() {
|
|
828
|
+
return Joi.object({
|
|
829
|
+
value: Joi.string().allow(""),
|
|
830
|
+
label: Joi.string().allow(""),
|
|
791
831
|
});
|
|
792
832
|
}
|
|
793
833
|
|
|
@@ -849,11 +889,22 @@ class ThemePlatformModel {
|
|
|
849
889
|
return Joi.object({
|
|
850
890
|
name: Joi.string().allow(""),
|
|
851
891
|
label: Joi.string().allow(""),
|
|
852
|
-
|
|
892
|
+
canvas: Joi.string().allow(""),
|
|
893
|
+
props: Joi.object().pattern(/\S/, Joi.any()),
|
|
894
|
+
custom_css: Joi.string().allow(""),
|
|
853
895
|
blocks: Joi.array().items(Joi.any()),
|
|
854
|
-
preset: Joi.any(),
|
|
896
|
+
preset: Joi.object().pattern(/\S/, Joi.any()),
|
|
855
897
|
predicate: ThemePlatformModel.AvailablePagePredicate(),
|
|
856
|
-
|
|
898
|
+
__source: ThemePlatformModel.SectionSource(),
|
|
899
|
+
});
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
/** @returns {SectionSource} */
|
|
903
|
+
static SectionSource() {
|
|
904
|
+
return Joi.object({
|
|
905
|
+
id: Joi.string().allow(""),
|
|
906
|
+
bundle_name: Joi.string().allow(""),
|
|
907
|
+
type: Joi.string().allow(""),
|
|
857
908
|
});
|
|
858
909
|
}
|
|
859
910
|
|
|
@@ -891,7 +942,7 @@ class ThemePlatformModel {
|
|
|
891
942
|
return Joi.object({
|
|
892
943
|
selected: Joi.string().allow(""),
|
|
893
944
|
exact_url: Joi.string().allow(""),
|
|
894
|
-
query: Joi.any(),
|
|
945
|
+
query: Joi.object().pattern(/\S/, Joi.any()),
|
|
895
946
|
});
|
|
896
947
|
}
|
|
897
948
|
|
|
@@ -987,7 +1038,7 @@ class ThemePlatformModel {
|
|
|
987
1038
|
name: Joi.string().allow(""),
|
|
988
1039
|
template_theme_id: Joi.string().allow(""),
|
|
989
1040
|
version: Joi.string().allow(""),
|
|
990
|
-
styles: Joi.any(),
|
|
1041
|
+
styles: Joi.object().pattern(/\S/, Joi.any()),
|
|
991
1042
|
created_at: Joi.string().allow(""),
|
|
992
1043
|
updated_at: Joi.string().allow(""),
|
|
993
1044
|
assets: ThemePlatformModel.Assets(),
|
|
@@ -998,8 +1049,8 @@ class ThemePlatformModel {
|
|
|
998
1049
|
});
|
|
999
1050
|
}
|
|
1000
1051
|
|
|
1001
|
-
/** @returns {
|
|
1002
|
-
static
|
|
1052
|
+
/** @returns {ThemeUpgradable} */
|
|
1053
|
+
static ThemeUpgradable() {
|
|
1003
1054
|
return Joi.object({
|
|
1004
1055
|
upgrade: Joi.boolean(),
|
|
1005
1056
|
versions: ThemePlatformModel.ThemeVersions(),
|
|
@@ -1065,7 +1116,7 @@ class ThemePlatformModel {
|
|
|
1065
1116
|
static ThemeConfiguration() {
|
|
1066
1117
|
return Joi.object({
|
|
1067
1118
|
name: Joi.string().allow(""),
|
|
1068
|
-
global_config: Joi.any(),
|
|
1119
|
+
global_config: Joi.object().pattern(/\S/, Joi.any()),
|
|
1069
1120
|
page: Joi.array().items(ThemePlatformModel.ThemeConfigListPage()),
|
|
1070
1121
|
});
|
|
1071
1122
|
}
|
|
@@ -1117,7 +1168,7 @@ class ThemePlatformModel {
|
|
|
1117
1168
|
/** @returns {ThemeConfigListPageSettingsProps} */
|
|
1118
1169
|
static ThemeConfigListPageSettingsProps() {
|
|
1119
1170
|
return Joi.object({
|
|
1120
|
-
props: Joi.any(),
|
|
1171
|
+
props: Joi.object().pattern(/\S/, Joi.any()),
|
|
1121
1172
|
});
|
|
1122
1173
|
}
|
|
1123
1174
|
|
|
@@ -1196,7 +1247,19 @@ class ThemePlatformModel {
|
|
|
1196
1247
|
/** @returns {GlobalSchema} */
|
|
1197
1248
|
static GlobalSchema() {
|
|
1198
1249
|
return Joi.object({
|
|
1199
|
-
props: Joi.array().items(
|
|
1250
|
+
props: Joi.array().items(ThemePlatformModel.Prop()),
|
|
1251
|
+
});
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1254
|
+
/** @returns {Prop} */
|
|
1255
|
+
static Prop() {
|
|
1256
|
+
return Joi.object({
|
|
1257
|
+
type: Joi.string().allow(""),
|
|
1258
|
+
category: Joi.string().allow(""),
|
|
1259
|
+
value: Joi.string().allow(""),
|
|
1260
|
+
id: Joi.string().allow(""),
|
|
1261
|
+
label: Joi.string().allow(""),
|
|
1262
|
+
info: Joi.string().allow(""),
|
|
1200
1263
|
});
|
|
1201
1264
|
}
|
|
1202
1265
|
|
|
@@ -1384,8 +1447,8 @@ class ThemePlatformModel {
|
|
|
1384
1447
|
});
|
|
1385
1448
|
}
|
|
1386
1449
|
|
|
1387
|
-
/** @returns {
|
|
1388
|
-
static
|
|
1450
|
+
/** @returns {DummyTheme} */
|
|
1451
|
+
static DummyTheme() {
|
|
1389
1452
|
return Joi.object({
|
|
1390
1453
|
message: Joi.string().allow(""),
|
|
1391
1454
|
});
|
|
@@ -1494,9 +1557,9 @@ class ThemePlatformModel {
|
|
|
1494
1557
|
|
|
1495
1558
|
"profile-company",
|
|
1496
1559
|
|
|
1497
|
-
"profile-
|
|
1560
|
+
"profile-email",
|
|
1498
1561
|
|
|
1499
|
-
"profile-
|
|
1562
|
+
"profile-phone",
|
|
1500
1563
|
|
|
1501
1564
|
"rate-us",
|
|
1502
1565
|
|
|
@@ -1532,7 +1595,13 @@ class ThemePlatformModel {
|
|
|
1532
1595
|
|
|
1533
1596
|
"order-status",
|
|
1534
1597
|
|
|
1535
|
-
"locate-us"
|
|
1598
|
+
"locate-us",
|
|
1599
|
+
|
|
1600
|
+
"single-page-checkout",
|
|
1601
|
+
|
|
1602
|
+
"request-reattempt",
|
|
1603
|
+
|
|
1604
|
+
"files"
|
|
1536
1605
|
);
|
|
1537
1606
|
}
|
|
1538
1607
|
}
|