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