@gofynd/fdk-client-javascript 0.1.36 → 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 +313 -281
- package/documentation/application/CATALOG.md +458 -435
- package/documentation/application/FILESTORAGE.md +2 -0
- package/documentation/application/LEAD.md +18 -18
- package/documentation/application/LOGISTIC.md +424 -102
- package/documentation/application/ORDER.md +293 -293
- package/documentation/application/PAYMENT.md +278 -278
- package/documentation/application/POSCART.md +350 -318
- package/documentation/application/README.md +1 -1
- package/documentation/application/REWARDS.md +1 -0
- package/documentation/application/USER.md +19 -14
- package/documentation/platform/AUDITTRAIL.md +2 -2
- package/documentation/platform/CART.md +442 -439
- package/documentation/platform/CATALOG.md +2925 -2641
- package/documentation/platform/COMPANYPROFILE.md +228 -369
- 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 +1296 -1618
- 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 +6 -1
- package/sdk/application/ApplicationClient.d.ts +17 -16
- package/sdk/application/ApplicationClient.js +43 -17
- package/sdk/application/ApplicationConfig.d.ts +1 -0
- package/sdk/application/ApplicationConfig.js +4 -2
- package/sdk/application/ApplicationModels.d.ts +0 -827
- package/sdk/application/ApplicationModels.js +6 -10486
- 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/Logistic/LogisticApplicationClient.d.ts +53 -0
- package/sdk/application/{client → Logistic}/LogisticApplicationClient.js +64 -29
- package/sdk/application/Logistic/LogisticApplicationModel.d.ts +26 -0
- package/sdk/application/Logistic/LogisticApplicationModel.js +286 -0
- package/sdk/application/{models/LogisticValidator.d.ts → Logistic/LogisticApplicationValidator.d.ts} +2 -1
- package/sdk/application/{models/LogisticValidator.js → Logistic/LogisticApplicationValidator.js} +13 -7
- 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.d.ts +132 -123
- package/sdk/platform/{client → Catalog}/CatalogPlatformClient.js +354 -323
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +316 -0
- package/sdk/platform/Catalog/CatalogPlatformModel.js +4690 -0
- package/sdk/platform/{models/CatalogValidator.d.ts → Catalog/CatalogPlatformValidator.d.ts} +15 -14
- package/sdk/platform/{models/CatalogValidator.js → Catalog/CatalogPlatformValidator.js} +91 -84
- 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 +2884 -18377
- package/sdk/platform/PlatformApplicationClient.js +3750 -13814
- package/sdk/platform/PlatformClient.d.ts +2898 -2861
- package/sdk/platform/PlatformClient.js +3714 -3057
- 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/application/client/LogisticApplicationClient.d.ts +0 -42
- package/sdk/platform/PlatformApplicationModels.d.ts +0 -328
- package/sdk/platform/PlatformApplicationModels.js +0 -22522
- package/sdk/platform/PlatformModels.d.ts +0 -1470
- package/sdk/platform/PlatformModels.js +0 -20510
- 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 → 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 → 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
|
@@ -6,11 +6,12 @@
|
|
|
6
6
|
##### [Back to Application docs](./README.md)
|
|
7
7
|
|
|
8
8
|
## Logistic Methods
|
|
9
|
-
|
|
9
|
+
Logistics Promise Engine APIs allows you to configure zone, pincode, TAT, logistics and many more useful features.
|
|
10
10
|
|
|
11
|
+
* [getPincodeCity](#getpincodecity)
|
|
11
12
|
* [getTatProduct](#gettatproduct)
|
|
13
|
+
* [getAllCountries](#getallcountries)
|
|
12
14
|
* [getPincodeZones](#getpincodezones)
|
|
13
|
-
* [getPincodeCity](#getpincodecity)
|
|
14
15
|
|
|
15
16
|
|
|
16
17
|
|
|
@@ -19,8 +20,155 @@ Handles Platform websites OMS
|
|
|
19
20
|
|
|
20
21
|
|
|
21
22
|
|
|
23
|
+
### getPincodeCity
|
|
24
|
+
Get Pincode API
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
```javascript
|
|
29
|
+
// Promise
|
|
30
|
+
const promise = logistic.getPincodeCity({ pincode : value,
|
|
31
|
+
countryCode : value });
|
|
32
|
+
|
|
33
|
+
// Async/Await
|
|
34
|
+
const data = await logistic.getPincodeCity({ pincode : value,
|
|
35
|
+
countryCode : value });
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
| Argument | Type | Required | Description |
|
|
43
|
+
| --------- | ----- | -------- | ----------- |
|
|
44
|
+
| pincode | string | yes | A `pincode` contains a specific address of a location. |
|
|
45
|
+
| countryCode | string | no | A 3 alphabetic country code |
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
Get pincode data
|
|
50
|
+
|
|
51
|
+
*Returned Response:*
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
[PincodeApiResponse](#PincodeApiResponse)
|
|
57
|
+
|
|
58
|
+
Get pincode data
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
<details>
|
|
64
|
+
<summary><i> Examples:</i></summary>
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
<details>
|
|
68
|
+
<summary><i> Pincode data found</i></summary>
|
|
69
|
+
|
|
70
|
+
```json
|
|
71
|
+
{
|
|
72
|
+
"value": {
|
|
73
|
+
"data": [
|
|
74
|
+
{
|
|
75
|
+
"sub_type": "pincode",
|
|
76
|
+
"name": "421202",
|
|
77
|
+
"error": {
|
|
78
|
+
"type": null,
|
|
79
|
+
"value": null,
|
|
80
|
+
"message": null
|
|
81
|
+
},
|
|
82
|
+
"uid": "pincode:INDIA|MAHARASHTRA|MUMBAI|421202",
|
|
83
|
+
"display_name": "421202",
|
|
84
|
+
"meta": {
|
|
85
|
+
"zone": "West",
|
|
86
|
+
"internal_zone_id": 4
|
|
87
|
+
},
|
|
88
|
+
"meta_code": {
|
|
89
|
+
"country_code": "IND",
|
|
90
|
+
"isd_code": "+91"
|
|
91
|
+
},
|
|
92
|
+
"parents": [
|
|
93
|
+
{
|
|
94
|
+
"sub_type": "country",
|
|
95
|
+
"name": "India",
|
|
96
|
+
"display_name": "India",
|
|
97
|
+
"uid": "country:INDIA"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"sub_type": "state",
|
|
101
|
+
"name": "Maharashtra",
|
|
102
|
+
"display_name": "Maharashtra",
|
|
103
|
+
"uid": "state:INDIA|MAHARASHTRA"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"sub_type": "city",
|
|
107
|
+
"name": "Thane",
|
|
108
|
+
"display_name": "Thane",
|
|
109
|
+
"uid": "city:INDIA|MAHARASHTRA|MUMBAI"
|
|
110
|
+
}
|
|
111
|
+
]
|
|
112
|
+
}
|
|
113
|
+
],
|
|
114
|
+
"request_uuid": "fce9f431215e71c9ee0e86e792ae1dce4",
|
|
115
|
+
"stormbreaker_uuid": "56cca764-9fab-41f4-adb8-6e9683532aa5",
|
|
116
|
+
"error": {
|
|
117
|
+
"type": null,
|
|
118
|
+
"value": null,
|
|
119
|
+
"message": null
|
|
120
|
+
},
|
|
121
|
+
"success": true
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
```
|
|
125
|
+
</details>
|
|
126
|
+
|
|
127
|
+
<details>
|
|
128
|
+
<summary><i> Pincode not found</i></summary>
|
|
129
|
+
|
|
130
|
+
```json
|
|
131
|
+
{
|
|
132
|
+
"value": {
|
|
133
|
+
"data": [
|
|
134
|
+
{
|
|
135
|
+
"sub_type": "pincode",
|
|
136
|
+
"name": "999999",
|
|
137
|
+
"error": {
|
|
138
|
+
"type": "DoesNotExist",
|
|
139
|
+
"value": "999999",
|
|
140
|
+
"message": "pincode 999999 does not exist"
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
],
|
|
144
|
+
"request_uuid": "fce9fb9215e71c9ee0e86e792ae1dce4",
|
|
145
|
+
"stormbreaker_uuid": "03b353ed-9dbd-4629-80b2-2be337859a20",
|
|
146
|
+
"error": {
|
|
147
|
+
"type": null,
|
|
148
|
+
"value": null,
|
|
149
|
+
"message": null
|
|
150
|
+
},
|
|
151
|
+
"success": false
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
```
|
|
155
|
+
</details>
|
|
156
|
+
|
|
157
|
+
</details>
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
---
|
|
168
|
+
|
|
169
|
+
|
|
22
170
|
### getTatProduct
|
|
23
|
-
Get TAT
|
|
171
|
+
Get TAT API
|
|
24
172
|
|
|
25
173
|
|
|
26
174
|
|
|
@@ -38,31 +186,138 @@ const data = await logistic.getTatProduct({ body : value });
|
|
|
38
186
|
|
|
39
187
|
| Argument | Type | Required | Description |
|
|
40
188
|
| --------- | ----- | -------- | ----------- |
|
|
41
|
-
| body | [
|
|
189
|
+
| body | [TATViewRequest](#TATViewRequest) | yes | Request body |
|
|
42
190
|
|
|
43
191
|
|
|
44
|
-
|
|
192
|
+
Get TAT data
|
|
45
193
|
|
|
46
194
|
*Returned Response:*
|
|
47
195
|
|
|
48
196
|
|
|
49
197
|
|
|
50
198
|
|
|
51
|
-
[
|
|
199
|
+
[TATViewResponse](#TATViewResponse)
|
|
52
200
|
|
|
53
|
-
|
|
201
|
+
Get TAT data
|
|
54
202
|
|
|
55
203
|
|
|
56
204
|
|
|
57
205
|
|
|
58
206
|
<details>
|
|
59
|
-
<summary><i>
|
|
207
|
+
<summary><i> Examples:</i></summary>
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
<details>
|
|
211
|
+
<summary><i> Pincode data found</i></summary>
|
|
60
212
|
|
|
61
213
|
```json
|
|
214
|
+
{
|
|
215
|
+
"value": {
|
|
216
|
+
"source": "FYND-APP",
|
|
217
|
+
"identifier": "PDP",
|
|
218
|
+
"journey": "forward",
|
|
219
|
+
"action": "get_tat",
|
|
220
|
+
"to_pincode": "143001",
|
|
221
|
+
"location_details": [
|
|
222
|
+
{
|
|
223
|
+
"fulfillment_id": 8,
|
|
224
|
+
"from_pincode": "560023",
|
|
225
|
+
"articles": [
|
|
226
|
+
{
|
|
227
|
+
"category": {
|
|
228
|
+
"level": "l3",
|
|
229
|
+
"id": 155
|
|
230
|
+
},
|
|
231
|
+
"manufacturing_time": 2,
|
|
232
|
+
"manufacturing_time_unit": "days",
|
|
233
|
+
"promise": {
|
|
234
|
+
"timestamp": {
|
|
235
|
+
"min": 1663564548,
|
|
236
|
+
"max": 1663650948
|
|
237
|
+
},
|
|
238
|
+
"formatted": {
|
|
239
|
+
"min": "19 Sep, Monday",
|
|
240
|
+
"max": "20 Sep, Tuesday"
|
|
241
|
+
}
|
|
242
|
+
},
|
|
243
|
+
"error": {
|
|
244
|
+
"type": null,
|
|
245
|
+
"value": null,
|
|
246
|
+
"message": null
|
|
247
|
+
},
|
|
248
|
+
"is_cod_available": true,
|
|
249
|
+
"_manufacturing_time_seconds": 172800
|
|
250
|
+
}
|
|
251
|
+
]
|
|
252
|
+
}
|
|
253
|
+
],
|
|
254
|
+
"request_uuid": "b4adf5508e34f17971817c3581e16310",
|
|
255
|
+
"stormbreaker_uuid": "4b8084d4-ea74-45af-8ddc-c38e29bf0cfb",
|
|
256
|
+
"error": {
|
|
257
|
+
"type": null,
|
|
258
|
+
"value": null,
|
|
259
|
+
"message": null
|
|
260
|
+
},
|
|
261
|
+
"to_city": "Amritsar",
|
|
262
|
+
"payment_mode": "prepaid",
|
|
263
|
+
"is_cod_available": true,
|
|
264
|
+
"success": true
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
```
|
|
268
|
+
</details>
|
|
269
|
+
|
|
270
|
+
<details>
|
|
271
|
+
<summary><i> Pincode not found</i></summary>
|
|
62
272
|
|
|
273
|
+
```json
|
|
274
|
+
{
|
|
275
|
+
"value": {
|
|
276
|
+
"source": "FYND-APP",
|
|
277
|
+
"identifier": "PDP",
|
|
278
|
+
"journey": "forward",
|
|
279
|
+
"action": "get_tat",
|
|
280
|
+
"to_pincode": "99999",
|
|
281
|
+
"location_details": [
|
|
282
|
+
{
|
|
283
|
+
"fulfillment_id": 8,
|
|
284
|
+
"from_pincode": "560023",
|
|
285
|
+
"articles": [
|
|
286
|
+
{
|
|
287
|
+
"category": {
|
|
288
|
+
"level": "l3",
|
|
289
|
+
"id": 155
|
|
290
|
+
},
|
|
291
|
+
"manufacturing_time": 2,
|
|
292
|
+
"manufacturing_time_unit": "days",
|
|
293
|
+
"promise": null,
|
|
294
|
+
"error": {
|
|
295
|
+
"type": "ValueError",
|
|
296
|
+
"value": "99999",
|
|
297
|
+
"message": "We are not delivering to 99999"
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
]
|
|
301
|
+
}
|
|
302
|
+
],
|
|
303
|
+
"request_uuid": "4b99d15fddb2b9fc2d6ab99a1c933010",
|
|
304
|
+
"stormbreaker_uuid": "6a847909-1d59-43e7-9ae0-15f5de8fc7d7",
|
|
305
|
+
"error": {
|
|
306
|
+
"type": "ValueError",
|
|
307
|
+
"value": "99999",
|
|
308
|
+
"message": "All of the items in your cart are not deliverable to 99999"
|
|
309
|
+
},
|
|
310
|
+
"to_city": "",
|
|
311
|
+
"payment_mode": "prepaid",
|
|
312
|
+
"is_cod_available": true,
|
|
313
|
+
"success": false
|
|
314
|
+
}
|
|
315
|
+
}
|
|
63
316
|
```
|
|
64
317
|
</details>
|
|
65
318
|
|
|
319
|
+
</details>
|
|
320
|
+
|
|
66
321
|
|
|
67
322
|
|
|
68
323
|
|
|
@@ -74,38 +329,34 @@ Success. Check the example shown below or refer `GetTatProductResponse` for more
|
|
|
74
329
|
---
|
|
75
330
|
|
|
76
331
|
|
|
77
|
-
###
|
|
78
|
-
Get
|
|
332
|
+
### getAllCountries
|
|
333
|
+
Get Country List
|
|
79
334
|
|
|
80
335
|
|
|
81
336
|
|
|
82
337
|
```javascript
|
|
83
338
|
// Promise
|
|
84
|
-
const promise = logistic.
|
|
339
|
+
const promise = logistic.getAllCountries();
|
|
85
340
|
|
|
86
341
|
// Async/Await
|
|
87
|
-
const data = await logistic.
|
|
342
|
+
const data = await logistic.getAllCountries();
|
|
88
343
|
```
|
|
89
344
|
|
|
90
345
|
|
|
91
346
|
|
|
92
347
|
|
|
93
348
|
|
|
94
|
-
| Argument | Type | Required | Description |
|
|
95
|
-
| --------- | ----- | -------- | ----------- |
|
|
96
|
-
| body | [GetPincodeZonesReqBody](#GetPincodeZonesReqBody) | yes | Request body |
|
|
97
|
-
|
|
98
349
|
|
|
99
|
-
Get
|
|
350
|
+
Get all countries
|
|
100
351
|
|
|
101
352
|
*Returned Response:*
|
|
102
353
|
|
|
103
354
|
|
|
104
355
|
|
|
105
356
|
|
|
106
|
-
[
|
|
357
|
+
[CountryListResponse](#CountryListResponse)
|
|
107
358
|
|
|
108
|
-
|
|
359
|
+
Get Country List
|
|
109
360
|
|
|
110
361
|
|
|
111
362
|
|
|
@@ -129,17 +380,17 @@ Success. Check the example shown below or refer `GetTatProductResponse` for more
|
|
|
129
380
|
---
|
|
130
381
|
|
|
131
382
|
|
|
132
|
-
###
|
|
133
|
-
|
|
383
|
+
### getPincodeZones
|
|
384
|
+
GET zone from the Pincode.
|
|
134
385
|
|
|
135
386
|
|
|
136
387
|
|
|
137
388
|
```javascript
|
|
138
389
|
// Promise
|
|
139
|
-
const promise = logistic.
|
|
390
|
+
const promise = logistic.getPincodeZones({ body : value });
|
|
140
391
|
|
|
141
392
|
// Async/Await
|
|
142
|
-
const data = await logistic.
|
|
393
|
+
const data = await logistic.getPincodeZones({ body : value });
|
|
143
394
|
```
|
|
144
395
|
|
|
145
396
|
|
|
@@ -147,21 +398,20 @@ const data = await logistic.getPincodeCity({ pincode : value });
|
|
|
147
398
|
|
|
148
399
|
|
|
149
400
|
| Argument | Type | Required | Description |
|
|
150
|
-
| --------- | ----- | -------- | ----------- |
|
|
151
|
-
|
|
|
152
|
-
|
|
401
|
+
| --------- | ----- | -------- | ----------- |
|
|
402
|
+
| body | [GetZoneFromPincodeViewRequest](#GetZoneFromPincodeViewRequest) | yes | Request body |
|
|
153
403
|
|
|
154
404
|
|
|
155
|
-
|
|
405
|
+
This API returns zone from the Pincode View.
|
|
156
406
|
|
|
157
407
|
*Returned Response:*
|
|
158
408
|
|
|
159
409
|
|
|
160
410
|
|
|
161
411
|
|
|
162
|
-
[
|
|
412
|
+
[GetZoneFromPincodeViewResponse](#GetZoneFromPincodeViewResponse)
|
|
163
413
|
|
|
164
|
-
|
|
414
|
+
Response status_code
|
|
165
415
|
|
|
166
416
|
|
|
167
417
|
|
|
@@ -190,251 +440,323 @@ Success. Returns a JSON object containing the city name, state and country ident
|
|
|
190
440
|
|
|
191
441
|
|
|
192
442
|
|
|
193
|
-
#### [
|
|
443
|
+
#### [CountryMetaResponse](#CountryMetaResponse)
|
|
194
444
|
|
|
195
445
|
| Properties | Type | Nullable | Description |
|
|
196
446
|
| ---------- | ---- | -------- | ----------- |
|
|
197
|
-
|
|
|
198
|
-
|
|
|
199
|
-
| success | boolean | yes | |
|
|
200
|
-
| data | [[LogisticPincodeData](#LogisticPincodeData)] | yes | |
|
|
447
|
+
| isd_code | string | no | |
|
|
448
|
+
| country_code | string | no | |
|
|
201
449
|
|
|
202
450
|
---
|
|
203
451
|
|
|
204
452
|
|
|
205
453
|
|
|
206
454
|
|
|
207
|
-
#### [
|
|
455
|
+
#### [PincodeErrorSchemaResponse](#PincodeErrorSchemaResponse)
|
|
208
456
|
|
|
209
457
|
| Properties | Type | Nullable | Description |
|
|
210
458
|
| ---------- | ---- | -------- | ----------- |
|
|
211
|
-
|
|
|
212
|
-
|
|
|
213
|
-
|
|
|
214
|
-
| name | string | no | |
|
|
215
|
-
| error | [LogisticError](#LogisticError) | no | |
|
|
216
|
-
| uid | string | no | |
|
|
217
|
-
| display_name | string | no | |
|
|
459
|
+
| type | string | no | |
|
|
460
|
+
| message | string | no | |
|
|
461
|
+
| value | string | no | |
|
|
218
462
|
|
|
219
463
|
---
|
|
220
464
|
|
|
221
465
|
|
|
222
466
|
|
|
223
467
|
|
|
224
|
-
#### [
|
|
468
|
+
#### [PincodeMetaResponse](#PincodeMetaResponse)
|
|
225
469
|
|
|
226
470
|
| Properties | Type | Nullable | Description |
|
|
227
471
|
| ---------- | ---- | -------- | ----------- |
|
|
228
472
|
| zone | string | no | |
|
|
229
|
-
|
|
|
473
|
+
| internal_zone_id | number | no | |
|
|
230
474
|
|
|
231
475
|
---
|
|
232
476
|
|
|
233
477
|
|
|
234
478
|
|
|
235
479
|
|
|
236
|
-
#### [
|
|
480
|
+
#### [PincodeParentsResponse](#PincodeParentsResponse)
|
|
237
481
|
|
|
238
482
|
| Properties | Type | Nullable | Description |
|
|
239
483
|
| ---------- | ---- | -------- | ----------- |
|
|
240
484
|
| sub_type | string | no | |
|
|
485
|
+
| display_name | string | no | |
|
|
486
|
+
| uid | string | no | |
|
|
241
487
|
| name | string | no | |
|
|
488
|
+
|
|
489
|
+
---
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
#### [PincodeDataResponse](#PincodeDataResponse)
|
|
495
|
+
|
|
496
|
+
| Properties | Type | Nullable | Description |
|
|
497
|
+
| ---------- | ---- | -------- | ----------- |
|
|
498
|
+
| meta_code | [CountryMetaResponse](#CountryMetaResponse) | no | |
|
|
499
|
+
| sub_type | string | no | |
|
|
500
|
+
| error | [PincodeErrorSchemaResponse](#PincodeErrorSchemaResponse) | yes | |
|
|
242
501
|
| display_name | string | no | |
|
|
243
502
|
| uid | string | no | |
|
|
503
|
+
| meta | [PincodeMetaResponse](#PincodeMetaResponse) | no | |
|
|
504
|
+
| parents | [[PincodeParentsResponse](#PincodeParentsResponse)] | no | |
|
|
505
|
+
| name | string | no | |
|
|
244
506
|
|
|
245
507
|
---
|
|
246
508
|
|
|
247
509
|
|
|
248
510
|
|
|
249
511
|
|
|
250
|
-
#### [
|
|
512
|
+
#### [PincodeApiResponse](#PincodeApiResponse)
|
|
251
513
|
|
|
252
514
|
| Properties | Type | Nullable | Description |
|
|
253
515
|
| ---------- | ---- | -------- | ----------- |
|
|
254
|
-
|
|
|
255
|
-
|
|
|
256
|
-
|
|
|
516
|
+
| data | [[PincodeDataResponse](#PincodeDataResponse)] | no | |
|
|
517
|
+
| error | [PincodeErrorSchemaResponse](#PincodeErrorSchemaResponse) | yes | |
|
|
518
|
+
| success | boolean | yes | |
|
|
257
519
|
|
|
258
520
|
---
|
|
259
521
|
|
|
260
522
|
|
|
261
523
|
|
|
262
524
|
|
|
263
|
-
#### [
|
|
525
|
+
#### [TATCategoryRequest](#TATCategoryRequest)
|
|
264
526
|
|
|
265
527
|
| Properties | Type | Nullable | Description |
|
|
266
528
|
| ---------- | ---- | -------- | ----------- |
|
|
267
|
-
|
|
|
268
|
-
|
|
|
529
|
+
| level | string | no | |
|
|
530
|
+
| id | number | no | |
|
|
269
531
|
|
|
270
532
|
---
|
|
271
533
|
|
|
272
534
|
|
|
273
535
|
|
|
274
536
|
|
|
275
|
-
#### [
|
|
537
|
+
#### [TATArticlesRequest](#TATArticlesRequest)
|
|
276
538
|
|
|
277
539
|
| Properties | Type | Nullable | Description |
|
|
278
540
|
| ---------- | ---- | -------- | ----------- |
|
|
279
|
-
|
|
|
280
|
-
|
|
|
541
|
+
| category | [TATCategoryRequest](#TATCategoryRequest) | no | |
|
|
542
|
+
| manufacturing_time | number | no | |
|
|
543
|
+
| manufacturing_time_unit | string | no | |
|
|
544
|
+
|
|
545
|
+
---
|
|
546
|
+
|
|
547
|
+
|
|
548
|
+
|
|
549
|
+
|
|
550
|
+
#### [TATLocationDetailsRequest](#TATLocationDetailsRequest)
|
|
551
|
+
|
|
552
|
+
| Properties | Type | Nullable | Description |
|
|
553
|
+
| ---------- | ---- | -------- | ----------- |
|
|
554
|
+
| fulfillment_id | number | no | |
|
|
555
|
+
| articles | [[TATArticlesRequest](#TATArticlesRequest)] | no | |
|
|
556
|
+
| from_pincode | string | no | |
|
|
281
557
|
|
|
282
558
|
---
|
|
283
559
|
|
|
284
560
|
|
|
285
561
|
|
|
286
562
|
|
|
287
|
-
#### [
|
|
563
|
+
#### [TATViewRequest](#TATViewRequest)
|
|
288
564
|
|
|
289
565
|
| Properties | Type | Nullable | Description |
|
|
290
566
|
| ---------- | ---- | -------- | ----------- |
|
|
291
|
-
|
|
|
292
|
-
| to_pincode | string |
|
|
567
|
+
| journey | string | no | |
|
|
568
|
+
| to_pincode | string | no | |
|
|
293
569
|
| action | string | no | |
|
|
570
|
+
| identifier | string | no | |
|
|
571
|
+
| source | string | no | |
|
|
572
|
+
| location_details | [[TATLocationDetailsRequest](#TATLocationDetailsRequest)] | no | |
|
|
294
573
|
|
|
295
574
|
---
|
|
296
575
|
|
|
297
576
|
|
|
298
577
|
|
|
299
578
|
|
|
300
|
-
#### [
|
|
579
|
+
#### [TATErrorSchemaResponse](#TATErrorSchemaResponse)
|
|
301
580
|
|
|
302
581
|
| Properties | Type | Nullable | Description |
|
|
303
582
|
| ---------- | ---- | -------- | ----------- |
|
|
304
|
-
|
|
|
305
|
-
|
|
|
306
|
-
|
|
|
583
|
+
| type | string | no | |
|
|
584
|
+
| message | string | no | |
|
|
585
|
+
| value | string | no | |
|
|
307
586
|
|
|
308
587
|
---
|
|
309
588
|
|
|
310
589
|
|
|
311
590
|
|
|
312
591
|
|
|
313
|
-
#### [
|
|
592
|
+
#### [TATFormattedResponse](#TATFormattedResponse)
|
|
314
593
|
|
|
315
594
|
| Properties | Type | Nullable | Description |
|
|
316
595
|
| ---------- | ---- | -------- | ----------- |
|
|
317
|
-
|
|
|
318
|
-
|
|
|
319
|
-
| category | [LogisticRequestCategory](#LogisticRequestCategory) | no | |
|
|
596
|
+
| min | string | no | |
|
|
597
|
+
| max | string | no | |
|
|
320
598
|
|
|
321
599
|
---
|
|
322
600
|
|
|
323
601
|
|
|
324
602
|
|
|
325
603
|
|
|
326
|
-
#### [
|
|
604
|
+
#### [TATTimestampResponse](#TATTimestampResponse)
|
|
327
605
|
|
|
328
606
|
| Properties | Type | Nullable | Description |
|
|
329
607
|
| ---------- | ---- | -------- | ----------- |
|
|
330
|
-
|
|
|
331
|
-
|
|
|
608
|
+
| min | number | no | |
|
|
609
|
+
| max | number | no | |
|
|
332
610
|
|
|
333
611
|
---
|
|
334
612
|
|
|
335
613
|
|
|
336
614
|
|
|
337
615
|
|
|
338
|
-
#### [
|
|
616
|
+
#### [TATPromiseResponse](#TATPromiseResponse)
|
|
339
617
|
|
|
340
618
|
| Properties | Type | Nullable | Description |
|
|
341
619
|
| ---------- | ---- | -------- | ----------- |
|
|
342
|
-
|
|
|
343
|
-
|
|
|
344
|
-
| error | string | yes | |
|
|
345
|
-
| to_city | string | yes | |
|
|
346
|
-
| source | string | yes | |
|
|
347
|
-
| to_pincode | string | yes | |
|
|
348
|
-
| action | string | yes | |
|
|
349
|
-
| stormbreaker_uuid | string | yes | |
|
|
350
|
-
| success | boolean | yes | |
|
|
351
|
-
| identifier | string | yes | |
|
|
352
|
-
| journey | string | yes | |
|
|
620
|
+
| formatted | [TATFormattedResponse](#TATFormattedResponse) | no | |
|
|
621
|
+
| timestamp | [TATTimestampResponse](#TATTimestampResponse) | no | |
|
|
353
622
|
|
|
354
623
|
---
|
|
355
624
|
|
|
356
625
|
|
|
357
626
|
|
|
358
627
|
|
|
359
|
-
#### [
|
|
628
|
+
#### [TATArticlesResponse](#TATArticlesResponse)
|
|
629
|
+
|
|
630
|
+
| Properties | Type | Nullable | Description |
|
|
631
|
+
| ---------- | ---- | -------- | ----------- |
|
|
632
|
+
| category | [TATCategoryRequest](#TATCategoryRequest) | no | |
|
|
633
|
+
| error | [TATErrorSchemaResponse](#TATErrorSchemaResponse) | no | |
|
|
634
|
+
| promise | [TATPromiseResponse](#TATPromiseResponse) | no | |
|
|
635
|
+
| manufacturing_time | number | no | |
|
|
636
|
+
| manufacturing_time_unit | string | no | |
|
|
637
|
+
| _manufacturing_time_seconds | number | no | |
|
|
638
|
+
| is_cod_available | boolean | no | |
|
|
639
|
+
|
|
640
|
+
---
|
|
641
|
+
|
|
642
|
+
|
|
643
|
+
|
|
644
|
+
|
|
645
|
+
#### [TATLocationDetailsResponse](#TATLocationDetailsResponse)
|
|
360
646
|
|
|
361
647
|
| Properties | Type | Nullable | Description |
|
|
362
648
|
| ---------- | ---- | -------- | ----------- |
|
|
363
|
-
| from_pincode | string | no | |
|
|
364
|
-
| articles | [[TatProductArticles](#TatProductArticles)] | no | |
|
|
365
649
|
| fulfillment_id | number | no | |
|
|
650
|
+
| articles | [[TATArticlesResponse](#TATArticlesResponse)] | no | |
|
|
651
|
+
| from_pincode | string | no | |
|
|
366
652
|
|
|
367
653
|
---
|
|
368
654
|
|
|
369
655
|
|
|
370
656
|
|
|
371
657
|
|
|
372
|
-
#### [
|
|
658
|
+
#### [TATViewResponse](#TATViewResponse)
|
|
373
659
|
|
|
374
660
|
| Properties | Type | Nullable | Description |
|
|
375
661
|
| ---------- | ---- | -------- | ----------- |
|
|
376
|
-
|
|
|
377
|
-
|
|
|
378
|
-
|
|
|
662
|
+
| journey | string | no | |
|
|
663
|
+
| to_pincode | string | no | |
|
|
664
|
+
| payment_mode | string | no | |
|
|
665
|
+
| success | boolean | no | |
|
|
666
|
+
| stormbreaker_uuid | string | no | |
|
|
667
|
+
| error | [TATErrorSchemaResponse](#TATErrorSchemaResponse) | no | |
|
|
668
|
+
| action | string | no | |
|
|
669
|
+
| identifier | string | no | |
|
|
670
|
+
| to_city | string | no | |
|
|
671
|
+
| source | string | no | |
|
|
672
|
+
| request_uuid | string | no | |
|
|
673
|
+
| location_details | [[TATLocationDetailsResponse](#TATLocationDetailsResponse)] | no | |
|
|
674
|
+
| is_cod_available | boolean | no | |
|
|
379
675
|
|
|
380
676
|
---
|
|
381
677
|
|
|
382
678
|
|
|
383
679
|
|
|
384
680
|
|
|
385
|
-
#### [
|
|
681
|
+
#### [DP](#DP)
|
|
386
682
|
|
|
387
683
|
| Properties | Type | Nullable | Description |
|
|
388
684
|
| ---------- | ---- | -------- | ----------- |
|
|
389
|
-
|
|
|
390
|
-
|
|
|
685
|
+
| fm_priority | number | yes | |
|
|
686
|
+
| lm_priority | number | yes | |
|
|
687
|
+
| rvp_priority | number | yes | |
|
|
688
|
+
| payment_mode | string | yes | |
|
|
689
|
+
| operations | [string] | yes | |
|
|
690
|
+
| area_code | string | no | |
|
|
691
|
+
| assign_dp_from_sb | boolean | no | |
|
|
692
|
+
| internal_account_id | string | no | |
|
|
693
|
+
| external_account_id | string | no | |
|
|
694
|
+
| transport_mode | string | no | |
|
|
391
695
|
|
|
392
696
|
---
|
|
393
697
|
|
|
394
698
|
|
|
395
699
|
|
|
396
700
|
|
|
397
|
-
#### [
|
|
701
|
+
#### [LogisticsResponse](#LogisticsResponse)
|
|
398
702
|
|
|
399
703
|
| Properties | Type | Nullable | Description |
|
|
400
704
|
| ---------- | ---- | -------- | ----------- |
|
|
401
|
-
|
|
|
402
|
-
| formatted | [Formatted](#Formatted) | no | |
|
|
705
|
+
| dp | [String: [DP](#DP)] | no | |
|
|
403
706
|
|
|
404
707
|
---
|
|
405
708
|
|
|
406
709
|
|
|
407
710
|
|
|
408
711
|
|
|
409
|
-
#### [
|
|
712
|
+
#### [CountryEntityResponse](#CountryEntityResponse)
|
|
410
713
|
|
|
411
714
|
| Properties | Type | Nullable | Description |
|
|
412
715
|
| ---------- | ---- | -------- | ----------- |
|
|
413
|
-
|
|
|
414
|
-
|
|
|
716
|
+
| parent_id | string | no | |
|
|
717
|
+
| sub_type | string | no | |
|
|
718
|
+
| display_name | string | no | |
|
|
719
|
+
| uid | string | no | |
|
|
720
|
+
| logistics | [LogisticsResponse](#LogisticsResponse) | no | |
|
|
721
|
+
| type | string | no | |
|
|
722
|
+
| meta | [CountryMetaResponse](#CountryMetaResponse) | no | |
|
|
723
|
+
| is_active | boolean | no | |
|
|
724
|
+
| name | string | no | |
|
|
415
725
|
|
|
416
726
|
---
|
|
417
727
|
|
|
418
728
|
|
|
419
729
|
|
|
420
730
|
|
|
421
|
-
#### [
|
|
731
|
+
#### [CountryListResponse](#CountryListResponse)
|
|
422
732
|
|
|
423
733
|
| Properties | Type | Nullable | Description |
|
|
424
734
|
| ---------- | ---- | -------- | ----------- |
|
|
425
|
-
|
|
|
426
|
-
| max | string | no | |
|
|
735
|
+
| results | [[CountryEntityResponse](#CountryEntityResponse)] | no | |
|
|
427
736
|
|
|
428
737
|
---
|
|
429
738
|
|
|
430
739
|
|
|
431
740
|
|
|
432
741
|
|
|
433
|
-
#### [
|
|
742
|
+
#### [GetZoneFromPincodeViewRequest](#GetZoneFromPincodeViewRequest)
|
|
434
743
|
|
|
435
744
|
| Properties | Type | Nullable | Description |
|
|
436
745
|
| ---------- | ---- | -------- | ----------- |
|
|
437
|
-
|
|
|
746
|
+
| country | string | yes | |
|
|
747
|
+
| pincode | string | yes | |
|
|
748
|
+
|
|
749
|
+
---
|
|
750
|
+
|
|
751
|
+
|
|
752
|
+
|
|
753
|
+
|
|
754
|
+
#### [GetZoneFromPincodeViewResponse](#GetZoneFromPincodeViewResponse)
|
|
755
|
+
|
|
756
|
+
| Properties | Type | Nullable | Description |
|
|
757
|
+
| ---------- | ---- | -------- | ----------- |
|
|
758
|
+
| zones | [string] | yes | |
|
|
759
|
+
| serviceability_type | string | yes | |
|
|
438
760
|
|
|
439
761
|
---
|
|
440
762
|
|