@gofynd/fdk-client-javascript 0.1.35 → 0.1.36

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 (109) hide show
  1. package/README.md +1 -1
  2. package/documentation/application/CART.md +256 -239
  3. package/documentation/application/CATALOG.md +413 -409
  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 +4 -0
  11. package/documentation/application/ORDER.md +307 -303
  12. package/documentation/application/PAYMENT.md +445 -259
  13. package/documentation/application/POSCART.md +317 -300
  14. package/documentation/application/REWARDS.md +153 -160
  15. package/documentation/application/SHARE.md +4 -0
  16. package/documentation/application/THEME.md +4 -0
  17. package/documentation/application/USER.md +4 -0
  18. package/documentation/platform/ANALYTICS.md +4 -0
  19. package/documentation/platform/AUDITTRAIL.md +4 -0
  20. package/documentation/platform/BILLING.md +4 -0
  21. package/documentation/platform/CART.md +480 -463
  22. package/documentation/platform/CATALOG.md +3895 -2942
  23. package/documentation/platform/COMMON.md +4 -0
  24. package/documentation/platform/COMMUNICATION.md +4 -0
  25. package/documentation/platform/COMPANYPROFILE.md +224 -193
  26. package/documentation/platform/CONFIGURATION.md +4 -0
  27. package/documentation/platform/CONTENT.md +8 -21
  28. package/documentation/platform/DISCOUNT.md +4 -0
  29. package/documentation/platform/FILESTORAGE.md +85 -0
  30. package/documentation/platform/INVENTORY.md +4 -0
  31. package/documentation/platform/LEAD.md +6 -2
  32. package/documentation/platform/ORDER.md +6298 -1448
  33. package/documentation/platform/PARTNER.md +12 -8
  34. package/documentation/platform/PAYMENT.md +107 -103
  35. package/documentation/platform/README.md +2 -2
  36. package/documentation/platform/REWARDS.md +219 -152
  37. package/documentation/platform/SHARE.md +4 -0
  38. package/documentation/platform/THEME.md +4 -0
  39. package/documentation/platform/USER.md +4 -0
  40. package/documentation/platform/WEBHOOK.md +4 -0
  41. package/documentation/public/CONFIGURATION.md +4 -0
  42. package/documentation/public/INVENTORY.md +4 -0
  43. package/documentation/public/WEBHOOK.md +4 -0
  44. package/package.json +1 -1
  45. package/sdk/application/ApplicationModels.d.ts +77 -73
  46. package/sdk/application/ApplicationModels.js +1751 -1725
  47. package/sdk/application/client/CartApplicationClient.d.ts +36 -36
  48. package/sdk/application/client/CatalogApplicationClient.d.ts +39 -39
  49. package/sdk/application/client/CatalogApplicationClient.js +16 -16
  50. package/sdk/application/client/CommonApplicationClient.d.ts +2 -2
  51. package/sdk/application/client/CommunicationApplicationClient.d.ts +5 -5
  52. package/sdk/application/client/ConfigurationApplicationClient.d.ts +17 -17
  53. package/sdk/application/client/ContentApplicationClient.d.ts +19 -19
  54. package/sdk/application/client/FileStorageApplicationClient.d.ts +14 -6
  55. package/sdk/application/client/FileStorageApplicationClient.js +2 -0
  56. package/sdk/application/client/LeadApplicationClient.d.ts +10 -10
  57. package/sdk/application/client/LogisticApplicationClient.d.ts +5 -5
  58. package/sdk/application/client/OrderApplicationClient.d.ts +15 -15
  59. package/sdk/application/client/OrderApplicationClient.js +1 -1
  60. package/sdk/application/client/PaymentApplicationClient.d.ts +79 -57
  61. package/sdk/application/client/PaymentApplicationClient.js +66 -0
  62. package/sdk/application/client/PosCartApplicationClient.d.ts +38 -38
  63. package/sdk/application/client/RewardsApplicationClient.d.ts +34 -34
  64. package/sdk/application/client/RewardsApplicationClient.js +77 -77
  65. package/sdk/application/client/ShareApplicationClient.d.ts +8 -8
  66. package/sdk/application/client/ThemeApplicationClient.d.ts +4 -4
  67. package/sdk/application/client/UserApplicationClient.d.ts +63 -63
  68. package/sdk/application/models/CatalogValidator.d.ts +1 -1
  69. package/sdk/application/models/CatalogValidator.js +2 -2
  70. package/sdk/application/models/PaymentValidator.d.ts +2 -0
  71. package/sdk/application/models/PaymentValidator.js +12 -0
  72. package/sdk/application/models/RewardsValidator.d.ts +3 -3
  73. package/sdk/application/models/RewardsValidator.js +12 -12
  74. package/sdk/common/AxiosHelper.js +1 -1
  75. package/sdk/common/Constant.d.ts +9 -0
  76. package/sdk/common/Constant.js +11 -0
  77. package/sdk/platform/PlatformApplicationClient.d.ts +8600 -7286
  78. package/sdk/platform/PlatformApplicationClient.js +4338 -3678
  79. package/sdk/platform/PlatformApplicationModels.d.ts +21 -26
  80. package/sdk/platform/PlatformApplicationModels.js +5561 -4301
  81. package/sdk/platform/PlatformClient.d.ts +3448 -2801
  82. package/sdk/platform/PlatformClient.js +3903 -3108
  83. package/sdk/platform/PlatformModels.d.ts +352 -278
  84. package/sdk/platform/PlatformModels.js +5230 -3942
  85. package/sdk/platform/client/AnalyticsPlatformClient.d.ts +5 -5
  86. package/sdk/platform/client/AuditTrailPlatformClient.d.ts +1 -1
  87. package/sdk/platform/client/BillingPlatformClient.d.ts +4 -4
  88. package/sdk/platform/client/CatalogPlatformClient.d.ts +209 -150
  89. package/sdk/platform/client/CatalogPlatformClient.js +441 -294
  90. package/sdk/platform/client/CompanyProfilePlatformClient.d.ts +8 -8
  91. package/sdk/platform/client/ConfigurationPlatformClient.d.ts +9 -9
  92. package/sdk/platform/client/DiscountPlatformClient.d.ts +4 -4
  93. package/sdk/platform/client/FileStoragePlatformClient.d.ts +20 -4
  94. package/sdk/platform/client/FileStoragePlatformClient.js +49 -0
  95. package/sdk/platform/client/InventoryPlatformClient.d.ts +3 -3
  96. package/sdk/platform/client/LeadPlatformClient.d.ts +6 -6
  97. package/sdk/platform/client/OrderPlatformClient.d.ts +557 -131
  98. package/sdk/platform/client/OrderPlatformClient.js +1551 -247
  99. package/sdk/platform/client/PaymentPlatformClient.d.ts +4 -4
  100. package/sdk/platform/client/WebhookPlatformClient.d.ts +2 -2
  101. package/sdk/platform/models/CatalogValidator.d.ts +24 -21
  102. package/sdk/platform/models/CatalogValidator.js +103 -72
  103. package/sdk/platform/models/OrderValidator.d.ts +43 -11
  104. package/sdk/platform/models/OrderValidator.js +312 -51
  105. package/sdk/public/client/ConfigurationPublicClient.d.ts +2 -2
  106. package/sdk/public/client/InventoryPublicClient.d.ts +7 -7
  107. package/sdk/public/client/WebhookPublicClient.d.ts +3 -3
  108. package/tests/common/schema/action-url.json +15 -0
  109. 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.36",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -2,6 +2,11 @@ export class LocationValidator {
