@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
|
@@ -12,6 +12,7 @@ Discount
|
|
|
12
12
|
* [createDiscount](#creatediscount)
|
|
13
13
|
* [getDiscount](#getdiscount)
|
|
14
14
|
* [updateDiscount](#updatediscount)
|
|
15
|
+
* [upsertDiscountItems](#upsertdiscountitems)
|
|
15
16
|
* [validateDiscountFile](#validatediscountfile)
|
|
16
17
|
* [downloadDiscountFile](#downloaddiscountfile)
|
|
17
18
|
* [getValidationJob](#getvalidationjob)
|
|
@@ -272,6 +273,64 @@ Success
|
|
|
272
273
|
|
|
273
274
|
|
|
274
275
|
|
|
276
|
+
---
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
### upsertDiscountItems
|
|
280
|
+
Create custom discount from bulk.
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
```javascript
|
|
285
|
+
// Promise
|
|
286
|
+
const promise = client.discount.upsertDiscountItems({ id : value,
|
|
287
|
+
body : value });
|
|
288
|
+
|
|
289
|
+
// Async/Await
|
|
290
|
+
const data = await client.discount.upsertDiscountItems({ id : value,
|
|
291
|
+
body : value });
|
|
292
|
+
```
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
| Argument | Type | Required | Description |
|
|
299
|
+
| --------- | ----- | -------- | ----------- |
|
|
300
|
+
| id | string | yes | Job ID of the discount. |
|
|
301
|
+
| body | [BulkDiscount](#BulkDiscount) | yes | Request body |
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
Create custom discounts through API.
|
|
305
|
+
|
|
306
|
+
*Returned Response:*
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
[Object](#Object)
|
|
312
|
+
|
|
313
|
+
Success
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
<details>
|
|
319
|
+
<summary><i> Example:</i></summary>
|
|
320
|
+
|
|
321
|
+
```json
|
|
322
|
+
|
|
323
|
+
```
|
|
324
|
+
</details>
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
|
|
275
334
|
---
|
|
276
335
|
|
|
277
336
|
|
|
@@ -695,6 +754,33 @@ Success
|
|
|
695
754
|
|
|
696
755
|
|
|
697
756
|
|
|
757
|
+
#### [DiscountItems](#DiscountItems)
|
|
758
|
+
|
|
759
|
+
| Properties | Type | Nullable | Description |
|
|
760
|
+
| ---------- | ---- | -------- | ----------- |
|
|
761
|
+
| item_code | string | no | |
|
|
762
|
+
| brand_uid | number | no | |
|
|
763
|
+
| seller_identifier | string | no | |
|
|
764
|
+
| discount_type | string | yes | |
|
|
765
|
+
| value | number | yes | |
|
|
766
|
+
|
|
767
|
+
---
|
|
768
|
+
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
|
|
772
|
+
#### [BulkDiscount](#BulkDiscount)
|
|
773
|
+
|
|
774
|
+
| Properties | Type | Nullable | Description |
|
|
775
|
+
| ---------- | ---- | -------- | ----------- |
|
|
776
|
+
| company_id | number | yes | |
|
|
777
|
+
| items | [[DiscountItems](#DiscountItems)] | yes | |
|
|
778
|
+
|
|
779
|
+
---
|
|
780
|
+
|
|
781
|
+
|
|
782
|
+
|
|
783
|
+
|
|
698
784
|
#### [FileJobResponse](#FileJobResponse)
|
|
699
785
|
|
|
700
786
|
| Properties | Type | Nullable | Description |
|
|
@@ -240,25 +240,25 @@ Success
|
|
|
240
240
|
"active": true,
|
|
241
241
|
"primary": true,
|
|
242
242
|
"verified": true,
|
|
243
|
-
"email": "
|
|
243
|
+
"email": "niktest@xyz.com"
|
|
244
244
|
},
|
|
245
245
|
{
|
|
246
246
|
"active": true,
|
|
247
247
|
"primary": false,
|
|
248
248
|
"verified": true,
|
|
249
|
-
"email": "
|
|
249
|
+
"email": "xyz@xyz.com"
|
|
250
250
|
},
|
|
251
251
|
{
|
|
252
252
|
"active": true,
|
|
253
253
|
"primary": false,
|
|
254
254
|
"verified": true,
|
|
255
|
-
"email": "
|
|
255
|
+
"email": "xyz@xyz.com"
|
|
256
256
|
},
|
|
257
257
|
{
|
|
258
258
|
"active": true,
|
|
259
259
|
"primary": false,
|
|
260
260
|
"verified": true,
|
|
261
|
-
"email": "
|
|
261
|
+
"email": "xyz@xyz.com"
|
|
262
262
|
}
|
|
263
263
|
],
|
|
264
264
|
"phoneNumbers": [
|
|
@@ -267,12 +267,12 @@ Success
|
|
|
267
267
|
"primary": true,
|
|
268
268
|
"verified": true,
|
|
269
269
|
"countryCode": 91,
|
|
270
|
-
"phone": "
|
|
270
|
+
"phone": "9999999999"
|
|
271
271
|
}
|
|
272
272
|
],
|
|
273
273
|
"firstName": "Nikhil",
|
|
274
274
|
"lastName": "Manapure",
|
|
275
|
-
"username": "
|
|
275
|
+
"username": "xyz_xyz_com",
|
|
276
276
|
"createdAt": "2020-03-24T10:55:29.298Z",
|
|
277
277
|
"updatedAt": "2020-05-12T07:46:41.816Z",
|
|
278
278
|
"uid": "5567",
|
|
@@ -569,7 +569,7 @@ Success
|
|
|
569
569
|
"primary": true,
|
|
570
570
|
"verified": true,
|
|
571
571
|
"countryCode": 91,
|
|
572
|
-
"phone": "
|
|
572
|
+
"phone": "9999999999"
|
|
573
573
|
}
|
|
574
574
|
],
|
|
575
575
|
"firstName": "Nikhil",
|
|
@@ -579,10 +579,10 @@ Success
|
|
|
579
579
|
"active": true,
|
|
580
580
|
"primary": true,
|
|
581
581
|
"verified": true,
|
|
582
|
-
"email": "
|
|
582
|
+
"email": "niktest@xyz.com"
|
|
583
583
|
}
|
|
584
584
|
],
|
|
585
|
-
"username": "
|
|
585
|
+
"username": "niktest_xyz_com_38425_20500281",
|
|
586
586
|
"createdAt": "2019-01-01T17:22:38.528Z",
|
|
587
587
|
"updatedAt": "2021-01-22T10:02:42.258Z",
|
|
588
588
|
"uid": "20500281",
|
|
@@ -630,7 +630,7 @@ Success
|
|
|
630
630
|
"primary": true,
|
|
631
631
|
"verified": true,
|
|
632
632
|
"countryCode": 91,
|
|
633
|
-
"phone": "
|
|
633
|
+
"phone": "9999999999"
|
|
634
634
|
}
|
|
635
635
|
],
|
|
636
636
|
"firstName": "Nikhil",
|
|
@@ -640,10 +640,10 @@ Success
|
|
|
640
640
|
"active": true,
|
|
641
641
|
"primary": true,
|
|
642
642
|
"verified": true,
|
|
643
|
-
"email": "
|
|
643
|
+
"email": "niktest@xyz.com"
|
|
644
644
|
}
|
|
645
645
|
],
|
|
646
|
-
"username": "
|
|
646
|
+
"username": "niktest_xyz_com_38425_20500281",
|
|
647
647
|
"createdAt": "2019-01-01T17:22:38.528Z",
|
|
648
648
|
"updatedAt": "2021-01-22T10:02:42.258Z",
|
|
649
649
|
"uid": "20500281",
|
|
@@ -938,25 +938,25 @@ Success
|
|
|
938
938
|
"active": true,
|
|
939
939
|
"primary": true,
|
|
940
940
|
"verified": true,
|
|
941
|
-
"email": "
|
|
941
|
+
"email": "niktest@xyz.com"
|
|
942
942
|
},
|
|
943
943
|
{
|
|
944
944
|
"active": true,
|
|
945
945
|
"primary": false,
|
|
946
946
|
"verified": true,
|
|
947
|
-
"email": "
|
|
947
|
+
"email": "xyz@xyz.com"
|
|
948
948
|
},
|
|
949
949
|
{
|
|
950
950
|
"active": true,
|
|
951
951
|
"primary": false,
|
|
952
952
|
"verified": true,
|
|
953
|
-
"email": "
|
|
953
|
+
"email": "xyz@xyz.com"
|
|
954
954
|
},
|
|
955
955
|
{
|
|
956
956
|
"active": true,
|
|
957
957
|
"primary": false,
|
|
958
958
|
"verified": true,
|
|
959
|
-
"email": "
|
|
959
|
+
"email": "xyz@xyz.com"
|
|
960
960
|
}
|
|
961
961
|
],
|
|
962
962
|
"phoneNumbers": [
|
|
@@ -965,12 +965,12 @@ Success
|
|
|
965
965
|
"primary": true,
|
|
966
966
|
"verified": true,
|
|
967
967
|
"countryCode": 91,
|
|
968
|
-
"phone": "
|
|
968
|
+
"phone": "9999999999"
|
|
969
969
|
}
|
|
970
970
|
],
|
|
971
971
|
"firstName": "Nikhil",
|
|
972
972
|
"lastName": "Manapure",
|
|
973
|
-
"username": "
|
|
973
|
+
"username": "xyz_xyz_com",
|
|
974
974
|
"createdAt": "2020-03-24T10:55:29.298Z",
|
|
975
975
|
"updatedAt": "2020-05-12T07:46:41.816Z",
|
|
976
976
|
"uid": "5567",
|
|
@@ -1268,7 +1268,7 @@ Success
|
|
|
1268
1268
|
"primary": true,
|
|
1269
1269
|
"verified": true,
|
|
1270
1270
|
"countryCode": 91,
|
|
1271
|
-
"phone": "
|
|
1271
|
+
"phone": "9999999999"
|
|
1272
1272
|
}
|
|
1273
1273
|
],
|
|
1274
1274
|
"firstName": "Nikhil",
|
|
@@ -1278,10 +1278,10 @@ Success
|
|
|
1278
1278
|
"active": true,
|
|
1279
1279
|
"primary": true,
|
|
1280
1280
|
"verified": true,
|
|
1281
|
-
"email": "
|
|
1281
|
+
"email": "niktest@xyz.com"
|
|
1282
1282
|
}
|
|
1283
1283
|
],
|
|
1284
|
-
"username": "
|
|
1284
|
+
"username": "niktest_xyz_com_38425_20500281",
|
|
1285
1285
|
"createdAt": "2019-01-01T17:22:38.528Z",
|
|
1286
1286
|
"updatedAt": "2021-01-22T10:02:42.258Z",
|
|
1287
1287
|
"uid": "20500281",
|
|
@@ -1329,7 +1329,7 @@ Success
|
|
|
1329
1329
|
"primary": true,
|
|
1330
1330
|
"verified": true,
|
|
1331
1331
|
"countryCode": 91,
|
|
1332
|
-
"phone": "
|
|
1332
|
+
"phone": "9999999999"
|
|
1333
1333
|
}
|
|
1334
1334
|
],
|
|
1335
1335
|
"firstName": "Nikhil",
|
|
@@ -1339,10 +1339,10 @@ Success
|
|
|
1339
1339
|
"active": true,
|
|
1340
1340
|
"primary": true,
|
|
1341
1341
|
"verified": true,
|
|
1342
|
-
"email": "
|
|
1342
|
+
"email": "niktest@xyz.com"
|
|
1343
1343
|
}
|
|
1344
1344
|
],
|
|
1345
|
-
"username": "
|
|
1345
|
+
"username": "niktest_xyz_com_38425_20500281",
|
|
1346
1346
|
"createdAt": "2019-01-01T17:22:38.528Z",
|
|
1347
1347
|
"updatedAt": "2021-01-22T10:02:42.258Z",
|
|
1348
1348
|
"uid": "20500281",
|
|
@@ -1524,7 +1524,7 @@ Success
|
|
|
1524
1524
|
"primary": true,
|
|
1525
1525
|
"verified": true,
|
|
1526
1526
|
"countryCode": 91,
|
|
1527
|
-
"phone": "
|
|
1527
|
+
"phone": "9999999999"
|
|
1528
1528
|
}
|
|
1529
1529
|
],
|
|
1530
1530
|
"firstName": "Nikhil",
|
|
@@ -1534,10 +1534,10 @@ Success
|
|
|
1534
1534
|
"active": true,
|
|
1535
1535
|
"primary": true,
|
|
1536
1536
|
"verified": true,
|
|
1537
|
-
"email": "
|
|
1537
|
+
"email": "niktest@xyz.com"
|
|
1538
1538
|
}
|
|
1539
1539
|
],
|
|
1540
|
-
"username": "
|
|
1540
|
+
"username": "niktest_xyz_com_38425_20500281",
|
|
1541
1541
|
"createdAt": "2019-01-01T17:22:38.528Z",
|
|
1542
1542
|
"updatedAt": "2021-01-22T10:02:42.258Z",
|
|
1543
1543
|
"uid": "20500281",
|
|
@@ -1585,7 +1585,7 @@ Success
|
|
|
1585
1585
|
"primary": true,
|
|
1586
1586
|
"verified": true,
|
|
1587
1587
|
"countryCode": 91,
|
|
1588
|
-
"phone": "
|
|
1588
|
+
"phone": "9999999999"
|
|
1589
1589
|
}
|
|
1590
1590
|
],
|
|
1591
1591
|
"firstName": "Nikhil",
|
|
@@ -1595,10 +1595,10 @@ Success
|
|
|
1595
1595
|
"active": true,
|
|
1596
1596
|
"primary": true,
|
|
1597
1597
|
"verified": true,
|
|
1598
|
-
"email": "
|
|
1598
|
+
"email": "niktest@xyz.com"
|
|
1599
1599
|
}
|
|
1600
1600
|
],
|
|
1601
|
-
"username": "
|
|
1601
|
+
"username": "niktest_xyz_com_38425_20500281",
|
|
1602
1602
|
"createdAt": "2019-01-01T17:22:38.528Z",
|
|
1603
1603
|
"updatedAt": "2021-01-22T10:02:42.258Z",
|
|
1604
1604
|
"uid": "20500281",
|
|
@@ -1779,7 +1779,7 @@ Success
|
|
|
1779
1779
|
"primary": true,
|
|
1780
1780
|
"verified": true,
|
|
1781
1781
|
"countryCode": 91,
|
|
1782
|
-
"phone": "
|
|
1782
|
+
"phone": "9999999999"
|
|
1783
1783
|
}
|
|
1784
1784
|
],
|
|
1785
1785
|
"firstName": "Nikhil",
|
|
@@ -1789,10 +1789,10 @@ Success
|
|
|
1789
1789
|
"active": true,
|
|
1790
1790
|
"primary": true,
|
|
1791
1791
|
"verified": true,
|
|
1792
|
-
"email": "
|
|
1792
|
+
"email": "niktest@xyz.com"
|
|
1793
1793
|
}
|
|
1794
1794
|
],
|
|
1795
|
-
"username": "
|
|
1795
|
+
"username": "niktest_xyz_com_38425_20500281",
|
|
1796
1796
|
"createdAt": "2019-01-01T17:22:38.528Z",
|
|
1797
1797
|
"updatedAt": "2021-01-22T10:02:42.258Z",
|
|
1798
1798
|
"uid": "20500281",
|
|
@@ -1840,7 +1840,7 @@ Success
|
|
|
1840
1840
|
"primary": true,
|
|
1841
1841
|
"verified": true,
|
|
1842
1842
|
"countryCode": 91,
|
|
1843
|
-
"phone": "
|
|
1843
|
+
"phone": "9999999999"
|
|
1844
1844
|
}
|
|
1845
1845
|
],
|
|
1846
1846
|
"firstName": "Nikhil",
|
|
@@ -1850,10 +1850,10 @@ Success
|
|
|
1850
1850
|
"active": true,
|
|
1851
1851
|
"primary": true,
|
|
1852
1852
|
"verified": true,
|
|
1853
|
-
"email": "
|
|
1853
|
+
"email": "niktest@xyz.com"
|
|
1854
1854
|
}
|
|
1855
1855
|
],
|
|
1856
|
-
"username": "
|
|
1856
|
+
"username": "niktest_xyz_com_38425_20500281",
|
|
1857
1857
|
"createdAt": "2019-01-01T17:22:38.528Z",
|
|
1858
1858
|
"updatedAt": "2021-01-22T10:02:42.258Z",
|
|
1859
1859
|
"uid": "20500281",
|
|
@@ -2036,7 +2036,7 @@ Success
|
|
|
2036
2036
|
"primary": true,
|
|
2037
2037
|
"verified": true,
|
|
2038
2038
|
"countryCode": 91,
|
|
2039
|
-
"phone": "
|
|
2039
|
+
"phone": "9999999999"
|
|
2040
2040
|
}
|
|
2041
2041
|
],
|
|
2042
2042
|
"firstName": "Nikhil",
|
|
@@ -2046,10 +2046,10 @@ Success
|
|
|
2046
2046
|
"active": true,
|
|
2047
2047
|
"primary": true,
|
|
2048
2048
|
"verified": true,
|
|
2049
|
-
"email": "
|
|
2049
|
+
"email": "niktest@xyz.com"
|
|
2050
2050
|
}
|
|
2051
2051
|
],
|
|
2052
|
-
"username": "
|
|
2052
|
+
"username": "niktest_xyz_com_38425_20500281",
|
|
2053
2053
|
"createdAt": "2019-01-01T17:22:38.528Z",
|
|
2054
2054
|
"updatedAt": "2021-01-22T10:02:42.258Z",
|
|
2055
2055
|
"uid": "20500281",
|
|
@@ -2097,7 +2097,7 @@ Success
|
|
|
2097
2097
|
"primary": true,
|
|
2098
2098
|
"verified": true,
|
|
2099
2099
|
"countryCode": 91,
|
|
2100
|
-
"phone": "
|
|
2100
|
+
"phone": "9999999999"
|
|
2101
2101
|
}
|
|
2102
2102
|
],
|
|
2103
2103
|
"firstName": "Nikhil",
|
|
@@ -2107,10 +2107,10 @@ Success
|
|
|
2107
2107
|
"active": true,
|
|
2108
2108
|
"primary": true,
|
|
2109
2109
|
"verified": true,
|
|
2110
|
-
"email": "
|
|
2110
|
+
"email": "niktest@xyz.com"
|
|
2111
2111
|
}
|
|
2112
2112
|
],
|
|
2113
|
-
"username": "
|
|
2113
|
+
"username": "niktest_xyz_com_38425_20500281",
|
|
2114
2114
|
"createdAt": "2019-01-01T17:22:38.528Z",
|
|
2115
2115
|
"updatedAt": "2021-01-22T10:02:42.258Z",
|
|
2116
2116
|
"uid": "20500281",
|
|
@@ -2400,7 +2400,7 @@ Success
|
|
|
2400
2400
|
"active": true,
|
|
2401
2401
|
"primary": true,
|
|
2402
2402
|
"verified": true,
|
|
2403
|
-
"phone": "
|
|
2403
|
+
"phone": "9999999999",
|
|
2404
2404
|
"countryCode": 91
|
|
2405
2405
|
}
|
|
2406
2406
|
],
|
|
@@ -2411,10 +2411,10 @@ Success
|
|
|
2411
2411
|
"active": true,
|
|
2412
2412
|
"primary": true,
|
|
2413
2413
|
"verified": true,
|
|
2414
|
-
"email": "
|
|
2414
|
+
"email": "sattest@xyz.com"
|
|
2415
2415
|
}
|
|
2416
2416
|
],
|
|
2417
|
-
"username": "
|
|
2417
|
+
"username": "sat5_xyz_com_11118",
|
|
2418
2418
|
"createdAt": "2020-10-10T05:33:31.119Z",
|
|
2419
2419
|
"updatedAt": "2020-10-10T05:33:31.119Z",
|
|
2420
2420
|
"uid": "5678",
|
|
@@ -2447,25 +2447,25 @@ Success
|
|
|
2447
2447
|
"active": true,
|
|
2448
2448
|
"primary": true,
|
|
2449
2449
|
"verified": true,
|
|
2450
|
-
"email": "
|
|
2450
|
+
"email": "niktest@xyz.com"
|
|
2451
2451
|
},
|
|
2452
2452
|
{
|
|
2453
2453
|
"active": true,
|
|
2454
2454
|
"primary": false,
|
|
2455
2455
|
"verified": true,
|
|
2456
|
-
"email": "
|
|
2456
|
+
"email": "xyz@xyz.com"
|
|
2457
2457
|
},
|
|
2458
2458
|
{
|
|
2459
2459
|
"active": true,
|
|
2460
2460
|
"primary": false,
|
|
2461
2461
|
"verified": true,
|
|
2462
|
-
"email": "
|
|
2462
|
+
"email": "xyz@xyz.com"
|
|
2463
2463
|
},
|
|
2464
2464
|
{
|
|
2465
2465
|
"active": true,
|
|
2466
2466
|
"primary": false,
|
|
2467
2467
|
"verified": true,
|
|
2468
|
-
"email": "
|
|
2468
|
+
"email": "xyz@xyz.com"
|
|
2469
2469
|
}
|
|
2470
2470
|
],
|
|
2471
2471
|
"phoneNumbers": [
|
|
@@ -2474,12 +2474,12 @@ Success
|
|
|
2474
2474
|
"primary": true,
|
|
2475
2475
|
"verified": true,
|
|
2476
2476
|
"countryCode": 91,
|
|
2477
|
-
"phone": "
|
|
2477
|
+
"phone": "9999999999"
|
|
2478
2478
|
}
|
|
2479
2479
|
],
|
|
2480
2480
|
"firstName": "Nikhil",
|
|
2481
2481
|
"lastName": "Manapure",
|
|
2482
|
-
"username": "
|
|
2482
|
+
"username": "xyz_xyz_com",
|
|
2483
2483
|
"createdAt": "2020-03-24T10:55:29.298Z",
|
|
2484
2484
|
"updatedAt": "2020-05-12T07:46:41.816Z",
|
|
2485
2485
|
"uid": "5567",
|
|
@@ -2870,7 +2870,7 @@ Success
|
|
|
2870
2870
|
"active": true,
|
|
2871
2871
|
"primary": true,
|
|
2872
2872
|
"verified": true,
|
|
2873
|
-
"phone": "
|
|
2873
|
+
"phone": "9999999999",
|
|
2874
2874
|
"countryCode": 91
|
|
2875
2875
|
}
|
|
2876
2876
|
],
|
|
@@ -2881,10 +2881,10 @@ Success
|
|
|
2881
2881
|
"active": true,
|
|
2882
2882
|
"primary": true,
|
|
2883
2883
|
"verified": true,
|
|
2884
|
-
"email": "
|
|
2884
|
+
"email": "sattest@xyz.com"
|
|
2885
2885
|
}
|
|
2886
2886
|
],
|
|
2887
|
-
"username": "
|
|
2887
|
+
"username": "sat5_xyz_com_11118",
|
|
2888
2888
|
"createdAt": "2020-10-10T05:33:31.119Z",
|
|
2889
2889
|
"updatedAt": "2020-10-10T05:33:31.119Z",
|
|
2890
2890
|
"uid": "5678",
|
|
@@ -2917,25 +2917,25 @@ Success
|
|
|
2917
2917
|
"active": true,
|
|
2918
2918
|
"primary": true,
|
|
2919
2919
|
"verified": true,
|
|
2920
|
-
"email": "
|
|
2920
|
+
"email": "niktest@xyz.com"
|
|
2921
2921
|
},
|
|
2922
2922
|
{
|
|
2923
2923
|
"active": true,
|
|
2924
2924
|
"primary": false,
|
|
2925
2925
|
"verified": true,
|
|
2926
|
-
"email": "
|
|
2926
|
+
"email": "xyz@xyz.com"
|
|
2927
2927
|
},
|
|
2928
2928
|
{
|
|
2929
2929
|
"active": true,
|
|
2930
2930
|
"primary": false,
|
|
2931
2931
|
"verified": true,
|
|
2932
|
-
"email": "
|
|
2932
|
+
"email": "xyz@xyz.com"
|
|
2933
2933
|
},
|
|
2934
2934
|
{
|
|
2935
2935
|
"active": true,
|
|
2936
2936
|
"primary": false,
|
|
2937
2937
|
"verified": true,
|
|
2938
|
-
"email": "
|
|
2938
|
+
"email": "xyz@xyz.com"
|
|
2939
2939
|
}
|
|
2940
2940
|
],
|
|
2941
2941
|
"phoneNumbers": [
|
|
@@ -2944,12 +2944,12 @@ Success
|
|
|
2944
2944
|
"primary": true,
|
|
2945
2945
|
"verified": true,
|
|
2946
2946
|
"countryCode": 91,
|
|
2947
|
-
"phone": "
|
|
2947
|
+
"phone": "9999999999"
|
|
2948
2948
|
}
|
|
2949
2949
|
],
|
|
2950
2950
|
"firstName": "Nikhil",
|
|
2951
2951
|
"lastName": "Manapure",
|
|
2952
|
-
"username": "
|
|
2952
|
+
"username": "xyz_xyz_com",
|
|
2953
2953
|
"createdAt": "2020-03-24T10:55:29.298Z",
|
|
2954
2954
|
"updatedAt": "2020-05-12T07:46:41.816Z",
|
|
2955
2955
|
"uid": "5567",
|