@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
@@ -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,216 +500,275 @@ 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 FilterInfoOption(): any;
504
+ static FiltersInfo(): any;
505
+ static Prices(): any;
506
+ static ShipmentStatus(): any;
507
+ static PaymentModeInfo(): any;
508
+ static UserDataInfo(): any;
509
+ static ShipmentItemFulFillingStore(): any;
510
+ static PlatformItem(): any;
511
+ static GSTDetailsData(): any;
512
+ static BagUnit(): any;
513
+ static ShipmentItem(): any;
514
+ static ShipmentInternalPlatformViewResponse(): any;
515
+ static Error(): any;
516
+ static ShipmentStatusData(): any;
565
517
  static PlatformDeliveryAddress(): any;
566
- static Channel(): any;
567
- static PlatformApplication(): any;
518
+ static Identifier(): any;
519
+ static FinancialBreakup(): any;
520
+ static BagGST(): any;
521
+ static BagConfigs(): any;
522
+ static DiscountRules(): any;
523
+ static ItemCriterias(): any;
524
+ static BuyRules(): any;
525
+ static AppliedPromos(): any;
526
+ static OrderBrandName(): any;
527
+ static OrderBagArticle(): any;
528
+ static OrderBags(): any;
529
+ static UserDetailsData(): any;
530
+ static OrderDetailsData(): any;
531
+ static TrackingList(): any;
532
+ static DPDetailsData(): any;
533
+ static ShipmentPayments(): any;
534
+ static BagStateMapper(): any;
535
+ static BagStatusHistory(): 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;
544
+ static PlatformChannel(): any;
583
545
  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;
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 bulkListingData(): any;
566
+ static BulkListingPage(): any;
567
+ static BulkListingResponse(): any;
568
+ static ManifestPage(): any;
569
+ static DateRange(): any;
570
+ static ManifestFilter(): any;
571
+ static GeneratedManifestItem(): 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 AffiliateMeta(): any;
586
+ static AffiliateBagDetails(): any;
587
+ static BagReturnableCancelableStatus(): any;
588
+ static PDFLinks(): any;
589
+ static ShipmentTimeStamp(): any;
590
+ static LockData(): any;
591
+ static BuyerDetails(): any;
592
+ static EInvoice(): any;
593
+ static EinvoiceInfo(): any;
594
+ static DebugInfo(): any;
595
+ static Formatted(): any;
596
+ static ShipmentMeta(): any;
597
+ static AffiliateDetails(): any;
598
+ static StoreEinvoice(): any;
599
+ static StoreEwaybill(): any;
600
+ static StoreGstCredentials(): any;
601
+ static Document(): any;
602
+ static StoreDocuments(): any;
603
+ static EInvoicePortalDetails(): any;
604
+ static StoreMeta(): any;
605
+ static StoreAddress(): any;
606
+ static Store(): any;
607
+ static BagGSTDetails(): any;
608
+ static B2BPODetails(): any;
609
+ static BagMeta(): any;
610
+ static ArticleDetails(): any;
611
+ static Dates(): any;
612
+ static Attributes(): any;
613
+ static Item(): any;
614
+ static Brand(): any;
615
+ static Weight(): any;
616
+ static Dimensions(): any;
617
+ static ReturnConfig(): 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 Bags(): any;
632
+ static OriginalFilter(): 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 EntityReasonData(): any;
640
+ static EntitiesReasons(): any;
641
+ static ProductsReasonsFilters(): any;
642
+ static ProductsReasonsData(): any;
643
+ static ProductsReasons(): any;
644
+ static ReasonsData(): any;
645
+ static EntitiesDataUpdates(): any;
646
+ static ProductsDataUpdatesFilters(): any;
647
+ static ProductsDataUpdates(): any;
648
+ static DataUpdates(): any;
649
+ static Products(): 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 OrderUser(): any;
657
+ static UserData(): any;
658
+ static OrderPriority(): any;
659
+ static MarketPlacePdf(): any;
660
+ static AffiliateBag(): any;
661
+ static ArticleDetails1(): any;
662
+ static ShipmentDetails(): any;
663
+ static LocationDetails(): any;
664
+ static ShipmentConfig(): any;
665
+ static ShipmentData(): any;
666
+ static OrderInfo(): any;
667
+ static AffiliateStoreIdMapping(): any;
668
+ static AffiliateAppConfigMeta(): any;
669
+ static AffiliateAppConfig(): any;
670
+ static AffiliateInventoryLogisticsConfig(): any;
671
+ static AffiliateInventoryPaymentConfig(): any;
672
+ static AffiliateInventoryOrderConfig(): any;
673
+ static AffiliateInventoryArticleAssignmentConfig(): any;
674
+ static AffiliateInventoryStoreConfig(): any;
675
+ static AffiliateInventoryConfig(): any;
676
+ static AffiliateConfig(): any;
677
+ static Affiliate(): any;
678
+ static OrderConfig(): 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 BillingInfo(): any;
698
+ static TaxInfo(): any;
699
+ static ProcessingDates(): any;
700
+ static Tax(): any;
701
+ static Charge(): any;
702
+ static LineItem(): any;
703
+ static Shipment(): any;
704
+ static PaymentMethod(): any;
705
+ static PaymentInfo(): any;
706
+ static ShippingInfo(): 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;
663
721
  static SearchKeywordResult(): any;
