@gofynd/fdk-client-javascript 0.1.37 → 1.0.1
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 +438 -415
- 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 +277 -277
- package/documentation/application/PAYMENT.md +251 -251
- 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 +2792 -2711
- package/documentation/platform/COMPANYPROFILE.md +200 -362
- 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 +1451 -1654
- package/documentation/platform/PAYMENT.md +94 -94
- package/documentation/platform/REWARDS.md +145 -0
- package/documentation/platform/USER.md +24 -14
- package/index.d.ts +4 -1
- package/index.js +13 -4
- 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 +316 -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} +17 -12
- package/sdk/application/{client → Catalog}/CatalogApplicationClient.d.ts +8 -5
- package/sdk/application/{client → Catalog}/CatalogApplicationClient.js +389 -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} +4 -1
- package/sdk/application/{client → Common}/CommonApplicationClient.js +24 -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} +3 -1
- package/sdk/application/{client → Communication}/CommunicationApplicationClient.js +43 -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} +5 -3
- package/sdk/application/{client → Configuration}/ConfigurationApplicationClient.js +202 -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} +4 -2
- package/sdk/application/{client → Content}/ContentApplicationClient.js +217 -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} +3 -1
- package/sdk/application/{client → FileStorage}/FileStorageApplicationClient.js +35 -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} +6 -4
- package/sdk/application/{client → Lead}/LeadApplicationClient.js +83 -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} +6 -4
- package/sdk/application/{client → Logistic}/LogisticApplicationClient.js +46 -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} +5 -3
- package/sdk/application/{client → Order}/OrderApplicationClient.js +148 -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} +5 -3
- package/sdk/application/{client → Payment}/PaymentApplicationClient.js +530 -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} +25 -23
- package/sdk/application/{client → PosCart}/PosCartApplicationClient.d.ts +9 -3
- package/sdk/application/{client → PosCart}/PosCartApplicationClient.js +343 -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} +18 -13
- package/sdk/application/{client → Rewards}/RewardsApplicationClient.js +83 -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} +6 -4
- package/sdk/application/{client → Share}/ShareApplicationClient.js +89 -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} +4 -2
- package/sdk/application/{client → Theme}/ThemeApplicationClient.js +46 -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} +3 -1
- package/sdk/application/{client → User}/UserApplicationClient.js +407 -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} +31 -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 +399 -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 +60 -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 +48 -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 +162 -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 +1001 -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 +2927 -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 +1402 -349
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +317 -0
- package/sdk/platform/Catalog/CatalogPlatformModel.js +4702 -0
- package/sdk/platform/{models/CatalogValidator.js → Catalog/CatalogPlatformValidator.js} +92 -91
- package/sdk/platform/{client → Common}/CommonPlatformClient.js +28 -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 +2243 -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 +17 -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 +176 -28
- 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 +1322 -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 +284 -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 +3074 -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 +187 -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 +301 -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 +78 -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 +163 -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 +559 -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 +142 -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 +207 -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 +24 -55
- package/sdk/platform/{client → Order}/OrderPlatformClient.js +693 -146
- package/sdk/platform/Order/OrderPlatformModel.d.ts +222 -0
- package/sdk/platform/Order/OrderPlatformModel.js +3466 -0
- package/sdk/platform/{models/OrderValidator.d.ts → Order/OrderPlatformValidator.d.ts} +2 -3
- package/sdk/platform/{models/OrderValidator.js → Order/OrderPlatformValidator.js} +32 -48
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +30 -0
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +100 -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 +498 -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 +141 -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 +2824 -18486
- package/sdk/platform/PlatformApplicationClient.js +3772 -13928
- package/sdk/platform/PlatformClient.d.ts +2824 -2881
- package/sdk/platform/PlatformClient.js +3710 -3145
- package/sdk/platform/PlatformConfig.js +2 -1
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +150 -0
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +597 -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 +235 -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 +997 -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 +506 -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 +92 -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 +26 -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} +3 -1
- package/sdk/public/{client → Inventory}/InventoryPublicClient.js +76 -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} +4 -2
- package/sdk/public/PublicClient.d.ts +3 -3
- package/sdk/public/PublicClient.js +8 -3
- package/sdk/public/{client → Webhook}/WebhookPublicClient.js +30 -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} +4 -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 +149 -149
- package/sdk/platform/{models/CatalogValidator.d.ts → Catalog/CatalogPlatformValidator.d.ts} +21 -21
- /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
|
@@ -1,835 +1,3 @@
|
|
|
1
1
|
export class LocationValidator {
|
|
2
2
|
static validateLocationObj(): any;
|
|
3
3
|
}
|
|
4
|
-
export class Validator {
|
|
5
|
-
static Price(): any;
|
|
6
|
-
static ProductListingPrice(): any;
|
|
7
|
-
static ProductListingActionPage(): any;
|
|
8
|
-
static ProductListingAction(): any;
|
|
9
|
-
static Meta(): any;
|
|
10
|
-
static Media(): any;
|
|
11
|
-
static ProductBrand(): any;
|
|
12
|
-
static ProductDetailAttribute(): any;
|
|
13
|
-
static ProductDetailGroupedAttribute(): any;
|
|
14
|
-
static CustomMetaFields(): any;
|
|
15
|
-
static ApplicationItemMOQ(): any;
|
|
16
|
-
static ApplicationItemSEO(): any;
|
|
17
|
-
static NetQuantity(): any;
|
|
18
|
-
static ProductDetail(): any;
|
|
19
|
-
static ErrorResponse(): any;
|
|
20
|
-
static Dimension(): any;
|
|
21
|
-
static Weight(): any;
|
|
22
|
-
static ProductSize(): any;
|
|
23
|
-
static SizeChartValues(): any;
|
|
24
|
-
static ColumnHeader(): any;
|
|
25
|
-
static ColumnHeaders(): any;
|
|
26
|
-
static SizeChart(): any;
|
|
27
|
-
static ProductSizeStores(): any;
|
|
28
|
-
static ProductSizes(): any;
|
|
29
|
-
static AttributeDetail(): any;
|
|
30
|
-
static AttributeMetadata(): any;
|
|
31
|
-
static ProductsComparisonResponse(): any;
|
|
32
|
-
static ProductCompareResponse(): any;
|
|
33
|
-
static ProductFrequentlyComparedSimilarResponse(): any;
|
|
34
|
-
static ProductVariantItemResponse(): any;
|
|
35
|
-
static ProductVariantResponse(): any;
|
|
36
|
-
static ProductVariantsResponse(): any;
|
|
37
|
-
static CompanyDetail(): any;
|
|
38
|
-
static ProductStockPrice(): any;
|
|
39
|
-
static StoreDetail(): any;
|
|
40
|
-
static Seller(): any;
|
|
41
|
-
static ProductStockStatusItem(): any;
|
|
42
|
-
static ProductStockStatusResponse(): any;
|
|
43
|
-
static ProductStockPolling(): any;
|
|
44
|
-
static ProductFiltersValue(): any;
|
|
45
|
-
static ProductFiltersKey(): any;
|
|
46
|
-
static ProductFilters(): any;
|
|
47
|
-
static ProductVariantListingResponse(): any;
|
|
48
|
-
static ProductListingDetail(): any;
|
|
49
|
-
static ProductSortOn(): any;
|
|
50
|
-
static ProductListingResponse(): any;
|
|
51
|
-
static ImageUrls(): any;
|
|
52
|
-
static BrandItem(): any;
|
|
53
|
-
static BrandListingResponse(): any;
|
|
54
|
-
static BrandDetailResponse(): any;
|
|
55
|
-
static DepartmentIdentifier(): any;
|
|
56
|
-
static ThirdLevelChild(): any;
|
|
57
|
-
static SecondLevelChild(): any;
|
|
58
|
-
static Child(): any;
|
|
59
|
-
static CategoryBanner(): any;
|
|
60
|
-
static CategoryItems(): any;
|
|
61
|
-
static DepartmentCategoryTree(): any;
|
|
62
|
-
static CategoryListingResponse(): any;
|
|
63
|
-
static CategoryMetaResponse(): any;
|
|
64
|
-
static HomeListingResponse(): any;
|
|
65
|
-
static Department(): any;
|
|
66
|
-
static DepartmentResponse(): any;
|
|
67
|
-
static AutocompleteItem(): any;
|
|
68
|
-
static AutoCompleteResponse(): any;
|
|
69
|
-
static CollectionListingFilterType(): any;
|
|
70
|
-
static CollectionListingFilterTag(): any;
|
|
71
|
-
static CollectionListingFilter(): any;
|
|
72
|
-
static CollectionQuery(): any;
|
|
73
|
-
static GetCollectionDetailNest(): any;
|
|
74
|
-
static GetCollectionListingResponse(): any;
|
|
75
|
-
static CollectionDetailResponse(): any;
|
|
76
|
-
static GetFollowListingResponse(): any;
|
|
77
|
-
static FollowPostResponse(): any;
|
|
78
|
-
static FollowerCountResponse(): any;
|
|
79
|
-
static FollowIdsData(): any;
|
|
80
|
-
static FollowIdsResponse(): any;
|
|
81
|
-
static LatLong(): any;
|
|
82
|
-
static Store(): any;
|
|
83
|
-
static StoreListingResponse(): any;
|
|
84
|
-
static StoreDepartments(): any;
|
|
85
|
-
static SellerPhoneNumber(): any;
|
|
86
|
-
static StoreManagerSerializer(): any;
|
|
87
|
-
static CompanyStore(): any;
|
|
88
|
-
static StoreAddressSerializer(): any;
|
|
89
|
-
static AppStore(): any;
|
|
90
|
-
static ApplicationStoreListing(): any;
|
|
91
|
-
static Time(): any;
|
|
92
|
-
static StoreTiming(): any;
|
|
93
|
-
static StoreDetails(): any;
|
|
94
|
-
static UserDetail(): any;
|
|
95
|
-
static Size(): any;
|
|
96
|
-
static ProductGroupPrice(): any;
|
|
97
|
-
static ProductDetails(): any;
|
|
98
|
-
static ProductInGroup(): any;
|
|
99
|
-
static ProductGroupingModel(): any;
|
|
100
|
-
static ProductBundle(): any;
|
|
101
|
-
static ProductStockPriceV2(): any;
|
|
102
|
-
static DetailsSchemaV2(): any;
|
|
103
|
-
static SellerGroupAttributes(): any;
|
|
104
|
-
static MarketPlaceSttributesSchemaV2(): any;
|
|
105
|
-
static ProductStockUnitPriceV2(): any;
|
|
106
|
-
static ReturnConfigSchemaV2(): any;
|
|
107
|
-
static StoreV2(): any;
|
|
108
|
-
static SellerV2(): any;
|
|
109
|
-
static ProductSetDistributionSizeV2(): any;
|
|
110
|
-
static ProductSetDistributionV2(): any;
|
|
111
|
-
static ProductSetV2(): any;
|
|
112
|
-
static ArticleAssignmentV2(): any;
|
|
113
|
-
static StrategyWiseListingSchemaV2(): any;
|
|
114
|
-
static ProductSizePriceResponseV2(): any;
|
|
115
|
-
static ProductSizeSellerFilterSchemaV2(): any;
|
|
116
|
-
static ProductSizeSellersResponseV2(): any;
|
|
117
|
-
static CartCurrency(): any;
|
|
118
|
-
static PaymentSelectionLock(): any;
|
|
119
|
-
static PromiseTimestamp(): any;
|
|
120
|
-
static PromiseFormatted(): any;
|
|
121
|
-
static ShipmentPromise(): any;
|
|
122
|
-
static CouponBreakup(): any;
|
|
123
|
-
static LoyaltyPoints(): any;
|
|
124
|
-
static DisplayBreakup(): any;
|
|
125
|
-
static RawBreakup(): any;
|
|
126
|
-
static CartBreakup(): any;
|
|
127
|
-
static BaseInfo(): any;
|
|
128
|
-
static BasePrice(): any;
|
|
129
|
-
static ArticlePriceInfo(): any;
|
|
130
|
-
static ProductArticle(): any;
|
|
131
|
-
static CategoryInfo(): any;
|
|
132
|
-
static ProductImage(): any;
|
|
133
|
-
static ActionQuery(): any;
|
|
134
|
-
static ProductAction(): any;
|
|
135
|
-
static CartProduct(): any;
|
|
136
|
-
static ProductPrice(): any;
|
|
137
|
-
static ProductPriceInfo(): any;
|
|
138
|
-
static Ownership(): any;
|
|
139
|
-
static AppliedPromotion(): any;
|
|
140
|
-
static ProductAvailability(): any;
|
|
141
|
-
static CartProductIdentifer(): any;
|
|
142
|
-
static PromoMeta(): any;
|
|
143
|
-
static CartProductInfo(): any;
|
|
144
|
-
static CartDetailResponse(): any;
|
|
145
|
-
static AddProductCart(): any;
|
|
146
|
-
static AddCartRequest(): any;
|
|
147
|
-
static AddCartDetailResponse(): any;
|
|
148
|
-
static UpdateProductCart(): any;
|
|
149
|
-
static UpdateCartRequest(): any;
|
|
150
|
-
static UpdateCartDetailResponse(): any;
|
|
151
|
-
static CartItemCountResponse(): any;
|
|
152
|
-
static PageCoupon(): any;
|
|
153
|
-
static Coupon(): any;
|
|
154
|
-
static GetCouponResponse(): any;
|
|
155
|
-
static ApplyCouponRequest(): any;
|
|
156
|
-
static OfferSeller(): any;
|
|
157
|
-
static OfferPrice(): any;
|
|
158
|
-
static OfferItem(): any;
|
|
159
|
-
static BulkPriceOffer(): any;
|
|
160
|
-
static BulkPriceResponse(): any;
|
|
161
|
-
static RewardPointRequest(): any;
|
|
162
|
-
static GeoLocation(): any;
|
|
163
|
-
static Address(): any;
|
|
164
|
-
static GetAddressesResponse(): any;
|
|
165
|
-
static SaveAddressResponse(): any;
|
|
166
|
-
static UpdateAddressResponse(): any;
|
|
167
|
-
static DeleteAddressResponse(): any;
|
|
168
|
-
static SelectCartAddressRequest(): any;
|
|
169
|
-
static UpdateCartPaymentRequest(): any;
|
|
170
|
-
static CouponValidity(): any;
|
|
171
|
-
static PaymentCouponValidate(): any;
|
|
172
|
-
static ShipmentResponse(): any;
|
|
173
|
-
static CartShipmentsResponse(): any;
|
|
174
|
-
static StaffCheckout(): any;
|
|
175
|
-
static CartCheckoutDetailRequest(): any;
|
|
176
|
-
static CheckCart(): any;
|
|
177
|
-
static CartCheckoutResponse(): any;
|
|
178
|
-
static CartMetaRequest(): any;
|
|
179
|
-
static CartMetaResponse(): any;
|
|
180
|
-
static CartMetaMissingResponse(): any;
|
|
181
|
-
static GetShareCartLinkRequest(): any;
|
|
182
|
-
static GetShareCartLinkResponse(): any;
|
|
183
|
-
static SharedCartDetails(): any;
|
|
184
|
-
static SharedCart(): any;
|
|
185
|
-
static SharedCartResponse(): any;
|
|
186
|
-
static PromotionOffer(): any;
|
|
187
|
-
static PromotionOffersResponse(): any;
|
|
188
|
-
static OperationErrorResponse(): any;
|
|
189
|
-
static LadderPrice(): any;
|
|
190
|
-
static LadderOfferItem(): any;
|
|
191
|
-
static LadderPriceOffer(): any;
|
|
192
|
-
static CurrencyInfo(): any;
|
|
193
|
-
static LadderPriceOffers(): any;
|
|
194
|
-
static ApplicationResponse(): any;
|
|
195
|
-
static Currency(): any;
|
|
196
|
-
static Domain(): any;
|
|
197
|
-
static ApplicationWebsite(): any;
|
|
198
|
-
static ApplicationCors(): any;
|
|
199
|
-
static ApplicationAuth(): any;
|
|
200
|
-
static ApplicationRedirections(): any;
|
|
201
|
-
static ApplicationMeta(): any;
|
|
202
|
-
static SecureUrl(): any;
|
|
203
|
-
static Application(): any;
|
|
204
|
-
static NotFound(): any;
|
|
205
|
-
static BadRequest(): any;
|
|
206
|
-
static LocationDefaultLanguage(): any;
|
|
207
|
-
static LocationDefaultCurrency(): any;
|
|
208
|
-
static LocationCountry(): any;
|
|
209
|
-
static Locations(): any;
|
|
210
|
-
static TicketList(): any;
|
|
211
|
-
static Page(): any;
|
|
212
|
-
static TicketHistoryList(): any;
|
|
213
|
-
static CustomFormList(): any;
|
|
214
|
-
static CreateCustomFormPayload(): any;
|
|
215
|
-
static EditCustomFormPayload(): any;
|
|
216
|
-
static EditTicketPayload(): any;
|
|
217
|
-
static AgentChangePayload(): any;
|
|
218
|
-
static CreateVideoRoomResponse(): any;
|
|
219
|
-
static CloseVideoRoomResponse(): any;
|
|
220
|
-
static CreateVideoRoomPayload(): any;
|
|
221
|
-
static NotifyUser(): any;
|
|
222
|
-
static Filter(): any;
|
|
223
|
-
static TicketHistoryPayload(): any;
|
|
224
|
-
static CustomFormSubmissionPayload(): any;
|
|
225
|
-
static GetTokenForVideoRoomResponse(): any;
|
|
226
|
-
static GetParticipantsInsideVideoRoomResponse(): any;
|
|
227
|
-
static Participant(): any;
|
|
228
|
-
static Email(): any;
|
|
229
|
-
static Debug(): any;
|
|
230
|
-
static SubmitCustomFormResponse(): any;
|
|
231
|
-
static TicketContext(): any;
|
|
232
|
-
static CreatedOn(): any;
|
|
233
|
-
static TicketAsset(): any;
|
|
234
|
-
static TicketContent(): any;
|
|
235
|
-
static AddTicketPayload(): any;
|
|
236
|
-
static Priority(): any;
|
|
237
|
-
static Status(): any;
|
|
238
|
-
static TicketFeedbackForm(): any;
|
|
239
|
-
static TicketFeedbackList(): any;
|
|
240
|
-
static TicketFeedbackPayload(): any;
|
|
241
|
-
static SubmitButton(): any;
|
|
242
|
-
static PollForAssignment(): any;
|
|
243
|
-
static CustomForm(): any;
|
|
244
|
-
static CommunicationDetails(): any;
|
|
245
|
-
static SupportGeneralConfig(): any;
|
|
246
|
-
static FeedbackForm(): any;
|
|
247
|
-
static TicketSubCategory(): any;
|
|
248
|
-
static TicketCategory(): any;
|
|
249
|
-
static CategoryData(): any;
|
|
250
|
-
static IntegrationConfig(): any;
|
|
251
|
-
static FeedbackResponseItem(): any;
|
|
252
|
-
static TicketFeedback(): any;
|
|
253
|
-
static TicketHistory(): any;
|
|
254
|
-
static Ticket(): any;
|
|
255
|
-
static PriorityEnum(): any;
|
|
256
|
-
static HistoryTypeEnum(): any;
|
|
257
|
-
static TicketAssetTypeEnum(): any;
|
|
258
|
-
static TicketSourceEnum(): any;
|
|
259
|
-
static TicketIntegrationDetails(): any;
|
|
260
|
-
static AvailablePageSchema(): any;
|
|
261
|
-
static AvailablePageSectionMetaAttributes(): any;
|
|
262
|
-
static AvailablePageSeo(): any;
|
|
263
|
-
static AvailablePageSchemaSections(): any;
|
|
264
|
-
static AvailablePageScreenPredicate(): any;
|
|
265
|
-
static AvailablePageUserPredicate(): any;
|
|
266
|
-
static AvailablePageRoutePredicate(): any;
|
|
267
|
-
static AvailablePagePredicate(): any;
|
|
268
|
-
static AllAvailablePageSchema(): any;
|
|
269
|
-
static PaginationSchema(): any;
|
|
270
|
-
static ThemesListingResponseSchema(): any;
|
|
271
|
-
static AddThemeRequestSchema(): any;
|
|
272
|
-
static UpgradableThemeSchema(): any;
|
|
273
|
-
static FontsSchema(): any;
|
|
274
|
-
static BlitzkriegApiErrorSchema(): any;
|
|
275
|
-
static BlitzkriegNotFoundSchema(): any;
|
|
276
|
-
static BlitzkriegInternalServerErrorSchema(): any;
|
|
277
|
-
static FontsSchemaItems(): any;
|
|
278
|
-
static FontsSchemaItemsFiles(): any;
|
|
279
|
-
static ThemesSchema(): any;
|
|
280
|
-
static availableSectionSchema(): any;
|
|
281
|
-
static Information(): any;
|
|
282
|
-
static Images(): any;
|
|
283
|
-
static Src(): any;
|
|
284
|
-
static AssetsSchema(): any;
|
|
285
|
-
static UmdJs(): any;
|
|
286
|
-
static CommonJs(): any;
|
|
287
|
-
static Css(): any;
|
|
288
|
-
static Sections(): any;
|
|
289
|
-
static Config(): any;
|
|
290
|
-
static Preset(): any;
|
|
291
|
-
static GlobalSchema(): any;
|
|
292
|
-
static ListSchemaItem(): any;
|
|
293
|
-
static Colors(): any;
|
|
294
|
-
static Custom(): any;
|
|
295
|
-
static ConfigPage(): any;
|
|
296
|
-
static Font(): any;
|
|
297
|
-
static Variants(): any;
|
|
298
|
-
static Medium(): any;
|
|
299
|
-
static SemiBold(): any;
|
|
300
|
-
static Bold(): any;
|
|
301
|
-
static Light(): any;
|
|
302
|
-
static Regular(): any;
|
|
303
|
-
static Blocks(): any;
|
|
304
|
-
static GlobalSchemaProps(): any;
|
|
305
|
-
static BlocksProps(): any;
|
|
306
|
-
static BlockUserRequestSchema(): any;
|
|
307
|
-
static ArchiveUserRequestSchema(): any;
|
|
308
|
-
static DeleteApplicationUserRequestSchema(): any;
|
|
309
|
-
static UnDeleteUserRequestSchema(): any;
|
|
310
|
-
static EditEmailRequestSchema(): any;
|
|
311
|
-
static SendVerificationLinkMobileRequestSchema(): any;
|
|
312
|
-
static EditMobileRequestSchema(): any;
|
|
313
|
-
static EditProfileRequestSchema(): any;
|
|
314
|
-
static EditProfileMobileSchema(): any;
|
|
315
|
-
static SendEmailOtpRequestSchema(): any;
|
|
316
|
-
static VerifyEmailOtpRequestSchema(): any;
|
|
317
|
-
static VerifyOtpRequestSchema(): any;
|
|
318
|
-
static SendMobileOtpRequestSchema(): any;
|
|
319
|
-
static UpdatePasswordRequestSchema(): any;
|
|
320
|
-
static FormRegisterRequestSchema(): any;
|
|
321
|
-
static TokenRequestBodySchema(): any;
|
|
322
|
-
static ForgotPasswordRequestSchema(): any;
|
|
323
|
-
static CodeRequestBodySchema(): any;
|
|
324
|
-
static SendResetPasswordEmailRequestSchema(): any;
|
|
325
|
-
static SendResetPasswordMobileRequestSchema(): any;
|
|
326
|
-
static PasswordLoginRequestSchema(): any;
|
|
327
|
-
static SendOtpRequestSchema(): any;
|
|
328
|
-
static OAuthRequestSchema(): any;
|
|
329
|
-
static OAuthRequestAppleSchema(): any;
|
|
330
|
-
static UserObjectSchema(): any;
|
|
331
|
-
static AuthSuccess(): any;
|
|
332
|
-
static SendOtpResponse(): any;
|
|
333
|
-
static ProfileEditSuccess(): any;
|
|
334
|
-
static LoginSuccess(): any;
|
|
335
|
-
static VerifyOtpSuccess(): any;
|
|
336
|
-
static ResetPasswordSuccess(): any;
|
|
337
|
-
static RegisterFormSuccess(): any;
|
|
338
|
-
static VerifyEmailSuccess(): any;
|
|
339
|
-
static HasPasswordSuccess(): any;
|
|
340
|
-
static LogoutSuccess(): any;
|
|
341
|
-
static BlockUserSuccess(): any;
|
|
342
|
-
static ArchiveUserSuccess(): any;
|
|
343
|
-
static DeleteUserSuccess(): any;
|
|
344
|
-
static UnDeleteUserSuccess(): any;
|
|
345
|
-
static OtpSuccess(): any;
|
|
346
|
-
static EmailOtpSuccess(): any;
|
|
347
|
-
static SessionListSuccess(): any;
|
|
348
|
-
static VerifyMobileOTPSuccess(): any;
|
|
349
|
-
static VerifyEmailOTPSuccess(): any;
|
|
350
|
-
static SendMobileVerifyLinkSuccess(): any;
|
|
351
|
-
static SendEmailVerifyLinkSuccess(): any;
|
|
352
|
-
static UserSearchResponseSchema(): any;
|
|
353
|
-
static CustomerListResponseSchema(): any;
|
|
354
|
-
static SessionListResponseSchema(): any;
|
|
355
|
-
static SessionDeleteResponseSchema(): any;
|
|
356
|
-
static UnauthorizedSchema(): any;
|
|
357
|
-
static UnauthenticatedSchema(): any;
|
|
358
|
-
static NotFoundSchema(): any;
|
|
359
|
-
static AuthenticationInternalServerErrorSchema(): any;
|
|
360
|
-
static AuthenticationApiErrorSchema(): any;
|
|
361
|
-
static ProfileEditSuccessSchema(): any;
|
|
362
|
-
static FormRegisterRequestSchemaPhone(): any;
|
|
363
|
-
static OAuthRequestSchemaOauth2(): any;
|
|
364
|
-
static OAuthRequestSchemaProfile(): any;
|
|
365
|
-
static OAuthRequestAppleSchemaOauth(): any;
|
|
366
|
-
static OAuthRequestAppleSchemaProfile(): any;
|
|
367
|
-
static AuthSuccessUser(): any;
|
|
368
|
-
static AuthSuccessUserDebug(): any;
|
|
369
|
-
static AuthSuccessUserEmails(): any;
|
|
370
|
-
static CreateUserRequestSchema(): any;
|
|
371
|
-
static CreateUserResponseSchema(): any;
|
|
372
|
-
static CreateUserSessionRequestSchema(): any;
|
|
373
|
-
static CreateUserSessionResponseSchema(): any;
|
|
374
|
-
static PlatformSchema(): any;
|
|
375
|
-
static LookAndFeel(): any;
|
|
376
|
-
static Login(): any;
|
|
377
|
-
static MetaSchema(): any;
|
|
378
|
-
static Social(): any;
|
|
379
|
-
static RequiredFields(): any;
|
|
380
|
-
static PlatformEmail(): any;
|
|
381
|
-
static PlatformMobile(): any;
|
|
382
|
-
static RegisterRequiredFields(): any;
|
|
383
|
-
static RegisterRequiredFieldsEmail(): any;
|
|
384
|
-
static RegisterRequiredFieldsMobile(): any;
|
|
385
|
-
static FlashCard(): any;
|
|
386
|
-
static SocialTokens(): any;
|
|
387
|
-
static DeleteAccountReasons(): any;
|
|
388
|
-
static DeleteAccountConsent(): any;
|
|
389
|
-
static Facebook(): any;
|
|
390
|
-
static Accountkit(): any;
|
|
391
|
-
static Google(): any;
|
|
392
|
-
static UpdateUserRequestSchema(): any;
|
|
393
|
-
static UserSchema(): any;
|
|
394
|
-
static PhoneNumber(): any;
|
|
395
|
-
static ApplicationLegal(): any;
|
|
396
|
-
static ApplicationLegalFAQ(): any;
|
|
397
|
-
static PathMappingSchema(): any;
|
|
398
|
-
static SeoComponent(): any;
|
|
399
|
-
static SeoSchema(): any;
|
|
400
|
-
static CustomMetaTag(): any;
|
|
401
|
-
static Detail(): any;
|
|
402
|
-
static AnnouncementPageSchema(): any;
|
|
403
|
-
static EditorMeta(): any;
|
|
404
|
-
static AnnouncementAuthorSchema(): any;
|
|
405
|
-
static AdminAnnouncementSchema(): any;
|
|
406
|
-
static ScheduleSchema(): any;
|
|
407
|
-
static NextSchedule(): any;
|
|
408
|
-
static AnnouncementSchema(): any;
|
|
409
|
-
static ScheduleStartSchema(): any;
|
|
410
|
-
static BlogGetResponse(): any;
|
|
411
|
-
static ResourceContent(): any;
|
|
412
|
-
static Asset(): any;
|
|
413
|
-
static Author(): any;
|
|
414
|
-
static BlogSchema(): any;
|
|
415
|
-
static SEO(): any;
|
|
416
|
-
static SEOImage(): any;
|
|
417
|
-
static DateMeta(): any;
|
|
418
|
-
static BlogRequest(): any;
|
|
419
|
-
static GetAnnouncementListSchema(): any;
|
|
420
|
-
static CreateAnnouncementSchema(): any;
|
|
421
|
-
static DataLoaderResponseSchema(): any;
|
|
422
|
-
static DataLoaderResetResponseSchema(): any;
|
|
423
|
-
static Navigation(): any;
|
|
424
|
-
static LocaleLanguage(): any;
|
|
425
|
-
static Language(): any;
|
|
426
|
-
static Action(): any;
|
|
427
|
-
static ActionPage(): any;
|
|
428
|
-
static NavigationReference(): any;
|
|
429
|
-
static LandingPage(): any;
|
|
430
|
-
static ConfigurationSchema(): any;
|
|
431
|
-
static SlideshowMedia(): any;
|
|
432
|
-
static Slideshow(): any;
|
|
433
|
-
static AnnouncementsResponseSchema(): any;
|
|
434
|
-
static FaqResponseSchema(): any;
|
|
435
|
-
static UpdateHandpickedSchema(): any;
|
|
436
|
-
static HandpickedTagSchema(): any;
|
|
437
|
-
static RemoveHandpickedSchema(): any;
|
|
438
|
-
static CreateTagSchema(): any;
|
|
439
|
-
static CreateTagRequestSchema(): any;
|
|
440
|
-
static DataLoaderSchema(): any;
|
|
441
|
-
static DataLoaderSourceSchema(): any;
|
|
442
|
-
static DataLoadersSchema(): any;
|
|
443
|
-
static TagDeleteSuccessResponse(): any;
|
|
444
|
-
static ContentAPIError(): any;
|
|
445
|
-
static CommonError(): any;
|
|
446
|
-
static CategorySchema(): any;
|
|
447
|
-
static ChildrenSchema(): any;
|
|
448
|
-
static CategoryRequestSchema(): any;
|
|
449
|
-
static FAQCategorySchema(): any;
|
|
450
|
-
static FaqSchema(): any;
|
|
451
|
-
static FAQ(): any;
|
|
452
|
-
static CreateFaqResponseSchema(): any;
|
|
453
|
-
static CreateFaqSchema(): any;
|
|
454
|
-
static GetFaqSchema(): any;
|
|
455
|
-
static UpdateFaqCategoryRequestSchema(): any;
|
|
456
|
-
static CreateFaqCategoryRequestSchema(): any;
|
|
457
|
-
static CreateFaqCategorySchema(): any;
|
|
458
|
-
static GetFaqCategoriesSchema(): any;
|
|
459
|
-
static GetFaqCategoryBySlugSchema(): any;
|
|
460
|
-
static LandingPageGetResponse(): any;
|
|
461
|
-
static LandingPageSchema(): any;
|
|
462
|
-
static DefaultNavigationResponse(): any;
|
|
463
|
-
static NavigationGetResponse(): any;
|
|
464
|
-
static Orientation(): any;
|
|
465
|
-
static NavigationSchema(): any;
|
|
466
|
-
static NavigationRequest(): any;
|
|
467
|
-
static CustomPageSchema(): any;
|
|
468
|
-
static ContentSchema(): any;
|
|
469
|
-
static CustomPage(): any;
|
|
470
|
-
static FeatureImage(): any;
|
|
471
|
-
static PageGetResponse(): any;
|
|
472
|
-
static PageSpec(): any;
|
|
473
|
-
static PageSpecParam(): any;
|
|
474
|
-
static PageSpecItem(): any;
|
|
475
|
-
static PageSchema(): any;
|
|
476
|
-
static CreatedBySchema(): any;
|
|
477
|
-
static PageContent(): any;
|
|
478
|
-
static PageMeta(): any;
|
|
479
|
-
static PageRequest(): any;
|
|
480
|
-
static CronSchedule(): any;
|
|
481
|
-
static PagePublishRequest(): any;
|
|
482
|
-
static PageMetaSchema(): any;
|
|
483
|
-
static SlideshowGetResponse(): any;
|
|
484
|
-
static SlideshowSchema(): any;
|
|
485
|
-
static SlideshowRequest(): any;
|
|
486
|
-
static Support(): any;
|
|
487
|
-
static PhoneProperties(): any;
|
|
488
|
-
static PhoneSchema(): any;
|
|
489
|
-
static EmailProperties(): any;
|
|
490
|
-
static EmailSchema(): any;
|
|
491
|
-
static ContactSchema(): any;
|
|
492
|
-
static TagsSchema(): any;
|
|
493
|
-
static TagSchema(): any;
|
|
494
|
-
static TagSourceSchema(): any;
|
|
495
|
-
static PageType(): any;
|
|
496
|
-
static CommunicationConsentReq(): any;
|
|
497
|
-
static CommunicationConsentRes(): any;
|
|
498
|
-
static CommunicationConsentChannelsEmail(): any;
|
|
499
|
-
static CommunicationConsentChannelsSms(): any;
|
|
500
|
-
static CommunicationConsentChannelsWhatsapp(): any;
|
|
501
|
-
static CommunicationConsentChannels(): any;
|
|
502
|
-
static CommunicationConsent(): any;
|
|
503
|
-
static BadRequestSchema(): any;
|
|
504
|
-
static PushtokenReq(): any;
|
|
505
|
-
static PushtokenRes(): any;
|
|
506
|
-
static QRCodeResp(): any;
|
|
507
|
-
static RedirectDevice(): any;
|
|
508
|
-
static WebRedirect(): any;
|
|
509
|
-
static Redirects(): any;
|
|
510
|
-
static CampaignShortLink(): any;
|
|
511
|
-
static Attribution(): any;
|
|
512
|
-
static SocialMediaTags(): any;
|
|
513
|
-
static ShortLinkReq(): any;
|
|
514
|
-
static UrlInfo(): any;
|
|
515
|
-
static ShortLinkRes(): any;
|
|
516
|
-
static ShortLinkList(): any;
|
|
517
|
-
static ErrorRes(): any;
|
|
518
|
-
static FailedResponse(): any;
|
|
519
|
-
static CDN(): any;
|
|
520
|
-
static Upload(): any;
|
|
521
|
-
static StartResponse(): any;
|
|
522
|
-
static StartRequest(): any;
|
|
523
|
-
static CompleteResponse(): any;
|
|
524
|
-
static Opts(): any;
|
|
525
|
-
static CopyFileTask(): any;
|
|
526
|
-
static BulkUploadResponse(): any;
|
|
527
|
-
static ReqConfiguration(): any;
|
|
528
|
-
static Destination(): any;
|
|
529
|
-
static BulkRequest(): any;
|
|
530
|
-
static Urls(): any;
|
|
531
|
-
static SignUrlResponse(): any;
|
|
532
|
-
static SignUrlRequest(): any;
|
|
533
|
-
static DbRecord(): any;
|
|
534
|
-
static BrowseResponse(): any;
|
|
535
|
-
static ApplicationAboutResponse(): any;
|
|
536
|
-
static ApplicationInfo(): any;
|
|
537
|
-
static CompanyInfo(): any;
|
|
538
|
-
static OwnerInfo(): any;
|
|
539
|
-
static AppVersionRequest(): any;
|
|
540
|
-
static ApplicationVersionRequest(): any;
|
|
541
|
-
static Device(): any;
|
|
542
|
-
static OS(): any;
|
|
543
|
-
static SupportedLanguage(): any;
|
|
544
|
-
static LanguageResponse(): any;
|
|
545
|
-
static AppStaffResponse(): any;
|
|
546
|
-
static AppStaffListResponse(): any;
|
|
547
|
-
static UpdateDialog(): any;
|
|
548
|
-
static OrderingStoreSelectRequest(): any;
|
|
549
|
-
static OrderingStoreSelect(): any;
|
|
550
|
-
static AppStaff(): any;
|
|
551
|
-
static AppTokenResponse(): any;
|
|
552
|
-
static Tokens(): any;
|
|
553
|
-
static Firebase(): any;
|
|
554
|
-
static Credentials(): any;
|
|
555
|
-
static Ios(): any;
|
|
556
|
-
static Android(): any;
|
|
557
|
-
static Moengage(): any;
|
|
558
|
-
static MoengageCredentials(): any;
|
|
559
|
-
static Segment(): any;
|
|
560
|
-
static SegmentCredentials(): any;
|
|
561
|
-
static Gtm(): any;
|
|
562
|
-
static GtmCredentials(): any;
|
|
563
|
-
static Freshchat(): any;
|
|
564
|
-
static FreshchatCredentials(): any;
|
|
565
|
-
static Safetynet(): any;
|
|
566
|
-
static SafetynetCredentials(): any;
|
|
567
|
-
static FyndRewards(): any;
|
|
568
|
-
static FyndRewardsCredentials(): any;
|
|
569
|
-
static GoogleMap(): any;
|
|
570
|
-
static GoogleMapCredentials(): any;
|
|
571
|
-
static RewardPointsConfig(): any;
|
|
572
|
-
static Credit(): any;
|
|
573
|
-
static Debit(): any;
|
|
574
|
-
static ProductDetailFeature(): any;
|
|
575
|
-
static LaunchPage(): any;
|
|
576
|
-
static LandingPageFeature(): any;
|
|
577
|
-
static RegistrationPageFeature(): any;
|
|
578
|
-
static AppFeature(): any;
|
|
579
|
-
static HomePageFeature(): any;
|
|
580
|
-
static CommonFeature(): any;
|
|
581
|
-
static CommunicationOptinDialogFeature(): any;
|
|
582
|
-
static DeploymentStoreSelectionFeature(): any;
|
|
583
|
-
static ListingPriceFeature(): any;
|
|
584
|
-
static CurrencyFeature(): any;
|
|
585
|
-
static RevenueEngineFeature(): any;
|
|
586
|
-
static FeedbackFeature(): any;
|
|
587
|
-
static CompareProductsFeature(): any;
|
|
588
|
-
static CartFeature(): any;
|
|
589
|
-
static QrFeature(): any;
|
|
590
|
-
static PcrFeature(): any;
|
|
591
|
-
static OrderFeature(): any;
|
|
592
|
-
static AppFeatureRequest(): any;
|
|
593
|
-
static AppFeatureResponse(): any;
|
|
594
|
-
static UnhandledError(): any;
|
|
595
|
-
static InvalidPayloadRequest(): any;
|
|
596
|
-
static SuccessMessageResponse(): any;
|
|
597
|
-
static InventoryBrandRule(): any;
|
|
598
|
-
static StoreCriteriaRule(): any;
|
|
599
|
-
static InventoryStoreRule(): any;
|
|
600
|
-
static InventoryPaymentConfig(): any;
|
|
601
|
-
static StorePriorityRule(): any;
|
|
602
|
-
static ArticleAssignmentRule(): any;
|
|
603
|
-
static InventoryArticleAssignment(): any;
|
|
604
|
-
static CompanyAboutAddress(): any;
|
|
605
|
-
static UserEmail(): any;
|
|
606
|
-
static UserPhoneNumber(): any;
|
|
607
|
-
static ApplicationInformation(): any;
|
|
608
|
-
static InformationAddress(): any;
|
|
609
|
-
static InformationPhone(): any;
|
|
610
|
-
static InformationSupport(): any;
|
|
611
|
-
static SocialLinks(): any;
|
|
612
|
-
static FacebookLink(): any;
|
|
613
|
-
static InstagramLink(): any;
|
|
614
|
-
static TwitterLink(): any;
|
|
615
|
-
static PinterestLink(): any;
|
|
616
|
-
static GooglePlusLink(): any;
|
|
617
|
-
static YoutubeLink(): any;
|
|
618
|
-
static LinkedInLink(): any;
|
|
619
|
-
static VimeoLink(): any;
|
|
620
|
-
static BlogLink(): any;
|
|
621
|
-
static Links(): any;
|
|
622
|
-
static BusinessHighlights(): any;
|
|
623
|
-
static ApplicationDetail(): any;
|
|
624
|
-
static CurrenciesResponse(): any;
|
|
625
|
-
static DefaultCurrency(): any;
|
|
626
|
-
static AppCurrencyResponse(): any;
|
|
627
|
-
static StoreLatLong(): any;
|
|
628
|
-
static OptedStoreAddress(): any;
|
|
629
|
-
static OrderingStore(): any;
|
|
630
|
-
static OrderingStores(): any;
|
|
631
|
-
static OrderingStoresResponse(): any;
|
|
632
|
-
static AggregatorConfigDetail(): any;
|
|
633
|
-
static AggregatorsConfigDetailResponse(): any;
|
|
634
|
-
static ErrorCodeAndDescription(): any;
|
|
635
|
-
static HttpErrorCodeAndResponse(): any;
|
|
636
|
-
static AttachCardRequest(): any;
|
|
637
|
-
static AttachCardsResponse(): any;
|
|
638
|
-
static CardPaymentGateway(): any;
|
|
639
|
-
static ActiveCardPaymentGatewayResponse(): any;
|
|
640
|
-
static Card(): any;
|
|
641
|
-
static ListCardsResponse(): any;
|
|
642
|
-
static DeletehCardRequest(): any;
|
|
643
|
-
static DeleteCardsResponse(): any;
|
|
644
|
-
static ValidateCustomerRequest(): any;
|
|
645
|
-
static ValidateCustomerResponse(): any;
|
|
646
|
-
static ChargeCustomerRequest(): any;
|
|
647
|
-
static ChargeCustomerResponse(): any;
|
|
648
|
-
static PaymentInitializationRequest(): any;
|
|
649
|
-
static PaymentInitializationResponse(): any;
|
|
650
|
-
static PaymentStatusUpdateRequest(): any;
|
|
651
|
-
static PaymentStatusUpdateResponse(): any;
|
|
652
|
-
static PaymentModeLogo(): any;
|
|
653
|
-
static IntentApp(): any;
|
|
654
|
-
static IntentAppErrorList(): any;
|
|
655
|
-
static PaymentModeList(): any;
|
|
656
|
-
static RootPaymentMode(): any;
|
|
657
|
-
static AggregatorRoute(): any;
|
|
658
|
-
static PaymentFlow(): any;
|
|
659
|
-
static PaymentOptionAndFlow(): any;
|
|
660
|
-
static PaymentModeRouteResponse(): any;
|
|
661
|
-
static RupifiBannerData(): any;
|
|
662
|
-
static RupifiBannerResponse(): any;
|
|
663
|
-
static EpaylaterBannerData(): any;
|
|
664
|
-
static EpaylaterBannerResponse(): any;
|
|
665
|
-
static ResendOrCancelPaymentRequest(): any;
|
|
666
|
-
static LinkStatus(): any;
|
|
667
|
-
static ResendOrCancelPaymentResponse(): any;
|
|
668
|
-
static renderHTMLRequest(): any;
|
|
669
|
-
static renderHTMLResponse(): any;
|
|
670
|
-
static ValidateVPARequest(): any;
|
|
671
|
-
static ValidateUPI(): any;
|
|
672
|
-
static ValidateVPAResponse(): any;
|
|
673
|
-
static TransferItemsDetails(): any;
|
|
674
|
-
static TransferModeDetails(): any;
|
|
675
|
-
static TransferModeResponse(): any;
|
|
676
|
-
static UpdateRefundTransferModeRequest(): any;
|
|
677
|
-
static UpdateRefundTransferModeResponse(): any;
|
|
678
|
-
static OrderBeneficiaryDetails(): any;
|
|
679
|
-
static OrderBeneficiaryResponse(): any;
|
|
680
|
-
static NotFoundResourceError(): any;
|
|
681
|
-
static IfscCodeResponse(): any;
|
|
682
|
-
static ErrorCodeDescription(): any;
|
|
683
|
-
static AddBeneficiaryViaOtpVerificationRequest(): any;
|
|
684
|
-
static AddBeneficiaryViaOtpVerificationResponse(): any;
|
|
685
|
-
static WrongOtpError(): any;
|
|
686
|
-
static BeneficiaryModeDetails(): any;
|
|
687
|
-
static AddBeneficiaryDetailsRequest(): any;
|
|
688
|
-
static RefundAccountResponse(): any;
|
|
689
|
-
static BankDetailsForOTP(): any;
|
|
690
|
-
static AddBeneficiaryDetailsOTPRequest(): any;
|
|
691
|
-
static WalletOtpRequest(): any;
|
|
692
|
-
static WalletOtpResponse(): any;
|
|
693
|
-
static SetDefaultBeneficiaryRequest(): any;
|
|
694
|
-
static SetDefaultBeneficiaryResponse(): any;
|
|
695
|
-
static GetPaymentLinkResponse(): any;
|
|
696
|
-
static ErrorDescription(): any;
|
|
697
|
-
static CreatePaymentLinkMeta(): any;
|
|
698
|
-
static CreatePaymentLinkRequest(): any;
|
|
699
|
-
static CreatePaymentLinkResponse(): any;
|
|
700
|
-
static CancelOrResendPaymentLinkRequest(): any;
|
|
701
|
-
static ResendPaymentLinkResponse(): any;
|
|
702
|
-
static CancelPaymentLinkResponse(): any;
|
|
703
|
-
static PollingPaymentLinkResponse(): any;
|
|
704
|
-
static PaymentMethodsMeta(): any;
|
|
705
|
-
static CreateOrderUserPaymentMethods(): any;
|
|
706
|
-
static CreateOrderUserRequest(): any;
|
|
707
|
-
static CreateOrderUserData(): any;
|
|
708
|
-
static CreateOrderUserResponse(): any;
|
|
709
|
-
static BalanceDetails(): any;
|
|
710
|
-
static CreditSummary(): any;
|
|
711
|
-
static CustomerCreditSummaryResponse(): any;
|
|
712
|
-
static RedirectURL(): any;
|
|
713
|
-
static RedirectToAggregatorResponse(): any;
|
|
714
|
-
static CreditDetail(): any;
|
|
715
|
-
static CheckCreditResponse(): any;
|
|
716
|
-
static MarketplaceInfo(): any;
|
|
717
|
-
static DeviceDetails(): any;
|
|
718
|
-
static KYCAddress(): any;
|
|
719
|
-
static UserPersonalInfoInDetails(): any;
|
|
720
|
-
static BusinessDetails(): any;
|
|
721
|
-
static CustomerOnboardingRequest(): any;
|
|
722
|
-
static OnboardSummary(): any;
|
|
723
|
-
static CustomerOnboardingResponse(): any;
|
|
724
|
-
static BagsForReorderArticleAssignment(): any;
|
|
725
|
-
static BagsForReorder(): any;
|
|
726
|
-
static BreakupValues(): any;
|
|
727
|
-
static Invoice(): any;
|
|
728
|
-
static ShipmentStatus(): any;
|
|
729
|
-
static DeliveryAddress(): any;
|
|
730
|
-
static ShipmentPayment(): any;
|
|
731
|
-
static NestedTrackingDetails(): any;
|
|
732
|
-
static TrackingDetails(): any;
|
|
733
|
-
static CurrentStatus(): any;
|
|
734
|
-
static ItemBrand(): any;
|
|
735
|
-
static Item(): any;
|
|
736
|
-
static AppliedFreeArticles(): any;
|
|
737
|
-
static AppliedPromos(): any;
|
|
738
|
-
static Identifiers(): any;
|
|
739
|
-
static FinancialBreakup(): any;
|
|
740
|
-
static Prices(): any;
|
|
741
|
-
static Bags(): any;
|
|
742
|
-
static ShipmentTotalDetails(): any;
|
|
743
|
-
static FulfillingStore(): any;
|
|
744
|
-
static ShipmentUserInfo(): any;
|
|
745
|
-
static TimeStampData(): any;
|
|
746
|
-
static Promise(): any;
|
|
747
|
-
static FulfillingCompany(): any;
|
|
748
|
-
static Shipments(): any;
|
|
749
|
-
static UserInfo(): any;
|
|
750
|
-
static OrderSchema(): any;
|
|
751
|
-
static OrderPage(): any;
|
|
752
|
-
static OrderStatuses(): any;
|
|
753
|
-
static OrderFilters(): any;
|
|
754
|
-
static OrderList(): any;
|
|
755
|
-
static ApefaceApiError(): any;
|
|
756
|
-
static OrderById(): any;
|
|
757
|
-
static ShipmentById(): any;
|
|
758
|
-
static ResponseGetInvoiceShipment(): any;
|
|
759
|
-
static Track(): any;
|
|
760
|
-
static ShipmentTrack(): any;
|
|
761
|
-
static CustomerDetailsResponse(): any;
|
|
762
|
-
static SendOtpToCustomerResponse(): any;
|
|
763
|
-
static VerifyOtp(): any;
|
|
764
|
-
static VerifyOtpResponse(): any;
|
|
765
|
-
static BagReasonMeta(): any;
|
|
766
|
-
static QuestionSet(): any;
|
|
767
|
-
static BagReasons(): any;
|
|
768
|
-
static ShipmentBagReasons(): any;
|
|
769
|
-
static ShipmentReason(): any;
|
|
770
|
-
static ShipmentReasons(): any;
|
|
771
|
-
static ProductsReasonsData(): any;
|
|
772
|
-
static ProductsReasonsFilters(): any;
|
|
773
|
-
static ProductsReasons(): any;
|
|
774
|
-
static EntityReasonData(): any;
|
|
775
|
-
static EntitiesReasons(): any;
|
|
776
|
-
static ReasonsData(): any;
|
|
777
|
-
static Products(): any;
|
|
778
|
-
static ProductsDataUpdatesFilters(): any;
|
|
779
|
-
static ProductsDataUpdates(): any;
|
|
780
|
-
static EntitiesDataUpdates(): any;
|
|
781
|
-
static DataUpdates(): any;
|
|
782
|
-
static ShipmentsRequest(): any;
|
|
783
|
-
static StatuesRequest(): any;
|
|
784
|
-
static UpdateShipmentStatusRequest(): any;
|
|
785
|
-
static StatusesBodyResponse(): any;
|
|
786
|
-
static ShipmentApplicationStatusResponse(): any;
|
|
787
|
-
static RewardsArticle(): any;
|
|
788
|
-
static CatalogueOrderResponse(): any;
|
|
789
|
-
static CatalogueOrderRequest(): any;
|
|
790
|
-
static PointsResponse(): any;
|
|
791
|
-
static ReferralDetailsUser(): any;
|
|
792
|
-
static Offer(): any;
|
|
793
|
-
static Schedule(): any;
|
|
794
|
-
static Error(): any;
|
|
795
|
-
static ShareMessages(): any;
|
|
796
|
-
static ReferralDetailsResponse(): any;
|
|
797
|
-
static OrderDiscountRequest(): any;
|
|
798
|
-
static OrderDiscountRuleBucket(): any;
|
|
799
|
-
static DiscountProperties(): any;
|
|
800
|
-
static OrderDiscountResponse(): any;
|
|
801
|
-
static RedeemReferralCodeRequest(): any;
|
|
802
|
-
static RedeemReferralCodeResponse(): any;
|
|
803
|
-
static PointsHistoryResponse(): any;
|
|
804
|
-
static PointsHistory(): any;
|
|
805
|
-
static UpdateCartShipmentItem(): any;
|
|
806
|
-
static UpdateCartShipmentRequest(): any;
|
|
807
|
-
static Files(): any;
|
|
808
|
-
static CartPosCheckoutDetailRequest(): any;
|
|
809
|
-
static CartDeliveryModesResponse(): any;
|
|
810
|
-
static PickupStoreDetail(): any;
|
|
811
|
-
static StoreDetailsResponse(): any;
|
|
812
|
-
static PincodeErrorSchemaResponse(): any;
|
|
813
|
-
static PincodeParentsResponse(): any;
|
|
814
|
-
static CountryMetaResponse(): any;
|
|
815
|
-
static PincodeMetaResponse(): any;
|
|
816
|
-
static PincodeDataResponse(): any;
|
|
817
|
-
static PincodeApiResponse(): any;
|
|
818
|
-
static TATCategoryRequest(): any;
|
|
819
|
-
static TATArticlesRequest(): any;
|
|
820
|
-
static TATLocationDetailsRequest(): any;
|
|
821
|
-
static TATViewRequest(): any;
|
|
822
|
-
static TATErrorSchemaResponse(): any;
|
|
823
|
-
static TATFormattedResponse(): any;
|
|
824
|
-
static TATTimestampResponse(): any;
|
|
825
|
-
static TATPromiseResponse(): any;
|
|
826
|
-
static TATArticlesResponse(): any;
|
|
827
|
-
static TATLocationDetailsResponse(): any;
|
|
828
|
-
static TATViewResponse(): any;
|
|
829
|
-
static DP(): any;
|
|
830
|
-
static LogisticsResponse(): any;
|
|
831
|
-
static CountryEntityResponse(): any;
|
|
832
|
-
static CountryListResponse(): any;
|
|
833
|
-
static GetZoneFromPincodeViewRequest(): any;
|
|
834
|
-
static GetZoneFromPincodeViewResponse(): any;
|
|
835
|
-
}
|