@gofynd/fdk-client-javascript 1.1.6 → 1.2.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 +12 -0
- package/index.js +0 -3
- package/package.json +1 -1
- package/sdk/application/ApplicationAPIClient.d.ts +15 -1
- package/sdk/application/ApplicationAPIClient.js +8 -1
- package/sdk/application/ApplicationClient.d.ts +37 -6
- package/sdk/application/ApplicationClient.js +31 -0
- package/sdk/application/ApplicationConfig.d.ts +52 -12
- package/sdk/application/ApplicationConfig.js +37 -2
- package/sdk/application/ApplicationModels.d.ts +46 -1
- package/sdk/application/ApplicationModels.js +18 -0
- package/sdk/application/Cart/CartApplicationClient.d.ts +172 -357
- package/sdk/application/Cart/CartApplicationClient.js +620 -483
- package/sdk/application/Cart/CartApplicationModel.d.ts +2054 -96
- package/sdk/application/Cart/CartApplicationModel.js +1224 -93
- package/sdk/application/Cart/CartApplicationValidator.d.ts +508 -30
- package/sdk/application/Cart/CartApplicationValidator.js +270 -15
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +234 -413
- package/sdk/application/Catalog/CatalogApplicationClient.js +777 -630
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +2218 -117
- package/sdk/application/Catalog/CatalogApplicationModel.js +1499 -170
- package/sdk/application/Catalog/CatalogApplicationValidator.d.ts +798 -31
- package/sdk/application/Catalog/CatalogApplicationValidator.js +318 -3
- package/sdk/application/Common/CommonApplicationClient.d.ts +14 -21
- package/sdk/application/Common/CommonApplicationClient.js +50 -33
- package/sdk/application/Common/CommonApplicationModel.d.ts +448 -19
- package/sdk/application/Common/CommonApplicationModel.js +224 -16
- package/sdk/application/Common/CommonApplicationValidator.d.ts +42 -4
- package/sdk/application/Common/CommonApplicationValidator.js +21 -3
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +25 -18
- package/sdk/application/Communication/CommunicationApplicationClient.js +74 -47
- package/sdk/application/Communication/CommunicationApplicationModel.d.ts +190 -14
- package/sdk/application/Communication/CommunicationApplicationModel.js +124 -7
- package/sdk/application/Communication/CommunicationApplicationValidator.d.ts +27 -4
- package/sdk/application/Communication/CommunicationApplicationValidator.js +21 -5
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +113 -112
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +381 -260
- package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +2453 -110
- package/sdk/application/Configuration/ConfigurationApplicationModel.js +1254 -108
- package/sdk/application/Configuration/ConfigurationApplicationValidator.d.ts +160 -8
- package/sdk/application/Configuration/ConfigurationApplicationValidator.js +88 -4
- package/sdk/application/Content/ContentApplicationClient.d.ts +120 -138
- package/sdk/application/Content/ContentApplicationClient.js +409 -277
- package/sdk/application/Content/ContentApplicationModel.d.ts +1627 -105
- package/sdk/application/Content/ContentApplicationModel.js +1202 -109
- package/sdk/application/Content/ContentApplicationValidator.d.ts +214 -12
- package/sdk/application/Content/ContentApplicationValidator.js +113 -3
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +20 -29
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +68 -47
- package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +299 -20
- package/sdk/application/FileStorage/FileStorageApplicationModel.js +209 -16
- package/sdk/application/FileStorage/FileStorageApplicationValidator.d.ts +55 -5
- package/sdk/application/FileStorage/FileStorageApplicationValidator.js +33 -6
- package/sdk/application/Lead/LeadApplicationClient.d.ts +50 -53
- package/sdk/application/Lead/LeadApplicationClient.js +169 -103
- package/sdk/application/Lead/LeadApplicationModel.d.ts +1405 -54
- package/sdk/application/Lead/LeadApplicationModel.js +619 -73
- package/sdk/application/Lead/LeadApplicationValidator.d.ts +91 -9
- package/sdk/application/Lead/LeadApplicationValidator.js +51 -6
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +34 -33
- package/sdk/application/Logistic/LogisticApplicationClient.js +110 -73
- package/sdk/application/Logistic/LogisticApplicationModel.d.ts +399 -28
- package/sdk/application/Logistic/LogisticApplicationModel.js +293 -24
- package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +48 -6
- package/sdk/application/Logistic/LogisticApplicationValidator.js +34 -6
- package/sdk/application/Order/OrderApplicationClient.d.ts +81 -133
- package/sdk/application/Order/OrderApplicationClient.js +297 -217
- package/sdk/application/Order/OrderApplicationModel.d.ts +1101 -66
- package/sdk/application/Order/OrderApplicationModel.js +776 -57
- package/sdk/application/Order/OrderApplicationValidator.d.ts +249 -14
- package/sdk/application/Order/OrderApplicationValidator.js +114 -5
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +341 -356
- package/sdk/application/Payment/PaymentApplicationClient.js +1077 -703
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +3125 -99
- package/sdk/application/Payment/PaymentApplicationModel.js +1158 -62
- package/sdk/application/Payment/PaymentApplicationValidator.d.ts +494 -41
- package/sdk/application/Payment/PaymentApplicationValidator.js +297 -25
- package/sdk/application/PosCart/PosCartApplicationClient.d.ts +178 -350
- package/sdk/application/PosCart/PosCartApplicationClient.js +636 -491
- package/sdk/application/PosCart/PosCartApplicationModel.d.ts +1823 -89
- package/sdk/application/PosCart/PosCartApplicationModel.js +1117 -85
- package/sdk/application/PosCart/PosCartApplicationValidator.d.ts +480 -29
- package/sdk/application/PosCart/PosCartApplicationValidator.js +262 -15
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +49 -47
- package/sdk/application/Rewards/RewardsApplicationClient.js +160 -102
- package/sdk/application/Rewards/RewardsApplicationModel.d.ts +343 -22
- package/sdk/application/Rewards/RewardsApplicationModel.js +230 -15
- package/sdk/application/Rewards/RewardsApplicationValidator.d.ts +70 -7
- package/sdk/application/Rewards/RewardsApplicationValidator.js +45 -6
- package/sdk/application/Share/ShareApplicationClient.d.ts +44 -50
- package/sdk/application/Share/ShareApplicationClient.js +165 -97
- package/sdk/application/Share/ShareApplicationModel.d.ts +230 -15
- package/sdk/application/Share/ShareApplicationModel.js +154 -16
- package/sdk/application/Share/ShareApplicationValidator.d.ts +86 -8
- package/sdk/application/Share/ShareApplicationValidator.js +48 -4
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +25 -27
- package/sdk/application/Theme/ThemeApplicationClient.js +83 -54
- package/sdk/application/Theme/ThemeApplicationModel.d.ts +621 -48
- package/sdk/application/Theme/ThemeApplicationModel.js +464 -40
- package/sdk/application/Theme/ThemeApplicationValidator.d.ts +49 -5
- package/sdk/application/Theme/ThemeApplicationValidator.js +26 -3
- package/sdk/application/User/UserApplicationClient.d.ts +219 -303
- package/sdk/application/User/UserApplicationClient.js +819 -522
- package/sdk/application/User/UserApplicationModel.d.ts +1390 -101
- package/sdk/application/User/UserApplicationModel.js +983 -44
- package/sdk/application/User/UserApplicationValidator.d.ts +457 -33
- package/sdk/application/User/UserApplicationValidator.js +265 -31
- package/sdk/common/AxiosHelper.js +8 -2
- package/sdk/common/Paginator.d.ts +27 -12
- package/sdk/common/Paginator.js +15 -0
- package/sdk/common/RequestSigner.js +0 -1
- package/sdk/partner/PartnerAPIClient.d.ts +15 -1
- package/sdk/partner/PartnerAPIClient.js +8 -1
- package/sdk/partner/PartnerClient.d.ts +20 -3
- package/sdk/partner/PartnerClient.js +17 -0
- package/sdk/partner/PartnerConfig.d.ts +40 -14
- package/sdk/partner/PartnerConfig.js +31 -6
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +26 -25
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +82 -53
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +202 -17
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +139 -10
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +42 -5
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +26 -4
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +88 -97
- package/sdk/platform/Billing/BillingPlatformClient.js +310 -191
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +1211 -68
- package/sdk/platform/Billing/BillingPlatformModel.js +824 -59
- package/sdk/platform/Billing/BillingPlatformValidator.d.ts +153 -12
- package/sdk/platform/Billing/BillingPlatformValidator.js +87 -8
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +392 -634
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +1480 -957
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +827 -57
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +492 -34
- package/sdk/platform/Cart/CartPlatformModel.d.ts +3639 -175
- package/sdk/platform/Cart/CartPlatformModel.js +2368 -212
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +438 -615
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +1449 -984
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +1081 -49
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +482 -23
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +573 -824
- package/sdk/platform/Catalog/CatalogPlatformClient.js +1773 -1264
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +6871 -326
- package/sdk/platform/Catalog/CatalogPlatformModel.js +4215 -349
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +1331 -71
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +611 -30
- package/sdk/platform/Common/CommonPlatformClient.d.ts +14 -21
- package/sdk/platform/Common/CommonPlatformClient.js +48 -33
- package/sdk/platform/Common/CommonPlatformModel.d.ts +448 -19
- package/sdk/platform/Common/CommonPlatformModel.js +224 -16
- package/sdk/platform/Common/CommonPlatformValidator.d.ts +42 -4
- package/sdk/platform/Common/CommonPlatformValidator.js +21 -3
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +457 -279
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1423 -553
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +581 -42
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +294 -22
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +18 -5
- package/sdk/platform/Communication/CommunicationPlatformClient.js +58 -19
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +1630 -102
- package/sdk/platform/Communication/CommunicationPlatformModel.js +1150 -85
- package/sdk/platform/Communication/CommunicationPlatformValidator.d.ts +16 -3
- package/sdk/platform/Communication/CommunicationPlatformValidator.js +11 -3
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +102 -111
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +321 -225
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +830 -43
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +612 -78
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +180 -13
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +98 -10
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +232 -212
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +737 -438
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +293 -22
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +184 -17
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +166 -178
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +519 -310
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +4504 -188
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +2242 -204
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +332 -19
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +153 -10
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +495 -560
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +1777 -987
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +872 -62
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +487 -35
- package/sdk/platform/Content/ContentPlatformModel.d.ts +1661 -108
- package/sdk/platform/Content/ContentPlatformModel.js +1217 -113
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +67 -101
- package/sdk/platform/Discount/DiscountPlatformClient.js +240 -176
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +242 -15
- package/sdk/platform/Discount/DiscountPlatformModel.js +162 -10
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +185 -13
- package/sdk/platform/Discount/DiscountPlatformValidator.js +88 -8
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +32 -41
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +106 -74
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +77 -6
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +41 -6
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +39 -54
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +124 -99
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +299 -20
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +207 -16
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +98 -8
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +54 -7
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +85 -91
- package/sdk/platform/Finance/FinancePlatformClient.js +272 -180
- package/sdk/platform/Finance/FinancePlatformModel.d.ts +619 -50
- package/sdk/platform/Finance/FinancePlatformModel.js +458 -30
- package/sdk/platform/Finance/FinancePlatformValidator.d.ts +123 -15
- package/sdk/platform/Finance/FinancePlatformValidator.js +95 -16
- package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +99 -97
- package/sdk/platform/Inventory/InventoryPlatformClient.js +288 -199
- package/sdk/platform/Inventory/InventoryPlatformModel.d.ts +1354 -61
- package/sdk/platform/Inventory/InventoryPlatformModel.js +916 -83
- package/sdk/platform/Inventory/InventoryPlatformValidator.d.ts +168 -12
- package/sdk/platform/Inventory/InventoryPlatformValidator.js +82 -6
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +86 -106
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +326 -186
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +180 -14
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +94 -9
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +75 -101
- package/sdk/platform/Lead/LeadPlatformClient.js +240 -174
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +1403 -54
- package/sdk/platform/Lead/LeadPlatformModel.js +618 -73
- package/sdk/platform/Lead/LeadPlatformValidator.d.ts +173 -12
- package/sdk/platform/Lead/LeadPlatformValidator.js +85 -8
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +18 -14
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +56 -29
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +26 -4
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +16 -3
- package/sdk/platform/Order/OrderPlatformClient.d.ts +343 -556
- package/sdk/platform/Order/OrderPlatformClient.js +969 -762
- package/sdk/platform/Order/OrderPlatformModel.d.ts +4967 -247
- package/sdk/platform/Order/OrderPlatformModel.js +3249 -259
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +758 -37
- package/sdk/platform/Order/OrderPlatformValidator.js +351 -22
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +28 -36
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +103 -59
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +66 -6
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +32 -4
- package/sdk/platform/Partner/PartnerPlatformClient.d.ts +68 -107
- package/sdk/platform/Partner/PartnerPlatformClient.js +253 -174
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +767 -45
- package/sdk/platform/Partner/PartnerPlatformModel.js +524 -41
- package/sdk/platform/Partner/PartnerPlatformValidator.d.ts +207 -13
- package/sdk/platform/Partner/PartnerPlatformValidator.js +87 -5
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +255 -260
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +860 -504
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +348 -30
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +221 -19
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +73 -73
- package/sdk/platform/Payment/PaymentPlatformClient.js +238 -154
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +2658 -93
- package/sdk/platform/Payment/PaymentPlatformModel.js +1035 -36
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +111 -11
- package/sdk/platform/Payment/PaymentPlatformValidator.js +68 -7
- package/sdk/platform/PlatformAPIClient.d.ts +16 -1
- package/sdk/platform/PlatformAPIClient.js +9 -1
- package/sdk/platform/PlatformApplicationClient.d.ts +22 -1798
- package/sdk/platform/PlatformApplicationClient.js +17 -1899
- package/sdk/platform/PlatformClient.d.ts +29 -12579
- package/sdk/platform/PlatformClient.js +26 -15085
- package/sdk/platform/PlatformConfig.d.ts +37 -11
- package/sdk/platform/PlatformConfig.js +32 -6
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +80 -92
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +307 -177
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +149 -12
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +82 -8
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +371 -23
- package/sdk/platform/Rewards/RewardsPlatformModel.js +246 -16
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +120 -89
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +349 -201
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +128 -12
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +85 -11
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +148 -178
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +454 -329
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +1399 -96
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +1022 -71
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +280 -18
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +134 -11
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +38 -47
- package/sdk/platform/Share/SharePlatformApplicationClient.js +137 -73
- package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +87 -7
- package/sdk/platform/Share/SharePlatformApplicationValidator.js +42 -5
- package/sdk/platform/Share/SharePlatformModel.d.ts +250 -16
- package/sdk/platform/Share/SharePlatformModel.js +165 -17
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +149 -183
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +579 -330
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +308 -24
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +162 -10
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +621 -48
- package/sdk/platform/Theme/ThemePlatformModel.js +464 -40
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +119 -151
- package/sdk/platform/User/UserPlatformApplicationClient.js +411 -244
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +235 -18
- package/sdk/platform/User/UserPlatformApplicationValidator.js +126 -12
- package/sdk/platform/User/UserPlatformModel.d.ts +1390 -101
- package/sdk/platform/User/UserPlatformModel.js +983 -44
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +38 -47
- package/sdk/platform/Webhook/WebhookPlatformClient.js +137 -87
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +242 -16
- package/sdk/platform/Webhook/WebhookPlatformModel.js +167 -18
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +83 -7
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +43 -5
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +14 -21
- package/sdk/public/Configuration/ConfigurationPublicClient.js +46 -33
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +473 -19
- package/sdk/public/Configuration/ConfigurationPublicModel.js +224 -16
- package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +42 -4
- package/sdk/public/Configuration/ConfigurationPublicValidator.js +21 -3
- package/sdk/public/Inventory/InventoryPublicClient.d.ts +48 -48
- package/sdk/public/Inventory/InventoryPublicClient.js +146 -98
- package/sdk/public/Inventory/InventoryPublicModel.d.ts +392 -21
- package/sdk/public/Inventory/InventoryPublicModel.js +267 -27
- package/sdk/public/Inventory/InventoryPublicValidator.d.ts +90 -8
- package/sdk/public/Inventory/InventoryPublicValidator.js +44 -4
- package/sdk/public/PublicClient.d.ts +19 -3
- package/sdk/public/PublicClient.js +16 -0
- package/sdk/public/PublicConfig.d.ts +27 -6
- package/sdk/public/PublicConfig.js +17 -1
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +13 -11
- package/sdk/public/Webhook/WebhookPublicClient.js +42 -27
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +242 -16
- package/sdk/public/Webhook/WebhookPublicModel.js +167 -18
- package/sdk/public/Webhook/WebhookPublicValidator.d.ts +18 -3
- package/sdk/public/Webhook/WebhookPublicValidator.js +14 -4
|
@@ -30,7 +30,18 @@ const User = require("./User/UserPlatformApplicationClient");
|
|
|
30
30
|
|
|
31
31
|
const { FDKClientValidationError } = require("../common/FDKError");
|
|
32
32
|
|
|
33
|
+
/**
|
|
34
|
+
* Represents the client for a platform's application level APIs.
|
|
35
|
+
*
|
|
36
|
+
* @class
|
|
37
|
+
*/
|
|
33
38
|
class PlatformApplicationClient {
|
|
39
|
+
/**
|
|
40
|
+
* Creates an instance of PlatformApplicationClient.
|
|
41
|
+
*
|
|
42
|
+
* @param {string} applicationId - The ID of the application.
|
|
43
|
+
* @param {import("./PlatformConfig")} config - The platform configuration.
|
|
44
|
+
*/
|
|
34
45
|
constructor(applicationId, config) {
|
|
35
46
|
this.config = config;
|
|
36
47
|
this.companyId = config.companyId;
|
|
@@ -67,6 +78,12 @@ class PlatformApplicationClient {
|
|
|
67
78
|
this.user = new User(config, applicationId);
|
|
68
79
|
}
|
|
69
80
|
|
|
81
|
+
/**
|
|
82
|
+
* Sets the extra headers for the platform application.
|
|
83
|
+
*
|
|
84
|
+
* @param {object} header - The header object to set.
|
|
85
|
+
* @throws {FDKClientValidationError} When the provided header is not an object.
|
|
86
|
+
*/
|
|
70
87
|
setExtraHeaders(header) {
|
|
71
88
|
if (typeof header === "object") {
|
|
72
89
|
this.config.extraHeaders.push(header);
|
|
@@ -76,1903 +93,4 @@ class PlatformApplicationClient {
|
|
|
76
93
|
}
|
|
77
94
|
}
|
|
78
95
|
|
|
79
|
-
/** @typedef BadRequest */
|
|
80
|
-
/** @typedef CreateLogResponse */
|
|
81
|
-
/** @typedef DeviceInfo */
|
|
82
|
-
/** @typedef EntityObj */
|
|
83
|
-
/** @typedef EntityObject */
|
|
84
|
-
/** @typedef EntityTypeObj */
|
|
85
|
-
/** @typedef EntityTypesResponse */
|
|
86
|
-
/** @typedef InternalServerError */
|
|
87
|
-
/** @typedef Location */
|
|
88
|
-
/** @typedef LogDocs */
|
|
89
|
-
/** @typedef LogMetaObj */
|
|
90
|
-
/** @typedef LogSchemaResponse */
|
|
91
|
-
/** @typedef Modifier */
|
|
92
|
-
/** @typedef RequestBodyAuditLog */
|
|
93
|
-
/** @typedef ResourceNotFound */
|
|
94
|
-
|
|
95
|
-
/** @typedef BadRequest */
|
|
96
|
-
/** @typedef CancelSubscriptionReq */
|
|
97
|
-
/** @typedef CancelSubscriptionRes */
|
|
98
|
-
/** @typedef ChargeLineItem */
|
|
99
|
-
/** @typedef CheckValidityResponse */
|
|
100
|
-
/** @typedef CreateOneTimeCharge */
|
|
101
|
-
/** @typedef CreateOneTimeChargeResponse */
|
|
102
|
-
/** @typedef CreateSubscriptionCharge */
|
|
103
|
-
/** @typedef CreateSubscriptionResponse */
|
|
104
|
-
/** @typedef CurrentPeriod */
|
|
105
|
-
/** @typedef DetailedPlan */
|
|
106
|
-
/** @typedef DetailedPlanComponents */
|
|
107
|
-
/** @typedef EntityChargePrice */
|
|
108
|
-
/** @typedef EntityChargeRecurring */
|
|
109
|
-
/** @typedef EntitySubscription */
|
|
110
|
-
/** @typedef InternalServerError */
|
|
111
|
-
/** @typedef Invoice */
|
|
112
|
-
/** @typedef InvoiceDetails */
|
|
113
|
-
/** @typedef InvoiceDetailsClient */
|
|
114
|
-
/** @typedef InvoiceDetailsPaymentMethods */
|
|
115
|
-
/** @typedef InvoiceDetailsPaymentMethodsData */
|
|
116
|
-
/** @typedef InvoiceDetailsPaymentMethodsDataChecks */
|
|
117
|
-
/** @typedef InvoiceDetailsPaymentMethodsDataNetworks */
|
|
118
|
-
/** @typedef InvoiceDetailsPaymentMethodsDataThreeDSecureUsage */
|
|
119
|
-
/** @typedef InvoiceDetailsPeriod */
|
|
120
|
-
/** @typedef InvoiceDetailsStatusTrail */
|
|
121
|
-
/** @typedef InvoiceItems */
|
|
122
|
-
/** @typedef InvoiceItemsPeriod */
|
|
123
|
-
/** @typedef InvoiceItemsPlan */
|
|
124
|
-
/** @typedef InvoiceItemsPlanRecurring */
|
|
125
|
-
/** @typedef InvoicePaymentMethod */
|
|
126
|
-
/** @typedef Invoices */
|
|
127
|
-
/** @typedef InvoicesData */
|
|
128
|
-
/** @typedef InvoicesDataClient */
|
|
129
|
-
/** @typedef InvoicesDataPaymentMethod */
|
|
130
|
-
/** @typedef InvoicesDataPeriod */
|
|
131
|
-
/** @typedef OneTimeChargeEntity */
|
|
132
|
-
/** @typedef OneTimeChargeItem */
|
|
133
|
-
/** @typedef Page */
|
|
134
|
-
/** @typedef Phone */
|
|
135
|
-
/** @typedef Plan */
|
|
136
|
-
/** @typedef PlanRecurring */
|
|
137
|
-
/** @typedef ResourceNotFound */
|
|
138
|
-
/** @typedef Subscription */
|
|
139
|
-
/** @typedef SubscriptionActivateReq */
|
|
140
|
-
/** @typedef SubscriptionActivateRes */
|
|
141
|
-
/** @typedef SubscriptionBillingAddress */
|
|
142
|
-
/** @typedef SubscriptionCharge */
|
|
143
|
-
/** @typedef SubscriptionCurrentPeriod */
|
|
144
|
-
/** @typedef SubscriptionCustomer */
|
|
145
|
-
/** @typedef SubscriptionCustomerCreate */
|
|
146
|
-
/** @typedef SubscriptionInvoiceSettings */
|
|
147
|
-
/** @typedef SubscriptionLimit */
|
|
148
|
-
/** @typedef SubscriptionLimitApplication */
|
|
149
|
-
/** @typedef SubscriptionLimitExtensions */
|
|
150
|
-
/** @typedef SubscriptionLimitIntegrations */
|
|
151
|
-
/** @typedef SubscriptionLimitMarketplace */
|
|
152
|
-
/** @typedef SubscriptionLimitOtherPlatform */
|
|
153
|
-
/** @typedef SubscriptionLimitProducts */
|
|
154
|
-
/** @typedef SubscriptionLimitTeam */
|
|
155
|
-
/** @typedef SubscriptionPauseCollection */
|
|
156
|
-
/** @typedef SubscriptionStatus */
|
|
157
|
-
/** @typedef SubscriptionTrial */
|
|
158
|
-
/** @typedef SubscriptionTrialPeriod */
|
|
159
|
-
/** @typedef UnauthenticatedApplication */
|
|
160
|
-
/** @typedef UnauthenticatedUser */
|
|
161
|
-
|
|
162
|
-
/** @typedef AbandonedCart */
|
|
163
|
-
/** @typedef AbandonedCartResponse */
|
|
164
|
-
/** @typedef ActionQuery */
|
|
165
|
-
/** @typedef ActivePromosResponse */
|
|
166
|
-
/** @typedef AddCartDetailResponse */
|
|
167
|
-
/** @typedef AddCartRequest */
|
|
168
|
-
/** @typedef AddProductCart */
|
|
169
|
-
/** @typedef AppliedFreeArticles */
|
|
170
|
-
/** @typedef AppliedPromotion */
|
|
171
|
-
/** @typedef ApplyCouponRequest */
|
|
172
|
-
/** @typedef Article */
|
|
173
|
-
/** @typedef ArticlePriceInfo */
|
|
174
|
-
/** @typedef BaseInfo */
|
|
175
|
-
/** @typedef BasePrice */
|
|
176
|
-
/** @typedef BulkBundleRestriction */
|
|
177
|
-
/** @typedef BuyRules */
|
|
178
|
-
/** @typedef CartBreakup */
|
|
179
|
-
/** @typedef CartCheckoutResponse */
|
|
180
|
-
/** @typedef CartCurrency */
|
|
181
|
-
/** @typedef CartDeliveryModesResponse */
|
|
182
|
-
/** @typedef CartDetailResponse */
|
|
183
|
-
/** @typedef CartItem */
|
|
184
|
-
/** @typedef CartItemCountResponse */
|
|
185
|
-
/** @typedef CartItemMeta */
|
|
186
|
-
/** @typedef CartList */
|
|
187
|
-
/** @typedef CartMetaConfigAdd */
|
|
188
|
-
/** @typedef CartMetaConfigUpdate */
|
|
189
|
-
/** @typedef CartMetaMissingResponse */
|
|
190
|
-
/** @typedef CartMetaResponse */
|
|
191
|
-
/** @typedef CartProduct */
|
|
192
|
-
/** @typedef CartProductIdentifer */
|
|
193
|
-
/** @typedef CartProductInfo */
|
|
194
|
-
/** @typedef CategoryInfo */
|
|
195
|
-
/** @typedef Charges */
|
|
196
|
-
/** @typedef CheckCart */
|
|
197
|
-
/** @typedef Collection */
|
|
198
|
-
/** @typedef CompareObject */
|
|
199
|
-
/** @typedef Coupon */
|
|
200
|
-
/** @typedef CouponAction */
|
|
201
|
-
/** @typedef CouponAdd */
|
|
202
|
-
/** @typedef CouponAuthor */
|
|
203
|
-
/** @typedef CouponBreakup */
|
|
204
|
-
/** @typedef CouponDateMeta */
|
|
205
|
-
/** @typedef CouponDetails */
|
|
206
|
-
/** @typedef CouponPartialUpdate */
|
|
207
|
-
/** @typedef CouponSchedule */
|
|
208
|
-
/** @typedef CouponsResponse */
|
|
209
|
-
/** @typedef CouponUpdate */
|
|
210
|
-
/** @typedef CouponValidity */
|
|
211
|
-
/** @typedef DeleteAddressResponse */
|
|
212
|
-
/** @typedef DeleteCartDetailResponse */
|
|
213
|
-
/** @typedef DeleteCartRequest */
|
|
214
|
-
/** @typedef DeliveryCharges */
|
|
215
|
-
/** @typedef DiscountOffer */
|
|
216
|
-
/** @typedef DiscountRule */
|
|
217
|
-
/** @typedef DiscountRulesApp */
|
|
218
|
-
/** @typedef DisplayBreakup */
|
|
219
|
-
/** @typedef DisplayMeta */
|
|
220
|
-
/** @typedef DisplayMeta1 */
|
|
221
|
-
/** @typedef DisplayMetaDict */
|
|
222
|
-
/** @typedef Files */
|
|
223
|
-
/** @typedef FreeGiftItem */
|
|
224
|
-
/** @typedef GeoLocation */
|
|
225
|
-
/** @typedef GetCouponResponse */
|
|
226
|
-
/** @typedef GetShareCartLinkRequest */
|
|
227
|
-
/** @typedef GetShareCartLinkResponse */
|
|
228
|
-
/** @typedef Identifier */
|
|
229
|
-
/** @typedef ItemCriteria */
|
|
230
|
-
/** @typedef LoyaltyPoints */
|
|
231
|
-
/** @typedef MultiCartResponse */
|
|
232
|
-
/** @typedef MultiTenderPaymentMeta */
|
|
233
|
-
/** @typedef MultiTenderPaymentMethod */
|
|
234
|
-
/** @typedef OpenapiCartDetailsRequest */
|
|
235
|
-
/** @typedef OpenapiCartDetailsResponse */
|
|
236
|
-
/** @typedef OpenApiCartServiceabilityRequest */
|
|
237
|
-
/** @typedef OpenApiCartServiceabilityResponse */
|
|
238
|
-
/** @typedef OpenApiCheckoutResponse */
|
|
239
|
-
/** @typedef OpenApiErrorResponse */
|
|
240
|
-
/** @typedef OpenApiFiles */
|
|
241
|
-
/** @typedef OpenApiOrderItem */
|
|
242
|
-
/** @typedef OpenApiPlatformCheckoutReq */
|
|
243
|
-
/** @typedef OperationErrorResponse */
|
|
244
|
-
/** @typedef OverrideCartItem */
|
|
245
|
-
/** @typedef OverrideCartItemPromo */
|
|
246
|
-
/** @typedef OverrideCheckoutReq */
|
|
247
|
-
/** @typedef OverrideCheckoutResponse */
|
|
248
|
-
/** @typedef Ownership */
|
|
249
|
-
/** @typedef Ownership1 */
|
|
250
|
-
/** @typedef Ownership2 */
|
|
251
|
-
/** @typedef Page */
|
|
252
|
-
/** @typedef PageCoupon */
|
|
253
|
-
/** @typedef PaymentAllowValue */
|
|
254
|
-
/** @typedef PaymentAllowValue1 */
|
|
255
|
-
/** @typedef PaymentCouponValidate */
|
|
256
|
-
/** @typedef PaymentMeta */
|
|
257
|
-
/** @typedef PaymentMethod */
|
|
258
|
-
/** @typedef PaymentModes */
|
|
259
|
-
/** @typedef PaymentSelectionLock */
|
|
260
|
-
/** @typedef PickupStoreDetail */
|
|
261
|
-
/** @typedef PlatformAddCartRequest */
|
|
262
|
-
/** @typedef PlatformAddress */
|
|
263
|
-
/** @typedef PlatformCartCheckoutDetailRequest */
|
|
264
|
-
/** @typedef PlatformCartCheckoutDetailV2Request */
|
|
265
|
-
/** @typedef PlatformCartMetaRequest */
|
|
266
|
-
/** @typedef PlatformCartShipmentsResponse */
|
|
267
|
-
/** @typedef PlatformGetAddressesResponse */
|
|
268
|
-
/** @typedef PlatformSelectCartAddressRequest */
|
|
269
|
-
/** @typedef PlatformShipmentResponse */
|
|
270
|
-
/** @typedef PlatformUpdateCartRequest */
|
|
271
|
-
/** @typedef PostOrder */
|
|
272
|
-
/** @typedef PostOrder1 */
|
|
273
|
-
/** @typedef PriceAdjustment */
|
|
274
|
-
/** @typedef PriceAdjustmentAdd */
|
|
275
|
-
/** @typedef PriceAdjustmentResponse */
|
|
276
|
-
/** @typedef PriceAdjustmentUpdate */
|
|
277
|
-
/** @typedef PriceRange */
|
|
278
|
-
/** @typedef ProductAction */
|
|
279
|
-
/** @typedef ProductArticle */
|
|
280
|
-
/** @typedef ProductAvailability */
|
|
281
|
-
/** @typedef ProductAvailabilitySize */
|
|
282
|
-
/** @typedef ProductImage */
|
|
283
|
-
/** @typedef ProductPrice */
|
|
284
|
-
/** @typedef ProductPriceInfo */
|
|
285
|
-
/** @typedef PromiseFormatted */
|
|
286
|
-
/** @typedef PromiseTimestamp */
|
|
287
|
-
/** @typedef PromoMeta */
|
|
288
|
-
/** @typedef PromotionAction */
|
|
289
|
-
/** @typedef PromotionAdd */
|
|
290
|
-
/** @typedef PromotionAuthor */
|
|
291
|
-
/** @typedef PromotionDateMeta */
|
|
292
|
-
/** @typedef PromotionListItem */
|
|
293
|
-
/** @typedef PromotionPartialUpdate */
|
|
294
|
-
/** @typedef PromotionPaymentModes */
|
|
295
|
-
/** @typedef PromotionSchedule */
|
|
296
|
-
/** @typedef PromotionsResponse */
|
|
297
|
-
/** @typedef PromotionUpdate */
|
|
298
|
-
/** @typedef RawBreakup */
|
|
299
|
-
/** @typedef Restrictions */
|
|
300
|
-
/** @typedef Restrictions1 */
|
|
301
|
-
/** @typedef Rule */
|
|
302
|
-
/** @typedef RuleDefinition */
|
|
303
|
-
/** @typedef SaveAddressResponse */
|
|
304
|
-
/** @typedef SharedCart */
|
|
305
|
-
/** @typedef SharedCartDetails */
|
|
306
|
-
/** @typedef SharedCartResponse */
|
|
307
|
-
/** @typedef ShipmentArticle */
|
|
308
|
-
/** @typedef ShipmentPromise */
|
|
309
|
-
/** @typedef ShippingAddress */
|
|
310
|
-
/** @typedef StaffCheckout */
|
|
311
|
-
/** @typedef State */
|
|
312
|
-
/** @typedef StoreDetailsResponse */
|
|
313
|
-
/** @typedef StoreInfo */
|
|
314
|
-
/** @typedef SuccessMessage */
|
|
315
|
-
/** @typedef Tags */
|
|
316
|
-
/** @typedef UpdateAddressResponse */
|
|
317
|
-
/** @typedef UpdateCartDetailResponse */
|
|
318
|
-
/** @typedef UpdateCartPaymentRequest */
|
|
319
|
-
/** @typedef UpdateCartPaymentRequestV2 */
|
|
320
|
-
/** @typedef UpdateCartRequest */
|
|
321
|
-
/** @typedef UpdateCartShipmentItem */
|
|
322
|
-
/** @typedef UpdateCartShipmentRequest */
|
|
323
|
-
/** @typedef UpdateProductCart */
|
|
324
|
-
/** @typedef UpdateUserCartMapping */
|
|
325
|
-
/** @typedef UserCartMappingResponse */
|
|
326
|
-
/** @typedef UserInfo */
|
|
327
|
-
/** @typedef UserRegistered */
|
|
328
|
-
/** @typedef UsesRemaining */
|
|
329
|
-
/** @typedef UsesRemaining1 */
|
|
330
|
-
/** @typedef UsesRestriction */
|
|
331
|
-
/** @typedef UsesRestriction1 */
|
|
332
|
-
/** @typedef Validation */
|
|
333
|
-
/** @typedef Validity */
|
|
334
|
-
/** @typedef Visibility */
|
|
335
|
-
|
|
336
|
-
/** @typedef Action */
|
|
337
|
-
/** @typedef ActionPage */
|
|
338
|
-
/** @typedef AllowSingleRequest */
|
|
339
|
-
/** @typedef AllSizes */
|
|
340
|
-
/** @typedef AppCatalogConfiguration */
|
|
341
|
-
/** @typedef AppConfiguration */
|
|
342
|
-
/** @typedef AppConfigurationDetail */
|
|
343
|
-
/** @typedef AppConfigurationsSort */
|
|
344
|
-
/** @typedef ApplicationBrandJson */
|
|
345
|
-
/** @typedef ApplicationCategoryJson */
|
|
346
|
-
/** @typedef ApplicationDepartment */
|
|
347
|
-
/** @typedef ApplicationDepartmentJson */
|
|
348
|
-
/** @typedef ApplicationDepartmentListingResponse */
|
|
349
|
-
/** @typedef ApplicationItemMeta */
|
|
350
|
-
/** @typedef ApplicationItemMOQ */
|
|
351
|
-
/** @typedef ApplicationItemSEO */
|
|
352
|
-
/** @typedef ApplicationProductListingResponse */
|
|
353
|
-
/** @typedef ApplicationStoreJson */
|
|
354
|
-
/** @typedef ArticleAssignment */
|
|
355
|
-
/** @typedef ArticleAssignment1 */
|
|
356
|
-
/** @typedef ArticleQuery */
|
|
357
|
-
/** @typedef ArticleStoreResponse */
|
|
358
|
-
/** @typedef AssignStore */
|
|
359
|
-
/** @typedef AssignStoreArticle */
|
|
360
|
-
/** @typedef AttributeDetailsGroup */
|
|
361
|
-
/** @typedef AttributeMaster */
|
|
362
|
-
/** @typedef AttributeMasterDetails */
|
|
363
|
-
/** @typedef AttributeMasterFilter */
|
|
364
|
-
/** @typedef AttributeMasterMandatoryDetails */
|
|
365
|
-
/** @typedef AttributeMasterMeta */
|
|
366
|
-
/** @typedef AttributeMasterSerializer */
|
|
367
|
-
/** @typedef AttributeSchemaRange */
|
|
368
|
-
/** @typedef AutocompleteAction */
|
|
369
|
-
/** @typedef AutoCompleteMedia */
|
|
370
|
-
/** @typedef AutocompletePageAction */
|
|
371
|
-
/** @typedef AutocompleteResult */
|
|
372
|
-
/** @typedef BannerImage */
|
|
373
|
-
/** @typedef Brand */
|
|
374
|
-
/** @typedef BrandItem */
|
|
375
|
-
/** @typedef BrandListingResponse */
|
|
376
|
-
/** @typedef BrandMeta */
|
|
377
|
-
/** @typedef BrandMeta1 */
|
|
378
|
-
/** @typedef BulkAssetResponse */
|
|
379
|
-
/** @typedef BulkHsnResponse */
|
|
380
|
-
/** @typedef BulkHsnUpsert */
|
|
381
|
-
/** @typedef BulkInventoryGet */
|
|
382
|
-
/** @typedef BulkInventoryGetItems */
|
|
383
|
-
/** @typedef BulkJob */
|
|
384
|
-
/** @typedef BulkProductRequest */
|
|
385
|
-
/** @typedef BulkResponse */
|
|
386
|
-
/** @typedef CatalogInsightBrand */
|
|
387
|
-
/** @typedef CatalogInsightItem */
|
|
388
|
-
/** @typedef CatalogInsightResponse */
|
|
389
|
-
/** @typedef CategoriesResponse */
|
|
390
|
-
/** @typedef Category */
|
|
391
|
-
/** @typedef CategoryCreateResponse */
|
|
392
|
-
/** @typedef CategoryItems */
|
|
393
|
-
/** @typedef CategoryListingResponse */
|
|
394
|
-
/** @typedef CategoryMapping */
|
|
395
|
-
/** @typedef CategoryMappingValues */
|
|
396
|
-
/** @typedef CategoryRequestBody */
|
|
397
|
-
/** @typedef CategoryResponse */
|
|
398
|
-
/** @typedef CategoryUpdateResponse */
|
|
399
|
-
/** @typedef Child */
|
|
400
|
-
/** @typedef CollectionBadge */
|
|
401
|
-
/** @typedef CollectionBanner */
|
|
402
|
-
/** @typedef CollectionCreateResponse */
|
|
403
|
-
/** @typedef CollectionDetailResponse */
|
|
404
|
-
/** @typedef CollectionImage */
|
|
405
|
-
/** @typedef CollectionItem */
|
|
406
|
-
/** @typedef CollectionItemUpdate */
|
|
407
|
-
/** @typedef CollectionListingFilter */
|
|
408
|
-
/** @typedef CollectionListingFilterTag */
|
|
409
|
-
/** @typedef CollectionListingFilterType */
|
|
410
|
-
/** @typedef CollectionQuery */
|
|
411
|
-
/** @typedef CollectionSchedule */
|
|
412
|
-
/** @typedef CompanyBrandDetail */
|
|
413
|
-
/** @typedef CompanyMeta */
|
|
414
|
-
/** @typedef CompanyMeta1 */
|
|
415
|
-
/** @typedef CompanyOptIn */
|
|
416
|
-
/** @typedef ConfigErrorResponse */
|
|
417
|
-
/** @typedef ConfigSuccessResponse */
|
|
418
|
-
/** @typedef ConfigurationBucketPoints */
|
|
419
|
-
/** @typedef ConfigurationListing */
|
|
420
|
-
/** @typedef ConfigurationListingFilter */
|
|
421
|
-
/** @typedef ConfigurationListingFilterConfig */
|
|
422
|
-
/** @typedef ConfigurationListingFilterValue */
|
|
423
|
-
/** @typedef ConfigurationListingSort */
|
|
424
|
-
/** @typedef ConfigurationListingSortConfig */
|
|
425
|
-
/** @typedef ConfigurationProduct */
|
|
426
|
-
/** @typedef ConfigurationProductConfig */
|
|
427
|
-
/** @typedef ConfigurationProductSimilar */
|
|
428
|
-
/** @typedef ConfigurationProductVariant */
|
|
429
|
-
/** @typedef ConfigurationProductVariantConfig */
|
|
430
|
-
/** @typedef CreateAutocompleteKeyword */
|
|
431
|
-
/** @typedef CreateAutocompleteWordsResponse */
|
|
432
|
-
/** @typedef CreateCollection */
|
|
433
|
-
/** @typedef CreateSearchKeyword */
|
|
434
|
-
/** @typedef CrossSellingData */
|
|
435
|
-
/** @typedef CrossSellingResponse */
|
|
436
|
-
/** @typedef CustomOrder */
|
|
437
|
-
/** @typedef DateMeta */
|
|
438
|
-
/** @typedef DefaultKeyRequest */
|
|
439
|
-
/** @typedef DeleteResponse */
|
|
440
|
-
/** @typedef Department */
|
|
441
|
-
/** @typedef DepartmentCategoryTree */
|
|
442
|
-
/** @typedef DepartmentCreateErrorResponse */
|
|
443
|
-
/** @typedef DepartmentCreateResponse */
|
|
444
|
-
/** @typedef DepartmentCreateUpdate */
|
|
445
|
-
/** @typedef DepartmentErrorResponse */
|
|
446
|
-
/** @typedef DepartmentIdentifier */
|
|
447
|
-
/** @typedef DepartmentModel */
|
|
448
|
-
/** @typedef DepartmentResponse */
|
|
449
|
-
/** @typedef DepartmentsResponse */
|
|
450
|
-
/** @typedef DimensionResponse */
|
|
451
|
-
/** @typedef DimensionResponse1 */
|
|
452
|
-
/** @typedef Document */
|
|
453
|
-
/** @typedef EntityConfiguration */
|
|
454
|
-
/** @typedef ErrorResponse */
|
|
455
|
-
/** @typedef FilerList */
|
|
456
|
-
/** @typedef GenderDetail */
|
|
457
|
-
/** @typedef GetAddressSerializer */
|
|
458
|
-
/** @typedef GetAllSizes */
|
|
459
|
-
/** @typedef GetAppCatalogConfiguration */
|
|
460
|
-
/** @typedef GetAppCatalogEntityConfiguration */
|
|
461
|
-
/** @typedef GetAutocompleteWordsData */
|
|
462
|
-
/** @typedef GetAutocompleteWordsResponse */
|
|
463
|
-
/** @typedef GetCatalogConfigurationDetailsProduct */
|
|
464
|
-
/** @typedef GetCatalogConfigurationDetailsSchemaListing */
|
|
465
|
-
/** @typedef GetCatalogConfigurationMetaData */
|
|
466
|
-
/** @typedef GetCollectionDetailNest */
|
|
467
|
-
/** @typedef GetCollectionItemsResponse */
|
|
468
|
-
/** @typedef GetCollectionListingResponse */
|
|
469
|
-
/** @typedef GetCollectionQueryOptionResponse */
|
|
470
|
-
/** @typedef GetCompanySerializer */
|
|
471
|
-
/** @typedef GetConfigMetadataResponse */
|
|
472
|
-
/** @typedef GetConfigResponse */
|
|
473
|
-
/** @typedef GetDepartment */
|
|
474
|
-
/** @typedef GetInventories */
|
|
475
|
-
/** @typedef GetInventoriesResponse */
|
|
476
|
-
/** @typedef GetLocationSerializer */
|
|
477
|
-
/** @typedef GetOptInPlatform */
|
|
478
|
-
/** @typedef GetProductBundleCreateResponse */
|
|
479
|
-
/** @typedef GetProductBundleListingResponse */
|
|
480
|
-
/** @typedef GetProductBundleResponse */
|
|
481
|
-
/** @typedef GetProducts */
|
|
482
|
-
/** @typedef GetSearchWordsData */
|
|
483
|
-
/** @typedef GetSearchWordsDetailResponse */
|
|
484
|
-
/** @typedef GetSearchWordsResponse */
|
|
485
|
-
/** @typedef GlobalValidation */
|
|
486
|
-
/** @typedef GTIN */
|
|
487
|
-
/** @typedef Guide */
|
|
488
|
-
/** @typedef Hierarchy */
|
|
489
|
-
/** @typedef HsnCode */
|
|
490
|
-
/** @typedef HsnCodesListingResponseSchemaV2 */
|
|
491
|
-
/** @typedef HsnCodesObject */
|
|
492
|
-
/** @typedef HSNCodesResponse */
|
|
493
|
-
/** @typedef HSNData */
|
|
494
|
-
/** @typedef HSNDataInsertV2 */
|
|
495
|
-
/** @typedef HsnUpsert */
|
|
496
|
-
/** @typedef Image */
|
|
497
|
-
/** @typedef ImageUrls */
|
|
498
|
-
/** @typedef InventoryBulkRequest */
|
|
499
|
-
/** @typedef InventoryConfig */
|
|
500
|
-
/** @typedef InventoryCreateRequest */
|
|
501
|
-
/** @typedef InventoryExportAdvanceOption */
|
|
502
|
-
/** @typedef InventoryExportFilter */
|
|
503
|
-
/** @typedef InventoryExportJob */
|
|
504
|
-
/** @typedef InventoryExportJobListResponse */
|
|
505
|
-
/** @typedef InventoryExportQuantityFilter */
|
|
506
|
-
/** @typedef InventoryExportRequest */
|
|
507
|
-
/** @typedef InventoryExportResponse */
|
|
508
|
-
/** @typedef InventoryFailedReason */
|
|
509
|
-
/** @typedef InventoryJobDetailResponse */
|
|
510
|
-
/** @typedef InventoryJobFilters */
|
|
511
|
-
/** @typedef InventoryJobPayload */
|
|
512
|
-
/** @typedef InventoryPage */
|
|
513
|
-
/** @typedef InventoryPayload */
|
|
514
|
-
/** @typedef InventoryRequest */
|
|
515
|
-
/** @typedef InventoryRequestSchemaV2 */
|
|
516
|
-
/** @typedef InventoryResponse */
|
|
517
|
-
/** @typedef InventoryResponseItem */
|
|
518
|
-
/** @typedef InventoryResponsePaginated */
|
|
519
|
-
/** @typedef InventorySellerIdentifierResponsePaginated */
|
|
520
|
-
/** @typedef InventorySellerResponse */
|
|
521
|
-
/** @typedef InventorySet */
|
|
522
|
-
/** @typedef InventoryStockResponse */
|
|
523
|
-
/** @typedef InventoryUpdateResponse */
|
|
524
|
-
/** @typedef InventoryValidationResponse */
|
|
525
|
-
/** @typedef InvoiceCredSerializer */
|
|
526
|
-
/** @typedef InvoiceDetailsSerializer */
|
|
527
|
-
/** @typedef InvSize */
|
|
528
|
-
/** @typedef ItemQuery */
|
|
529
|
-
/** @typedef Items */
|
|
530
|
-
/** @typedef LimitedProductData */
|
|
531
|
-
/** @typedef ListSizeGuide */
|
|
532
|
-
/** @typedef LocationDayWiseSerializer */
|
|
533
|
-
/** @typedef LocationIntegrationType */
|
|
534
|
-
/** @typedef LocationListSerializer */
|
|
535
|
-
/** @typedef LocationManagerSerializer */
|
|
536
|
-
/** @typedef LocationTimingSerializer */
|
|
537
|
-
/** @typedef Logo */
|
|
538
|
-
/** @typedef ManufacturerResponse */
|
|
539
|
-
/** @typedef ManufacturerResponse1 */
|
|
540
|
-
/** @typedef Media */
|
|
541
|
-
/** @typedef Media1 */
|
|
542
|
-
/** @typedef Media2 */
|
|
543
|
-
/** @typedef Meta */
|
|
544
|
-
/** @typedef MetaDataListingFilterMetaResponse */
|
|
545
|
-
/** @typedef MetaDataListingFilterResponse */
|
|
546
|
-
/** @typedef MetaDataListingResponse */
|
|
547
|
-
/** @typedef MetaDataListingSortMetaResponse */
|
|
548
|
-
/** @typedef MetaDataListingSortResponse */
|
|
549
|
-
/** @typedef MetaFields */
|
|
550
|
-
/** @typedef MOQData */
|
|
551
|
-
/** @typedef NetQuantity */
|
|
552
|
-
/** @typedef NetQuantityResponse */
|
|
553
|
-
/** @typedef NextSchedule */
|
|
554
|
-
/** @typedef OptinCompanyBrandDetailsView */
|
|
555
|
-
/** @typedef OptinCompanyDetail */
|
|
556
|
-
/** @typedef OptinCompanyMetrics */
|
|
557
|
-
/** @typedef OptInPostRequest */
|
|
558
|
-
/** @typedef OptinStoreDetails */
|
|
559
|
-
/** @typedef OwnerAppItemResponse */
|
|
560
|
-
/** @typedef Page */
|
|
561
|
-
/** @typedef PageResponse */
|
|
562
|
-
/** @typedef PageResponseType */
|
|
563
|
-
/** @typedef Price */
|
|
564
|
-
/** @typedef Price1 */
|
|
565
|
-
/** @typedef PriceArticle */
|
|
566
|
-
/** @typedef PriceMeta */
|
|
567
|
-
/** @typedef ProdcutTemplateCategoriesResponse */
|
|
568
|
-
/** @typedef Product */
|
|
569
|
-
/** @typedef ProductAttributesResponse */
|
|
570
|
-
/** @typedef ProductBrand */
|
|
571
|
-
/** @typedef ProductBulkAssets */
|
|
572
|
-
/** @typedef ProductBulkRequest */
|
|
573
|
-
/** @typedef ProductBulkRequestList */
|
|
574
|
-
/** @typedef ProductBundleItem */
|
|
575
|
-
/** @typedef ProductBundleRequest */
|
|
576
|
-
/** @typedef ProductBundleUpdateRequest */
|
|
577
|
-
/** @typedef ProductConfigurationDownloads */
|
|
578
|
-
/** @typedef ProductCreateUpdateSchemaV2 */
|
|
579
|
-
/** @typedef ProductDetail */
|
|
580
|
-
/** @typedef ProductDetailAttribute */
|
|
581
|
-
/** @typedef ProductDetailGroupedAttribute */
|
|
582
|
-
/** @typedef ProductDownloadsResponse */
|
|
583
|
-
/** @typedef ProductFilters */
|
|
584
|
-
/** @typedef ProductFiltersKey */
|
|
585
|
-
/** @typedef ProductFiltersValue */
|
|
586
|
-
/** @typedef ProductListingDetail */
|
|
587
|
-
/** @typedef ProductListingPrice */
|
|
588
|
-
/** @typedef ProductListingResponse */
|
|
589
|
-
/** @typedef ProductListingResponseV2 */
|
|
590
|
-
/** @typedef ProductPublish */
|
|
591
|
-
/** @typedef ProductPublish1 */
|
|
592
|
-
/** @typedef ProductPublished */
|
|
593
|
-
/** @typedef ProductReturnConfigSerializer */
|
|
594
|
-
/** @typedef ProductSchemaV2 */
|
|
595
|
-
/** @typedef ProductSize */
|
|
596
|
-
/** @typedef ProductSizeDeleteDataResponse */
|
|
597
|
-
/** @typedef ProductSizeDeleteResponse */
|
|
598
|
-
/** @typedef ProductSortOn */
|
|
599
|
-
/** @typedef ProductTagsViewResponse */
|
|
600
|
-
/** @typedef ProductTemplate */
|
|
601
|
-
/** @typedef ProductTemplateDownloadsExport */
|
|
602
|
-
/** @typedef ProductTemplateExportFilterRequest */
|
|
603
|
-
/** @typedef ProductTemplateExportResponse */
|
|
604
|
-
/** @typedef ProductVariants */
|
|
605
|
-
/** @typedef ProductVariantsResponse */
|
|
606
|
-
/** @typedef Properties */
|
|
607
|
-
/** @typedef PTErrorResponse */
|
|
608
|
-
/** @typedef Quantities */
|
|
609
|
-
/** @typedef QuantitiesArticle */
|
|
610
|
-
/** @typedef Quantity */
|
|
611
|
-
/** @typedef QuantityBase */
|
|
612
|
-
/** @typedef ReturnConfig */
|
|
613
|
-
/** @typedef ReturnConfig1 */
|
|
614
|
-
/** @typedef ReturnConfig2 */
|
|
615
|
-
/** @typedef ReturnConfigResponse */
|
|
616
|
-
/** @typedef SearchKeywordResult */
|
|
617
|
-
/** @typedef SecondLevelChild */
|
|
618
|
-
/** @typedef SellerPhoneNumber */
|
|
619
|
-
/** @typedef SEOData */
|
|
620
|
-
/** @typedef SeoDetail */
|
|
621
|
-
/** @typedef SetSize */
|
|
622
|
-
/** @typedef SingleCategoryResponse */
|
|
623
|
-
/** @typedef SingleProductResponse */
|
|
624
|
-
/** @typedef Size */
|
|
625
|
-
/** @typedef SizeDistribution */
|
|
626
|
-
/** @typedef SizeGuideResponse */
|
|
627
|
-
/** @typedef StoreAssignResponse */
|
|
628
|
-
/** @typedef StoreDetail */
|
|
629
|
-
/** @typedef StoreMeta */
|
|
630
|
-
/** @typedef SuccessResponse */
|
|
631
|
-
/** @typedef SuccessResponse1 */
|
|
632
|
-
/** @typedef TaxIdentifier */
|
|
633
|
-
/** @typedef TaxSlab */
|
|
634
|
-
/** @typedef TeaserTag */
|
|
635
|
-
/** @typedef TemplateDetails */
|
|
636
|
-
/** @typedef TemplatesResponse */
|
|
637
|
-
/** @typedef TemplatesValidationResponse */
|
|
638
|
-
/** @typedef TemplateValidationData */
|
|
639
|
-
/** @typedef ThirdLevelChild */
|
|
640
|
-
/** @typedef Trader */
|
|
641
|
-
/** @typedef Trader1 */
|
|
642
|
-
/** @typedef Trader2 */
|
|
643
|
-
/** @typedef UpdateCollection */
|
|
644
|
-
/** @typedef UpdatedResponse */
|
|
645
|
-
/** @typedef UserCommon */
|
|
646
|
-
/** @typedef UserDetail */
|
|
647
|
-
/** @typedef UserDetail1 */
|
|
648
|
-
/** @typedef UserInfo */
|
|
649
|
-
/** @typedef UserInfo1 */
|
|
650
|
-
/** @typedef UserSerializer */
|
|
651
|
-
/** @typedef UserSerializer1 */
|
|
652
|
-
/** @typedef UserSerializer2 */
|
|
653
|
-
/** @typedef ValidateIdentifier */
|
|
654
|
-
/** @typedef ValidateProduct */
|
|
655
|
-
/** @typedef ValidateSizeGuide */
|
|
656
|
-
/** @typedef VerifiedBy */
|
|
657
|
-
/** @typedef WeightResponse */
|
|
658
|
-
/** @typedef WeightResponse1 */
|
|
659
|
-
|
|
660
|
-
/** @typedef Application */
|
|
661
|
-
/** @typedef ApplicationAuth */
|
|
662
|
-
/** @typedef ApplicationCors */
|
|
663
|
-
/** @typedef ApplicationMeta */
|
|
664
|
-
/** @typedef ApplicationRedirections */
|
|
665
|
-
/** @typedef ApplicationResponse */
|
|
666
|
-
/** @typedef ApplicationWebsite */
|
|
667
|
-
/** @typedef BadRequest */
|
|
668
|
-
/** @typedef Currency */
|
|
669
|
-
/** @typedef Domain */
|
|
670
|
-
/** @typedef LocationCountry */
|
|
671
|
-
/** @typedef LocationDefaultCurrency */
|
|
672
|
-
/** @typedef LocationDefaultLanguage */
|
|
673
|
-
/** @typedef Locations */
|
|
674
|
-
/** @typedef NotFound */
|
|
675
|
-
/** @typedef Page */
|
|
676
|
-
/** @typedef SecureUrl */
|
|
677
|
-
|
|
678
|
-
/** @typedef Audience */
|
|
679
|
-
/** @typedef AudienceReq */
|
|
680
|
-
/** @typedef Audiences */
|
|
681
|
-
/** @typedef BadRequestSchema */
|
|
682
|
-
/** @typedef BigqueryHeadersReq */
|
|
683
|
-
/** @typedef BigqueryHeadersRes */
|
|
684
|
-
/** @typedef BigqueryHeadersResHeaders */
|
|
685
|
-
/** @typedef Campaign */
|
|
686
|
-
/** @typedef CampaignEmail */
|
|
687
|
-
/** @typedef CampaignEmailTemplate */
|
|
688
|
-
/** @typedef CampaignReq */
|
|
689
|
-
/** @typedef Campaigns */
|
|
690
|
-
/** @typedef CampignEmailProvider */
|
|
691
|
-
/** @typedef EmailProvider */
|
|
692
|
-
/** @typedef EmailProviderReq */
|
|
693
|
-
/** @typedef EmailProviderReqFrom */
|
|
694
|
-
/** @typedef EmailProviders */
|
|
695
|
-
/** @typedef EmailTemplate */
|
|
696
|
-
/** @typedef EmailTemplateDeleteFailureRes */
|
|
697
|
-
/** @typedef EmailTemplateDeleteSuccessRes */
|
|
698
|
-
/** @typedef EmailTemplateHeaders */
|
|
699
|
-
/** @typedef EmailTemplateKeys */
|
|
700
|
-
/** @typedef EmailTemplateReq */
|
|
701
|
-
/** @typedef EmailTemplateRes */
|
|
702
|
-
/** @typedef EmailTemplates */
|
|
703
|
-
/** @typedef EngineRequest */
|
|
704
|
-
/** @typedef EngineResponse */
|
|
705
|
-
/** @typedef EventSubscription */
|
|
706
|
-
/** @typedef EventSubscriptions */
|
|
707
|
-
/** @typedef EventSubscriptionTemplate */
|
|
708
|
-
/** @typedef EventSubscriptionTemplateEmail */
|
|
709
|
-
/** @typedef EventSubscriptionTemplateSms */
|
|
710
|
-
/** @typedef GetNRecordsCsvReq */
|
|
711
|
-
/** @typedef GetNRecordsCsvRes */
|
|
712
|
-
/** @typedef GetNRecordsCsvResItems */
|
|
713
|
-
/** @typedef GetStats */
|
|
714
|
-
/** @typedef Job */
|
|
715
|
-
/** @typedef JobLog */
|
|
716
|
-
/** @typedef JobLogs */
|
|
717
|
-
/** @typedef Jobs */
|
|
718
|
-
/** @typedef Log */
|
|
719
|
-
/** @typedef LogEmail */
|
|
720
|
-
/** @typedef LogMeta */
|
|
721
|
-
/** @typedef LogPushnotification */
|
|
722
|
-
/** @typedef Logs */
|
|
723
|
-
/** @typedef MetaStructure */
|
|
724
|
-
/** @typedef NotFound */
|
|
725
|
-
/** @typedef Notification */
|
|
726
|
-
/** @typedef Page */
|
|
727
|
-
/** @typedef PayloadEmailProviderStructure */
|
|
728
|
-
/** @typedef PayloadEmailStructure */
|
|
729
|
-
/** @typedef PayloadEmailTemplateStructure */
|
|
730
|
-
/** @typedef PayloadSmsProviderStructure */
|
|
731
|
-
/** @typedef PayloadSmsStructure */
|
|
732
|
-
/** @typedef PayloadSmsTemplateStructure */
|
|
733
|
-
/** @typedef PayloadStructure */
|
|
734
|
-
/** @typedef PushtokenReq */
|
|
735
|
-
/** @typedef PushtokenRes */
|
|
736
|
-
/** @typedef RecipientHeaders */
|
|
737
|
-
/** @typedef SendOtpCommsReq */
|
|
738
|
-
/** @typedef SendOtpCommsReqData */
|
|
739
|
-
/** @typedef SendOtpCommsReqEmail */
|
|
740
|
-
/** @typedef SendOtpCommsReqSms */
|
|
741
|
-
/** @typedef SendOtpCommsRes */
|
|
742
|
-
/** @typedef SendOtpCommsResEmail */
|
|
743
|
-
/** @typedef SendOtpCommsResSms */
|
|
744
|
-
/** @typedef SendOtpEmailCommsProvider */
|
|
745
|
-
/** @typedef SendOtpEmailCommsTemplate */
|
|
746
|
-
/** @typedef SendOtpSmsCommsProvider */
|
|
747
|
-
/** @typedef SendOtpSmsCommsTemplate */
|
|
748
|
-
/** @typedef SmsProvider */
|
|
749
|
-
/** @typedef SmsProviderReq */
|
|
750
|
-
/** @typedef SmsProviders */
|
|
751
|
-
/** @typedef SmsTemplate */
|
|
752
|
-
/** @typedef SmsTemplateDeleteFailureRes */
|
|
753
|
-
/** @typedef SmsTemplateDeleteSuccessRes */
|
|
754
|
-
/** @typedef SmsTemplateMessage */
|
|
755
|
-
/** @typedef SmsTemplateReq */
|
|
756
|
-
/** @typedef SmsTemplateRes */
|
|
757
|
-
/** @typedef SmsTemplates */
|
|
758
|
-
/** @typedef Stats */
|
|
759
|
-
/** @typedef StatsImported */
|
|
760
|
-
/** @typedef StatsProcessed */
|
|
761
|
-
/** @typedef StatsProcessedEmail */
|
|
762
|
-
/** @typedef StatsProcessedSms */
|
|
763
|
-
/** @typedef SystemEmailTemplate */
|
|
764
|
-
/** @typedef SystemEmailTemplates */
|
|
765
|
-
/** @typedef SystemNotification */
|
|
766
|
-
/** @typedef SystemNotifications */
|
|
767
|
-
/** @typedef SystemNotificationSettings */
|
|
768
|
-
/** @typedef SystemNotificationsPage */
|
|
769
|
-
/** @typedef SystemNotificationUser */
|
|
770
|
-
/** @typedef SystemSmsTemplate */
|
|
771
|
-
/** @typedef SystemSmsTemplates */
|
|
772
|
-
/** @typedef TemplateAndType */
|
|
773
|
-
/** @typedef TriggerJobRequest */
|
|
774
|
-
/** @typedef TriggerJobResponse */
|
|
775
|
-
/** @typedef VerifyOtpCommsErrorRes */
|
|
776
|
-
/** @typedef VerifyOtpCommsReq */
|
|
777
|
-
/** @typedef VerifyOtpCommsSuccessRes */
|
|
778
|
-
|
|
779
|
-
/** @typedef AddressSerializer */
|
|
780
|
-
/** @typedef BrandBannerSerializer */
|
|
781
|
-
/** @typedef BulkLocationSerializer */
|
|
782
|
-
/** @typedef BusinessCountryInfo */
|
|
783
|
-
/** @typedef BusinessDetails */
|
|
784
|
-
/** @typedef CompanyBrandListSerializer */
|
|
785
|
-
/** @typedef CompanyBrandPostRequestSerializer */
|
|
786
|
-
/** @typedef CompanyBrandSerializer */
|
|
787
|
-
/** @typedef CompanyDetails */
|
|
788
|
-
/** @typedef CompanySerializer */
|
|
789
|
-
/** @typedef CompanySocialAccounts */
|
|
790
|
-
/** @typedef CompanyTaxesSerializer */
|
|
791
|
-
/** @typedef CompanyTaxesSerializer1 */
|
|
792
|
-
/** @typedef ContactDetails */
|
|
793
|
-
/** @typedef CreateUpdateAddressSerializer */
|
|
794
|
-
/** @typedef CreateUpdateBrandRequestSerializer */
|
|
795
|
-
/** @typedef Document */
|
|
796
|
-
/** @typedef DocumentsObj */
|
|
797
|
-
/** @typedef ErrorResponse */
|
|
798
|
-
/** @typedef GetAddressSerializer */
|
|
799
|
-
/** @typedef GetBrandResponseSerializer */
|
|
800
|
-
/** @typedef GetCompanyProfileSerializerResponse */
|
|
801
|
-
/** @typedef GetCompanySerializer */
|
|
802
|
-
/** @typedef GetLocationSerializer */
|
|
803
|
-
/** @typedef HolidayDateSerializer */
|
|
804
|
-
/** @typedef HolidaySchemaSerializer */
|
|
805
|
-
/** @typedef InvoiceCredSerializer */
|
|
806
|
-
/** @typedef InvoiceDetailsSerializer */
|
|
807
|
-
/** @typedef LocationDayWiseSerializer */
|
|
808
|
-
/** @typedef LocationListSerializer */
|
|
809
|
-
/** @typedef LocationManagerSerializer */
|
|
810
|
-
/** @typedef LocationSerializer */
|
|
811
|
-
/** @typedef LocationTimingSerializer */
|
|
812
|
-
/** @typedef MetricsSerializer */
|
|
813
|
-
/** @typedef Page */
|
|
814
|
-
/** @typedef ProductReturnConfigSerializer */
|
|
815
|
-
/** @typedef ProfileSuccessResponse */
|
|
816
|
-
/** @typedef SellerPhoneNumber */
|
|
817
|
-
/** @typedef UpdateCompany */
|
|
818
|
-
/** @typedef UserSerializer */
|
|
819
|
-
/** @typedef Website */
|
|
820
|
-
|
|
821
|
-
/** @typedef Android */
|
|
822
|
-
/** @typedef App */
|
|
823
|
-
/** @typedef AppCartConfig */
|
|
824
|
-
/** @typedef AppCurrencyResponse */
|
|
825
|
-
/** @typedef AppDomain */
|
|
826
|
-
/** @typedef AppFeature */
|
|
827
|
-
/** @typedef AppFeatureRequest */
|
|
828
|
-
/** @typedef AppFeatureResponse */
|
|
829
|
-
/** @typedef AppInventory */
|
|
830
|
-
/** @typedef AppInventoryCompanies */
|
|
831
|
-
/** @typedef AppInventoryConfig */
|
|
832
|
-
/** @typedef AppInventoryPartialUpdate */
|
|
833
|
-
/** @typedef AppInventoryStores */
|
|
834
|
-
/** @typedef Application */
|
|
835
|
-
/** @typedef ApplicationAuth */
|
|
836
|
-
/** @typedef ApplicationCors */
|
|
837
|
-
/** @typedef ApplicationDetail */
|
|
838
|
-
/** @typedef ApplicationInformation */
|
|
839
|
-
/** @typedef ApplicationInventory */
|
|
840
|
-
/** @typedef ApplicationMeta */
|
|
841
|
-
/** @typedef ApplicationRedirections */
|
|
842
|
-
/** @typedef ApplicationsResponse */
|
|
843
|
-
/** @typedef ApplicationWebsite */
|
|
844
|
-
/** @typedef AppLogisticsConfig */
|
|
845
|
-
/** @typedef AppOrderConfig */
|
|
846
|
-
/** @typedef AppPaymentConfig */
|
|
847
|
-
/** @typedef AppStoreRules */
|
|
848
|
-
/** @typedef AppSupportedCurrency */
|
|
849
|
-
/** @typedef ArticleAssignmentConfig */
|
|
850
|
-
/** @typedef ArticleAssignmentRule */
|
|
851
|
-
/** @typedef ArticleAssignmentRules */
|
|
852
|
-
/** @typedef AuthenticationConfig */
|
|
853
|
-
/** @typedef BlogLink */
|
|
854
|
-
/** @typedef BrandCompanyInfo */
|
|
855
|
-
/** @typedef BrandsByCompanyResponse */
|
|
856
|
-
/** @typedef BrandStoreInfo */
|
|
857
|
-
/** @typedef BuildVersion */
|
|
858
|
-
/** @typedef BuildVersionHistory */
|
|
859
|
-
/** @typedef BusinessHighlights */
|
|
860
|
-
/** @typedef CallbackUrl */
|
|
861
|
-
/** @typedef CartFeature */
|
|
862
|
-
/** @typedef Charges */
|
|
863
|
-
/** @typedef CommonFeature */
|
|
864
|
-
/** @typedef CommsConfig */
|
|
865
|
-
/** @typedef CommunicationConfig */
|
|
866
|
-
/** @typedef CommunicationOptinDialogFeature */
|
|
867
|
-
/** @typedef CompaniesResponse */
|
|
868
|
-
/** @typedef CompanyAboutAddress */
|
|
869
|
-
/** @typedef CompanyBrandInfo */
|
|
870
|
-
/** @typedef CompanyByBrandsRequest */
|
|
871
|
-
/** @typedef CompanyByBrandsResponse */
|
|
872
|
-
/** @typedef CompanyValidator */
|
|
873
|
-
/** @typedef CompareProductsFeature */
|
|
874
|
-
/** @typedef CreateApplicationRequest */
|
|
875
|
-
/** @typedef CreateAppResponse */
|
|
876
|
-
/** @typedef Credentials */
|
|
877
|
-
/** @typedef Credit */
|
|
878
|
-
/** @typedef CurrenciesResponse */
|
|
879
|
-
/** @typedef Currency */
|
|
880
|
-
/** @typedef CurrencyConfig */
|
|
881
|
-
/** @typedef CurrencyFeature */
|
|
882
|
-
/** @typedef Debit */
|
|
883
|
-
/** @typedef DefaultCurrency */
|
|
884
|
-
/** @typedef DeliveryCharges */
|
|
885
|
-
/** @typedef DeploymentMeta */
|
|
886
|
-
/** @typedef DeploymentStoreSelectionFeature */
|
|
887
|
-
/** @typedef Domain */
|
|
888
|
-
/** @typedef DomainAdd */
|
|
889
|
-
/** @typedef DomainAddRequest */
|
|
890
|
-
/** @typedef DomainsResponse */
|
|
891
|
-
/** @typedef DomainStatus */
|
|
892
|
-
/** @typedef DomainStatusRequest */
|
|
893
|
-
/** @typedef DomainStatusResponse */
|
|
894
|
-
/** @typedef DomainSuggestion */
|
|
895
|
-
/** @typedef DomainSuggestionsRequest */
|
|
896
|
-
/** @typedef DomainSuggestionsResponse */
|
|
897
|
-
/** @typedef FacebookLink */
|
|
898
|
-
/** @typedef FeedbackFeature */
|
|
899
|
-
/** @typedef FilterOrderingStoreRequest */
|
|
900
|
-
/** @typedef Firebase */
|
|
901
|
-
/** @typedef Freshchat */
|
|
902
|
-
/** @typedef FreshchatCredentials */
|
|
903
|
-
/** @typedef FyndRewards */
|
|
904
|
-
/** @typedef FyndRewardsCredentials */
|
|
905
|
-
/** @typedef GetIntegrationsOptInsResponse */
|
|
906
|
-
/** @typedef GoogleMap */
|
|
907
|
-
/** @typedef GoogleMapCredentials */
|
|
908
|
-
/** @typedef GooglePlusLink */
|
|
909
|
-
/** @typedef Gtm */
|
|
910
|
-
/** @typedef GtmCredentials */
|
|
911
|
-
/** @typedef HomePageFeature */
|
|
912
|
-
/** @typedef InformationAddress */
|
|
913
|
-
/** @typedef InformationPhone */
|
|
914
|
-
/** @typedef InformationSupport */
|
|
915
|
-
/** @typedef InstagramLink */
|
|
916
|
-
/** @typedef Integration */
|
|
917
|
-
/** @typedef IntegrationConfigResponse */
|
|
918
|
-
/** @typedef IntegrationLevel */
|
|
919
|
-
/** @typedef IntegrationMeta */
|
|
920
|
-
/** @typedef IntegrationOptIn */
|
|
921
|
-
/** @typedef InvalidPayloadRequest */
|
|
922
|
-
/** @typedef InventoryArticleAssignment */
|
|
923
|
-
/** @typedef InventoryBrand */
|
|
924
|
-
/** @typedef InventoryBrandRule */
|
|
925
|
-
/** @typedef InventoryCategory */
|
|
926
|
-
/** @typedef InventoryDiscount */
|
|
927
|
-
/** @typedef InventoryPaymentConfig */
|
|
928
|
-
/** @typedef InventoryPrice */
|
|
929
|
-
/** @typedef InventoryStore */
|
|
930
|
-
/** @typedef InventoryStoreRule */
|
|
931
|
-
/** @typedef InventoryValidator */
|
|
932
|
-
/** @typedef Ios */
|
|
933
|
-
/** @typedef JsonSchema */
|
|
934
|
-
/** @typedef LandingImage */
|
|
935
|
-
/** @typedef LandingPageFeature */
|
|
936
|
-
/** @typedef LastPatch */
|
|
937
|
-
/** @typedef LaunchPage */
|
|
938
|
-
/** @typedef LinkedInLink */
|
|
939
|
-
/** @typedef Links */
|
|
940
|
-
/** @typedef ListingPriceFeature */
|
|
941
|
-
/** @typedef LoyaltyPointsConfig */
|
|
942
|
-
/** @typedef Methods */
|
|
943
|
-
/** @typedef MobileAppConfigRequest */
|
|
944
|
-
/** @typedef MobileAppConfiguration */
|
|
945
|
-
/** @typedef Moengage */
|
|
946
|
-
/** @typedef MoengageCredentials */
|
|
947
|
-
/** @typedef NotFound */
|
|
948
|
-
/** @typedef OptedApplicationResponse */
|
|
949
|
-
/** @typedef OptedCompany */
|
|
950
|
-
/** @typedef OptedInventory */
|
|
951
|
-
/** @typedef OptedStore */
|
|
952
|
-
/** @typedef OptedStoreAddress */
|
|
953
|
-
/** @typedef OptedStoreIntegration */
|
|
954
|
-
/** @typedef OptOutInventory */
|
|
955
|
-
/** @typedef OptType */
|
|
956
|
-
/** @typedef OrderFeature */
|
|
957
|
-
/** @typedef OrderingStore */
|
|
958
|
-
/** @typedef OrderingStoreConfig */
|
|
959
|
-
/** @typedef OrderingStores */
|
|
960
|
-
/** @typedef OrderingStoresResponse */
|
|
961
|
-
/** @typedef OrderValidator */
|
|
962
|
-
/** @typedef OtherEntity */
|
|
963
|
-
/** @typedef OtherEntityData */
|
|
964
|
-
/** @typedef OtherSellerApplication */
|
|
965
|
-
/** @typedef OtherSellerApplications */
|
|
966
|
-
/** @typedef OtherSellerCompany */
|
|
967
|
-
/** @typedef Page */
|
|
968
|
-
/** @typedef PanCardConfig */
|
|
969
|
-
/** @typedef PaymentModeConfig */
|
|
970
|
-
/** @typedef PaymentSelectionLock */
|
|
971
|
-
/** @typedef PcrFeature */
|
|
972
|
-
/** @typedef PinterestLink */
|
|
973
|
-
/** @typedef ProductDetailFeature */
|
|
974
|
-
/** @typedef QrFeature */
|
|
975
|
-
/** @typedef RegistrationPageFeature */
|
|
976
|
-
/** @typedef RevenueEngineFeature */
|
|
977
|
-
/** @typedef RewardPointsConfig */
|
|
978
|
-
/** @typedef Safetynet */
|
|
979
|
-
/** @typedef SafetynetCredentials */
|
|
980
|
-
/** @typedef SecureUrl */
|
|
981
|
-
/** @typedef Segment */
|
|
982
|
-
/** @typedef SegmentCredentials */
|
|
983
|
-
/** @typedef SocialLinks */
|
|
984
|
-
/** @typedef SplashImage */
|
|
985
|
-
/** @typedef StoreByBrandsRequest */
|
|
986
|
-
/** @typedef StoreByBrandsResponse */
|
|
987
|
-
/** @typedef StoreCriteriaRule */
|
|
988
|
-
/** @typedef StoreLatLong */
|
|
989
|
-
/** @typedef StorePriority */
|
|
990
|
-
/** @typedef StorePriorityRule */
|
|
991
|
-
/** @typedef StoresResponse */
|
|
992
|
-
/** @typedef StoreValidator */
|
|
993
|
-
/** @typedef SuccessMessageResponse */
|
|
994
|
-
/** @typedef TokenResponse */
|
|
995
|
-
/** @typedef Tokens */
|
|
996
|
-
/** @typedef TwitterLink */
|
|
997
|
-
/** @typedef UnhandledError */
|
|
998
|
-
/** @typedef UpdateDomain */
|
|
999
|
-
/** @typedef UpdateDomainTypeRequest */
|
|
1000
|
-
/** @typedef UpdateIntegrationLevelRequest */
|
|
1001
|
-
/** @typedef UserEmail */
|
|
1002
|
-
/** @typedef UserPhoneNumber */
|
|
1003
|
-
/** @typedef ValidationFailedResponse */
|
|
1004
|
-
/** @typedef Validators */
|
|
1005
|
-
/** @typedef VimeoLink */
|
|
1006
|
-
/** @typedef YoutubeLink */
|
|
1007
|
-
|
|
1008
|
-
/** @typedef Action */
|
|
1009
|
-
/** @typedef ActionPage */
|
|
1010
|
-
/** @typedef AdminAnnouncementSchema */
|
|
1011
|
-
/** @typedef AnnouncementAuthorSchema */
|
|
1012
|
-
/** @typedef AnnouncementPageSchema */
|
|
1013
|
-
/** @typedef AnnouncementSchema */
|
|
1014
|
-
/** @typedef AnnouncementsResponseSchema */
|
|
1015
|
-
/** @typedef ApplicationLegal */
|
|
1016
|
-
/** @typedef ApplicationLegalFAQ */
|
|
1017
|
-
/** @typedef Asset */
|
|
1018
|
-
/** @typedef Author */
|
|
1019
|
-
/** @typedef BlogGetResponse */
|
|
1020
|
-
/** @typedef BlogRequest */
|
|
1021
|
-
/** @typedef BlogSchema */
|
|
1022
|
-
/** @typedef CategoryRequestSchema */
|
|
1023
|
-
/** @typedef CategorySchema */
|
|
1024
|
-
/** @typedef ChildrenSchema */
|
|
1025
|
-
/** @typedef CommonError */
|
|
1026
|
-
/** @typedef ConfigurationSchema */
|
|
1027
|
-
/** @typedef ContactSchema */
|
|
1028
|
-
/** @typedef ContentAPIError */
|
|
1029
|
-
/** @typedef ContentSchema */
|
|
1030
|
-
/** @typedef CreateAnnouncementSchema */
|
|
1031
|
-
/** @typedef CreatedBySchema */
|
|
1032
|
-
/** @typedef CreateFaqCategoryRequestSchema */
|
|
1033
|
-
/** @typedef CreateFaqCategorySchema */
|
|
1034
|
-
/** @typedef CreateFaqResponseSchema */
|
|
1035
|
-
/** @typedef CreateFaqSchema */
|
|
1036
|
-
/** @typedef CreateTagRequestSchema */
|
|
1037
|
-
/** @typedef CreateTagSchema */
|
|
1038
|
-
/** @typedef CronSchedule */
|
|
1039
|
-
/** @typedef CustomMetaTag */
|
|
1040
|
-
/** @typedef CustomPage */
|
|
1041
|
-
/** @typedef CustomPageSchema */
|
|
1042
|
-
/** @typedef DataLoaderResetResponseSchema */
|
|
1043
|
-
/** @typedef DataLoaderResponseSchema */
|
|
1044
|
-
/** @typedef DataLoaderSchema */
|
|
1045
|
-
/** @typedef DataLoaderSourceSchema */
|
|
1046
|
-
/** @typedef DataLoadersSchema */
|
|
1047
|
-
/** @typedef DateMeta */
|
|
1048
|
-
/** @typedef DefaultNavigationResponse */
|
|
1049
|
-
/** @typedef Detail */
|
|
1050
|
-
/** @typedef EditorMeta */
|
|
1051
|
-
/** @typedef EmailProperties */
|
|
1052
|
-
/** @typedef EmailSchema */
|
|
1053
|
-
/** @typedef FAQ */
|
|
1054
|
-
/** @typedef FAQCategorySchema */
|
|
1055
|
-
/** @typedef FaqResponseSchema */
|
|
1056
|
-
/** @typedef FaqSchema */
|
|
1057
|
-
/** @typedef FeatureImage */
|
|
1058
|
-
/** @typedef GeneratedSEOContent */
|
|
1059
|
-
/** @typedef GenerateSEOContent */
|
|
1060
|
-
/** @typedef GetAnnouncementListSchema */
|
|
1061
|
-
/** @typedef GetFaqCategoriesSchema */
|
|
1062
|
-
/** @typedef GetFaqCategoryBySlugSchema */
|
|
1063
|
-
/** @typedef GetFaqSchema */
|
|
1064
|
-
/** @typedef HandpickedTagSchema */
|
|
1065
|
-
/** @typedef LandingPage */
|
|
1066
|
-
/** @typedef LandingPageGetResponse */
|
|
1067
|
-
/** @typedef LandingPageSchema */
|
|
1068
|
-
/** @typedef Language */
|
|
1069
|
-
/** @typedef LocaleLanguage */
|
|
1070
|
-
/** @typedef Navigation */
|
|
1071
|
-
/** @typedef NavigationGetResponse */
|
|
1072
|
-
/** @typedef NavigationReference */
|
|
1073
|
-
/** @typedef NavigationRequest */
|
|
1074
|
-
/** @typedef NavigationSchema */
|
|
1075
|
-
/** @typedef NextSchedule */
|
|
1076
|
-
/** @typedef Orientation */
|
|
1077
|
-
/** @typedef Page */
|
|
1078
|
-
/** @typedef PageContent */
|
|
1079
|
-
/** @typedef PageGetResponse */
|
|
1080
|
-
/** @typedef PageMeta */
|
|
1081
|
-
/** @typedef PageMetaSchema */
|
|
1082
|
-
/** @typedef PagePublishRequest */
|
|
1083
|
-
/** @typedef PageRequest */
|
|
1084
|
-
/** @typedef PageSchema */
|
|
1085
|
-
/** @typedef PageSpec */
|
|
1086
|
-
/** @typedef PageSpecItem */
|
|
1087
|
-
/** @typedef PageSpecParam */
|
|
1088
|
-
/** @typedef PathMappingSchema */
|
|
1089
|
-
/** @typedef PathSourceSchema */
|
|
1090
|
-
/** @typedef PhoneProperties */
|
|
1091
|
-
/** @typedef PhoneSchema */
|
|
1092
|
-
/** @typedef RemoveHandpickedSchema */
|
|
1093
|
-
/** @typedef ResourceContent */
|
|
1094
|
-
/** @typedef ScheduleSchema */
|
|
1095
|
-
/** @typedef ScheduleStartSchema */
|
|
1096
|
-
/** @typedef SEO */
|
|
1097
|
-
/** @typedef SeoComponent */
|
|
1098
|
-
/** @typedef SEOImage */
|
|
1099
|
-
/** @typedef SeoSchema */
|
|
1100
|
-
/** @typedef Slideshow */
|
|
1101
|
-
/** @typedef SlideshowGetResponse */
|
|
1102
|
-
/** @typedef SlideshowMedia */
|
|
1103
|
-
/** @typedef SlideshowRequest */
|
|
1104
|
-
/** @typedef SlideshowSchema */
|
|
1105
|
-
/** @typedef Support */
|
|
1106
|
-
/** @typedef TagDeleteSuccessResponse */
|
|
1107
|
-
/** @typedef TagSchema */
|
|
1108
|
-
/** @typedef TagSourceSchema */
|
|
1109
|
-
/** @typedef TagsSchema */
|
|
1110
|
-
/** @typedef UpdateFaqCategoryRequestSchema */
|
|
1111
|
-
/** @typedef UpdateHandpickedSchema */
|
|
1112
|
-
|
|
1113
|
-
/** @typedef BadRequestObject */
|
|
1114
|
-
/** @typedef BulkDiscount */
|
|
1115
|
-
/** @typedef CancelJobResponse */
|
|
1116
|
-
/** @typedef CreateUpdateDiscount */
|
|
1117
|
-
/** @typedef DiscountItems */
|
|
1118
|
-
/** @typedef DiscountJob */
|
|
1119
|
-
/** @typedef DownloadFileJob */
|
|
1120
|
-
/** @typedef FileJobRequest */
|
|
1121
|
-
/** @typedef FileJobResponse */
|
|
1122
|
-
/** @typedef ListOrCalender */
|
|
1123
|
-
/** @typedef Page */
|
|
1124
|
-
/** @typedef UserDetails */
|
|
1125
|
-
/** @typedef ValidityObject */
|
|
1126
|
-
|
|
1127
|
-
/** @typedef BrowseResponse */
|
|
1128
|
-
/** @typedef BulkRequest */
|
|
1129
|
-
/** @typedef BulkUploadResponse */
|
|
1130
|
-
/** @typedef CDN */
|
|
1131
|
-
/** @typedef CompleteResponse */
|
|
1132
|
-
/** @typedef CopyFileTask */
|
|
1133
|
-
/** @typedef DbRecord */
|
|
1134
|
-
/** @typedef Destination */
|
|
1135
|
-
/** @typedef FailedResponse */
|
|
1136
|
-
/** @typedef Opts */
|
|
1137
|
-
/** @typedef Page */
|
|
1138
|
-
/** @typedef ReqConfiguration */
|
|
1139
|
-
/** @typedef SignUrlRequest */
|
|
1140
|
-
/** @typedef SignUrlResponse */
|
|
1141
|
-
/** @typedef StartRequest */
|
|
1142
|
-
/** @typedef StartResponse */
|
|
1143
|
-
/** @typedef Upload */
|
|
1144
|
-
/** @typedef Urls */
|
|
1145
|
-
|
|
1146
|
-
/** @typedef CreditlineDataPlatformPayload */
|
|
1147
|
-
/** @typedef CreditlineDataPlatformRequest */
|
|
1148
|
-
/** @typedef CreditlineDataPlatformResponse */
|
|
1149
|
-
/** @typedef DownloadCreditDebitNote */
|
|
1150
|
-
/** @typedef DownloadCreditDebitNoteRequest */
|
|
1151
|
-
/** @typedef DownloadCreditDebitNoteResponse */
|
|
1152
|
-
/** @typedef DownloadCreditDebitNoteResponseData */
|
|
1153
|
-
/** @typedef DownloadReport */
|
|
1154
|
-
/** @typedef DownloadReportItems */
|
|
1155
|
-
/** @typedef DownloadReportList */
|
|
1156
|
-
/** @typedef Error */
|
|
1157
|
-
/** @typedef GenerateReportFilters */
|
|
1158
|
-
/** @typedef GenerateReportJson */
|
|
1159
|
-
/** @typedef GenerateReportMeta */
|
|
1160
|
-
/** @typedef GenerateReportPlatform */
|
|
1161
|
-
/** @typedef GenerateReportRequest */
|
|
1162
|
-
/** @typedef GetAffiliate */
|
|
1163
|
-
/** @typedef GetAffiliateResponse */
|
|
1164
|
-
/** @typedef GetDocs */
|
|
1165
|
-
/** @typedef GetEngineData */
|
|
1166
|
-
/** @typedef GetEngineFilters */
|
|
1167
|
-
/** @typedef GetEngineRequest */
|
|
1168
|
-
/** @typedef GetEngineResponse */
|
|
1169
|
-
/** @typedef GetReason */
|
|
1170
|
-
/** @typedef GetReasonRequest */
|
|
1171
|
-
/** @typedef GetReasonResponse */
|
|
1172
|
-
/** @typedef GetReportListData */
|
|
1173
|
-
/** @typedef GetReportListRequest */
|
|
1174
|
-
/** @typedef InoviceListingPayloadDataFilters */
|
|
1175
|
-
/** @typedef InvoiceListingPayloadData */
|
|
1176
|
-
/** @typedef InvoiceListingRequest */
|
|
1177
|
-
/** @typedef InvoiceListingResponse */
|
|
1178
|
-
/** @typedef InvoiceListingResponseItems */
|
|
1179
|
-
/** @typedef InvoicePdfPayloadData */
|
|
1180
|
-
/** @typedef InvoicePdfRequest */
|
|
1181
|
-
/** @typedef InvoicePdfResponse */
|
|
1182
|
-
/** @typedef InvoiceTypePayloadData */
|
|
1183
|
-
/** @typedef InvoiceTypeRequest */
|
|
1184
|
-
/** @typedef InvoiceTypeResponse */
|
|
1185
|
-
/** @typedef InvoiceTypeResponseItems */
|
|
1186
|
-
/** @typedef IsCreditlinePayload */
|
|
1187
|
-
/** @typedef IsCreditlinePlatformRequest */
|
|
1188
|
-
/** @typedef IsCreditlinePlatformResponse */
|
|
1189
|
-
/** @typedef Page */
|
|
1190
|
-
/** @typedef PaymentProcessPayload */
|
|
1191
|
-
/** @typedef PaymentProcessRequest */
|
|
1192
|
-
/** @typedef PaymentProcessResponse */
|
|
1193
|
-
/** @typedef UnpaidInvoiceDataItems */
|
|
1194
|
-
|
|
1195
|
-
/** @typedef ArchiveConfig */
|
|
1196
|
-
/** @typedef Audit */
|
|
1197
|
-
/** @typedef AWSS3config */
|
|
1198
|
-
/** @typedef CatalogMasterConfig */
|
|
1199
|
-
/** @typedef CompanyConfig */
|
|
1200
|
-
/** @typedef DataTresholdDTO */
|
|
1201
|
-
/** @typedef DBConfig */
|
|
1202
|
-
/** @typedef DBConnectionProfile */
|
|
1203
|
-
/** @typedef DBParamConfig */
|
|
1204
|
-
/** @typedef DefaultHeadersDTO */
|
|
1205
|
-
/** @typedef DocMappingConfig */
|
|
1206
|
-
/** @typedef EmailConfig */
|
|
1207
|
-
/** @typedef FileConfig */
|
|
1208
|
-
/** @typedef FTPConfig */
|
|
1209
|
-
/** @typedef GCompany */
|
|
1210
|
-
/** @typedef GenericDTO */
|
|
1211
|
-
/** @typedef GoogleSpreadSheetConfig */
|
|
1212
|
-
/** @typedef GStore */
|
|
1213
|
-
/** @typedef HttpConfig */
|
|
1214
|
-
/** @typedef JobConfig */
|
|
1215
|
-
/** @typedef JobConfigDTO */
|
|
1216
|
-
/** @typedef JobConfigListDTO */
|
|
1217
|
-
/** @typedef JobConfigRawDTO */
|
|
1218
|
-
/** @typedef JobHistoryDto */
|
|
1219
|
-
/** @typedef JobMetricsDto */
|
|
1220
|
-
/** @typedef JobStepsDTO */
|
|
1221
|
-
/** @typedef JsonDocConfig */
|
|
1222
|
-
/** @typedef KafkaMetaModel */
|
|
1223
|
-
/** @typedef KafkaResponse */
|
|
1224
|
-
/** @typedef LocalFileConfig */
|
|
1225
|
-
/** @typedef Metum */
|
|
1226
|
-
/** @typedef MongoDocConfig */
|
|
1227
|
-
/** @typedef OAuthConfig */
|
|
1228
|
-
/** @typedef Page */
|
|
1229
|
-
/** @typedef ProcessConfig */
|
|
1230
|
-
/** @typedef PropBeanConfig */
|
|
1231
|
-
/** @typedef PropBeanDTO */
|
|
1232
|
-
/** @typedef ResponseEnvelopeJobConfigDTO */
|
|
1233
|
-
/** @typedef ResponseEnvelopeJobMetricsDto */
|
|
1234
|
-
/** @typedef ResponseEnvelopeKafkaResponse */
|
|
1235
|
-
/** @typedef ResponseEnvelopeListJobConfigDTO */
|
|
1236
|
-
/** @typedef ResponseEnvelopeListJobConfigListDTO */
|
|
1237
|
-
/** @typedef ResponseEnvelopeListJobConfigRawDTO */
|
|
1238
|
-
/** @typedef ResponseEnvelopeListJobStepsDTO */
|
|
1239
|
-
/** @typedef ResponseEnvelopeListSlingshotConfigurationDetail */
|
|
1240
|
-
/** @typedef ResponseEnvelopeString */
|
|
1241
|
-
/** @typedef Send */
|
|
1242
|
-
/** @typedef SFTPConfig */
|
|
1243
|
-
/** @typedef SlingshotConfigurationDetail */
|
|
1244
|
-
/** @typedef SlingshotIntegration */
|
|
1245
|
-
/** @typedef StoreConfig */
|
|
1246
|
-
/** @typedef StoreData */
|
|
1247
|
-
/** @typedef StoreFilter */
|
|
1248
|
-
/** @typedef SuppressStoreModel */
|
|
1249
|
-
/** @typedef SuppressStorePayload */
|
|
1250
|
-
/** @typedef TaskConfig */
|
|
1251
|
-
/** @typedef TaskDTO */
|
|
1252
|
-
/** @typedef TaskParam */
|
|
1253
|
-
/** @typedef TaskStepConfig */
|
|
1254
|
-
|
|
1255
|
-
/** @typedef AddTicketPayload */
|
|
1256
|
-
/** @typedef AgentChangePayload */
|
|
1257
|
-
/** @typedef CategoryData */
|
|
1258
|
-
/** @typedef CloseVideoRoomResponse */
|
|
1259
|
-
/** @typedef CommunicationDetails */
|
|
1260
|
-
/** @typedef CreateCustomFormPayload */
|
|
1261
|
-
/** @typedef CreatedOn */
|
|
1262
|
-
/** @typedef CreateVideoRoomPayload */
|
|
1263
|
-
/** @typedef CreateVideoRoomResponse */
|
|
1264
|
-
/** @typedef CustomForm */
|
|
1265
|
-
/** @typedef CustomFormList */
|
|
1266
|
-
/** @typedef CustomFormSubmissionPayload */
|
|
1267
|
-
/** @typedef Debug */
|
|
1268
|
-
/** @typedef EditCustomFormPayload */
|
|
1269
|
-
/** @typedef EditTicketPayload */
|
|
1270
|
-
/** @typedef Email */
|
|
1271
|
-
/** @typedef FeedbackForm */
|
|
1272
|
-
/** @typedef FeedbackResponseItem */
|
|
1273
|
-
/** @typedef Filter */
|
|
1274
|
-
/** @typedef GetParticipantsInsideVideoRoomResponse */
|
|
1275
|
-
/** @typedef GetTokenForVideoRoomResponse */
|
|
1276
|
-
/** @typedef IntegrationConfig */
|
|
1277
|
-
/** @typedef NotifyUser */
|
|
1278
|
-
/** @typedef Page */
|
|
1279
|
-
/** @typedef Participant */
|
|
1280
|
-
/** @typedef PhoneNumber */
|
|
1281
|
-
/** @typedef PollForAssignment */
|
|
1282
|
-
/** @typedef Priority */
|
|
1283
|
-
/** @typedef Status */
|
|
1284
|
-
/** @typedef SubmitButton */
|
|
1285
|
-
/** @typedef SubmitCustomFormResponse */
|
|
1286
|
-
/** @typedef SupportGeneralConfig */
|
|
1287
|
-
/** @typedef Ticket */
|
|
1288
|
-
/** @typedef TicketAsset */
|
|
1289
|
-
/** @typedef TicketCategory */
|
|
1290
|
-
/** @typedef TicketContent */
|
|
1291
|
-
/** @typedef TicketContext */
|
|
1292
|
-
/** @typedef TicketFeedback */
|
|
1293
|
-
/** @typedef TicketFeedbackForm */
|
|
1294
|
-
/** @typedef TicketFeedbackList */
|
|
1295
|
-
/** @typedef TicketFeedbackPayload */
|
|
1296
|
-
/** @typedef TicketHistory */
|
|
1297
|
-
/** @typedef TicketHistoryList */
|
|
1298
|
-
/** @typedef TicketHistoryPayload */
|
|
1299
|
-
/** @typedef TicketList */
|
|
1300
|
-
/** @typedef TicketSubCategory */
|
|
1301
|
-
/** @typedef UserSchema */
|
|
1302
|
-
|
|
1303
|
-
/** @typedef ActionInfo */
|
|
1304
|
-
/** @typedef AdvanceFilterInfo */
|
|
1305
|
-
/** @typedef Affiliate */
|
|
1306
|
-
/** @typedef AffiliateAppConfig */
|
|
1307
|
-
/** @typedef AffiliateAppConfigMeta */
|
|
1308
|
-
/** @typedef AffiliateBag */
|
|
1309
|
-
/** @typedef AffiliateBagDetails */
|
|
1310
|
-
/** @typedef AffiliateBagsDetails */
|
|
1311
|
-
/** @typedef AffiliateConfig */
|
|
1312
|
-
/** @typedef AffiliateDetails */
|
|
1313
|
-
/** @typedef AffiliateInventoryArticleAssignmentConfig */
|
|
1314
|
-
/** @typedef AffiliateInventoryConfig */
|
|
1315
|
-
/** @typedef AffiliateInventoryLogisticsConfig */
|
|
1316
|
-
/** @typedef AffiliateInventoryOrderConfig */
|
|
1317
|
-
/** @typedef AffiliateInventoryPaymentConfig */
|
|
1318
|
-
/** @typedef AffiliateInventoryStoreConfig */
|
|
1319
|
-
/** @typedef AffiliateMeta */
|
|
1320
|
-
/** @typedef AffiliateStoreIdMapping */
|
|
1321
|
-
/** @typedef AnnouncementResponse */
|
|
1322
|
-
/** @typedef AnnouncementsResponse */
|
|
1323
|
-
/** @typedef AppliedPromos */
|
|
1324
|
-
/** @typedef Article */
|
|
1325
|
-
/** @typedef ArticleDetails */
|
|
1326
|
-
/** @typedef ArticleDetails1 */
|
|
1327
|
-
/** @typedef AttachOrderUser */
|
|
1328
|
-
/** @typedef AttachOrderUserResponse */
|
|
1329
|
-
/** @typedef AttachUserInfo */
|
|
1330
|
-
/** @typedef AttachUserOtpData */
|
|
1331
|
-
/** @typedef Attributes */
|
|
1332
|
-
/** @typedef B2BPODetails */
|
|
1333
|
-
/** @typedef BagConfigs */
|
|
1334
|
-
/** @typedef BagDetailsPlatformResponse */
|
|
1335
|
-
/** @typedef BagGST */
|
|
1336
|
-
/** @typedef BagGSTDetails */
|
|
1337
|
-
/** @typedef BagMeta */
|
|
1338
|
-
/** @typedef BagPaymentMethods */
|
|
1339
|
-
/** @typedef BagReturnableCancelableStatus */
|
|
1340
|
-
/** @typedef BagReturnableCancelableStatus1 */
|
|
1341
|
-
/** @typedef Bags */
|
|
1342
|
-
/** @typedef BagsPage */
|
|
1343
|
-
/** @typedef BagStateMapper */
|
|
1344
|
-
/** @typedef BagStateTransitionMap */
|
|
1345
|
-
/** @typedef BagStatusHistory */
|
|
1346
|
-
/** @typedef BagUnit */
|
|
1347
|
-
/** @typedef BaseResponse */
|
|
1348
|
-
/** @typedef BillingInfo */
|
|
1349
|
-
/** @typedef BillingStaffDetails */
|
|
1350
|
-
/** @typedef Brand */
|
|
1351
|
-
/** @typedef BulkActionTemplate */
|
|
1352
|
-
/** @typedef BulkActionTemplateResponse */
|
|
1353
|
-
/** @typedef BuyerDetails */
|
|
1354
|
-
/** @typedef BuyRules */
|
|
1355
|
-
/** @typedef Charge */
|
|
1356
|
-
/** @typedef CheckResponse */
|
|
1357
|
-
/** @typedef Click2CallResponse */
|
|
1358
|
-
/** @typedef CompanyDetails */
|
|
1359
|
-
/** @typedef ContactDetails */
|
|
1360
|
-
/** @typedef CreateChannelConfig */
|
|
1361
|
-
/** @typedef CreateChannelConfigData */
|
|
1362
|
-
/** @typedef CreateChannelConfigResponse */
|
|
1363
|
-
/** @typedef CreateChannelConifgErrorResponse */
|
|
1364
|
-
/** @typedef CreateChannelPaymentInfo */
|
|
1365
|
-
/** @typedef CreateOrderAPI */
|
|
1366
|
-
/** @typedef CreateOrderErrorReponse */
|
|
1367
|
-
/** @typedef CreateOrderPayload */
|
|
1368
|
-
/** @typedef CreateOrderResponse */
|
|
1369
|
-
/** @typedef CreditBalanceInfo */
|
|
1370
|
-
/** @typedef CurrentStatus */
|
|
1371
|
-
/** @typedef DataUpdates */
|
|
1372
|
-
/** @typedef Dates */
|
|
1373
|
-
/** @typedef DebugInfo */
|
|
1374
|
-
/** @typedef Dimension */
|
|
1375
|
-
/** @typedef Dimensions */
|
|
1376
|
-
/** @typedef DiscountRules */
|
|
1377
|
-
/** @typedef DispatchManifest */
|
|
1378
|
-
/** @typedef Document */
|
|
1379
|
-
/** @typedef DpConfiguration */
|
|
1380
|
-
/** @typedef DPDetailsData */
|
|
1381
|
-
/** @typedef EinvoiceInfo */
|
|
1382
|
-
/** @typedef EInvoicePortalDetails */
|
|
1383
|
-
/** @typedef Entities */
|
|
1384
|
-
/** @typedef EntitiesDataUpdates */
|
|
1385
|
-
/** @typedef EntitiesReasons */
|
|
1386
|
-
/** @typedef EntityReasonData */
|
|
1387
|
-
/** @typedef Error */
|
|
1388
|
-
/** @typedef ErrorDetail */
|
|
1389
|
-
/** @typedef ErrorResponse */
|
|
1390
|
-
/** @typedef ErrorResponse1 */
|
|
1391
|
-
/** @typedef FetchCreditBalanceRequestPayload */
|
|
1392
|
-
/** @typedef FetchCreditBalanceResponsePayload */
|
|
1393
|
-
/** @typedef FileResponse */
|
|
1394
|
-
/** @typedef FilterInfoOption */
|
|
1395
|
-
/** @typedef FiltersInfo */
|
|
1396
|
-
/** @typedef FiltersResponse */
|
|
1397
|
-
/** @typedef FinancialBreakup */
|
|
1398
|
-
/** @typedef Formatted */
|
|
1399
|
-
/** @typedef FulfillingStore */
|
|
1400
|
-
/** @typedef FyndOrderIdList */
|
|
1401
|
-
/** @typedef GeneratePosOrderReceiptResponse */
|
|
1402
|
-
/** @typedef GetActionsResponse */
|
|
1403
|
-
/** @typedef GetBagsPlatformResponse */
|
|
1404
|
-
/** @typedef GiftCard */
|
|
1405
|
-
/** @typedef GSTDetailsData */
|
|
1406
|
-
/** @typedef HistoryDict */
|
|
1407
|
-
/** @typedef HistoryMeta */
|
|
1408
|
-
/** @typedef HistoryReason */
|
|
1409
|
-
/** @typedef Identifier */
|
|
1410
|
-
/** @typedef InvalidateShipmentCacheNestedResponse */
|
|
1411
|
-
/** @typedef InvalidateShipmentCachePayload */
|
|
1412
|
-
/** @typedef InvalidateShipmentCacheResponse */
|
|
1413
|
-
/** @typedef InvoiceInfo */
|
|
1414
|
-
/** @typedef Item */
|
|
1415
|
-
/** @typedef ItemCriterias */
|
|
1416
|
-
/** @typedef LaneConfigResponse */
|
|
1417
|
-
/** @typedef LineItem */
|
|
1418
|
-
/** @typedef LocationDetails */
|
|
1419
|
-
/** @typedef LockData */
|
|
1420
|
-
/** @typedef MarketPlacePdf */
|
|
1421
|
-
/** @typedef Meta */
|
|
1422
|
-
/** @typedef OrderBagArticle */
|
|
1423
|
-
/** @typedef OrderBags */
|
|
1424
|
-
/** @typedef OrderBrandName */
|
|
1425
|
-
/** @typedef OrderConfig */
|
|
1426
|
-
/** @typedef OrderData */
|
|
1427
|
-
/** @typedef OrderDetails */
|
|
1428
|
-
/** @typedef OrderDetailsData */
|
|
1429
|
-
/** @typedef OrderDetailsResponse */
|
|
1430
|
-
/** @typedef OrderInfo */
|
|
1431
|
-
/** @typedef OrderingStoreDetails */
|
|
1432
|
-
/** @typedef OrderItemDataUpdates */
|
|
1433
|
-
/** @typedef OrderListingResponse */
|
|
1434
|
-
/** @typedef OrderMeta */
|
|
1435
|
-
/** @typedef OrderPriority */
|
|
1436
|
-
/** @typedef OrderStatus */
|
|
1437
|
-
/** @typedef OrderStatusData */
|
|
1438
|
-
/** @typedef OrderStatusResult */
|
|
1439
|
-
/** @typedef OrderUser */
|
|
1440
|
-
/** @typedef OriginalFilter */
|
|
1441
|
-
/** @typedef Page */
|
|
1442
|
-
/** @typedef PaymentInfo */
|
|
1443
|
-
/** @typedef PaymentMethod */
|
|
1444
|
-
/** @typedef PaymentMethods */
|
|
1445
|
-
/** @typedef PDFLinks */
|
|
1446
|
-
/** @typedef PhoneDetails */
|
|
1447
|
-
/** @typedef PlatformArticleAttributes */
|
|
1448
|
-
/** @typedef PlatformBreakupValues */
|
|
1449
|
-
/** @typedef PlatformChannel */
|
|
1450
|
-
/** @typedef PlatformDeliveryAddress */
|
|
1451
|
-
/** @typedef PlatformItem */
|
|
1452
|
-
/** @typedef PlatformOrderItems */
|
|
1453
|
-
/** @typedef PlatformOrderUpdate */
|
|
1454
|
-
/** @typedef PlatformShipment */
|
|
1455
|
-
/** @typedef PlatformShipmentReasonsResponse */
|
|
1456
|
-
/** @typedef PlatformShipmentTrack */
|
|
1457
|
-
/** @typedef PlatformTrack */
|
|
1458
|
-
/** @typedef PlatformUserDetails */
|
|
1459
|
-
/** @typedef PointBlankOtpData */
|
|
1460
|
-
/** @typedef PostActivityHistory */
|
|
1461
|
-
/** @typedef PostHistoryData */
|
|
1462
|
-
/** @typedef PostHistoryDict */
|
|
1463
|
-
/** @typedef PostHistoryFilters */
|
|
1464
|
-
/** @typedef PostShipmentHistory */
|
|
1465
|
-
/** @typedef Prices */
|
|
1466
|
-
/** @typedef ProcessingDates */
|
|
1467
|
-
/** @typedef Products */
|
|
1468
|
-
/** @typedef ProductsDataUpdates */
|
|
1469
|
-
/** @typedef ProductsDataUpdatesFilters */
|
|
1470
|
-
/** @typedef ProductsReasons */
|
|
1471
|
-
/** @typedef ProductsReasonsData */
|
|
1472
|
-
/** @typedef ProductsReasonsFilters */
|
|
1473
|
-
/** @typedef QuestionSet */
|
|
1474
|
-
/** @typedef Reason */
|
|
1475
|
-
/** @typedef ReasonsData */
|
|
1476
|
-
/** @typedef RefundModeConfigRequestPayload */
|
|
1477
|
-
/** @typedef RefundModeConfigResponsePayload */
|
|
1478
|
-
/** @typedef RefundModeInfo */
|
|
1479
|
-
/** @typedef RefundOption */
|
|
1480
|
-
/** @typedef ReplacementDetails */
|
|
1481
|
-
/** @typedef ResponseDetail */
|
|
1482
|
-
/** @typedef ReturnConfig */
|
|
1483
|
-
/** @typedef ReturnConfig1 */
|
|
1484
|
-
/** @typedef SendSmsPayload */
|
|
1485
|
-
/** @typedef SendUserMobileOTP */
|
|
1486
|
-
/** @typedef SendUserMobileOtpResponse */
|
|
1487
|
-
/** @typedef Shipment */
|
|
1488
|
-
/** @typedef ShipmentConfig */
|
|
1489
|
-
/** @typedef ShipmentData */
|
|
1490
|
-
/** @typedef ShipmentDetail */
|
|
1491
|
-
/** @typedef ShipmentDetails */
|
|
1492
|
-
/** @typedef ShipmentDetails1 */
|
|
1493
|
-
/** @typedef ShipmentHistoryResponse */
|
|
1494
|
-
/** @typedef ShipmentInfoResponse */
|
|
1495
|
-
/** @typedef ShipmentInternalPlatformViewResponse */
|
|
1496
|
-
/** @typedef ShipmentItem */
|
|
1497
|
-
/** @typedef ShipmentItemFulFillingStore */
|
|
1498
|
-
/** @typedef ShipmentItemMeta */
|
|
1499
|
-
/** @typedef ShipmentListingBrand */
|
|
1500
|
-
/** @typedef ShipmentListingChannel */
|
|
1501
|
-
/** @typedef ShipmentMeta */
|
|
1502
|
-
/** @typedef ShipmentPayments */
|
|
1503
|
-
/** @typedef ShipmentReasonsResponse */
|
|
1504
|
-
/** @typedef ShipmentResponseReasons */
|
|
1505
|
-
/** @typedef ShipmentsRequest */
|
|
1506
|
-
/** @typedef ShipmentsResponse */
|
|
1507
|
-
/** @typedef ShipmentStatus */
|
|
1508
|
-
/** @typedef ShipmentStatusData */
|
|
1509
|
-
/** @typedef ShipmentTags */
|
|
1510
|
-
/** @typedef ShipmentTimeStamp */
|
|
1511
|
-
/** @typedef ShippingInfo */
|
|
1512
|
-
/** @typedef SmsDataPayload */
|
|
1513
|
-
/** @typedef StatuesRequest */
|
|
1514
|
-
/** @typedef StatuesResponse */
|
|
1515
|
-
/** @typedef Store */
|
|
1516
|
-
/** @typedef StoreAddress */
|
|
1517
|
-
/** @typedef StoreDocuments */
|
|
1518
|
-
/** @typedef StoreEinvoice */
|
|
1519
|
-
/** @typedef StoreEwaybill */
|
|
1520
|
-
/** @typedef StoreGstCredentials */
|
|
1521
|
-
/** @typedef StoreMeta */
|
|
1522
|
-
/** @typedef StoreReassign */
|
|
1523
|
-
/** @typedef StoreReassignResponse */
|
|
1524
|
-
/** @typedef SubLane */
|
|
1525
|
-
/** @typedef SuccessResponse */
|
|
1526
|
-
/** @typedef SuperLane */
|
|
1527
|
-
/** @typedef Tax */
|
|
1528
|
-
/** @typedef TaxDetails */
|
|
1529
|
-
/** @typedef TaxInfo */
|
|
1530
|
-
/** @typedef TrackingList */
|
|
1531
|
-
/** @typedef TransactionData */
|
|
1532
|
-
/** @typedef UpdatePackagingDimensionsPayload */
|
|
1533
|
-
/** @typedef UpdatePackagingDimensionsResponse */
|
|
1534
|
-
/** @typedef UpdateShipmentLockPayload */
|
|
1535
|
-
/** @typedef UpdateShipmentLockResponse */
|
|
1536
|
-
/** @typedef UpdateShipmentStatusRequest */
|
|
1537
|
-
/** @typedef UpdateShipmentStatusResponseBody */
|
|
1538
|
-
/** @typedef UploadConsent */
|
|
1539
|
-
/** @typedef URL */
|
|
1540
|
-
/** @typedef UserData */
|
|
1541
|
-
/** @typedef UserDataInfo */
|
|
1542
|
-
/** @typedef UserDetailsData */
|
|
1543
|
-
/** @typedef VerifyMobileOTP */
|
|
1544
|
-
/** @typedef VerifyOtpData */
|
|
1545
|
-
/** @typedef VerifyOtpResponse */
|
|
1546
|
-
/** @typedef VerifyOtpResponseData */
|
|
1547
|
-
/** @typedef Weight */
|
|
1548
|
-
|
|
1549
|
-
/** @typedef AddProxyReq */
|
|
1550
|
-
/** @typedef AddProxyResponse */
|
|
1551
|
-
/** @typedef APIError */
|
|
1552
|
-
/** @typedef ApplicationPermissions */
|
|
1553
|
-
/** @typedef ApprovedPermissions */
|
|
1554
|
-
/** @typedef ApprovedPermissionsInfo */
|
|
1555
|
-
/** @typedef Benefits */
|
|
1556
|
-
/** @typedef Callback */
|
|
1557
|
-
/** @typedef Category */
|
|
1558
|
-
/** @typedef CategoryL1 */
|
|
1559
|
-
/** @typedef CategoryL2 */
|
|
1560
|
-
/** @typedef CommingSoon */
|
|
1561
|
-
/** @typedef ContactInfo */
|
|
1562
|
-
/** @typedef ExtensionCommon */
|
|
1563
|
-
/** @typedef ExtensionDetails */
|
|
1564
|
-
/** @typedef ExtensionItems */
|
|
1565
|
-
/** @typedef ExtensionList */
|
|
1566
|
-
/** @typedef ExtensionListItems */
|
|
1567
|
-
/** @typedef ExtensionResponse */
|
|
1568
|
-
/** @typedef ExtensionSuggestion */
|
|
1569
|
-
/** @typedef ExtensionSuggestionList */
|
|
1570
|
-
/** @typedef getProxyPathRes */
|
|
1571
|
-
/** @typedef ListingInfo */
|
|
1572
|
-
/** @typedef Logo */
|
|
1573
|
-
/** @typedef ModifyPartnerReq */
|
|
1574
|
-
/** @typedef OrganizationBasicInfo */
|
|
1575
|
-
/** @typedef Pagination */
|
|
1576
|
-
/** @typedef PartnerInviteDetails */
|
|
1577
|
-
/** @typedef PartnerList */
|
|
1578
|
-
/** @typedef PartnerRequestList */
|
|
1579
|
-
/** @typedef Plan */
|
|
1580
|
-
/** @typedef Plans */
|
|
1581
|
-
/** @typedef Price */
|
|
1582
|
-
/** @typedef PublicExtension */
|
|
1583
|
-
/** @typedef RemoveProxyResponse */
|
|
1584
|
-
/** @typedef RequestedPermissions */
|
|
1585
|
-
/** @typedef Scope */
|
|
1586
|
-
/** @typedef Screenshots */
|
|
1587
|
-
/** @typedef SetupProductRes */
|
|
1588
|
-
/** @typedef SubscriptionRequest */
|
|
1589
|
-
/** @typedef SubscriptionRes */
|
|
1590
|
-
/** @typedef Support */
|
|
1591
|
-
/** @typedef UninstallExtension */
|
|
1592
|
-
|
|
1593
|
-
/** @typedef AddBeneficiaryDetailsOTPRequest */
|
|
1594
|
-
/** @typedef BankDetailsForOTP */
|
|
1595
|
-
/** @typedef CancelOrResendPaymentLinkRequest */
|
|
1596
|
-
/** @typedef CancelPaymentLinkResponse */
|
|
1597
|
-
/** @typedef CODdata */
|
|
1598
|
-
/** @typedef Code */
|
|
1599
|
-
/** @typedef CreatePaymentLinkMeta */
|
|
1600
|
-
/** @typedef CreatePaymentLinkRequest */
|
|
1601
|
-
/** @typedef CreatePaymentLinkResponse */
|
|
1602
|
-
/** @typedef DeletePayoutResponse */
|
|
1603
|
-
/** @typedef DeleteSubscriptionPaymentMethodResponse */
|
|
1604
|
-
/** @typedef EdcAddRequest */
|
|
1605
|
-
/** @typedef EdcAggregatorAndModelListResponse */
|
|
1606
|
-
/** @typedef EdcDevice */
|
|
1607
|
-
/** @typedef EdcDeviceAddResponse */
|
|
1608
|
-
/** @typedef EdcDeviceDetailsResponse */
|
|
1609
|
-
/** @typedef EdcDeviceListResponse */
|
|
1610
|
-
/** @typedef EdcDeviceStatsResponse */
|
|
1611
|
-
/** @typedef EdcDeviceUpdateResponse */
|
|
1612
|
-
/** @typedef EdcModelData */
|
|
1613
|
-
/** @typedef EdcUpdateRequest */
|
|
1614
|
-
/** @typedef ErrorCodeAndDescription */
|
|
1615
|
-
/** @typedef ErrorCodeDescription */
|
|
1616
|
-
/** @typedef ErrorDescription */
|
|
1617
|
-
/** @typedef ErrorResponse */
|
|
1618
|
-
/** @typedef GetOauthUrlResponse */
|
|
1619
|
-
/** @typedef GetPaymentCode */
|
|
1620
|
-
/** @typedef GetPaymentCodeResponse */
|
|
1621
|
-
/** @typedef GetPaymentLinkResponse */
|
|
1622
|
-
/** @typedef GetUserCODLimitResponse */
|
|
1623
|
-
/** @typedef HttpErrorCodeAndResponse */
|
|
1624
|
-
/** @typedef IfscCodeResponse */
|
|
1625
|
-
/** @typedef IntentApp */
|
|
1626
|
-
/** @typedef IntentAppErrorList */
|
|
1627
|
-
/** @typedef LinkStatus */
|
|
1628
|
-
/** @typedef MerchantOnBoardingRequest */
|
|
1629
|
-
/** @typedef MerchantOnBoardingResponse */
|
|
1630
|
-
/** @typedef MultiTenderPaymentMeta */
|
|
1631
|
-
/** @typedef MultiTenderPaymentMethod */
|
|
1632
|
-
/** @typedef NotFoundResourceError */
|
|
1633
|
-
/** @typedef OrderBeneficiaryDetails */
|
|
1634
|
-
/** @typedef OrderBeneficiaryResponse */
|
|
1635
|
-
/** @typedef Page */
|
|
1636
|
-
/** @typedef PaymentCode */
|
|
1637
|
-
/** @typedef PaymentConfirmationRequest */
|
|
1638
|
-
/** @typedef PaymentConfirmationResponse */
|
|
1639
|
-
/** @typedef PaymentGatewayConfig */
|
|
1640
|
-
/** @typedef PaymentGatewayConfigRequest */
|
|
1641
|
-
/** @typedef PaymentGatewayConfigResponse */
|
|
1642
|
-
/** @typedef PaymentGatewayToBeReviewed */
|
|
1643
|
-
/** @typedef PaymentInitializationRequest */
|
|
1644
|
-
/** @typedef PaymentInitializationResponse */
|
|
1645
|
-
/** @typedef PaymentModeList */
|
|
1646
|
-
/** @typedef PaymentModeLogo */
|
|
1647
|
-
/** @typedef PaymentObjectListSerializer */
|
|
1648
|
-
/** @typedef PaymentOptions */
|
|
1649
|
-
/** @typedef PaymentOptionsResponse */
|
|
1650
|
-
/** @typedef PaymentStatusBulkHandlerRequest */
|
|
1651
|
-
/** @typedef PaymentStatusBulkHandlerResponse */
|
|
1652
|
-
/** @typedef PaymentStatusObject */
|
|
1653
|
-
/** @typedef PaymentStatusUpdateRequest */
|
|
1654
|
-
/** @typedef PaymentStatusUpdateResponse */
|
|
1655
|
-
/** @typedef Payout */
|
|
1656
|
-
/** @typedef PayoutAggregator */
|
|
1657
|
-
/** @typedef PayoutBankDetails */
|
|
1658
|
-
/** @typedef PayoutCustomer */
|
|
1659
|
-
/** @typedef PayoutMoreAttributes */
|
|
1660
|
-
/** @typedef PayoutRequest */
|
|
1661
|
-
/** @typedef PayoutResponse */
|
|
1662
|
-
/** @typedef PayoutsResponse */
|
|
1663
|
-
/** @typedef PollingPaymentLinkResponse */
|
|
1664
|
-
/** @typedef RefundAccountResponse */
|
|
1665
|
-
/** @typedef RepaymentDetailsSerialiserPayAll */
|
|
1666
|
-
/** @typedef RepaymentRequestDetails */
|
|
1667
|
-
/** @typedef RepaymentResponse */
|
|
1668
|
-
/** @typedef ResendOrCancelPaymentRequest */
|
|
1669
|
-
/** @typedef ResendOrCancelPaymentResponse */
|
|
1670
|
-
/** @typedef ResendPaymentLinkResponse */
|
|
1671
|
-
/** @typedef RevokeOAuthToken */
|
|
1672
|
-
/** @typedef RootPaymentMode */
|
|
1673
|
-
/** @typedef SaveSubscriptionSetupIntentRequest */
|
|
1674
|
-
/** @typedef SaveSubscriptionSetupIntentResponse */
|
|
1675
|
-
/** @typedef SetCODForUserRequest */
|
|
1676
|
-
/** @typedef SetCODOptionResponse */
|
|
1677
|
-
/** @typedef StatisticsData */
|
|
1678
|
-
/** @typedef SubscriptionConfigResponse */
|
|
1679
|
-
/** @typedef SubscriptionPaymentMethodResponse */
|
|
1680
|
-
/** @typedef UpdatePayoutRequest */
|
|
1681
|
-
/** @typedef UpdatePayoutResponse */
|
|
1682
|
-
/** @typedef ValidateCustomerRequest */
|
|
1683
|
-
/** @typedef ValidateCustomerResponse */
|
|
1684
|
-
|
|
1685
|
-
/** @typedef AppUser */
|
|
1686
|
-
/** @typedef Asset */
|
|
1687
|
-
/** @typedef ConfigurationRequest */
|
|
1688
|
-
/** @typedef ConfigurationRes */
|
|
1689
|
-
/** @typedef E */
|
|
1690
|
-
/** @typedef Giveaway */
|
|
1691
|
-
/** @typedef GiveawayAudience */
|
|
1692
|
-
/** @typedef GiveawayResponse */
|
|
1693
|
-
/** @typedef HistoryRes */
|
|
1694
|
-
/** @typedef Offer */
|
|
1695
|
-
/** @typedef Page */
|
|
1696
|
-
/** @typedef Points */
|
|
1697
|
-
/** @typedef PointsHistory */
|
|
1698
|
-
/** @typedef Referral */
|
|
1699
|
-
/** @typedef RewardsAudience */
|
|
1700
|
-
/** @typedef RewardsRule */
|
|
1701
|
-
/** @typedef RewardUser */
|
|
1702
|
-
/** @typedef Schedule */
|
|
1703
|
-
/** @typedef SetConfigurationRes */
|
|
1704
|
-
/** @typedef ShareMessages */
|
|
1705
|
-
/** @typedef UserRes */
|
|
1706
|
-
|
|
1707
|
-
/** @typedef AddressResponse */
|
|
1708
|
-
/** @typedef ApplicationCompanyDpViewRequest */
|
|
1709
|
-
/** @typedef ApplicationCompanyDpViewResponse */
|
|
1710
|
-
/** @typedef ApplicationSelfShipConfig */
|
|
1711
|
-
/** @typedef ApplicationSelfShipConfigResponse */
|
|
1712
|
-
/** @typedef ApplicationServiceabilityConfig */
|
|
1713
|
-
/** @typedef ApplicationServiceabilityConfigResponse */
|
|
1714
|
-
/** @typedef CommonError */
|
|
1715
|
-
/** @typedef CompanyDpAccountListResponse */
|
|
1716
|
-
/** @typedef CompanyDpAccountRequest */
|
|
1717
|
-
/** @typedef CompanyDpAccountResponse */
|
|
1718
|
-
/** @typedef CompanyStoreView_PageItems */
|
|
1719
|
-
/** @typedef CompanyStoreView_Response */
|
|
1720
|
-
/** @typedef ContactNumberResponse */
|
|
1721
|
-
/** @typedef CreatedByResponse */
|
|
1722
|
-
/** @typedef CreateZoneData */
|
|
1723
|
-
/** @typedef DocumentsResponse */
|
|
1724
|
-
/** @typedef Dp */
|
|
1725
|
-
/** @typedef Dp1 */
|
|
1726
|
-
/** @typedef DpAccountFailureResponse */
|
|
1727
|
-
/** @typedef DPApplicationRuleRequest */
|
|
1728
|
-
/** @typedef DPApplicationRuleResponse */
|
|
1729
|
-
/** @typedef DPCompanyRuleRequest */
|
|
1730
|
-
/** @typedef DPCompanyRuleResponse */
|
|
1731
|
-
/** @typedef DpIds */
|
|
1732
|
-
/** @typedef DpMultipleRuleSuccessResponse */
|
|
1733
|
-
/** @typedef DpRule */
|
|
1734
|
-
/** @typedef DpRuleRequest */
|
|
1735
|
-
/** @typedef DpRuleResponse */
|
|
1736
|
-
/** @typedef DpRuleSuccessResponse */
|
|
1737
|
-
/** @typedef DpRulesUpdateRequest */
|
|
1738
|
-
/** @typedef DpRuleUpdateSuccessResponse */
|
|
1739
|
-
/** @typedef DpSchemaInRuleListing */
|
|
1740
|
-
/** @typedef EinvoiceResponse */
|
|
1741
|
-
/** @typedef EntityRegionView_Error */
|
|
1742
|
-
/** @typedef EntityRegionView_Items */
|
|
1743
|
-
/** @typedef EntityRegionView_page */
|
|
1744
|
-
/** @typedef EntityRegionView_Request */
|
|
1745
|
-
/** @typedef EntityRegionView_Response */
|
|
1746
|
-
/** @typedef Error */
|
|
1747
|
-
/** @typedef ErrorResponse */
|
|
1748
|
-
/** @typedef EwayBillResponse */
|
|
1749
|
-
/** @typedef FailureResponse */
|
|
1750
|
-
/** @typedef GetSingleZoneDataViewResponse */
|
|
1751
|
-
/** @typedef GetStoresViewResponse */
|
|
1752
|
-
/** @typedef GetZoneDataViewChannels */
|
|
1753
|
-
/** @typedef GetZoneDataViewItems */
|
|
1754
|
-
/** @typedef GetZoneFromApplicationIdViewResponse */
|
|
1755
|
-
/** @typedef GetZoneFromPincodeViewRequest */
|
|
1756
|
-
/** @typedef GetZoneFromPincodeViewResponse */
|
|
1757
|
-
/** @typedef GstCredentialsResponse */
|
|
1758
|
-
/** @typedef IntegrationTypeResponse */
|
|
1759
|
-
/** @typedef ItemResponse */
|
|
1760
|
-
/** @typedef ListViewChannels */
|
|
1761
|
-
/** @typedef ListViewItems */
|
|
1762
|
-
/** @typedef ListViewProduct */
|
|
1763
|
-
/** @typedef ListViewResponse */
|
|
1764
|
-
/** @typedef ListViewSummary */
|
|
1765
|
-
/** @typedef LogisticsResponse */
|
|
1766
|
-
/** @typedef ManagerResponse */
|
|
1767
|
-
/** @typedef MobileNo */
|
|
1768
|
-
/** @typedef ModifiedByResponse */
|
|
1769
|
-
/** @typedef OpeningClosing */
|
|
1770
|
-
/** @typedef Page */
|
|
1771
|
-
/** @typedef PincodeBulkViewResponse */
|
|
1772
|
-
/** @typedef PincodeCodStatusListingPage */
|
|
1773
|
-
/** @typedef PincodeCodStatusListingRequest */
|
|
1774
|
-
/** @typedef PincodeCodStatusListingResponse */
|
|
1775
|
-
/** @typedef PincodeCodStatusListingSummary */
|
|
1776
|
-
/** @typedef PincodeMopBulkData */
|
|
1777
|
-
/** @typedef PincodeMopData */
|
|
1778
|
-
/** @typedef PincodeMOPresponse */
|
|
1779
|
-
/** @typedef PincodeMopUpdateAuditHistoryPaging */
|
|
1780
|
-
/** @typedef PincodeMopUpdateAuditHistoryRequest */
|
|
1781
|
-
/** @typedef PincodeMopUpdateAuditHistoryResponse */
|
|
1782
|
-
/** @typedef PincodeMopUpdateAuditHistoryResponseData */
|
|
1783
|
-
/** @typedef PincodeMopUpdateResponse */
|
|
1784
|
-
/** @typedef ProductReturnConfigResponse */
|
|
1785
|
-
/** @typedef ReAssignStoreRequest */
|
|
1786
|
-
/** @typedef ReAssignStoreResponse */
|
|
1787
|
-
/** @typedef SelfShipResponse */
|
|
1788
|
-
/** @typedef ServiceabilityErrorResponse */
|
|
1789
|
-
/** @typedef ServiceabilityPageResponse */
|
|
1790
|
-
/** @typedef TimmingResponse */
|
|
1791
|
-
/** @typedef UpdateZoneData */
|
|
1792
|
-
/** @typedef WarningsResponse */
|
|
1793
|
-
/** @typedef Zone */
|
|
1794
|
-
/** @typedef ZoneDataItem */
|
|
1795
|
-
/** @typedef ZoneMappingType */
|
|
1796
|
-
/** @typedef ZoneProductTypes */
|
|
1797
|
-
/** @typedef ZoneRequest */
|
|
1798
|
-
/** @typedef ZoneResponse */
|
|
1799
|
-
/** @typedef ZoneSuccessResponse */
|
|
1800
|
-
/** @typedef ZoneUpdateRequest */
|
|
1801
|
-
|
|
1802
|
-
/** @typedef Attribution */
|
|
1803
|
-
/** @typedef CampaignShortLink */
|
|
1804
|
-
/** @typedef ClickStatsItem */
|
|
1805
|
-
/** @typedef ClickStatsResponse */
|
|
1806
|
-
/** @typedef ErrorRes */
|
|
1807
|
-
/** @typedef Page */
|
|
1808
|
-
/** @typedef RedirectDevice */
|
|
1809
|
-
/** @typedef Redirects */
|
|
1810
|
-
/** @typedef ShortLinkList */
|
|
1811
|
-
/** @typedef ShortLinkReq */
|
|
1812
|
-
/** @typedef ShortLinkRes */
|
|
1813
|
-
/** @typedef SocialMediaTags */
|
|
1814
|
-
/** @typedef UrlInfo */
|
|
1815
|
-
/** @typedef WebRedirect */
|
|
1816
|
-
|
|
1817
|
-
/** @typedef AddThemeRequestSchema */
|
|
1818
|
-
/** @typedef AllAvailablePageSchema */
|
|
1819
|
-
/** @typedef AssetsSchema */
|
|
1820
|
-
/** @typedef AvailablePagePredicate */
|
|
1821
|
-
/** @typedef AvailablePageRoutePredicate */
|
|
1822
|
-
/** @typedef AvailablePageSchema */
|
|
1823
|
-
/** @typedef AvailablePageSchemaSections */
|
|
1824
|
-
/** @typedef AvailablePageScreenPredicate */
|
|
1825
|
-
/** @typedef AvailablePageSectionMetaAttributes */
|
|
1826
|
-
/** @typedef AvailablePageSeo */
|
|
1827
|
-
/** @typedef AvailablePageUserPredicate */
|
|
1828
|
-
/** @typedef availableSectionSchema */
|
|
1829
|
-
/** @typedef BlitzkriegApiErrorSchema */
|
|
1830
|
-
/** @typedef BlitzkriegInternalServerErrorSchema */
|
|
1831
|
-
/** @typedef BlitzkriegNotFoundSchema */
|
|
1832
|
-
/** @typedef Blocks */
|
|
1833
|
-
/** @typedef BlocksProps */
|
|
1834
|
-
/** @typedef Bold */
|
|
1835
|
-
/** @typedef Colors */
|
|
1836
|
-
/** @typedef CommonJs */
|
|
1837
|
-
/** @typedef Config */
|
|
1838
|
-
/** @typedef ConfigPage */
|
|
1839
|
-
/** @typedef Css */
|
|
1840
|
-
/** @typedef Custom */
|
|
1841
|
-
/** @typedef Font */
|
|
1842
|
-
/** @typedef FontsSchema */
|
|
1843
|
-
/** @typedef FontsSchemaItems */
|
|
1844
|
-
/** @typedef FontsSchemaItemsFiles */
|
|
1845
|
-
/** @typedef GlobalSchema */
|
|
1846
|
-
/** @typedef GlobalSchemaProps */
|
|
1847
|
-
/** @typedef Images */
|
|
1848
|
-
/** @typedef Information */
|
|
1849
|
-
/** @typedef Light */
|
|
1850
|
-
/** @typedef ListSchemaItem */
|
|
1851
|
-
/** @typedef Medium */
|
|
1852
|
-
/** @typedef PaginationSchema */
|
|
1853
|
-
/** @typedef Preset */
|
|
1854
|
-
/** @typedef Regular */
|
|
1855
|
-
/** @typedef Sections */
|
|
1856
|
-
/** @typedef SemiBold */
|
|
1857
|
-
/** @typedef Src */
|
|
1858
|
-
/** @typedef ThemesListingResponseSchema */
|
|
1859
|
-
/** @typedef ThemesSchema */
|
|
1860
|
-
/** @typedef UmdJs */
|
|
1861
|
-
/** @typedef UpgradableThemeSchema */
|
|
1862
|
-
/** @typedef Variants */
|
|
1863
|
-
|
|
1864
|
-
/** @typedef Accountkit */
|
|
1865
|
-
/** @typedef ArchiveUserRequestSchema */
|
|
1866
|
-
/** @typedef ArchiveUserSuccess */
|
|
1867
|
-
/** @typedef AuthenticationApiErrorSchema */
|
|
1868
|
-
/** @typedef AuthenticationInternalServerErrorSchema */
|
|
1869
|
-
/** @typedef AuthSuccess */
|
|
1870
|
-
/** @typedef AuthSuccessUser */
|
|
1871
|
-
/** @typedef AuthSuccessUserDebug */
|
|
1872
|
-
/** @typedef AuthSuccessUserEmails */
|
|
1873
|
-
/** @typedef BlockUserRequestSchema */
|
|
1874
|
-
/** @typedef BlockUserSuccess */
|
|
1875
|
-
/** @typedef CodeRequestBodySchema */
|
|
1876
|
-
/** @typedef CreateUserGroupSchema */
|
|
1877
|
-
/** @typedef CreateUserRequestSchema */
|
|
1878
|
-
/** @typedef CreateUserResponseSchema */
|
|
1879
|
-
/** @typedef CreateUserSessionRequestSchema */
|
|
1880
|
-
/** @typedef CreateUserSessionResponseSchema */
|
|
1881
|
-
/** @typedef CustomerListResponseSchema */
|
|
1882
|
-
/** @typedef DeleteAccountConsent */
|
|
1883
|
-
/** @typedef DeleteAccountReasons */
|
|
1884
|
-
/** @typedef DeleteApplicationUserRequestSchema */
|
|
1885
|
-
/** @typedef DeleteUserSuccess */
|
|
1886
|
-
/** @typedef EditEmailRequestSchema */
|
|
1887
|
-
/** @typedef EditMobileRequestSchema */
|
|
1888
|
-
/** @typedef EditProfileMobileSchema */
|
|
1889
|
-
/** @typedef EditProfileRequestSchema */
|
|
1890
|
-
/** @typedef Email */
|
|
1891
|
-
/** @typedef EmailOtpSuccess */
|
|
1892
|
-
/** @typedef Facebook */
|
|
1893
|
-
/** @typedef FlashCard */
|
|
1894
|
-
/** @typedef ForgotPasswordRequestSchema */
|
|
1895
|
-
/** @typedef FormRegisterRequestSchema */
|
|
1896
|
-
/** @typedef FormRegisterRequestSchemaPhone */
|
|
1897
|
-
/** @typedef Google */
|
|
1898
|
-
/** @typedef HasPasswordSuccess */
|
|
1899
|
-
/** @typedef Login */
|
|
1900
|
-
/** @typedef LoginSuccess */
|
|
1901
|
-
/** @typedef LogoutSuccess */
|
|
1902
|
-
/** @typedef LookAndFeel */
|
|
1903
|
-
/** @typedef MetaSchema */
|
|
1904
|
-
/** @typedef NotFoundSchema */
|
|
1905
|
-
/** @typedef OAuthRequestAppleSchema */
|
|
1906
|
-
/** @typedef OAuthRequestAppleSchemaOauth */
|
|
1907
|
-
/** @typedef OAuthRequestAppleSchemaProfile */
|
|
1908
|
-
/** @typedef OAuthRequestSchema */
|
|
1909
|
-
/** @typedef OAuthRequestSchemaOauth2 */
|
|
1910
|
-
/** @typedef OAuthRequestSchemaProfile */
|
|
1911
|
-
/** @typedef OtpSuccess */
|
|
1912
|
-
/** @typedef PaginationSchema */
|
|
1913
|
-
/** @typedef PasswordLoginRequestSchema */
|
|
1914
|
-
/** @typedef PhoneNumber */
|
|
1915
|
-
/** @typedef PlatformEmail */
|
|
1916
|
-
/** @typedef PlatformMobile */
|
|
1917
|
-
/** @typedef PlatformSchema */
|
|
1918
|
-
/** @typedef ProfileEditSuccess */
|
|
1919
|
-
/** @typedef ProfileEditSuccessSchema */
|
|
1920
|
-
/** @typedef RegisterFormSuccess */
|
|
1921
|
-
/** @typedef RegisterRequiredFields */
|
|
1922
|
-
/** @typedef RegisterRequiredFieldsEmail */
|
|
1923
|
-
/** @typedef RegisterRequiredFieldsMobile */
|
|
1924
|
-
/** @typedef RequiredFields */
|
|
1925
|
-
/** @typedef ResetPasswordSuccess */
|
|
1926
|
-
/** @typedef SendEmailOtpRequestSchema */
|
|
1927
|
-
/** @typedef SendEmailVerifyLinkSuccess */
|
|
1928
|
-
/** @typedef SendMobileOtpRequestSchema */
|
|
1929
|
-
/** @typedef SendMobileVerifyLinkSuccess */
|
|
1930
|
-
/** @typedef SendOtpRequestSchema */
|
|
1931
|
-
/** @typedef SendOtpResponse */
|
|
1932
|
-
/** @typedef SendResetPasswordEmailRequestSchema */
|
|
1933
|
-
/** @typedef SendResetPasswordMobileRequestSchema */
|
|
1934
|
-
/** @typedef SendVerificationLinkMobileRequestSchema */
|
|
1935
|
-
/** @typedef SessionDeleteResponseSchema */
|
|
1936
|
-
/** @typedef SessionExpiry */
|
|
1937
|
-
/** @typedef SessionListResponseInfo */
|
|
1938
|
-
/** @typedef SessionListResponseSchema */
|
|
1939
|
-
/** @typedef SessionListSuccess */
|
|
1940
|
-
/** @typedef Social */
|
|
1941
|
-
/** @typedef SocialTokens */
|
|
1942
|
-
/** @typedef TokenRequestBodySchema */
|
|
1943
|
-
/** @typedef UnauthenticatedSchema */
|
|
1944
|
-
/** @typedef UnauthorizedSchema */
|
|
1945
|
-
/** @typedef UnDeleteUserRequestSchema */
|
|
1946
|
-
/** @typedef UnDeleteUserSuccess */
|
|
1947
|
-
/** @typedef UpdatePasswordRequestSchema */
|
|
1948
|
-
/** @typedef UpdateUserGroupSchema */
|
|
1949
|
-
/** @typedef UpdateUserRequestSchema */
|
|
1950
|
-
/** @typedef UserEmails */
|
|
1951
|
-
/** @typedef UserGroupListResponseSchema */
|
|
1952
|
-
/** @typedef UserGroupResponseSchema */
|
|
1953
|
-
/** @typedef UserObjectSchema */
|
|
1954
|
-
/** @typedef UserPhoneNumbers */
|
|
1955
|
-
/** @typedef UserSchema */
|
|
1956
|
-
/** @typedef UserSearchResponseSchema */
|
|
1957
|
-
/** @typedef VerifyEmailOtpRequestSchema */
|
|
1958
|
-
/** @typedef VerifyEmailOTPSuccess */
|
|
1959
|
-
/** @typedef VerifyEmailSuccess */
|
|
1960
|
-
/** @typedef VerifyMobileOTPSuccess */
|
|
1961
|
-
/** @typedef VerifyOtpRequestSchema */
|
|
1962
|
-
/** @typedef VerifyOtpSuccess */
|
|
1963
|
-
|
|
1964
|
-
/** @typedef Association */
|
|
1965
|
-
/** @typedef AuthMeta */
|
|
1966
|
-
/** @typedef EventConfig */
|
|
1967
|
-
/** @typedef EventConfigBase */
|
|
1968
|
-
/** @typedef EventConfigList */
|
|
1969
|
-
/** @typedef EventConfigResponse */
|
|
1970
|
-
/** @typedef EventPayload */
|
|
1971
|
-
/** @typedef EventProcessedStatus */
|
|
1972
|
-
/** @typedef Page */
|
|
1973
|
-
/** @typedef SubscriberConfig */
|
|
1974
|
-
/** @typedef SubscriberConfigList */
|
|
1975
|
-
/** @typedef SubscriberEvent */
|
|
1976
|
-
/** @typedef SubscriberResponse */
|
|
1977
|
-
|
|
1978
96
|
module.exports = PlatformApplicationClient;
|