@gofynd/fdk-client-javascript 0.1.35 → 0.1.37
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 +1 -1
- package/documentation/application/CART.md +272 -249
- package/documentation/application/CATALOG.md +417 -413
- package/documentation/application/COMMON.md +4 -0
- package/documentation/application/COMMUNICATION.md +4 -0
- package/documentation/application/CONFIGURATION.md +4 -0
- package/documentation/application/CONTENT.md +7 -20
- package/documentation/application/FILESTORAGE.md +85 -0
- package/documentation/application/LEAD.md +6 -2
- package/documentation/application/LOGISTIC.md +427 -101
- package/documentation/application/ORDER.md +292 -288
- package/documentation/application/PAYMENT.md +445 -259
- package/documentation/application/POSCART.md +309 -286
- package/documentation/application/README.md +1 -1
- package/documentation/application/REWARDS.md +153 -160
- package/documentation/application/SHARE.md +4 -0
- package/documentation/application/THEME.md +4 -0
- package/documentation/application/USER.md +4 -0
- package/documentation/platform/ANALYTICS.md +4 -0
- package/documentation/platform/AUDITTRAIL.md +6 -2
- package/documentation/platform/BILLING.md +4 -0
- package/documentation/platform/CART.md +476 -459
- package/documentation/platform/CATALOG.md +4138 -2968
- package/documentation/platform/COMMON.md +4 -0
- package/documentation/platform/COMMUNICATION.md +4 -0
- package/documentation/platform/COMPANYPROFILE.md +258 -206
- package/documentation/platform/CONFIGURATION.md +4 -0
- package/documentation/platform/CONTENT.md +8 -21
- package/documentation/platform/DISCOUNT.md +4 -0
- package/documentation/platform/FILESTORAGE.md +85 -0
- package/documentation/platform/INVENTORY.md +4 -0
- package/documentation/platform/LEAD.md +6 -2
- package/documentation/platform/ORDER.md +6298 -1448
- package/documentation/platform/PARTNER.md +12 -8
- package/documentation/platform/PAYMENT.md +107 -103
- package/documentation/platform/README.md +2 -2
- package/documentation/platform/REWARDS.md +219 -152
- package/documentation/platform/SHARE.md +4 -0
- package/documentation/platform/THEME.md +4 -0
- package/documentation/platform/USER.md +4 -0
- package/documentation/platform/WEBHOOK.md +4 -0
- package/documentation/public/CONFIGURATION.md +4 -0
- package/documentation/public/INVENTORY.md +4 -0
- package/documentation/public/WEBHOOK.md +4 -0
- package/package.json +2 -2
- package/sdk/application/ApplicationAPIClient.js +3 -0
- package/sdk/application/ApplicationClient.d.ts +1 -0
- package/sdk/application/ApplicationClient.js +11 -1
- package/sdk/application/ApplicationConfig.d.ts +1 -0
- package/sdk/application/ApplicationConfig.js +1 -0
- package/sdk/application/ApplicationModels.d.ts +94 -85
- package/sdk/application/ApplicationModels.js +1909 -1792
- package/sdk/application/client/CartApplicationClient.d.ts +36 -36
- package/sdk/application/client/CatalogApplicationClient.d.ts +39 -39
- package/sdk/application/client/CatalogApplicationClient.js +16 -16
- package/sdk/application/client/CommonApplicationClient.d.ts +2 -2
- package/sdk/application/client/CommunicationApplicationClient.d.ts +5 -5
- package/sdk/application/client/ConfigurationApplicationClient.d.ts +17 -17
- package/sdk/application/client/ContentApplicationClient.d.ts +19 -19
- package/sdk/application/client/FileStorageApplicationClient.d.ts +14 -6
- package/sdk/application/client/FileStorageApplicationClient.js +2 -0
- package/sdk/application/client/LeadApplicationClient.d.ts +10 -10
- package/sdk/application/client/LogisticApplicationClient.d.ts +32 -21
- package/sdk/application/client/LogisticApplicationClient.js +62 -27
- package/sdk/application/client/OrderApplicationClient.d.ts +15 -15
- package/sdk/application/client/OrderApplicationClient.js +1 -1
- package/sdk/application/client/PaymentApplicationClient.d.ts +79 -57
- package/sdk/application/client/PaymentApplicationClient.js +66 -0
- package/sdk/application/client/PosCartApplicationClient.d.ts +38 -38
- package/sdk/application/client/RewardsApplicationClient.d.ts +34 -34
- package/sdk/application/client/RewardsApplicationClient.js +77 -77
- package/sdk/application/client/ShareApplicationClient.d.ts +8 -8
- package/sdk/application/client/ThemeApplicationClient.d.ts +4 -4
- package/sdk/application/client/UserApplicationClient.d.ts +63 -63
- package/sdk/application/models/CatalogValidator.d.ts +1 -1
- package/sdk/application/models/CatalogValidator.js +2 -2
- package/sdk/application/models/LogisticValidator.d.ts +2 -1
- package/sdk/application/models/LogisticValidator.js +11 -6
- package/sdk/application/models/PaymentValidator.d.ts +2 -0
- package/sdk/application/models/PaymentValidator.js +12 -0
- package/sdk/application/models/RewardsValidator.d.ts +3 -3
- package/sdk/application/models/RewardsValidator.js +12 -12
- package/sdk/common/AxiosHelper.js +1 -1
- package/sdk/common/Constant.d.ts +9 -0
- package/sdk/common/Constant.js +11 -0
- package/sdk/platform/PlatformApplicationClient.d.ts +7962 -6505
- package/sdk/platform/PlatformApplicationClient.js +4377 -3635
- package/sdk/platform/PlatformApplicationModels.d.ts +26 -31
- package/sdk/platform/PlatformApplicationModels.js +5530 -4134
- package/sdk/platform/PlatformClient.d.ts +3495 -2780
- package/sdk/platform/PlatformClient.js +3985 -3108
- package/sdk/platform/PlatformModels.d.ts +354 -273
- package/sdk/platform/PlatformModels.js +5635 -4211
- package/sdk/platform/client/AnalyticsPlatformClient.d.ts +5 -5
- package/sdk/platform/client/AuditTrailPlatformClient.d.ts +1 -1
- package/sdk/platform/client/BillingPlatformClient.d.ts +4 -4
- package/sdk/platform/client/CatalogPlatformClient.d.ts +222 -154
- package/sdk/platform/client/CatalogPlatformClient.js +473 -295
- package/sdk/platform/client/CompanyProfilePlatformClient.d.ts +8 -8
- package/sdk/platform/client/ConfigurationPlatformClient.d.ts +9 -9
- package/sdk/platform/client/DiscountPlatformClient.d.ts +4 -4
- package/sdk/platform/client/FileStoragePlatformClient.d.ts +20 -4
- package/sdk/platform/client/FileStoragePlatformClient.js +49 -0
- package/sdk/platform/client/InventoryPlatformClient.d.ts +3 -3
- package/sdk/platform/client/LeadPlatformClient.d.ts +6 -6
- package/sdk/platform/client/OrderPlatformClient.d.ts +557 -131
- package/sdk/platform/client/OrderPlatformClient.js +1551 -247
- package/sdk/platform/client/PaymentPlatformClient.d.ts +4 -4
- package/sdk/platform/client/WebhookPlatformClient.d.ts +2 -2
- package/sdk/platform/models/CatalogValidator.d.ts +26 -22
- package/sdk/platform/models/CatalogValidator.js +109 -72
- package/sdk/platform/models/OrderValidator.d.ts +43 -11
- package/sdk/platform/models/OrderValidator.js +312 -51
- package/sdk/public/client/ConfigurationPublicClient.d.ts +2 -2
- package/sdk/public/client/InventoryPublicClient.d.ts +7 -7
- package/sdk/public/client/WebhookPublicClient.d.ts +3 -3
- package/tests/common/schema/action-url.json +15 -0
- package/tests/common/schema/url-action.json +16 -0
|
@@ -2,10 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
+
|
|
5
6
|
##### [Back to Platform docs](./README.md)
|
|
6
7
|
|
|
7
8
|
## Share Methods
|
|
8
9
|
Short link and QR Code
|
|
10
|
+
|
|
9
11
|
* [createShortLink](#createshortlink)
|
|
10
12
|
* [getShortLinks](#getshortlinks)
|
|
11
13
|
* [getShortLinkByHash](#getshortlinkbyhash)
|
|
@@ -16,6 +18,8 @@ Short link and QR Code
|
|
|
16
18
|
## Methods with example and description
|
|
17
19
|
|
|
18
20
|
|
|
21
|
+
|
|
22
|
+
|
|
19
23
|
### createShortLink
|
|
20
24
|
Create short link
|
|
21
25
|
|
|
@@ -2,10 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
+
|
|
5
6
|
##### [Back to Platform docs](./README.md)
|
|
6
7
|
|
|
7
8
|
## Theme Methods
|
|
8
9
|
Responsible for themes
|
|
10
|
+
|
|
9
11
|
* [getAllPages](#getallpages)
|
|
10
12
|
* [createPage](#createpage)
|
|
11
13
|
* [updateMultiplePages](#updatemultiplepages)
|
|
@@ -36,6 +38,8 @@ Responsible for themes
|
|
|
36
38
|
## Methods with example and description
|
|
37
39
|
|
|
38
40
|
|
|
41
|
+
|
|
42
|
+
|
|
39
43
|
### getAllPages
|
|
40
44
|
Get all pages of a theme
|
|
41
45
|
|
|
@@ -2,10 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
+
|
|
5
6
|
##### [Back to Platform docs](./README.md)
|
|
6
7
|
|
|
7
8
|
## User Methods
|
|
8
9
|
Authentication Service
|
|
10
|
+
|
|
9
11
|
* [getCustomers](#getcustomers)
|
|
10
12
|
* [searchUsers](#searchusers)
|
|
11
13
|
* [createUser](#createuser)
|
|
@@ -24,6 +26,8 @@ Authentication Service
|
|
|
24
26
|
## Methods with example and description
|
|
25
27
|
|
|
26
28
|
|
|
29
|
+
|
|
30
|
+
|
|
27
31
|
### getCustomers
|
|
28
32
|
Get a list of customers
|
|
29
33
|
|
|
@@ -2,10 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
+
|
|
5
6
|
##### [Back to Platform docs](./README.md)
|
|
6
7
|
|
|
7
8
|
## Webhook Methods
|
|
8
9
|
Webhook dispatcher with retry and one event to many subscriber vice versa
|
|
10
|
+
|
|
9
11
|
* [getSubscribersByCompany](#getsubscribersbycompany)
|
|
10
12
|
* [registerSubscriberToEvent](#registersubscribertoevent)
|
|
11
13
|
* [updateSubscriberConfig](#updatesubscriberconfig)
|
|
@@ -18,6 +20,8 @@ Webhook dispatcher with retry and one event to many subscriber vice versa
|
|
|
18
20
|
## Methods with example and description
|
|
19
21
|
|
|
20
22
|
|
|
23
|
+
|
|
24
|
+
|
|
21
25
|
### getSubscribersByCompany
|
|
22
26
|
Get Subscribers By Company ID
|
|
23
27
|
|
|
@@ -2,10 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
+
|
|
5
6
|
##### [Back to Public docs](./README.md)
|
|
6
7
|
|
|
7
8
|
## Configuration Methods
|
|
8
9
|
Application configuration apis
|
|
10
|
+
|
|
9
11
|
* [searchApplication](#searchapplication)
|
|
10
12
|
* [getLocations](#getlocations)
|
|
11
13
|
|
|
@@ -14,6 +16,8 @@ Application configuration apis
|
|
|
14
16
|
## Methods with example and description
|
|
15
17
|
|
|
16
18
|
|
|
19
|
+
|
|
20
|
+
|
|
17
21
|
### searchApplication
|
|
18
22
|
Search Application
|
|
19
23
|
|
|
@@ -2,10 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
+
|
|
5
6
|
##### [Back to Public docs](./README.md)
|
|
6
7
|
|
|
7
8
|
## Inventory Methods
|
|
8
9
|
|
|
10
|
+
|
|
9
11
|
* [getJobCodesMetrics](#getjobcodesmetrics)
|
|
10
12
|
* [saveJobCodesMetrics](#savejobcodesmetrics)
|
|
11
13
|
* [getConfigByApiKey](#getconfigbyapikey)
|
|
@@ -18,6 +20,8 @@
|
|
|
18
20
|
## Methods with example and description
|
|
19
21
|
|
|
20
22
|
|
|
23
|
+
|
|
24
|
+
|
|
21
25
|
### getJobCodesMetrics
|
|
22
26
|
Find all the JobCodes from Metrics Collection based on the field Values
|
|
23
27
|
|
|
@@ -2,10 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
+
|
|
5
6
|
##### [Back to Public docs](./README.md)
|
|
6
7
|
|
|
7
8
|
## Webhook Methods
|
|
8
9
|
Webhook dispatcher with retry and one event to many subscriber vice versa
|
|
10
|
+
|
|
9
11
|
* [fetchAllWebhookEvents](#fetchallwebhookevents)
|
|
10
12
|
* [queryWebhookEventDetails](#querywebhookeventdetails)
|
|
11
13
|
|
|
@@ -14,6 +16,8 @@ Webhook dispatcher with retry and one event to many subscriber vice versa
|
|
|
14
16
|
## Methods with example and description
|
|
15
17
|
|
|
16
18
|
|
|
19
|
+
|
|
20
|
+
|
|
17
21
|
### fetchAllWebhookEvents
|
|
18
22
|
Get All Webhook Events
|
|
19
23
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gofynd/fdk-client-javascript",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.37",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"axios": "^0.21.1",
|
|
23
23
|
"crypto-js": "^4.0.0",
|
|
24
|
-
"joi": "
|
|
24
|
+
"joi": "17.4.0",
|
|
25
25
|
"query-string": "^6.14.1",
|
|
26
26
|
"loglevel": "^1.8.0",
|
|
27
27
|
"camelcase": "^6.2.0"
|
|
@@ -25,6 +25,9 @@ class APIClient {
|
|
|
25
25
|
"x-location-detail": JSON.stringify(conf.locationDetails),
|
|
26
26
|
};
|
|
27
27
|
}
|
|
28
|
+
if (conf.currencyCode) {
|
|
29
|
+
headers = { ...headers, "x-currency-code": conf.currencyCode };
|
|
30
|
+
}
|
|
28
31
|
const extraHeaders = conf.extraHeaders.reduce((acc, curr) => {
|
|
29
32
|
acc = { ...acc, ...curr };
|
|
30
33
|
return acc;
|
|
@@ -20,6 +20,7 @@ declare class ApplicationClient {
|
|
|
20
20
|
logistic: Logistic;
|
|
21
21
|
setCookie(cookie: any): void;
|
|
22
22
|
setLocationDetails(locationDetails: any): void;
|
|
23
|
+
setCurrencyCode(currencyCode: any): void;
|
|
23
24
|
setExtraHeaders(header: any): void;
|
|
24
25
|
}
|
|
25
26
|
import Catalog = require("./client/CatalogApplicationClient");
|
|
@@ -69,7 +69,17 @@ class ApplicationClient {
|
|
|
69
69
|
if (error) {
|
|
70
70
|
throw new FDKClientValidationError(error);
|
|
71
71
|
}
|
|
72
|
-
this.config.locationDetails =
|
|
72
|
+
this.config.locationDetails = {
|
|
73
|
+
...this.config.locationDetails,
|
|
74
|
+
...locationDetails,
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
setCurrencyCode(currencyCode) {
|
|
79
|
+
if (typeof currencyCode !== "string") {
|
|
80
|
+
throw new FDKClientValidationError("Currency code should be string only");
|
|
81
|
+
}
|
|
82
|
+
this.config.currencyCode = currencyCode;
|
|
73
83
|
}
|
|
74
84
|
|
|
75
85
|
setExtraHeaders(header) {
|
|
@@ -2,29 +2,29 @@ export class LocationValidator {
|
|
|
2
2
|
static validateLocationObj(): any;
|
|
3
3
|
}
|
|
4
4
|
export class Validator {
|
|
5
|
-
static
|
|
6
|
-
static
|
|
5
|
+
static Price(): any;
|
|
6
|
+
static ProductListingPrice(): any;
|
|
7
7
|
static ProductListingActionPage(): any;
|
|
8
8
|
static ProductListingAction(): any;
|
|
9
|
+
static Meta(): any;
|
|
10
|
+
static Media(): any;
|
|
9
11
|
static ProductBrand(): any;
|
|
10
|
-
static Price(): any;
|
|
11
|
-
static ProductListingPrice(): any;
|
|
12
|
-
static ApplicationItemSEO(): any;
|
|
13
|
-
static NetQuantity(): any;
|
|
14
|
-
static CustomMetaFields(): any;
|
|
15
12
|
static ProductDetailAttribute(): any;
|
|
16
13
|
static ProductDetailGroupedAttribute(): any;
|
|
14
|
+
static CustomMetaFields(): any;
|
|
17
15
|
static ApplicationItemMOQ(): any;
|
|
16
|
+
static ApplicationItemSEO(): any;
|
|
17
|
+
static NetQuantity(): any;
|
|
18
18
|
static ProductDetail(): any;
|
|
19
19
|
static ErrorResponse(): any;
|
|
20
|
-
static ProductSizeStores(): any;
|
|
21
20
|
static Dimension(): any;
|
|
22
21
|
static Weight(): any;
|
|
23
22
|
static ProductSize(): any;
|
|
23
|
+
static SizeChartValues(): any;
|
|
24
24
|
static ColumnHeader(): any;
|
|
25
25
|
static ColumnHeaders(): any;
|
|
26
|
-
static SizeChartValues(): any;
|
|
27
26
|
static SizeChart(): any;
|
|
27
|
+
static ProductSizeStores(): any;
|
|
28
28
|
static ProductSizes(): any;
|
|
29
29
|
static AttributeDetail(): any;
|
|
30
30
|
static AttributeMetadata(): any;
|
|
@@ -34,10 +34,10 @@ export class Validator {
|
|
|
34
34
|
static ProductVariantItemResponse(): any;
|
|
35
35
|
static ProductVariantResponse(): any;
|
|
36
36
|
static ProductVariantsResponse(): any;
|
|
37
|
-
static Seller(): any;
|
|
38
37
|
static CompanyDetail(): any;
|
|
39
38
|
static ProductStockPrice(): any;
|
|
40
39
|
static StoreDetail(): any;
|
|
40
|
+
static Seller(): any;
|
|
41
41
|
static ProductStockStatusItem(): any;
|
|
42
42
|
static ProductStockStatusResponse(): any;
|
|
43
43
|
static ProductStockPolling(): any;
|
|
@@ -52,13 +52,13 @@ export class Validator {
|
|
|
52
52
|
static BrandItem(): any;
|
|
53
53
|
static BrandListingResponse(): any;
|
|
54
54
|
static BrandDetailResponse(): any;
|
|
55
|
-
static
|
|
55
|
+
static DepartmentIdentifier(): any;
|
|
56
56
|
static ThirdLevelChild(): any;
|
|
57
57
|
static SecondLevelChild(): any;
|
|
58
58
|
static Child(): any;
|
|
59
|
+
static CategoryBanner(): any;
|
|
59
60
|
static CategoryItems(): any;
|
|
60
61
|
static DepartmentCategoryTree(): any;
|
|
61
|
-
static DepartmentIdentifier(): any;
|
|
62
62
|
static CategoryListingResponse(): any;
|
|
63
63
|
static CategoryMetaResponse(): any;
|
|
64
64
|
static HomeListingResponse(): any;
|
|
@@ -92,37 +92,38 @@ export class Validator {
|
|
|
92
92
|
static StoreTiming(): any;
|
|
93
93
|
static StoreDetails(): any;
|
|
94
94
|
static UserDetail(): any;
|
|
95
|
-
static ProductGroupPrice(): any;
|
|
96
95
|
static Size(): any;
|
|
96
|
+
static ProductGroupPrice(): any;
|
|
97
97
|
static ProductDetails(): any;
|
|
98
98
|
static ProductInGroup(): any;
|
|
99
99
|
static ProductGroupingModel(): any;
|
|
100
100
|
static ProductBundle(): any;
|
|
101
|
+
static ProductStockPriceV2(): any;
|
|
102
|
+
static DetailsSchemaV2(): any;
|
|
103
|
+
static SellerGroupAttributes(): any;
|
|
104
|
+
static MarketPlaceSttributesSchemaV2(): any;
|
|
105
|
+
static ProductStockUnitPriceV2(): any;
|
|
101
106
|
static ReturnConfigSchemaV2(): any;
|
|
102
107
|
static StoreV2(): any;
|
|
108
|
+
static SellerV2(): any;
|
|
103
109
|
static ProductSetDistributionSizeV2(): any;
|
|
104
110
|
static ProductSetDistributionV2(): any;
|
|
105
111
|
static ProductSetV2(): any;
|
|
106
|
-
static ProductStockPriceV2(): any;
|
|
107
|
-
static StrategyWiseListingSchemaV2(): any;
|
|
108
|
-
static ProductStockUnitPriceV2(): any;
|
|
109
112
|
static ArticleAssignmentV2(): any;
|
|
110
|
-
static
|
|
111
|
-
static DetailsSchemaV2(): any;
|
|
112
|
-
static SellerGroupAttributes(): any;
|
|
113
|
-
static MarketPlaceSttributesSchemaV2(): any;
|
|
113
|
+
static StrategyWiseListingSchemaV2(): any;
|
|
114
114
|
static ProductSizePriceResponseV2(): any;
|
|
115
115
|
static ProductSizeSellerFilterSchemaV2(): any;
|
|
116
116
|
static ProductSizeSellersResponseV2(): any;
|
|
117
|
-
static
|
|
117
|
+
static CartCurrency(): any;
|
|
118
|
+
static PaymentSelectionLock(): any;
|
|
119
|
+
static PromiseTimestamp(): any;
|
|
120
|
+
static PromiseFormatted(): any;
|
|
121
|
+
static ShipmentPromise(): any;
|
|
118
122
|
static CouponBreakup(): any;
|
|
119
|
-
static
|
|
123
|
+
static LoyaltyPoints(): any;
|
|
120
124
|
static DisplayBreakup(): any;
|
|
125
|
+
static RawBreakup(): any;
|
|
121
126
|
static CartBreakup(): any;
|
|
122
|
-
static PromiseFormatted(): any;
|
|
123
|
-
static PromiseTimestamp(): any;
|
|
124
|
-
static ShipmentPromise(): any;
|
|
125
|
-
static PaymentSelectionLock(): any;
|
|
126
127
|
static BaseInfo(): any;
|
|
127
128
|
static BasePrice(): any;
|
|
128
129
|
static ArticlePriceInfo(): any;
|
|
@@ -132,14 +133,14 @@ export class Validator {
|
|
|
132
133
|
static ActionQuery(): any;
|
|
133
134
|
static ProductAction(): any;
|
|
134
135
|
static CartProduct(): any;
|
|
135
|
-
static CartProductIdentifer(): any;
|
|
136
136
|
static ProductPrice(): any;
|
|
137
137
|
static ProductPriceInfo(): any;
|
|
138
|
+
static Ownership(): any;
|
|
138
139
|
static AppliedPromotion(): any;
|
|
139
|
-
static PromoMeta(): any;
|
|
140
140
|
static ProductAvailability(): any;
|
|
141
|
+
static CartProductIdentifer(): any;
|
|
142
|
+
static PromoMeta(): any;
|
|
141
143
|
static CartProductInfo(): any;
|
|
142
|
-
static CartCurrency(): any;
|
|
143
144
|
static CartDetailResponse(): any;
|
|
144
145
|
static AddProductCart(): any;
|
|
145
146
|
static AddCartRequest(): any;
|
|
@@ -185,10 +186,10 @@ export class Validator {
|
|
|
185
186
|
static PromotionOffer(): any;
|
|
186
187
|
static PromotionOffersResponse(): any;
|
|
187
188
|
static OperationErrorResponse(): any;
|
|
188
|
-
static CurrencyInfo(): any;
|
|
189
189
|
static LadderPrice(): any;
|
|
190
190
|
static LadderOfferItem(): any;
|
|
191
191
|
static LadderPriceOffer(): any;
|
|
192
|
+
static CurrencyInfo(): any;
|
|
192
193
|
static LadderPriceOffers(): any;
|
|
193
194
|
static ApplicationResponse(): any;
|
|
194
195
|
static Currency(): any;
|
|
@@ -425,7 +426,6 @@ export class Validator {
|
|
|
425
426
|
static Action(): any;
|
|
426
427
|
static ActionPage(): any;
|
|
427
428
|
static NavigationReference(): any;
|
|
428
|
-
static SubNavigationReference(): any;
|
|
429
429
|
static LandingPage(): any;
|
|
430
430
|
static ConfigurationSchema(): any;
|
|
431
431
|
static SlideshowMedia(): any;
|
|
@@ -665,6 +665,11 @@ export class Validator {
|
|
|
665
665
|
static ResendOrCancelPaymentRequest(): any;
|
|
666
666
|
static LinkStatus(): any;
|
|
667
667
|
static ResendOrCancelPaymentResponse(): any;
|
|
668
|
+
static renderHTMLRequest(): any;
|
|
669
|
+
static renderHTMLResponse(): any;
|
|
670
|
+
static ValidateVPARequest(): any;
|
|
671
|
+
static ValidateUPI(): any;
|
|
672
|
+
static ValidateVPAResponse(): any;
|
|
668
673
|
static TransferItemsDetails(): any;
|
|
669
674
|
static TransferModeDetails(): any;
|
|
670
675
|
static TransferModeResponse(): any;
|
|
@@ -708,44 +713,44 @@ export class Validator {
|
|
|
708
713
|
static RedirectToAggregatorResponse(): any;
|
|
709
714
|
static CreditDetail(): any;
|
|
710
715
|
static CheckCreditResponse(): any;
|
|
716
|
+
static MarketplaceInfo(): any;
|
|
711
717
|
static DeviceDetails(): any;
|
|
712
718
|
static KYCAddress(): any;
|
|
713
|
-
static BusinessDetails(): any;
|
|
714
719
|
static UserPersonalInfoInDetails(): any;
|
|
715
|
-
static
|
|
720
|
+
static BusinessDetails(): any;
|
|
716
721
|
static CustomerOnboardingRequest(): any;
|
|
717
722
|
static OnboardSummary(): any;
|
|
718
723
|
static CustomerOnboardingResponse(): any;
|
|
719
|
-
static
|
|
720
|
-
static
|
|
721
|
-
static
|
|
722
|
-
static
|
|
723
|
-
static
|
|
724
|
-
static
|
|
724
|
+
static BagsForReorderArticleAssignment(): any;
|
|
725
|
+
static BagsForReorder(): any;
|
|
726
|
+
static BreakupValues(): any;
|
|
727
|
+
static Invoice(): any;
|
|
728
|
+
static ShipmentStatus(): any;
|
|
729
|
+
static DeliveryAddress(): any;
|
|
725
730
|
static ShipmentPayment(): any;
|
|
731
|
+
static NestedTrackingDetails(): any;
|
|
732
|
+
static TrackingDetails(): any;
|
|
726
733
|
static CurrentStatus(): any;
|
|
734
|
+
static ItemBrand(): any;
|
|
735
|
+
static Item(): any;
|
|
727
736
|
static AppliedFreeArticles(): any;
|
|
728
737
|
static AppliedPromos(): any;
|
|
729
738
|
static Identifiers(): any;
|
|
730
739
|
static FinancialBreakup(): any;
|
|
731
|
-
static
|
|
732
|
-
static Item(): any;
|
|
740
|
+
static Prices(): any;
|
|
733
741
|
static Bags(): any;
|
|
742
|
+
static ShipmentTotalDetails(): any;
|
|
734
743
|
static FulfillingStore(): any;
|
|
735
|
-
static BreakupValues(): any;
|
|
736
|
-
static DeliveryAddress(): any;
|
|
737
744
|
static ShipmentUserInfo(): any;
|
|
738
|
-
static FulfillingCompany(): any;
|
|
739
|
-
static ShipmentStatus(): any;
|
|
740
|
-
static NestedTrackingDetails(): any;
|
|
741
|
-
static TrackingDetails(): any;
|
|
742
745
|
static TimeStampData(): any;
|
|
743
746
|
static Promise(): any;
|
|
744
|
-
static
|
|
747
|
+
static FulfillingCompany(): any;
|
|
745
748
|
static Shipments(): any;
|
|
746
|
-
static
|
|
747
|
-
static BagsForReorder(): any;
|
|
749
|
+
static UserInfo(): any;
|
|
748
750
|
static OrderSchema(): any;
|
|
751
|
+
static OrderPage(): any;
|
|
752
|
+
static OrderStatuses(): any;
|
|
753
|
+
static OrderFilters(): any;
|
|
749
754
|
static OrderList(): any;
|
|
750
755
|
static ApefaceApiError(): any;
|
|
751
756
|
static OrderById(): any;
|
|
@@ -763,41 +768,40 @@ export class Validator {
|
|
|
763
768
|
static ShipmentBagReasons(): any;
|
|
764
769
|
static ShipmentReason(): any;
|
|
765
770
|
static ShipmentReasons(): any;
|
|
766
|
-
static EntityReasonData(): any;
|
|
767
|
-
static EntitiesReasons(): any;
|
|
768
|
-
static ProductsReasonsFilters(): any;
|
|
769
771
|
static ProductsReasonsData(): any;
|
|
772
|
+
static ProductsReasonsFilters(): any;
|
|
770
773
|
static ProductsReasons(): any;
|
|
774
|
+
static EntityReasonData(): any;
|
|
775
|
+
static EntitiesReasons(): any;
|
|
771
776
|
static ReasonsData(): any;
|
|
772
777
|
static Products(): any;
|
|
773
|
-
static EntitiesDataUpdates(): any;
|
|
774
778
|
static ProductsDataUpdatesFilters(): any;
|
|
775
779
|
static ProductsDataUpdates(): any;
|
|
780
|
+
static EntitiesDataUpdates(): any;
|
|
776
781
|
static DataUpdates(): any;
|
|
777
782
|
static ShipmentsRequest(): any;
|
|
778
783
|
static StatuesRequest(): any;
|
|
779
784
|
static UpdateShipmentStatusRequest(): any;
|
|
780
785
|
static StatusesBodyResponse(): any;
|
|
781
786
|
static ShipmentApplicationStatusResponse(): any;
|
|
782
|
-
static
|
|
783
|
-
static CatalogueOrderRequest(): any;
|
|
787
|
+
static RewardsArticle(): any;
|
|
784
788
|
static CatalogueOrderResponse(): any;
|
|
785
|
-
static
|
|
786
|
-
static
|
|
789
|
+
static CatalogueOrderRequest(): any;
|
|
790
|
+
static PointsResponse(): any;
|
|
791
|
+
static ReferralDetailsUser(): any;
|
|
787
792
|
static Offer(): any;
|
|
793
|
+
static Schedule(): any;
|
|
794
|
+
static Error(): any;
|
|
795
|
+
static ShareMessages(): any;
|
|
796
|
+
static ReferralDetailsResponse(): any;
|
|
788
797
|
static OrderDiscountRequest(): any;
|
|
789
|
-
static OrderDiscountResponse(): any;
|
|
790
798
|
static OrderDiscountRuleBucket(): any;
|
|
791
|
-
static
|
|
792
|
-
static
|
|
793
|
-
static PointsResponse(): any;
|
|
799
|
+
static DiscountProperties(): any;
|
|
800
|
+
static OrderDiscountResponse(): any;
|
|
794
801
|
static RedeemReferralCodeRequest(): any;
|
|
795
802
|
static RedeemReferralCodeResponse(): any;
|
|
796
|
-
static
|
|
797
|
-
static
|
|
798
|
-
static RewardsArticle(): any;
|
|
799
|
-
static Schedule(): any;
|
|
800
|
-
static ShareMessages(): any;
|
|
803
|
+
static PointsHistoryResponse(): any;
|
|
804
|
+
static PointsHistory(): any;
|
|
801
805
|
static UpdateCartShipmentItem(): any;
|
|
802
806
|
static UpdateCartShipmentRequest(): any;
|
|
803
807
|
static Files(): any;
|
|
@@ -805,22 +809,27 @@ export class Validator {
|
|
|
805
809
|
static CartDeliveryModesResponse(): any;
|
|
806
810
|
static PickupStoreDetail(): any;
|
|
807
811
|
static StoreDetailsResponse(): any;
|
|
808
|
-
static
|
|
809
|
-
static
|
|
810
|
-
static
|
|
811
|
-
static
|
|
812
|
-
static
|
|
813
|
-
static
|
|
814
|
-
static
|
|
815
|
-
static
|
|
816
|
-
static
|
|
817
|
-
static
|
|
818
|
-
static
|
|
819
|
-
static
|
|
820
|
-
static
|
|
821
|
-
static
|
|
822
|
-
static
|
|
823
|
-
static
|
|
824
|
-
static
|
|
825
|
-
static
|
|
812
|
+
static PincodeErrorSchemaResponse(): any;
|
|
813
|
+
static PincodeParentsResponse(): any;
|
|
814
|
+
static CountryMetaResponse(): any;
|
|
815
|
+
static PincodeMetaResponse(): any;
|
|
816
|
+
static PincodeDataResponse(): any;
|
|
817
|
+
static PincodeApiResponse(): any;
|
|
818
|
+
static TATCategoryRequest(): any;
|
|
819
|
+
static TATArticlesRequest(): any;
|
|
820
|
+
static TATLocationDetailsRequest(): any;
|
|
821
|
+
static TATViewRequest(): any;
|
|
822
|
+
static TATErrorSchemaResponse(): any;
|
|
823
|
+
static TATFormattedResponse(): any;
|
|
824
|
+
static TATTimestampResponse(): any;
|
|
825
|
+
static TATPromiseResponse(): any;
|
|
826
|
+
static TATArticlesResponse(): any;
|
|
827
|
+
static TATLocationDetailsResponse(): any;
|
|
828
|
+
static TATViewResponse(): any;
|
|
829
|
+
static DP(): any;
|
|
830
|
+
static LogisticsResponse(): any;
|
|
831
|
+
static CountryEntityResponse(): any;
|
|
832
|
+
static CountryListResponse(): any;
|
|
833
|
+
static GetZoneFromPincodeViewRequest(): any;
|
|
834
|
+
static GetZoneFromPincodeViewResponse(): any;
|
|
826
835
|
}
|