664
722
  static CreateSearchKeyword(): any;
723
+ static GetSearchWordsData(): any;
724
+ static GetSearchWordsDetailResponse(): any;
665
725
  static DeleteResponse(): any;
666
726
  static GetSearchWordsResponse(): any;
667
- static GetAutocompleteWordsData(): any;
668
- static GetAutocompleteWordsResponse(): any;
669
- static Media(): any;
670
727
  static AutocompletePageAction(): any;
671
728
  static AutocompleteAction(): any;
729
+ static Media(): 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;
739
+ static ProductBundleUpdateRequest(): any;
679
740
  static Size(): any;
680
741
  static Price(): 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;
752
+ static ApplicationItemSEO(): any;
691
753
  static MetaFields(): any;
692
754
  static ApplicationItemMOQ(): any;
693
- static ApplicationItemSEO(): 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;
@@ -719,55 +777,55 @@ declare class Validator {
719
777
  static ConfigurationProductConfig(): any;
720
778
  static ConfigurationProductSimilar(): 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;
735
- static ProductSortOn(): any;
736
793
  static ProductFiltersKey(): any;
737
794
  static ProductFiltersValue(): any;
738
795
  static ProductFilters(): any;
796
+ static ProductSortOn(): any;
739
797
  static GetCollectionQueryOptionResponse(): any;
740
798
  static CollectionQuery(): any;
741
- static Media1(): any;
742
- static BannerImage(): any;
743
- static ImageUrls(): any;
744
- static GetCollectionDetailNest(): any;
745
- static CollectionListingFilterTag(): any;
746
- static CollectionListingFilterType(): any;
747
- static CollectionListingFilter(): any;
748
- static GetCollectionListingResponse(): any;
749
- static UserInfo(): any;
750
- static CollectionBadge(): any;
751
799
  static CollectionSchedule(): any;
800
+ static UserInfo(): any;
752
801
  static CollectionImage(): any;
753
802
  static CollectionBanner(): any;
754
803
  static SeoDetail(): any;
804
+ static CollectionBadge(): any;
755
805
  static CreateCollection(): any;
806
+ static BannerImage(): any;
807
+ static ImageUrls(): any;
756
808
  static CollectionCreateResponse(): any;
809
+ static CollectionListingFilterType(): any;
810
+ static CollectionListingFilterTag(): any;
811
+ static CollectionListingFilter(): any;
812
+ static Media1(): any;
813
+ static GetCollectionDetailNest(): any;
814
+ static GetCollectionListingResponse(): 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
- static CatalogInsightBrand(): any;
770
827
  static CatalogInsightItem(): any;
828
+ static CatalogInsightBrand(): any;
771
829
  static CatalogInsightResponse(): any;
772
830
  static CrossSellingData(): any;
773
831
  static CrossSellingResponse(): 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;
786
845
  static AttributeMasterDetails(): any;
787
- static AttributeMasterMandatoryDetails(): any;
788
- static AttributeMasterMeta(): any;
846
+ static AttributeMasterFilter(): 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,81 +866,94 @@ 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
- static Hierarchy(): any;
874
+ static Media2(): any;
817
875
  static CategoryMappingValues(): any;
818
876
  static CategoryMapping(): any;
819
- static Media2(): any;
820
- static Category(): any;
821
- static CategoryResponse(): any;
877
+ static Hierarchy(): 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;
883
+ static SingleCategoryResponse(): any;
884
+ static TaxIdentifier(): any;
885
+ static Trader(): any;
886
+ static CustomOrder(): any;
887
+ static NetQuantity(): any;
888
+ static TeaserTag(): any;
889
+ static ProductPublish(): any;
890
+ static ProductCreateUpdate(): any;
827
891
  static Image(): any;
892
+ static ProductPublished(): any;
828
893
  static Logo(): any;
829
- static Brand(): any;
830
894
  static Product(): any;
831
895
  static ProductListingResponse(): any;
832
- static ProductPublish(): any;
833
- static ReturnConfig(): any;
834
- static TeaserTag(): any;
835
- static NetQuantity(): any;
836
- static CustomOrder(): any;
837
- static TaxIdentifier(): any;
838
- static Trader(): any;
839
- static ProductCreateUpdate(): any;
896
+ static ProductVariants(): any;
897
+ static ProductVariantsResponse(): any;
840
898
  static AttributeMasterSerializer(): any;
841
899
  static ProductAttributesResponse(): any;
842
900
  static ValidateProduct(): any;
843
- static UserDetail1(): any;
844
- static ProductBulkRequest(): any;
845
- static ProductBulkRequestList(): any;
846
901
  static UserInfo1(): any;
847
902
  static BulkJob(): any;
848
903
  static BulkResponse(): any;
904
+ static UserDetail1(): any;
905
+ static ProductBulkRequest(): any;
906
+ static ProductBulkRequestList(): any;
849
907
  static BulkProductRequest(): any;
850
908
  static NestedTags(): any;
851
909
  static ProductTagsViewResponse(): any;
910
+ static ProductBulkAssets(): any;
852
911
  static UserCommon(): any;
853
912
  static Items(): any;
854
913
  static BulkAssetResponse(): any;
855
- static ProductBulkAssets(): any;
856
914
  static ProductSizeDeleteDataResponse(): any;
857
915
  static ProductSizeDeleteResponse(): any;
858
- static InventoryResponse(): any;
859
- static InventoryResponsePaginated(): any;
860
916
  static ItemQuery(): any;
917
+ static GTIN(): any;
861
918
  static SetSize(): any;
862
919
  static SizeDistribution(): any;
863
920
  static InventorySet(): any;
864
- static GTIN(): any;
865
921
  static InvSize(): any;
866
922
  static InventoryRequest(): any;
867
- static CompanyMeta(): any;
923
+ static InventoryResponse(): any;
924
+ static InventoryResponsePaginated(): any;
925
+ static ManufacturerResponse(): any;
868
926
  static DimensionResponse(): any;
927
+ static Trader1(): any;
869
928
  static WeightResponse(): any;
870
- static ReturnConfig1(): any;
871
- static StoreMeta(): any;
872
- static ManufacturerResponse(): any;
873
- static PriceMeta(): any;
874
929
  static QuantityBase(): any;
930
+ static Quantities(): any;
931
+ static CompanyMeta(): any;
875
932
  static BrandMeta(): any;
876
- static Trader1(): any;
933
+ static PriceMeta(): any;
934
+ static ReturnConfig1(): any;
877
935
  static InventorySellerResponse(): any;
878
936
  static InventorySellerIdentifierResponsePaginated(): any;
937
+ static ManufacturerResponse1(): any;
938
+ static DimensionResponse1(): any;
939
+ static Trader2(): any;
940
+ static WeightResponse1(): any;
941
+ static ArticleStoreResponse(): any;
942
+ static Quantity(): any;
943
+ static QuantitiesArticle(): any;
944
+ static CompanyMeta1(): any;
945
+ static BrandMeta1(): any;
946
+ static PriceArticle(): any;
947
+ static ReturnConfig2(): any;
948
+ static GetInventories(): any;
949
+ static GetInventoriesResponse(): any;
879
950
  static BulkInventoryGetItems(): any;
880
951
  static BulkInventoryGet(): any;
881
952
  static InventoryJobPayload(): any;
882
953
  static InventoryBulkRequest(): any;
883
- static InventoryExportJob(): any;
884
954
  static InventoryExportRequest(): any;
885
955
  static InventoryExportResponse(): any;
956
+ static InventoryExportJob(): any;
886
957
  static FilerList(): any;
887
958
  static InventoryConfig(): any;
888
959
  static InventoryPayload(): any;
@@ -890,11 +961,11 @@ declare class Validator {
890
961
  static InventoryFailedReason(): any;
891
962
  static InventoryResponseItem(): any;
892
963
  static InventoryUpdateResponse(): any;
964
+ static HsnUpsert(): any;
893
965
  static HsnCodesObject(): any;
966
+ static HsnCode(): any;
894
967
  static PageResponse(): any;
895
968
  static HsnCodesListingResponse(): any;
896
- static HsnUpsert(): any;
897
- static HsnCode(): any;
898
969
  static BulkHsnUpsert(): any;
899
970
  static BulkHsnResponse(): any;
900
971
  static TaxSlab(): any;
@@ -916,23 +987,23 @@ declare class Validator {
916
987
  static InventoryPage(): any;
917
988
  static InventoryStockResponse(): any;
918
989
  static ArticleQuery(): any;
990
+ static ArticleAssignment(): any;
919
991
  static AssignStoreArticle(): any;
920
992
  static AssignStore(): any;
921
993
  static ArticleAssignment1(): any;
922
994
  static StoreAssignResponse(): any;
923
- static SellerPhoneNumber(): any;
924
- static LocationManagerSerializer(): any;
925
- static InvoiceCredSerializer(): any;
926
- static InvoiceDetailsSerializer(): any;
927
995
  static UserSerializer1(): any;
928
996
  static GetAddressSerializer(): any;
997
+ static LocationIntegrationType(): any;
998
+ static LocationTimingSerializer(): any;
999
+ static LocationDayWiseSerializer(): any;
929
1000
  static UserSerializer2(): any;
930
1001
  static GetCompanySerializer(): any;
1002
+ static InvoiceCredSerializer(): any;
1003
+ static InvoiceDetailsSerializer(): any;
931
1004
  static ProductReturnConfigSerializer(): any;
932
- static Document(): any;
933
- static LocationTimingSerializer(): any;
934
- static LocationDayWiseSerializer(): any;
935
- static LocationIntegrationType(): any;
1005
+ static SellerPhoneNumber(): any;
1006
+ static LocationManagerSerializer(): any;
936
1007
  static GetLocationSerializer(): any;
937
1008
  static LocationListSerializer(): any;
938
1009
  static ApplicationBrandJson(): any;
@@ -941,8 +1012,8 @@ declare class Validator {
941
1012
  static ApplicationDepartmentListingResponse(): any;
942
1013
  static ApplicationDepartmentJson(): any;
943
1014
  static ApplicationStoreJson(): any;
944
- static BusinessCountryInfo(): any;
945
1015
  static CompanyTaxesSerializer(): any;
1016
+ static BusinessCountryInfo(): any;
946
1017
  static Website(): any;
947
1018
  static BusinessDetails(): any;
948
1019
  static ContactDetails(): any;
@@ -962,6 +1033,8 @@ declare class Validator {
962
1033
  static CompanyBrandSerializer(): any;
963
1034
  static CompanyBrandListSerializer(): any;
964
1035
  static CompanyBrandPostRequestSerializer(): any;
1036
+ static HolidayDateSerializer(): any;
1037
+ static HolidaySchemaSerializer(): any;
965
1038
  static LocationSerializer(): any;
966
1039
  static BulkLocationSerializer(): any;
967
1040
  static _ArticleQuery(): any;
@@ -1226,27 +1299,26 @@ declare class Validator {
1226
1299
  static OrderingStore(): any;
1227
1300
  static OrderingStores(): any;
1228
1301
  static OrderingStoresResponse(): any;
1229
- static Identifier(): any;
1302
+ static Ownership(): any;
1230
1303
  static Validity(): any;
1304
+ static DisplayMetaDict(): any;
1305
+ static DisplayMeta(): any;
1231
1306
  static CouponDateMeta(): any;
1232
- static Ownership(): any;
1233
1307
  static Validation(): any;
1234
- static BulkBundleRestriction(): any;
1235
- static PostOrder(): any;
1236
- static UsesRemaining(): any;
1237
- static UsesRestriction(): any;
1308
+ static RuleDefinition(): any;
1238
1309
  static PriceRange(): any;
1239
1310
  static PaymentAllowValue(): any;
1240
1311
  static PaymentModes(): any;
1312
+ static PostOrder(): any;
1313
+ static UsesRemaining(): any;
1314
+ static UsesRestriction(): any;
1315
+ static BulkBundleRestriction(): any;
1241
1316
  static Restrictions(): any;
1242
- static DisplayMetaDict(): any;
1243
- static DisplayMeta(): any;
1244
1317
  static State(): any;
1245
- static Rule(): any;
1246
- static CouponAuthor(): any;
1247
1318
  static CouponAction(): any;
1248
- static RuleDefinition(): any;
1249
1319
  static CouponSchedule(): any;
1320
+ static CouponAuthor(): any;
1321
+ static Rule(): any;
1250
1322
  static CouponAdd(): any;
1251
1323
  static CouponsResponse(): any;
1252
1324
  static SuccessMessage(): any;
@@ -1254,23 +1326,23 @@ declare class Validator {
1254
1326
  static CouponUpdate(): any;
1255
1327
  static CouponPartialUpdate(): any;
1256
1328
  static PromotionDateMeta(): any;
1257
- static Visibility(): any;
1258
- static DiscountOffer(): any;
1259
- static CompareObject(): any;
1260
- static ItemCriteria(): any;
1261
- static DiscountRule(): any;
1329
+ static PaymentAllowValue1(): any;
1330
+ static PromotionPaymentModes(): any;
1262
1331
  static PostOrder1(): any;
1263
1332
  static UsesRemaining1(): any;
1264
1333
  static UsesRestriction1(): any;
1265
1334
  static UserRegistered(): any;
1266
- static PaymentAllowValue1(): any;
1267
- static PromotionPaymentModes(): any;
1268
1335
  static Restrictions1(): any;
1269
- static PromotionAuthor(): any;
1270
1336
  static PromotionAction(): any;
1271
- static Ownership1(): any;
1337
+ static CompareObject(): any;
1338
+ static ItemCriteria(): any;
1339
+ static DiscountOffer(): any;
1340
+ static DiscountRule(): any;
1272
1341
  static DisplayMeta1(): any;
1342
+ static Ownership1(): any;
1343
+ static Visibility(): any;
1273
1344
  static PromotionSchedule(): any;
1345
+ static PromotionAuthor(): any;
1274
1346
  static PromotionListItem(): any;
1275
1347
  static PromotionsResponse(): any;
1276
1348
  static PromotionAdd(): any;
@@ -1278,23 +1350,24 @@ declare class Validator {
1278
1350
  static PromotionPartialUpdate(): any;
1279
1351
  static CartItem(): any;
1280
1352
  static OpenapiCartDetailsRequest(): any;
1281
- static RawBreakup(): any;
1282
- static DisplayBreakup(): any;
1283
1353
  static CouponBreakup(): any;
1354
+ static DisplayBreakup(): any;
1284
1355
  static LoyaltyPoints(): any;
1356
+ static RawBreakup(): any;
1285
1357
  static CartBreakup(): any;
1286
- static ProductImage(): any;
1287
- static BaseInfo(): any;
1358
+ static ProductPrice(): any;
1359
+ static ProductPriceInfo(): any;
1360
+ static PromoMeta(): any;
1361
+ static Ownership2(): any;
1362
+ static AppliedPromotion(): any;
1288
1363
  static CategoryInfo(): any;
1364
+ static BaseInfo(): any;
1289
1365
  static ActionQuery(): any;
1290
1366
  static ProductAction(): any;
1367
+ static ProductImage(): any;
1291
1368
  static CartProduct(): any;
1292
- static ProductPrice(): any;
1293
- static ProductPriceInfo(): any;
1294
- static CartProductIdentifer(): any;
1295
- static AppliedPromotion(): any;
1296
- static PromoMeta(): any;
1297
1369
  static ProductAvailability(): any;
1370
+ static CartProductIdentifer(): any;
1298
1371
  static BasePrice(): any;
1299
1372
  static ArticlePriceInfo(): any;
1300
1373
  static ProductArticle(): any;
@@ -1303,8 +1376,8 @@ declare class Validator {
1303
1376
  static OpenApiErrorResponse(): any;
1304
1377
  static ShippingAddress(): any;
1305
1378
  static OpenApiCartServiceabilityRequest(): any;
1306
- static PromiseFormatted(): any;
1307
1379
  static PromiseTimestamp(): any;
1380
+ static PromiseFormatted(): any;
1308
1381
  static ShipmentPromise(): any;
1309
1382
  static OpenApiCartServiceabilityResponse(): any;
1310
1383
  static OpenApiFiles(): any;
@@ -1322,21 +1395,22 @@ declare class Validator {
1322
1395
  static UpdateProductCart(): any;
1323
1396
  static UpdateCartRequest(): any;
1324
1397
  static UpdateCartDetailResponse(): any;
1325
- static AppUser(): any;
1326
1398
  static E(): any;
1327
- static Giveaway(): any;
1328
1399
  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;
1400
+ static Giveaway(): any;
1401
+ static Schedule(): any;
1335
1402
  static RewardsAudience(): any;
1336
1403
  static RewardsRule(): any;
1337
- static Schedule(): any;
1404
+ static Offer(): any;
1338
1405
  static ShareMessages(): any;
1339
1406
  static UserRes(): any;
1407
+ static Points(): any;
1408
+ static RewardUser(): any;
1409
+ static Referral(): any;
1410
+ static AppUser(): any;
1411
+ static GiveawayAudience(): any;
1412
+ static HistoryRes(): any;
1413
+ static PointsHistory(): any;
1340
1414
  static StatGroup(): any;
1341
1415
  static StatsGroups(): any;
1342
1416
  static StatsGroupComponent(): any;