2
2
  static validateLocationObj(): any;
3
3
  }
4
4
  export class Validator {
5
+ static ApplicationItemSEO(): any;
6
+ static NetQuantity(): any;
7
+ static ProductDetailAttribute(): any;
8
+ static ProductDetailGroupedAttribute(): any;
9
+ static CustomMetaFields(): any;
5
10
  static Meta(): any;
6
11
  static Media(): any;
7
12
  static ProductListingActionPage(): any;
@@ -9,11 +14,6 @@ export class Validator {
9
14
  static ProductBrand(): any;
10
15
  static Price(): any;
11
16
  static ProductListingPrice(): any;
12
- static ApplicationItemSEO(): any;
13
- static NetQuantity(): any;
14
- static CustomMetaFields(): any;
15
- static ProductDetailAttribute(): any;
16
- static ProductDetailGroupedAttribute(): any;
17
17
  static ApplicationItemMOQ(): any;
18
18
  static ProductDetail(): any;
19
19
  static ErrorResponse(): any;
@@ -21,9 +21,9 @@ export class Validator {
21
21
  static Dimension(): any;
22
22
  static Weight(): any;
23
23
  static ProductSize(): any;
24
+ static SizeChartValues(): any;
24
25
  static ColumnHeader(): any;
25
26
  static ColumnHeaders(): any;
26
- static SizeChartValues(): any;
27
27
  static SizeChart(): any;
28
28
  static ProductSizes(): any;
29
29
  static AttributeDetail(): any;
@@ -34,15 +34,15 @@ export class Validator {
34
34
  static ProductVariantItemResponse(): any;
35
35
  static ProductVariantResponse(): any;
36
36
  static ProductVariantsResponse(): any;
37
- static Seller(): any;
38
- static CompanyDetail(): any;
39
37
  static ProductStockPrice(): any;
40
38
  static StoreDetail(): any;
39
+ static Seller(): any;
40
+ static CompanyDetail(): any;
41
41
  static ProductStockStatusItem(): any;
42
42
  static ProductStockStatusResponse(): any;
43
43
  static ProductStockPolling(): any;
44
- static ProductFiltersValue(): any;
45
44
  static ProductFiltersKey(): any;
45
+ static ProductFiltersValue(): any;
46
46
  static ProductFilters(): any;
47
47
  static ProductVariantListingResponse(): any;
48
48
  static ProductListingDetail(): 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 DepartmentIdentifier(): any;
55
56
  static CategoryBanner(): any;
56
57
  static ThirdLevelChild(): any;
57
58
  static SecondLevelChild(): any;
58
59
  static Child(): 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;
@@ -66,8 +66,8 @@ export class Validator {
66
66
  static DepartmentResponse(): any;
67
67
  static AutocompleteItem(): any;
68
68
  static AutoCompleteResponse(): any;
69
- static CollectionListingFilterType(): any;
70
69
  static CollectionListingFilterTag(): any;
70
+ static CollectionListingFilterType(): any;
71
71
  static CollectionListingFilter(): any;
72
72
  static CollectionQuery(): any;
73
73
  static GetCollectionDetailNest(): any;
@@ -84,8 +84,8 @@ export class Validator {
84
84
  static StoreDepartments(): any;
85
85
  static SellerPhoneNumber(): any;
86
86
  static StoreManagerSerializer(): any;
87
- static CompanyStore(): any;
88
87
  static StoreAddressSerializer(): any;
88
+ static CompanyStore(): any;
89
89
  static AppStore(): any;
90
90
  static ApplicationStoreListing(): any;
91
91
  static Time(): any;
@@ -93,53 +93,54 @@ export class Validator {
93
93
  static StoreDetails(): any;
94
94
  static UserDetail(): any;
95
95
  static ProductGroupPrice(): any;
96
- static Size(): any;
97
96
  static ProductDetails(): any;
97
+ static Size(): any;
98
98
  static ProductInGroup(): any;
99
99
  static ProductGroupingModel(): any;
100
100
  static ProductBundle(): any;
101
- static ReturnConfigSchemaV2(): any;
102
- static StoreV2(): any;
103
- static ProductSetDistributionSizeV2(): any;
104
- static ProductSetDistributionV2(): any;
105
- static ProductSetV2(): any;
106
- static ProductStockPriceV2(): any;
107
101
  static StrategyWiseListingSchemaV2(): any;
108
- static ProductStockUnitPriceV2(): any;
109
102
  static ArticleAssignmentV2(): any;
110
- static SellerV2(): any;
111
103
  static DetailsSchemaV2(): any;
112
104
  static SellerGroupAttributes(): any;
105
+ static ProductSetDistributionSizeV2(): any;
106
+ static ProductSetDistributionV2(): any;
107
+ static ProductSetV2(): any;
108
+ static ReturnConfigSchemaV2(): any;
113
109
  static MarketPlaceSttributesSchemaV2(): any;
110
+ static ProductStockUnitPriceV2(): any;
111
+ static ProductStockPriceV2(): any;
112
+ static SellerV2(): any;
113
+ static StoreV2(): any;
114
114
  static ProductSizePriceResponseV2(): any;
115
115
  static ProductSizeSellerFilterSchemaV2(): any;
116
116
  static ProductSizeSellersResponseV2(): any;
117
- static LoyaltyPoints(): any;
117
+ static DisplayBreakup(): any;
118
118
  static CouponBreakup(): any;
119
119
  static RawBreakup(): any;
120
- static DisplayBreakup(): any;
120
+ static LoyaltyPoints(): any;
121
121
  static CartBreakup(): any;
122
122
  static PromiseFormatted(): any;
123
123
  static PromiseTimestamp(): any;
124
124
  static ShipmentPromise(): any;
125
+ static CartCurrency(): any;
125
126
  static PaymentSelectionLock(): any;
126
127
  static BaseInfo(): any;
127
128
  static BasePrice(): any;
128
129
  static ArticlePriceInfo(): any;
129
130
  static ProductArticle(): any;
131
+ static PromoMeta(): any;
132
+ static CartProductIdentifer(): any;
133
+ static ProductPrice(): any;
134
+ static ProductPriceInfo(): any;
135
+ static ProductAvailability(): any;
136
+ static Ownership(): any;
137
+ static AppliedPromotion(): any;
130
138
  static CategoryInfo(): any;
131
139
  static ProductImage(): any;
132
140
  static ActionQuery(): any;
133
141
  static ProductAction(): any;
134
142
  static CartProduct(): any;
135
- static CartProductIdentifer(): any;
136
- static ProductPrice(): any;
137
- static ProductPriceInfo(): any;
138
- static AppliedPromotion(): any;
139
- static PromoMeta(): any;
140
- static ProductAvailability(): 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;
@@ -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;
724
+ static BreakupValues(): any;
722
725
  static UserInfo(): any;
726
+ static BagsForReorderArticleAssignment(): any;
727
+ static BagsForReorder(): any;
728
+ static FulfillingCompany(): any;
729
+ static FulfillingStore(): any;
730
+ static Invoice(): any;
731
+ static DeliveryAddress(): any;
732
+ static TimeStampData(): any;
733
+ static Promise(): any;
734
+ static ShipmentStatus(): any;
723
735
  static ShipmentTotalDetails(): any;
724
736
  static Prices(): any;
737
+ static ShipmentUserInfo(): any;
738
+ static NestedTrackingDetails(): any;
739
+ static TrackingDetails(): any;
725
740
  static ShipmentPayment(): any;
741
+ static ItemBrand(): any;
742
+ static Item(): any;
726
743
  static CurrentStatus(): any;
727
- static AppliedFreeArticles(): any;
728
- static AppliedPromos(): any;
729
744
  static Identifiers(): any;
730
745
  static FinancialBreakup(): any;
731
- static ItemBrand(): any;
732
- static Item(): any;
746
+ static AppliedFreeArticles(): any;
747
+ static AppliedPromos(): any;
733
748
  static Bags(): any;
734
- static FulfillingStore(): any;
735
- static BreakupValues(): any;
736
- static DeliveryAddress(): any;
737
- static ShipmentUserInfo(): any;
738
- static FulfillingCompany(): any;
739
- static ShipmentStatus(): any;
740
- static NestedTrackingDetails(): any;
741
- static TrackingDetails(): any;
742
- static TimeStampData(): any;
743
- static Promise(): any;
744
- static Invoice(): any;
745
749
  static Shipments(): any;
746
- static BagsForReorderArticleAssignment(): any;
747
- static BagsForReorder(): any;
748
750
  static OrderSchema(): any;
751
+ static OrderStatuses(): any;
752
+ static OrderFilters(): any;
753
+ static OrderPage(): 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
- static ProductsReasonsData(): any;
770
- static ProductsReasons(): any;
771
- static ReasonsData(): any;
772
771
  static Products(): any;
773
- static EntitiesDataUpdates(): any;
774
772
  static ProductsDataUpdatesFilters(): any;
775
773
  static ProductsDataUpdates(): any;
774
+ static EntitiesDataUpdates(): any;
776
775
  static DataUpdates(): any;
776
+ static ProductsReasonsFilters(): any;
777
+ static ProductsReasonsData(): any;
778
+ static ProductsReasons(): any;
779
+ static EntityReasonData(): any;
780
+ static EntitiesReasons(): any;
781
+ static ReasonsData(): 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;