@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
@@ -235,7 +235,6 @@ declare class Validator {
235
235
  static Action(): any;
236
236
  static ActionPage(): any;
237
237
  static NavigationReference(): any;
238
- static SubNavigationReference(): any;
239
238
  static LandingPage(): any;
240
239
  static ConfigurationSchema(): any;
241
240
  static SlideshowMedia(): any;
@@ -467,9 +466,9 @@ declare class Validator {
467
466
  static PaymentGatewayToBeReviewed(): any;
468
467
  static ErrorCodeAndDescription(): any;
469
468
  static HttpErrorCodeAndResponse(): any;
470
- static IntentAppErrorList(): any;
471
469
  static PaymentModeLogo(): any;
472
470
  static IntentApp(): any;
471
+ static IntentAppErrorList(): any;
473
472
  static PaymentModeList(): any;
474
473
  static RootPaymentMode(): any;
475
474
  static PaymentOptions(): any;
@@ -501,234 +500,293 @@ declare class Validator {
501
500
  static GetUserCODLimitResponse(): any;
502
501
  static SetCODForUserRequest(): any;
503
502
  static SetCODOptionResponse(): any;
504
- static GetActivityStatus(): any;
505
- static ActivityHistory(): any;
506
- static CanBreakRequestBody(): any;
507
- static CanBreakResponse(): any;
508
- static FailedOrders(): any;
509
- static FailOrder(): any;
510
- static MarketplaceOrder(): any;
511
- static TotalDiscountsSet(): any;
512
- static PresentmentMoney(): any;
513
- static ShopMoney(): any;
514
- static TotalPriceSet(): any;
515
- static TotalPriceSetShopMoney(): any;
516
- static TotalPriceSetPresentmentMoney(): any;
517
- static TotalTaxSet(): any;
518
- static TotalTaxSetShopMoney(): any;
519
- static TotalTaxSetPresentmentMoney(): any;
520
- static SubtotalPriceSet(): any;
521
- static SubtotalPriceSetShopMoney(): any;
522
- static SubtotalPriceSetPresentmentMoney(): any;
523
- static LineItems(): any;
524
- static LineItemsArticle(): any;
525
- static Quantities(): any;
526
- static NotAvailable(): any;
527
- static Sellable(): any;
528
- static OrderCommitted(): any;
529
- static Damaged(): any;
530
- static Manufacturer(): any;
531
- static ArticlePrice(): any;
532
- static Company(): any;
533
- static FailOrderDateMeta(): any;
534
- static MarketplaceIdentifiers(): any;
535
- static TatacliqLuxury(): any;
536
- static Dimension(): any;
537
- static Weight(): any;
538
- static Store(): any;
539
- static ArticleMeta(): any;
540
- static ArticleBrand(): any;
541
- static LineItemsArticleIdentifier(): any;
542
- static PriceSet(): any;
543
- static PriceSetShopMoney(): any;
544
- static PriceSetPresentmentMoney(): any;
545
- static TaxLines(): any;
546
- static TaxLinesPriceSet(): any;
547
- static TaxLinesPriceSetShopMoney(): any;
548
- static TaxLinesPriceSetPresentmentMoney(): any;
549
- static TotalDiscountSet(): any;
550
- static TotalDiscountSetPresentmentMoney(): any;
551
- static TotalDiscountSetShopMoney(): any;
552
- static BillingAddress(): any;
553
- static TotalShippingPriceSet(): any;
554
- static TotalShippingPriceSetShopMoney(): any;
555
- static TotalShippingPriceSetPresentmentMoney(): any;
556
- static Customer(): any;
557
- static DefaultAddress(): any;
558
- static TotalLineItemsPriceSet(): any;
559
- static TotalLineItemsPriceSetShopMoney(): any;
560
- static TotalLineItemsPriceSetPresentmentMoney(): any;
561
- static OrderShippingAddress(): any;
562
- static OrderListing(): any;
563
- static OrderItems(): any;
564
- static PlatformOrderUserInfo(): any;
503
+ static UserDataInfo(): any;
504
+ static GSTDetailsData(): any;
505
+ static Prices(): any;
506
+ static PlatformItem(): any;
507
+ static BagUnit(): any;
508
+ static PaymentModeInfo(): any;
509
+ static ShipmentItemFulFillingStore(): any;
510
+ static ShipmentStatus(): any;
511
+ static ShipmentItem(): any;
512
+ static FilterInfoOption(): any;
513
+ static FiltersInfo(): any;
514
+ static ShipmentInternalPlatformViewResponse(): any;
515
+ static Error(): any;
516
+ static ShipmentPayments(): any;
517
+ static BagStateMapper(): any;
518
+ static BagStatusHistory(): any;
519
+ static TrackingList(): any;
520
+ static ShipmentStatusData(): any;
521
+ static UserDetailsData(): any;
522
+ static DPDetailsData(): any;
523
+ static ItemCriterias(): any;
524
+ static BuyRules(): any;
525
+ static DiscountRules(): any;
526
+ static AppliedPromos(): any;
527
+ static BagConfigs(): any;
528
+ static Identifier(): any;
529
+ static FinancialBreakup(): any;
565
530
  static PlatformDeliveryAddress(): any;
566
- static Channel(): any;
567
- static PlatformApplication(): any;
531
+ static OrderBrandName(): any;
532
+ static BagGST(): any;
533
+ static OrderBagArticle(): any;
534
+ static OrderBags(): any;
535
+ static OrderDetailsData(): any;
536
+ static FulfillingStore(): any;
537
+ static ShipmentInfoResponse(): any;
538
+ static OrderDict(): any;
568
539
  static PlatformShipment(): any;
569
- static PlatformShipmentStatus(): any;
570
- static Bags(): any;
571
- static BagItem(): any;
572
- static BagItemAttributes(): any;
573
- static ShipmentPrices(): any;
574
- static Payments(): any;
575
- static Filters(): any;
576
- static Stage(): any;
577
- static StagesFilters(): any;
578
- static Options(): any;
579
- static PlatformOrderPage(): any;
580
- static AppliedFilters(): any;
581
- static OrderDetails(): any;
582
- static OrderDetailsItem(): any;
540
+ static ShipmentDetailsResponse(): any;
541
+ static SubLane(): any;
542
+ static SuperLane(): any;
543
+ static LaneConfigResponse(): any;
583
544
  static PlatformBreakupValues(): any;
584
- static ArticleAssignment(): any;
585
- static PlatformShipmentDetails(): any;
586
- static PlatformShipmentDetailsStatus(): any;
587
- static BagsDetails(): any;
588
- static BagFinancialBreakup(): any;
589
- static Identifiers(): any;
590
- static BagCurrStatus(): any;
591
- static BagArticle(): any;
592
- static ArticleIdentifiers(): any;
593
- static Set(): any;
594
- static SetSizeDistribution(): any;
595
- static Sizes(): any;
596
- static BagArticleReturnConfig(): any;
597
- static GstDetails(): any;
598
- static BagBreakupValues(): any;
599
- static BagCurrentStatus(): any;
600
- static BagStateMapper(): any;
601
- static BagStatus(): any;
602
- static BagStatusBagStateMapper(): any;
603
- static BagPrices(): any;
604
- static ShipmentBreakupValues(): any;
605
- static DpDetails(): any;
606
- static ShipmentInvoice(): any;
607
- static RtoAddress(): any;
608
- static StoreAddressJson(): any;
609
- static PlatformFulfillingStore(): any;
610
- static FulfillingStoreMeta(): any;
611
- static AdditionalContactDetails(): any;
612
- static Documents(): any;
613
- static Gst(): any;
614
- static ProductReturnConfig(): any;
615
- static Timing(): any;
616
- static Opening(): any;
617
- static Closing(): any;
618
- static FulfillingStoreStoreAddressJson(): any;
619
- static ShipmentGst(): any;
620
- static PlatformShipmentDetailsBrand(): any;
621
- static Promise(): any;
622
- static Timestamp(): any;
623
- static ShipmentTrackingDetails(): any;
624
- static ItemsPayments(): any;
625
- static PlatformOrderDetailsPage(): any;
626
- static ShipmentDates(): any;
627
- static OrderLanesCount(): any;
628
- static StageItem(): any;
629
- static UpdateOrderReprocessResponse(): any;
630
- static PlatformOrderTrack(): any;
631
- static OrderPicklistListing(): any;
632
- static Stages(): any;
633
- static ItemTotal(): any;
634
- static GetPingResponse(): any;
635
- static GetShipmentAddressResponse(): any;
636
- static DataShipmentAddress(): any;
637
- static UpdateShipmentAddressRequest(): any;
638
- static UpdateShipmentAddressResponse(): any;
639
- static ShipmentTrackResponse(): any;
640
- static ShipmentTrackResponseBagListItem(): any;
641
- static ShipmentTrackResponseBagListItemBreakValues(): any;
642
- static ShipmentTrackResponseBagListItemStatuses(): any;
643
- static ShipmentTrackResponseBagListItemStatusesProgress(): any;
644
- static ShipmentTrackResponseBagListItemStatusesTrack(): any;
645
- static ShipmentTrackResponseBagListItemDpDetails(): any;
646
- static ShipmentTrackResponseBagListItemsProductImage(): any;
647
- static UpdateShipmentStatusResponse(): any;
648
- static UpdateShipmentStatusBody(): any;
649
- static ShipmentReasonsResponse(): any;
650
- static ShipmentResponseReasons(): any;
545
+ static PlatformChannel(): any;
546
+ static PlatformOrderItems(): any;
547
+ static OrderListingResponse(): any;
548
+ static Options(): any;
549
+ static MetricsCount(): any;
550
+ static MetricCountResponse(): any;
551
+ static PlatformTrack(): any;
651
552
  static PlatformShipmentTrack(): any;
652
- static Results(): any;
653
- static ShipmentUpdateRequest(): any;
654
- static ShipmentUpdateResponse(): any;
655
- static UpdateProcessShipmenstRequestBody(): any;
656
- static UpdateProcessShipmenstRequestResponse(): any;
657
- static GetVoiceCallbackResponse(): any;
658
- static GetClickToCallResponse(): any;
659
- static ApefaceApiError(): any;
660
- static GetSearchWordsData(): any;
661
- static GetSearchWordsDetailResponse(): any;
553
+ static FiltersResponse(): any;
554
+ static Success(): any;
555
+ static OmsReports(): any;
556
+ static JioCodeUpsertDataSet(): any;
557
+ static JioCodeUpsertPayload(): any;
558
+ static NestedErrorSchemaDataSet(): any;
559
+ static JioCodeUpsertResponse(): any;
560
+ static BulkInvoicingResponse(): any;
561
+ static BulkInvoiceLabelResponse(): any;
562
+ static FileUploadResponse(): any;
563
+ static URL(): any;
564
+ static FileResponse(): any;
565
+ static BulkListingPage(): any;
566
+ static bulkListingData(): any;
567
+ static BulkListingResponse(): any;
568
+ static DateRange(): any;
569
+ static ManifestFilter(): any;
570
+ static GeneratedManifestItem(): any;
571
+ static ManifestPage(): any;
572
+ static GeneratedManifestResponse(): any;
573
+ static ManifestDetailItem(): any;
574
+ static ManifestDetailTotalShipmentPricesCount(): any;
575
+ static ManifestDetailMeta(): any;
576
+ static ManifestDetail(): any;
577
+ static ManifestDetailResponse(): any;
578
+ static QuestionSet(): any;
579
+ static Reason(): any;
580
+ static PlatformShipmentReasonsResponse(): any;
581
+ static BulkActionPayload(): any;
582
+ static BulkActionResponse(): any;
583
+ static BulkActionDetailsDataField(): any;
584
+ static BulkActionDetailsResponse(): any;
585
+ static ArticleDetails(): any;
586
+ static Dates(): any;
587
+ static B2BPODetails(): any;
588
+ static BagMeta(): any;
589
+ static BagReturnableCancelableStatus(): any;
590
+ static EInvoicePortalDetails(): any;
591
+ static Document(): any;
592
+ static StoreDocuments(): any;
593
+ static StoreEwaybill(): any;
594
+ static StoreEinvoice(): any;
595
+ static StoreGstCredentials(): any;
596
+ static StoreMeta(): any;
597
+ static StoreAddress(): any;
598
+ static Store(): any;
599
+ static AffiliateMeta(): any;
600
+ static AffiliateBagDetails(): any;
601
+ static PDFLinks(): any;
602
+ static EInvoice(): any;
603
+ static EinvoiceInfo(): any;
604
+ static Formatted(): any;
605
+ static ShipmentTimeStamp(): any;
606
+ static DebugInfo(): any;
607
+ static BuyerDetails(): any;
608
+ static LockData(): any;
609
+ static ShipmentMeta(): any;
610
+ static AffiliateDetails(): any;
611
+ static Attributes(): any;
612
+ static Item(): any;
613
+ static Brand(): any;
614
+ static BagGSTDetails(): any;
615
+ static ReturnConfig(): any;
616
+ static Weight(): any;
617
+ static Dimensions(): any;
618
+ static Article(): any;
619
+ static BagDetailsPlatformResponse(): any;
662
620
  static ErrorResponse(): any;
621
+ static Page1(): any;
622
+ static GetBagsPlatformResponse(): any;
623
+ static InvalidateShipmentCachePayload(): any;
624
+ static InvalidateShipmentCacheNestedResponse(): any;
625
+ static InvalidateShipmentCacheResponse(): any;
626
+ static ErrorResponse1(): any;
627
+ static StoreReassign(): any;
628
+ static StoreReassignResponse(): any;
629
+ static Entities(): any;
630
+ static UpdateShipmentLockPayload(): any;
631
+ static OriginalFilter(): any;
632
+ static Bags(): any;
633
+ static CheckResponse(): any;
634
+ static UpdateShipmentLockResponse(): any;
635
+ static AnnouncementResponse(): any;
636
+ static AnnouncementsResponse(): any;
637
+ static BaseResponse(): any;
638
+ static Click2CallResponse(): any;
639
+ static Products(): any;
640
+ static ProductsReasonsData(): any;
641
+ static ProductsReasonsFilters(): any;
642
+ static ProductsReasons(): any;
643
+ static EntityReasonData(): any;
644
+ static EntitiesReasons(): any;
645
+ static ReasonsData(): any;
646
+ static ProductsDataUpdatesFilters(): any;
647
+ static ProductsDataUpdates(): any;
648
+ static EntitiesDataUpdates(): any;
649
+ static DataUpdates(): any;
650
+ static ShipmentsRequest(): any;
651
+ static StatuesRequest(): any;
652
+ static UpdateShipmentStatusRequest(): any;
653
+ static ShipmentsResponse(): any;
654
+ static StatuesResponse(): any;
655
+ static UpdateShipmentStatusResponseBody(): any;
656
+ static AffiliateStoreIdMapping(): any;
657
+ static AffiliateAppConfigMeta(): any;
658
+ static AffiliateAppConfig(): any;
659
+ static AffiliateInventoryLogisticsConfig(): any;
660
+ static AffiliateInventoryPaymentConfig(): any;
661
+ static AffiliateInventoryOrderConfig(): any;
662
+ static AffiliateInventoryArticleAssignmentConfig(): any;
663
+ static AffiliateInventoryStoreConfig(): any;
664
+ static AffiliateInventoryConfig(): any;
665
+ static AffiliateConfig(): any;
666
+ static Affiliate(): any;
667
+ static OrderConfig(): any;
668
+ static OrderUser(): any;
669
+ static ArticleDetails1(): any;
670
+ static ShipmentDetails(): any;
671
+ static LocationDetails(): any;
672
+ static ShipmentConfig(): any;
673
+ static ShipmentData(): any;
674
+ static OrderPriority(): any;
675
+ static MarketPlacePdf(): any;
676
+ static AffiliateBag(): any;
677
+ static UserData(): any;
678
+ static OrderInfo(): any;
679
+ static CreateOrderPayload(): any;
680
+ static CreateOrderResponse(): any;
681
+ static DispatchManifest(): any;
682
+ static SuccessResponse(): any;
683
+ static ActionInfo(): any;
684
+ static GetActionsResponse(): any;
685
+ static HistoryDict(): any;
686
+ static ShipmentHistoryResponse(): any;
687
+ static ErrorDetail(): any;
688
+ static SmsDataPayload(): any;
689
+ static SendSmsPayload(): any;
690
+ static Meta(): any;
691
+ static ShipmentDetail(): any;
692
+ static OrderDetails(): any;
693
+ static OrderStatusData(): any;
694
+ static OrderStatusResult(): any;
695
+ static ManualAssignDPToShipment(): any;
696
+ static ManualAssignDPToShipmentResponse(): any;
697
+ static Tax(): any;
698
+ static Charge(): any;
699
+ static ShippingInfo(): any;
700
+ static BillingInfo(): any;
701
+ static TaxInfo(): any;
702
+ static PaymentMethod(): any;
703
+ static PaymentInfo(): any;
704
+ static ProcessingDates(): any;
705
+ static LineItem(): any;
706
+ static Shipment(): any;
707
+ static CreateOrderAPI(): any;
708
+ static CreateOrderErrorReponse(): any;
709
+ static DpConfiguration(): any;
710
+ static PaymentMethods(): any;
711
+ static CreateChannelPaymentInfo(): any;
712
+ static CreateChannelConfig(): any;
713
+ static CreateChannelConfigData(): any;
714
+ static CreateChannelConfigResponse(): any;
715
+ static CreateChannelConifgErrorResponse(): any;
716
+ static UploadConsent(): any;
717
+ static PlatformOrderUpdate(): any;
718
+ static ResponseDetail(): any;
719
+ static FyndOrderIdList(): any;
720
+ static OrderStatus(): any;
721
+ static DeleteResponse(): any;
663
722
  static SearchKeywordResult(): any;
664
723
  static CreateSearchKeyword(): any;
665
- static DeleteResponse(): any;
724
+ static GetSearchWordsData(): any;
725
+ static GetSearchWordsDetailResponse(): any;
666
726
  static GetSearchWordsResponse(): any;
667
- static GetAutocompleteWordsData(): any;
668
- static GetAutocompleteWordsResponse(): any;
669
727
  static Media(): any;
670
728
  static AutocompletePageAction(): any;
671
729
  static AutocompleteAction(): any;
672
730
  static AutocompleteResult(): any;
673
731
  static CreateAutocompleteKeyword(): any;
732
+ static GetAutocompleteWordsData(): any;
733
+ static GetAutocompleteWordsResponse(): any;
674
734
  static CreateAutocompleteWordsResponse(): any;
675
735
  static ProductBundleItem(): any;
736
+ static ProductBundleRequest(): any;
676
737
  static GetProductBundleCreateResponse(): any;
677
738
  static GetProductBundleListingResponse(): any;
678
- static ProductBundleRequest(): any;
679
- static Size(): any;
739
+ static ProductBundleUpdateRequest(): any;
680
740
  static Price(): any;
741
+ static Size(): any;
681
742
  static LimitedProductData(): any;
682
743
  static GetProducts(): any;
683
744
  static GetProductBundleResponse(): any;
684
- static ProductBundleUpdateRequest(): any;
685
- static ListSizeGuide(): any;
686
- static Meta(): any;
687
745
  static Guide(): any;
688
746
  static ValidateSizeGuide(): any;
689
- static SuccessResponse(): any;
747
+ static ListSizeGuide(): any;
690
748
  static SizeGuideResponse(): any;
749
+ static SEOData(): any;
750
+ static MOQData(): any;
751
+ static OwnerAppItemResponse(): any;
691
752
  static MetaFields(): any;
692
- static ApplicationItemMOQ(): any;
693
753
  static ApplicationItemSEO(): any;
754
+ static ApplicationItemMOQ(): any;
694
755
  static ApplicationItemMeta(): any;
695
756
  static SuccessResponse1(): any;
696
- static MOQData(): any;
697
- static SEOData(): any;
698
- static OwnerAppItemResponse(): any;
699
757
  static GetConfigMetadataResponse(): any;
700
- static PageResponseType(): any;
701
- static GetConfigResponse(): any;
702
- static ConfigErrorResponse(): any;
703
758
  static AttributeDetailsGroup(): any;
704
759
  static AppConfigurationDetail(): any;
760
+ static ConfigErrorResponse(): any;
761
+ static PageResponseType(): any;
762
+ static GetConfigResponse(): any;
705
763
  static ConfigSuccessResponse(): any;
706
764
  static AppConfigurationsSort(): any;
707
765
  static AllowSingleRequest(): any;
708
766
  static DefaultKeyRequest(): any;
709
767
  static GetCatalogConfigurationDetailsProduct(): any;
710
- static MetaDataListingSortMetaResponse(): any;
711
- static MetaDataListingSortResponse(): any;
712
768
  static MetaDataListingFilterMetaResponse(): any;
713
769
  static MetaDataListingFilterResponse(): any;
770
+ static MetaDataListingSortMetaResponse(): any;
771
+ static MetaDataListingSortResponse(): any;
714
772
  static MetaDataListingResponse(): any;
715
773
  static GetCatalogConfigurationMetaData(): any;
716
774
  static ProductSize(): any;
717
- static ConfigurationProductVariantConfig(): any;
718
- static ConfigurationProductVariant(): any;
719
775
  static ConfigurationProductConfig(): any;
720
776
  static ConfigurationProductSimilar(): any;
777
+ static ConfigurationProductVariantConfig(): any;
778
+ static ConfigurationProductVariant(): any;
721
779
  static ConfigurationProduct(): any;
722
- static ConfigurationListingSortConfig(): any;
723
- static ConfigurationListingSort(): any;
724
780
  static ConfigurationBucketPoints(): any;
725
781
  static ConfigurationListingFilterValue(): any;
726
782
  static ConfigurationListingFilterConfig(): any;
727
783
  static ConfigurationListingFilter(): any;
784
+ static ConfigurationListingSortConfig(): any;
785
+ static ConfigurationListingSort(): any;
728
786
  static ConfigurationListing(): any;
787
+ static AppConfiguration(): any;
729
788
  static AppCatalogConfiguration(): any;
730
789
  static GetAppCatalogConfiguration(): any;
731
- static AppConfiguration(): any;
732
790
  static GetCatalogConfigurationDetailsSchemaListing(): any;
733
791
  static EntityConfiguration(): any;
734
792
  static GetAppCatalogEntityConfiguration(): any;
@@ -737,35 +795,35 @@ declare class Validator {
737
795
  static ProductFiltersValue(): any;
738
796
  static ProductFilters(): any;
739
797
  static GetCollectionQueryOptionResponse(): any;
798
+ static SeoDetail(): any;
799
+ static CollectionImage(): any;
800
+ static CollectionBanner(): any;
801
+ static CollectionSchedule(): any;
802
+ static UserInfo(): any;
803
+ static CollectionBadge(): any;
740
804
  static CollectionQuery(): any;
741
- static Media1(): any;
805
+ static CreateCollection(): any;
742
806
  static BannerImage(): any;
743
807
  static ImageUrls(): any;
808
+ static CollectionCreateResponse(): any;
809
+ static Media1(): any;
744
810
  static GetCollectionDetailNest(): any;
745
811
  static CollectionListingFilterTag(): any;
746
812
  static CollectionListingFilterType(): any;
747
813
  static CollectionListingFilter(): any;
748
814
  static GetCollectionListingResponse(): any;
749
- static UserInfo(): any;
750
- static CollectionBadge(): any;
751
- static CollectionSchedule(): any;
752
- static CollectionImage(): any;
753
- static CollectionBanner(): any;
754
- static SeoDetail(): any;
755
- static CreateCollection(): any;
756
- static CollectionCreateResponse(): any;
757
815
  static CollectionDetailResponse(): any;
758
816
  static UpdateCollection(): any;
817
+ static ItemQueryForUserCollection(): any;
818
+ static CollectionItemRequest(): any;
819
+ static UpdatedResponse(): any;
759
820
  static ProductDetailAttribute(): any;
760
821
  static ProductDetailGroupedAttribute(): any;
822
+ static ProductBrand(): any;
761
823
  static Price1(): any;
762
824
  static ProductListingPrice(): any;
763
- static ProductBrand(): any;
764
825
  static ProductListingDetail(): any;
765
826
  static GetCollectionItemsResponse(): any;
766
- static ItemQueryForUserCollection(): any;
767
- static CollectionItemRequest(): any;
768
- static UpdatedResponse(): any;
769
827
  static CatalogInsightBrand(): any;
770
828
  static CatalogInsightItem(): any;
771
829
  static CatalogInsightResponse(): any;
@@ -780,22 +838,22 @@ declare class Validator {
780
838
  static OptinCompanyMetrics(): any;
781
839
  static StoreDetail(): any;
782
840
  static OptinStoreDetails(): any;
783
- static AttributeMasterFilter(): any;
841
+ static AttributeMasterMandatoryDetails(): any;
842
+ static AttributeMasterMeta(): any;
784
843
  static AttributeSchemaRange(): any;
785
844
  static AttributeMaster(): any;
845
+ static AttributeMasterFilter(): any;
786
846
  static AttributeMasterDetails(): any;
787
- static AttributeMasterMandatoryDetails(): any;
788
- static AttributeMasterMeta(): any;
789
847
  static GenderDetail(): any;
790
848
  static ProdcutTemplateCategoriesResponse(): any;
791
849
  static PTErrorResponse(): any;
850
+ static DepartmentCreateUpdate(): any;
851
+ static DepartmentCreateResponse(): any;
852
+ static DepartmentCreateErrorResponse(): any;
792
853
  static UserSerializer(): any;
793
854
  static GetDepartment(): any;
794
855
  static DepartmentsResponse(): any;
795
856
  static DepartmentErrorResponse(): any;
796
- static DepartmentCreateUpdate(): any;
797
- static DepartmentCreateResponse(): any;
798
- static DepartmentCreateErrorResponse(): any;
799
857
  static UserDetail(): any;
800
858
  static DepartmentModel(): any;
801
859
  static ProductTemplate(): any;
@@ -808,55 +866,59 @@ declare class Validator {
808
866
  static InventoryValidationResponse(): any;
809
867
  static HSNData(): any;
810
868
  static HSNCodesResponse(): any;
811
- static ProductDownloadItemsData(): any;
812
869
  static VerifiedBy(): any;
870
+ static ProductDownloadItemsData(): any;
813
871
  static ProductDownloadsItems(): any;
814
872
  static ProductDownloadsResponse(): any;
815
873
  static ProductConfigurationDownloads(): any;
816
874
  static Hierarchy(): any;
875
+ static Media2(): any;
817
876
  static CategoryMappingValues(): any;
818
877
  static CategoryMapping(): any;
819
- static Media2(): any;
820
- static Category(): any;
821
- static CategoryResponse(): any;
822
878
  static CategoryRequestBody(): any;
823
879
  static CategoryCreateResponse(): any;
824
- static SingleCategoryResponse(): any;
880
+ static Category(): any;
881
+ static CategoryResponse(): any;
825
882
  static CategoryUpdateResponse(): any;
826
- static ProductPublished(): any;
827
- static Image(): any;
828
- static Logo(): any;
829
- static Brand(): any;
830
- static Product(): any;
831
- static ProductListingResponse(): any;
883
+ static SingleCategoryResponse(): any;
884
+ static TaxIdentifier(): any;
832
885
  static ProductPublish(): any;
833
- static ReturnConfig(): any;
886
+ static CustomOrder(): any;
834
887
  static TeaserTag(): any;
835
888
  static NetQuantity(): any;
836
- static CustomOrder(): any;
837
- static TaxIdentifier(): any;
838
889
  static Trader(): any;
839
- static ProductCreateUpdate(): any;
890
+ static ProductCreateUpdateSchemaV2(): any;
891
+ static Image(): any;
892
+ static ReturnConfigResponse(): any;
893
+ static Logo(): any;
894
+ static ProductPublished(): any;
895
+ static NetQuantityResponse(): any;
896
+ static Product(): any;
897
+ static ProductListingResponse(): any;
898
+ static ProductVariants(): any;
899
+ static ProductVariantsResponse(): any;
840
900
  static AttributeMasterSerializer(): any;
841
901
  static ProductAttributesResponse(): any;
902
+ static SingleProductResponse(): any;
903
+ static ValidateIdentifier(): any;
904
+ static AllSizes(): any;
905
+ static GetAllSizes(): any;
842
906
  static ValidateProduct(): any;
843
- static UserDetail1(): any;
844
- static ProductBulkRequest(): any;
845
- static ProductBulkRequestList(): any;
846
907
  static UserInfo1(): any;
847
908
  static BulkJob(): any;
848
909
  static BulkResponse(): any;
910
+ static UserDetail1(): any;
911
+ static ProductBulkRequest(): any;
912
+ static ProductBulkRequestList(): any;
849
913
  static BulkProductRequest(): any;
850
914
  static NestedTags(): any;
851
915
  static ProductTagsViewResponse(): any;
916
+ static ProductBulkAssets(): any;
852
917
  static UserCommon(): any;
853
918
  static Items(): any;
854
919
  static BulkAssetResponse(): any;
855
- static ProductBulkAssets(): any;
856
920
  static ProductSizeDeleteDataResponse(): any;
857
921
  static ProductSizeDeleteResponse(): any;
858
- static InventoryResponse(): any;
859
- static InventoryResponsePaginated(): any;
860
922
  static ItemQuery(): any;
861
923
  static SetSize(): any;
862
924
  static SizeDistribution(): any;
@@ -864,25 +926,40 @@ declare class Validator {
864
926
  static GTIN(): any;
865
927
  static InvSize(): any;
866
928
  static InventoryRequest(): any;
867
- static CompanyMeta(): any;
868
- static DimensionResponse(): any;
869
- static WeightResponse(): any;
929
+ static InventoryResponse(): any;
930
+ static InventoryResponsePaginated(): any;
870
931
  static ReturnConfig1(): any;
871
- static StoreMeta(): any;
872
932
  static ManufacturerResponse(): any;
933
+ static CompanyMeta(): any;
934
+ static BrandMeta(): any;
873
935
  static PriceMeta(): any;
874
936
  static QuantityBase(): any;
875
- static BrandMeta(): any;
937
+ static Quantities(): any;
938
+ static WeightResponse(): any;
939
+ static DimensionResponse(): any;
876
940
  static Trader1(): any;
877
941
  static InventorySellerResponse(): any;
878
942
  static InventorySellerIdentifierResponsePaginated(): any;
943
+ static ReturnConfig2(): any;
944
+ static ManufacturerResponse1(): any;
945
+ static CompanyMeta1(): any;
946
+ static BrandMeta1(): any;
947
+ static PriceArticle(): any;
948
+ static Quantity(): any;
949
+ static QuantitiesArticle(): any;
950
+ static ArticleStoreResponse(): any;
951
+ static WeightResponse1(): any;
952
+ static DimensionResponse1(): any;
953
+ static Trader2(): any;
954
+ static GetInventories(): any;
955
+ static GetInventoriesResponse(): any;
879
956
  static BulkInventoryGetItems(): any;
880
957
  static BulkInventoryGet(): any;
881
958
  static InventoryJobPayload(): any;
882
959
  static InventoryBulkRequest(): any;
883
- static InventoryExportJob(): any;
884
960
  static InventoryExportRequest(): any;
885
961
  static InventoryExportResponse(): any;
962
+ static InventoryExportJob(): any;
886
963
  static FilerList(): any;
887
964
  static InventoryConfig(): any;
888
965
  static InventoryPayload(): any;
@@ -890,11 +967,11 @@ declare class Validator {
890
967
  static InventoryFailedReason(): any;
891
968
  static InventoryResponseItem(): any;
892
969
  static InventoryUpdateResponse(): any;
970
+ static HsnUpsert(): any;
893
971
  static HsnCodesObject(): any;
972
+ static HsnCode(): any;
894
973
  static PageResponse(): any;
895
974
  static HsnCodesListingResponse(): any;
896
- static HsnUpsert(): any;
897
- static HsnCode(): any;
898
975
  static BulkHsnUpsert(): any;
899
976
  static BulkHsnResponse(): any;
900
977
  static TaxSlab(): any;
@@ -915,6 +992,7 @@ declare class Validator {
915
992
  static ProductDetail(): any;
916
993
  static InventoryPage(): any;
917
994
  static InventoryStockResponse(): any;
995
+ static ArticleAssignment(): any;
918
996
  static ArticleQuery(): any;
919
997
  static AssignStoreArticle(): any;
920
998
  static AssignStore(): any;
@@ -922,16 +1000,15 @@ declare class Validator {
922
1000
  static StoreAssignResponse(): any;
923
1001
  static SellerPhoneNumber(): any;
924
1002
  static LocationManagerSerializer(): any;
925
- static InvoiceCredSerializer(): any;
926
- static InvoiceDetailsSerializer(): any;
1003
+ static ProductReturnConfigSerializer(): any;
1004
+ static LocationTimingSerializer(): any;
1005
+ static LocationDayWiseSerializer(): any;
927
1006
  static UserSerializer1(): any;
928
1007
  static GetAddressSerializer(): any;
929
1008
  static UserSerializer2(): any;
930
1009
  static GetCompanySerializer(): any;
931
- static ProductReturnConfigSerializer(): any;
932
- static Document(): any;
933
- static LocationTimingSerializer(): any;
934
- static LocationDayWiseSerializer(): any;
1010
+ static InvoiceCredSerializer(): any;
1011
+ static InvoiceDetailsSerializer(): any;
935
1012
  static LocationIntegrationType(): any;
936
1013
  static GetLocationSerializer(): any;
937
1014
  static LocationListSerializer(): any;
@@ -941,11 +1018,11 @@ declare class Validator {
941
1018
  static ApplicationDepartmentListingResponse(): any;
942
1019
  static ApplicationDepartmentJson(): any;
943
1020
  static ApplicationStoreJson(): any;
1021
+ static ContactDetails(): any;
944
1022
  static BusinessCountryInfo(): any;
945
- static CompanyTaxesSerializer(): any;
946
1023
  static Website(): any;
947
1024
  static BusinessDetails(): any;
948
- static ContactDetails(): any;
1025
+ static CompanyTaxesSerializer(): any;
949
1026
  static GetCompanyProfileSerializerResponse(): any;
950
1027
  static CompanyTaxesSerializer1(): any;
951
1028
  static CreateUpdateAddressSerializer(): any;
@@ -962,10 +1039,13 @@ declare class Validator {
962
1039
  static CompanyBrandSerializer(): any;
963
1040
  static CompanyBrandListSerializer(): any;
964
1041
  static CompanyBrandPostRequestSerializer(): any;
1042
+ static HolidayDateSerializer(): any;
1043
+ static HolidaySchemaSerializer(): any;
1044
+ static AddressSerializer(): any;
965
1045
  static LocationSerializer(): any;
966
1046
  static BulkLocationSerializer(): any;
967
- static _ArticleQuery(): any;
968
1047
  static _ArticleAssignment(): any;
1048
+ static _ArticleQuery(): any;
969
1049
  static _AssignStoreArticle(): any;
970
1050
  static AssignStoreRequestValidator(): any;
971
1051
  static AssignStoreResponseSerializer(): any;
@@ -1226,51 +1306,50 @@ declare class Validator {
1226
1306
  static OrderingStore(): any;
1227
1307
  static OrderingStores(): any;
1228
1308
  static OrderingStoresResponse(): any;
1229
- static Identifier(): any;
1230
1309
  static Validity(): any;
1310
+ static CouponAuthor(): any;
1231
1311
  static CouponDateMeta(): any;
1232
- static Ownership(): any;
1233
1312
  static Validation(): any;
1234
- static BulkBundleRestriction(): any;
1235
- static PostOrder(): any;
1313
+ static PriceRange(): any;
1236
1314
  static UsesRemaining(): any;
1237
1315
  static UsesRestriction(): any;
1238
- static PriceRange(): any;
1239
1316
  static PaymentAllowValue(): any;
1240
1317
  static PaymentModes(): any;
1318
+ static PostOrder(): any;
1319
+ static BulkBundleRestriction(): any;
1241
1320
  static Restrictions(): any;
1321
+ static CouponSchedule(): any;
1242
1322
  static DisplayMetaDict(): any;
1243
1323
  static DisplayMeta(): any;
1244
1324
  static State(): any;
1245
- static Rule(): any;
1246
- static CouponAuthor(): any;
1247
1325
  static CouponAction(): any;
1326
+ static Rule(): any;
1248
1327
  static RuleDefinition(): any;
1249
- static CouponSchedule(): any;
1328
+ static Ownership(): any;
1250
1329
  static CouponAdd(): any;
1251
1330
  static CouponsResponse(): any;
1252
1331
  static SuccessMessage(): any;
1253
1332
  static OperationErrorResponse(): any;
1254
1333
  static CouponUpdate(): any;
1255
1334
  static CouponPartialUpdate(): any;
1256
- static PromotionDateMeta(): any;
1257
- static Visibility(): any;
1335
+ static DisplayMeta1(): any;
1258
1336
  static DiscountOffer(): any;
1259
1337
  static CompareObject(): any;
1260
1338
  static ItemCriteria(): any;
1261
1339
  static DiscountRule(): any;
1262
- static PostOrder1(): any;
1340
+ static Ownership1(): any;
1341
+ static PromotionDateMeta(): any;
1342
+ static UserRegistered(): any;
1263
1343
  static UsesRemaining1(): any;
1264
1344
  static UsesRestriction1(): any;
1265
- static UserRegistered(): any;
1266
1345
  static PaymentAllowValue1(): any;
1267
1346
  static PromotionPaymentModes(): any;
1347
+ static PostOrder1(): any;
1268
1348
  static Restrictions1(): any;
1349
+ static PromotionSchedule(): any;
1269
1350
  static PromotionAuthor(): any;
1351
+ static Visibility(): any;
1270
1352
  static PromotionAction(): any;
1271
- static Ownership1(): any;
1272
- static DisplayMeta1(): any;
1273
- static PromotionSchedule(): any;
1274
1353
  static PromotionListItem(): any;
1275
1354
  static PromotionsResponse(): any;
1276
1355
  static PromotionAdd(): any;
@@ -1278,33 +1357,34 @@ declare class Validator {
1278
1357
  static PromotionPartialUpdate(): any;
1279
1358
  static CartItem(): any;
1280
1359
  static OpenapiCartDetailsRequest(): any;
1281
- static RawBreakup(): any;
1282
- static DisplayBreakup(): any;
1283
- static CouponBreakup(): any;
1284
- static LoyaltyPoints(): any;
1285
- static CartBreakup(): any;
1286
- static ProductImage(): any;
1287
- static BaseInfo(): any;
1288
- static CategoryInfo(): any;
1289
- static ActionQuery(): any;
1290
- static ProductAction(): any;
1291
- static CartProduct(): any;
1292
1360
  static ProductPrice(): any;
1293
1361
  static ProductPriceInfo(): any;
1294
1362
  static CartProductIdentifer(): any;
1363
+ static Ownership2(): any;
1295
1364
  static AppliedPromotion(): any;
1296
1365
  static PromoMeta(): any;
1297
- static ProductAvailability(): any;
1366
+ static ProductImage(): any;
1367
+ static CategoryInfo(): any;
1368
+ static ActionQuery(): any;
1369
+ static ProductAction(): any;
1370
+ static BaseInfo(): any;
1371
+ static CartProduct(): any;
1298
1372
  static BasePrice(): any;
1299
1373
  static ArticlePriceInfo(): any;
1300
1374
  static ProductArticle(): any;
1375
+ static ProductAvailability(): any;
1301
1376
  static CartProductInfo(): any;
1377
+ static CouponBreakup(): any;
1378
+ static LoyaltyPoints(): any;
1379
+ static DisplayBreakup(): any;
1380
+ static RawBreakup(): any;
1381
+ static CartBreakup(): any;
1302
1382
  static OpenapiCartDetailsResponse(): any;
1303
1383
  static OpenApiErrorResponse(): any;
1304
1384
  static ShippingAddress(): any;
1305
1385
  static OpenApiCartServiceabilityRequest(): any;
1306
- static PromiseFormatted(): any;
1307
1386
  static PromiseTimestamp(): any;
1387
+ static PromiseFormatted(): any;
1308
1388
  static ShipmentPromise(): any;
1309
1389
  static OpenApiCartServiceabilityResponse(): any;
1310
1390
  static OpenApiFiles(): any;
@@ -1322,21 +1402,22 @@ declare class Validator {
1322
1402
  static UpdateProductCart(): any;
1323
1403
  static UpdateCartRequest(): any;
1324
1404
  static UpdateCartDetailResponse(): any;
1325
- static AppUser(): any;
1326
1405
  static E(): any;
1327
- static Giveaway(): any;
1328
1406
  static GiveawayResponse(): any;
1329
- static HistoryPretty(): any;
1330
- static HistoryRes(): any;
1331
- static Offer(): any;
1332
- static Points(): any;
1333
- static Referral(): any;
1334
- static RewardUser(): any;
1407
+ static Giveaway(): any;
1408
+ static Schedule(): any;
1335
1409
  static RewardsAudience(): any;
1336
1410
  static RewardsRule(): any;
1337
- static Schedule(): any;
1411
+ static Offer(): any;
1338
1412
  static ShareMessages(): any;
1339
1413
  static UserRes(): any;
1414
+ static Points(): any;
1415
+ static RewardUser(): any;
1416
+ static Referral(): any;
1417
+ static AppUser(): any;
1418
+ static GiveawayAudience(): any;
1419
+ static HistoryRes(): any;
1420
+ static PointsHistory(): any;
1340
1421
  static StatGroup(): any;
1341
1422
  static StatsGroups(): any;
1342
1423
  static StatsGroupComponent(): any;