@gofynd/fdk-client-javascript 1.0.1 → 1.0.3
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/documentation/application/CART.md +5934 -4502
- package/documentation/application/CATALOG.md +6338 -7245
- package/documentation/application/COMMON.md +95 -222
- package/documentation/application/COMMUNICATION.md +106 -186
- package/documentation/application/CONFIGURATION.md +903 -1597
- package/documentation/application/CONTENT.md +562 -1270
- package/documentation/application/FILESTORAGE.md +84 -220
- package/documentation/application/LEAD.md +314 -660
- package/documentation/application/LOGISTIC.md +229 -305
- package/documentation/application/ORDER.md +642 -1137
- package/documentation/application/PAYMENT.md +2285 -3031
- package/documentation/application/POSCART.md +6079 -4642
- package/documentation/application/REWARDS.md +94 -248
- package/documentation/application/SHARE.md +152 -250
- package/documentation/application/THEME.md +952 -1235
- package/documentation/application/USER.md +1228 -1765
- package/documentation/platform/ANALYTICS.md +207 -349
- package/documentation/platform/AUDITTRAIL.md +121 -204
- package/documentation/platform/BILLING.md +865 -1376
- package/documentation/platform/CART.md +2814 -3662
- package/documentation/platform/CATALOG.md +15266 -17619
- package/documentation/platform/COMMON.md +95 -222
- package/documentation/platform/COMMUNICATION.md +1632 -2380
- package/documentation/platform/COMPANYPROFILE.md +572 -957
- package/documentation/platform/CONFIGURATION.md +3050 -4073
- package/documentation/platform/CONTENT.md +3509 -4121
- package/documentation/platform/DISCOUNT.md +140 -236
- package/documentation/platform/FILESTORAGE.md +187 -323
- package/documentation/platform/INVENTORY.md +268 -911
- package/documentation/platform/LEAD.md +2195 -2541
- package/documentation/platform/ORDER.md +3750 -5636
- package/documentation/platform/PARTNER.md +9 -36
- package/documentation/platform/PAYMENT.md +903 -1213
- package/documentation/platform/REWARDS.md +183 -347
- package/documentation/platform/SHARE.md +120 -213
- package/documentation/platform/THEME.md +12956 -13239
- package/documentation/platform/USER.md +975 -1120
- package/documentation/platform/WEBHOOK.md +78 -184
- package/documentation/public/CONFIGURATION.md +95 -222
- package/documentation/public/INVENTORY.md +100 -282
- package/documentation/public/WEBHOOK.md +27 -133
- package/package.json +1 -1
- package/sdk/application/ApplicationConfig.js +1 -1
- package/sdk/application/Cart/CartApplicationClient.d.ts +243 -243
- package/sdk/application/Cart/CartApplicationClient.js +1058 -547
- package/sdk/application/Cart/CartApplicationModel.d.ts +64 -63
- package/sdk/application/Cart/CartApplicationModel.js +489 -886
- package/sdk/application/Cart/CartApplicationValidator.d.ts +17 -17
- package/sdk/application/Cart/CartApplicationValidator.js +98 -98
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +358 -358
- package/sdk/application/Catalog/CatalogApplicationClient.js +1545 -949
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +90 -90
- package/sdk/application/Catalog/CatalogApplicationModel.js +692 -1258
- package/sdk/application/Catalog/CatalogApplicationValidator.d.ts +19 -19
- package/sdk/application/Catalog/CatalogApplicationValidator.js +110 -110
- package/sdk/application/Common/CommonApplicationClient.d.ts +13 -13
- package/sdk/application/Common/CommonApplicationClient.js +76 -36
- package/sdk/application/Common/CommonApplicationModel.d.ts +12 -12
- package/sdk/application/Common/CommonApplicationModel.js +83 -160
- package/sdk/application/Common/CommonApplicationValidator.d.ts +1 -1
- package/sdk/application/Common/CommonApplicationValidator.js +6 -6
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +11 -11
- package/sdk/application/Communication/CommunicationApplicationClient.js +92 -31
- package/sdk/application/Communication/CommunicationApplicationModel.d.ts +6 -6
- package/sdk/application/Communication/CommunicationApplicationModel.js +38 -83
- package/sdk/application/Communication/CommunicationApplicationValidator.d.ts +1 -1
- package/sdk/application/Communication/CommunicationApplicationValidator.js +4 -4
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +116 -116
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +638 -312
- package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +85 -85
- package/sdk/application/Configuration/ConfigurationApplicationModel.js +480 -851
- package/sdk/application/Configuration/ConfigurationApplicationValidator.d.ts +8 -8
- package/sdk/application/Configuration/ConfigurationApplicationValidator.js +33 -33
- package/sdk/application/Content/ContentApplicationClient.d.ts +67 -67
- package/sdk/application/Content/ContentApplicationClient.js +581 -213
- package/sdk/application/Content/ContentApplicationModel.d.ts +76 -75
- package/sdk/application/Content/ContentApplicationModel.js +468 -875
- package/sdk/application/Content/ContentApplicationValidator.d.ts +5 -5
- package/sdk/application/Content/ContentApplicationValidator.js +24 -24
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +25 -25
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +121 -59
- package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +13 -13
- package/sdk/application/FileStorage/FileStorageApplicationModel.js +86 -169
- package/sdk/application/FileStorage/FileStorageApplicationValidator.d.ts +1 -1
- package/sdk/application/FileStorage/FileStorageApplicationValidator.js +7 -7
- package/sdk/application/Lead/LeadApplicationClient.d.ts +24 -24
- package/sdk/application/Lead/LeadApplicationClient.js +230 -96
- package/sdk/application/Lead/LeadApplicationModel.d.ts +35 -35
- package/sdk/application/Lead/LeadApplicationModel.js +267 -474
- package/sdk/application/Lead/LeadApplicationValidator.d.ts +2 -2
- package/sdk/application/Lead/LeadApplicationValidator.js +11 -11
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +30 -19
- package/sdk/application/Logistic/LogisticApplicationClient.js +196 -47
- package/sdk/application/Logistic/LogisticApplicationModel.d.ts +17 -14
- package/sdk/application/Logistic/LogisticApplicationModel.js +133 -201
- package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +3 -2
- package/sdk/application/Logistic/LogisticApplicationValidator.js +14 -8
- package/sdk/application/Order/OrderApplicationClient.d.ts +86 -86
- package/sdk/application/Order/OrderApplicationClient.js +448 -215
- package/sdk/application/Order/OrderApplicationModel.d.ts +50 -50
- package/sdk/application/Order/OrderApplicationModel.js +357 -661
- package/sdk/application/Order/OrderApplicationValidator.d.ts +7 -7
- package/sdk/application/Order/OrderApplicationValidator.js +28 -28
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +318 -318
- package/sdk/application/Payment/PaymentApplicationClient.js +1525 -750
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +72 -72
- package/sdk/application/Payment/PaymentApplicationModel.js +565 -1033
- package/sdk/application/Payment/PaymentApplicationValidator.d.ts +28 -28
- package/sdk/application/Payment/PaymentApplicationValidator.js +107 -107
- package/sdk/application/PosCart/PosCartApplicationClient.d.ts +254 -254
- package/sdk/application/PosCart/PosCartApplicationClient.js +1137 -606
- package/sdk/application/PosCart/PosCartApplicationModel.d.ts +61 -60
- package/sdk/application/PosCart/PosCartApplicationModel.js +477 -873
- package/sdk/application/PosCart/PosCartApplicationValidator.d.ts +18 -18
- package/sdk/application/PosCart/PosCartApplicationValidator.js +103 -103
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +27 -27
- package/sdk/application/Rewards/RewardsApplicationClient.js +253 -113
- package/sdk/application/Rewards/RewardsApplicationModel.d.ts +14 -14
- package/sdk/application/Rewards/RewardsApplicationModel.js +96 -191
- package/sdk/application/Rewards/RewardsApplicationValidator.d.ts +3 -3
- package/sdk/application/Rewards/RewardsApplicationValidator.js +12 -12
- package/sdk/application/Share/ShareApplicationClient.d.ts +37 -37
- package/sdk/application/Share/ShareApplicationClient.js +221 -96
- package/sdk/application/Share/ShareApplicationModel.d.ts +8 -8
- package/sdk/application/Share/ShareApplicationModel.js +63 -123
- package/sdk/application/Share/ShareApplicationValidator.d.ts +4 -4
- package/sdk/application/Share/ShareApplicationValidator.js +12 -12
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +8 -8
- package/sdk/application/Theme/ThemeApplicationClient.js +115 -37
- package/sdk/application/Theme/ThemeApplicationModel.d.ts +34 -34
- package/sdk/application/Theme/ThemeApplicationModel.js +190 -336
- package/sdk/application/Theme/ThemeApplicationValidator.d.ts +1 -1
- package/sdk/application/Theme/ThemeApplicationValidator.js +4 -4
- package/sdk/application/User/UserApplicationClient.d.ts +280 -280
- package/sdk/application/User/UserApplicationClient.js +1201 -543
- package/sdk/application/User/UserApplicationModel.d.ts +79 -72
- package/sdk/application/User/UserApplicationModel.js +440 -689
- package/sdk/application/User/UserApplicationValidator.d.ts +24 -24
- package/sdk/application/User/UserApplicationValidator.js +89 -89
- package/sdk/common/AxiosHelper.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +55 -47
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +308 -151
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +6 -6
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +20 -20
- package/sdk/platform/Analytics/AnalyticsPlatformClient.d.ts +8 -4
- package/sdk/platform/Analytics/AnalyticsPlatformClient.js +103 -16
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +11 -11
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +95 -178
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +16 -12
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +131 -44
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +10 -10
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +50 -89
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -1
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +6 -6
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +68 -56
- package/sdk/platform/Billing/BillingPlatformClient.js +416 -171
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +40 -40
- package/sdk/platform/Billing/BillingPlatformModel.js +342 -668
- package/sdk/platform/Billing/BillingPlatformValidator.d.ts +8 -8
- package/sdk/platform/Billing/BillingPlatformValidator.js +25 -25
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +176 -159
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +837 -500
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +11 -11
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +63 -63
- package/sdk/platform/Cart/CartPlatformModel.d.ts +86 -85
- package/sdk/platform/Cart/CartPlatformModel.js +677 -1211
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +582 -529
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +2642 -1533
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +40 -40
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +175 -175
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +708 -590
- package/sdk/platform/Catalog/CatalogPlatformClient.js +3103 -1362
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +293 -284
- package/sdk/platform/Catalog/CatalogPlatformModel.js +2149 -3660
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +66 -64
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +235 -216
- package/sdk/platform/Common/CommonPlatformClient.d.ts +14 -12
- package/sdk/platform/Common/CommonPlatformClient.js +80 -37
- package/sdk/platform/Common/CommonPlatformModel.d.ts +12 -12
- package/sdk/platform/Common/CommonPlatformModel.js +83 -160
- package/sdk/platform/Common/CommonPlatformValidator.d.ts +1 -1
- package/sdk/platform/Common/CommonPlatformValidator.js +6 -6
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +333 -293
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1687 -855
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +30 -30
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +87 -87
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +2 -1
- package/sdk/platform/Communication/CommunicationPlatformClient.js +28 -4
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +67 -67
- package/sdk/platform/Communication/CommunicationPlatformModel.js +522 -974
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +70 -57
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +463 -182
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +28 -28
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +294 -557
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +7 -7
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +24 -24
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +175 -137
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +1168 -521
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +22 -21
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +69 -63
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +137 -119
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +691 -316
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +148 -146
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +854 -1508
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +9 -9
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +38 -38
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +542 -461
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +2600 -1160
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +50 -49
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +159 -152
- package/sdk/platform/Content/ContentPlatformModel.d.ts +79 -75
- package/sdk/platform/Content/ContentPlatformModel.js +486 -867
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +72 -61
- package/sdk/platform/Discount/DiscountPlatformClient.js +424 -198
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +7 -7
- package/sdk/platform/Discount/DiscountPlatformModel.js +60 -121
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +6 -6
- package/sdk/platform/Discount/DiscountPlatformValidator.js +29 -29
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +26 -22
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +145 -59
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +1 -1
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +8 -8
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +58 -52
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +240 -114
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +13 -13
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +86 -169
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +3 -3
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +11 -11
- package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +76 -63
- package/sdk/platform/Inventory/InventoryPlatformClient.js +461 -197
- package/sdk/platform/Inventory/InventoryPlatformModel.d.ts +30 -30
- package/sdk/platform/Inventory/InventoryPlatformModel.js +497 -964
- package/sdk/platform/Inventory/InventoryPlatformValidator.d.ts +7 -7
- package/sdk/platform/Inventory/InventoryPlatformValidator.js +28 -28
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +84 -71
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +441 -182
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +7 -7
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +28 -28
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +86 -75
- package/sdk/platform/Lead/LeadPlatformClient.js +434 -212
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +35 -35
- package/sdk/platform/Lead/LeadPlatformModel.js +267 -474
- package/sdk/platform/Lead/LeadPlatformValidator.d.ts +6 -6
- package/sdk/platform/Lead/LeadPlatformValidator.js +24 -24
- package/sdk/platform/OAuthClient.js +8 -8
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +14 -11
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +113 -49
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +1 -1
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +6 -6
- package/sdk/platform/Order/OrderPlatformClient.d.ts +367 -315
- package/sdk/platform/Order/OrderPlatformClient.js +1775 -893
- package/sdk/platform/Order/OrderPlatformModel.d.ts +198 -192
- package/sdk/platform/Order/OrderPlatformModel.js +1591 -2822
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +32 -32
- package/sdk/platform/Order/OrderPlatformValidator.js +160 -155
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -2
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +52 -8
- package/sdk/platform/Partner/PartnerPlatformModel.js +6 -22
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +65 -54
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +395 -164
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +6 -6
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +23 -23
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +55 -45
- package/sdk/platform/Payment/PaymentPlatformClient.js +362 -147
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +27 -27
- package/sdk/platform/Payment/PaymentPlatformModel.js +220 -408
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +4 -4
- package/sdk/platform/Payment/PaymentPlatformValidator.js +21 -21
- package/sdk/platform/PlatformApplicationClient.d.ts +1496 -10153
- package/sdk/platform/PlatformApplicationClient.js +1584 -13691
- package/sdk/platform/PlatformClient.d.ts +7918 -7666
- package/sdk/platform/PlatformClient.js +8701 -9926
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +91 -78
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +507 -253
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +8 -8
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +34 -34
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +15 -15
- package/sdk/platform/Rewards/RewardsPlatformModel.js +92 -194
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +16 -12
- package/sdk/platform/Share/SharePlatformApplicationClient.js +130 -52
- package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +1 -1
- package/sdk/platform/Share/SharePlatformApplicationValidator.js +6 -6
- package/sdk/platform/Share/SharePlatformModel.d.ts +8 -8
- package/sdk/platform/Share/SharePlatformModel.js +60 -118
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +148 -124
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +770 -295
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +15 -15
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +44 -44
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +34 -34
- package/sdk/platform/Theme/ThemePlatformModel.js +190 -336
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +146 -67
- package/sdk/platform/User/UserPlatformApplicationClient.js +742 -155
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +12 -7
- package/sdk/platform/User/UserPlatformApplicationValidator.js +61 -23
- package/sdk/platform/User/UserPlatformModel.d.ts +79 -72
- package/sdk/platform/User/UserPlatformModel.js +440 -689
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +35 -29
- package/sdk/platform/Webhook/WebhookPlatformClient.js +218 -91
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +7 -7
- package/sdk/platform/Webhook/WebhookPlatformModel.js +68 -136
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +3 -3
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +14 -14
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +13 -13
- package/sdk/public/Configuration/ConfigurationPublicClient.js +81 -38
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +12 -12
- package/sdk/public/Configuration/ConfigurationPublicModel.js +85 -162
- package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +1 -1
- package/sdk/public/Configuration/ConfigurationPublicValidator.js +6 -6
- package/sdk/public/Inventory/InventoryPublicClient.d.ts +34 -34
- package/sdk/public/Inventory/InventoryPublicClient.js +228 -105
- package/sdk/public/Inventory/InventoryPublicModel.d.ts +10 -10
- package/sdk/public/Inventory/InventoryPublicModel.js +119 -245
- package/sdk/public/Inventory/InventoryPublicValidator.d.ts +3 -3
- package/sdk/public/Inventory/InventoryPublicValidator.js +15 -15
- package/sdk/public/Webhook/WebhookPublicClient.js +51 -10
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +7 -7
- package/sdk/public/Webhook/WebhookPublicModel.js +68 -136
- package/tests/application/catalog.spec.js +7 -0
|
@@ -12,21 +12,21 @@ Content System
|
|
|
12
12
|
* [getBlog](#getblog)
|
|
13
13
|
* [getBlogs](#getblogs)
|
|
14
14
|
* [getDataLoaders](#getdataloaders)
|
|
15
|
-
* [getFaqs](#getfaqs)
|
|
16
|
-
* [getFaqCategories](#getfaqcategories)
|
|
17
15
|
* [getFaqBySlug](#getfaqbyslug)
|
|
16
|
+
* [getFaqCategories](#getfaqcategories)
|
|
18
17
|
* [getFaqCategoryBySlug](#getfaqcategorybyslug)
|
|
18
|
+
* [getFaqs](#getfaqs)
|
|
19
19
|
* [getFaqsByCategorySlug](#getfaqsbycategoryslug)
|
|
20
20
|
* [getLandingPage](#getlandingpage)
|
|
21
21
|
* [getLegalInformation](#getlegalinformation)
|
|
22
22
|
* [getNavigations](#getnavigations)
|
|
23
|
+
* [getPage](#getpage)
|
|
24
|
+
* [getPages](#getpages)
|
|
23
25
|
* [getSEOConfiguration](#getseoconfiguration)
|
|
24
|
-
* [getSlideshows](#getslideshows)
|
|
25
26
|
* [getSlideshow](#getslideshow)
|
|
27
|
+
* [getSlideshows](#getslideshows)
|
|
26
28
|
* [getSupportInformation](#getsupportinformation)
|
|
27
29
|
* [getTags](#gettags)
|
|
28
|
-
* [getPage](#getpage)
|
|
29
|
-
* [getPages](#getpages)
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
|
|
@@ -405,64 +405,57 @@ Success. Returns a JSON object containing all the data loaders injected in the a
|
|
|
405
405
|
---
|
|
406
406
|
|
|
407
407
|
|
|
408
|
-
###
|
|
409
|
-
Get
|
|
408
|
+
### getFaqBySlug
|
|
409
|
+
Get an FAQ
|
|
410
410
|
|
|
411
411
|
|
|
412
412
|
|
|
413
413
|
```javascript
|
|
414
414
|
// Promise
|
|
415
|
-
const promise = content.
|
|
415
|
+
const promise = content.getFaqBySlug({ slug : value });
|
|
416
416
|
|
|
417
417
|
// Async/Await
|
|
418
|
-
const data = await content.
|
|
418
|
+
const data = await content.getFaqBySlug({ slug : value });
|
|
419
419
|
```
|
|
420
420
|
|
|
421
421
|
|
|
422
422
|
|
|
423
423
|
|
|
424
424
|
|
|
425
|
+
| Argument | Type | Required | Description |
|
|
426
|
+
| --------- | ----- | -------- | ----------- |
|
|
427
|
+
| slug | string | yes | A short, human-readable, URL-friendly identifier of an FAQ. You can get slug value from the endpoint /service/application/content/v1.0/faq. |
|
|
425
428
|
|
|
426
|
-
Use this API to get a list of frequently asked questions. Users will benefit from it when facing any issue with the website.
|
|
427
429
|
|
|
428
|
-
*Returned Response:*
|
|
429
430
|
|
|
431
|
+
Use this API to get a particular FAQ by its slug.
|
|
430
432
|
|
|
433
|
+
*Returned Response:*
|
|
431
434
|
|
|
432
435
|
|
|
433
|
-
[FaqResponseSchema](#FaqResponseSchema)
|
|
434
436
|
|
|
435
|
-
Success. Returns a JSON object with question and answers. Check the example shown below or refer `FaqResponseSchema` for more details.
|
|
436
437
|
|
|
438
|
+
[FaqSchema](#FaqSchema)
|
|
437
439
|
|
|
440
|
+
Success. Returns a question and answer by its slug. Check the example shown below or refer `FaqSchema` for more details.
|
|
438
441
|
|
|
439
442
|
|
|
440
|
-
<details>
|
|
441
|
-
<summary><i> Examples:</i></summary>
|
|
442
443
|
|
|
443
444
|
|
|
444
445
|
<details>
|
|
445
|
-
<summary><i>
|
|
446
|
+
<summary><i> Example:</i></summary>
|
|
446
447
|
|
|
447
448
|
```json
|
|
448
449
|
{
|
|
449
|
-
"
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
"answer": "1. Click on refer and earn image in fynd app\n2. Click on share the code\n3. Use any method for sharing\n4. Once the user activates the app with your code, both of you will get the refereal credits.",
|
|
455
|
-
"slug": "how to refer",
|
|
456
|
-
"application": "000000000000000000000001"
|
|
457
|
-
}
|
|
458
|
-
]
|
|
459
|
-
}
|
|
450
|
+
"_id": "5eb2db750a8ebf497e315028",
|
|
451
|
+
"question": "how to refer my friend",
|
|
452
|
+
"answer": "1. Click on refer and earn image in fynd app\n2. Click on share the code\n3. Use any method for sharing\n4. Once the user activates the app with your code, both of you will get the refereal credits.",
|
|
453
|
+
"slug": "how to refer",
|
|
454
|
+
"application": "000000000000000000000001"
|
|
460
455
|
}
|
|
461
456
|
```
|
|
462
457
|
</details>
|
|
463
458
|
|
|
464
|
-
</details>
|
|
465
|
-
|
|
466
459
|
|
|
467
460
|
|
|
468
461
|
|
|
@@ -538,17 +531,17 @@ Success. Returns a JSON object with categories of FAQ. Check the example shown b
|
|
|
538
531
|
---
|
|
539
532
|
|
|
540
533
|
|
|
541
|
-
###
|
|
542
|
-
Get
|
|
534
|
+
### getFaqCategoryBySlug
|
|
535
|
+
Get the FAQ category
|
|
543
536
|
|
|
544
537
|
|
|
545
538
|
|
|
546
539
|
```javascript
|
|
547
540
|
// Promise
|
|
548
|
-
const promise = content.
|
|
541
|
+
const promise = content.getFaqCategoryBySlug({ slug : value });
|
|
549
542
|
|
|
550
543
|
// Async/Await
|
|
551
|
-
const data = await content.
|
|
544
|
+
const data = await content.getFaqCategoryBySlug({ slug : value });
|
|
552
545
|
```
|
|
553
546
|
|
|
554
547
|
|
|
@@ -557,20 +550,20 @@ const data = await content.getFaqBySlug({ slug : value });
|
|
|
557
550
|
|
|
558
551
|
| Argument | Type | Required | Description |
|
|
559
552
|
| --------- | ----- | -------- | ----------- |
|
|
560
|
-
| slug | string | yes | A short, human-readable, URL-friendly identifier of an FAQ. You can get slug value from the endpoint /service/application/content/v1.0/faq. |
|
|
553
|
+
| slug | string | yes | A short, human-readable, URL-friendly identifier of an FAQ category. You can get slug value from the endpoint /service/application/content/v1.0/faq/categories. |
|
|
561
554
|
|
|
562
555
|
|
|
563
556
|
|
|
564
|
-
Use this API to get
|
|
557
|
+
FAQs can be divided into categories. Use this API to get the category to which an FAQ belongs.
|
|
565
558
|
|
|
566
559
|
*Returned Response:*
|
|
567
560
|
|
|
568
561
|
|
|
569
562
|
|
|
570
563
|
|
|
571
|
-
[
|
|
564
|
+
[GetFaqCategoryBySlugSchema](#GetFaqCategoryBySlugSchema)
|
|
572
565
|
|
|
573
|
-
Success. Returns a
|
|
566
|
+
Success. Returns a FAQ category with its slug. Check the example shown below or refer `GetFaqCategoryBySlugSchema` for more details.
|
|
574
567
|
|
|
575
568
|
|
|
576
569
|
|
|
@@ -580,11 +573,22 @@ Success. Returns a question and answer by its slug. Check the example shown belo
|
|
|
580
573
|
|
|
581
574
|
```json
|
|
582
575
|
{
|
|
583
|
-
"
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
576
|
+
"category": {
|
|
577
|
+
"index": 0,
|
|
578
|
+
"children": [
|
|
579
|
+
{
|
|
580
|
+
"_id": "6026426ae507768b168dee4b",
|
|
581
|
+
"question": "question 1",
|
|
582
|
+
"answer": "answer 1",
|
|
583
|
+
"slug": "question-1",
|
|
584
|
+
"application": "000000000000000000000001"
|
|
585
|
+
}
|
|
586
|
+
],
|
|
587
|
+
"_id": "60263f80c83c1f89f2863a8a",
|
|
588
|
+
"slug": "test",
|
|
589
|
+
"title": "Test",
|
|
590
|
+
"application": "000000000000000000000001"
|
|
591
|
+
}
|
|
588
592
|
}
|
|
589
593
|
```
|
|
590
594
|
</details>
|
|
@@ -600,68 +604,64 @@ Success. Returns a question and answer by its slug. Check the example shown belo
|
|
|
600
604
|
---
|
|
601
605
|
|
|
602
606
|
|
|
603
|
-
###
|
|
604
|
-
Get
|
|
607
|
+
### getFaqs
|
|
608
|
+
Get a list of FAQs
|
|
605
609
|
|
|
606
610
|
|
|
607
611
|
|
|
608
612
|
```javascript
|
|
609
613
|
// Promise
|
|
610
|
-
const promise = content.
|
|
614
|
+
const promise = content.getFaqs();
|
|
611
615
|
|
|
612
616
|
// Async/Await
|
|
613
|
-
const data = await content.
|
|
617
|
+
const data = await content.getFaqs();
|
|
614
618
|
```
|
|
615
619
|
|
|
616
620
|
|
|
617
621
|
|
|
618
622
|
|
|
619
623
|
|
|
620
|
-
| Argument | Type | Required | Description |
|
|
621
|
-
| --------- | ----- | -------- | ----------- |
|
|
622
|
-
| slug | string | yes | A short, human-readable, URL-friendly identifier of an FAQ category. You can get slug value from the endpoint /service/application/content/v1.0/faq/categories. |
|
|
623
624
|
|
|
625
|
+
Use this API to get a list of frequently asked questions. Users will benefit from it when facing any issue with the website.
|
|
624
626
|
|
|
627
|
+
*Returned Response:*
|
|
625
628
|
|
|
626
|
-
FAQs can be divided into categories. Use this API to get the category to which an FAQ belongs.
|
|
627
629
|
|
|
628
|
-
*Returned Response:*
|
|
629
630
|
|
|
630
631
|
|
|
632
|
+
[FaqResponseSchema](#FaqResponseSchema)
|
|
631
633
|
|
|
634
|
+
Success. Returns a JSON object with question and answers. Check the example shown below or refer `FaqResponseSchema` for more details.
|
|
632
635
|
|
|
633
|
-
[GetFaqCategoryBySlugSchema](#GetFaqCategoryBySlugSchema)
|
|
634
636
|
|
|
635
|
-
Success. Returns a FAQ category with its slug. Check the example shown below or refer `GetFaqCategoryBySlugSchema` for more details.
|
|
636
637
|
|
|
637
638
|
|
|
639
|
+
<details>
|
|
640
|
+
<summary><i> Examples:</i></summary>
|
|
638
641
|
|
|
639
642
|
|
|
640
643
|
<details>
|
|
641
|
-
<summary><i>
|
|
644
|
+
<summary><i> default</i></summary>
|
|
642
645
|
|
|
643
646
|
```json
|
|
644
647
|
{
|
|
645
|
-
"
|
|
646
|
-
"
|
|
647
|
-
"children": [
|
|
648
|
+
"value": {
|
|
649
|
+
"faqs": [
|
|
648
650
|
{
|
|
649
|
-
"_id": "
|
|
650
|
-
"question": "
|
|
651
|
-
"answer": "
|
|
652
|
-
"slug": "
|
|
651
|
+
"_id": "5eb2db750a8ebf497e315028",
|
|
652
|
+
"question": "how to refer my friend",
|
|
653
|
+
"answer": "1. Click on refer and earn image in fynd app\n2. Click on share the code\n3. Use any method for sharing\n4. Once the user activates the app with your code, both of you will get the refereal credits.",
|
|
654
|
+
"slug": "how to refer",
|
|
653
655
|
"application": "000000000000000000000001"
|
|
654
656
|
}
|
|
655
|
-
]
|
|
656
|
-
"_id": "60263f80c83c1f89f2863a8a",
|
|
657
|
-
"slug": "test",
|
|
658
|
-
"title": "Test",
|
|
659
|
-
"application": "000000000000000000000001"
|
|
657
|
+
]
|
|
660
658
|
}
|
|
661
659
|
}
|
|
662
660
|
```
|
|
663
661
|
</details>
|
|
664
662
|
|
|
663
|
+
</details>
|
|
664
|
+
|
|
665
665
|
|
|
666
666
|
|
|
667
667
|
|
|
@@ -1166,34 +1166,42 @@ Success. Returns a JSON object with navigation details. Check the example shown
|
|
|
1166
1166
|
---
|
|
1167
1167
|
|
|
1168
1168
|
|
|
1169
|
-
###
|
|
1170
|
-
Get
|
|
1169
|
+
### getPage
|
|
1170
|
+
Get a page
|
|
1171
1171
|
|
|
1172
1172
|
|
|
1173
1173
|
|
|
1174
1174
|
```javascript
|
|
1175
1175
|
// Promise
|
|
1176
|
-
const promise = content.
|
|
1176
|
+
const promise = content.getPage({ slug : value,
|
|
1177
|
+
rootId : value });
|
|
1177
1178
|
|
|
1178
1179
|
// Async/Await
|
|
1179
|
-
const data = await content.
|
|
1180
|
+
const data = await content.getPage({ slug : value,
|
|
1181
|
+
rootId : value });
|
|
1180
1182
|
```
|
|
1181
1183
|
|
|
1182
1184
|
|
|
1183
1185
|
|
|
1184
1186
|
|
|
1185
1187
|
|
|
1188
|
+
| Argument | Type | Required | Description |
|
|
1189
|
+
| --------- | ----- | -------- | ----------- |
|
|
1190
|
+
| slug | string | yes | A short, human-readable, URL-friendly identifier of a page. You can get slug value from the endpoint /service/application/content/v2.0/pages/. |
|
|
1191
|
+
| rootId | string | no | ID given to the HTML element |
|
|
1192
|
+
|
|
1193
|
+
|
|
1186
1194
|
|
|
1187
|
-
Use this API to get the
|
|
1195
|
+
Use this API to get the details of a page using its slug. Details include the title, seo, publish status, feature image, tags, meta, etc.
|
|
1188
1196
|
|
|
1189
1197
|
*Returned Response:*
|
|
1190
1198
|
|
|
1191
1199
|
|
|
1192
1200
|
|
|
1193
1201
|
|
|
1194
|
-
[
|
|
1202
|
+
[PageSchema](#PageSchema)
|
|
1195
1203
|
|
|
1196
|
-
Success. Returns a JSON object
|
|
1204
|
+
Success. Returns a JSON object with page details. Check the example shown below or refer `CustomPageSchema` for more details.
|
|
1197
1205
|
|
|
1198
1206
|
|
|
1199
1207
|
|
|
@@ -1203,35 +1211,50 @@ Success. Returns a JSON object SEO details such as robots.txt, meta-tags, and si
|
|
|
1203
1211
|
|
|
1204
1212
|
|
|
1205
1213
|
<details>
|
|
1206
|
-
<summary><i>
|
|
1214
|
+
<summary><i> default</i></summary>
|
|
1207
1215
|
|
|
1208
1216
|
```json
|
|
1209
1217
|
{
|
|
1210
1218
|
"value": {
|
|
1211
|
-
"
|
|
1212
|
-
"
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
"
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1219
|
+
"date_meta": {
|
|
1220
|
+
"created_on": "2021-03-16T08:24:19.197Z",
|
|
1221
|
+
"modified_on": "2021-03-16T08:24:19.197Z"
|
|
1222
|
+
},
|
|
1223
|
+
"tags": [
|
|
1224
|
+
"my first page"
|
|
1225
|
+
],
|
|
1226
|
+
"published": true,
|
|
1227
|
+
"component_ids": [],
|
|
1228
|
+
"archived": false,
|
|
1229
|
+
"_id": "60506dcad18cb33946026862",
|
|
1230
|
+
"title": "my first page",
|
|
1231
|
+
"slug": "1st_page",
|
|
1232
|
+
"feature_image": {
|
|
1233
|
+
"secure_url": "https://google.com/some-image"
|
|
1234
|
+
},
|
|
1235
|
+
"content_path": "https://hdn-1.fynd.com/company/1526/applications/61012f6a9250ccd1b9ef8a1d/pages/content/page_slug.html",
|
|
1236
|
+
"platform": "web",
|
|
1237
|
+
"description": "hey this is my first page",
|
|
1238
|
+
"visibility": {
|
|
1239
|
+
"test": true
|
|
1240
|
+
},
|
|
1241
|
+
"_schedule": {
|
|
1242
|
+
"start": "2021-04-23T23:50:00.000Z",
|
|
1243
|
+
"next_schedule": [
|
|
1244
|
+
{}
|
|
1233
1245
|
]
|
|
1234
|
-
}
|
|
1246
|
+
},
|
|
1247
|
+
"seo": {
|
|
1248
|
+
"title": "my first page",
|
|
1249
|
+
"description": "hey this is my first page",
|
|
1250
|
+
"image": {
|
|
1251
|
+
"url": ""
|
|
1252
|
+
}
|
|
1253
|
+
},
|
|
1254
|
+
"type": "rawhtml",
|
|
1255
|
+
"application": "000000000000000000000001",
|
|
1256
|
+
"orientation": "portrait",
|
|
1257
|
+
"page_meta": []
|
|
1235
1258
|
}
|
|
1236
1259
|
}
|
|
1237
1260
|
```
|
|
@@ -1250,18 +1273,18 @@ Success. Returns a JSON object SEO details such as robots.txt, meta-tags, and si
|
|
|
1250
1273
|
---
|
|
1251
1274
|
|
|
1252
1275
|
|
|
1253
|
-
###
|
|
1254
|
-
Get
|
|
1276
|
+
### getPages
|
|
1277
|
+
Get all pages
|
|
1255
1278
|
|
|
1256
1279
|
|
|
1257
1280
|
|
|
1258
1281
|
```javascript
|
|
1259
1282
|
// Promise
|
|
1260
|
-
const promise = content.
|
|
1283
|
+
const promise = content.getPages({ pageNo : value,
|
|
1261
1284
|
pageSize : value });
|
|
1262
1285
|
|
|
1263
1286
|
// Async/Await
|
|
1264
|
-
const data = await content.
|
|
1287
|
+
const data = await content.getPages({ pageNo : value,
|
|
1265
1288
|
pageSize : value });
|
|
1266
1289
|
```
|
|
1267
1290
|
|
|
@@ -1276,16 +1299,16 @@ const data = await content.getSlideshows({ pageNo : value,
|
|
|
1276
1299
|
|
|
1277
1300
|
|
|
1278
1301
|
|
|
1279
|
-
Use this API to get a list of
|
|
1302
|
+
Use this API to get a list of pages.
|
|
1280
1303
|
|
|
1281
1304
|
*Returned Response:*
|
|
1282
1305
|
|
|
1283
1306
|
|
|
1284
1307
|
|
|
1285
1308
|
|
|
1286
|
-
[
|
|
1309
|
+
[PageGetResponse](#PageGetResponse)
|
|
1287
1310
|
|
|
1288
|
-
Success. Check the example shown below or refer `
|
|
1311
|
+
Success. Returns a list of pages along with their details. Check the example shown below or refer `PageGetStorefrontResponse` for more details.
|
|
1289
1312
|
|
|
1290
1313
|
|
|
1291
1314
|
|
|
@@ -1303,44 +1326,38 @@ Success. Check the example shown below or refer `SlideshowGetResponse` for more
|
|
|
1303
1326
|
"items": [
|
|
1304
1327
|
{
|
|
1305
1328
|
"date_meta": {
|
|
1306
|
-
"created_on": "2021-03-
|
|
1307
|
-
"modified_on": "2021-03-
|
|
1329
|
+
"created_on": "2021-03-14T06:49:03.945Z",
|
|
1330
|
+
"modified_on": "2021-03-14T06:49:03.945Z"
|
|
1308
1331
|
},
|
|
1309
|
-
"
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1332
|
+
"tags": [
|
|
1333
|
+
"my first page"
|
|
1334
|
+
],
|
|
1335
|
+
"_id": "604db275b3ae202873964d94",
|
|
1336
|
+
"content_path": "https://hdn-1.fynd.com/company/1526/applications/61012f6a9250ccd1b9ef8a1d/pages/content/page_slug.html",
|
|
1337
|
+
"title": "test-page",
|
|
1338
|
+
"slug": "test-page",
|
|
1339
|
+
"published": true,
|
|
1340
|
+
"_schedule": {
|
|
1341
|
+
"next_schedule": [
|
|
1342
|
+
{}
|
|
1343
|
+
],
|
|
1344
|
+
"start": "2021-04-08T07:15:13.000Z",
|
|
1345
|
+
"end": "2021-04-10T02:00:00.000Z"
|
|
1316
1346
|
},
|
|
1317
|
-
"
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
"
|
|
1325
|
-
"duration": 10,
|
|
1326
|
-
"action": {
|
|
1327
|
-
"type": ""
|
|
1328
|
-
}
|
|
1329
|
-
},
|
|
1330
|
-
{
|
|
1331
|
-
"auto_decide_duration": true,
|
|
1332
|
-
"type": "youtube",
|
|
1333
|
-
"url": "https://www.youtube.com/embed/9vJRopau0g0",
|
|
1334
|
-
"bg_color": "#ffffff",
|
|
1335
|
-
"duration": 909,
|
|
1336
|
-
"action": {
|
|
1337
|
-
"type": ""
|
|
1338
|
-
}
|
|
1347
|
+
"feature_image": {
|
|
1348
|
+
"secure_url": "https://google.com/some-image"
|
|
1349
|
+
},
|
|
1350
|
+
"seo": {
|
|
1351
|
+
"title": "my first page",
|
|
1352
|
+
"description": "hey this is my first page",
|
|
1353
|
+
"image": {
|
|
1354
|
+
"url": ""
|
|
1339
1355
|
}
|
|
1340
|
-
|
|
1341
|
-
"application": "
|
|
1342
|
-
"
|
|
1343
|
-
|
|
1356
|
+
},
|
|
1357
|
+
"application": "000000000000000000000001",
|
|
1358
|
+
"author": {
|
|
1359
|
+
"name": "Abhinav Maurya"
|
|
1360
|
+
}
|
|
1344
1361
|
}
|
|
1345
1362
|
],
|
|
1346
1363
|
"page": {
|
|
@@ -1365,6 +1382,91 @@ Success. Check the example shown below or refer `SlideshowGetResponse` for more
|
|
|
1365
1382
|
|
|
1366
1383
|
|
|
1367
1384
|
|
|
1385
|
+
---
|
|
1386
|
+
|
|
1387
|
+
|
|
1388
|
+
### getSEOConfiguration
|
|
1389
|
+
Get the SEO of an application
|
|
1390
|
+
|
|
1391
|
+
|
|
1392
|
+
|
|
1393
|
+
```javascript
|
|
1394
|
+
// Promise
|
|
1395
|
+
const promise = content.getSEOConfiguration();
|
|
1396
|
+
|
|
1397
|
+
// Async/Await
|
|
1398
|
+
const data = await content.getSEOConfiguration();
|
|
1399
|
+
```
|
|
1400
|
+
|
|
1401
|
+
|
|
1402
|
+
|
|
1403
|
+
|
|
1404
|
+
|
|
1405
|
+
|
|
1406
|
+
Use this API to get the SEO details of an application, which includes a robot.txt, meta-tags and sitemap.
|
|
1407
|
+
|
|
1408
|
+
*Returned Response:*
|
|
1409
|
+
|
|
1410
|
+
|
|
1411
|
+
|
|
1412
|
+
|
|
1413
|
+
[SeoComponent](#SeoComponent)
|
|
1414
|
+
|
|
1415
|
+
Success. Returns a JSON object SEO details such as robots.txt, meta-tags, and sitemap. Check the example shown below or refer `SeoComponent` for more details.
|
|
1416
|
+
|
|
1417
|
+
|
|
1418
|
+
|
|
1419
|
+
|
|
1420
|
+
<details>
|
|
1421
|
+
<summary><i> Examples:</i></summary>
|
|
1422
|
+
|
|
1423
|
+
|
|
1424
|
+
<details>
|
|
1425
|
+
<summary><i> Success</i></summary>
|
|
1426
|
+
|
|
1427
|
+
```json
|
|
1428
|
+
{
|
|
1429
|
+
"value": {
|
|
1430
|
+
"seo": {
|
|
1431
|
+
"details": {
|
|
1432
|
+
"title": "Zyosa Zyosa"
|
|
1433
|
+
},
|
|
1434
|
+
"robots_txt": "User-agent: * \nAllow: / \nsancisciasn xwsaixjowqnxwsiwjs",
|
|
1435
|
+
"sitemap_enabled": false,
|
|
1436
|
+
"cannonical_enabled": false,
|
|
1437
|
+
"_id": "6009819ee463ad40de397eb2",
|
|
1438
|
+
"app": "000000000000000000000001",
|
|
1439
|
+
"created_at": "2021-01-21T13:29:02.543Z",
|
|
1440
|
+
"updated_at": "2021-02-05T06:36:16.048Z",
|
|
1441
|
+
"__v": 11,
|
|
1442
|
+
"custom_meta_tags": [
|
|
1443
|
+
{
|
|
1444
|
+
"name": "test 0000",
|
|
1445
|
+
"content": "<meta name=\"test\" content=\"0000 cn dcje dcj rejre cjrenurenc \">",
|
|
1446
|
+
"_id": "6017c301bde3c21dbb13b284"
|
|
1447
|
+
},
|
|
1448
|
+
{
|
|
1449
|
+
"name": "cwdcdc",
|
|
1450
|
+
"content": "<meta content=\"wdcewdewc\">",
|
|
1451
|
+
"_id": "6017c675bde3c22cfb13b290"
|
|
1452
|
+
}
|
|
1453
|
+
]
|
|
1454
|
+
}
|
|
1455
|
+
}
|
|
1456
|
+
}
|
|
1457
|
+
```
|
|
1458
|
+
</details>
|
|
1459
|
+
|
|
1460
|
+
</details>
|
|
1461
|
+
|
|
1462
|
+
|
|
1463
|
+
|
|
1464
|
+
|
|
1465
|
+
|
|
1466
|
+
|
|
1467
|
+
|
|
1468
|
+
|
|
1469
|
+
|
|
1368
1470
|
---
|
|
1369
1471
|
|
|
1370
1472
|
|
|
@@ -1471,34 +1573,42 @@ Success. Returns the details of how a slideshow is configured. Check the example
|
|
|
1471
1573
|
---
|
|
1472
1574
|
|
|
1473
1575
|
|
|
1474
|
-
###
|
|
1475
|
-
Get the
|
|
1576
|
+
### getSlideshows
|
|
1577
|
+
Get the slideshows
|
|
1476
1578
|
|
|
1477
1579
|
|
|
1478
1580
|
|
|
1479
1581
|
```javascript
|
|
1480
1582
|
// Promise
|
|
1481
|
-
const promise = content.
|
|
1583
|
+
const promise = content.getSlideshows({ pageNo : value,
|
|
1584
|
+
pageSize : value });
|
|
1482
1585
|
|
|
1483
1586
|
// Async/Await
|
|
1484
|
-
const data = await content.
|
|
1587
|
+
const data = await content.getSlideshows({ pageNo : value,
|
|
1588
|
+
pageSize : value });
|
|
1485
1589
|
```
|
|
1486
1590
|
|
|
1487
1591
|
|
|
1488
1592
|
|
|
1489
1593
|
|
|
1490
1594
|
|
|
1595
|
+
| Argument | Type | Required | Description |
|
|
1596
|
+
| --------- | ----- | -------- | ----------- |
|
|
1597
|
+
| pageNo | number | no | The page number to navigate through the given set of results. Default value is 1. |
|
|
1598
|
+
| pageSize | number | no | The number of items to retrieve in each page. |
|
|
1599
|
+
|
|
1491
1600
|
|
|
1492
|
-
|
|
1601
|
+
|
|
1602
|
+
Use this API to get a list of slideshows along with their details.
|
|
1493
1603
|
|
|
1494
1604
|
*Returned Response:*
|
|
1495
1605
|
|
|
1496
1606
|
|
|
1497
1607
|
|
|
1498
1608
|
|
|
1499
|
-
[
|
|
1609
|
+
[SlideshowGetResponse](#SlideshowGetResponse)
|
|
1500
1610
|
|
|
1501
|
-
Success.
|
|
1611
|
+
Success. Check the example shown below or refer `SlideshowGetResponse` for more details.
|
|
1502
1612
|
|
|
1503
1613
|
|
|
1504
1614
|
|
|
@@ -1513,28 +1623,56 @@ Success. Returns all support information including email and phone number. Check
|
|
|
1513
1623
|
```json
|
|
1514
1624
|
{
|
|
1515
1625
|
"value": {
|
|
1516
|
-
"
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
"
|
|
1524
|
-
"
|
|
1626
|
+
"items": [
|
|
1627
|
+
{
|
|
1628
|
+
"date_meta": {
|
|
1629
|
+
"created_on": "2021-03-14T05:27:12.319Z",
|
|
1630
|
+
"modified_on": "2021-03-14T05:27:12.319Z"
|
|
1631
|
+
},
|
|
1632
|
+
"archived": false,
|
|
1633
|
+
"_id": "604d9eb975e9d136bb1b8b83",
|
|
1634
|
+
"configuration": {
|
|
1635
|
+
"start_on_launch": false,
|
|
1636
|
+
"duration": 50,
|
|
1637
|
+
"sleep_time": 100,
|
|
1638
|
+
"slide_direction": "horizontal"
|
|
1639
|
+
},
|
|
1640
|
+
"slug": "ss-sfsd-updated",
|
|
1641
|
+
"platform": "ios",
|
|
1642
|
+
"media": [
|
|
1525
1643
|
{
|
|
1526
|
-
"
|
|
1527
|
-
"
|
|
1528
|
-
"
|
|
1644
|
+
"auto_decide_duration": false,
|
|
1645
|
+
"type": "image",
|
|
1646
|
+
"url": "https://res.cloudinary.com/dwzm9bysq/image/upload/v1567148153/production/system/icons/brands-tab_sfinpk.png",
|
|
1647
|
+
"bg_color": "#ffffff",
|
|
1648
|
+
"duration": 10,
|
|
1649
|
+
"action": {
|
|
1650
|
+
"type": ""
|
|
1651
|
+
}
|
|
1652
|
+
},
|
|
1653
|
+
{
|
|
1654
|
+
"auto_decide_duration": true,
|
|
1655
|
+
"type": "youtube",
|
|
1656
|
+
"url": "https://www.youtube.com/embed/9vJRopau0g0",
|
|
1657
|
+
"bg_color": "#ffffff",
|
|
1658
|
+
"duration": 909,
|
|
1659
|
+
"action": {
|
|
1660
|
+
"type": ""
|
|
1661
|
+
}
|
|
1529
1662
|
}
|
|
1530
|
-
]
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
"
|
|
1534
|
-
"email": []
|
|
1663
|
+
],
|
|
1664
|
+
"application": "5cd3db5e9d692cfe5302a7bb",
|
|
1665
|
+
"active": true,
|
|
1666
|
+
"__v": 0
|
|
1535
1667
|
}
|
|
1536
|
-
|
|
1537
|
-
"
|
|
1668
|
+
],
|
|
1669
|
+
"page": {
|
|
1670
|
+
"type": "number",
|
|
1671
|
+
"current": 1,
|
|
1672
|
+
"size": 1,
|
|
1673
|
+
"item_total": 2,
|
|
1674
|
+
"has_next": true
|
|
1675
|
+
}
|
|
1538
1676
|
}
|
|
1539
1677
|
}
|
|
1540
1678
|
```
|
|
@@ -1553,109 +1691,34 @@ Success. Returns all support information including email and phone number. Check
|
|
|
1553
1691
|
---
|
|
1554
1692
|
|
|
1555
1693
|
|
|
1556
|
-
###
|
|
1557
|
-
Get the
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
```javascript
|
|
1562
|
-
// Promise
|
|
1563
|
-
const promise = content.getTags();
|
|
1564
|
-
|
|
1565
|
-
// Async/Await
|
|
1566
|
-
const data = await content.getTags();
|
|
1567
|
-
```
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
Use this API to get all the CSS and JS injected in the application in the form of tags.
|
|
1575
|
-
|
|
1576
|
-
*Returned Response:*
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
[TagsSchema](#TagsSchema)
|
|
1582
|
-
|
|
1583
|
-
Success. Returns a JSON object containing all the tags injected in the application. Check the example shown below or refer `TagsSchema` for more details.
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
<details>
|
|
1589
|
-
<summary><i> Example:</i></summary>
|
|
1590
|
-
|
|
1591
|
-
```json
|
|
1592
|
-
{
|
|
1593
|
-
"application": "000000000000000000000001",
|
|
1594
|
-
"_id": "5f7c37b2dd0144bb3a353c5f",
|
|
1595
|
-
"tags": [
|
|
1596
|
-
{
|
|
1597
|
-
"name": "Tapfiliate JS",
|
|
1598
|
-
"sub_type": "external",
|
|
1599
|
-
"_id": "5f7c37b2dd0144f1f8353c60",
|
|
1600
|
-
"type": "js",
|
|
1601
|
-
"url": "https://script.tapfiliate.com/tapfiliate.js",
|
|
1602
|
-
"position": "body-bottom",
|
|
1603
|
-
"attributes": {
|
|
1604
|
-
"async": true
|
|
1605
|
-
}
|
|
1606
|
-
}
|
|
1607
|
-
]
|
|
1608
|
-
}
|
|
1609
|
-
```
|
|
1610
|
-
</details>
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
---
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
### getPage
|
|
1624
|
-
Get a page
|
|
1694
|
+
### getSupportInformation
|
|
1695
|
+
Get the support information
|
|
1625
1696
|
|
|
1626
1697
|
|
|
1627
1698
|
|
|
1628
1699
|
```javascript
|
|
1629
1700
|
// Promise
|
|
1630
|
-
const promise = content.
|
|
1631
|
-
rootId : value });
|
|
1701
|
+
const promise = content.getSupportInformation();
|
|
1632
1702
|
|
|
1633
1703
|
// Async/Await
|
|
1634
|
-
const data = await content.
|
|
1635
|
-
rootId : value });
|
|
1704
|
+
const data = await content.getSupportInformation();
|
|
1636
1705
|
```
|
|
1637
1706
|
|
|
1638
1707
|
|
|
1639
1708
|
|
|
1640
1709
|
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
| slug | string | yes | A short, human-readable, URL-friendly identifier of a page. You can get slug value from the endpoint /service/application/content/v2.0/pages/. |
|
|
1645
|
-
| rootId | string | no | ID given to the HTML element |
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
Use this API to get the details of a page using its slug. Details include the title, seo, publish status, feature image, tags, meta, etc.
|
|
1710
|
+
|
|
1711
|
+
|
|
1712
|
+
Use this API to get contact details for customer support including emails and phone numbers.
|
|
1650
1713
|
|
|
1651
1714
|
*Returned Response:*
|
|
1652
1715
|
|
|
1653
1716
|
|
|
1654
1717
|
|
|
1655
1718
|
|
|
1656
|
-
[
|
|
1719
|
+
[Support](#Support)
|
|
1657
1720
|
|
|
1658
|
-
Success. Returns
|
|
1721
|
+
Success. Returns all support information including email and phone number. Check the example shown below or refer `Support` for more details.
|
|
1659
1722
|
|
|
1660
1723
|
|
|
1661
1724
|
|
|
@@ -1670,45 +1733,28 @@ Success. Returns a JSON object with page details. Check the example shown below
|
|
|
1670
1733
|
```json
|
|
1671
1734
|
{
|
|
1672
1735
|
"value": {
|
|
1673
|
-
"
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
"
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
"visibility": {
|
|
1693
|
-
"test": true
|
|
1694
|
-
},
|
|
1695
|
-
"_schedule": {
|
|
1696
|
-
"start": "2021-04-23T23:50:00.000Z",
|
|
1697
|
-
"next_schedule": [
|
|
1698
|
-
{}
|
|
1699
|
-
]
|
|
1700
|
-
},
|
|
1701
|
-
"seo": {
|
|
1702
|
-
"title": "my first page",
|
|
1703
|
-
"description": "hey this is my first page",
|
|
1704
|
-
"image": {
|
|
1705
|
-
"url": ""
|
|
1736
|
+
"_id": "5ea4980b87a7944094216193",
|
|
1737
|
+
"config_type": "app",
|
|
1738
|
+
"application": "000000000000000000000001",
|
|
1739
|
+
"created_at": "2020-04-25T20:05:31.300Z",
|
|
1740
|
+
"updated_at": "2020-12-04T10:48:12.194Z",
|
|
1741
|
+
"contact": {
|
|
1742
|
+
"phone": {
|
|
1743
|
+
"active": true,
|
|
1744
|
+
"phone": [
|
|
1745
|
+
{
|
|
1746
|
+
"key": "Jane Doe",
|
|
1747
|
+
"code": "91",
|
|
1748
|
+
"number": "9988776655"
|
|
1749
|
+
}
|
|
1750
|
+
]
|
|
1751
|
+
},
|
|
1752
|
+
"email": {
|
|
1753
|
+
"active": false,
|
|
1754
|
+
"email": []
|
|
1706
1755
|
}
|
|
1707
1756
|
},
|
|
1708
|
-
"
|
|
1709
|
-
"application": "000000000000000000000001",
|
|
1710
|
-
"orientation": "portrait",
|
|
1711
|
-
"page_meta": []
|
|
1757
|
+
"created": true
|
|
1712
1758
|
}
|
|
1713
1759
|
}
|
|
1714
1760
|
```
|
|
@@ -1727,107 +1773,62 @@ Success. Returns a JSON object with page details. Check the example shown below
|
|
|
1727
1773
|
---
|
|
1728
1774
|
|
|
1729
1775
|
|
|
1730
|
-
###
|
|
1731
|
-
Get
|
|
1776
|
+
### getTags
|
|
1777
|
+
Get the tags associated with an application
|
|
1732
1778
|
|
|
1733
1779
|
|
|
1734
1780
|
|
|
1735
1781
|
```javascript
|
|
1736
1782
|
// Promise
|
|
1737
|
-
const promise = content.
|
|
1738
|
-
pageSize : value });
|
|
1783
|
+
const promise = content.getTags();
|
|
1739
1784
|
|
|
1740
1785
|
// Async/Await
|
|
1741
|
-
const data = await content.
|
|
1742
|
-
pageSize : value });
|
|
1786
|
+
const data = await content.getTags();
|
|
1743
1787
|
```
|
|
1744
1788
|
|
|
1745
1789
|
|
|
1746
1790
|
|
|
1747
1791
|
|
|
1748
1792
|
|
|
1749
|
-
| Argument | Type | Required | Description |
|
|
1750
|
-
| --------- | ----- | -------- | ----------- |
|
|
1751
|
-
| pageNo | number | no | The page number to navigate through the given set of results. Default value is 1. |
|
|
1752
|
-
| pageSize | number | no | The number of items to retrieve in each page. |
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
1793
|
|
|
1756
|
-
Use this API to get
|
|
1794
|
+
Use this API to get all the CSS and JS injected in the application in the form of tags.
|
|
1757
1795
|
|
|
1758
1796
|
*Returned Response:*
|
|
1759
1797
|
|
|
1760
1798
|
|
|
1761
1799
|
|
|
1762
1800
|
|
|
1763
|
-
[
|
|
1764
|
-
|
|
1765
|
-
Success. Returns a list of pages along with their details. Check the example shown below or refer `PageGetStorefrontResponse` for more details.
|
|
1766
|
-
|
|
1801
|
+
[TagsSchema](#TagsSchema)
|
|
1767
1802
|
|
|
1803
|
+
Success. Returns a JSON object containing all the tags injected in the application. Check the example shown below or refer `TagsSchema` for more details.
|
|
1768
1804
|
|
|
1769
1805
|
|
|
1770
|
-
<details>
|
|
1771
|
-
<summary><i> Examples:</i></summary>
|
|
1772
1806
|
|
|
1773
1807
|
|
|
1774
1808
|
<details>
|
|
1775
|
-
<summary><i>
|
|
1809
|
+
<summary><i> Example:</i></summary>
|
|
1776
1810
|
|
|
1777
1811
|
```json
|
|
1778
1812
|
{
|
|
1779
|
-
"
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
"
|
|
1791
|
-
"title": "test-page",
|
|
1792
|
-
"slug": "test-page",
|
|
1793
|
-
"published": true,
|
|
1794
|
-
"_schedule": {
|
|
1795
|
-
"next_schedule": [
|
|
1796
|
-
{}
|
|
1797
|
-
],
|
|
1798
|
-
"start": "2021-04-08T07:15:13.000Z",
|
|
1799
|
-
"end": "2021-04-10T02:00:00.000Z"
|
|
1800
|
-
},
|
|
1801
|
-
"feature_image": {
|
|
1802
|
-
"secure_url": "https://google.com/some-image"
|
|
1803
|
-
},
|
|
1804
|
-
"seo": {
|
|
1805
|
-
"title": "my first page",
|
|
1806
|
-
"description": "hey this is my first page",
|
|
1807
|
-
"image": {
|
|
1808
|
-
"url": ""
|
|
1809
|
-
}
|
|
1810
|
-
},
|
|
1811
|
-
"application": "000000000000000000000001",
|
|
1812
|
-
"author": {
|
|
1813
|
-
"name": "Abhinav Maurya"
|
|
1814
|
-
}
|
|
1813
|
+
"application": "000000000000000000000001",
|
|
1814
|
+
"_id": "5f7c37b2dd0144bb3a353c5f",
|
|
1815
|
+
"tags": [
|
|
1816
|
+
{
|
|
1817
|
+
"name": "Tapfiliate JS",
|
|
1818
|
+
"sub_type": "external",
|
|
1819
|
+
"_id": "5f7c37b2dd0144f1f8353c60",
|
|
1820
|
+
"type": "js",
|
|
1821
|
+
"url": "https://script.tapfiliate.com/tapfiliate.js",
|
|
1822
|
+
"position": "body-bottom",
|
|
1823
|
+
"attributes": {
|
|
1824
|
+
"async": true
|
|
1815
1825
|
}
|
|
1816
|
-
],
|
|
1817
|
-
"page": {
|
|
1818
|
-
"type": "number",
|
|
1819
|
-
"current": 1,
|
|
1820
|
-
"size": 1,
|
|
1821
|
-
"item_total": 2,
|
|
1822
|
-
"has_next": true
|
|
1823
1826
|
}
|
|
1824
|
-
|
|
1827
|
+
]
|
|
1825
1828
|
}
|
|
1826
1829
|
```
|
|
1827
1830
|
</details>
|
|
1828
1831
|
|
|
1829
|
-
</details>
|
|
1830
|
-
|
|
1831
1832
|
|
|
1832
1833
|
|
|
1833
1834
|
|
|
@@ -1842,1427 +1843,718 @@ Success. Returns a list of pages along with their details. Check the example sho
|
|
|
1842
1843
|
|
|
1843
1844
|
### Schemas
|
|
1844
1845
|
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
#### [ApplicationLegal](#ApplicationLegal)
|
|
1846
|
+
|
|
1847
|
+
#### [Action](#Action)
|
|
1848
1848
|
|
|
1849
1849
|
| Properties | Type | Nullable | Description |
|
|
1850
|
-
| ---------- | ---- | -------- | ----------- |
|
|
1851
|
-
| application | string | no | |
|
|
1852
|
-
| tnc | string | no | |
|
|
1853
|
-
| policy | string | no | |
|
|
1854
|
-
| shipping | string | no | |
|
|
1855
|
-
| returns | string | no | |
|
|
1856
|
-
| faq | [[ApplicationLegalFAQ](#ApplicationLegalFAQ)] | no | |
|
|
1857
|
-
| _id | string | no | |
|
|
1858
|
-
| updated_at | string | no | |
|
|
1859
|
-
| created_at | string | no | |
|
|
1850
|
+
| ---------- | ---- | -------- | ----------- || page | [ActionPage](#ActionPage) | no | || popup | [ActionPage](#ActionPage) | no | || type | string | no | |
|
|
1860
1851
|
|
|
1861
1852
|
---
|
|
1862
1853
|
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
#### [ApplicationLegalFAQ](#ApplicationLegalFAQ)
|
|
1854
|
+
#### [ActionPage](#ActionPage)
|
|
1867
1855
|
|
|
1868
1856
|
| Properties | Type | Nullable | Description |
|
|
1869
|
-
| ---------- | ---- | -------- | ----------- |
|
|
1870
|
-
| question | string | no | |
|
|
1871
|
-
| answer | string | no | |
|
|
1857
|
+
| ---------- | ---- | -------- | ----------- || params | [String: [string]] | no | || query | [String: [string]] | no | || type | string | no | || url | string | no | |
|
|
1872
1858
|
|
|
1873
1859
|
---
|
|
1874
1860
|
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
#### [PathMappingSchema](#PathMappingSchema)
|
|
1861
|
+
#### [AdminAnnouncementSchema](#AdminAnnouncementSchema)
|
|
1879
1862
|
|
|
1880
1863
|
| Properties | Type | Nullable | Description |
|
|
1881
|
-
| ---------- | ---- | -------- | ----------- |
|
|
1882
|
-
| application | string | no | |
|
|
1883
|
-
| _id | string | no | |
|
|
1884
|
-
| redirect_from | string | no | |
|
|
1885
|
-
| redirect_to | string | no | |
|
|
1886
|
-
| updated_at | string | no | |
|
|
1887
|
-
| created_at | string | no | |
|
|
1888
|
-
| __source | [TagSourceSchema](#TagSourceSchema) | no | |
|
|
1864
|
+
| ---------- | ---- | -------- | ----------- || _id | string | no | || _schedule | [ScheduleSchema](#ScheduleSchema) | no | || announcement | string | no | || app | string | no | || author | [AnnouncementAuthorSchema](#AnnouncementAuthorSchema) | no | || created_at | string | no | || editor_meta | [EditorMeta](#EditorMeta) | no | || modified_at | string | no | || pages | [[AnnouncementPageSchema](#AnnouncementPageSchema)] | no | || platforms | [string] | no | || title | string | no | |
|
|
1889
1865
|
|
|
1890
1866
|
---
|
|
1891
1867
|
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
#### [SeoComponent](#SeoComponent)
|
|
1868
|
+
#### [AnnouncementAuthorSchema](#AnnouncementAuthorSchema)
|
|
1896
1869
|
|
|
1897
1870
|
| Properties | Type | Nullable | Description |
|
|
1898
|
-
| ---------- | ---- | -------- | ----------- |
|
|
1899
|
-
| seo | [SeoSchema](#SeoSchema) | no | |
|
|
1871
|
+
| ---------- | ---- | -------- | ----------- || created_by | string | no | || modified_by | string | no | |
|
|
1900
1872
|
|
|
1901
1873
|
---
|
|
1902
1874
|
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
#### [SeoSchema](#SeoSchema)
|
|
1875
|
+
#### [AnnouncementPageSchema](#AnnouncementPageSchema)
|
|
1907
1876
|
|
|
1908
1877
|
| Properties | Type | Nullable | Description |
|
|
1909
|
-
| ---------- | ---- | -------- | ----------- |
|
|
1910
|
-
| app | string | no | |
|
|
1911
|
-
| _id | string | no | |
|
|
1912
|
-
| robots_txt | string | no | |
|
|
1913
|
-
| sitemap_enabled | boolean | no | |
|
|
1914
|
-
| custom_meta_tags | [[CustomMetaTag](#CustomMetaTag)] | no | |
|
|
1915
|
-
| details | [Detail](#Detail) | no | |
|
|
1916
|
-
| created_at | string | no | |
|
|
1917
|
-
| updated_at | string | no | |
|
|
1878
|
+
| ---------- | ---- | -------- | ----------- || page_slug | string | no | || type | string | no | |
|
|
1918
1879
|
|
|
1919
1880
|
---
|
|
1920
1881
|
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
#### [CustomMetaTag](#CustomMetaTag)
|
|
1882
|
+
#### [AnnouncementSchema](#AnnouncementSchema)
|
|
1925
1883
|
|
|
1926
1884
|
| Properties | Type | Nullable | Description |
|
|
1927
|
-
| ---------- | ---- | -------- | ----------- |
|
|
1928
|
-
| name | string | no | |
|
|
1929
|
-
| content | string | no | |
|
|
1930
|
-
| _id | string | no | |
|
|
1885
|
+
| ---------- | ---- | -------- | ----------- || announcement | string | no | || schedule | [ScheduleStartSchema](#ScheduleStartSchema) | no | |
|
|
1931
1886
|
|
|
1932
1887
|
---
|
|
1933
1888
|
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
#### [Detail](#Detail)
|
|
1889
|
+
#### [AnnouncementsResponseSchema](#AnnouncementsResponseSchema)
|
|
1938
1890
|
|
|
1939
1891
|
| Properties | Type | Nullable | Description |
|
|
1940
|
-
| ---------- | ---- | -------- | ----------- |
|
|
1941
|
-
| title | string | no | |
|
|
1942
|
-
| description | string | no | |
|
|
1892
|
+
| ---------- | ---- | -------- | ----------- || announcements | [String: [[AnnouncementSchema](#AnnouncementSchema)]] | no | || refresh_pages | [string] | no | || refresh_rate | number | no | |
|
|
1943
1893
|
|
|
1944
1894
|
---
|
|
1945
1895
|
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
#### [AnnouncementPageSchema](#AnnouncementPageSchema)
|
|
1896
|
+
#### [ApplicationLegal](#ApplicationLegal)
|
|
1950
1897
|
|
|
1951
1898
|
| Properties | Type | Nullable | Description |
|
|
1952
|
-
| ---------- | ---- | -------- | ----------- |
|
|
1953
|
-
| page_slug | string | no | |
|
|
1954
|
-
| type | string | no | |
|
|
1899
|
+
| ---------- | ---- | -------- | ----------- || _id | string | no | || application | string | no | || created_at | string | no | || faq | [[ApplicationLegalFAQ](#ApplicationLegalFAQ)] | no | || policy | string | no | || returns | string | no | || shipping | string | no | || tnc | string | no | || updated_at | string | no | |
|
|
1955
1900
|
|
|
1956
1901
|
---
|
|
1957
1902
|
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
#### [EditorMeta](#EditorMeta)
|
|
1903
|
+
#### [ApplicationLegalFAQ](#ApplicationLegalFAQ)
|
|
1962
1904
|
|
|
1963
1905
|
| Properties | Type | Nullable | Description |
|
|
1964
|
-
| ---------- | ---- | -------- | ----------- |
|
|
1965
|
-
| foreground_color | string | no | |
|
|
1966
|
-
| background_color | string | no | |
|
|
1967
|
-
| content_type | string | no | |
|
|
1968
|
-
| content | string | no | |
|
|
1906
|
+
| ---------- | ---- | -------- | ----------- || answer | string | no | || question | string | no | |
|
|
1969
1907
|
|
|
1970
1908
|
---
|
|
1971
1909
|
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
#### [AnnouncementAuthorSchema](#AnnouncementAuthorSchema)
|
|
1910
|
+
#### [Asset](#Asset)
|
|
1976
1911
|
|
|
1977
1912
|
| Properties | Type | Nullable | Description |
|
|
1978
|
-
| ---------- | ---- | -------- | ----------- |
|
|
1979
|
-
| created_by | string | no | |
|
|
1980
|
-
| modified_by | string | no | |
|
|
1913
|
+
| ---------- | ---- | -------- | ----------- || aspect_ratio | string | no | || id | string | no | || secure_url | string | no | |
|
|
1981
1914
|
|
|
1982
1915
|
---
|
|
1983
1916
|
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
#### [AdminAnnouncementSchema](#AdminAnnouncementSchema)
|
|
1917
|
+
#### [Author](#Author)
|
|
1988
1918
|
|
|
1989
1919
|
| Properties | Type | Nullable | Description |
|
|
1990
|
-
| ---------- | ---- | -------- | ----------- |
|
|
1991
|
-
| _id | string | no | |
|
|
1992
|
-
| platforms | [string] | no | |
|
|
1993
|
-
| title | string | no | |
|
|
1994
|
-
| announcement | string | no | |
|
|
1995
|
-
| pages | [[AnnouncementPageSchema](#AnnouncementPageSchema)] | no | |
|
|
1996
|
-
| editor_meta | [EditorMeta](#EditorMeta) | no | |
|
|
1997
|
-
| author | [AnnouncementAuthorSchema](#AnnouncementAuthorSchema) | no | |
|
|
1998
|
-
| created_at | string | no | |
|
|
1999
|
-
| app | string | no | |
|
|
2000
|
-
| modified_at | string | no | |
|
|
2001
|
-
| _schedule | [ScheduleSchema](#ScheduleSchema) | no | |
|
|
1920
|
+
| ---------- | ---- | -------- | ----------- || designation | string | no | || id | string | no | || name | string | no | |
|
|
2002
1921
|
|
|
2003
1922
|
---
|
|
2004
1923
|
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
#### [ScheduleSchema](#ScheduleSchema)
|
|
1924
|
+
#### [BlogGetResponse](#BlogGetResponse)
|
|
2009
1925
|
|
|
2010
1926
|
| Properties | Type | Nullable | Description |
|
|
2011
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2012
|
-
| cron | string | no | |
|
|
2013
|
-
| start | string | no | |
|
|
2014
|
-
| end | string | no | |
|
|
2015
|
-
| duration | number | no | |
|
|
2016
|
-
| next_schedule | [[NextSchedule](#NextSchedule)] | no | |
|
|
1927
|
+
| ---------- | ---- | -------- | ----------- || items | [[BlogSchema](#BlogSchema)] | no | || page | [Page](#Page) | no | |
|
|
2017
1928
|
|
|
2018
1929
|
---
|
|
2019
1930
|
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
#### [NextSchedule](#NextSchedule)
|
|
1931
|
+
#### [BlogRequest](#BlogRequest)
|
|
2024
1932
|
|
|
2025
1933
|
| Properties | Type | Nullable | Description |
|
|
2026
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2027
|
-
| start | string | no | |
|
|
2028
|
-
| end | string | no | |
|
|
1934
|
+
| ---------- | ---- | -------- | ----------- || _custom_json | string | no | || _schedule | [CronSchedule](#CronSchedule) | no | || application | string | no | || author | [Author](#Author) | no | || content | [[ResourceContent](#ResourceContent)] | no | || feature_image | [Asset](#Asset) | no | || published | boolean | no | || reading_time | string | no | || seo | [SEO](#SEO) | no | || slug | string | no | || tags | [string] | no | || title | string | no | |
|
|
2029
1935
|
|
|
2030
1936
|
---
|
|
2031
1937
|
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
#### [AnnouncementSchema](#AnnouncementSchema)
|
|
1938
|
+
#### [BlogSchema](#BlogSchema)
|
|
2036
1939
|
|
|
2037
1940
|
| Properties | Type | Nullable | Description |
|
|
2038
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2039
|
-
| announcement | string | no | |
|
|
2040
|
-
| schedule | [ScheduleStartSchema](#ScheduleStartSchema) | no | |
|
|
1941
|
+
| ---------- | ---- | -------- | ----------- || _custom_json | string | no | || _id | string | no | || _schedule | [CronSchedule](#CronSchedule) | no | || application | string | no | || archived | boolean | no | || author | [Author](#Author) | no | || content | [[ResourceContent](#ResourceContent)] | no | || date_meta | [DateMeta](#DateMeta) | no | || feature_image | [Asset](#Asset) | no | || published | boolean | no | || reading_time | string | no | || seo | [SEO](#SEO) | no | || slug | string | no | || tags | [string] | no | || title | string | no | |
|
|
2041
1942
|
|
|
2042
1943
|
---
|
|
2043
1944
|
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
#### [ScheduleStartSchema](#ScheduleStartSchema)
|
|
1945
|
+
#### [CategoryRequestSchema](#CategoryRequestSchema)
|
|
2048
1946
|
|
|
2049
1947
|
| Properties | Type | Nullable | Description |
|
|
2050
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2051
|
-
| start | string | no | |
|
|
2052
|
-
| end | string | no | |
|
|
1948
|
+
| ---------- | ---- | -------- | ----------- || slug | string | no | || title | string | no | |
|
|
2053
1949
|
|
|
2054
1950
|
---
|
|
2055
1951
|
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
#### [BlogGetResponse](#BlogGetResponse)
|
|
1952
|
+
#### [CategorySchema](#CategorySchema)
|
|
2060
1953
|
|
|
2061
1954
|
| Properties | Type | Nullable | Description |
|
|
2062
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2063
|
-
| items | [[BlogSchema](#BlogSchema)] | no | |
|
|
2064
|
-
| page | [Page](#Page) | no | |
|
|
1955
|
+
| ---------- | ---- | -------- | ----------- || _custom_json | string | no | || _id | string | no | || application | string | no | || children | [string] | no | || description | string | no | || icon_url | string | no | || index | number | no | || slug | string | no | || title | string | no | |
|
|
2065
1956
|
|
|
2066
1957
|
---
|
|
2067
1958
|
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
|
|
2071
|
-
#### [ResourceContent](#ResourceContent)
|
|
1959
|
+
#### [ChildrenSchema](#ChildrenSchema)
|
|
2072
1960
|
|
|
2073
1961
|
| Properties | Type | Nullable | Description |
|
|
2074
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2075
|
-
| type | string | no | |
|
|
2076
|
-
| value | string | no | |
|
|
1962
|
+
| ---------- | ---- | -------- | ----------- || _id | string | no | || answer | string | no | || application | string | no | || question | string | no | || slug | string | no | |
|
|
2077
1963
|
|
|
2078
1964
|
---
|
|
2079
1965
|
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
#### [Asset](#Asset)
|
|
1966
|
+
#### [CommonError](#CommonError)
|
|
2084
1967
|
|
|
2085
1968
|
| Properties | Type | Nullable | Description |
|
|
2086
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2087
|
-
| aspect_ratio | string | no | |
|
|
2088
|
-
| id | string | no | |
|
|
2089
|
-
| secure_url | string | no | |
|
|
1969
|
+
| ---------- | ---- | -------- | ----------- || message | string | no | |
|
|
2090
1970
|
|
|
2091
1971
|
---
|
|
2092
1972
|
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
#### [Author](#Author)
|
|
1973
|
+
#### [ConfigurationSchema](#ConfigurationSchema)
|
|
2097
1974
|
|
|
2098
1975
|
| Properties | Type | Nullable | Description |
|
|
2099
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2100
|
-
| designation | string | no | |
|
|
2101
|
-
| id | string | no | |
|
|
2102
|
-
| name | string | no | |
|
|
1976
|
+
| ---------- | ---- | -------- | ----------- || duration | number | no | || sleep_time | number | no | || slide_direction | string | no | || start_on_launch | boolean | no | |
|
|
2103
1977
|
|
|
2104
1978
|
---
|
|
2105
1979
|
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
#### [BlogSchema](#BlogSchema)
|
|
1980
|
+
#### [ContactSchema](#ContactSchema)
|
|
2110
1981
|
|
|
2111
1982
|
| Properties | Type | Nullable | Description |
|
|
2112
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2113
|
-
| _id | string | no | |
|
|
2114
|
-
| _custom_json | string | no | |
|
|
2115
|
-
| application | string | no | |
|
|
2116
|
-
| archived | boolean | no | |
|
|
2117
|
-
| author | [Author](#Author) | no | |
|
|
2118
|
-
| content | [[ResourceContent](#ResourceContent)] | no | |
|
|
2119
|
-
| feature_image | [Asset](#Asset) | no | |
|
|
2120
|
-
| published | boolean | no | |
|
|
2121
|
-
| reading_time | string | no | |
|
|
2122
|
-
| slug | string | no | |
|
|
2123
|
-
| tags | [string] | no | |
|
|
2124
|
-
| seo | [SEO](#SEO) | no | |
|
|
2125
|
-
| _schedule | [CronSchedule](#CronSchedule) | no | |
|
|
2126
|
-
| title | string | no | |
|
|
2127
|
-
| date_meta | [DateMeta](#DateMeta) | no | |
|
|
1983
|
+
| ---------- | ---- | -------- | ----------- || email | [EmailSchema](#EmailSchema) | no | || phone | [PhoneSchema](#PhoneSchema) | no | |
|
|
2128
1984
|
|
|
2129
1985
|
---
|
|
2130
1986
|
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
#### [SEO](#SEO)
|
|
1987
|
+
#### [ContentAPIError](#ContentAPIError)
|
|
2135
1988
|
|
|
2136
1989
|
| Properties | Type | Nullable | Description |
|
|
2137
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2138
|
-
| description | string | no | |
|
|
2139
|
-
| image | [SEOImage](#SEOImage) | no | |
|
|
2140
|
-
| title | string | no | |
|
|
1990
|
+
| ---------- | ---- | -------- | ----------- || code | string | no | || exception | string | no | || info | string | no | || message | string | no | || meta | string | no | || request_id | string | no | || stack_trace | string | no | || status | number | no | |
|
|
2141
1991
|
|
|
2142
1992
|
---
|
|
2143
1993
|
|
|
2144
|
-
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
#### [SEOImage](#SEOImage)
|
|
1994
|
+
#### [ContentSchema](#ContentSchema)
|
|
2148
1995
|
|
|
2149
1996
|
| Properties | Type | Nullable | Description |
|
|
2150
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2151
|
-
| url | string | no | |
|
|
1997
|
+
| ---------- | ---- | -------- | ----------- || type | string | no | || value | string | no | |
|
|
2152
1998
|
|
|
2153
1999
|
---
|
|
2154
2000
|
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
#### [DateMeta](#DateMeta)
|
|
2001
|
+
#### [CreateAnnouncementSchema](#CreateAnnouncementSchema)
|
|
2159
2002
|
|
|
2160
2003
|
| Properties | Type | Nullable | Description |
|
|
2161
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2162
|
-
| created_on | string | no | |
|
|
2163
|
-
| modified_on | string | no | |
|
|
2004
|
+
| ---------- | ---- | -------- | ----------- || data | [AdminAnnouncementSchema](#AdminAnnouncementSchema) | no | || message | string | no | |
|
|
2164
2005
|
|
|
2165
2006
|
---
|
|
2166
2007
|
|
|
2167
|
-
|
|
2168
|
-
|
|
2169
|
-
|
|
2170
|
-
#### [BlogRequest](#BlogRequest)
|
|
2008
|
+
#### [CreatedBySchema](#CreatedBySchema)
|
|
2171
2009
|
|
|
2172
2010
|
| Properties | Type | Nullable | Description |
|
|
2173
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2174
|
-
| application | string | no | |
|
|
2175
|
-
| _custom_json | string | no | |
|
|
2176
|
-
| author | [Author](#Author) | no | |
|
|
2177
|
-
| content | [[ResourceContent](#ResourceContent)] | no | |
|
|
2178
|
-
| feature_image | [Asset](#Asset) | no | |
|
|
2179
|
-
| published | boolean | no | |
|
|
2180
|
-
| reading_time | string | no | |
|
|
2181
|
-
| slug | string | no | |
|
|
2182
|
-
| tags | [string] | no | |
|
|
2183
|
-
| title | string | no | |
|
|
2184
|
-
| seo | [SEO](#SEO) | no | |
|
|
2185
|
-
| _schedule | [CronSchedule](#CronSchedule) | no | |
|
|
2011
|
+
| ---------- | ---- | -------- | ----------- || id | string | no | |
|
|
2186
2012
|
|
|
2187
2013
|
---
|
|
2188
2014
|
|
|
2189
|
-
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
#### [GetAnnouncementListSchema](#GetAnnouncementListSchema)
|
|
2015
|
+
#### [CreateFaqCategoryRequestSchema](#CreateFaqCategoryRequestSchema)
|
|
2193
2016
|
|
|
2194
2017
|
| Properties | Type | Nullable | Description |
|
|
2195
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2196
|
-
| items | [[AdminAnnouncementSchema](#AdminAnnouncementSchema)] | no | |
|
|
2197
|
-
| page | [Page](#Page) | no | |
|
|
2018
|
+
| ---------- | ---- | -------- | ----------- || category | [CategoryRequestSchema](#CategoryRequestSchema) | no | |
|
|
2198
2019
|
|
|
2199
2020
|
---
|
|
2200
2021
|
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
#### [CreateAnnouncementSchema](#CreateAnnouncementSchema)
|
|
2022
|
+
#### [CreateFaqCategorySchema](#CreateFaqCategorySchema)
|
|
2205
2023
|
|
|
2206
2024
|
| Properties | Type | Nullable | Description |
|
|
2207
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2208
|
-
| message | string | no | |
|
|
2209
|
-
| data | [AdminAnnouncementSchema](#AdminAnnouncementSchema) | no | |
|
|
2025
|
+
| ---------- | ---- | -------- | ----------- || category | [CategorySchema](#CategorySchema) | no | |
|
|
2210
2026
|
|
|
2211
2027
|
---
|
|
2212
2028
|
|
|
2213
|
-
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
#### [DataLoaderResponseSchema](#DataLoaderResponseSchema)
|
|
2029
|
+
#### [CreateFaqResponseSchema](#CreateFaqResponseSchema)
|
|
2217
2030
|
|
|
2218
2031
|
| Properties | Type | Nullable | Description |
|
|
2219
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2220
|
-
| application | string | no | |
|
|
2221
|
-
| company | string | no | |
|
|
2222
|
-
| _id | string | no | |
|
|
2223
|
-
| name | string | no | |
|
|
2224
|
-
| service | string | no | |
|
|
2225
|
-
| operation_id | string | no | |
|
|
2226
|
-
| type | string | no | |
|
|
2227
|
-
| url | string | no | |
|
|
2228
|
-
| content | string | no | |
|
|
2229
|
-
| __source | [DataLoaderSourceSchema](#DataLoaderSourceSchema) | no | |
|
|
2032
|
+
| ---------- | ---- | -------- | ----------- || faq | [FaqSchema](#FaqSchema) | no | |
|
|
2230
2033
|
|
|
2231
2034
|
---
|
|
2232
2035
|
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
#### [DataLoaderResetResponseSchema](#DataLoaderResetResponseSchema)
|
|
2036
|
+
#### [CreateFaqSchema](#CreateFaqSchema)
|
|
2237
2037
|
|
|
2238
2038
|
| Properties | Type | Nullable | Description |
|
|
2239
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2240
|
-
| reset | string | no | |
|
|
2039
|
+
| ---------- | ---- | -------- | ----------- || faq | [FAQ](#FAQ) | no | |
|
|
2241
2040
|
|
|
2242
2041
|
---
|
|
2243
2042
|
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
#### [Navigation](#Navigation)
|
|
2043
|
+
#### [CreateTagRequestSchema](#CreateTagRequestSchema)
|
|
2248
2044
|
|
|
2249
2045
|
| Properties | Type | Nullable | Description |
|
|
2250
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2251
|
-
| name | string | no | |
|
|
2252
|
-
| slug | string | no | |
|
|
2253
|
-
| orientation | string | no | |
|
|
2254
|
-
| created_by | [CreatedBySchema](#CreatedBySchema) | no | |
|
|
2255
|
-
| date_meta | [DateMeta](#DateMeta) | no | |
|
|
2256
|
-
| _id | string | no | |
|
|
2257
|
-
| position | string | no | |
|
|
2258
|
-
| application | string | no | |
|
|
2259
|
-
| platform | string | no | |
|
|
2260
|
-
| navigation | [NavigationReference](#NavigationReference) | no | |
|
|
2046
|
+
| ---------- | ---- | -------- | ----------- || tags | [[CreateTagSchema](#CreateTagSchema)] | no | |
|
|
2261
2047
|
|
|
2262
2048
|
---
|
|
2263
2049
|
|
|
2264
|
-
|
|
2265
|
-
|
|
2266
|
-
|
|
2267
|
-
#### [LocaleLanguage](#LocaleLanguage)
|
|
2050
|
+
#### [CreateTagSchema](#CreateTagSchema)
|
|
2268
2051
|
|
|
2269
2052
|
| Properties | Type | Nullable | Description |
|
|
2270
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2271
|
-
| hi | [Language](#Language) | no | |
|
|
2272
|
-
| ar | [Language](#Language) | no | |
|
|
2273
|
-
| en_us | [Language](#Language) | no | |
|
|
2053
|
+
| ---------- | ---- | -------- | ----------- || _id | string | no | || attributes | string | no | || content | string | no | || name | string | no | || pages | [string] | no | || position | string | no | || sub_type | string | no | || type | string | no | || url | string | no | |
|
|
2274
2054
|
|
|
2275
2055
|
---
|
|
2276
2056
|
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
#### [Language](#Language)
|
|
2057
|
+
#### [CronSchedule](#CronSchedule)
|
|
2281
2058
|
|
|
2282
2059
|
| Properties | Type | Nullable | Description |
|
|
2283
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2284
|
-
| display | string | no | |
|
|
2060
|
+
| ---------- | ---- | -------- | ----------- || cron | string | no | || duration | number | no | || end | string | no | || start | string | no | |
|
|
2285
2061
|
|
|
2286
2062
|
---
|
|
2287
2063
|
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
#### [Action](#Action)
|
|
2064
|
+
#### [CustomMetaTag](#CustomMetaTag)
|
|
2292
2065
|
|
|
2293
2066
|
| Properties | Type | Nullable | Description |
|
|
2294
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2295
|
-
| page | [ActionPage](#ActionPage) | no | |
|
|
2296
|
-
| popup | [ActionPage](#ActionPage) | no | |
|
|
2297
|
-
| type | string | no | |
|
|
2067
|
+
| ---------- | ---- | -------- | ----------- || _id | string | no | || content | string | no | || name | string | no | |
|
|
2298
2068
|
|
|
2299
2069
|
---
|
|
2300
2070
|
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
#### [ActionPage](#ActionPage)
|
|
2071
|
+
#### [CustomPage](#CustomPage)
|
|
2305
2072
|
|
|
2306
2073
|
| Properties | Type | Nullable | Description |
|
|
2307
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2308
|
-
| params | [String: [string]] | no | |
|
|
2309
|
-
| query | [String: [string]] | no | |
|
|
2310
|
-
| url | string | no | |
|
|
2311
|
-
| type | string | no | |
|
|
2074
|
+
| ---------- | ---- | -------- | ----------- || data | [CustomPageSchema](#CustomPageSchema) | no | |
|
|
2312
2075
|
|
|
2313
2076
|
---
|
|
2314
2077
|
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
#### [NavigationReference](#NavigationReference)
|
|
2078
|
+
#### [CustomPageSchema](#CustomPageSchema)
|
|
2319
2079
|
|
|
2320
2080
|
| Properties | Type | Nullable | Description |
|
|
2321
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2322
|
-
| acl | [string] | no | |
|
|
2323
|
-
| tags | [string] | no | |
|
|
2324
|
-
| _locale_language | [LocaleLanguage](#LocaleLanguage) | no | |
|
|
2325
|
-
| image | string | no | |
|
|
2326
|
-
| type | string | no | |
|
|
2327
|
-
| action | [Action](#Action) | no | |
|
|
2328
|
-
| active | boolean | no | |
|
|
2329
|
-
| display | string | no | |
|
|
2330
|
-
| sort_order | number | no | |
|
|
2331
|
-
| sub_navigation | [[NavigationReference](#NavigationReference)] | no | |
|
|
2081
|
+
| ---------- | ---- | -------- | ----------- || _id | string | no | || _schedule | [ScheduleSchema](#ScheduleSchema) | no | || application | string | no | || content | [string] | no | || created_by | [CreatedBySchema](#CreatedBySchema) | no | || date_meta | [DateMeta](#DateMeta) | no | || description | string | no | || orientation | string | no | || platform | string | no | || published | boolean | no | || slug | string | no | || tags | [string] | no | || title | string | no | || type | string | no | |
|
|
2332
2082
|
|
|
2333
2083
|
---
|
|
2334
2084
|
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
#### [LandingPage](#LandingPage)
|
|
2085
|
+
#### [DataLoaderResetResponseSchema](#DataLoaderResetResponseSchema)
|
|
2339
2086
|
|
|
2340
2087
|
| Properties | Type | Nullable | Description |
|
|
2341
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2342
|
-
| data | [LandingPageSchema](#LandingPageSchema) | no | |
|
|
2343
|
-
| success | boolean | no | |
|
|
2088
|
+
| ---------- | ---- | -------- | ----------- || reset | string | no | |
|
|
2344
2089
|
|
|
2345
2090
|
---
|
|
2346
2091
|
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
#### [ConfigurationSchema](#ConfigurationSchema)
|
|
2092
|
+
#### [DataLoaderResponseSchema](#DataLoaderResponseSchema)
|
|
2351
2093
|
|
|
2352
2094
|
| Properties | Type | Nullable | Description |
|
|
2353
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2354
|
-
| sleep_time | number | no | |
|
|
2355
|
-
| start_on_launch | boolean | no | |
|
|
2356
|
-
| duration | number | no | |
|
|
2357
|
-
| slide_direction | string | no | |
|
|
2095
|
+
| ---------- | ---- | -------- | ----------- || __source | [DataLoaderSourceSchema](#DataLoaderSourceSchema) | no | || _id | string | no | || application | string | no | || company | string | no | || content | string | no | || name | string | no | || operation_id | string | no | || service | string | no | || type | string | no | || url | string | no | |
|
|
2358
2096
|
|
|
2359
2097
|
---
|
|
2360
2098
|
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
#### [SlideshowMedia](#SlideshowMedia)
|
|
2099
|
+
#### [DataLoaderSchema](#DataLoaderSchema)
|
|
2365
2100
|
|
|
2366
2101
|
| Properties | Type | Nullable | Description |
|
|
2367
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2368
|
-
| type | string | no | |
|
|
2369
|
-
| url | string | no | |
|
|
2370
|
-
| bg_color | string | no | |
|
|
2371
|
-
| duration | number | no | |
|
|
2372
|
-
| auto_decide_duration | boolean | no | |
|
|
2373
|
-
| action | [Action](#Action) | no | |
|
|
2102
|
+
| ---------- | ---- | -------- | ----------- || __source | [DataLoaderSourceSchema](#DataLoaderSourceSchema) | no | || _id | string | no | || content | string | no | || name | string | no | || operation_id | string | no | || service | string | no | || type | string | no | || url | string | no | |
|
|
2374
2103
|
|
|
2375
2104
|
---
|
|
2376
2105
|
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
#### [Slideshow](#Slideshow)
|
|
2106
|
+
#### [DataLoaderSourceSchema](#DataLoaderSourceSchema)
|
|
2381
2107
|
|
|
2382
2108
|
| Properties | Type | Nullable | Description |
|
|
2383
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2384
|
-
| data | [SlideshowSchema](#SlideshowSchema) | no | |
|
|
2385
|
-
| success | boolean | no | |
|
|
2109
|
+
| ---------- | ---- | -------- | ----------- || id | string | no | || type | string | no | |
|
|
2386
2110
|
|
|
2387
2111
|
---
|
|
2388
2112
|
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
#### [AnnouncementsResponseSchema](#AnnouncementsResponseSchema)
|
|
2113
|
+
#### [DataLoadersSchema](#DataLoadersSchema)
|
|
2393
2114
|
|
|
2394
2115
|
| Properties | Type | Nullable | Description |
|
|
2395
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2396
|
-
| announcements | [String: [[AnnouncementSchema](#AnnouncementSchema)]] | no | |
|
|
2397
|
-
| refresh_rate | number | no | number of seconds after which api should hit again to fetch new announcements |
|
|
2398
|
-
| refresh_pages | [string] | no | list of page slugs on which announcement should be fetched as soon as they are loaded |
|
|
2116
|
+
| ---------- | ---- | -------- | ----------- || items | [[DataLoaderSchema](#DataLoaderSchema)] | no | |
|
|
2399
2117
|
|
|
2400
2118
|
---
|
|
2401
2119
|
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
#### [FaqResponseSchema](#FaqResponseSchema)
|
|
2120
|
+
#### [DateMeta](#DateMeta)
|
|
2406
2121
|
|
|
2407
2122
|
| Properties | Type | Nullable | Description |
|
|
2408
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2409
|
-
| faqs | [[FaqSchema](#FaqSchema)] | no | |
|
|
2123
|
+
| ---------- | ---- | -------- | ----------- || created_on | string | no | || modified_on | string | no | |
|
|
2410
2124
|
|
|
2411
2125
|
---
|
|
2412
2126
|
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
#### [UpdateHandpickedSchema](#UpdateHandpickedSchema)
|
|
2127
|
+
#### [DefaultNavigationResponse](#DefaultNavigationResponse)
|
|
2417
2128
|
|
|
2418
2129
|
| Properties | Type | Nullable | Description |
|
|
2419
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2420
|
-
| tag | [HandpickedTagSchema](#HandpickedTagSchema) | no | |
|
|
2130
|
+
| ---------- | ---- | -------- | ----------- || items | [[NavigationSchema](#NavigationSchema)] | no | |
|
|
2421
2131
|
|
|
2422
2132
|
---
|
|
2423
2133
|
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
#### [HandpickedTagSchema](#HandpickedTagSchema)
|
|
2134
|
+
#### [Detail](#Detail)
|
|
2428
2135
|
|
|
2429
2136
|
| Properties | Type | Nullable | Description |
|
|
2430
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2431
|
-
| position | string | no | |
|
|
2432
|
-
| attributes | string | no | |
|
|
2433
|
-
| name | string | no | |
|
|
2434
|
-
| url | string | no | |
|
|
2435
|
-
| type | string | no | |
|
|
2436
|
-
| sub_type | string | no | |
|
|
2437
|
-
| content | string | no | |
|
|
2137
|
+
| ---------- | ---- | -------- | ----------- || description | string | no | || title | string | no | |
|
|
2438
2138
|
|
|
2439
2139
|
---
|
|
2440
2140
|
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
#### [RemoveHandpickedSchema](#RemoveHandpickedSchema)
|
|
2141
|
+
#### [EditorMeta](#EditorMeta)
|
|
2445
2142
|
|
|
2446
2143
|
| Properties | Type | Nullable | Description |
|
|
2447
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2448
|
-
| tags | [string] | no | |
|
|
2144
|
+
| ---------- | ---- | -------- | ----------- || background_color | string | no | || content | string | no | || content_type | string | no | || foreground_color | string | no | |
|
|
2449
2145
|
|
|
2450
2146
|
---
|
|
2451
2147
|
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
#### [CreateTagSchema](#CreateTagSchema)
|
|
2148
|
+
#### [EmailProperties](#EmailProperties)
|
|
2456
2149
|
|
|
2457
2150
|
| Properties | Type | Nullable | Description |
|
|
2458
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2459
|
-
| name | string | no | |
|
|
2460
|
-
| sub_type | string | no | |
|
|
2461
|
-
| _id | string | no | |
|
|
2462
|
-
| type | string | no | |
|
|
2463
|
-
| url | string | no | |
|
|
2464
|
-
| position | string | no | |
|
|
2465
|
-
| attributes | string | no | |
|
|
2466
|
-
| pages | [string] | no | |
|
|
2467
|
-
| content | string | no | |
|
|
2151
|
+
| ---------- | ---- | -------- | ----------- || key | string | no | || value | string | no | |
|
|
2468
2152
|
|
|
2469
2153
|
---
|
|
2470
2154
|
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
#### [CreateTagRequestSchema](#CreateTagRequestSchema)
|
|
2155
|
+
#### [EmailSchema](#EmailSchema)
|
|
2475
2156
|
|
|
2476
2157
|
| Properties | Type | Nullable | Description |
|
|
2477
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2478
|
-
| tags | [[CreateTagSchema](#CreateTagSchema)] | no | |
|
|
2158
|
+
| ---------- | ---- | -------- | ----------- || active | boolean | no | || email | [[EmailProperties](#EmailProperties)] | no | |
|
|
2479
2159
|
|
|
2480
2160
|
---
|
|
2481
2161
|
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
#### [DataLoaderSchema](#DataLoaderSchema)
|
|
2162
|
+
#### [FAQ](#FAQ)
|
|
2486
2163
|
|
|
2487
2164
|
| Properties | Type | Nullable | Description |
|
|
2488
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2489
|
-
| name | string | no | |
|
|
2490
|
-
| service | string | no | |
|
|
2491
|
-
| operation_id | string | no | |
|
|
2492
|
-
| type | string | no | |
|
|
2493
|
-
| url | string | no | |
|
|
2494
|
-
| content | string | no | |
|
|
2495
|
-
| __source | [DataLoaderSourceSchema](#DataLoaderSourceSchema) | no | |
|
|
2496
|
-
| _id | string | no | |
|
|
2165
|
+
| ---------- | ---- | -------- | ----------- || answer | string | no | || question | string | no | || slug | string | no | |
|
|
2497
2166
|
|
|
2498
2167
|
---
|
|
2499
2168
|
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
#### [DataLoaderSourceSchema](#DataLoaderSourceSchema)
|
|
2169
|
+
#### [FAQCategorySchema](#FAQCategorySchema)
|
|
2504
2170
|
|
|
2505
2171
|
| Properties | Type | Nullable | Description |
|
|
2506
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2507
|
-
| type | string | no | |
|
|
2508
|
-
| id | string | no | |
|
|
2172
|
+
| ---------- | ---- | -------- | ----------- || _custom_json | string | no | || _id | string | no | || application | string | no | || children | [[ChildrenSchema](#ChildrenSchema)] | no | || description | string | no | || icon_url | string | no | || index | number | no | || slug | string | no | || title | string | no | |
|
|
2509
2173
|
|
|
2510
2174
|
---
|
|
2511
2175
|
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
#### [DataLoadersSchema](#DataLoadersSchema)
|
|
2176
|
+
#### [FaqResponseSchema](#FaqResponseSchema)
|
|
2516
2177
|
|
|
2517
2178
|
| Properties | Type | Nullable | Description |
|
|
2518
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2519
|
-
| items | [[DataLoaderSchema](#DataLoaderSchema)] | no | |
|
|
2179
|
+
| ---------- | ---- | -------- | ----------- || faqs | [[FaqSchema](#FaqSchema)] | no | |
|
|
2520
2180
|
|
|
2521
2181
|
---
|
|
2522
2182
|
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
#### [TagDeleteSuccessResponse](#TagDeleteSuccessResponse)
|
|
2183
|
+
#### [FaqSchema](#FaqSchema)
|
|
2527
2184
|
|
|
2528
2185
|
| Properties | Type | Nullable | Description |
|
|
2529
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2530
|
-
| success | boolean | no | |
|
|
2186
|
+
| ---------- | ---- | -------- | ----------- || _id | string | no | || answer | string | no | || application | string | no | || question | string | no | || slug | string | no | || tags | [string] | no | |
|
|
2531
2187
|
|
|
2532
2188
|
---
|
|
2533
2189
|
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
#### [ContentAPIError](#ContentAPIError)
|
|
2190
|
+
#### [FeatureImage](#FeatureImage)
|
|
2538
2191
|
|
|
2539
2192
|
| Properties | Type | Nullable | Description |
|
|
2540
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2541
|
-
| message | string | no | |
|
|
2542
|
-
| status | number | no | |
|
|
2543
|
-
| code | string | no | |
|
|
2544
|
-
| exception | string | no | |
|
|
2545
|
-
| info | string | no | |
|
|
2546
|
-
| request_id | string | no | |
|
|
2547
|
-
| stack_trace | string | no | |
|
|
2548
|
-
| meta | string | no | |
|
|
2193
|
+
| ---------- | ---- | -------- | ----------- || secure_url | string | no | |
|
|
2549
2194
|
|
|
2550
2195
|
---
|
|
2551
2196
|
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
#### [CommonError](#CommonError)
|
|
2197
|
+
#### [GetAnnouncementListSchema](#GetAnnouncementListSchema)
|
|
2556
2198
|
|
|
2557
2199
|
| Properties | Type | Nullable | Description |
|
|
2558
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2559
|
-
| message | string | no | |
|
|
2200
|
+
| ---------- | ---- | -------- | ----------- || items | [[AdminAnnouncementSchema](#AdminAnnouncementSchema)] | no | || page | [Page](#Page) | no | |
|
|
2560
2201
|
|
|
2561
2202
|
---
|
|
2562
2203
|
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
|
|
2566
|
-
#### [CategorySchema](#CategorySchema)
|
|
2204
|
+
#### [GetFaqCategoriesSchema](#GetFaqCategoriesSchema)
|
|
2567
2205
|
|
|
2568
2206
|
| Properties | Type | Nullable | Description |
|
|
2569
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2570
|
-
| index | number | no | |
|
|
2571
|
-
| title | string | no | |
|
|
2572
|
-
| description | string | no | |
|
|
2573
|
-
| children | [string] | no | |
|
|
2574
|
-
| _id | string | no | |
|
|
2575
|
-
| slug | string | no | |
|
|
2576
|
-
| application | string | no | |
|
|
2577
|
-
| icon_url | string | no | |
|
|
2578
|
-
| _custom_json | string | no | |
|
|
2207
|
+
| ---------- | ---- | -------- | ----------- || categories | [[CategorySchema](#CategorySchema)] | no | |
|
|
2579
2208
|
|
|
2580
2209
|
---
|
|
2581
2210
|
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
#### [ChildrenSchema](#ChildrenSchema)
|
|
2211
|
+
#### [GetFaqCategoryBySlugSchema](#GetFaqCategoryBySlugSchema)
|
|
2586
2212
|
|
|
2587
2213
|
| Properties | Type | Nullable | Description |
|
|
2588
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2589
|
-
| question | string | no | |
|
|
2590
|
-
| answer | string | no | |
|
|
2591
|
-
| slug | string | no | |
|
|
2592
|
-
| application | string | no | |
|
|
2593
|
-
| _id | string | no | |
|
|
2214
|
+
| ---------- | ---- | -------- | ----------- || category | [FAQCategorySchema](#FAQCategorySchema) | no | |
|
|
2594
2215
|
|
|
2595
2216
|
---
|
|
2596
2217
|
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
#### [CategoryRequestSchema](#CategoryRequestSchema)
|
|
2218
|
+
#### [GetFaqSchema](#GetFaqSchema)
|
|
2601
2219
|
|
|
2602
2220
|
| Properties | Type | Nullable | Description |
|
|
2603
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2604
|
-
| slug | string | no | |
|
|
2605
|
-
| title | string | no | |
|
|
2221
|
+
| ---------- | ---- | -------- | ----------- || faqs | [[FaqSchema](#FaqSchema)] | no | |
|
|
2606
2222
|
|
|
2607
2223
|
---
|
|
2608
2224
|
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
#### [FAQCategorySchema](#FAQCategorySchema)
|
|
2225
|
+
#### [HandpickedTagSchema](#HandpickedTagSchema)
|
|
2613
2226
|
|
|
2614
2227
|
| Properties | Type | Nullable | Description |
|
|
2615
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2616
|
-
| index | number | no | |
|
|
2617
|
-
| title | string | no | |
|
|
2618
|
-
| description | string | no | |
|
|
2619
|
-
| children | [[ChildrenSchema](#ChildrenSchema)] | no | |
|
|
2620
|
-
| _id | string | no | |
|
|
2621
|
-
| slug | string | no | |
|
|
2622
|
-
| application | string | no | |
|
|
2623
|
-
| icon_url | string | no | |
|
|
2624
|
-
| _custom_json | string | no | |
|
|
2228
|
+
| ---------- | ---- | -------- | ----------- || attributes | string | no | || content | string | no | || name | string | no | || position | string | no | || sub_type | string | no | || type | string | no | || url | string | no | |
|
|
2625
2229
|
|
|
2626
2230
|
---
|
|
2627
2231
|
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
#### [FaqSchema](#FaqSchema)
|
|
2232
|
+
#### [LandingPage](#LandingPage)
|
|
2632
2233
|
|
|
2633
2234
|
| Properties | Type | Nullable | Description |
|
|
2634
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2635
|
-
| slug | string | no | |
|
|
2636
|
-
| application | string | no | |
|
|
2637
|
-
| _id | string | no | |
|
|
2638
|
-
| question | string | no | |
|
|
2639
|
-
| answer | string | no | |
|
|
2640
|
-
| tags | [string] | no | |
|
|
2235
|
+
| ---------- | ---- | -------- | ----------- || data | [LandingPageSchema](#LandingPageSchema) | no | || success | boolean | no | |
|
|
2641
2236
|
|
|
2642
2237
|
---
|
|
2643
2238
|
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
#### [FAQ](#FAQ)
|
|
2239
|
+
#### [LandingPageGetResponse](#LandingPageGetResponse)
|
|
2648
2240
|
|
|
2649
2241
|
| Properties | Type | Nullable | Description |
|
|
2650
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2651
|
-
| slug | string | no | |
|
|
2652
|
-
| question | string | no | |
|
|
2653
|
-
| answer | string | no | |
|
|
2242
|
+
| ---------- | ---- | -------- | ----------- || items | [[LandingPageSchema](#LandingPageSchema)] | no | || page | [Page](#Page) | no | |
|
|
2654
2243
|
|
|
2655
2244
|
---
|
|
2656
2245
|
|
|
2657
|
-
|
|
2658
|
-
|
|
2659
|
-
|
|
2660
|
-
#### [CreateFaqResponseSchema](#CreateFaqResponseSchema)
|
|
2246
|
+
#### [LandingPageSchema](#LandingPageSchema)
|
|
2661
2247
|
|
|
2662
2248
|
| Properties | Type | Nullable | Description |
|
|
2663
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2664
|
-
| faq | [FaqSchema](#FaqSchema) | no | |
|
|
2249
|
+
| ---------- | ---- | -------- | ----------- || _custom_json | string | no | || _id | string | no | || action | [Action](#Action) | no | || application | string | no | || archived | boolean | no | || created_by | [CreatedBySchema](#CreatedBySchema) | no | || date_meta | [DateMeta](#DateMeta) | no | || platform | [string] | no | || slug | string | no | |
|
|
2665
2250
|
|
|
2666
2251
|
---
|
|
2667
2252
|
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
|
-
#### [CreateFaqSchema](#CreateFaqSchema)
|
|
2253
|
+
#### [Language](#Language)
|
|
2672
2254
|
|
|
2673
2255
|
| Properties | Type | Nullable | Description |
|
|
2674
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2675
|
-
| faq | [FAQ](#FAQ) | no | |
|
|
2256
|
+
| ---------- | ---- | -------- | ----------- || display | string | no | |
|
|
2676
2257
|
|
|
2677
2258
|
---
|
|
2678
2259
|
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
#### [GetFaqSchema](#GetFaqSchema)
|
|
2260
|
+
#### [LocaleLanguage](#LocaleLanguage)
|
|
2683
2261
|
|
|
2684
2262
|
| Properties | Type | Nullable | Description |
|
|
2685
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2686
|
-
| faqs | [[FaqSchema](#FaqSchema)] | no | |
|
|
2263
|
+
| ---------- | ---- | -------- | ----------- || ar | [Language](#Language) | no | || en_us | [Language](#Language) | no | || hi | [Language](#Language) | no | |
|
|
2687
2264
|
|
|
2688
2265
|
---
|
|
2689
2266
|
|
|
2690
|
-
|
|
2691
|
-
|
|
2692
|
-
|
|
2693
|
-
#### [UpdateFaqCategoryRequestSchema](#UpdateFaqCategoryRequestSchema)
|
|
2267
|
+
#### [Navigation](#Navigation)
|
|
2694
2268
|
|
|
2695
2269
|
| Properties | Type | Nullable | Description |
|
|
2696
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2697
|
-
| category | [CategorySchema](#CategorySchema) | no | |
|
|
2270
|
+
| ---------- | ---- | -------- | ----------- || _id | string | no | || application | string | no | || created_by | [CreatedBySchema](#CreatedBySchema) | no | || date_meta | [DateMeta](#DateMeta) | no | || name | string | no | || navigation | [NavigationReference](#NavigationReference) | no | || orientation | string | no | || platform | string | no | || position | string | no | || slug | string | no | |
|
|
2698
2271
|
|
|
2699
2272
|
---
|
|
2700
2273
|
|
|
2701
|
-
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
#### [CreateFaqCategoryRequestSchema](#CreateFaqCategoryRequestSchema)
|
|
2274
|
+
#### [NavigationGetResponse](#NavigationGetResponse)
|
|
2705
2275
|
|
|
2706
2276
|
| Properties | Type | Nullable | Description |
|
|
2707
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2708
|
-
| category | [CategoryRequestSchema](#CategoryRequestSchema) | no | |
|
|
2277
|
+
| ---------- | ---- | -------- | ----------- || items | [[NavigationSchema](#NavigationSchema)] | no | || page | [Page](#Page) | no | |
|
|
2709
2278
|
|
|
2710
2279
|
---
|
|
2711
2280
|
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
2715
|
-
#### [CreateFaqCategorySchema](#CreateFaqCategorySchema)
|
|
2281
|
+
#### [NavigationReference](#NavigationReference)
|
|
2716
2282
|
|
|
2717
2283
|
| Properties | Type | Nullable | Description |
|
|
2718
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2719
|
-
| category | [CategorySchema](#CategorySchema) | no | |
|
|
2284
|
+
| ---------- | ---- | -------- | ----------- || _locale_language | [LocaleLanguage](#LocaleLanguage) | no | || acl | [string] | no | || action | [Action](#Action) | no | || active | boolean | no | || display | string | no | || image | string | no | || sort_order | number | no | || sub_navigation | [[NavigationReference](#NavigationReference)] | no | || tags | [string] | no | || type | string | no | |
|
|
2720
2285
|
|
|
2721
2286
|
---
|
|
2722
2287
|
|
|
2723
|
-
|
|
2724
|
-
|
|
2725
|
-
|
|
2726
|
-
#### [GetFaqCategoriesSchema](#GetFaqCategoriesSchema)
|
|
2288
|
+
#### [NavigationRequest](#NavigationRequest)
|
|
2727
2289
|
|
|
2728
2290
|
| Properties | Type | Nullable | Description |
|
|
2729
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2730
|
-
| categories | [[CategorySchema](#CategorySchema)] | no | |
|
|
2291
|
+
| ---------- | ---- | -------- | ----------- || name | string | no | || navigation | [[NavigationReference](#NavigationReference)] | no | || orientation | [Orientation](#Orientation) | no | || platform | [string] | no | || slug | string | no | |
|
|
2731
2292
|
|
|
2732
2293
|
---
|
|
2733
2294
|
|
|
2734
|
-
|
|
2735
|
-
|
|
2736
|
-
|
|
2737
|
-
#### [GetFaqCategoryBySlugSchema](#GetFaqCategoryBySlugSchema)
|
|
2295
|
+
#### [NavigationSchema](#NavigationSchema)
|
|
2738
2296
|
|
|
2739
2297
|
| Properties | Type | Nullable | Description |
|
|
2740
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2741
|
-
| category | [FAQCategorySchema](#FAQCategorySchema) | no | |
|
|
2298
|
+
| ---------- | ---- | -------- | ----------- || _id | string | no | || application | string | no | || archived | boolean | no | || created_by | [CreatedBySchema](#CreatedBySchema) | no | || date_meta | [DateMeta](#DateMeta) | no | || name | string | no | || navigation | [[NavigationReference](#NavigationReference)] | no | || orientation | [Orientation](#Orientation) | no | || platform | [string] | no | || slug | string | no | || version | number | no | |
|
|
2742
2299
|
|
|
2743
2300
|
---
|
|
2744
2301
|
|
|
2745
|
-
|
|
2746
|
-
|
|
2747
|
-
|
|
2748
|
-
#### [Page](#Page)
|
|
2302
|
+
#### [NextSchedule](#NextSchedule)
|
|
2749
2303
|
|
|
2750
2304
|
| Properties | Type | Nullable | Description |
|
|
2751
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2752
|
-
| item_total | number | no | |
|
|
2753
|
-
| next_id | string | no | |
|
|
2754
|
-
| has_previous | boolean | no | |
|
|
2755
|
-
| has_next | boolean | no | |
|
|
2756
|
-
| current | number | no | |
|
|
2757
|
-
| type | string | yes | |
|
|
2758
|
-
| size | number | no | |
|
|
2305
|
+
| ---------- | ---- | -------- | ----------- || end | string | no | || start | string | no | |
|
|
2759
2306
|
|
|
2760
2307
|
---
|
|
2761
2308
|
|
|
2762
|
-
|
|
2763
|
-
|
|
2764
|
-
|
|
2765
|
-
#### [LandingPageGetResponse](#LandingPageGetResponse)
|
|
2309
|
+
#### [Orientation](#Orientation)
|
|
2766
2310
|
|
|
2767
2311
|
| Properties | Type | Nullable | Description |
|
|
2768
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2769
|
-
| items | [[LandingPageSchema](#LandingPageSchema)] | no | |
|
|
2770
|
-
| page | [Page](#Page) | no | |
|
|
2312
|
+
| ---------- | ---- | -------- | ----------- || landscape | [string] | no | || portrait | [string] | no | |
|
|
2771
2313
|
|
|
2772
2314
|
---
|
|
2773
2315
|
|
|
2774
|
-
|
|
2775
|
-
|
|
2776
|
-
|
|
2777
|
-
#### [LandingPageSchema](#LandingPageSchema)
|
|
2316
|
+
#### [Page](#Page)
|
|
2778
2317
|
|
|
2779
2318
|
| Properties | Type | Nullable | Description |
|
|
2780
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2781
|
-
| slug | string | no | |
|
|
2782
|
-
| action | [Action](#Action) | no | |
|
|
2783
|
-
| platform | [string] | no | |
|
|
2784
|
-
| created_by | [CreatedBySchema](#CreatedBySchema) | no | |
|
|
2785
|
-
| date_meta | [DateMeta](#DateMeta) | no | |
|
|
2786
|
-
| _id | string | no | |
|
|
2787
|
-
| application | string | no | |
|
|
2788
|
-
| archived | boolean | no | |
|
|
2789
|
-
| _custom_json | string | no | |
|
|
2319
|
+
| ---------- | ---- | -------- | ----------- || current | number | no | || has_next | boolean | no | || has_previous | boolean | no | || item_total | number | no | || next_id | string | no | || size | number | no | || type | string | yes | |
|
|
2790
2320
|
|
|
2791
2321
|
---
|
|
2792
2322
|
|
|
2793
|
-
|
|
2794
|
-
|
|
2795
|
-
|
|
2796
|
-
#### [DefaultNavigationResponse](#DefaultNavigationResponse)
|
|
2323
|
+
#### [PageContent](#PageContent)
|
|
2797
2324
|
|
|
2798
2325
|
| Properties | Type | Nullable | Description |
|
|
2799
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2800
|
-
| items | [[NavigationSchema](#NavigationSchema)] | no | |
|
|
2326
|
+
| ---------- | ---- | -------- | ----------- || type | string | no | || value | string | no | |
|
|
2801
2327
|
|
|
2802
2328
|
---
|
|
2803
2329
|
|
|
2804
|
-
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
#### [NavigationGetResponse](#NavigationGetResponse)
|
|
2330
|
+
#### [PageGetResponse](#PageGetResponse)
|
|
2808
2331
|
|
|
2809
2332
|
| Properties | Type | Nullable | Description |
|
|
2810
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2811
|
-
| items | [[NavigationSchema](#NavigationSchema)] | no | |
|
|
2812
|
-
| page | [Page](#Page) | no | |
|
|
2333
|
+
| ---------- | ---- | -------- | ----------- || items | [[PageSchema](#PageSchema)] | no | || page | [Page](#Page) | no | |
|
|
2813
2334
|
|
|
2814
2335
|
---
|
|
2815
2336
|
|
|
2816
|
-
|
|
2817
|
-
|
|
2818
|
-
|
|
2819
|
-
#### [Orientation](#Orientation)
|
|
2337
|
+
#### [PageMeta](#PageMeta)
|
|
2820
2338
|
|
|
2821
2339
|
| Properties | Type | Nullable | Description |
|
|
2822
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2823
|
-
| portrait | [string] | no | |
|
|
2824
|
-
| landscape | [string] | no | |
|
|
2340
|
+
| ---------- | ---- | -------- | ----------- || key | string | no | || value | string | no | |
|
|
2825
2341
|
|
|
2826
2342
|
---
|
|
2827
2343
|
|
|
2828
|
-
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
#### [NavigationSchema](#NavigationSchema)
|
|
2344
|
+
#### [PageMetaSchema](#PageMetaSchema)
|
|
2832
2345
|
|
|
2833
2346
|
| Properties | Type | Nullable | Description |
|
|
2834
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2835
|
-
| _id | string | no | |
|
|
2836
|
-
| application | string | no | |
|
|
2837
|
-
| archived | boolean | no | |
|
|
2838
|
-
| name | string | no | |
|
|
2839
|
-
| slug | string | no | |
|
|
2840
|
-
| platform | [string] | no | |
|
|
2841
|
-
| created_by | [CreatedBySchema](#CreatedBySchema) | no | |
|
|
2842
|
-
| date_meta | [DateMeta](#DateMeta) | no | |
|
|
2843
|
-
| orientation | [Orientation](#Orientation) | no | |
|
|
2844
|
-
| version | number | no | |
|
|
2845
|
-
| navigation | [[NavigationReference](#NavigationReference)] | no | |
|
|
2347
|
+
| ---------- | ---- | -------- | ----------- || application_id | string | no | || custom_pages | [[PageSchema](#PageSchema)] | no | || system_pages | [[NavigationSchema](#NavigationSchema)] | no | |
|
|
2846
2348
|
|
|
2847
2349
|
---
|
|
2848
2350
|
|
|
2849
|
-
|
|
2850
|
-
|
|
2851
|
-
|
|
2852
|
-
#### [NavigationRequest](#NavigationRequest)
|
|
2351
|
+
#### [PagePublishRequest](#PagePublishRequest)
|
|
2853
2352
|
|
|
2854
2353
|
| Properties | Type | Nullable | Description |
|
|
2855
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2856
|
-
| name | string | no | |
|
|
2857
|
-
| slug | string | no | |
|
|
2858
|
-
| platform | [string] | no | |
|
|
2859
|
-
| orientation | [Orientation](#Orientation) | no | |
|
|
2860
|
-
| navigation | [[NavigationReference](#NavigationReference)] | no | |
|
|
2354
|
+
| ---------- | ---- | -------- | ----------- || publish | boolean | no | |
|
|
2861
2355
|
|
|
2862
2356
|
---
|
|
2863
2357
|
|
|
2864
|
-
|
|
2865
|
-
|
|
2866
|
-
|
|
2867
|
-
#### [CustomPageSchema](#CustomPageSchema)
|
|
2358
|
+
#### [PageRequest](#PageRequest)
|
|
2868
2359
|
|
|
2869
2360
|
| Properties | Type | Nullable | Description |
|
|
2870
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2871
|
-
| _id | string | no | |
|
|
2872
|
-
| platform | string | no | |
|
|
2873
|
-
| title | string | no | |
|
|
2874
|
-
| slug | string | no | |
|
|
2875
|
-
| type | string | no | |
|
|
2876
|
-
| orientation | string | no | |
|
|
2877
|
-
| application | string | no | |
|
|
2878
|
-
| description | string | no | |
|
|
2879
|
-
| published | boolean | no | |
|
|
2880
|
-
| tags | [string] | no | |
|
|
2881
|
-
| content | [string] | no | |
|
|
2882
|
-
| created_by | [CreatedBySchema](#CreatedBySchema) | no | |
|
|
2883
|
-
| date_meta | [DateMeta](#DateMeta) | no | |
|
|
2884
|
-
| _schedule | [ScheduleSchema](#ScheduleSchema) | no | |
|
|
2361
|
+
| ---------- | ---- | -------- | ----------- || _custom_json | string | no | || _schedule | [CronSchedule](#CronSchedule) | no | || application | string | no | || author | [Author](#Author) | no | || content | [string] | no | || feature_image | [Asset](#Asset) | no | || orientation | string | no | || published | boolean | no | || reading_time | string | no | || seo | [SEO](#SEO) | no | || slug | string | no | || tags | [string] | no | || title | string | no | |
|
|
2885
2362
|
|
|
2886
2363
|
---
|
|
2887
2364
|
|
|
2888
|
-
|
|
2889
|
-
|
|
2890
|
-
|
|
2891
|
-
#### [ContentSchema](#ContentSchema)
|
|
2365
|
+
#### [PageSchema](#PageSchema)
|
|
2892
2366
|
|
|
2893
2367
|
| Properties | Type | Nullable | Description |
|
|
2894
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2895
|
-
| type | string | no | |
|
|
2896
|
-
| value | string | no | |
|
|
2368
|
+
| ---------- | ---- | -------- | ----------- || _custom_json | string | no | || _id | string | no | || _schedule | [ScheduleSchema](#ScheduleSchema) | no | || application | string | no | || archived | boolean | no | || component_ids | [string] | no | || content | [string] | no | || content_path | string | no | || created_by | [CreatedBySchema](#CreatedBySchema) | no | || date_meta | [DateMeta](#DateMeta) | no | || description | string | no | || feature_image | [Asset](#Asset) | no | || orientation | string | no | || page_meta | [string] | no | || platform | string | no | || published | boolean | no | || seo | [SEO](#SEO) | no | || slug | string | no | || tags | [string] | no | || title | string | no | || type | string | no | || visibility | string | no | |
|
|
2897
2369
|
|
|
2898
2370
|
---
|
|
2899
2371
|
|
|
2900
|
-
|
|
2901
|
-
|
|
2902
|
-
|
|
2903
|
-
#### [CustomPage](#CustomPage)
|
|
2372
|
+
#### [PageSpec](#PageSpec)
|
|
2904
2373
|
|
|
2905
2374
|
| Properties | Type | Nullable | Description |
|
|
2906
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2907
|
-
| data | [CustomPageSchema](#CustomPageSchema) | no | |
|
|
2375
|
+
| ---------- | ---- | -------- | ----------- || specifications | [[PageSpecItem](#PageSpecItem)] | no | |
|
|
2908
2376
|
|
|
2909
2377
|
---
|
|
2910
2378
|
|
|
2911
|
-
|
|
2912
|
-
|
|
2913
|
-
|
|
2914
|
-
#### [FeatureImage](#FeatureImage)
|
|
2379
|
+
#### [PageSpecItem](#PageSpecItem)
|
|
2915
2380
|
|
|
2916
2381
|
| Properties | Type | Nullable | Description |
|
|
2917
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2918
|
-
| secure_url | string | no | |
|
|
2382
|
+
| ---------- | ---- | -------- | ----------- || display_name | string | no | || page_type | string | no | || params | [[PageSpecParam](#PageSpecParam)] | no | || query | [[PageSpecParam](#PageSpecParam)] | no | |
|
|
2919
2383
|
|
|
2920
2384
|
---
|
|
2921
2385
|
|
|
2922
|
-
|
|
2923
|
-
|
|
2924
|
-
|
|
2925
|
-
#### [PageGetResponse](#PageGetResponse)
|
|
2386
|
+
#### [PageSpecParam](#PageSpecParam)
|
|
2926
2387
|
|
|
2927
2388
|
| Properties | Type | Nullable | Description |
|
|
2928
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2929
|
-
| items | [[PageSchema](#PageSchema)] | no | |
|
|
2930
|
-
| page | [Page](#Page) | no | |
|
|
2389
|
+
| ---------- | ---- | -------- | ----------- || key | string | no | || required | boolean | no | |
|
|
2931
2390
|
|
|
2932
2391
|
---
|
|
2933
2392
|
|
|
2934
|
-
|
|
2935
|
-
|
|
2936
|
-
|
|
2937
|
-
#### [PageSpec](#PageSpec)
|
|
2393
|
+
#### [PathMappingSchema](#PathMappingSchema)
|
|
2938
2394
|
|
|
2939
2395
|
| Properties | Type | Nullable | Description |
|
|
2940
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2941
|
-
| specifications | [[PageSpecItem](#PageSpecItem)] | no | |
|
|
2396
|
+
| ---------- | ---- | -------- | ----------- || __source | [PathSourceSchema](#PathSourceSchema) | no | || _id | string | no | || application | string | no | || created_at | string | no | || redirect_from | string | no | || redirect_to | string | no | || updated_at | string | no | |
|
|
2942
2397
|
|
|
2943
2398
|
---
|
|
2944
2399
|
|
|
2945
|
-
|
|
2946
|
-
|
|
2947
|
-
|
|
2948
|
-
#### [PageSpecParam](#PageSpecParam)
|
|
2400
|
+
#### [PathSourceSchema](#PathSourceSchema)
|
|
2949
2401
|
|
|
2950
2402
|
| Properties | Type | Nullable | Description |
|
|
2951
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2952
|
-
| key | string | no | |
|
|
2953
|
-
| required | boolean | no | |
|
|
2403
|
+
| ---------- | ---- | -------- | ----------- || id | string | no | || type | string | no | |
|
|
2954
2404
|
|
|
2955
2405
|
---
|
|
2956
2406
|
|
|
2957
|
-
|
|
2958
|
-
|
|
2959
|
-
|
|
2960
|
-
#### [PageSpecItem](#PageSpecItem)
|
|
2407
|
+
#### [PhoneProperties](#PhoneProperties)
|
|
2961
2408
|
|
|
2962
2409
|
| Properties | Type | Nullable | Description |
|
|
2963
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2964
|
-
| page_type | string | no | |
|
|
2965
|
-
| display_name | string | no | |
|
|
2966
|
-
| params | [[PageSpecParam](#PageSpecParam)] | no | |
|
|
2967
|
-
| query | [[PageSpecParam](#PageSpecParam)] | no | |
|
|
2410
|
+
| ---------- | ---- | -------- | ----------- || code | string | no | || key | string | no | || number | string | no | |
|
|
2968
2411
|
|
|
2969
2412
|
---
|
|
2970
2413
|
|
|
2971
|
-
|
|
2972
|
-
|
|
2973
|
-
|
|
2974
|
-
#### [PageSchema](#PageSchema)
|
|
2414
|
+
#### [PhoneSchema](#PhoneSchema)
|
|
2975
2415
|
|
|
2976
2416
|
| Properties | Type | Nullable | Description |
|
|
2977
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2978
|
-
| _id | string | no | |
|
|
2979
|
-
| application | string | no | |
|
|
2980
|
-
| component_ids | [string] | no | Components can be used to store multiple components |
|
|
2981
|
-
| content | [string] | no | |
|
|
2982
|
-
| content_path | string | no | |
|
|
2983
|
-
| created_by | [CreatedBySchema](#CreatedBySchema) | no | |
|
|
2984
|
-
| date_meta | [DateMeta](#DateMeta) | no | |
|
|
2985
|
-
| description | string | no | |
|
|
2986
|
-
| feature_image | [Asset](#Asset) | no | |
|
|
2987
|
-
| page_meta | [string] | no | |
|
|
2988
|
-
| _schedule | [ScheduleSchema](#ScheduleSchema) | no | |
|
|
2989
|
-
| _custom_json | string | no | |
|
|
2990
|
-
| orientation | string | no | |
|
|
2991
|
-
| platform | string | no | |
|
|
2992
|
-
| published | boolean | no | |
|
|
2993
|
-
| slug | string | no | |
|
|
2994
|
-
| tags | [string] | no | |
|
|
2995
|
-
| title | string | no | |
|
|
2996
|
-
| type | string | no | |
|
|
2997
|
-
| seo | [SEO](#SEO) | no | |
|
|
2998
|
-
| visibility | string | no | |
|
|
2999
|
-
| archived | boolean | no | |
|
|
2417
|
+
| ---------- | ---- | -------- | ----------- || active | boolean | no | || phone | [[PhoneProperties](#PhoneProperties)] | no | |
|
|
3000
2418
|
|
|
3001
2419
|
---
|
|
3002
2420
|
|
|
3003
|
-
|
|
3004
|
-
|
|
3005
|
-
|
|
3006
|
-
#### [CreatedBySchema](#CreatedBySchema)
|
|
2421
|
+
#### [RemoveHandpickedSchema](#RemoveHandpickedSchema)
|
|
3007
2422
|
|
|
3008
2423
|
| Properties | Type | Nullable | Description |
|
|
3009
|
-
| ---------- | ---- | -------- | ----------- |
|
|
3010
|
-
| id | string | no | |
|
|
2424
|
+
| ---------- | ---- | -------- | ----------- || tags | [string] | no | |
|
|
3011
2425
|
|
|
3012
2426
|
---
|
|
3013
2427
|
|
|
3014
|
-
|
|
3015
|
-
|
|
3016
|
-
|
|
3017
|
-
#### [PageContent](#PageContent)
|
|
2428
|
+
#### [ResourceContent](#ResourceContent)
|
|
3018
2429
|
|
|
3019
2430
|
| Properties | Type | Nullable | Description |
|
|
3020
|
-
| ---------- | ---- | -------- | ----------- |
|
|
3021
|
-
| type | string | no | |
|
|
3022
|
-
| value | string | no | |
|
|
2431
|
+
| ---------- | ---- | -------- | ----------- || type | string | no | || value | string | no | |
|
|
3023
2432
|
|
|
3024
2433
|
---
|
|
3025
2434
|
|
|
3026
|
-
|
|
3027
|
-
|
|
3028
|
-
|
|
3029
|
-
#### [PageMeta](#PageMeta)
|
|
2435
|
+
#### [ScheduleSchema](#ScheduleSchema)
|
|
3030
2436
|
|
|
3031
2437
|
| Properties | Type | Nullable | Description |
|
|
3032
|
-
| ---------- | ---- | -------- | ----------- |
|
|
3033
|
-
| key | string | no | |
|
|
3034
|
-
| value | string | no | |
|
|
2438
|
+
| ---------- | ---- | -------- | ----------- || cron | string | no | || duration | number | no | || end | string | no | || next_schedule | [[NextSchedule](#NextSchedule)] | no | || start | string | no | |
|
|
3035
2439
|
|
|
3036
2440
|
---
|
|
3037
2441
|
|
|
3038
|
-
|
|
3039
|
-
|
|
3040
|
-
|
|
3041
|
-
#### [PageRequest](#PageRequest)
|
|
2442
|
+
#### [ScheduleStartSchema](#ScheduleStartSchema)
|
|
3042
2443
|
|
|
3043
2444
|
| Properties | Type | Nullable | Description |
|
|
3044
|
-
| ---------- | ---- | -------- | ----------- |
|
|
3045
|
-
| _schedule | [CronSchedule](#CronSchedule) | no | |
|
|
3046
|
-
| application | string | no | |
|
|
3047
|
-
| author | [Author](#Author) | no | |
|
|
3048
|
-
| _custom_json | string | no | |
|
|
3049
|
-
| orientation | string | no | |
|
|
3050
|
-
| content | [string] | no | |
|
|
3051
|
-
| feature_image | [Asset](#Asset) | no | |
|
|
3052
|
-
| published | boolean | no | |
|
|
3053
|
-
| reading_time | string | no | |
|
|
3054
|
-
| slug | string | no | |
|
|
3055
|
-
| tags | [string] | no | |
|
|
3056
|
-
| seo | [SEO](#SEO) | no | |
|
|
3057
|
-
| title | string | no | |
|
|
2445
|
+
| ---------- | ---- | -------- | ----------- || end | string | no | || start | string | no | |
|
|
3058
2446
|
|
|
3059
2447
|
---
|
|
3060
2448
|
|
|
3061
|
-
|
|
3062
|
-
|
|
3063
|
-
|
|
3064
|
-
#### [CronSchedule](#CronSchedule)
|
|
2449
|
+
#### [SEO](#SEO)
|
|
3065
2450
|
|
|
3066
2451
|
| Properties | Type | Nullable | Description |
|
|
3067
|
-
| ---------- | ---- | -------- | ----------- |
|
|
3068
|
-
| cron | string | no | |
|
|
3069
|
-
| start | string | no | |
|
|
3070
|
-
| end | string | no | |
|
|
3071
|
-
| duration | number | no | |
|
|
2452
|
+
| ---------- | ---- | -------- | ----------- || description | string | no | || image | [SEOImage](#SEOImage) | no | || title | string | no | |
|
|
3072
2453
|
|
|
3073
2454
|
---
|
|
3074
2455
|
|
|
3075
|
-
|
|
3076
|
-
|
|
3077
|
-
|
|
3078
|
-
#### [PagePublishRequest](#PagePublishRequest)
|
|
2456
|
+
#### [SeoComponent](#SeoComponent)
|
|
3079
2457
|
|
|
3080
2458
|
| Properties | Type | Nullable | Description |
|
|
3081
|
-
| ---------- | ---- | -------- | ----------- |
|
|
3082
|
-
| publish | boolean | no | |
|
|
2459
|
+
| ---------- | ---- | -------- | ----------- || seo | [SeoSchema](#SeoSchema) | no | |
|
|
3083
2460
|
|
|
3084
2461
|
---
|
|
3085
2462
|
|
|
3086
|
-
|
|
3087
|
-
|
|
3088
|
-
|
|
3089
|
-
#### [PageMetaSchema](#PageMetaSchema)
|
|
2463
|
+
#### [SEOImage](#SEOImage)
|
|
3090
2464
|
|
|
3091
2465
|
| Properties | Type | Nullable | Description |
|
|
3092
|
-
| ---------- | ---- | -------- | ----------- |
|
|
3093
|
-
| system_pages | [[NavigationSchema](#NavigationSchema)] | no | |
|
|
3094
|
-
| custom_pages | [[PageSchema](#PageSchema)] | no | |
|
|
3095
|
-
| application_id | string | no | |
|
|
2466
|
+
| ---------- | ---- | -------- | ----------- || url | string | no | |
|
|
3096
2467
|
|
|
3097
2468
|
---
|
|
3098
2469
|
|
|
3099
|
-
|
|
3100
|
-
|
|
3101
|
-
|
|
3102
|
-
#### [SlideshowGetResponse](#SlideshowGetResponse)
|
|
2470
|
+
#### [SeoSchema](#SeoSchema)
|
|
3103
2471
|
|
|
3104
2472
|
| Properties | Type | Nullable | Description |
|
|
3105
|
-
| ---------- | ---- | -------- | ----------- |
|
|
3106
|
-
| items | [[SlideshowSchema](#SlideshowSchema)] | no | |
|
|
3107
|
-
| page | [Page](#Page) | no | |
|
|
2473
|
+
| ---------- | ---- | -------- | ----------- || _id | string | no | || app | string | no | || cannonical_enabled | boolean | no | || created_at | string | no | || custom_meta_tags | [[CustomMetaTag](#CustomMetaTag)] | no | || details | [Detail](#Detail) | no | || robots_txt | string | no | || sitemap_enabled | boolean | no | || updated_at | string | no | |
|
|
3108
2474
|
|
|
3109
2475
|
---
|
|
3110
2476
|
|
|
3111
|
-
|
|
3112
|
-
|
|
3113
|
-
|
|
3114
|
-
#### [SlideshowSchema](#SlideshowSchema)
|
|
2477
|
+
#### [Slideshow](#Slideshow)
|
|
3115
2478
|
|
|
3116
2479
|
| Properties | Type | Nullable | Description |
|
|
3117
|
-
| ---------- | ---- | -------- | ----------- |
|
|
3118
|
-
| _id | string | no | |
|
|
3119
|
-
| slug | string | no | |
|
|
3120
|
-
| date_meta | [DateMeta](#DateMeta) | no | |
|
|
3121
|
-
| application | string | no | |
|
|
3122
|
-
| platform | string | no | |
|
|
3123
|
-
| configuration | [ConfigurationSchema](#ConfigurationSchema) | no | |
|
|
3124
|
-
| media | [[SlideshowMedia](#SlideshowMedia)] | no | |
|
|
3125
|
-
| active | boolean | no | |
|
|
3126
|
-
| archived | boolean | no | |
|
|
3127
|
-
| _custom_json | string | no | |
|
|
2480
|
+
| ---------- | ---- | -------- | ----------- || data | [SlideshowSchema](#SlideshowSchema) | no | || success | boolean | no | |
|
|
3128
2481
|
|
|
3129
2482
|
---
|
|
3130
2483
|
|
|
3131
|
-
|
|
3132
|
-
|
|
3133
|
-
|
|
3134
|
-
#### [SlideshowRequest](#SlideshowRequest)
|
|
2484
|
+
#### [SlideshowGetResponse](#SlideshowGetResponse)
|
|
3135
2485
|
|
|
3136
2486
|
| Properties | Type | Nullable | Description |
|
|
3137
|
-
| ---------- | ---- | -------- | ----------- |
|
|
3138
|
-
| slug | string | no | |
|
|
3139
|
-
| platform | string | no | |
|
|
3140
|
-
| configuration | [ConfigurationSchema](#ConfigurationSchema) | no | |
|
|
3141
|
-
| media | [SlideshowMedia](#SlideshowMedia) | no | |
|
|
3142
|
-
| active | boolean | no | |
|
|
2487
|
+
| ---------- | ---- | -------- | ----------- || items | [[SlideshowSchema](#SlideshowSchema)] | no | || page | [Page](#Page) | no | |
|
|
3143
2488
|
|
|
3144
2489
|
---
|
|
3145
2490
|
|
|
3146
|
-
|
|
3147
|
-
|
|
3148
|
-
|
|
3149
|
-
#### [Support](#Support)
|
|
2491
|
+
#### [SlideshowMedia](#SlideshowMedia)
|
|
3150
2492
|
|
|
3151
2493
|
| Properties | Type | Nullable | Description |
|
|
3152
|
-
| ---------- | ---- | -------- | ----------- |
|
|
3153
|
-
| created | boolean | no | |
|
|
3154
|
-
| _id | string | no | |
|
|
3155
|
-
| config_type | string | no | |
|
|
3156
|
-
| application | string | no | |
|
|
3157
|
-
| created_at | string | no | |
|
|
3158
|
-
| updated_at | string | no | |
|
|
3159
|
-
| contact | [ContactSchema](#ContactSchema) | no | |
|
|
2494
|
+
| ---------- | ---- | -------- | ----------- || action | [Action](#Action) | no | || auto_decide_duration | boolean | no | || bg_color | string | no | || duration | number | no | || type | string | no | || url | string | no | |
|
|
3160
2495
|
|
|
3161
2496
|
---
|
|
3162
2497
|
|
|
3163
|
-
|
|
3164
|
-
|
|
3165
|
-
|
|
3166
|
-
#### [PhoneProperties](#PhoneProperties)
|
|
2498
|
+
#### [SlideshowRequest](#SlideshowRequest)
|
|
3167
2499
|
|
|
3168
2500
|
| Properties | Type | Nullable | Description |
|
|
3169
|
-
| ---------- | ---- | -------- | ----------- |
|
|
3170
|
-
| key | string | no | |
|
|
3171
|
-
| code | string | no | |
|
|
3172
|
-
| number | string | no | |
|
|
2501
|
+
| ---------- | ---- | -------- | ----------- || active | boolean | no | || configuration | [ConfigurationSchema](#ConfigurationSchema) | no | || media | [SlideshowMedia](#SlideshowMedia) | no | || platform | string | no | || slug | string | no | |
|
|
3173
2502
|
|
|
3174
2503
|
---
|
|
3175
2504
|
|
|
3176
|
-
|
|
3177
|
-
|
|
3178
|
-
|
|
3179
|
-
#### [PhoneSchema](#PhoneSchema)
|
|
2505
|
+
#### [SlideshowSchema](#SlideshowSchema)
|
|
3180
2506
|
|
|
3181
2507
|
| Properties | Type | Nullable | Description |
|
|
3182
|
-
| ---------- | ---- | -------- | ----------- |
|
|
3183
|
-
| active | boolean | no | |
|
|
3184
|
-
| phone | [[PhoneProperties](#PhoneProperties)] | no | |
|
|
2508
|
+
| ---------- | ---- | -------- | ----------- || _custom_json | string | no | || _id | string | no | || active | boolean | no | || application | string | no | || archived | boolean | no | || configuration | [ConfigurationSchema](#ConfigurationSchema) | no | || date_meta | [DateMeta](#DateMeta) | no | || media | [[SlideshowMedia](#SlideshowMedia)] | no | || platform | string | no | || slug | string | no | |
|
|
3185
2509
|
|
|
3186
2510
|
---
|
|
3187
2511
|
|
|
3188
|
-
|
|
3189
|
-
|
|
3190
|
-
|
|
3191
|
-
#### [EmailProperties](#EmailProperties)
|
|
2512
|
+
#### [Support](#Support)
|
|
3192
2513
|
|
|
3193
2514
|
| Properties | Type | Nullable | Description |
|
|
3194
|
-
| ---------- | ---- | -------- | ----------- |
|
|
3195
|
-
| key | string | no | |
|
|
3196
|
-
| value | string | no | |
|
|
2515
|
+
| ---------- | ---- | -------- | ----------- || _id | string | no | || application | string | no | || config_type | string | no | || contact | [ContactSchema](#ContactSchema) | no | || created | boolean | no | || created_at | string | no | || updated_at | string | no | |
|
|
3197
2516
|
|
|
3198
2517
|
---
|
|
3199
2518
|
|
|
3200
|
-
|
|
3201
|
-
|
|
3202
|
-
|
|
3203
|
-
#### [EmailSchema](#EmailSchema)
|
|
2519
|
+
#### [TagDeleteSuccessResponse](#TagDeleteSuccessResponse)
|
|
3204
2520
|
|
|
3205
2521
|
| Properties | Type | Nullable | Description |
|
|
3206
|
-
| ---------- | ---- | -------- | ----------- |
|
|
3207
|
-
| active | boolean | no | |
|
|
3208
|
-
| email | [[EmailProperties](#EmailProperties)] | no | |
|
|
2522
|
+
| ---------- | ---- | -------- | ----------- || success | boolean | no | |
|
|
3209
2523
|
|
|
3210
2524
|
---
|
|
3211
2525
|
|
|
3212
|
-
|
|
3213
|
-
|
|
3214
|
-
|
|
3215
|
-
#### [ContactSchema](#ContactSchema)
|
|
2526
|
+
#### [TagSchema](#TagSchema)
|
|
3216
2527
|
|
|
3217
2528
|
| Properties | Type | Nullable | Description |
|
|
3218
|
-
| ---------- | ---- | -------- | ----------- |
|
|
3219
|
-
| phone | [PhoneSchema](#PhoneSchema) | no | |
|
|
3220
|
-
| email | [EmailSchema](#EmailSchema) | no | |
|
|
2529
|
+
| ---------- | ---- | -------- | ----------- || __source | [TagSourceSchema](#TagSourceSchema) | no | || _id | string | no | || attributes | string | no | || content | string | no | || name | string | no | || pages | [string] | no | || position | string | no | || sub_type | string | no | || type | string | no | || url | string | no | |
|
|
3221
2530
|
|
|
3222
2531
|
---
|
|
3223
2532
|
|
|
3224
|
-
|
|
3225
|
-
|
|
3226
|
-
|
|
3227
|
-
#### [TagsSchema](#TagsSchema)
|
|
2533
|
+
#### [TagSourceSchema](#TagSourceSchema)
|
|
3228
2534
|
|
|
3229
2535
|
| Properties | Type | Nullable | Description |
|
|
3230
|
-
| ---------- | ---- | -------- | ----------- |
|
|
3231
|
-
| application | string | no | |
|
|
3232
|
-
| _id | string | no | |
|
|
3233
|
-
| tags | [[TagSchema](#TagSchema)] | no | |
|
|
2536
|
+
| ---------- | ---- | -------- | ----------- || id | string | no | || type | string | no | |
|
|
3234
2537
|
|
|
3235
2538
|
---
|
|
3236
2539
|
|
|
3237
|
-
|
|
3238
|
-
|
|
3239
|
-
|
|
3240
|
-
#### [TagSchema](#TagSchema)
|
|
2540
|
+
#### [TagsSchema](#TagsSchema)
|
|
3241
2541
|
|
|
3242
2542
|
| Properties | Type | Nullable | Description |
|
|
3243
|
-
| ---------- | ---- | -------- | ----------- |
|
|
3244
|
-
| name | string | no | |
|
|
3245
|
-
| url | string | no | |
|
|
3246
|
-
| type | string | no | |
|
|
3247
|
-
| sub_type | string | no | |
|
|
3248
|
-
| _id | string | no | |
|
|
3249
|
-
| position | string | no | |
|
|
3250
|
-
| attributes | string | no | |
|
|
3251
|
-
| content | string | no | |
|
|
3252
|
-
| pages | [string] | no | |
|
|
3253
|
-
| __source | [TagSourceSchema](#TagSourceSchema) | no | |
|
|
2543
|
+
| ---------- | ---- | -------- | ----------- || _id | string | no | || application | string | no | || tags | [[TagSchema](#TagSchema)] | no | |
|
|
3254
2544
|
|
|
3255
2545
|
---
|
|
3256
2546
|
|
|
2547
|
+
#### [UpdateFaqCategoryRequestSchema](#UpdateFaqCategoryRequestSchema)
|
|
2548
|
+
|
|
2549
|
+
| Properties | Type | Nullable | Description |
|
|
2550
|
+
| ---------- | ---- | -------- | ----------- || category | [CategorySchema](#CategorySchema) | no | |
|
|
2551
|
+
|
|
2552
|
+
---
|
|
3257
2553
|
|
|
3258
|
-
|
|
3259
|
-
|
|
3260
|
-
#### [TagSourceSchema](#TagSourceSchema)
|
|
2554
|
+
#### [UpdateHandpickedSchema](#UpdateHandpickedSchema)
|
|
3261
2555
|
|
|
3262
2556
|
| Properties | Type | Nullable | Description |
|
|
3263
|
-
| ---------- | ---- | -------- | ----------- |
|
|
3264
|
-
| type | string | no | |
|
|
3265
|
-
| id | string | no | |
|
|
2557
|
+
| ---------- | ---- | -------- | ----------- || tag | [HandpickedTagSchema](#HandpickedTagSchema) | no | |
|
|
3266
2558
|
|
|
3267
2559
|
---
|
|
3268
2560
|
|