@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.
Files changed (118) hide show
  1. package/README.md +1 -1
  2. package/documentation/application/CART.md +272 -249
  3. package/documentation/application/CATALOG.md +417 -413
  4. package/documentation/application/COMMON.md +4 -0
  5. package/documentation/application/COMMUNICATION.md +4 -0
  6. package/documentation/application/CONFIGURATION.md +4 -0
  7. package/documentation/application/CONTENT.md +7 -20
  8. package/documentation/application/FILESTORAGE.md +85 -0
  9. package/documentation/application/LEAD.md +6 -2
  10. package/documentation/application/LOGISTIC.md +427 -101
  11. package/documentation/application/ORDER.md +292 -288
  12. package/documentation/application/PAYMENT.md +445 -259
  13. package/documentation/application/POSCART.md +309 -286
  14. package/documentation/application/README.md +1 -1
  15. package/documentation/application/REWARDS.md +153 -160
  16. package/documentation/application/SHARE.md +4 -0
  17. package/documentation/application/THEME.md +4 -0
  18. package/documentation/application/USER.md +4 -0
  19. package/documentation/platform/ANALYTICS.md +4 -0
  20. package/documentation/platform/AUDITTRAIL.md +6 -2
  21. package/documentation/platform/BILLING.md +4 -0
  22. package/documentation/platform/CART.md +476 -459
  23. package/documentation/platform/CATALOG.md +4138 -2968
  24. package/documentation/platform/COMMON.md +4 -0
  25. package/documentation/platform/COMMUNICATION.md +4 -0
  26. package/documentation/platform/COMPANYPROFILE.md +258 -206
  27. package/documentation/platform/CONFIGURATION.md +4 -0
  28. package/documentation/platform/CONTENT.md +8 -21
  29. package/documentation/platform/DISCOUNT.md +4 -0
  30. package/documentation/platform/FILESTORAGE.md +85 -0
  31. package/documentation/platform/INVENTORY.md +4 -0
  32. package/documentation/platform/LEAD.md +6 -2
  33. package/documentation/platform/ORDER.md +6298 -1448
  34. package/documentation/platform/PARTNER.md +12 -8
  35. package/documentation/platform/PAYMENT.md +107 -103
  36. package/documentation/platform/README.md +2 -2
  37. package/documentation/platform/REWARDS.md +219 -152
  38. package/documentation/platform/SHARE.md +4 -0
  39. package/documentation/platform/THEME.md +4 -0
  40. package/documentation/platform/USER.md +4 -0
  41. package/documentation/platform/WEBHOOK.md +4 -0
  42. package/documentation/public/CONFIGURATION.md +4 -0
  43. package/documentation/public/INVENTORY.md +4 -0
  44. package/documentation/public/WEBHOOK.md +4 -0
  45. package/package.json +2 -2
  46. package/sdk/application/ApplicationAPIClient.js +3 -0
  47. package/sdk/application/ApplicationClient.d.ts +1 -0
  48. package/sdk/application/ApplicationClient.js +11 -1
  49. package/sdk/application/ApplicationConfig.d.ts +1 -0
  50. package/sdk/application/ApplicationConfig.js +1 -0
  51. package/sdk/application/ApplicationModels.d.ts +94 -85
  52. package/sdk/application/ApplicationModels.js +1909 -1792
  53. package/sdk/application/client/CartApplicationClient.d.ts +36 -36
  54. package/sdk/application/client/CatalogApplicationClient.d.ts +39 -39
  55. package/sdk/application/client/CatalogApplicationClient.js +16 -16
  56. package/sdk/application/client/CommonApplicationClient.d.ts +2 -2
  57. package/sdk/application/client/CommunicationApplicationClient.d.ts +5 -5
  58. package/sdk/application/client/ConfigurationApplicationClient.d.ts +17 -17
  59. package/sdk/application/client/ContentApplicationClient.d.ts +19 -19
  60. package/sdk/application/client/FileStorageApplicationClient.d.ts +14 -6
  61. package/sdk/application/client/FileStorageApplicationClient.js +2 -0
  62. package/sdk/application/client/LeadApplicationClient.d.ts +10 -10
  63. package/sdk/application/client/LogisticApplicationClient.d.ts +32 -21
  64. package/sdk/application/client/LogisticApplicationClient.js +62 -27
  65. package/sdk/application/client/OrderApplicationClient.d.ts +15 -15
  66. package/sdk/application/client/OrderApplicationClient.js +1 -1
  67. package/sdk/application/client/PaymentApplicationClient.d.ts +79 -57
  68. package/sdk/application/client/PaymentApplicationClient.js +66 -0
  69. package/sdk/application/client/PosCartApplicationClient.d.ts +38 -38
  70. package/sdk/application/client/RewardsApplicationClient.d.ts +34 -34
  71. package/sdk/application/client/RewardsApplicationClient.js +77 -77
  72. package/sdk/application/client/ShareApplicationClient.d.ts +8 -8
  73. package/sdk/application/client/ThemeApplicationClient.d.ts +4 -4
  74. package/sdk/application/client/UserApplicationClient.d.ts +63 -63
  75. package/sdk/application/models/CatalogValidator.d.ts +1 -1
  76. package/sdk/application/models/CatalogValidator.js +2 -2
  77. package/sdk/application/models/LogisticValidator.d.ts +2 -1
  78. package/sdk/application/models/LogisticValidator.js +11 -6
  79. package/sdk/application/models/PaymentValidator.d.ts +2 -0
  80. package/sdk/application/models/PaymentValidator.js +12 -0
  81. package/sdk/application/models/RewardsValidator.d.ts +3 -3
  82. package/sdk/application/models/RewardsValidator.js +12 -12
  83. package/sdk/common/AxiosHelper.js +1 -1
  84. package/sdk/common/Constant.d.ts +9 -0
  85. package/sdk/common/Constant.js +11 -0
  86. package/sdk/platform/PlatformApplicationClient.d.ts +7962 -6505
  87. package/sdk/platform/PlatformApplicationClient.js +4377 -3635
  88. package/sdk/platform/PlatformApplicationModels.d.ts +26 -31
  89. package/sdk/platform/PlatformApplicationModels.js +5530 -4134
  90. package/sdk/platform/PlatformClient.d.ts +3495 -2780
  91. package/sdk/platform/PlatformClient.js +3985 -3108
  92. package/sdk/platform/PlatformModels.d.ts +354 -273
  93. package/sdk/platform/PlatformModels.js +5635 -4211
  94. package/sdk/platform/client/AnalyticsPlatformClient.d.ts +5 -5
  95. package/sdk/platform/client/AuditTrailPlatformClient.d.ts +1 -1
  96. package/sdk/platform/client/BillingPlatformClient.d.ts +4 -4
  97. package/sdk/platform/client/CatalogPlatformClient.d.ts +222 -154
  98. package/sdk/platform/client/CatalogPlatformClient.js +473 -295
  99. package/sdk/platform/client/CompanyProfilePlatformClient.d.ts +8 -8
  100. package/sdk/platform/client/ConfigurationPlatformClient.d.ts +9 -9
  101. package/sdk/platform/client/DiscountPlatformClient.d.ts +4 -4
  102. package/sdk/platform/client/FileStoragePlatformClient.d.ts +20 -4
  103. package/sdk/platform/client/FileStoragePlatformClient.js +49 -0
  104. package/sdk/platform/client/InventoryPlatformClient.d.ts +3 -3
  105. package/sdk/platform/client/LeadPlatformClient.d.ts +6 -6
  106. package/sdk/platform/client/OrderPlatformClient.d.ts +557 -131
  107. package/sdk/platform/client/OrderPlatformClient.js +1551 -247
  108. package/sdk/platform/client/PaymentPlatformClient.d.ts +4 -4
  109. package/sdk/platform/client/WebhookPlatformClient.d.ts +2 -2
  110. package/sdk/platform/models/CatalogValidator.d.ts +26 -22
  111. package/sdk/platform/models/CatalogValidator.js +109 -72
  112. package/sdk/platform/models/OrderValidator.d.ts +43 -11
  113. package/sdk/platform/models/OrderValidator.js +312 -51
  114. package/sdk/public/client/ConfigurationPublicClient.d.ts +2 -2
  115. package/sdk/public/client/InventoryPublicClient.d.ts +7 -7
  116. package/sdk/public/client/WebhookPublicClient.d.ts +3 -3
  117. package/tests/common/schema/action-url.json +15 -0
  118. 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.35",
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": "^17.4.0",
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 = 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) {
@@ -12,6 +12,7 @@ declare class ApplicationConfig {
12
12
  logLevel: any;
13
13
  extraHeaders: any[];
14
14
  locationDetails: any;
15
+ currencyCode: any;
15
16
  setLogLevel(level: any): void;
16
17
  setCookie(cookie: any): void;
17
18
  cookie: any;
@@ -18,6 +18,7 @@ class ApplicationConfig {
18
18
  this.setLogLevel(this.logLevel);
19
19
  this.extraHeaders = [];
20
20
  this.locationDetails = _conf.locationDetails;
21
+ this.currencyCode = _conf.currencyCode || "INR";
21
22
  this.validate();
22
23
  }
23
24
 
@@ -2,29 +2,29 @@ export class LocationValidator {
2
2
  static validateLocationObj(): any;
3
3
  }
4
4
  export class Validator {
5
- static Meta(): any;
6
- static Media(): any;
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 CategoryBanner(): any;
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 SellerV2(): any;
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 LoyaltyPoints(): any;
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 RawBreakup(): any;
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 MarketplaceInfo(): any;
720
+ static BusinessDetails(): any;
716
721
  static CustomerOnboardingRequest(): any;
717
722
  static OnboardSummary(): any;
718
723
  static CustomerOnboardingResponse(): any;
719
- static OrderPage(): any;
720
- static OrderStatuses(): any;
721
- static OrderFilters(): any;
722
- static UserInfo(): any;
723
- static ShipmentTotalDetails(): any;
724
- static Prices(): any;
724
+ static BagsForReorderArticleAssignment(): any;
725
+ static BagsForReorder(): any;
726
+ static BreakupValues(): any;
727
+ static Invoice(): any;
728
+ static ShipmentStatus(): any;
729
+ static DeliveryAddress(): any;
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 ItemBrand(): any;
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 Invoice(): any;
747
+ static FulfillingCompany(): any;
745
748
  static Shipments(): any;
746
- static BagsForReorderArticleAssignment(): any;
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 ActionPageParams(): any;
783
- static CatalogueOrderRequest(): any;
787
+ static RewardsArticle(): any;
784
788
  static CatalogueOrderResponse(): any;
785
- static DiscountProperties(): any;
786
- static Error(): any;
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 PointsHistory(): any;
792
- static PointsHistoryResponse(): any;
793
- static PointsResponse(): any;
799
+ static DiscountProperties(): any;
800
+ static OrderDiscountResponse(): any;
794
801
  static RedeemReferralCodeRequest(): any;
795
802
  static RedeemReferralCodeResponse(): any;
796
- static ReferralDetailsResponse(): any;
797
- static ReferralDetailsUser(): any;
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 GetPincodeCityResponse(): any;
809
- static LogisticPincodeData(): any;
810
- static LogisticMeta(): any;
811
- static LogisticParents(): any;
812
- static LogisticError(): any;
813
- static GetPincodeZonesReqBody(): any;
814
- static GetPincodeZonesResponse(): any;
815
- static GetTatProductReqBody(): any;
816
- static LocationDetailsReq(): any;
817
- static TatReqProductArticles(): any;
818
- static LogisticRequestCategory(): any;
819
- static GetTatProductResponse(): any;
820
- static LocationDetails(): any;
821
- static TatProductArticles(): any;
822
- static LogisticResponseCategory(): any;
823
- static LogisticPromise(): any;
824
- static LogisticTimestamp(): any;
825
- static Formatted(): any;
812
+ static PincodeErrorSchemaResponse(): any;
813
+ static PincodeParentsResponse(): any;
814
+ static CountryMetaResponse(): any;
815
+ static PincodeMetaResponse(): any;
816
+ static PincodeDataResponse(): any;
817
+ static PincodeApiResponse(): any;
818
+ static TATCategoryRequest(): any;
819
+ static TATArticlesRequest(): any;
820
+ static TATLocationDetailsRequest(): any;
821
+ static TATViewRequest(): any;
822
+ static TATErrorSchemaResponse(): any;
823
+ static TATFormattedResponse(): any;
824
+ static TATTimestampResponse(): any;
825
+ static TATPromiseResponse(): any;
826
+ static TATArticlesResponse(): any;
827
+ static TATLocationDetailsResponse(): any;
828
+ static TATViewResponse(): any;
829
+ static DP(): any;
830
+ static LogisticsResponse(): any;
831
+ static CountryEntityResponse(): any;
832
+ static CountryListResponse(): any;
833
+ static GetZoneFromPincodeViewRequest(): any;
834
+ static GetZoneFromPincodeViewResponse(): any;
826
835
  }