@gofynd/fdk-client-javascript 0.1.37 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -0
- package/application.d.ts +2 -1
- package/application.js +2 -1
- package/documentation/application/CART.md +315 -289
- package/documentation/application/CATALOG.md +427 -404
- package/documentation/application/FILESTORAGE.md +2 -0
- package/documentation/application/LEAD.md +18 -18
- package/documentation/application/LOGISTIC.md +45 -45
- package/documentation/application/ORDER.md +287 -287
- package/documentation/application/PAYMENT.md +278 -278
- package/documentation/application/POSCART.md +318 -292
- package/documentation/application/REWARDS.md +1 -0
- package/documentation/application/USER.md +19 -14
- package/documentation/platform/CART.md +465 -462
- package/documentation/platform/CATALOG.md +2691 -2624
- package/documentation/platform/COMPANYPROFILE.md +186 -348
- package/documentation/platform/DISCOUNT.md +86 -0
- package/documentation/platform/FILESTORAGE.md +2 -0
- package/documentation/platform/LEAD.md +60 -60
- package/documentation/platform/ORDER.md +1299 -1621
- package/documentation/platform/PAYMENT.md +89 -89
- package/documentation/platform/REWARDS.md +145 -0
- package/documentation/platform/USER.md +24 -14
- package/index.d.ts +4 -1
- package/index.js +6 -3
- package/package.json +9 -9
- package/platform.d.ts +2 -1
- package/platform.js +3 -2
- package/public.d.ts +1 -0
- package/public.js +3 -2
- package/sdk/application/ApplicationAPIClient.js +3 -1
- package/sdk/application/ApplicationClient.d.ts +16 -16
- package/sdk/application/ApplicationClient.js +32 -16
- package/sdk/application/ApplicationConfig.js +3 -2
- package/sdk/application/ApplicationModels.d.ts +0 -832
- package/sdk/application/ApplicationModels.js +3 -10574
- package/sdk/application/{client → Cart}/CartApplicationClient.d.ts +9 -3
- package/sdk/application/{client → Cart}/CartApplicationClient.js +14 -8
- package/sdk/application/Cart/CartApplicationModel.d.ts +81 -0
- package/sdk/application/Cart/CartApplicationModel.js +1136 -0
- package/sdk/application/{models/CartValidator.js → Cart/CartApplicationValidator.js} +16 -12
- package/sdk/application/{client → Catalog}/CatalogApplicationClient.d.ts +8 -5
- package/sdk/application/{client → Catalog}/CatalogApplicationClient.js +11 -8
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +117 -0
- package/sdk/application/Catalog/CatalogApplicationModel.js +1606 -0
- package/sdk/application/{models/CatalogValidator.js → Catalog/CatalogApplicationValidator.js} +3 -1
- package/sdk/application/{client → Common}/CommonApplicationClient.js +2 -2
- package/sdk/application/Common/CommonApplicationModel.d.ts +20 -0
- package/sdk/application/Common/CommonApplicationModel.js +228 -0
- package/sdk/{platform/models/CommonValidator.js → application/Common/CommonApplicationValidator.js} +2 -1
- package/sdk/application/{client → Communication}/CommunicationApplicationClient.js +2 -2
- package/sdk/application/Communication/CommunicationApplicationModel.d.ts +15 -0
- package/sdk/application/Communication/CommunicationApplicationModel.js +144 -0
- package/sdk/application/{models/CommunicationValidator.js → Communication/CommunicationApplicationValidator.js} +4 -3
- package/sdk/application/{client → Configuration}/ConfigurationApplicationClient.js +2 -2
- package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +111 -0
- package/sdk/application/Configuration/ConfigurationApplicationModel.js +1182 -0
- package/sdk/application/{models/ConfigurationValidator.js → Configuration/ConfigurationApplicationValidator.js} +3 -2
- package/sdk/application/{client → Content}/ContentApplicationClient.js +2 -2
- package/sdk/application/Content/ContentApplicationModel.d.ts +105 -0
- package/sdk/application/Content/ContentApplicationModel.js +1349 -0
- package/sdk/application/{models/ContentValidator.js → Content/ContentApplicationValidator.js} +2 -1
- package/sdk/application/{client → FileStorage}/FileStorageApplicationClient.js +2 -2
- package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +21 -0
- package/sdk/application/FileStorage/FileStorageApplicationModel.js +244 -0
- package/sdk/application/{models/FileStorageValidator.js → FileStorage/FileStorageApplicationValidator.js} +5 -4
- package/sdk/application/{client → Lead}/LeadApplicationClient.js +2 -2
- package/sdk/application/Lead/LeadApplicationModel.d.ts +55 -0
- package/sdk/application/Lead/LeadApplicationModel.js +690 -0
- package/sdk/application/{models/LeadValidator.js → Lead/LeadApplicationValidator.js} +5 -4
- package/sdk/application/{client → Logistic}/LogisticApplicationClient.js +2 -2
- package/sdk/application/Logistic/LogisticApplicationModel.d.ts +26 -0
- package/sdk/application/Logistic/LogisticApplicationModel.js +286 -0
- package/sdk/application/{models/LogisticValidator.js → Logistic/LogisticApplicationValidator.js} +4 -3
- package/sdk/application/{client → Order}/OrderApplicationClient.js +2 -2
- package/sdk/application/Order/OrderApplicationModel.d.ts +67 -0
- package/sdk/application/Order/OrderApplicationModel.js +872 -0
- package/sdk/application/{models/OrderValidator.js → Order/OrderApplicationValidator.js} +4 -3
- package/sdk/application/{client → Payment}/PaymentApplicationClient.js +2 -2
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +96 -0
- package/sdk/application/Payment/PaymentApplicationModel.js +1318 -0
- package/sdk/application/{models/PaymentValidator.js → Payment/PaymentApplicationValidator.js} +24 -23
- package/sdk/application/{client → PosCart}/PosCartApplicationClient.d.ts +9 -3
- package/sdk/application/{client → PosCart}/PosCartApplicationClient.js +14 -8
- package/sdk/application/PosCart/PosCartApplicationModel.d.ts +79 -0
- package/sdk/application/PosCart/PosCartApplicationModel.js +1132 -0
- package/sdk/application/{models/PosCartValidator.js → PosCart/PosCartApplicationValidator.js} +17 -13
- package/sdk/application/{client → Rewards}/RewardsApplicationClient.js +2 -2
- package/sdk/application/Rewards/RewardsApplicationModel.d.ts +23 -0
- package/sdk/application/Rewards/RewardsApplicationModel.js +276 -0
- package/sdk/application/{models/RewardsValidator.js → Rewards/RewardsApplicationValidator.js} +5 -4
- package/sdk/application/{client → Share}/ShareApplicationClient.js +2 -2
- package/sdk/application/Share/ShareApplicationModel.d.ts +16 -0
- package/sdk/application/Share/ShareApplicationModel.js +178 -0
- package/sdk/application/{models/ShareValidator.js → Share/ShareApplicationValidator.js} +3 -2
- package/sdk/application/{client → Theme}/ThemeApplicationClient.js +2 -2
- package/sdk/application/Theme/ThemeApplicationModel.d.ts +49 -0
- package/sdk/application/Theme/ThemeApplicationModel.js +486 -0
- package/sdk/application/{models/ThemeValidator.js → Theme/ThemeApplicationValidator.js} +2 -1
- package/sdk/application/{client → User}/UserApplicationClient.js +2 -2
- package/sdk/application/User/UserApplicationModel.d.ts +95 -0
- package/sdk/application/User/UserApplicationModel.js +998 -0
- package/sdk/application/{models/UserValidator.js → User/UserApplicationValidator.js} +30 -29
- package/sdk/application/index.d.ts +18 -0
- package/sdk/application/index.js +33 -0
- package/sdk/common/AxiosHelper.js +23 -10
- package/sdk/common/Logger.d.ts +2 -0
- package/sdk/common/Logger.js +6 -0
- package/sdk/common/curlHelper.d.ts +2 -0
- package/sdk/common/curlHelper.js +95 -0
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +101 -0
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +285 -0
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +11 -0
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +56 -0
- package/sdk/platform/{client → Analytics}/AnalyticsPlatformClient.js +2 -2
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +23 -0
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +252 -0
- package/sdk/platform/{models/AnalyticsValidator.js → Analytics/AnalyticsPlatformValidator.js} +5 -4
- package/sdk/platform/{client → AuditTrail}/AuditTrailPlatformClient.js +2 -2
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +18 -0
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +144 -0
- package/sdk/platform/{models/AuditTrailValidator.js → AuditTrail/AuditTrailPlatformValidator.js} +3 -2
- package/sdk/platform/{client → Billing}/BillingPlatformClient.js +2 -2
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +65 -0
- package/sdk/platform/Billing/BillingPlatformModel.js +906 -0
- package/sdk/platform/{models/BillingValidator.js → Billing/BillingPlatformValidator.js} +6 -5
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +293 -0
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +755 -0
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +20 -0
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +138 -0
- package/sdk/platform/Cart/CartPlatformModel.d.ts +104 -0
- package/sdk/platform/Cart/CartPlatformModel.js +1516 -0
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +856 -0
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +2136 -0
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +56 -0
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +389 -0
- package/sdk/platform/{client → Catalog}/CatalogPlatformClient.js +338 -338
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +316 -0
- package/sdk/platform/Catalog/CatalogPlatformModel.js +4690 -0
- package/sdk/platform/{models/CatalogValidator.js → Catalog/CatalogPlatformValidator.js} +89 -88
- package/sdk/platform/{client → Common}/CommonPlatformClient.js +2 -2
- package/sdk/platform/Common/CommonPlatformModel.d.ts +20 -0
- package/sdk/platform/Common/CommonPlatformModel.js +228 -0
- package/sdk/{application/models/CommonValidator.js → platform/Common/CommonPlatformValidator.js} +2 -1
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +611 -0
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1656 -0
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +43 -0
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +277 -0
- package/sdk/platform/{client → Communication}/CommunicationPlatformClient.js +2 -2
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +102 -0
- package/sdk/platform/Communication/CommunicationPlatformModel.js +1312 -0
- package/sdk/platform/{models/CommunicationValidator.js → Communication/CommunicationPlatformValidator.js} +2 -1
- package/sdk/platform/{client → CompanyProfile}/CompanyProfilePlatformClient.d.ts +0 -9
- package/sdk/platform/{client → CompanyProfile}/CompanyProfilePlatformClient.js +2 -33
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +44 -0
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +706 -0
- package/sdk/platform/{models/CompanyProfileValidator.d.ts → CompanyProfile/CompanyProfilePlatformValidator.d.ts} +0 -1
- package/sdk/platform/{models/CompanyProfileValidator.js → CompanyProfile/CompanyProfilePlatformValidator.js} +9 -14
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +309 -0
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +940 -0
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +31 -0
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +164 -0
- package/sdk/platform/{client → Configuration}/ConfigurationPlatformClient.js +2 -2
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +185 -0
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +2072 -0
- package/sdk/platform/{models/ConfigurationValidator.js → Configuration/ConfigurationPlatformValidator.js} +9 -8
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +781 -0
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +2208 -0
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +71 -0
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +422 -0
- package/sdk/platform/Content/ContentPlatformModel.d.ts +105 -0
- package/sdk/platform/Content/ContentPlatformModel.js +1349 -0
- package/sdk/platform/{client → Discount}/DiscountPlatformClient.d.ts +11 -0
- package/sdk/platform/{client → Discount}/DiscountPlatformClient.js +35 -2
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +15 -0
- package/sdk/platform/Discount/DiscountPlatformModel.js +176 -0
- package/sdk/platform/{models/DiscountValidator.d.ts → Discount/DiscountPlatformValidator.d.ts} +1 -0
- package/sdk/platform/{models/DiscountValidator.js → Discount/DiscountPlatformValidator.js} +13 -5
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +114 -0
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +247 -0
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +7 -0
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +38 -0
- package/sdk/platform/{client → FileStorage}/FileStoragePlatformClient.js +2 -2
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +21 -0
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +244 -0
- package/sdk/platform/{models/FileStorageValidator.js → FileStorage/FileStoragePlatformValidator.js} +6 -5
- package/sdk/platform/{client → Inventory}/InventoryPlatformClient.js +2 -2
- package/sdk/platform/Inventory/InventoryPlatformModel.d.ts +62 -0
- package/sdk/platform/Inventory/InventoryPlatformModel.js +1178 -0
- package/sdk/platform/{models/InventoryValidator.js → Inventory/InventoryPlatformValidator.js} +5 -4
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +138 -0
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +397 -0
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +16 -0
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +90 -0
- package/sdk/platform/{client → Lead}/LeadPlatformClient.js +2 -2
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +55 -0
- package/sdk/platform/Lead/LeadPlatformModel.js +690 -0
- package/sdk/platform/{models/LeadValidator.js → Lead/LeadPlatformValidator.js} +7 -6
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +59 -0
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +152 -0
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +6 -0
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +37 -0
- package/sdk/platform/{client → Order}/OrderPlatformClient.d.ts +9 -49
- package/sdk/platform/{client → Order}/OrderPlatformClient.js +18 -130
- package/sdk/platform/Order/OrderPlatformModel.d.ts +215 -0
- package/sdk/platform/Order/OrderPlatformModel.js +3530 -0
- package/sdk/platform/{models/OrderValidator.d.ts → Order/OrderPlatformValidator.d.ts} +0 -2
- package/sdk/platform/{models/OrderValidator.js → Order/OrderPlatformValidator.js} +22 -44
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +30 -0
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +74 -0
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +5 -0
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +20 -0
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +7 -0
- package/sdk/platform/Partner/PartnerPlatformModel.js +54 -0
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +108 -0
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +333 -0
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +14 -0
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +73 -0
- package/sdk/platform/{client → Payment}/PaymentPlatformClient.js +2 -2
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +44 -0
- package/sdk/platform/Payment/PaymentPlatformModel.js +552 -0
- package/sdk/platform/{models/PaymentValidator.js → Payment/PaymentPlatformValidator.js} +6 -5
- package/sdk/platform/PlatformAPIClient.js +2 -1
- package/sdk/platform/PlatformApplicationClient.d.ts +2979 -18615
- package/sdk/platform/PlatformApplicationClient.js +3811 -13957
- package/sdk/platform/PlatformClient.d.ts +2982 -3013
- package/sdk/platform/PlatformClient.js +3806 -3231
- package/sdk/platform/PlatformConfig.js +2 -1
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +150 -0
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +428 -0
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +16 -0
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +91 -0
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +24 -0
- package/sdk/platform/Rewards/RewardsPlatformModel.js +294 -0
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +72 -0
- package/sdk/platform/Share/SharePlatformApplicationClient.js +182 -0
- package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +7 -0
- package/sdk/platform/Share/SharePlatformApplicationValidator.js +35 -0
- package/sdk/platform/Share/SharePlatformModel.d.ts +15 -0
- package/sdk/platform/Share/SharePlatformModel.js +170 -0
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +238 -0
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +704 -0
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +27 -0
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +155 -0
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +49 -0
- package/sdk/platform/Theme/ThemePlatformModel.js +486 -0
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +121 -0
- package/sdk/platform/User/UserPlatformApplicationClient.js +361 -0
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +15 -0
- package/sdk/platform/User/UserPlatformApplicationValidator.js +79 -0
- package/sdk/platform/User/UserPlatformModel.d.ts +95 -0
- package/sdk/platform/User/UserPlatformModel.js +998 -0
- package/sdk/platform/{client → Webhook}/WebhookPlatformClient.js +2 -2
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +17 -0
- package/sdk/platform/Webhook/WebhookPlatformModel.js +208 -0
- package/sdk/platform/{models/WebhookValidator.js → Webhook/WebhookPlatformValidator.js} +4 -3
- package/sdk/platform/index.d.ts +24 -0
- package/sdk/platform/index.js +45 -0
- package/sdk/public/{client → Configuration}/ConfigurationPublicClient.js +1 -1
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +20 -0
- package/sdk/public/Configuration/ConfigurationPublicModel.js +230 -0
- package/sdk/public/{models/ConfigurationValidator.js → Configuration/ConfigurationPublicValidator.js} +1 -1
- package/sdk/public/{client → Inventory}/InventoryPublicClient.js +1 -1
- package/sdk/public/Inventory/InventoryPublicModel.d.ts +22 -0
- package/sdk/public/Inventory/InventoryPublicModel.js +334 -0
- package/sdk/public/{models/InventoryValidator.js → Inventory/InventoryPublicValidator.js} +2 -2
- package/sdk/public/PublicClient.d.ts +3 -3
- package/sdk/public/PublicClient.js +8 -3
- package/sdk/public/{client → Webhook}/WebhookPublicClient.js +1 -1
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +17 -0
- package/sdk/public/Webhook/WebhookPublicModel.js +208 -0
- package/sdk/public/{models/WebhookValidator.js → Webhook/WebhookPublicValidator.js} +2 -2
- package/sdk/public/index.d.ts +5 -0
- package/sdk/public/index.js +7 -0
- package/sdk/platform/PlatformApplicationModels.d.ts +0 -328
- package/sdk/platform/PlatformApplicationModels.js +0 -22658
- package/sdk/platform/PlatformModels.d.ts +0 -1477
- package/sdk/platform/PlatformModels.js +0 -20646
- package/sdk/platform/models/CartValidator.d.ts +0 -0
- package/sdk/platform/models/CartValidator.js +0 -0
- package/sdk/platform/models/ContentValidator.d.ts +0 -0
- package/sdk/platform/models/ContentValidator.js +0 -0
- package/sdk/platform/models/PartnerValidator.d.ts +0 -0
- package/sdk/platform/models/PartnerValidator.js +0 -0
- package/sdk/platform/models/RewardsValidator.d.ts +0 -0
- package/sdk/platform/models/RewardsValidator.js +0 -0
- package/sdk/platform/models/ShareValidator.d.ts +0 -0
- package/sdk/platform/models/ShareValidator.js +0 -0
- package/sdk/platform/models/ThemeValidator.d.ts +0 -0
- package/sdk/platform/models/ThemeValidator.js +0 -0
- package/sdk/platform/models/UserValidator.d.ts +0 -0
- package/sdk/platform/models/UserValidator.js +0 -0
- package/sdk/public/PublicModels.d.ts +0 -50
- package/sdk/public/PublicModels.js +0 -712
- package/sdk/application/{models/CartValidator.d.ts → Cart/CartApplicationValidator.d.ts} +0 -0
- package/sdk/application/{models/CatalogValidator.d.ts → Catalog/CatalogApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Common}/CommonApplicationClient.d.ts +0 -0
- package/sdk/application/{models/CommonValidator.d.ts → Common/CommonApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Communication}/CommunicationApplicationClient.d.ts +0 -0
- package/sdk/application/{models/CommunicationValidator.d.ts → Communication/CommunicationApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Configuration}/ConfigurationApplicationClient.d.ts +0 -0
- package/sdk/application/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Content}/ContentApplicationClient.d.ts +0 -0
- package/sdk/application/{models/ContentValidator.d.ts → Content/ContentApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → FileStorage}/FileStorageApplicationClient.d.ts +0 -0
- package/sdk/application/{models/FileStorageValidator.d.ts → FileStorage/FileStorageApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Lead}/LeadApplicationClient.d.ts +0 -0
- package/sdk/application/{models/LeadValidator.d.ts → Lead/LeadApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Logistic}/LogisticApplicationClient.d.ts +0 -0
- package/sdk/application/{models/LogisticValidator.d.ts → Logistic/LogisticApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Order}/OrderApplicationClient.d.ts +0 -0
- package/sdk/application/{models/OrderValidator.d.ts → Order/OrderApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Payment}/PaymentApplicationClient.d.ts +0 -0
- package/sdk/application/{models/PaymentValidator.d.ts → Payment/PaymentApplicationValidator.d.ts} +0 -0
- package/sdk/application/{models/PosCartValidator.d.ts → PosCart/PosCartApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Rewards}/RewardsApplicationClient.d.ts +0 -0
- package/sdk/application/{models/RewardsValidator.d.ts → Rewards/RewardsApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Share}/ShareApplicationClient.d.ts +0 -0
- package/sdk/application/{models/ShareValidator.d.ts → Share/ShareApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Theme}/ThemeApplicationClient.d.ts +0 -0
- package/sdk/application/{models/ThemeValidator.d.ts → Theme/ThemeApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → User}/UserApplicationClient.d.ts +0 -0
- package/sdk/application/{models/UserValidator.d.ts → User/UserApplicationValidator.d.ts} +0 -0
- package/sdk/platform/{client → Analytics}/AnalyticsPlatformClient.d.ts +0 -0
- package/sdk/platform/{models/AnalyticsValidator.d.ts → Analytics/AnalyticsPlatformValidator.d.ts} +0 -0
- package/sdk/platform/{client → AuditTrail}/AuditTrailPlatformClient.d.ts +0 -0
- package/sdk/platform/{models/AuditTrailValidator.d.ts → AuditTrail/AuditTrailPlatformValidator.d.ts} +0 -0
- package/sdk/platform/{client → Billing}/BillingPlatformClient.d.ts +0 -0
- package/sdk/platform/{models/BillingValidator.d.ts → Billing/BillingPlatformValidator.d.ts} +0 -0
- package/sdk/platform/{client → Catalog}/CatalogPlatformClient.d.ts +126 -126
- package/sdk/platform/{models/CatalogValidator.d.ts → Catalog/CatalogPlatformValidator.d.ts} +15 -15
- /package/sdk/platform/{client → Common}/CommonPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/CommonValidator.d.ts → Common/CommonPlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → Communication}/CommunicationPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/CommunicationValidator.d.ts → Communication/CommunicationPlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → Configuration}/ConfigurationPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationPlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → FileStorage}/FileStoragePlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/FileStorageValidator.d.ts → FileStorage/FileStoragePlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → Inventory}/InventoryPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/InventoryValidator.d.ts → Inventory/InventoryPlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → Lead}/LeadPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/LeadValidator.d.ts → Lead/LeadPlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → Payment}/PaymentPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/PaymentValidator.d.ts → Payment/PaymentPlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → Webhook}/WebhookPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/WebhookValidator.d.ts → Webhook/WebhookPlatformValidator.d.ts} +0 -0
- /package/sdk/public/{client → Configuration}/ConfigurationPublicClient.d.ts +0 -0
- /package/sdk/public/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationPublicValidator.d.ts} +0 -0
- /package/sdk/public/{client → Inventory}/InventoryPublicClient.d.ts +0 -0
- /package/sdk/public/{models/InventoryValidator.d.ts → Inventory/InventoryPublicValidator.d.ts} +0 -0
- /package/sdk/public/{client → Webhook}/WebhookPublicClient.d.ts +0 -0
- /package/sdk/public/{models/WebhookValidator.d.ts → Webhook/WebhookPublicValidator.d.ts} +0 -0
|
@@ -54,6 +54,7 @@ const promise = posCart.getCart({ id : value,
|
|
|
54
54
|
i : value,
|
|
55
55
|
b : value,
|
|
56
56
|
assignCardId : value,
|
|
57
|
+
areaCode : value,
|
|
57
58
|
buyNow : value });
|
|
58
59
|
|
|
59
60
|
// Async/Await
|
|
@@ -61,6 +62,7 @@ const data = await posCart.getCart({ id : value,
|
|
|
61
62
|
i : value,
|
|
62
63
|
b : value,
|
|
63
64
|
assignCardId : value,
|
|
65
|
+
areaCode : value,
|
|
64
66
|
buyNow : value });
|
|
65
67
|
```
|
|
66
68
|
|
|
@@ -74,6 +76,7 @@ const data = await posCart.getCart({ id : value,
|
|
|
74
76
|
| i | boolean | no | |
|
|
75
77
|
| b | boolean | no | |
|
|
76
78
|
| assignCardId | number | no | |
|
|
79
|
+
| areaCode | string | no | |
|
|
77
80
|
| buyNow | boolean | no | |
|
|
78
81
|
|
|
79
82
|
|
|
@@ -325,12 +328,14 @@ Add items to cart
|
|
|
325
328
|
const promise = posCart.addItems({ body : value,
|
|
326
329
|
i : value,
|
|
327
330
|
b : value,
|
|
331
|
+
areaCode : value,
|
|
328
332
|
buyNow : value });
|
|
329
333
|
|
|
330
334
|
// Async/Await
|
|
331
335
|
const data = await posCart.addItems({ body : value,
|
|
332
336
|
i : value,
|
|
333
337
|
b : value,
|
|
338
|
+
areaCode : value,
|
|
334
339
|
buyNow : value });
|
|
335
340
|
```
|
|
336
341
|
|
|
@@ -342,6 +347,7 @@ const data = await posCart.addItems({ body : value,
|
|
|
342
347
|
| --------- | ----- | -------- | ----------- |
|
|
343
348
|
| i | boolean | no | |
|
|
344
349
|
| b | boolean | no | |
|
|
350
|
+
| areaCode | string | no | |
|
|
345
351
|
| buyNow | boolean | no | |
|
|
346
352
|
| body | [AddCartRequest](#AddCartRequest) | yes | Request body |
|
|
347
353
|
|
|
@@ -1035,6 +1041,7 @@ const promise = posCart.updateCart({ body : value,
|
|
|
1035
1041
|
id : value,
|
|
1036
1042
|
i : value,
|
|
1037
1043
|
b : value,
|
|
1044
|
+
areaCode : value,
|
|
1038
1045
|
buyNow : value });
|
|
1039
1046
|
|
|
1040
1047
|
// Async/Await
|
|
@@ -1042,6 +1049,7 @@ const data = await posCart.updateCart({ body : value,
|
|
|
1042
1049
|
id : value,
|
|
1043
1050
|
i : value,
|
|
1044
1051
|
b : value,
|
|
1052
|
+
areaCode : value,
|
|
1045
1053
|
buyNow : value });
|
|
1046
1054
|
```
|
|
1047
1055
|
|
|
@@ -1054,6 +1062,7 @@ const data = await posCart.updateCart({ body : value,
|
|
|
1054
1062
|
| id | string | no | |
|
|
1055
1063
|
| i | boolean | no | |
|
|
1056
1064
|
| b | boolean | no | |
|
|
1065
|
+
| areaCode | string | no | |
|
|
1057
1066
|
| buyNow | boolean | no | |
|
|
1058
1067
|
| body | [UpdateCartRequest](#UpdateCartRequest) | yes | Request body |
|
|
1059
1068
|
|
|
@@ -6756,225 +6765,235 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
6756
6765
|
|
|
6757
6766
|
|
|
6758
6767
|
|
|
6759
|
-
#### [
|
|
6768
|
+
#### [CouponBreakup](#CouponBreakup)
|
|
6760
6769
|
|
|
6761
6770
|
| Properties | Type | Nullable | Description |
|
|
6762
6771
|
| ---------- | ---- | -------- | ----------- |
|
|
6763
|
-
|
|
|
6764
|
-
|
|
|
6772
|
+
| code | string | no | |
|
|
6773
|
+
| type | string | no | |
|
|
6774
|
+
| message | string | no | |
|
|
6775
|
+
| uid | string | no | |
|
|
6776
|
+
| value | number | no | |
|
|
6777
|
+
| is_applied | boolean | no | |
|
|
6765
6778
|
|
|
6766
6779
|
---
|
|
6767
6780
|
|
|
6768
6781
|
|
|
6769
6782
|
|
|
6770
6783
|
|
|
6771
|
-
#### [
|
|
6784
|
+
#### [DisplayBreakup](#DisplayBreakup)
|
|
6772
6785
|
|
|
6773
6786
|
| Properties | Type | Nullable | Description |
|
|
6774
6787
|
| ---------- | ---- | -------- | ----------- |
|
|
6775
|
-
|
|
|
6776
|
-
|
|
|
6788
|
+
| currency_code | string | no | |
|
|
6789
|
+
| message | [string] | no | |
|
|
6790
|
+
| key | string | no | |
|
|
6791
|
+
| currency_symbol | string | no | |
|
|
6792
|
+
| value | number | no | |
|
|
6793
|
+
| display | string | no | |
|
|
6777
6794
|
|
|
6778
6795
|
---
|
|
6779
6796
|
|
|
6780
6797
|
|
|
6781
6798
|
|
|
6782
6799
|
|
|
6783
|
-
#### [
|
|
6800
|
+
#### [LoyaltyPoints](#LoyaltyPoints)
|
|
6784
6801
|
|
|
6785
6802
|
| Properties | Type | Nullable | Description |
|
|
6786
6803
|
| ---------- | ---- | -------- | ----------- |
|
|
6787
|
-
|
|
|
6788
|
-
|
|
|
6804
|
+
| is_applied | boolean | no | |
|
|
6805
|
+
| applicable | number | no | |
|
|
6806
|
+
| total | number | no | |
|
|
6807
|
+
| description | string | no | |
|
|
6789
6808
|
|
|
6790
6809
|
---
|
|
6791
6810
|
|
|
6792
6811
|
|
|
6793
6812
|
|
|
6794
6813
|
|
|
6795
|
-
#### [
|
|
6814
|
+
#### [RawBreakup](#RawBreakup)
|
|
6796
6815
|
|
|
6797
6816
|
| Properties | Type | Nullable | Description |
|
|
6798
6817
|
| ---------- | ---- | -------- | ----------- |
|
|
6799
|
-
|
|
|
6800
|
-
|
|
|
6818
|
+
| subtotal | number | no | |
|
|
6819
|
+
| gst_charges | number | no | |
|
|
6820
|
+
| coupon | number | no | |
|
|
6821
|
+
| you_saved | number | no | |
|
|
6822
|
+
| delivery_charge | number | no | |
|
|
6823
|
+
| cod_charge | number | no | |
|
|
6824
|
+
| vog | number | no | |
|
|
6825
|
+
| fynd_cash | number | no | |
|
|
6826
|
+
| mrp_total | number | no | |
|
|
6827
|
+
| total | number | no | |
|
|
6828
|
+
| convenience_fee | number | no | |
|
|
6829
|
+
| discount | number | no | |
|
|
6801
6830
|
|
|
6802
6831
|
---
|
|
6803
6832
|
|
|
6804
6833
|
|
|
6805
6834
|
|
|
6806
6835
|
|
|
6807
|
-
#### [
|
|
6836
|
+
#### [CartBreakup](#CartBreakup)
|
|
6808
6837
|
|
|
6809
6838
|
| Properties | Type | Nullable | Description |
|
|
6810
6839
|
| ---------- | ---- | -------- | ----------- |
|
|
6811
|
-
|
|
|
6812
|
-
|
|
|
6813
|
-
|
|
|
6840
|
+
| coupon | [CouponBreakup](#CouponBreakup) | no | |
|
|
6841
|
+
| display | [[DisplayBreakup](#DisplayBreakup)] | no | |
|
|
6842
|
+
| loyalty_points | [LoyaltyPoints](#LoyaltyPoints) | no | |
|
|
6843
|
+
| raw | [RawBreakup](#RawBreakup) | no | |
|
|
6814
6844
|
|
|
6815
6845
|
---
|
|
6816
6846
|
|
|
6817
6847
|
|
|
6818
6848
|
|
|
6819
6849
|
|
|
6820
|
-
#### [
|
|
6850
|
+
#### [PaymentSelectionLock](#PaymentSelectionLock)
|
|
6821
6851
|
|
|
6822
6852
|
| Properties | Type | Nullable | Description |
|
|
6823
6853
|
| ---------- | ---- | -------- | ----------- |
|
|
6824
|
-
|
|
|
6825
|
-
|
|
|
6826
|
-
|
|
|
6827
|
-
| selling | number | no | |
|
|
6828
|
-
| currency_symbol | string | no | |
|
|
6829
|
-
| add_on | number | no | |
|
|
6854
|
+
| enabled | boolean | no | |
|
|
6855
|
+
| default_options | string | no | |
|
|
6856
|
+
| payment_identifier | string | no | |
|
|
6830
6857
|
|
|
6831
6858
|
---
|
|
6832
6859
|
|
|
6833
6860
|
|
|
6834
6861
|
|
|
6835
6862
|
|
|
6836
|
-
#### [
|
|
6863
|
+
#### [PromiseFormatted](#PromiseFormatted)
|
|
6837
6864
|
|
|
6838
6865
|
| Properties | Type | Nullable | Description |
|
|
6839
6866
|
| ---------- | ---- | -------- | ----------- |
|
|
6840
|
-
|
|
|
6841
|
-
|
|
|
6867
|
+
| min | string | no | |
|
|
6868
|
+
| max | string | no | |
|
|
6842
6869
|
|
|
6843
6870
|
---
|
|
6844
6871
|
|
|
6845
6872
|
|
|
6846
6873
|
|
|
6847
6874
|
|
|
6848
|
-
#### [
|
|
6875
|
+
#### [PromiseTimestamp](#PromiseTimestamp)
|
|
6849
6876
|
|
|
6850
6877
|
| Properties | Type | Nullable | Description |
|
|
6851
6878
|
| ---------- | ---- | -------- | ----------- |
|
|
6852
|
-
|
|
|
6853
|
-
|
|
|
6854
|
-
| currency_symbol | string | no | |
|
|
6855
|
-
| marked | number | no | |
|
|
6879
|
+
| min | number | no | |
|
|
6880
|
+
| max | number | no | |
|
|
6856
6881
|
|
|
6857
6882
|
---
|
|
6858
6883
|
|
|
6859
6884
|
|
|
6860
6885
|
|
|
6861
6886
|
|
|
6862
|
-
#### [
|
|
6887
|
+
#### [ShipmentPromise](#ShipmentPromise)
|
|
6863
6888
|
|
|
6864
6889
|
| Properties | Type | Nullable | Description |
|
|
6865
6890
|
| ---------- | ---- | -------- | ----------- |
|
|
6866
|
-
|
|
|
6867
|
-
|
|
|
6891
|
+
| formatted | [PromiseFormatted](#PromiseFormatted) | no | |
|
|
6892
|
+
| timestamp | [PromiseTimestamp](#PromiseTimestamp) | no | |
|
|
6868
6893
|
|
|
6869
6894
|
---
|
|
6870
6895
|
|
|
6871
6896
|
|
|
6872
6897
|
|
|
6873
6898
|
|
|
6874
|
-
#### [
|
|
6899
|
+
#### [ProductAvailability](#ProductAvailability)
|
|
6875
6900
|
|
|
6876
6901
|
| Properties | Type | Nullable | Description |
|
|
6877
6902
|
| ---------- | ---- | -------- | ----------- |
|
|
6878
|
-
|
|
|
6879
|
-
|
|
|
6903
|
+
| other_store_quantity | number | no | |
|
|
6904
|
+
| out_of_stock | boolean | no | |
|
|
6905
|
+
| sizes | [string] | no | |
|
|
6906
|
+
| is_valid | boolean | no | |
|
|
6907
|
+
| deliverable | boolean | no | |
|
|
6880
6908
|
|
|
6881
6909
|
---
|
|
6882
6910
|
|
|
6883
6911
|
|
|
6884
6912
|
|
|
6885
6913
|
|
|
6886
|
-
#### [
|
|
6914
|
+
#### [ProductPrice](#ProductPrice)
|
|
6887
6915
|
|
|
6888
6916
|
| Properties | Type | Nullable | Description |
|
|
6889
6917
|
| ---------- | ---- | -------- | ----------- |
|
|
6890
|
-
|
|
|
6891
|
-
|
|
|
6892
|
-
|
|
|
6893
|
-
|
|
|
6894
|
-
|
|
|
6895
|
-
|
|
|
6896
|
-
| seller | [BaseInfo](#BaseInfo) | no | |
|
|
6897
|
-
| parent_item_identifiers | string | no | |
|
|
6898
|
-
| store | [BaseInfo](#BaseInfo) | no | |
|
|
6899
|
-
| type | string | no | |
|
|
6918
|
+
| marked | number | no | |
|
|
6919
|
+
| currency_code | string | no | |
|
|
6920
|
+
| add_on | number | no | |
|
|
6921
|
+
| currency_symbol | string | no | |
|
|
6922
|
+
| selling | number | no | |
|
|
6923
|
+
| effective | number | no | |
|
|
6900
6924
|
|
|
6901
6925
|
---
|
|
6902
6926
|
|
|
6903
6927
|
|
|
6904
6928
|
|
|
6905
6929
|
|
|
6906
|
-
#### [
|
|
6930
|
+
#### [ProductPriceInfo](#ProductPriceInfo)
|
|
6907
6931
|
|
|
6908
6932
|
| Properties | Type | Nullable | Description |
|
|
6909
6933
|
| ---------- | ---- | -------- | ----------- |
|
|
6910
|
-
|
|
|
6911
|
-
|
|
|
6934
|
+
| base | [ProductPrice](#ProductPrice) | no | |
|
|
6935
|
+
| converted | [ProductPrice](#ProductPrice) | no | |
|
|
6912
6936
|
|
|
6913
6937
|
---
|
|
6914
6938
|
|
|
6915
6939
|
|
|
6916
6940
|
|
|
6917
6941
|
|
|
6918
|
-
#### [
|
|
6942
|
+
#### [ActionQuery](#ActionQuery)
|
|
6919
6943
|
|
|
6920
6944
|
| Properties | Type | Nullable | Description |
|
|
6921
6945
|
| ---------- | ---- | -------- | ----------- |
|
|
6922
|
-
|
|
|
6923
|
-
| mrp_promotion | boolean | no | If applied promotion is applied on product MRP or ESP |
|
|
6924
|
-
| article_quantity | number | no | Quantity of article on which promotion is applicable |
|
|
6925
|
-
| ownership | [Ownership](#Ownership) | no | Ownership of promotion |
|
|
6926
|
-
| promo_id | string | no | Promotion id |
|
|
6927
|
-
| offer_text | string | no | Offer text of current promotion |
|
|
6928
|
-
| amount | number | no | Per unit discount amount applied with current promotion |
|
|
6946
|
+
| product_slug | [string] | no | Contains list of product slug |
|
|
6929
6947
|
|
|
6930
6948
|
---
|
|
6931
6949
|
|
|
6932
6950
|
|
|
6933
6951
|
|
|
6934
6952
|
|
|
6935
|
-
#### [
|
|
6953
|
+
#### [ProductAction](#ProductAction)
|
|
6936
6954
|
|
|
6937
6955
|
| Properties | Type | Nullable | Description |
|
|
6938
6956
|
| ---------- | ---- | -------- | ----------- |
|
|
6939
|
-
|
|
|
6940
|
-
| secure_url | string | no | |
|
|
6957
|
+
| query | [ActionQuery](#ActionQuery) | no | |
|
|
6941
6958
|
| url | string | no | |
|
|
6959
|
+
| type | string | no | |
|
|
6942
6960
|
|
|
6943
6961
|
---
|
|
6944
6962
|
|
|
6945
6963
|
|
|
6946
6964
|
|
|
6947
6965
|
|
|
6948
|
-
#### [
|
|
6966
|
+
#### [BaseInfo](#BaseInfo)
|
|
6949
6967
|
|
|
6950
6968
|
| Properties | Type | Nullable | Description |
|
|
6951
6969
|
| ---------- | ---- | -------- | ----------- |
|
|
6952
6970
|
| name | string | no | |
|
|
6953
|
-
| uid | number | no |
|
|
6971
|
+
| uid | number | no | |
|
|
6954
6972
|
|
|
6955
6973
|
---
|
|
6956
6974
|
|
|
6957
6975
|
|
|
6958
6976
|
|
|
6959
6977
|
|
|
6960
|
-
#### [
|
|
6978
|
+
#### [CategoryInfo](#CategoryInfo)
|
|
6961
6979
|
|
|
6962
6980
|
| Properties | Type | Nullable | Description |
|
|
6963
6981
|
| ---------- | ---- | -------- | ----------- |
|
|
6964
|
-
|
|
|
6982
|
+
| name | string | no | |
|
|
6983
|
+
| uid | number | no | Product Category Id |
|
|
6965
6984
|
|
|
6966
6985
|
---
|
|
6967
6986
|
|
|
6968
6987
|
|
|
6969
6988
|
|
|
6970
6989
|
|
|
6971
|
-
#### [
|
|
6990
|
+
#### [ProductImage](#ProductImage)
|
|
6972
6991
|
|
|
6973
6992
|
| Properties | Type | Nullable | Description |
|
|
6974
6993
|
| ---------- | ---- | -------- | ----------- |
|
|
6994
|
+
| secure_url | string | no | |
|
|
6995
|
+
| aspect_ratio | string | no | |
|
|
6975
6996
|
| url | string | no | |
|
|
6976
|
-
| query | [ActionQuery](#ActionQuery) | no | |
|
|
6977
|
-
| type | string | no | |
|
|
6978
6997
|
|
|
6979
6998
|
---
|
|
6980
6999
|
|
|
@@ -6985,14 +7004,14 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
6985
7004
|
|
|
6986
7005
|
| Properties | Type | Nullable | Description |
|
|
6987
7006
|
| ---------- | ---- | -------- | ----------- |
|
|
6988
|
-
| name | string | no | |
|
|
6989
|
-
| images | [[ProductImage](#ProductImage)] | no | |
|
|
6990
7007
|
| slug | string | no | Unique product url name generated via product name and other meta data |
|
|
6991
|
-
| brand | [BaseInfo](#BaseInfo) | no | |
|
|
6992
|
-
| uid | number | no | |
|
|
6993
|
-
| categories | [[CategoryInfo](#CategoryInfo)] | no | |
|
|
6994
7008
|
| action | [ProductAction](#ProductAction) | no | |
|
|
7009
|
+
| brand | [BaseInfo](#BaseInfo) | no | |
|
|
7010
|
+
| name | string | no | |
|
|
6995
7011
|
| type | string | no | |
|
|
7012
|
+
| categories | [[CategoryInfo](#CategoryInfo)] | no | |
|
|
7013
|
+
| uid | number | no | |
|
|
7014
|
+
| images | [[ProductImage](#ProductImage)] | no | |
|
|
6996
7015
|
|
|
6997
7016
|
---
|
|
6998
7017
|
|
|
@@ -7010,134 +7029,125 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7010
7029
|
|
|
7011
7030
|
|
|
7012
7031
|
|
|
7013
|
-
#### [
|
|
7032
|
+
#### [Ownership](#Ownership)
|
|
7014
7033
|
|
|
7015
7034
|
| Properties | Type | Nullable | Description |
|
|
7016
7035
|
| ---------- | ---- | -------- | ----------- |
|
|
7017
|
-
|
|
|
7036
|
+
| payable_by | string | no | promo amount bearable party |
|
|
7037
|
+
| payable_category | string | no | promo amount payable category |
|
|
7018
7038
|
|
|
7019
7039
|
---
|
|
7020
7040
|
|
|
7021
7041
|
|
|
7022
7042
|
|
|
7023
7043
|
|
|
7024
|
-
#### [
|
|
7044
|
+
#### [AppliedPromotion](#AppliedPromotion)
|
|
7025
7045
|
|
|
7026
7046
|
| Properties | Type | Nullable | Description |
|
|
7027
7047
|
| ---------- | ---- | -------- | ----------- |
|
|
7028
|
-
|
|
|
7029
|
-
|
|
|
7030
|
-
|
|
|
7031
|
-
|
|
|
7032
|
-
|
|
|
7048
|
+
| offer_text | string | no | Offer text of current promotion |
|
|
7049
|
+
| article_quantity | number | no | Quantity of article on which promotion is applicable |
|
|
7050
|
+
| promotion_type | string | no | Promotion type of current promotion |
|
|
7051
|
+
| amount | number | no | Per unit discount amount applied with current promotion |
|
|
7052
|
+
| promo_id | string | no | Promotion id |
|
|
7053
|
+
| ownership | [Ownership](#Ownership) | no | Ownership of promotion |
|
|
7054
|
+
| mrp_promotion | boolean | no | If applied promotion is applied on product MRP or ESP |
|
|
7033
7055
|
|
|
7034
7056
|
---
|
|
7035
7057
|
|
|
7036
7058
|
|
|
7037
7059
|
|
|
7038
7060
|
|
|
7039
|
-
#### [
|
|
7061
|
+
#### [BasePrice](#BasePrice)
|
|
7040
7062
|
|
|
7041
7063
|
| Properties | Type | Nullable | Description |
|
|
7042
7064
|
| ---------- | ---- | -------- | ----------- |
|
|
7043
|
-
|
|
|
7044
|
-
|
|
|
7045
|
-
|
|
|
7046
|
-
|
|
|
7047
|
-
| price_per_unit | [ProductPriceInfo](#ProductPriceInfo) | no | |
|
|
7048
|
-
| promotions_applied | [[AppliedPromotion](#AppliedPromotion)] | no | |
|
|
7049
|
-
| product | [CartProduct](#CartProduct) | no | |
|
|
7050
|
-
| discount | string | no | |
|
|
7051
|
-
| identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
|
|
7052
|
-
| bulk_offer | string | no | |
|
|
7053
|
-
| is_set | boolean | no | |
|
|
7054
|
-
| key | string | no | |
|
|
7055
|
-
| message | string | no | |
|
|
7056
|
-
| parent_item_identifiers | string | no | |
|
|
7057
|
-
| promo_meta | [PromoMeta](#PromoMeta) | no | |
|
|
7058
|
-
| availability | [ProductAvailability](#ProductAvailability) | no | |
|
|
7065
|
+
| effective | number | no | |
|
|
7066
|
+
| currency_symbol | string | no | |
|
|
7067
|
+
| marked | number | no | |
|
|
7068
|
+
| currency_code | string | no | |
|
|
7059
7069
|
|
|
7060
7070
|
---
|
|
7061
7071
|
|
|
7062
7072
|
|
|
7063
7073
|
|
|
7064
7074
|
|
|
7065
|
-
#### [
|
|
7075
|
+
#### [ArticlePriceInfo](#ArticlePriceInfo)
|
|
7066
7076
|
|
|
7067
7077
|
| Properties | Type | Nullable | Description |
|
|
7068
7078
|
| ---------- | ---- | -------- | ----------- |
|
|
7069
|
-
|
|
|
7070
|
-
|
|
|
7071
|
-
| delivery_charge | number | no | |
|
|
7072
|
-
| convenience_fee | number | no | |
|
|
7073
|
-
| coupon | number | no | |
|
|
7074
|
-
| vog | number | no | |
|
|
7075
|
-
| discount | number | no | |
|
|
7076
|
-
| total | number | no | |
|
|
7077
|
-
| fynd_cash | number | no | |
|
|
7078
|
-
| mrp_total | number | no | |
|
|
7079
|
-
| cod_charge | number | no | |
|
|
7080
|
-
| you_saved | number | no | |
|
|
7079
|
+
| base | [BasePrice](#BasePrice) | no | |
|
|
7080
|
+
| converted | [BasePrice](#BasePrice) | no | |
|
|
7081
7081
|
|
|
7082
7082
|
---
|
|
7083
7083
|
|
|
7084
7084
|
|
|
7085
7085
|
|
|
7086
7086
|
|
|
7087
|
-
#### [
|
|
7087
|
+
#### [ProductArticle](#ProductArticle)
|
|
7088
7088
|
|
|
7089
7089
|
| Properties | Type | Nullable | Description |
|
|
7090
7090
|
| ---------- | ---- | -------- | ----------- |
|
|
7091
|
-
| code | string | no | |
|
|
7092
|
-
| uid | string | no | |
|
|
7093
|
-
| message | string | no | |
|
|
7094
|
-
| value | number | no | |
|
|
7095
|
-
| is_applied | boolean | no | |
|
|
7096
7091
|
| type | string | no | |
|
|
7092
|
+
| parent_item_identifiers | string | no | |
|
|
7093
|
+
| seller | [BaseInfo](#BaseInfo) | no | |
|
|
7094
|
+
| extra_meta | string | no | |
|
|
7095
|
+
| _custom_json | string | no | |
|
|
7096
|
+
| store | [BaseInfo](#BaseInfo) | no | |
|
|
7097
|
+
| price | [ArticlePriceInfo](#ArticlePriceInfo) | no | |
|
|
7098
|
+
| uid | string | no | |
|
|
7099
|
+
| product_group_tags | [string] | no | |
|
|
7100
|
+
| size | string | no | |
|
|
7101
|
+
| quantity | number | no | |
|
|
7097
7102
|
|
|
7098
7103
|
---
|
|
7099
7104
|
|
|
7100
7105
|
|
|
7101
7106
|
|
|
7102
7107
|
|
|
7103
|
-
#### [
|
|
7108
|
+
#### [PromoMeta](#PromoMeta)
|
|
7104
7109
|
|
|
7105
7110
|
| Properties | Type | Nullable | Description |
|
|
7106
7111
|
| ---------- | ---- | -------- | ----------- |
|
|
7107
|
-
|
|
|
7108
|
-
| message | [string] | no | |
|
|
7109
|
-
| display | string | no | |
|
|
7110
|
-
| currency_symbol | string | no | |
|
|
7111
|
-
| key | string | no | |
|
|
7112
|
-
| value | number | no | |
|
|
7112
|
+
| message | string | no | |
|
|
7113
7113
|
|
|
7114
7114
|
---
|
|
7115
7115
|
|
|
7116
7116
|
|
|
7117
7117
|
|
|
7118
7118
|
|
|
7119
|
-
#### [
|
|
7119
|
+
#### [CartProductInfo](#CartProductInfo)
|
|
7120
7120
|
|
|
7121
7121
|
| Properties | Type | Nullable | Description |
|
|
7122
7122
|
| ---------- | ---- | -------- | ----------- |
|
|
7123
|
-
|
|
|
7124
|
-
|
|
|
7125
|
-
|
|
|
7126
|
-
|
|
|
7127
|
-
|
|
7128
|
-
|
|
7129
|
-
|
|
7130
|
-
|
|
7123
|
+
| coupon_message | string | no | |
|
|
7124
|
+
| is_set | boolean | no | |
|
|
7125
|
+
| availability | [ProductAvailability](#ProductAvailability) | no | |
|
|
7126
|
+
| parent_item_identifiers | string | no | |
|
|
7127
|
+
| message | string | no | |
|
|
7128
|
+
| price_per_unit | [ProductPriceInfo](#ProductPriceInfo) | no | |
|
|
7129
|
+
| key | string | no | |
|
|
7130
|
+
| product | [CartProduct](#CartProduct) | no | |
|
|
7131
|
+
| discount | string | no | |
|
|
7132
|
+
| identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
|
|
7133
|
+
| price | [ProductPriceInfo](#ProductPriceInfo) | no | |
|
|
7134
|
+
| bulk_offer | string | no | |
|
|
7135
|
+
| promotions_applied | [[AppliedPromotion](#AppliedPromotion)] | no | |
|
|
7136
|
+
| article | [ProductArticle](#ProductArticle) | no | |
|
|
7137
|
+
| promo_meta | [PromoMeta](#PromoMeta) | no | |
|
|
7138
|
+
| quantity | number | no | |
|
|
7139
|
+
|
|
7140
|
+
---
|
|
7141
|
+
|
|
7142
|
+
|
|
7131
7143
|
|
|
7132
7144
|
|
|
7133
|
-
#### [
|
|
7145
|
+
#### [CartCurrency](#CartCurrency)
|
|
7134
7146
|
|
|
7135
7147
|
| Properties | Type | Nullable | Description |
|
|
7136
7148
|
| ---------- | ---- | -------- | ----------- |
|
|
7137
|
-
|
|
|
7138
|
-
|
|
|
7139
|
-
| display | [[DisplayBreakup](#DisplayBreakup)] | no | |
|
|
7140
|
-
| loyalty_points | [LoyaltyPoints](#LoyaltyPoints) | no | |
|
|
7149
|
+
| symbol | string | no | |
|
|
7150
|
+
| code | string | no | Currency code defined by ISO 4217:2015 |
|
|
7141
7151
|
|
|
7142
7152
|
---
|
|
7143
7153
|
|
|
@@ -7148,22 +7158,22 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7148
7158
|
|
|
7149
7159
|
| Properties | Type | Nullable | Description |
|
|
7150
7160
|
| ---------- | ---- | -------- | ----------- |
|
|
7151
|
-
|
|
|
7152
|
-
| last_modified | string | no | |
|
|
7153
|
-
| currency | [CartCurrency](#CartCurrency) | no | |
|
|
7161
|
+
| breakup_values | [CartBreakup](#CartBreakup) | no | |
|
|
7154
7162
|
| message | string | no | |
|
|
7155
|
-
|
|
|
7163
|
+
| restrict_checkout | boolean | no | |
|
|
7164
|
+
| payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
|
|
7156
7165
|
| id | string | no | |
|
|
7157
|
-
|
|
|
7166
|
+
| coupon_text | string | no | |
|
|
7158
7167
|
| gstin | string | no | |
|
|
7168
|
+
| checkout_mode | string | no | |
|
|
7169
|
+
| delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
|
|
7170
|
+
| buy_now | boolean | no | |
|
|
7159
7171
|
| is_valid | boolean | no | |
|
|
7160
|
-
|
|
|
7161
|
-
| coupon_text | string | no | |
|
|
7172
|
+
| last_modified | string | no | |
|
|
7162
7173
|
| delivery_charge_info | string | no | |
|
|
7163
7174
|
| items | [[CartProductInfo](#CartProductInfo)] | no | |
|
|
7164
|
-
|
|
|
7165
|
-
|
|
|
7166
|
-
| restrict_checkout | boolean | no | |
|
|
7175
|
+
| currency | [CartCurrency](#CartCurrency) | no | |
|
|
7176
|
+
| comment | string | no | |
|
|
7167
7177
|
|
|
7168
7178
|
---
|
|
7169
7179
|
|
|
@@ -7174,18 +7184,19 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7174
7184
|
|
|
7175
7185
|
| Properties | Type | Nullable | Description |
|
|
7176
7186
|
| ---------- | ---- | -------- | ----------- |
|
|
7187
|
+
| seller_id | number | no | |
|
|
7177
7188
|
| pos | boolean | no | |
|
|
7178
7189
|
| store_id | number | no | |
|
|
7179
|
-
| article_id | string | no | |
|
|
7180
|
-
| quantity | number | no | |
|
|
7181
|
-
| seller_id | number | no | |
|
|
7182
|
-
| display | string | no | |
|
|
7183
|
-
| extra_meta | string | no | |
|
|
7184
|
-
| product_group_tags | [string] | no | |
|
|
7185
|
-
| article_assignment | string | no | |
|
|
7186
7190
|
| parent_item_identifiers | string | no | |
|
|
7187
|
-
| item_size | string | no | |
|
|
7188
7191
|
| item_id | number | no | |
|
|
7192
|
+
| article_assignment | string | no | |
|
|
7193
|
+
| product_group_tags | [string] | no | |
|
|
7194
|
+
| extra_meta | string | no | |
|
|
7195
|
+
| _custom_json | string | no | |
|
|
7196
|
+
| article_id | string | no | |
|
|
7197
|
+
| item_size | string | no | |
|
|
7198
|
+
| display | string | no | |
|
|
7199
|
+
| quantity | number | no | |
|
|
7189
7200
|
|
|
7190
7201
|
---
|
|
7191
7202
|
|
|
@@ -7207,9 +7218,9 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7207
7218
|
|
|
7208
7219
|
| Properties | Type | Nullable | Description |
|
|
7209
7220
|
| ---------- | ---- | -------- | ----------- |
|
|
7210
|
-
| cart | [CartDetailResponse](#CartDetailResponse) | no | |
|
|
7211
7221
|
| success | boolean | no | True if all items are added successfully. False if partially added or not added. |
|
|
7212
7222
|
| partial | boolean | no | When adding multiple items check if all added. True if only few are added. |
|
|
7223
|
+
| cart | [CartDetailResponse](#CartDetailResponse) | no | |
|
|
7213
7224
|
| message | string | no | |
|
|
7214
7225
|
|
|
7215
7226
|
---
|
|
@@ -7221,14 +7232,15 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7221
7232
|
|
|
7222
7233
|
| Properties | Type | Nullable | Description |
|
|
7223
7234
|
| ---------- | ---- | -------- | ----------- |
|
|
7224
|
-
| article_id | string | no | |
|
|
7225
|
-
| quantity | number | no | |
|
|
7226
7235
|
| item_index | number | no | |
|
|
7236
|
+
| parent_item_identifiers | string | no | |
|
|
7237
|
+
| item_id | number | no | |
|
|
7227
7238
|
| extra_meta | string | no | |
|
|
7239
|
+
| _custom_json | string | no | |
|
|
7228
7240
|
| identifiers | [CartProductIdentifer](#CartProductIdentifer) | yes | |
|
|
7229
|
-
|
|
|
7241
|
+
| article_id | string | no | |
|
|
7230
7242
|
| item_size | string | no | |
|
|
7231
|
-
|
|
|
7243
|
+
| quantity | number | no | |
|
|
7232
7244
|
|
|
7233
7245
|
---
|
|
7234
7246
|
|
|
@@ -7251,8 +7263,8 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7251
7263
|
|
|
7252
7264
|
| Properties | Type | Nullable | Description |
|
|
7253
7265
|
| ---------- | ---- | -------- | ----------- |
|
|
7254
|
-
| cart | [CartDetailResponse](#CartDetailResponse) | no | |
|
|
7255
7266
|
| success | boolean | no | True if all items are added successfully. False if partially added or not added. |
|
|
7267
|
+
| cart | [CartDetailResponse](#CartDetailResponse) | no | |
|
|
7256
7268
|
| message | string | no | |
|
|
7257
7269
|
|
|
7258
7270
|
---
|
|
@@ -7275,15 +7287,15 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7275
7287
|
|
|
7276
7288
|
| Properties | Type | Nullable | Description |
|
|
7277
7289
|
| ---------- | ---- | -------- | ----------- |
|
|
7278
|
-
| coupon_code | string | no | |
|
|
7279
|
-
| is_applicable | boolean | no | |
|
|
7280
|
-
| minimum_cart_value | number | no | |
|
|
7281
|
-
| coupon_value | number | no | |
|
|
7282
|
-
| sub_title | string | no | |
|
|
7283
7290
|
| title | string | no | |
|
|
7291
|
+
| coupon_value | number | no | |
|
|
7292
|
+
| message | string | no | |
|
|
7284
7293
|
| expires_on | string | no | |
|
|
7285
7294
|
| max_discount_value | number | no | |
|
|
7286
|
-
|
|
|
7295
|
+
| is_applicable | boolean | no | |
|
|
7296
|
+
| sub_title | string | no | |
|
|
7297
|
+
| coupon_code | string | no | |
|
|
7298
|
+
| minimum_cart_value | number | no | |
|
|
7287
7299
|
| is_applied | boolean | no | |
|
|
7288
7300
|
|
|
7289
7301
|
---
|
|
@@ -7295,8 +7307,8 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7295
7307
|
|
|
7296
7308
|
| Properties | Type | Nullable | Description |
|
|
7297
7309
|
| ---------- | ---- | -------- | ----------- |
|
|
7298
|
-
| has_previous | boolean | no | |
|
|
7299
7310
|
| has_next | boolean | no | |
|
|
7311
|
+
| has_previous | boolean | no | |
|
|
7300
7312
|
| total | number | no | |
|
|
7301
7313
|
| total_item_count | number | no | |
|
|
7302
7314
|
| current | number | no | |
|
|
@@ -7333,11 +7345,11 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7333
7345
|
|
|
7334
7346
|
| Properties | Type | Nullable | Description |
|
|
7335
7347
|
| ---------- | ---- | -------- | ----------- |
|
|
7336
|
-
| effective | number | no | Current per unit price of product after existing deductions |
|
|
7337
|
-
| currency_code | string | no | Currency code for all amounts |
|
|
7338
7348
|
| bulk_effective | number | no | Discounted per unit price for current offer object |
|
|
7339
7349
|
| marked | number | no | Original price of product |
|
|
7350
|
+
| currency_code | string | no | Currency code for all amounts |
|
|
7340
7351
|
| currency_symbol | string | no | Currency symbol for currency |
|
|
7352
|
+
| effective | number | no | Current per unit price of product after existing deductions |
|
|
7341
7353
|
|
|
7342
7354
|
---
|
|
7343
7355
|
|
|
@@ -7348,13 +7360,13 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7348
7360
|
|
|
7349
7361
|
| Properties | Type | Nullable | Description |
|
|
7350
7362
|
| ---------- | ---- | -------- | ----------- |
|
|
7363
|
+
| margin | number | no | Percentage value of discount |
|
|
7364
|
+
| type | string | no | Offer type |
|
|
7351
7365
|
| auto_applied | boolean | no | Whether offer discount is auto applied in cart |
|
|
7352
7366
|
| price | [OfferPrice](#OfferPrice) | no | |
|
|
7353
|
-
| quantity | number | no | Quantity on which offer is applicable |
|
|
7354
|
-
| margin | number | no | Percentage value of discount |
|
|
7355
7367
|
| total | number | no | Total price of offer quantity with discount |
|
|
7356
7368
|
| best | boolean | no | Is true for best offer from all offers present for all sellers |
|
|
7357
|
-
|
|
|
7369
|
+
| quantity | number | no | Quantity on which offer is applicable |
|
|
7358
7370
|
|
|
7359
7371
|
---
|
|
7360
7372
|
|
|
@@ -7423,30 +7435,30 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7423
7435
|
|
|
7424
7436
|
| Properties | Type | Nullable | Description |
|
|
7425
7437
|
| ---------- | ---- | -------- | ----------- |
|
|
7438
|
+
| geo_location | [GeoLocation](#GeoLocation) | no | |
|
|
7439
|
+
| area_code | string | no | |
|
|
7426
7440
|
| country_iso_code | string | no | |
|
|
7427
|
-
| address | string | no | |
|
|
7428
|
-
| address_type | string | no | |
|
|
7429
|
-
| google_map_point | string | no | |
|
|
7430
|
-
| country_phone_code | string | no | |
|
|
7431
|
-
| id | string | no | |
|
|
7432
|
-
| area_code_slug | string | no | |
|
|
7433
|
-
| is_active | boolean | no | |
|
|
7434
|
-
| checkout_mode | string | no | |
|
|
7435
7441
|
| landmark | string | no | |
|
|
7442
|
+
| id | string | no | |
|
|
7443
|
+
| user_id | string | no | |
|
|
7436
7444
|
| meta | string | no | |
|
|
7437
|
-
|
|
|
7438
|
-
| geo_location | [GeoLocation](#GeoLocation) | no | |
|
|
7445
|
+
| area_code_slug | string | no | |
|
|
7439
7446
|
| city | string | no | |
|
|
7440
|
-
| area_code | string | no | |
|
|
7441
|
-
| phone | string | no | |
|
|
7442
7447
|
| email | string | no | |
|
|
7443
|
-
| user_id | string | no | |
|
|
7444
|
-
| name | string | no | |
|
|
7445
7448
|
| is_default_address | boolean | no | |
|
|
7446
|
-
|
|
|
7449
|
+
| phone | string | no | |
|
|
7447
7450
|
| area | string | no | |
|
|
7448
|
-
|
|
|
7451
|
+
| country_phone_code | string | no | |
|
|
7452
|
+
| google_map_point | string | no | |
|
|
7453
|
+
| checkout_mode | string | no | |
|
|
7454
|
+
| address_type | string | no | |
|
|
7449
7455
|
| tags | [string] | no | |
|
|
7456
|
+
| address | string | no | |
|
|
7457
|
+
| state | string | no | |
|
|
7458
|
+
| name | string | no | |
|
|
7459
|
+
| is_active | boolean | no | |
|
|
7460
|
+
| country | string | no | |
|
|
7461
|
+
| country_code | string | no | |
|
|
7450
7462
|
|
|
7451
7463
|
---
|
|
7452
7464
|
|
|
@@ -7468,9 +7480,9 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7468
7480
|
|
|
7469
7481
|
| Properties | Type | Nullable | Description |
|
|
7470
7482
|
| ---------- | ---- | -------- | ----------- |
|
|
7471
|
-
| is_default_address | boolean | no | |
|
|
7472
7483
|
| success | boolean | no | |
|
|
7473
7484
|
| id | string | no | |
|
|
7485
|
+
| is_default_address | boolean | no | |
|
|
7474
7486
|
|
|
7475
7487
|
---
|
|
7476
7488
|
|
|
@@ -7481,10 +7493,10 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7481
7493
|
|
|
7482
7494
|
| Properties | Type | Nullable | Description |
|
|
7483
7495
|
| ---------- | ---- | -------- | ----------- |
|
|
7484
|
-
| is_default_address | boolean | no | |
|
|
7485
7496
|
| success | boolean | no | |
|
|
7486
7497
|
| id | string | no | |
|
|
7487
7498
|
| is_updated | boolean | no | |
|
|
7499
|
+
| is_default_address | boolean | no | |
|
|
7488
7500
|
|
|
7489
7501
|
---
|
|
7490
7502
|
|
|
@@ -7495,8 +7507,8 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7495
7507
|
|
|
7496
7508
|
| Properties | Type | Nullable | Description |
|
|
7497
7509
|
| ---------- | ---- | -------- | ----------- |
|
|
7498
|
-
| is_deleted | boolean | no | |
|
|
7499
7510
|
| id | string | no | |
|
|
7511
|
+
| is_deleted | boolean | no | |
|
|
7500
7512
|
|
|
7501
7513
|
---
|
|
7502
7514
|
|
|
@@ -7507,9 +7519,9 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7507
7519
|
|
|
7508
7520
|
| Properties | Type | Nullable | Description |
|
|
7509
7521
|
| ---------- | ---- | -------- | ----------- |
|
|
7510
|
-
| billing_address_id | string | no | |
|
|
7511
|
-
| cart_id | string | no | |
|
|
7512
7522
|
| id | string | no | |
|
|
7523
|
+
| cart_id | string | no | |
|
|
7524
|
+
| billing_address_id | string | no | |
|
|
7513
7525
|
|
|
7514
7526
|
---
|
|
7515
7527
|
|
|
@@ -7520,11 +7532,11 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7520
7532
|
|
|
7521
7533
|
| Properties | Type | Nullable | Description |
|
|
7522
7534
|
| ---------- | ---- | -------- | ----------- |
|
|
7523
|
-
| payment_mode | string | no | |
|
|
7524
|
-
| payment_identifier | string | no | |
|
|
7525
7535
|
| aggregator_name | string | no | |
|
|
7526
7536
|
| id | string | no | |
|
|
7527
7537
|
| address_id | string | no | |
|
|
7538
|
+
| payment_identifier | string | no | |
|
|
7539
|
+
| payment_mode | string | no | |
|
|
7528
7540
|
| merchant_code | string | no | |
|
|
7529
7541
|
|
|
7530
7542
|
---
|
|
@@ -7537,10 +7549,10 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7537
7549
|
| Properties | Type | Nullable | Description |
|
|
7538
7550
|
| ---------- | ---- | -------- | ----------- |
|
|
7539
7551
|
| code | string | no | |
|
|
7540
|
-
| valid | boolean | no | |
|
|
7541
|
-
| discount | number | no | |
|
|
7542
7552
|
| title | string | no | |
|
|
7553
|
+
| valid | boolean | no | |
|
|
7543
7554
|
| display_message_en | string | no | |
|
|
7555
|
+
| discount | number | no | |
|
|
7544
7556
|
|
|
7545
7557
|
---
|
|
7546
7558
|
|
|
@@ -7551,8 +7563,8 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7551
7563
|
|
|
7552
7564
|
| Properties | Type | Nullable | Description |
|
|
7553
7565
|
| ---------- | ---- | -------- | ----------- |
|
|
7554
|
-
| coupon_validity | [CouponValidity](#CouponValidity) | no | |
|
|
7555
7566
|
| success | boolean | yes | |
|
|
7567
|
+
| coupon_validity | [CouponValidity](#CouponValidity) | no | |
|
|
7556
7568
|
| message | string | no | |
|
|
7557
7569
|
|
|
7558
7570
|
---
|
|
@@ -7564,16 +7576,16 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7564
7576
|
|
|
7565
7577
|
| Properties | Type | Nullable | Description |
|
|
7566
7578
|
| ---------- | ---- | -------- | ----------- |
|
|
7579
|
+
| dp_options | string | no | |
|
|
7567
7580
|
| shipments | number | no | |
|
|
7568
|
-
| dp_id | string | no | |
|
|
7569
7581
|
| order_type | string | no | |
|
|
7570
|
-
|
|
|
7582
|
+
| dp_id | string | no | |
|
|
7571
7583
|
| fulfillment_type | string | no | |
|
|
7584
|
+
| promise | [ShipmentPromise](#ShipmentPromise) | no | |
|
|
7572
7585
|
| box_type | string | no | |
|
|
7586
|
+
| fulfillment_id | number | no | |
|
|
7573
7587
|
| shipment_type | string | no | |
|
|
7574
7588
|
| items | [[CartProductInfo](#CartProductInfo)] | no | |
|
|
7575
|
-
| dp_options | string | no | |
|
|
7576
|
-
| fulfillment_id | number | no | |
|
|
7577
7589
|
|
|
7578
7590
|
---
|
|
7579
7591
|
|
|
@@ -7584,25 +7596,25 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7584
7596
|
|
|
7585
7597
|
| Properties | Type | Nullable | Description |
|
|
7586
7598
|
| ---------- | ---- | -------- | ----------- |
|
|
7587
|
-
| delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
|
|
7588
|
-
| shipments | [[ShipmentResponse](#ShipmentResponse)] | no | |
|
|
7589
|
-
| last_modified | string | no | |
|
|
7590
|
-
| currency | [CartCurrency](#CartCurrency) | no | |
|
|
7591
|
-
| uid | string | no | |
|
|
7592
|
-
| id | string | no | |
|
|
7593
|
-
| gstin | string | no | |
|
|
7594
|
-
| delivery_charge_info | string | no | |
|
|
7595
|
-
| is_valid | boolean | no | |
|
|
7596
|
-
| cart_id | number | no | |
|
|
7597
|
-
| error | boolean | no | |
|
|
7598
|
-
| coupon_text | string | no | |
|
|
7599
7599
|
| message | string | no | |
|
|
7600
|
+
| restrict_checkout | boolean | no | |
|
|
7601
|
+
| id | string | no | |
|
|
7600
7602
|
| checkout_mode | string | no | |
|
|
7603
|
+
| uid | string | no | |
|
|
7604
|
+
| currency | [CartCurrency](#CartCurrency) | no | |
|
|
7605
|
+
| comment | string | no | |
|
|
7601
7606
|
| breakup_values | [CartBreakup](#CartBreakup) | no | |
|
|
7602
|
-
|
|
|
7603
|
-
|
|
|
7607
|
+
| shipments | [[ShipmentResponse](#ShipmentResponse)] | no | |
|
|
7608
|
+
| error | boolean | no | |
|
|
7604
7609
|
| payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
|
|
7605
|
-
|
|
|
7610
|
+
| coupon_text | string | no | |
|
|
7611
|
+
| gstin | string | no | |
|
|
7612
|
+
| buy_now | boolean | no | |
|
|
7613
|
+
| is_valid | boolean | no | |
|
|
7614
|
+
| cart_id | number | no | |
|
|
7615
|
+
| last_modified | string | no | |
|
|
7616
|
+
| delivery_charge_info | string | no | |
|
|
7617
|
+
| delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
|
|
7606
7618
|
|
|
7607
7619
|
---
|
|
7608
7620
|
|
|
@@ -7613,8 +7625,8 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7613
7625
|
|
|
7614
7626
|
| Properties | Type | Nullable | Description |
|
|
7615
7627
|
| ---------- | ---- | -------- | ----------- |
|
|
7616
|
-
| quantity | number | no | Quantity of product in shipment |
|
|
7617
7628
|
| shipment_type | string | yes | Shipment delivery type |
|
|
7629
|
+
| quantity | number | no | Quantity of product in shipment |
|
|
7618
7630
|
| article_uid | string | yes | Article mongo id |
|
|
7619
7631
|
|
|
7620
7632
|
---
|
|
@@ -7633,11 +7645,26 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7633
7645
|
|
|
7634
7646
|
|
|
7635
7647
|
|
|
7636
|
-
#### [
|
|
7648
|
+
#### [StaffCheckout](#StaffCheckout)
|
|
7637
7649
|
|
|
7638
7650
|
| Properties | Type | Nullable | Description |
|
|
7639
7651
|
| ---------- | ---- | -------- | ----------- |
|
|
7640
|
-
|
|
|
7652
|
+
| user | string | yes | |
|
|
7653
|
+
| last_name | string | yes | |
|
|
7654
|
+
| employee_code | string | no | |
|
|
7655
|
+
| _id | string | yes | |
|
|
7656
|
+
| first_name | string | yes | |
|
|
7657
|
+
|
|
7658
|
+
---
|
|
7659
|
+
|
|
7660
|
+
|
|
7661
|
+
|
|
7662
|
+
|
|
7663
|
+
#### [CartCheckoutCustomMeta](#CartCheckoutCustomMeta)
|
|
7664
|
+
|
|
7665
|
+
| Properties | Type | Nullable | Description |
|
|
7666
|
+
| ---------- | ---- | -------- | ----------- |
|
|
7667
|
+
| value | string | yes | |
|
|
7641
7668
|
| key | string | yes | |
|
|
7642
7669
|
|
|
7643
7670
|
---
|
|
@@ -7645,14 +7672,12 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7645
7672
|
|
|
7646
7673
|
|
|
7647
7674
|
|
|
7648
|
-
#### [
|
|
7675
|
+
#### [Files](#Files)
|
|
7649
7676
|
|
|
7650
7677
|
| Properties | Type | Nullable | Description |
|
|
7651
7678
|
| ---------- | ---- | -------- | ----------- |
|
|
7652
|
-
|
|
|
7653
|
-
|
|
|
7654
|
-
| last_name | string | yes | |
|
|
7655
|
-
| _id | string | yes | |
|
|
7679
|
+
| key | string | yes | |
|
|
7680
|
+
| values | [string] | yes | |
|
|
7656
7681
|
|
|
7657
7682
|
---
|
|
7658
7683
|
|
|
@@ -7663,24 +7688,25 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7663
7688
|
|
|
7664
7689
|
| Properties | Type | Nullable | Description |
|
|
7665
7690
|
| ---------- | ---- | -------- | ----------- |
|
|
7666
|
-
| payment_mode | string | yes | |
|
|
7667
|
-
| aggregator | string | no | |
|
|
7668
|
-
| pick_at_store_uid | number | no | |
|
|
7669
|
-
| extra_meta | string | no | |
|
|
7670
|
-
| files | [[Files](#Files)] | no | List of file url |
|
|
7671
|
-
| payment_params | string | no | |
|
|
7672
7691
|
| billing_address_id | string | no | |
|
|
7673
|
-
|
|
|
7674
|
-
|
|
|
7692
|
+
| extra_meta | string | no | |
|
|
7693
|
+
| billing_address | string | no | |
|
|
7694
|
+
| delivery_address | string | no | |
|
|
7675
7695
|
| meta | string | no | |
|
|
7676
7696
|
| address_id | string | no | |
|
|
7677
|
-
| payment_auto_confirm | boolean | no | |
|
|
7678
7697
|
| staff | [StaffCheckout](#StaffCheckout) | no | |
|
|
7679
|
-
|
|
|
7698
|
+
| payment_mode | string | yes | |
|
|
7680
7699
|
| payment_identifier | string | no | |
|
|
7700
|
+
| payment_params | string | no | |
|
|
7681
7701
|
| pos | boolean | no | |
|
|
7702
|
+
| aggregator | string | no | |
|
|
7703
|
+
| pick_at_store_uid | number | no | |
|
|
7704
|
+
| payment_auto_confirm | boolean | no | |
|
|
7705
|
+
| custom_meta | [[CartCheckoutCustomMeta](#CartCheckoutCustomMeta)] | no | |
|
|
7682
7706
|
| order_type | string | yes | |
|
|
7683
|
-
|
|
|
7707
|
+
| ordering_store | number | no | |
|
|
7708
|
+
| files | [[Files](#Files)] | no | List of file url |
|
|
7709
|
+
| merchant_code | string | no | |
|
|
7684
7710
|
| callback_url | string | no | |
|
|
7685
7711
|
|
|
7686
7712
|
---
|
|
@@ -7692,35 +7718,35 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7692
7718
|
|
|
7693
7719
|
| Properties | Type | Nullable | Description |
|
|
7694
7720
|
| ---------- | ---- | -------- | ----------- |
|
|
7695
|
-
|
|
|
7696
|
-
|
|
|
7721
|
+
| delivery_charges | number | no | |
|
|
7722
|
+
| message | string | no | |
|
|
7723
|
+
| restrict_checkout | boolean | no | |
|
|
7697
7724
|
| id | string | no | |
|
|
7725
|
+
| error_message | string | no | |
|
|
7726
|
+
| items | [[CartProductInfo](#CartProductInfo)] | no | |
|
|
7727
|
+
| comment | string | no | |
|
|
7728
|
+
| breakup_values | [CartBreakup](#CartBreakup) | no | |
|
|
7698
7729
|
| gstin | string | no | |
|
|
7730
|
+
| buy_now | boolean | no | |
|
|
7699
7731
|
| is_valid | boolean | no | |
|
|
7700
|
-
|
|
|
7701
|
-
|
|
|
7702
|
-
|
|
|
7703
|
-
| error_message | string | no | |
|
|
7704
|
-
| message | string | no | |
|
|
7732
|
+
| last_modified | string | no | |
|
|
7733
|
+
| delivery_charge_order_value | number | no | |
|
|
7734
|
+
| order_id | string | no | |
|
|
7705
7735
|
| checkout_mode | string | no | |
|
|
7706
|
-
|
|
|
7707
|
-
|
|
|
7736
|
+
| uid | string | no | |
|
|
7737
|
+
| cod_message | string | no | |
|
|
7708
7738
|
| store_code | string | no | |
|
|
7709
|
-
|
|
|
7739
|
+
| currency | [CartCurrency](#CartCurrency) | no | |
|
|
7710
7740
|
| user_type | string | no | |
|
|
7711
|
-
|
|
|
7712
|
-
|
|
|
7713
|
-
|
|
|
7714
|
-
| cod_charges | number | no | |
|
|
7715
|
-
| last_modified | string | no | |
|
|
7741
|
+
| cod_available | boolean | no | |
|
|
7742
|
+
| payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
|
|
7743
|
+
| success | boolean | no | |
|
|
7716
7744
|
| store_emps | [string] | no | |
|
|
7717
|
-
|
|
|
7718
|
-
|
|
|
7745
|
+
| cod_charges | number | no | |
|
|
7746
|
+
| coupon_text | string | no | |
|
|
7719
7747
|
| cart_id | number | no | |
|
|
7720
|
-
| breakup_values | [CartBreakup](#CartBreakup) | no | |
|
|
7721
|
-
| restrict_checkout | boolean | no | |
|
|
7722
7748
|
| delivery_charge_info | string | no | |
|
|
7723
|
-
|
|
|
7749
|
+
| delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
|
|
7724
7750
|
|
|
7725
7751
|
---
|
|
7726
7752
|
|
|
@@ -7731,14 +7757,14 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7731
7757
|
|
|
7732
7758
|
| Properties | Type | Nullable | Description |
|
|
7733
7759
|
| ---------- | ---- | -------- | ----------- |
|
|
7734
|
-
| cart | [CheckCart](#CheckCart) | no | |
|
|
7735
|
-
| order_id | string | no | |
|
|
7736
7760
|
| payment_confirm_url | string | no | |
|
|
7737
|
-
|
|
|
7761
|
+
| order_id | string | no | |
|
|
7738
7762
|
| message | string | no | |
|
|
7739
|
-
| callback_url | string | no | |
|
|
7740
7763
|
| success | boolean | no | |
|
|
7764
|
+
| cart | [CheckCart](#CheckCart) | no | |
|
|
7741
7765
|
| app_intercept_url | string | no | |
|
|
7766
|
+
| callback_url | string | no | |
|
|
7767
|
+
| data | string | no | |
|
|
7742
7768
|
|
|
7743
7769
|
---
|
|
7744
7770
|
|
|
@@ -7749,10 +7775,10 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7749
7775
|
|
|
7750
7776
|
| Properties | Type | Nullable | Description |
|
|
7751
7777
|
| ---------- | ---- | -------- | ----------- |
|
|
7752
|
-
| pick_up_customer_details | string | no | Customer contact details for customer pickup at store |
|
|
7753
7778
|
| checkout_mode | string | no | |
|
|
7754
|
-
|
|
|
7779
|
+
| pick_up_customer_details | string | no | Customer contact details for customer pickup at store |
|
|
7755
7780
|
| gstin | string | no | |
|
|
7781
|
+
| comment | string | no | |
|
|
7756
7782
|
|
|
7757
7783
|
---
|
|
7758
7784
|
|
|
@@ -7785,8 +7811,8 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7785
7811
|
|
|
7786
7812
|
| Properties | Type | Nullable | Description |
|
|
7787
7813
|
| ---------- | ---- | -------- | ----------- |
|
|
7788
|
-
| available_modes | [string] | no | Available delivery modes |
|
|
7789
7814
|
| pickup_stores | [number] | no | Store pick up available store uids |
|
|
7815
|
+
| available_modes | [string] | no | Available delivery modes |
|
|
7790
7816
|
|
|
7791
7817
|
---
|
|
7792
7818
|
|
|
@@ -7797,22 +7823,22 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7797
7823
|
|
|
7798
7824
|
| Properties | Type | Nullable | Description |
|
|
7799
7825
|
| ---------- | ---- | -------- | ----------- |
|
|
7800
|
-
|
|
|
7826
|
+
| area | string | no | |
|
|
7827
|
+
| pincode | number | no | |
|
|
7801
7828
|
| area_code | string | no | |
|
|
7829
|
+
| area_code_slug | string | no | |
|
|
7802
7830
|
| name | string | no | |
|
|
7803
|
-
|
|
|
7804
|
-
|
|
|
7805
|
-
| address_type | string | no | |
|
|
7831
|
+
| city | string | no | |
|
|
7832
|
+
| email | string | no | |
|
|
7806
7833
|
| landmark | string | no | |
|
|
7807
|
-
| country | string | no | |
|
|
7808
|
-
| uid | number | no | |
|
|
7809
|
-
| area | string | no | |
|
|
7810
7834
|
| id | number | no | |
|
|
7811
7835
|
| store_code | string | no | |
|
|
7812
7836
|
| phone | string | no | |
|
|
7837
|
+
| address_type | string | no | |
|
|
7838
|
+
| country | string | no | |
|
|
7839
|
+
| uid | number | no | |
|
|
7813
7840
|
| state | string | no | |
|
|
7814
|
-
|
|
|
7815
|
-
| email | string | no | |
|
|
7841
|
+
| address | string | no | |
|
|
7816
7842
|
|
|
7817
7843
|
---
|
|
7818
7844
|
|
|
@@ -7846,8 +7872,8 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7846
7872
|
|
|
7847
7873
|
| Properties | Type | Nullable | Description |
|
|
7848
7874
|
| ---------- | ---- | -------- | ----------- |
|
|
7849
|
-
| token | string | no | Short url unique id |
|
|
7850
7875
|
| share_url | string | no | Short shareable final url |
|
|
7876
|
+
| token | string | no | Short url unique id |
|
|
7851
7877
|
|
|
7852
7878
|
---
|
|
7853
7879
|
|
|
@@ -7858,11 +7884,11 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7858
7884
|
|
|
7859
7885
|
| Properties | Type | Nullable | Description |
|
|
7860
7886
|
| ---------- | ---- | -------- | ----------- |
|
|
7861
|
-
| source | string | no | Share link device and other source information |
|
|
7862
7887
|
| user | string | no | User details of who generated share link |
|
|
7863
|
-
|
|
|
7864
|
-
| meta | string | no | Meta data sent while generating share cart link |
|
|
7888
|
+
| source | string | no | Share link device and other source information |
|
|
7865
7889
|
| created_on | string | no | |
|
|
7890
|
+
| meta | string | no | Meta data sent while generating share cart link |
|
|
7891
|
+
| token | string | no | Short link id |
|
|
7866
7892
|
|
|
7867
7893
|
---
|
|
7868
7894
|
|
|
@@ -7873,25 +7899,25 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7873
7899
|
|
|
7874
7900
|
| Properties | Type | Nullable | Description |
|
|
7875
7901
|
| ---------- | ---- | -------- | ----------- |
|
|
7876
|
-
|
|
|
7902
|
+
| shared_cart_details | [SharedCartDetails](#SharedCartDetails) | no | |
|
|
7903
|
+
| message | string | no | |
|
|
7904
|
+
| restrict_checkout | boolean | no | |
|
|
7877
7905
|
| id | string | no | |
|
|
7906
|
+
| items | [[CartProductInfo](#CartProductInfo)] | no | |
|
|
7907
|
+
| comment | string | no | |
|
|
7908
|
+
| breakup_values | [CartBreakup](#CartBreakup) | no | |
|
|
7878
7909
|
| gstin | string | no | |
|
|
7879
|
-
| is_valid | boolean | no | |
|
|
7880
|
-
| coupon_text | string | no | |
|
|
7881
|
-
| message | string | no | |
|
|
7882
|
-
| checkout_mode | string | no | |
|
|
7883
7910
|
| buy_now | boolean | no | |
|
|
7884
|
-
|
|
|
7885
|
-
| payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
|
|
7886
|
-
| comment | string | no | |
|
|
7887
|
-
| delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
|
|
7911
|
+
| is_valid | boolean | no | |
|
|
7888
7912
|
| last_modified | string | no | |
|
|
7913
|
+
| checkout_mode | string | no | |
|
|
7889
7914
|
| uid | string | no | |
|
|
7915
|
+
| currency | [CartCurrency](#CartCurrency) | no | |
|
|
7916
|
+
| payment_selection_lock | [PaymentSelectionLock](#PaymentSelectionLock) | no | |
|
|
7917
|
+
| coupon_text | string | no | |
|
|
7890
7918
|
| cart_id | number | no | |
|
|
7891
|
-
| breakup_values | [CartBreakup](#CartBreakup) | no | |
|
|
7892
|
-
| restrict_checkout | boolean | no | |
|
|
7893
7919
|
| delivery_charge_info | string | no | |
|
|
7894
|
-
|
|
|
7920
|
+
| delivery_promise | [ShipmentPromise](#ShipmentPromise) | no | |
|
|
7895
7921
|
|
|
7896
7922
|
---
|
|
7897
7923
|
|
|
@@ -7902,8 +7928,8 @@ Success. Returns a merged or replaced cart as per the valid token. Refer `Shared
|
|
|
7902
7928
|
|
|
7903
7929
|
| Properties | Type | Nullable | Description |
|
|
7904
7930
|
| ---------- | ---- | -------- | ----------- |
|
|
7905
|
-
| cart | [SharedCart](#SharedCart) | no | |
|
|
7906
7931
|
| error | string | no | |
|
|
7932
|
+
| cart | [SharedCart](#SharedCart) | no | |
|
|
7907
7933
|
|
|
7908
7934
|
---
|
|
7909
7935
|
|