hey-pharmacist-ecommerce 1.1.41 → 1.1.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +70 -8
- package/dist/index.d.mts +380 -2364
- package/dist/index.d.ts +380 -2364
- package/dist/index.js +576 -615
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +576 -612
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/components/AccountAddressesTab.tsx +9 -9
- package/src/components/AccountOrdersTab.tsx +11 -11
- package/src/components/AccountOverviewTab.tsx +26 -26
- package/src/components/AccountPaymentTab.tsx +2 -2
- package/src/components/AccountReviewsTab.tsx +1 -1
- package/src/components/AccountSettingsTab.tsx +6 -6
- package/src/components/AddressFormModal.tsx +2 -2
- package/src/components/CartItem.tsx +15 -15
- package/src/components/FilterChips.tsx +7 -7
- package/src/components/Footer.tsx +9 -9
- package/src/components/Header.tsx +7 -7
- package/src/components/Notification.tsx +3 -3
- package/src/components/NotificationBell.tsx +3 -3
- package/src/components/NotificationDrawer.tsx +1 -1
- package/src/components/NotificationModal.tsx +1 -1
- package/src/components/OrderCard.tsx +2 -2
- package/src/components/ProductCard.tsx +13 -13
- package/src/components/QuickViewModal.tsx +28 -28
- package/src/components/ReviewCard.tsx +6 -6
- package/src/components/TabNavigation.tsx +2 -2
- package/src/components/ui/Badge.tsx +2 -2
- package/src/components/ui/Button.tsx +3 -3
- package/src/components/ui/ConfirmModal.tsx +3 -3
- package/src/components/ui/Input.tsx +1 -1
- package/src/lib/Apis/api.ts +0 -1
- package/src/lib/Apis/models/group-with-no-users-dto.ts +0 -6
- package/src/lib/Apis/models/group-with-users-dto.ts +0 -6
- package/src/lib/Apis/models/index.ts +0 -35
- package/src/lib/Apis/models/order.ts +0 -6
- package/src/lib/Apis/models/populated-order.ts +0 -6
- package/src/lib/Apis/models/preference-update-item.ts +1 -0
- package/src/lib/Apis/models/update-user-dto.ts +0 -6
- package/src/lib/Apis/models/user-group.ts +0 -6
- package/src/lib/Apis/models/user-with-no-id.ts +0 -6
- package/src/lib/Apis/sharedConfig.ts +1 -1
- package/src/providers/ThemeProvider.tsx +2 -2
- package/src/screens/AddressesScreen.tsx +6 -6
- package/src/screens/CartScreen.tsx +23 -23
- package/src/screens/ChangePasswordScreen.tsx +2 -2
- package/src/screens/CheckoutScreen.tsx +28 -28
- package/src/screens/CurrentOrdersScreen.tsx +4 -4
- package/src/screens/EditProfileScreen.tsx +1 -1
- package/src/screens/ForgotPasswordScreen.tsx +11 -11
- package/src/screens/LoginScreen.tsx +12 -12
- package/src/screens/OrderDetailScreen.tsx +30 -30
- package/src/screens/OrdersScreen.tsx +3 -3
- package/src/screens/ProductDetailScreen.tsx +59 -59
- package/src/screens/ProfileScreen.tsx +2 -2
- package/src/screens/RegisterScreen.tsx +15 -15
- package/src/screens/ResetPasswordScreen.tsx +14 -14
- package/src/screens/SearchResultsScreen.tsx +7 -7
- package/src/screens/ShopScreen.tsx +55 -55
- package/src/screens/WishlistScreen.tsx +22 -22
- package/src/styles/globals.css +43 -43
- package/src/lib/Apis/apis/marketing-api.ts +0 -3099
- package/src/lib/Apis/models/add-contact-to-list-dto.ts +0 -33
- package/src/lib/Apis/models/browser-stats-response-dto.ts +0 -40
- package/src/lib/Apis/models/campaign-content-response-dto.ts +0 -40
- package/src/lib/Apis/models/campaign-draft-dto.ts +0 -175
- package/src/lib/Apis/models/campaign-draft-response-dto.ts +0 -40
- package/src/lib/Apis/models/campaign-draft-schedule-dto.ts +0 -49
- package/src/lib/Apis/models/campaign-draft-schedule-response-dto.ts +0 -40
- package/src/lib/Apis/models/campaign-draft-sending-dto.ts +0 -43
- package/src/lib/Apis/models/campaign-draft-sending-response-dto.ts +0 -40
- package/src/lib/Apis/models/contact-aggregated-stats-response-dto.ts +0 -40
- package/src/lib/Apis/models/contact-full-dto.ts +0 -93
- package/src/lib/Apis/models/contact-full-response-dto.ts +0 -40
- package/src/lib/Apis/models/contact-list-stats-response-dto.ts +0 -40
- package/src/lib/Apis/models/contact-lists-response-dto.ts +0 -40
- package/src/lib/Apis/models/country-stats-response-dto.ts +0 -40
- package/src/lib/Apis/models/create-contact-dto.ts +0 -39
- package/src/lib/Apis/models/create-contact-list-dto.ts +0 -27
- package/src/lib/Apis/models/create-email-template-dto.ts +0 -51
- package/src/lib/Apis/models/create-marketing-campaign-dto.ts +0 -81
- package/src/lib/Apis/models/email-template-response-dto.ts +0 -117
- package/src/lib/Apis/models/general-stats-response-dto.ts +0 -40
- package/src/lib/Apis/models/link-stats-response-dto.ts +0 -40
- package/src/lib/Apis/models/marketing-campaign-content-dto.ts +0 -27
- package/src/lib/Apis/models/marketing-list-contact-dto.ts +0 -51
- package/src/lib/Apis/models/schedule-campaign-draft-dto.ts +0 -27
- package/src/lib/Apis/models/send-test-email-dto.ts +0 -28
- package/src/lib/Apis/models/single-browser-stats-dto.ts +0 -45
- package/src/lib/Apis/models/single-contact-aggregated-stats-dto.ts +0 -129
- package/src/lib/Apis/models/single-contact-list-stats-dto.ts +0 -117
- package/src/lib/Apis/models/single-country-stats-dto.ts +0 -39
- package/src/lib/Apis/models/single-general-stats.ts +0 -153
- package/src/lib/Apis/models/single-link-stats-dto.ts +0 -39
- package/src/lib/Apis/models/single-recipient-dto.ts +0 -33
- package/src/lib/Apis/models/update-campaign-draft-content-dto.ts +0 -27
- package/src/lib/Apis/models/update-marketing-camp-draft-dto.ts +0 -81
package/dist/index.d.ts
CHANGED
|
@@ -63,38 +63,6 @@ interface ThemeProviderProps {
|
|
|
63
63
|
}
|
|
64
64
|
declare function ThemeProvider({ config, children }: ThemeProviderProps): react_jsx_runtime.JSX.Element;
|
|
65
65
|
|
|
66
|
-
/**
|
|
67
|
-
* Hey Pharamcist API
|
|
68
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
69
|
-
*
|
|
70
|
-
* OpenAPI spec version: 1.0
|
|
71
|
-
*
|
|
72
|
-
*
|
|
73
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
74
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
75
|
-
* Do not edit the class manually.
|
|
76
|
-
*/
|
|
77
|
-
/**
|
|
78
|
-
*
|
|
79
|
-
* @export
|
|
80
|
-
* @interface AddContactToListDTO
|
|
81
|
-
*/
|
|
82
|
-
interface AddContactToListDTO {
|
|
83
|
-
_id?: string;
|
|
84
|
-
/**
|
|
85
|
-
*
|
|
86
|
-
* @type {number}
|
|
87
|
-
* @memberof AddContactToListDTO
|
|
88
|
-
*/
|
|
89
|
-
contactID: number;
|
|
90
|
-
/**
|
|
91
|
-
*
|
|
92
|
-
* @type {number}
|
|
93
|
-
* @memberof AddContactToListDTO
|
|
94
|
-
*/
|
|
95
|
-
listID: number;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
66
|
/**
|
|
99
67
|
* Hey Pharamcist API
|
|
100
68
|
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
@@ -647,89 +615,6 @@ interface Blog {
|
|
|
647
615
|
storeId: string;
|
|
648
616
|
}
|
|
649
617
|
|
|
650
|
-
/**
|
|
651
|
-
* Hey Pharamcist API
|
|
652
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
653
|
-
*
|
|
654
|
-
* OpenAPI spec version: 1.0
|
|
655
|
-
*
|
|
656
|
-
*
|
|
657
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
658
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
659
|
-
* Do not edit the class manually.
|
|
660
|
-
*/
|
|
661
|
-
/**
|
|
662
|
-
*
|
|
663
|
-
* @export
|
|
664
|
-
* @interface SingleBrowserStatsDto
|
|
665
|
-
*/
|
|
666
|
-
interface SingleBrowserStatsDto {
|
|
667
|
-
_id?: string;
|
|
668
|
-
/**
|
|
669
|
-
*
|
|
670
|
-
* @type {number}
|
|
671
|
-
* @memberof SingleBrowserStatsDto
|
|
672
|
-
*/
|
|
673
|
-
count: number;
|
|
674
|
-
/**
|
|
675
|
-
*
|
|
676
|
-
* @type {number}
|
|
677
|
-
* @memberof SingleBrowserStatsDto
|
|
678
|
-
*/
|
|
679
|
-
distinctCount: number;
|
|
680
|
-
/**
|
|
681
|
-
*
|
|
682
|
-
* @type {string}
|
|
683
|
-
* @memberof SingleBrowserStatsDto
|
|
684
|
-
*/
|
|
685
|
-
platform: string;
|
|
686
|
-
/**
|
|
687
|
-
*
|
|
688
|
-
* @type {string}
|
|
689
|
-
* @memberof SingleBrowserStatsDto
|
|
690
|
-
*/
|
|
691
|
-
userAgent: string;
|
|
692
|
-
}
|
|
693
|
-
|
|
694
|
-
/**
|
|
695
|
-
* Hey Pharamcist API
|
|
696
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
697
|
-
*
|
|
698
|
-
* OpenAPI spec version: 1.0
|
|
699
|
-
*
|
|
700
|
-
*
|
|
701
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
702
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
703
|
-
* Do not edit the class manually.
|
|
704
|
-
*/
|
|
705
|
-
|
|
706
|
-
/**
|
|
707
|
-
*
|
|
708
|
-
* @export
|
|
709
|
-
* @interface BrowserStatsResponseDTO
|
|
710
|
-
*/
|
|
711
|
-
interface BrowserStatsResponseDTO {
|
|
712
|
-
_id?: string;
|
|
713
|
-
/**
|
|
714
|
-
*
|
|
715
|
-
* @type {number}
|
|
716
|
-
* @memberof BrowserStatsResponseDTO
|
|
717
|
-
*/
|
|
718
|
-
count: number;
|
|
719
|
-
/**
|
|
720
|
-
*
|
|
721
|
-
* @type {Array<SingleBrowserStatsDto>}
|
|
722
|
-
* @memberof BrowserStatsResponseDTO
|
|
723
|
-
*/
|
|
724
|
-
data: Array<SingleBrowserStatsDto>;
|
|
725
|
-
/**
|
|
726
|
-
*
|
|
727
|
-
* @type {number}
|
|
728
|
-
* @memberof BrowserStatsResponseDTO
|
|
729
|
-
*/
|
|
730
|
-
total: number;
|
|
731
|
-
}
|
|
732
|
-
|
|
733
618
|
/**
|
|
734
619
|
* Hey Pharamcist API
|
|
735
620
|
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
@@ -851,16 +736,22 @@ interface BulkUnassignSubcategoriesDto {
|
|
|
851
736
|
/**
|
|
852
737
|
*
|
|
853
738
|
* @export
|
|
854
|
-
* @interface
|
|
739
|
+
* @interface CartItem
|
|
855
740
|
*/
|
|
856
|
-
interface
|
|
741
|
+
interface CartItem$1 {
|
|
857
742
|
_id?: string;
|
|
858
743
|
/**
|
|
859
|
-
*
|
|
744
|
+
* Product variant id
|
|
860
745
|
* @type {string}
|
|
861
|
-
* @memberof
|
|
746
|
+
* @memberof CartItem
|
|
747
|
+
*/
|
|
748
|
+
productVariantId: string;
|
|
749
|
+
/**
|
|
750
|
+
*
|
|
751
|
+
* @type {number}
|
|
752
|
+
* @memberof CartItem
|
|
862
753
|
*/
|
|
863
|
-
|
|
754
|
+
quantity: number;
|
|
864
755
|
}
|
|
865
756
|
|
|
866
757
|
/**
|
|
@@ -878,28 +769,28 @@ interface MarketingCampaignContentDTO {
|
|
|
878
769
|
/**
|
|
879
770
|
*
|
|
880
771
|
* @export
|
|
881
|
-
* @interface
|
|
772
|
+
* @interface CartBodyDTO
|
|
882
773
|
*/
|
|
883
|
-
interface
|
|
774
|
+
interface CartBodyDTO {
|
|
884
775
|
_id?: string;
|
|
885
776
|
/**
|
|
886
777
|
*
|
|
887
|
-
* @type {
|
|
888
|
-
* @memberof
|
|
778
|
+
* @type {Array<CartItem>}
|
|
779
|
+
* @memberof CartBodyDTO
|
|
889
780
|
*/
|
|
890
|
-
|
|
781
|
+
items: Array<CartItem$1>;
|
|
891
782
|
/**
|
|
892
783
|
*
|
|
893
|
-
* @type {Array<
|
|
894
|
-
* @memberof
|
|
784
|
+
* @type {Array<string>}
|
|
785
|
+
* @memberof CartBodyDTO
|
|
895
786
|
*/
|
|
896
|
-
|
|
787
|
+
customProducts?: Array<string>;
|
|
897
788
|
/**
|
|
898
789
|
*
|
|
899
|
-
* @type {
|
|
900
|
-
* @memberof
|
|
790
|
+
* @type {string}
|
|
791
|
+
* @memberof CartBodyDTO
|
|
901
792
|
*/
|
|
902
|
-
|
|
793
|
+
discount?: string;
|
|
903
794
|
}
|
|
904
795
|
|
|
905
796
|
/**
|
|
@@ -916,162 +807,199 @@ interface CampaignContentResponseDTO {
|
|
|
916
807
|
/**
|
|
917
808
|
*
|
|
918
809
|
* @export
|
|
919
|
-
* @interface
|
|
810
|
+
* @interface SingleProductMedia
|
|
920
811
|
*/
|
|
921
|
-
interface
|
|
812
|
+
interface SingleProductMedia {
|
|
922
813
|
_id?: string;
|
|
923
814
|
/**
|
|
924
|
-
*
|
|
815
|
+
*
|
|
925
816
|
* @type {string}
|
|
926
|
-
* @memberof
|
|
817
|
+
* @memberof SingleProductMedia
|
|
927
818
|
*/
|
|
928
|
-
|
|
819
|
+
id: string;
|
|
820
|
+
/**
|
|
821
|
+
*
|
|
822
|
+
* @type {string}
|
|
823
|
+
* @memberof SingleProductMedia
|
|
824
|
+
*/
|
|
825
|
+
file: string;
|
|
929
826
|
/**
|
|
930
|
-
*
|
|
827
|
+
*
|
|
931
828
|
* @type {string}
|
|
932
|
-
* @memberof
|
|
829
|
+
* @memberof SingleProductMedia
|
|
933
830
|
*/
|
|
934
|
-
|
|
831
|
+
type: SingleProductMediaTypeEnum;
|
|
935
832
|
/**
|
|
936
|
-
*
|
|
937
|
-
* @type {
|
|
938
|
-
* @memberof
|
|
833
|
+
*
|
|
834
|
+
* @type {boolean}
|
|
835
|
+
* @memberof SingleProductMedia
|
|
939
836
|
*/
|
|
940
|
-
|
|
837
|
+
isActive: boolean;
|
|
941
838
|
/**
|
|
942
|
-
*
|
|
839
|
+
*
|
|
943
840
|
* @type {number}
|
|
944
|
-
* @memberof
|
|
841
|
+
* @memberof SingleProductMedia
|
|
945
842
|
*/
|
|
946
|
-
|
|
843
|
+
order: number;
|
|
844
|
+
}
|
|
845
|
+
/**
|
|
846
|
+
* @export
|
|
847
|
+
* @enum {string}
|
|
848
|
+
*/
|
|
849
|
+
declare enum SingleProductMediaTypeEnum {
|
|
850
|
+
Image = "image",
|
|
851
|
+
Video = "video",
|
|
852
|
+
Audio = "audio"
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
/**
|
|
856
|
+
* Hey Pharamcist API
|
|
857
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
858
|
+
*
|
|
859
|
+
* OpenAPI spec version: 1.0
|
|
860
|
+
*
|
|
861
|
+
*
|
|
862
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
863
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
864
|
+
* Do not edit the class manually.
|
|
865
|
+
*/
|
|
866
|
+
|
|
867
|
+
/**
|
|
868
|
+
*
|
|
869
|
+
* @export
|
|
870
|
+
* @interface ProductVariant
|
|
871
|
+
*/
|
|
872
|
+
interface ProductVariant {
|
|
873
|
+
_id?: string;
|
|
947
874
|
/**
|
|
948
|
-
*
|
|
875
|
+
*
|
|
949
876
|
* @type {string}
|
|
950
|
-
* @memberof
|
|
877
|
+
* @memberof ProductVariant
|
|
951
878
|
*/
|
|
952
|
-
|
|
879
|
+
id: string;
|
|
953
880
|
/**
|
|
954
|
-
*
|
|
881
|
+
*
|
|
955
882
|
* @type {string}
|
|
956
|
-
* @memberof
|
|
883
|
+
* @memberof ProductVariant
|
|
957
884
|
*/
|
|
958
|
-
|
|
885
|
+
name: string;
|
|
959
886
|
/**
|
|
960
|
-
*
|
|
887
|
+
*
|
|
961
888
|
* @type {string}
|
|
962
|
-
* @memberof
|
|
889
|
+
* @memberof ProductVariant
|
|
963
890
|
*/
|
|
964
|
-
|
|
891
|
+
description: string;
|
|
965
892
|
/**
|
|
966
|
-
*
|
|
893
|
+
*
|
|
967
894
|
* @type {string}
|
|
968
|
-
* @memberof
|
|
895
|
+
* @memberof ProductVariant
|
|
969
896
|
*/
|
|
970
|
-
|
|
897
|
+
sku: string;
|
|
971
898
|
/**
|
|
972
|
-
*
|
|
973
|
-
* @type {
|
|
974
|
-
* @memberof
|
|
899
|
+
*
|
|
900
|
+
* @type {Array<SingleProductMedia>}
|
|
901
|
+
* @memberof ProductVariant
|
|
975
902
|
*/
|
|
976
|
-
|
|
903
|
+
media: Array<SingleProductMedia>;
|
|
977
904
|
/**
|
|
978
|
-
*
|
|
979
|
-
* @type {
|
|
980
|
-
* @memberof
|
|
905
|
+
*
|
|
906
|
+
* @type {number}
|
|
907
|
+
* @memberof ProductVariant
|
|
981
908
|
*/
|
|
982
|
-
|
|
909
|
+
retailPrice: number;
|
|
983
910
|
/**
|
|
984
911
|
*
|
|
985
912
|
* @type {number}
|
|
986
|
-
* @memberof
|
|
913
|
+
* @memberof ProductVariant
|
|
987
914
|
*/
|
|
988
|
-
|
|
915
|
+
finalPrice: number;
|
|
989
916
|
/**
|
|
990
917
|
*
|
|
991
|
-
* @type {
|
|
992
|
-
* @memberof
|
|
918
|
+
* @type {boolean}
|
|
919
|
+
* @memberof ProductVariant
|
|
993
920
|
*/
|
|
994
|
-
|
|
921
|
+
isDiscounted: boolean;
|
|
995
922
|
/**
|
|
996
923
|
*
|
|
997
|
-
* @type {
|
|
998
|
-
* @memberof
|
|
924
|
+
* @type {number}
|
|
925
|
+
* @memberof ProductVariant
|
|
999
926
|
*/
|
|
1000
|
-
|
|
927
|
+
discountAmount: number;
|
|
1001
928
|
/**
|
|
1002
929
|
*
|
|
1003
930
|
* @type {number}
|
|
1004
|
-
* @memberof
|
|
931
|
+
* @memberof ProductVariant
|
|
1005
932
|
*/
|
|
1006
|
-
|
|
933
|
+
inventoryCount: number;
|
|
1007
934
|
/**
|
|
1008
935
|
*
|
|
1009
936
|
* @type {string}
|
|
1010
|
-
* @memberof
|
|
937
|
+
* @memberof ProductVariant
|
|
1011
938
|
*/
|
|
1012
|
-
|
|
939
|
+
inventoryStatus: ProductVariantInventoryStatusEnum;
|
|
1013
940
|
/**
|
|
1014
941
|
*
|
|
1015
942
|
* @type {number}
|
|
1016
|
-
* @memberof
|
|
943
|
+
* @memberof ProductVariant
|
|
1017
944
|
*/
|
|
1018
|
-
|
|
945
|
+
totalSold: number;
|
|
1019
946
|
/**
|
|
1020
|
-
*
|
|
1021
|
-
* @type {
|
|
1022
|
-
* @memberof
|
|
947
|
+
* Width in cm
|
|
948
|
+
* @type {number}
|
|
949
|
+
* @memberof ProductVariant
|
|
1023
950
|
*/
|
|
1024
|
-
|
|
951
|
+
width: number;
|
|
1025
952
|
/**
|
|
1026
|
-
*
|
|
1027
|
-
* @type {
|
|
1028
|
-
* @memberof
|
|
953
|
+
* Height in cm
|
|
954
|
+
* @type {number}
|
|
955
|
+
* @memberof ProductVariant
|
|
1029
956
|
*/
|
|
1030
|
-
|
|
957
|
+
height: number;
|
|
1031
958
|
/**
|
|
1032
|
-
*
|
|
1033
|
-
* @type {
|
|
1034
|
-
* @memberof
|
|
959
|
+
* Length in cm
|
|
960
|
+
* @type {number}
|
|
961
|
+
* @memberof ProductVariant
|
|
962
|
+
*/
|
|
963
|
+
length: number;
|
|
964
|
+
/**
|
|
965
|
+
* Weight in grams
|
|
966
|
+
* @type {number}
|
|
967
|
+
* @memberof ProductVariant
|
|
1035
968
|
*/
|
|
1036
|
-
|
|
969
|
+
weight: number;
|
|
1037
970
|
/**
|
|
1038
971
|
*
|
|
1039
|
-
* @type {
|
|
1040
|
-
* @memberof
|
|
972
|
+
* @type {boolean}
|
|
973
|
+
* @memberof ProductVariant
|
|
1041
974
|
*/
|
|
1042
|
-
|
|
975
|
+
isActive: boolean;
|
|
1043
976
|
/**
|
|
1044
977
|
*
|
|
1045
|
-
* @type {
|
|
1046
|
-
* @memberof
|
|
978
|
+
* @type {Date}
|
|
979
|
+
* @memberof ProductVariant
|
|
1047
980
|
*/
|
|
1048
|
-
|
|
981
|
+
inventoryLastUpdated: Date;
|
|
1049
982
|
/**
|
|
1050
983
|
*
|
|
1051
984
|
* @type {string}
|
|
1052
|
-
* @memberof
|
|
985
|
+
* @memberof ProductVariant
|
|
1053
986
|
*/
|
|
1054
|
-
|
|
987
|
+
discount: string;
|
|
1055
988
|
/**
|
|
1056
989
|
*
|
|
1057
|
-
* @type {
|
|
1058
|
-
* @memberof
|
|
990
|
+
* @type {any}
|
|
991
|
+
* @memberof ProductVariant
|
|
1059
992
|
*/
|
|
1060
|
-
|
|
993
|
+
attributes: any;
|
|
1061
994
|
}
|
|
1062
995
|
/**
|
|
1063
996
|
* @export
|
|
1064
997
|
* @enum {string}
|
|
1065
998
|
*/
|
|
1066
|
-
declare enum
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
NUMBER_0 = 0,
|
|
1071
|
-
NUMBER_1 = 1,
|
|
1072
|
-
NUMBER_2 = 2,
|
|
1073
|
-
NUMBER_3 = 3,
|
|
1074
|
-
NUMBER_4 = 4
|
|
999
|
+
declare enum ProductVariantInventoryStatusEnum {
|
|
1000
|
+
INSTOCK = "IN_STOCK",
|
|
1001
|
+
OUTOFSTOCK = "OUT_OF_STOCK",
|
|
1002
|
+
LOWSTOCK = "LOW_STOCK"
|
|
1075
1003
|
}
|
|
1076
1004
|
|
|
1077
1005
|
/**
|
|
@@ -1089,28 +1017,28 @@ declare enum CampaignDraftDtoStatusEnum {
|
|
|
1089
1017
|
/**
|
|
1090
1018
|
*
|
|
1091
1019
|
* @export
|
|
1092
|
-
* @interface
|
|
1020
|
+
* @interface CartItemPopulated
|
|
1093
1021
|
*/
|
|
1094
|
-
interface
|
|
1022
|
+
interface CartItemPopulated {
|
|
1095
1023
|
_id?: string;
|
|
1096
1024
|
/**
|
|
1097
|
-
*
|
|
1098
|
-
* @type {
|
|
1099
|
-
* @memberof
|
|
1025
|
+
* Product variant id
|
|
1026
|
+
* @type {string}
|
|
1027
|
+
* @memberof CartItemPopulated
|
|
1100
1028
|
*/
|
|
1101
|
-
|
|
1029
|
+
productVariantId: string;
|
|
1102
1030
|
/**
|
|
1103
1031
|
*
|
|
1104
|
-
* @type {
|
|
1105
|
-
* @memberof
|
|
1032
|
+
* @type {number}
|
|
1033
|
+
* @memberof CartItemPopulated
|
|
1106
1034
|
*/
|
|
1107
|
-
|
|
1035
|
+
quantity: number;
|
|
1108
1036
|
/**
|
|
1109
1037
|
*
|
|
1110
|
-
* @type {
|
|
1111
|
-
* @memberof
|
|
1038
|
+
* @type {ProductVariant}
|
|
1039
|
+
* @memberof CartItemPopulated
|
|
1112
1040
|
*/
|
|
1113
|
-
|
|
1041
|
+
productVariantData: ProductVariant;
|
|
1114
1042
|
}
|
|
1115
1043
|
|
|
1116
1044
|
/**
|
|
@@ -1127,36 +1055,36 @@ interface CampaignDraftResponseDTO {
|
|
|
1127
1055
|
/**
|
|
1128
1056
|
*
|
|
1129
1057
|
* @export
|
|
1130
|
-
* @interface
|
|
1058
|
+
* @interface ManualDiscountDto
|
|
1131
1059
|
*/
|
|
1132
|
-
interface
|
|
1060
|
+
interface ManualDiscountDto {
|
|
1133
1061
|
_id?: string;
|
|
1134
1062
|
/**
|
|
1135
1063
|
*
|
|
1136
1064
|
* @type {string}
|
|
1137
|
-
* @memberof
|
|
1065
|
+
* @memberof ManualDiscountDto
|
|
1138
1066
|
*/
|
|
1139
|
-
|
|
1067
|
+
valueType: ManualDiscountDtoValueTypeEnum;
|
|
1068
|
+
/**
|
|
1069
|
+
*
|
|
1070
|
+
* @type {number}
|
|
1071
|
+
* @memberof ManualDiscountDto
|
|
1072
|
+
*/
|
|
1073
|
+
value: number;
|
|
1140
1074
|
/**
|
|
1141
1075
|
*
|
|
1142
1076
|
* @type {string}
|
|
1143
|
-
* @memberof
|
|
1077
|
+
* @memberof ManualDiscountDto
|
|
1144
1078
|
*/
|
|
1145
|
-
|
|
1079
|
+
reason?: string;
|
|
1146
1080
|
}
|
|
1147
1081
|
/**
|
|
1148
1082
|
* @export
|
|
1149
1083
|
* @enum {string}
|
|
1150
1084
|
*/
|
|
1151
|
-
declare enum
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
Archived = "Archived",
|
|
1155
|
-
Draft = "Draft",
|
|
1156
|
-
Programmed = "Programmed",
|
|
1157
|
-
Sent = "Sent",
|
|
1158
|
-
AXTested = "AXTested",
|
|
1159
|
-
AXSelected = "AXSelected"
|
|
1085
|
+
declare enum ManualDiscountDtoValueTypeEnum {
|
|
1086
|
+
PERCENTAGE = "PERCENTAGE",
|
|
1087
|
+
FIXEDAMOUNT = "FIXED_AMOUNT"
|
|
1160
1088
|
}
|
|
1161
1089
|
|
|
1162
1090
|
/**
|
|
@@ -1174,68 +1102,34 @@ declare enum CampaignDraftScheduleDtoStatusEnum {
|
|
|
1174
1102
|
/**
|
|
1175
1103
|
*
|
|
1176
1104
|
* @export
|
|
1177
|
-
* @interface
|
|
1105
|
+
* @interface CartBodyPopulated
|
|
1178
1106
|
*/
|
|
1179
|
-
interface
|
|
1107
|
+
interface CartBodyPopulated {
|
|
1180
1108
|
_id?: string;
|
|
1181
1109
|
/**
|
|
1182
1110
|
*
|
|
1183
|
-
* @type {
|
|
1184
|
-
* @memberof
|
|
1111
|
+
* @type {Array<CartItemPopulated>}
|
|
1112
|
+
* @memberof CartBodyPopulated
|
|
1185
1113
|
*/
|
|
1186
|
-
|
|
1114
|
+
items: Array<CartItemPopulated>;
|
|
1187
1115
|
/**
|
|
1188
1116
|
*
|
|
1189
|
-
* @type {Array<
|
|
1190
|
-
* @memberof
|
|
1117
|
+
* @type {Array<string>}
|
|
1118
|
+
* @memberof CartBodyPopulated
|
|
1191
1119
|
*/
|
|
1192
|
-
|
|
1120
|
+
discountsApplied: Array<string>;
|
|
1193
1121
|
/**
|
|
1194
1122
|
*
|
|
1195
|
-
* @type {
|
|
1196
|
-
* @memberof
|
|
1123
|
+
* @type {ManualDiscountDto}
|
|
1124
|
+
* @memberof CartBodyPopulated
|
|
1197
1125
|
*/
|
|
1198
|
-
|
|
1199
|
-
}
|
|
1200
|
-
|
|
1201
|
-
/**
|
|
1202
|
-
* Hey Pharamcist API
|
|
1203
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
1204
|
-
*
|
|
1205
|
-
* OpenAPI spec version: 1.0
|
|
1206
|
-
*
|
|
1207
|
-
*
|
|
1208
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
1209
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
1210
|
-
* Do not edit the class manually.
|
|
1211
|
-
*/
|
|
1212
|
-
/**
|
|
1213
|
-
*
|
|
1214
|
-
* @export
|
|
1215
|
-
* @interface CampaignDraftSendingDto
|
|
1216
|
-
*/
|
|
1217
|
-
interface CampaignDraftSendingDto {
|
|
1218
|
-
_id?: string;
|
|
1126
|
+
manualDiscount: ManualDiscountDto;
|
|
1219
1127
|
/**
|
|
1220
1128
|
*
|
|
1221
|
-
* @type {string}
|
|
1222
|
-
* @memberof
|
|
1129
|
+
* @type {Array<string>}
|
|
1130
|
+
* @memberof CartBodyPopulated
|
|
1223
1131
|
*/
|
|
1224
|
-
|
|
1225
|
-
}
|
|
1226
|
-
/**
|
|
1227
|
-
* @export
|
|
1228
|
-
* @enum {string}
|
|
1229
|
-
*/
|
|
1230
|
-
declare enum CampaignDraftSendingDtoStatusEnum {
|
|
1231
|
-
AXCancelled = "AXCancelled",
|
|
1232
|
-
Deleted = "Deleted",
|
|
1233
|
-
Archived = "Archived",
|
|
1234
|
-
Draft = "Draft",
|
|
1235
|
-
Programmed = "Programmed",
|
|
1236
|
-
Sent = "Sent",
|
|
1237
|
-
AXTested = "AXTested",
|
|
1238
|
-
AXSelected = "AXSelected"
|
|
1132
|
+
customProducts: Array<string>;
|
|
1239
1133
|
}
|
|
1240
1134
|
|
|
1241
1135
|
/**
|
|
@@ -1253,99 +1147,58 @@ declare enum CampaignDraftSendingDtoStatusEnum {
|
|
|
1253
1147
|
/**
|
|
1254
1148
|
*
|
|
1255
1149
|
* @export
|
|
1256
|
-
* @interface
|
|
1150
|
+
* @interface CartResponseDto
|
|
1257
1151
|
*/
|
|
1258
|
-
interface
|
|
1152
|
+
interface CartResponseDto {
|
|
1259
1153
|
_id?: string;
|
|
1260
1154
|
/**
|
|
1261
1155
|
*
|
|
1262
1156
|
* @type {number}
|
|
1263
|
-
* @memberof
|
|
1157
|
+
* @memberof CartResponseDto
|
|
1264
1158
|
*/
|
|
1265
|
-
|
|
1159
|
+
subTotal: number;
|
|
1266
1160
|
/**
|
|
1267
1161
|
*
|
|
1268
|
-
* @type {
|
|
1269
|
-
* @memberof
|
|
1162
|
+
* @type {number}
|
|
1163
|
+
* @memberof CartResponseDto
|
|
1270
1164
|
*/
|
|
1271
|
-
|
|
1165
|
+
discountedAmount: number;
|
|
1272
1166
|
/**
|
|
1273
1167
|
*
|
|
1274
1168
|
* @type {number}
|
|
1275
|
-
* @memberof
|
|
1169
|
+
* @memberof CartResponseDto
|
|
1276
1170
|
*/
|
|
1277
|
-
|
|
1278
|
-
}
|
|
1279
|
-
|
|
1280
|
-
/**
|
|
1281
|
-
* Hey Pharamcist API
|
|
1282
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
1283
|
-
*
|
|
1284
|
-
* OpenAPI spec version: 1.0
|
|
1285
|
-
*
|
|
1286
|
-
*
|
|
1287
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
1288
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
1289
|
-
* Do not edit the class manually.
|
|
1290
|
-
*/
|
|
1291
|
-
/**
|
|
1292
|
-
*
|
|
1293
|
-
* @export
|
|
1294
|
-
* @interface CartItem
|
|
1295
|
-
*/
|
|
1296
|
-
interface CartItem$1 {
|
|
1297
|
-
_id?: string;
|
|
1171
|
+
tax: number;
|
|
1298
1172
|
/**
|
|
1299
|
-
*
|
|
1300
|
-
* @type {
|
|
1301
|
-
* @memberof
|
|
1173
|
+
*
|
|
1174
|
+
* @type {CartBodyPopulated}
|
|
1175
|
+
* @memberof CartResponseDto
|
|
1302
1176
|
*/
|
|
1303
|
-
|
|
1177
|
+
cartBody: CartBodyPopulated;
|
|
1304
1178
|
/**
|
|
1305
1179
|
*
|
|
1306
1180
|
* @type {number}
|
|
1307
|
-
* @memberof
|
|
1181
|
+
* @memberof CartResponseDto
|
|
1308
1182
|
*/
|
|
1309
|
-
|
|
1310
|
-
}
|
|
1311
|
-
|
|
1312
|
-
/**
|
|
1313
|
-
* Hey Pharamcist API
|
|
1314
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
1315
|
-
*
|
|
1316
|
-
* OpenAPI spec version: 1.0
|
|
1317
|
-
*
|
|
1318
|
-
*
|
|
1319
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
1320
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
1321
|
-
* Do not edit the class manually.
|
|
1322
|
-
*/
|
|
1323
|
-
|
|
1324
|
-
/**
|
|
1325
|
-
*
|
|
1326
|
-
* @export
|
|
1327
|
-
* @interface CartBodyDTO
|
|
1328
|
-
*/
|
|
1329
|
-
interface CartBodyDTO {
|
|
1330
|
-
_id?: string;
|
|
1183
|
+
shipping: number;
|
|
1331
1184
|
/**
|
|
1332
1185
|
*
|
|
1333
|
-
* @type {
|
|
1334
|
-
* @memberof
|
|
1186
|
+
* @type {number}
|
|
1187
|
+
* @memberof CartResponseDto
|
|
1335
1188
|
*/
|
|
1336
|
-
|
|
1189
|
+
total: number;
|
|
1337
1190
|
/**
|
|
1338
1191
|
*
|
|
1339
|
-
* @type {
|
|
1340
|
-
* @memberof
|
|
1192
|
+
* @type {boolean}
|
|
1193
|
+
* @memberof CartResponseDto
|
|
1341
1194
|
*/
|
|
1342
|
-
|
|
1195
|
+
isDiscounted: boolean;
|
|
1343
1196
|
/**
|
|
1344
1197
|
*
|
|
1345
1198
|
* @type {string}
|
|
1346
|
-
* @memberof
|
|
1199
|
+
* @memberof CartResponseDto
|
|
1347
1200
|
*/
|
|
1348
|
-
|
|
1201
|
+
discountId: string;
|
|
1349
1202
|
}
|
|
1350
1203
|
|
|
1351
1204
|
/**
|
|
@@ -1362,49 +1215,40 @@ interface CartBodyDTO {
|
|
|
1362
1215
|
/**
|
|
1363
1216
|
*
|
|
1364
1217
|
* @export
|
|
1365
|
-
* @interface
|
|
1218
|
+
* @interface CategorySubCategoryPopulated
|
|
1366
1219
|
*/
|
|
1367
|
-
interface
|
|
1220
|
+
interface CategorySubCategoryPopulated {
|
|
1368
1221
|
_id?: string;
|
|
1369
1222
|
/**
|
|
1370
1223
|
*
|
|
1371
1224
|
* @type {string}
|
|
1372
|
-
* @memberof
|
|
1225
|
+
* @memberof CategorySubCategoryPopulated
|
|
1373
1226
|
*/
|
|
1374
1227
|
id: string;
|
|
1375
1228
|
/**
|
|
1376
1229
|
*
|
|
1377
1230
|
* @type {string}
|
|
1378
|
-
* @memberof
|
|
1231
|
+
* @memberof CategorySubCategoryPopulated
|
|
1379
1232
|
*/
|
|
1380
|
-
|
|
1233
|
+
name: string;
|
|
1381
1234
|
/**
|
|
1382
1235
|
*
|
|
1383
|
-
* @type {
|
|
1384
|
-
* @memberof
|
|
1236
|
+
* @type {boolean}
|
|
1237
|
+
* @memberof CategorySubCategoryPopulated
|
|
1385
1238
|
*/
|
|
1386
|
-
|
|
1239
|
+
isActive: boolean;
|
|
1387
1240
|
/**
|
|
1388
1241
|
*
|
|
1389
|
-
* @type {
|
|
1390
|
-
* @memberof
|
|
1242
|
+
* @type {string}
|
|
1243
|
+
* @memberof CategorySubCategoryPopulated
|
|
1391
1244
|
*/
|
|
1392
|
-
|
|
1245
|
+
image: string;
|
|
1393
1246
|
/**
|
|
1394
1247
|
*
|
|
1395
1248
|
* @type {number}
|
|
1396
|
-
* @memberof
|
|
1249
|
+
* @memberof CategorySubCategoryPopulated
|
|
1397
1250
|
*/
|
|
1398
|
-
|
|
1399
|
-
}
|
|
1400
|
-
/**
|
|
1401
|
-
* @export
|
|
1402
|
-
* @enum {string}
|
|
1403
|
-
*/
|
|
1404
|
-
declare enum SingleProductMediaTypeEnum {
|
|
1405
|
-
Image = "image",
|
|
1406
|
-
Video = "video",
|
|
1407
|
-
Audio = "audio"
|
|
1251
|
+
productCount: number;
|
|
1408
1252
|
}
|
|
1409
1253
|
|
|
1410
1254
|
/**
|
|
@@ -1422,564 +1266,82 @@ declare enum SingleProductMediaTypeEnum {
|
|
|
1422
1266
|
/**
|
|
1423
1267
|
*
|
|
1424
1268
|
* @export
|
|
1425
|
-
* @interface
|
|
1269
|
+
* @interface CategoryPopulated
|
|
1426
1270
|
*/
|
|
1427
|
-
interface
|
|
1271
|
+
interface CategoryPopulated {
|
|
1428
1272
|
_id?: string;
|
|
1429
1273
|
/**
|
|
1430
1274
|
*
|
|
1431
|
-
* @type {
|
|
1432
|
-
* @memberof
|
|
1275
|
+
* @type {Date}
|
|
1276
|
+
* @memberof CategoryPopulated
|
|
1433
1277
|
*/
|
|
1434
|
-
|
|
1278
|
+
createdAt?: Date;
|
|
1435
1279
|
/**
|
|
1436
1280
|
*
|
|
1437
|
-
* @type {
|
|
1438
|
-
* @memberof
|
|
1281
|
+
* @type {Date}
|
|
1282
|
+
* @memberof CategoryPopulated
|
|
1439
1283
|
*/
|
|
1440
|
-
|
|
1284
|
+
updatedAt?: Date;
|
|
1441
1285
|
/**
|
|
1442
1286
|
*
|
|
1443
1287
|
* @type {string}
|
|
1444
|
-
* @memberof
|
|
1288
|
+
* @memberof CategoryPopulated
|
|
1445
1289
|
*/
|
|
1446
|
-
|
|
1290
|
+
id?: string;
|
|
1447
1291
|
/**
|
|
1448
1292
|
*
|
|
1449
1293
|
* @type {string}
|
|
1450
|
-
* @memberof
|
|
1294
|
+
* @memberof CategoryPopulated
|
|
1451
1295
|
*/
|
|
1452
|
-
|
|
1296
|
+
name?: string;
|
|
1453
1297
|
/**
|
|
1454
1298
|
*
|
|
1455
|
-
* @type {
|
|
1456
|
-
* @memberof
|
|
1299
|
+
* @type {string}
|
|
1300
|
+
* @memberof CategoryPopulated
|
|
1457
1301
|
*/
|
|
1458
|
-
|
|
1302
|
+
description?: string;
|
|
1459
1303
|
/**
|
|
1460
1304
|
*
|
|
1461
|
-
* @type {
|
|
1462
|
-
* @memberof
|
|
1305
|
+
* @type {string}
|
|
1306
|
+
* @memberof CategoryPopulated
|
|
1463
1307
|
*/
|
|
1464
|
-
|
|
1308
|
+
image?: string;
|
|
1465
1309
|
/**
|
|
1466
1310
|
*
|
|
1467
|
-
* @type {
|
|
1468
|
-
* @memberof
|
|
1311
|
+
* @type {boolean}
|
|
1312
|
+
* @memberof CategoryPopulated
|
|
1469
1313
|
*/
|
|
1470
|
-
|
|
1314
|
+
isActive?: boolean;
|
|
1471
1315
|
/**
|
|
1472
1316
|
*
|
|
1473
|
-
* @type {
|
|
1474
|
-
* @memberof
|
|
1317
|
+
* @type {Date}
|
|
1318
|
+
* @memberof CategoryPopulated
|
|
1475
1319
|
*/
|
|
1476
|
-
|
|
1320
|
+
activeChangedAt?: Date;
|
|
1477
1321
|
/**
|
|
1478
1322
|
*
|
|
1479
1323
|
* @type {number}
|
|
1480
|
-
* @memberof
|
|
1324
|
+
* @memberof CategoryPopulated
|
|
1481
1325
|
*/
|
|
1482
|
-
|
|
1326
|
+
order?: number;
|
|
1483
1327
|
/**
|
|
1484
1328
|
*
|
|
1485
|
-
* @type {
|
|
1486
|
-
* @memberof
|
|
1329
|
+
* @type {string}
|
|
1330
|
+
* @memberof CategoryPopulated
|
|
1487
1331
|
*/
|
|
1488
|
-
|
|
1332
|
+
storeId?: string;
|
|
1489
1333
|
/**
|
|
1490
1334
|
*
|
|
1491
|
-
* @type {
|
|
1492
|
-
* @memberof
|
|
1335
|
+
* @type {Array<CategorySubCategoryPopulated>}
|
|
1336
|
+
* @memberof CategoryPopulated
|
|
1493
1337
|
*/
|
|
1494
|
-
|
|
1338
|
+
categorySubCategories: Array<CategorySubCategoryPopulated>;
|
|
1495
1339
|
/**
|
|
1496
1340
|
*
|
|
1497
1341
|
* @type {number}
|
|
1498
|
-
* @memberof
|
|
1342
|
+
* @memberof CategoryPopulated
|
|
1499
1343
|
*/
|
|
1500
|
-
|
|
1501
|
-
/**
|
|
1502
|
-
* Width in cm
|
|
1503
|
-
* @type {number}
|
|
1504
|
-
* @memberof ProductVariant
|
|
1505
|
-
*/
|
|
1506
|
-
width: number;
|
|
1507
|
-
/**
|
|
1508
|
-
* Height in cm
|
|
1509
|
-
* @type {number}
|
|
1510
|
-
* @memberof ProductVariant
|
|
1511
|
-
*/
|
|
1512
|
-
height: number;
|
|
1513
|
-
/**
|
|
1514
|
-
* Length in cm
|
|
1515
|
-
* @type {number}
|
|
1516
|
-
* @memberof ProductVariant
|
|
1517
|
-
*/
|
|
1518
|
-
length: number;
|
|
1519
|
-
/**
|
|
1520
|
-
* Weight in grams
|
|
1521
|
-
* @type {number}
|
|
1522
|
-
* @memberof ProductVariant
|
|
1523
|
-
*/
|
|
1524
|
-
weight: number;
|
|
1525
|
-
/**
|
|
1526
|
-
*
|
|
1527
|
-
* @type {boolean}
|
|
1528
|
-
* @memberof ProductVariant
|
|
1529
|
-
*/
|
|
1530
|
-
isActive: boolean;
|
|
1531
|
-
/**
|
|
1532
|
-
*
|
|
1533
|
-
* @type {Date}
|
|
1534
|
-
* @memberof ProductVariant
|
|
1535
|
-
*/
|
|
1536
|
-
inventoryLastUpdated: Date;
|
|
1537
|
-
/**
|
|
1538
|
-
*
|
|
1539
|
-
* @type {string}
|
|
1540
|
-
* @memberof ProductVariant
|
|
1541
|
-
*/
|
|
1542
|
-
discount: string;
|
|
1543
|
-
/**
|
|
1544
|
-
*
|
|
1545
|
-
* @type {any}
|
|
1546
|
-
* @memberof ProductVariant
|
|
1547
|
-
*/
|
|
1548
|
-
attributes: any;
|
|
1549
|
-
}
|
|
1550
|
-
/**
|
|
1551
|
-
* @export
|
|
1552
|
-
* @enum {string}
|
|
1553
|
-
*/
|
|
1554
|
-
declare enum ProductVariantInventoryStatusEnum {
|
|
1555
|
-
INSTOCK = "IN_STOCK",
|
|
1556
|
-
OUTOFSTOCK = "OUT_OF_STOCK",
|
|
1557
|
-
LOWSTOCK = "LOW_STOCK"
|
|
1558
|
-
}
|
|
1559
|
-
|
|
1560
|
-
/**
|
|
1561
|
-
* Hey Pharamcist API
|
|
1562
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
1563
|
-
*
|
|
1564
|
-
* OpenAPI spec version: 1.0
|
|
1565
|
-
*
|
|
1566
|
-
*
|
|
1567
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
1568
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
1569
|
-
* Do not edit the class manually.
|
|
1570
|
-
*/
|
|
1571
|
-
|
|
1572
|
-
/**
|
|
1573
|
-
*
|
|
1574
|
-
* @export
|
|
1575
|
-
* @interface CartItemPopulated
|
|
1576
|
-
*/
|
|
1577
|
-
interface CartItemPopulated {
|
|
1578
|
-
_id?: string;
|
|
1579
|
-
/**
|
|
1580
|
-
* Product variant id
|
|
1581
|
-
* @type {string}
|
|
1582
|
-
* @memberof CartItemPopulated
|
|
1583
|
-
*/
|
|
1584
|
-
productVariantId: string;
|
|
1585
|
-
/**
|
|
1586
|
-
*
|
|
1587
|
-
* @type {number}
|
|
1588
|
-
* @memberof CartItemPopulated
|
|
1589
|
-
*/
|
|
1590
|
-
quantity: number;
|
|
1591
|
-
/**
|
|
1592
|
-
*
|
|
1593
|
-
* @type {ProductVariant}
|
|
1594
|
-
* @memberof CartItemPopulated
|
|
1595
|
-
*/
|
|
1596
|
-
productVariantData: ProductVariant;
|
|
1597
|
-
}
|
|
1598
|
-
|
|
1599
|
-
/**
|
|
1600
|
-
* Hey Pharamcist API
|
|
1601
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
1602
|
-
*
|
|
1603
|
-
* OpenAPI spec version: 1.0
|
|
1604
|
-
*
|
|
1605
|
-
*
|
|
1606
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
1607
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
1608
|
-
* Do not edit the class manually.
|
|
1609
|
-
*/
|
|
1610
|
-
/**
|
|
1611
|
-
*
|
|
1612
|
-
* @export
|
|
1613
|
-
* @interface ManualDiscountDto
|
|
1614
|
-
*/
|
|
1615
|
-
interface ManualDiscountDto {
|
|
1616
|
-
_id?: string;
|
|
1617
|
-
/**
|
|
1618
|
-
*
|
|
1619
|
-
* @type {string}
|
|
1620
|
-
* @memberof ManualDiscountDto
|
|
1621
|
-
*/
|
|
1622
|
-
valueType: ManualDiscountDtoValueTypeEnum;
|
|
1623
|
-
/**
|
|
1624
|
-
*
|
|
1625
|
-
* @type {number}
|
|
1626
|
-
* @memberof ManualDiscountDto
|
|
1627
|
-
*/
|
|
1628
|
-
value: number;
|
|
1629
|
-
/**
|
|
1630
|
-
*
|
|
1631
|
-
* @type {string}
|
|
1632
|
-
* @memberof ManualDiscountDto
|
|
1633
|
-
*/
|
|
1634
|
-
reason?: string;
|
|
1635
|
-
}
|
|
1636
|
-
/**
|
|
1637
|
-
* @export
|
|
1638
|
-
* @enum {string}
|
|
1639
|
-
*/
|
|
1640
|
-
declare enum ManualDiscountDtoValueTypeEnum {
|
|
1641
|
-
PERCENTAGE = "PERCENTAGE",
|
|
1642
|
-
FIXEDAMOUNT = "FIXED_AMOUNT"
|
|
1643
|
-
}
|
|
1644
|
-
|
|
1645
|
-
/**
|
|
1646
|
-
* Hey Pharamcist API
|
|
1647
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
1648
|
-
*
|
|
1649
|
-
* OpenAPI spec version: 1.0
|
|
1650
|
-
*
|
|
1651
|
-
*
|
|
1652
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
1653
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
1654
|
-
* Do not edit the class manually.
|
|
1655
|
-
*/
|
|
1656
|
-
|
|
1657
|
-
/**
|
|
1658
|
-
*
|
|
1659
|
-
* @export
|
|
1660
|
-
* @interface CartBodyPopulated
|
|
1661
|
-
*/
|
|
1662
|
-
interface CartBodyPopulated {
|
|
1663
|
-
_id?: string;
|
|
1664
|
-
/**
|
|
1665
|
-
*
|
|
1666
|
-
* @type {Array<CartItemPopulated>}
|
|
1667
|
-
* @memberof CartBodyPopulated
|
|
1668
|
-
*/
|
|
1669
|
-
items: Array<CartItemPopulated>;
|
|
1670
|
-
/**
|
|
1671
|
-
*
|
|
1672
|
-
* @type {Array<string>}
|
|
1673
|
-
* @memberof CartBodyPopulated
|
|
1674
|
-
*/
|
|
1675
|
-
discountsApplied: Array<string>;
|
|
1676
|
-
/**
|
|
1677
|
-
*
|
|
1678
|
-
* @type {ManualDiscountDto}
|
|
1679
|
-
* @memberof CartBodyPopulated
|
|
1680
|
-
*/
|
|
1681
|
-
manualDiscount: ManualDiscountDto;
|
|
1682
|
-
/**
|
|
1683
|
-
*
|
|
1684
|
-
* @type {Array<string>}
|
|
1685
|
-
* @memberof CartBodyPopulated
|
|
1686
|
-
*/
|
|
1687
|
-
customProducts: Array<string>;
|
|
1688
|
-
}
|
|
1689
|
-
|
|
1690
|
-
/**
|
|
1691
|
-
* Hey Pharamcist API
|
|
1692
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
1693
|
-
*
|
|
1694
|
-
* OpenAPI spec version: 1.0
|
|
1695
|
-
*
|
|
1696
|
-
*
|
|
1697
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
1698
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
1699
|
-
* Do not edit the class manually.
|
|
1700
|
-
*/
|
|
1701
|
-
|
|
1702
|
-
/**
|
|
1703
|
-
*
|
|
1704
|
-
* @export
|
|
1705
|
-
* @interface CartResponseDto
|
|
1706
|
-
*/
|
|
1707
|
-
interface CartResponseDto {
|
|
1708
|
-
_id?: string;
|
|
1709
|
-
/**
|
|
1710
|
-
*
|
|
1711
|
-
* @type {number}
|
|
1712
|
-
* @memberof CartResponseDto
|
|
1713
|
-
*/
|
|
1714
|
-
subTotal: number;
|
|
1715
|
-
/**
|
|
1716
|
-
*
|
|
1717
|
-
* @type {number}
|
|
1718
|
-
* @memberof CartResponseDto
|
|
1719
|
-
*/
|
|
1720
|
-
discountedAmount: number;
|
|
1721
|
-
/**
|
|
1722
|
-
*
|
|
1723
|
-
* @type {number}
|
|
1724
|
-
* @memberof CartResponseDto
|
|
1725
|
-
*/
|
|
1726
|
-
tax: number;
|
|
1727
|
-
/**
|
|
1728
|
-
*
|
|
1729
|
-
* @type {CartBodyPopulated}
|
|
1730
|
-
* @memberof CartResponseDto
|
|
1731
|
-
*/
|
|
1732
|
-
cartBody: CartBodyPopulated;
|
|
1733
|
-
/**
|
|
1734
|
-
*
|
|
1735
|
-
* @type {number}
|
|
1736
|
-
* @memberof CartResponseDto
|
|
1737
|
-
*/
|
|
1738
|
-
shipping: number;
|
|
1739
|
-
/**
|
|
1740
|
-
*
|
|
1741
|
-
* @type {number}
|
|
1742
|
-
* @memberof CartResponseDto
|
|
1743
|
-
*/
|
|
1744
|
-
total: number;
|
|
1745
|
-
/**
|
|
1746
|
-
*
|
|
1747
|
-
* @type {boolean}
|
|
1748
|
-
* @memberof CartResponseDto
|
|
1749
|
-
*/
|
|
1750
|
-
isDiscounted: boolean;
|
|
1751
|
-
/**
|
|
1752
|
-
*
|
|
1753
|
-
* @type {string}
|
|
1754
|
-
* @memberof CartResponseDto
|
|
1755
|
-
*/
|
|
1756
|
-
discountId: string;
|
|
1757
|
-
}
|
|
1758
|
-
|
|
1759
|
-
/**
|
|
1760
|
-
* Hey Pharamcist API
|
|
1761
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
1762
|
-
*
|
|
1763
|
-
* OpenAPI spec version: 1.0
|
|
1764
|
-
*
|
|
1765
|
-
*
|
|
1766
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
1767
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
1768
|
-
* Do not edit the class manually.
|
|
1769
|
-
*/
|
|
1770
|
-
/**
|
|
1771
|
-
*
|
|
1772
|
-
* @export
|
|
1773
|
-
* @interface CategorySubCategoryPopulated
|
|
1774
|
-
*/
|
|
1775
|
-
interface CategorySubCategoryPopulated {
|
|
1776
|
-
_id?: string;
|
|
1777
|
-
/**
|
|
1778
|
-
*
|
|
1779
|
-
* @type {string}
|
|
1780
|
-
* @memberof CategorySubCategoryPopulated
|
|
1781
|
-
*/
|
|
1782
|
-
id: string;
|
|
1783
|
-
/**
|
|
1784
|
-
*
|
|
1785
|
-
* @type {string}
|
|
1786
|
-
* @memberof CategorySubCategoryPopulated
|
|
1787
|
-
*/
|
|
1788
|
-
name: string;
|
|
1789
|
-
/**
|
|
1790
|
-
*
|
|
1791
|
-
* @type {boolean}
|
|
1792
|
-
* @memberof CategorySubCategoryPopulated
|
|
1793
|
-
*/
|
|
1794
|
-
isActive: boolean;
|
|
1795
|
-
/**
|
|
1796
|
-
*
|
|
1797
|
-
* @type {string}
|
|
1798
|
-
* @memberof CategorySubCategoryPopulated
|
|
1799
|
-
*/
|
|
1800
|
-
image: string;
|
|
1801
|
-
/**
|
|
1802
|
-
*
|
|
1803
|
-
* @type {number}
|
|
1804
|
-
* @memberof CategorySubCategoryPopulated
|
|
1805
|
-
*/
|
|
1806
|
-
productCount: number;
|
|
1807
|
-
}
|
|
1808
|
-
|
|
1809
|
-
/**
|
|
1810
|
-
* Hey Pharamcist API
|
|
1811
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
1812
|
-
*
|
|
1813
|
-
* OpenAPI spec version: 1.0
|
|
1814
|
-
*
|
|
1815
|
-
*
|
|
1816
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
1817
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
1818
|
-
* Do not edit the class manually.
|
|
1819
|
-
*/
|
|
1820
|
-
|
|
1821
|
-
/**
|
|
1822
|
-
*
|
|
1823
|
-
* @export
|
|
1824
|
-
* @interface CategoryPopulated
|
|
1825
|
-
*/
|
|
1826
|
-
interface CategoryPopulated {
|
|
1827
|
-
_id?: string;
|
|
1828
|
-
/**
|
|
1829
|
-
*
|
|
1830
|
-
* @type {Date}
|
|
1831
|
-
* @memberof CategoryPopulated
|
|
1832
|
-
*/
|
|
1833
|
-
createdAt?: Date;
|
|
1834
|
-
/**
|
|
1835
|
-
*
|
|
1836
|
-
* @type {Date}
|
|
1837
|
-
* @memberof CategoryPopulated
|
|
1838
|
-
*/
|
|
1839
|
-
updatedAt?: Date;
|
|
1840
|
-
/**
|
|
1841
|
-
*
|
|
1842
|
-
* @type {string}
|
|
1843
|
-
* @memberof CategoryPopulated
|
|
1844
|
-
*/
|
|
1845
|
-
id?: string;
|
|
1846
|
-
/**
|
|
1847
|
-
*
|
|
1848
|
-
* @type {string}
|
|
1849
|
-
* @memberof CategoryPopulated
|
|
1850
|
-
*/
|
|
1851
|
-
name?: string;
|
|
1852
|
-
/**
|
|
1853
|
-
*
|
|
1854
|
-
* @type {string}
|
|
1855
|
-
* @memberof CategoryPopulated
|
|
1856
|
-
*/
|
|
1857
|
-
description?: string;
|
|
1858
|
-
/**
|
|
1859
|
-
*
|
|
1860
|
-
* @type {string}
|
|
1861
|
-
* @memberof CategoryPopulated
|
|
1862
|
-
*/
|
|
1863
|
-
image?: string;
|
|
1864
|
-
/**
|
|
1865
|
-
*
|
|
1866
|
-
* @type {boolean}
|
|
1867
|
-
* @memberof CategoryPopulated
|
|
1868
|
-
*/
|
|
1869
|
-
isActive?: boolean;
|
|
1870
|
-
/**
|
|
1871
|
-
*
|
|
1872
|
-
* @type {Date}
|
|
1873
|
-
* @memberof CategoryPopulated
|
|
1874
|
-
*/
|
|
1875
|
-
activeChangedAt?: Date;
|
|
1876
|
-
/**
|
|
1877
|
-
*
|
|
1878
|
-
* @type {number}
|
|
1879
|
-
* @memberof CategoryPopulated
|
|
1880
|
-
*/
|
|
1881
|
-
order?: number;
|
|
1882
|
-
/**
|
|
1883
|
-
*
|
|
1884
|
-
* @type {string}
|
|
1885
|
-
* @memberof CategoryPopulated
|
|
1886
|
-
*/
|
|
1887
|
-
storeId?: string;
|
|
1888
|
-
/**
|
|
1889
|
-
*
|
|
1890
|
-
* @type {Array<CategorySubCategoryPopulated>}
|
|
1891
|
-
* @memberof CategoryPopulated
|
|
1892
|
-
*/
|
|
1893
|
-
categorySubCategories: Array<CategorySubCategoryPopulated>;
|
|
1894
|
-
/**
|
|
1895
|
-
*
|
|
1896
|
-
* @type {number}
|
|
1897
|
-
* @memberof CategoryPopulated
|
|
1898
|
-
*/
|
|
1899
|
-
productCount: number;
|
|
1900
|
-
}
|
|
1901
|
-
|
|
1902
|
-
/**
|
|
1903
|
-
* Hey Pharamcist API
|
|
1904
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
1905
|
-
*
|
|
1906
|
-
* OpenAPI spec version: 1.0
|
|
1907
|
-
*
|
|
1908
|
-
*
|
|
1909
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
1910
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
1911
|
-
* Do not edit the class manually.
|
|
1912
|
-
*/
|
|
1913
|
-
|
|
1914
|
-
/**
|
|
1915
|
-
*
|
|
1916
|
-
* @export
|
|
1917
|
-
* @interface CategoriesPaginatedResponseDTO
|
|
1918
|
-
*/
|
|
1919
|
-
interface CategoriesPaginatedResponseDTO {
|
|
1920
|
-
_id?: string;
|
|
1921
|
-
/**
|
|
1922
|
-
*
|
|
1923
|
-
* @type {Array<CategoryPopulated>}
|
|
1924
|
-
* @memberof CategoriesPaginatedResponseDTO
|
|
1925
|
-
*/
|
|
1926
|
-
data: Array<CategoryPopulated>;
|
|
1927
|
-
/**
|
|
1928
|
-
*
|
|
1929
|
-
* @type {number}
|
|
1930
|
-
* @memberof CategoriesPaginatedResponseDTO
|
|
1931
|
-
*/
|
|
1932
|
-
total: number;
|
|
1933
|
-
/**
|
|
1934
|
-
*
|
|
1935
|
-
* @type {number}
|
|
1936
|
-
* @memberof CategoriesPaginatedResponseDTO
|
|
1937
|
-
*/
|
|
1938
|
-
totalPages: number;
|
|
1939
|
-
/**
|
|
1940
|
-
*
|
|
1941
|
-
* @type {number}
|
|
1942
|
-
* @memberof CategoriesPaginatedResponseDTO
|
|
1943
|
-
*/
|
|
1944
|
-
page: number;
|
|
1945
|
-
/**
|
|
1946
|
-
*
|
|
1947
|
-
* @type {number}
|
|
1948
|
-
* @memberof CategoriesPaginatedResponseDTO
|
|
1949
|
-
*/
|
|
1950
|
-
limit: number;
|
|
1951
|
-
}
|
|
1952
|
-
|
|
1953
|
-
/**
|
|
1954
|
-
* Hey Pharamcist API
|
|
1955
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
1956
|
-
*
|
|
1957
|
-
* OpenAPI spec version: 1.0
|
|
1958
|
-
*
|
|
1959
|
-
*
|
|
1960
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
1961
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
1962
|
-
* Do not edit the class manually.
|
|
1963
|
-
*/
|
|
1964
|
-
/**
|
|
1965
|
-
*
|
|
1966
|
-
* @export
|
|
1967
|
-
* @interface PriceRange
|
|
1968
|
-
*/
|
|
1969
|
-
interface PriceRange {
|
|
1970
|
-
_id?: string;
|
|
1971
|
-
/**
|
|
1972
|
-
*
|
|
1973
|
-
* @type {number}
|
|
1974
|
-
* @memberof PriceRange
|
|
1975
|
-
*/
|
|
1976
|
-
minPrice: number;
|
|
1977
|
-
/**
|
|
1978
|
-
*
|
|
1979
|
-
* @type {number}
|
|
1980
|
-
* @memberof PriceRange
|
|
1981
|
-
*/
|
|
1982
|
-
maxPrice: number;
|
|
1344
|
+
productCount: number;
|
|
1983
1345
|
}
|
|
1984
1346
|
|
|
1985
1347
|
/**
|
|
@@ -1997,251 +1359,40 @@ interface PriceRange {
|
|
|
1997
1359
|
/**
|
|
1998
1360
|
*
|
|
1999
1361
|
* @export
|
|
2000
|
-
* @interface
|
|
2001
|
-
*/
|
|
2002
|
-
interface CategoryFilters {
|
|
2003
|
-
_id?: string;
|
|
2004
|
-
/**
|
|
2005
|
-
*
|
|
2006
|
-
* @type {Array<string>}
|
|
2007
|
-
* @memberof CategoryFilters
|
|
2008
|
-
*/
|
|
2009
|
-
brands: Array<string>;
|
|
2010
|
-
/**
|
|
2011
|
-
*
|
|
2012
|
-
* @type {PriceRange}
|
|
2013
|
-
* @memberof CategoryFilters
|
|
2014
|
-
*/
|
|
2015
|
-
priceRange: PriceRange;
|
|
2016
|
-
}
|
|
2017
|
-
|
|
2018
|
-
/**
|
|
2019
|
-
* Hey Pharamcist API
|
|
2020
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
2021
|
-
*
|
|
2022
|
-
* OpenAPI spec version: 1.0
|
|
2023
|
-
*
|
|
2024
|
-
*
|
|
2025
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
2026
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
2027
|
-
* Do not edit the class manually.
|
|
2028
|
-
*/
|
|
2029
|
-
/**
|
|
2030
|
-
*
|
|
2031
|
-
* @export
|
|
2032
|
-
* @interface SubCategoryHeadlinesOnlyResponseDTO
|
|
1362
|
+
* @interface CategoriesPaginatedResponseDTO
|
|
2033
1363
|
*/
|
|
2034
|
-
interface
|
|
1364
|
+
interface CategoriesPaginatedResponseDTO {
|
|
2035
1365
|
_id?: string;
|
|
2036
1366
|
/**
|
|
2037
1367
|
*
|
|
2038
|
-
* @type {
|
|
2039
|
-
* @memberof
|
|
2040
|
-
*/
|
|
2041
|
-
id: string;
|
|
2042
|
-
/**
|
|
2043
|
-
*
|
|
2044
|
-
* @type {string}
|
|
2045
|
-
* @memberof SubCategoryHeadlinesOnlyResponseDTO
|
|
1368
|
+
* @type {Array<CategoryPopulated>}
|
|
1369
|
+
* @memberof CategoriesPaginatedResponseDTO
|
|
2046
1370
|
*/
|
|
2047
|
-
|
|
1371
|
+
data: Array<CategoryPopulated>;
|
|
2048
1372
|
/**
|
|
2049
1373
|
*
|
|
2050
1374
|
* @type {number}
|
|
2051
|
-
* @memberof
|
|
2052
|
-
*/
|
|
2053
|
-
numberOfProducts: number;
|
|
2054
|
-
}
|
|
2055
|
-
|
|
2056
|
-
/**
|
|
2057
|
-
* Hey Pharamcist API
|
|
2058
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
2059
|
-
*
|
|
2060
|
-
* OpenAPI spec version: 1.0
|
|
2061
|
-
*
|
|
2062
|
-
*
|
|
2063
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
2064
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
2065
|
-
* Do not edit the class manually.
|
|
2066
|
-
*/
|
|
2067
|
-
|
|
2068
|
-
/**
|
|
2069
|
-
*
|
|
2070
|
-
* @export
|
|
2071
|
-
* @interface CategorysHeadlinesResponseDTO
|
|
2072
|
-
*/
|
|
2073
|
-
interface CategorysHeadlinesResponseDTO {
|
|
2074
|
-
_id?: string;
|
|
2075
|
-
/**
|
|
2076
|
-
*
|
|
2077
|
-
* @type {string}
|
|
2078
|
-
* @memberof CategorysHeadlinesResponseDTO
|
|
2079
|
-
*/
|
|
2080
|
-
id: string;
|
|
2081
|
-
/**
|
|
2082
|
-
*
|
|
2083
|
-
* @type {string}
|
|
2084
|
-
* @memberof CategorysHeadlinesResponseDTO
|
|
2085
|
-
*/
|
|
2086
|
-
categoryName: string;
|
|
2087
|
-
/**
|
|
2088
|
-
*
|
|
2089
|
-
* @type {Array<SubCategoryHeadlinesOnlyResponseDTO>}
|
|
2090
|
-
* @memberof CategorysHeadlinesResponseDTO
|
|
2091
|
-
*/
|
|
2092
|
-
subCategories: Array<SubCategoryHeadlinesOnlyResponseDTO>;
|
|
2093
|
-
}
|
|
2094
|
-
|
|
2095
|
-
/**
|
|
2096
|
-
* Hey Pharamcist API
|
|
2097
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
2098
|
-
*
|
|
2099
|
-
* OpenAPI spec version: 1.0
|
|
2100
|
-
*
|
|
2101
|
-
*
|
|
2102
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
2103
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
2104
|
-
* Do not edit the class manually.
|
|
2105
|
-
*/
|
|
2106
|
-
/**
|
|
2107
|
-
*
|
|
2108
|
-
* @export
|
|
2109
|
-
* @interface ChangePasswordDto
|
|
2110
|
-
*/
|
|
2111
|
-
interface ChangePasswordDto {
|
|
2112
|
-
_id?: string;
|
|
2113
|
-
/**
|
|
2114
|
-
*
|
|
2115
|
-
* @type {string}
|
|
2116
|
-
* @memberof ChangePasswordDto
|
|
2117
|
-
*/
|
|
2118
|
-
oldPassword: string;
|
|
2119
|
-
/**
|
|
2120
|
-
*
|
|
2121
|
-
* @type {string}
|
|
2122
|
-
* @memberof ChangePasswordDto
|
|
2123
|
-
*/
|
|
2124
|
-
newPassword: string;
|
|
2125
|
-
}
|
|
2126
|
-
|
|
2127
|
-
/**
|
|
2128
|
-
* Hey Pharamcist API
|
|
2129
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
2130
|
-
*
|
|
2131
|
-
* OpenAPI spec version: 1.0
|
|
2132
|
-
*
|
|
2133
|
-
*
|
|
2134
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
2135
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
2136
|
-
* Do not edit the class manually.
|
|
2137
|
-
*/
|
|
2138
|
-
/**
|
|
2139
|
-
*
|
|
2140
|
-
* @export
|
|
2141
|
-
* @interface ChangeUserEmailDto
|
|
2142
|
-
*/
|
|
2143
|
-
interface ChangeUserEmailDto {
|
|
2144
|
-
_id?: string;
|
|
2145
|
-
/**
|
|
2146
|
-
*
|
|
2147
|
-
* @type {string}
|
|
2148
|
-
* @memberof ChangeUserEmailDto
|
|
2149
|
-
*/
|
|
2150
|
-
email: string;
|
|
2151
|
-
}
|
|
2152
|
-
|
|
2153
|
-
/**
|
|
2154
|
-
* Hey Pharamcist API
|
|
2155
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
2156
|
-
*
|
|
2157
|
-
* OpenAPI spec version: 1.0
|
|
2158
|
-
*
|
|
2159
|
-
*
|
|
2160
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
2161
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
2162
|
-
* Do not edit the class manually.
|
|
2163
|
-
*/
|
|
2164
|
-
/**
|
|
2165
|
-
*
|
|
2166
|
-
* @export
|
|
2167
|
-
* @interface ChannelSettingsDto
|
|
2168
|
-
*/
|
|
2169
|
-
interface ChannelSettingsDto {
|
|
2170
|
-
_id?: string;
|
|
2171
|
-
/**
|
|
2172
|
-
* Enable email notifications for this type
|
|
2173
|
-
* @type {boolean}
|
|
2174
|
-
* @memberof ChannelSettingsDto
|
|
2175
|
-
*/
|
|
2176
|
-
email?: boolean;
|
|
2177
|
-
/**
|
|
2178
|
-
* Enable push notifications for this type
|
|
2179
|
-
* @type {boolean}
|
|
2180
|
-
* @memberof ChannelSettingsDto
|
|
2181
|
-
*/
|
|
2182
|
-
push?: boolean;
|
|
2183
|
-
/**
|
|
2184
|
-
* Enable in-app notifications for this type
|
|
2185
|
-
* @type {boolean}
|
|
2186
|
-
* @memberof ChannelSettingsDto
|
|
2187
|
-
*/
|
|
2188
|
-
inApp?: boolean;
|
|
2189
|
-
}
|
|
2190
|
-
|
|
2191
|
-
/**
|
|
2192
|
-
* Hey Pharamcist API
|
|
2193
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
2194
|
-
*
|
|
2195
|
-
* OpenAPI spec version: 1.0
|
|
2196
|
-
*
|
|
2197
|
-
*
|
|
2198
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
2199
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
2200
|
-
* Do not edit the class manually.
|
|
2201
|
-
*/
|
|
2202
|
-
/**
|
|
2203
|
-
*
|
|
2204
|
-
* @export
|
|
2205
|
-
* @interface CompletedOrderDto
|
|
2206
|
-
*/
|
|
2207
|
-
interface CompletedOrderDto {
|
|
2208
|
-
_id?: string;
|
|
2209
|
-
/**
|
|
2210
|
-
*
|
|
2211
|
-
* @type {string}
|
|
2212
|
-
* @memberof CompletedOrderDto
|
|
2213
|
-
*/
|
|
2214
|
-
orderId: string;
|
|
2215
|
-
/**
|
|
2216
|
-
*
|
|
2217
|
-
* @type {string}
|
|
2218
|
-
* @memberof CompletedOrderDto
|
|
2219
|
-
*/
|
|
2220
|
-
orderStatus: string;
|
|
2221
|
-
/**
|
|
2222
|
-
*
|
|
2223
|
-
* @type {Date}
|
|
2224
|
-
* @memberof CompletedOrderDto
|
|
1375
|
+
* @memberof CategoriesPaginatedResponseDTO
|
|
2225
1376
|
*/
|
|
2226
|
-
|
|
1377
|
+
total: number;
|
|
2227
1378
|
/**
|
|
2228
1379
|
*
|
|
2229
1380
|
* @type {number}
|
|
2230
|
-
* @memberof
|
|
1381
|
+
* @memberof CategoriesPaginatedResponseDTO
|
|
2231
1382
|
*/
|
|
2232
|
-
|
|
1383
|
+
totalPages: number;
|
|
2233
1384
|
/**
|
|
2234
1385
|
*
|
|
2235
1386
|
* @type {number}
|
|
2236
|
-
* @memberof
|
|
1387
|
+
* @memberof CategoriesPaginatedResponseDTO
|
|
2237
1388
|
*/
|
|
2238
|
-
|
|
1389
|
+
page: number;
|
|
2239
1390
|
/**
|
|
2240
1391
|
*
|
|
2241
|
-
* @type {
|
|
2242
|
-
* @memberof
|
|
1392
|
+
* @type {number}
|
|
1393
|
+
* @memberof CategoriesPaginatedResponseDTO
|
|
2243
1394
|
*/
|
|
2244
|
-
|
|
1395
|
+
limit: number;
|
|
2245
1396
|
}
|
|
2246
1397
|
|
|
2247
1398
|
/**
|
|
@@ -2258,118 +1409,22 @@ interface CompletedOrderDto {
|
|
|
2258
1409
|
/**
|
|
2259
1410
|
*
|
|
2260
1411
|
* @export
|
|
2261
|
-
* @interface
|
|
1412
|
+
* @interface PriceRange
|
|
2262
1413
|
*/
|
|
2263
|
-
interface
|
|
1414
|
+
interface PriceRange {
|
|
2264
1415
|
_id?: string;
|
|
2265
1416
|
/**
|
|
2266
1417
|
*
|
|
2267
1418
|
* @type {number}
|
|
2268
|
-
* @memberof
|
|
2269
|
-
*/
|
|
2270
|
-
blockedCount?: number;
|
|
2271
|
-
/**
|
|
2272
|
-
*
|
|
2273
|
-
* @type {number}
|
|
2274
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
2275
|
-
*/
|
|
2276
|
-
bouncedCount?: number;
|
|
2277
|
-
/**
|
|
2278
|
-
*
|
|
2279
|
-
* @type {number}
|
|
2280
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
2281
|
-
*/
|
|
2282
|
-
clickedCount?: number;
|
|
2283
|
-
/**
|
|
2284
|
-
*
|
|
2285
|
-
* @type {number}
|
|
2286
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
2287
|
-
*/
|
|
2288
|
-
deferredCount?: number;
|
|
2289
|
-
/**
|
|
2290
|
-
*
|
|
2291
|
-
* @type {number}
|
|
2292
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
2293
|
-
*/
|
|
2294
|
-
deliveredCount?: number;
|
|
2295
|
-
/**
|
|
2296
|
-
*
|
|
2297
|
-
* @type {number}
|
|
2298
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
2299
|
-
*/
|
|
2300
|
-
hardBouncedCount?: number;
|
|
2301
|
-
/**
|
|
2302
|
-
*
|
|
2303
|
-
* @type {string}
|
|
2304
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
2305
|
-
*/
|
|
2306
|
-
lastActivityAt?: string;
|
|
2307
|
-
/**
|
|
2308
|
-
*
|
|
2309
|
-
* @type {number}
|
|
2310
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
2311
|
-
*/
|
|
2312
|
-
openedCount?: number;
|
|
2313
|
-
/**
|
|
2314
|
-
*
|
|
2315
|
-
* @type {number}
|
|
2316
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
2317
|
-
*/
|
|
2318
|
-
preQueuedCount?: number;
|
|
2319
|
-
/**
|
|
2320
|
-
*
|
|
2321
|
-
* @type {number}
|
|
2322
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
2323
|
-
*/
|
|
2324
|
-
processedCount?: number;
|
|
2325
|
-
/**
|
|
2326
|
-
*
|
|
2327
|
-
* @type {number}
|
|
2328
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
2329
|
-
*/
|
|
2330
|
-
queuedCount?: number;
|
|
2331
|
-
/**
|
|
2332
|
-
*
|
|
2333
|
-
* @type {number}
|
|
2334
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
2335
|
-
*/
|
|
2336
|
-
softBouncedCount?: number;
|
|
2337
|
-
/**
|
|
2338
|
-
*
|
|
2339
|
-
* @type {number}
|
|
2340
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
2341
|
-
*/
|
|
2342
|
-
spamComplaintCount?: number;
|
|
2343
|
-
/**
|
|
2344
|
-
*
|
|
2345
|
-
* @type {number}
|
|
2346
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
2347
|
-
*/
|
|
2348
|
-
unsubscribedCount?: number;
|
|
2349
|
-
/**
|
|
2350
|
-
*
|
|
2351
|
-
* @type {number}
|
|
2352
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
2353
|
-
*/
|
|
2354
|
-
workFlowExitedCount?: number;
|
|
2355
|
-
/**
|
|
2356
|
-
*
|
|
2357
|
-
* @type {number}
|
|
2358
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
2359
|
-
*/
|
|
2360
|
-
contactID: number;
|
|
2361
|
-
/**
|
|
2362
|
-
*
|
|
2363
|
-
* @type {number}
|
|
2364
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
1419
|
+
* @memberof PriceRange
|
|
2365
1420
|
*/
|
|
2366
|
-
|
|
1421
|
+
minPrice: number;
|
|
2367
1422
|
/**
|
|
2368
1423
|
*
|
|
2369
1424
|
* @type {number}
|
|
2370
|
-
* @memberof
|
|
1425
|
+
* @memberof PriceRange
|
|
2371
1426
|
*/
|
|
2372
|
-
|
|
1427
|
+
maxPrice: number;
|
|
2373
1428
|
}
|
|
2374
1429
|
|
|
2375
1430
|
/**
|
|
@@ -2387,28 +1442,22 @@ interface SingleContactAggregatedStatsDto {
|
|
|
2387
1442
|
/**
|
|
2388
1443
|
*
|
|
2389
1444
|
* @export
|
|
2390
|
-
* @interface
|
|
1445
|
+
* @interface CategoryFilters
|
|
2391
1446
|
*/
|
|
2392
|
-
interface
|
|
1447
|
+
interface CategoryFilters {
|
|
2393
1448
|
_id?: string;
|
|
2394
1449
|
/**
|
|
2395
1450
|
*
|
|
2396
|
-
* @type {
|
|
2397
|
-
* @memberof
|
|
2398
|
-
*/
|
|
2399
|
-
count: number;
|
|
2400
|
-
/**
|
|
2401
|
-
*
|
|
2402
|
-
* @type {Array<SingleContactAggregatedStatsDto>}
|
|
2403
|
-
* @memberof ContactAggregatedStatsResponseDTO
|
|
1451
|
+
* @type {Array<string>}
|
|
1452
|
+
* @memberof CategoryFilters
|
|
2404
1453
|
*/
|
|
2405
|
-
|
|
1454
|
+
brands: Array<string>;
|
|
2406
1455
|
/**
|
|
2407
1456
|
*
|
|
2408
|
-
* @type {
|
|
2409
|
-
* @memberof
|
|
1457
|
+
* @type {PriceRange}
|
|
1458
|
+
* @memberof CategoryFilters
|
|
2410
1459
|
*/
|
|
2411
|
-
|
|
1460
|
+
priceRange: PriceRange;
|
|
2412
1461
|
}
|
|
2413
1462
|
|
|
2414
1463
|
/**
|
|
@@ -2425,82 +1474,28 @@ interface ContactAggregatedStatsResponseDTO {
|
|
|
2425
1474
|
/**
|
|
2426
1475
|
*
|
|
2427
1476
|
* @export
|
|
2428
|
-
* @interface
|
|
1477
|
+
* @interface SubCategoryHeadlinesOnlyResponseDTO
|
|
2429
1478
|
*/
|
|
2430
|
-
interface
|
|
1479
|
+
interface SubCategoryHeadlinesOnlyResponseDTO {
|
|
2431
1480
|
_id?: string;
|
|
2432
1481
|
/**
|
|
2433
1482
|
*
|
|
2434
1483
|
* @type {string}
|
|
2435
|
-
* @memberof
|
|
2436
|
-
*/
|
|
2437
|
-
name?: string;
|
|
2438
|
-
/**
|
|
2439
|
-
*
|
|
2440
|
-
* @type {number}
|
|
2441
|
-
* @memberof ContactFullDTO
|
|
2442
|
-
*/
|
|
2443
|
-
ID?: number;
|
|
2444
|
-
/**
|
|
2445
|
-
*
|
|
2446
|
-
* @type {string}
|
|
2447
|
-
* @memberof ContactFullDTO
|
|
2448
|
-
*/
|
|
2449
|
-
email: string;
|
|
2450
|
-
/**
|
|
2451
|
-
*
|
|
2452
|
-
* @type {string}
|
|
2453
|
-
* @memberof ContactFullDTO
|
|
2454
|
-
*/
|
|
2455
|
-
unsubscribedAt: string;
|
|
2456
|
-
/**
|
|
2457
|
-
*
|
|
2458
|
-
* @type {string}
|
|
2459
|
-
* @memberof ContactFullDTO
|
|
2460
|
-
*/
|
|
2461
|
-
unsubscribedBy: string;
|
|
2462
|
-
/**
|
|
2463
|
-
*
|
|
2464
|
-
* @type {string}
|
|
2465
|
-
* @memberof ContactFullDTO
|
|
1484
|
+
* @memberof SubCategoryHeadlinesOnlyResponseDTO
|
|
2466
1485
|
*/
|
|
2467
|
-
|
|
1486
|
+
id: string;
|
|
2468
1487
|
/**
|
|
2469
1488
|
*
|
|
2470
1489
|
* @type {string}
|
|
2471
|
-
* @memberof
|
|
1490
|
+
* @memberof SubCategoryHeadlinesOnlyResponseDTO
|
|
2472
1491
|
*/
|
|
2473
|
-
|
|
1492
|
+
subCategoryName: string;
|
|
2474
1493
|
/**
|
|
2475
1494
|
*
|
|
2476
1495
|
* @type {number}
|
|
2477
|
-
* @memberof
|
|
2478
|
-
*/
|
|
2479
|
-
deliveredCount: number;
|
|
2480
|
-
/**
|
|
2481
|
-
*
|
|
2482
|
-
* @type {boolean}
|
|
2483
|
-
* @memberof ContactFullDTO
|
|
2484
|
-
*/
|
|
2485
|
-
isOptInPending: boolean;
|
|
2486
|
-
/**
|
|
2487
|
-
*
|
|
2488
|
-
* @type {boolean}
|
|
2489
|
-
* @memberof ContactFullDTO
|
|
2490
|
-
*/
|
|
2491
|
-
isSpamComplaining: boolean;
|
|
2492
|
-
/**
|
|
2493
|
-
*
|
|
2494
|
-
* @type {string}
|
|
2495
|
-
* @memberof ContactFullDTO
|
|
2496
|
-
*/
|
|
2497
|
-
exclusionFromCampaignsUpdatedAt: string;
|
|
2498
|
-
/**
|
|
2499
|
-
*
|
|
2500
|
-
* @type {boolean}
|
|
2501
|
-
* @memberof ContactFullDTO
|
|
1496
|
+
* @memberof SubCategoryHeadlinesOnlyResponseDTO
|
|
2502
1497
|
*/
|
|
2503
|
-
|
|
1498
|
+
numberOfProducts: number;
|
|
2504
1499
|
}
|
|
2505
1500
|
|
|
2506
1501
|
/**
|
|
@@ -2518,28 +1513,28 @@ interface ContactFullDTO {
|
|
|
2518
1513
|
/**
|
|
2519
1514
|
*
|
|
2520
1515
|
* @export
|
|
2521
|
-
* @interface
|
|
1516
|
+
* @interface CategorysHeadlinesResponseDTO
|
|
2522
1517
|
*/
|
|
2523
|
-
interface
|
|
1518
|
+
interface CategorysHeadlinesResponseDTO {
|
|
2524
1519
|
_id?: string;
|
|
2525
1520
|
/**
|
|
2526
1521
|
*
|
|
2527
|
-
* @type {
|
|
2528
|
-
* @memberof
|
|
1522
|
+
* @type {string}
|
|
1523
|
+
* @memberof CategorysHeadlinesResponseDTO
|
|
2529
1524
|
*/
|
|
2530
|
-
|
|
1525
|
+
id: string;
|
|
2531
1526
|
/**
|
|
2532
1527
|
*
|
|
2533
|
-
* @type {
|
|
2534
|
-
* @memberof
|
|
1528
|
+
* @type {string}
|
|
1529
|
+
* @memberof CategorysHeadlinesResponseDTO
|
|
2535
1530
|
*/
|
|
2536
|
-
|
|
1531
|
+
categoryName: string;
|
|
2537
1532
|
/**
|
|
2538
1533
|
*
|
|
2539
|
-
* @type {
|
|
2540
|
-
* @memberof
|
|
1534
|
+
* @type {Array<SubCategoryHeadlinesOnlyResponseDTO>}
|
|
1535
|
+
* @memberof CategorysHeadlinesResponseDTO
|
|
2541
1536
|
*/
|
|
2542
|
-
|
|
1537
|
+
subCategories: Array<SubCategoryHeadlinesOnlyResponseDTO>;
|
|
2543
1538
|
}
|
|
2544
1539
|
|
|
2545
1540
|
/**
|
|
@@ -2556,106 +1551,22 @@ interface ContactFullResponseDTO {
|
|
|
2556
1551
|
/**
|
|
2557
1552
|
*
|
|
2558
1553
|
* @export
|
|
2559
|
-
* @interface
|
|
1554
|
+
* @interface ChangePasswordDto
|
|
2560
1555
|
*/
|
|
2561
|
-
interface
|
|
1556
|
+
interface ChangePasswordDto {
|
|
2562
1557
|
_id?: string;
|
|
2563
|
-
/**
|
|
2564
|
-
*
|
|
2565
|
-
* @type {number}
|
|
2566
|
-
* @memberof SingleContactListStatsDto
|
|
2567
|
-
*/
|
|
2568
|
-
blockedCount?: number;
|
|
2569
|
-
/**
|
|
2570
|
-
*
|
|
2571
|
-
* @type {number}
|
|
2572
|
-
* @memberof SingleContactListStatsDto
|
|
2573
|
-
*/
|
|
2574
|
-
bouncedCount?: number;
|
|
2575
|
-
/**
|
|
2576
|
-
*
|
|
2577
|
-
* @type {number}
|
|
2578
|
-
* @memberof SingleContactListStatsDto
|
|
2579
|
-
*/
|
|
2580
|
-
clickedCount?: number;
|
|
2581
|
-
/**
|
|
2582
|
-
*
|
|
2583
|
-
* @type {number}
|
|
2584
|
-
* @memberof SingleContactListStatsDto
|
|
2585
|
-
*/
|
|
2586
|
-
deferredCount?: number;
|
|
2587
|
-
/**
|
|
2588
|
-
*
|
|
2589
|
-
* @type {number}
|
|
2590
|
-
* @memberof SingleContactListStatsDto
|
|
2591
|
-
*/
|
|
2592
|
-
deliveredCount?: number;
|
|
2593
|
-
/**
|
|
2594
|
-
*
|
|
2595
|
-
* @type {number}
|
|
2596
|
-
* @memberof SingleContactListStatsDto
|
|
2597
|
-
*/
|
|
2598
|
-
hardBouncedCount?: number;
|
|
2599
1558
|
/**
|
|
2600
1559
|
*
|
|
2601
1560
|
* @type {string}
|
|
2602
|
-
* @memberof
|
|
2603
|
-
*/
|
|
2604
|
-
lastActivityAt?: string;
|
|
2605
|
-
/**
|
|
2606
|
-
*
|
|
2607
|
-
* @type {number}
|
|
2608
|
-
* @memberof SingleContactListStatsDto
|
|
2609
|
-
*/
|
|
2610
|
-
openedCount?: number;
|
|
2611
|
-
/**
|
|
2612
|
-
*
|
|
2613
|
-
* @type {number}
|
|
2614
|
-
* @memberof SingleContactListStatsDto
|
|
2615
|
-
*/
|
|
2616
|
-
preQueuedCount?: number;
|
|
2617
|
-
/**
|
|
2618
|
-
*
|
|
2619
|
-
* @type {number}
|
|
2620
|
-
* @memberof SingleContactListStatsDto
|
|
2621
|
-
*/
|
|
2622
|
-
processedCount?: number;
|
|
2623
|
-
/**
|
|
2624
|
-
*
|
|
2625
|
-
* @type {number}
|
|
2626
|
-
* @memberof SingleContactListStatsDto
|
|
2627
|
-
*/
|
|
2628
|
-
queuedCount?: number;
|
|
2629
|
-
/**
|
|
2630
|
-
*
|
|
2631
|
-
* @type {number}
|
|
2632
|
-
* @memberof SingleContactListStatsDto
|
|
2633
|
-
*/
|
|
2634
|
-
softBouncedCount?: number;
|
|
2635
|
-
/**
|
|
2636
|
-
*
|
|
2637
|
-
* @type {number}
|
|
2638
|
-
* @memberof SingleContactListStatsDto
|
|
2639
|
-
*/
|
|
2640
|
-
spamComplaintCount?: number;
|
|
2641
|
-
/**
|
|
2642
|
-
*
|
|
2643
|
-
* @type {number}
|
|
2644
|
-
* @memberof SingleContactListStatsDto
|
|
2645
|
-
*/
|
|
2646
|
-
unsubscribedCount?: number;
|
|
2647
|
-
/**
|
|
2648
|
-
*
|
|
2649
|
-
* @type {number}
|
|
2650
|
-
* @memberof SingleContactListStatsDto
|
|
1561
|
+
* @memberof ChangePasswordDto
|
|
2651
1562
|
*/
|
|
2652
|
-
|
|
1563
|
+
oldPassword: string;
|
|
2653
1564
|
/**
|
|
2654
1565
|
*
|
|
2655
|
-
* @type {
|
|
2656
|
-
* @memberof
|
|
1566
|
+
* @type {string}
|
|
1567
|
+
* @memberof ChangePasswordDto
|
|
2657
1568
|
*/
|
|
2658
|
-
|
|
1569
|
+
newPassword: string;
|
|
2659
1570
|
}
|
|
2660
1571
|
|
|
2661
1572
|
/**
|
|
@@ -2669,32 +1580,19 @@ interface SingleContactListStatsDto {
|
|
|
2669
1580
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
2670
1581
|
* Do not edit the class manually.
|
|
2671
1582
|
*/
|
|
2672
|
-
|
|
2673
1583
|
/**
|
|
2674
1584
|
*
|
|
2675
1585
|
* @export
|
|
2676
|
-
* @interface
|
|
1586
|
+
* @interface ChangeUserEmailDto
|
|
2677
1587
|
*/
|
|
2678
|
-
interface
|
|
1588
|
+
interface ChangeUserEmailDto {
|
|
2679
1589
|
_id?: string;
|
|
2680
1590
|
/**
|
|
2681
1591
|
*
|
|
2682
|
-
* @type {
|
|
2683
|
-
* @memberof
|
|
2684
|
-
*/
|
|
2685
|
-
count: number;
|
|
2686
|
-
/**
|
|
2687
|
-
*
|
|
2688
|
-
* @type {Array<SingleContactListStatsDto>}
|
|
2689
|
-
* @memberof ContactListStatsResponseDTO
|
|
2690
|
-
*/
|
|
2691
|
-
data: Array<SingleContactListStatsDto>;
|
|
2692
|
-
/**
|
|
2693
|
-
*
|
|
2694
|
-
* @type {number}
|
|
2695
|
-
* @memberof ContactListStatsResponseDTO
|
|
1592
|
+
* @type {string}
|
|
1593
|
+
* @memberof ChangeUserEmailDto
|
|
2696
1594
|
*/
|
|
2697
|
-
|
|
1595
|
+
email: string;
|
|
2698
1596
|
}
|
|
2699
1597
|
|
|
2700
1598
|
/**
|
|
@@ -2711,40 +1609,28 @@ interface ContactListStatsResponseDTO {
|
|
|
2711
1609
|
/**
|
|
2712
1610
|
*
|
|
2713
1611
|
* @export
|
|
2714
|
-
* @interface
|
|
1612
|
+
* @interface ChannelSettingsDto
|
|
2715
1613
|
*/
|
|
2716
|
-
interface
|
|
1614
|
+
interface ChannelSettingsDto {
|
|
2717
1615
|
_id?: string;
|
|
2718
1616
|
/**
|
|
2719
|
-
*
|
|
2720
|
-
* @type {
|
|
2721
|
-
* @memberof
|
|
2722
|
-
*/
|
|
2723
|
-
name: string;
|
|
2724
|
-
/**
|
|
2725
|
-
*
|
|
2726
|
-
* @type {string}
|
|
2727
|
-
* @memberof MarketingListContactDTO
|
|
2728
|
-
*/
|
|
2729
|
-
address: string;
|
|
2730
|
-
/**
|
|
2731
|
-
*
|
|
2732
|
-
* @type {string}
|
|
2733
|
-
* @memberof MarketingListContactDTO
|
|
1617
|
+
* Enable email notifications for this type
|
|
1618
|
+
* @type {boolean}
|
|
1619
|
+
* @memberof ChannelSettingsDto
|
|
2734
1620
|
*/
|
|
2735
|
-
|
|
1621
|
+
email?: boolean;
|
|
2736
1622
|
/**
|
|
2737
|
-
*
|
|
2738
|
-
* @type {
|
|
2739
|
-
* @memberof
|
|
1623
|
+
* Enable push notifications for this type
|
|
1624
|
+
* @type {boolean}
|
|
1625
|
+
* @memberof ChannelSettingsDto
|
|
2740
1626
|
*/
|
|
2741
|
-
|
|
1627
|
+
push?: boolean;
|
|
2742
1628
|
/**
|
|
2743
|
-
*
|
|
2744
|
-
* @type {
|
|
2745
|
-
* @memberof
|
|
1629
|
+
* Enable in-app notifications for this type
|
|
1630
|
+
* @type {boolean}
|
|
1631
|
+
* @memberof ChannelSettingsDto
|
|
2746
1632
|
*/
|
|
2747
|
-
|
|
1633
|
+
inApp?: boolean;
|
|
2748
1634
|
}
|
|
2749
1635
|
|
|
2750
1636
|
/**
|
|
@@ -2758,32 +1644,49 @@ interface MarketingListContactDTO {
|
|
|
2758
1644
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
2759
1645
|
* Do not edit the class manually.
|
|
2760
1646
|
*/
|
|
2761
|
-
|
|
2762
1647
|
/**
|
|
2763
1648
|
*
|
|
2764
1649
|
* @export
|
|
2765
|
-
* @interface
|
|
1650
|
+
* @interface CompletedOrderDto
|
|
2766
1651
|
*/
|
|
2767
|
-
interface
|
|
1652
|
+
interface CompletedOrderDto {
|
|
2768
1653
|
_id?: string;
|
|
2769
1654
|
/**
|
|
2770
1655
|
*
|
|
2771
|
-
* @type {
|
|
2772
|
-
* @memberof
|
|
1656
|
+
* @type {string}
|
|
1657
|
+
* @memberof CompletedOrderDto
|
|
2773
1658
|
*/
|
|
2774
|
-
|
|
1659
|
+
orderId: string;
|
|
1660
|
+
/**
|
|
1661
|
+
*
|
|
1662
|
+
* @type {string}
|
|
1663
|
+
* @memberof CompletedOrderDto
|
|
1664
|
+
*/
|
|
1665
|
+
orderStatus: string;
|
|
2775
1666
|
/**
|
|
2776
1667
|
*
|
|
2777
|
-
* @type {
|
|
2778
|
-
* @memberof
|
|
1668
|
+
* @type {Date}
|
|
1669
|
+
* @memberof CompletedOrderDto
|
|
2779
1670
|
*/
|
|
2780
|
-
|
|
1671
|
+
createdAt: Date;
|
|
2781
1672
|
/**
|
|
2782
1673
|
*
|
|
2783
1674
|
* @type {number}
|
|
2784
|
-
* @memberof
|
|
1675
|
+
* @memberof CompletedOrderDto
|
|
2785
1676
|
*/
|
|
2786
|
-
|
|
1677
|
+
totalItems: number;
|
|
1678
|
+
/**
|
|
1679
|
+
*
|
|
1680
|
+
* @type {number}
|
|
1681
|
+
* @memberof CompletedOrderDto
|
|
1682
|
+
*/
|
|
1683
|
+
reviewedItems: number;
|
|
1684
|
+
/**
|
|
1685
|
+
*
|
|
1686
|
+
* @type {boolean}
|
|
1687
|
+
* @memberof CompletedOrderDto
|
|
1688
|
+
*/
|
|
1689
|
+
hasUnreviewedItems: boolean;
|
|
2787
1690
|
}
|
|
2788
1691
|
|
|
2789
1692
|
/**
|
|
@@ -2866,83 +1769,6 @@ interface ContactUs {
|
|
|
2866
1769
|
adminNotes: string;
|
|
2867
1770
|
}
|
|
2868
1771
|
|
|
2869
|
-
/**
|
|
2870
|
-
* Hey Pharamcist API
|
|
2871
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
2872
|
-
*
|
|
2873
|
-
* OpenAPI spec version: 1.0
|
|
2874
|
-
*
|
|
2875
|
-
*
|
|
2876
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
2877
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
2878
|
-
* Do not edit the class manually.
|
|
2879
|
-
*/
|
|
2880
|
-
/**
|
|
2881
|
-
*
|
|
2882
|
-
* @export
|
|
2883
|
-
* @interface SingleCountryStatsDto
|
|
2884
|
-
*/
|
|
2885
|
-
interface SingleCountryStatsDto {
|
|
2886
|
-
_id?: string;
|
|
2887
|
-
/**
|
|
2888
|
-
*
|
|
2889
|
-
* @type {number}
|
|
2890
|
-
* @memberof SingleCountryStatsDto
|
|
2891
|
-
*/
|
|
2892
|
-
clickedCount: number;
|
|
2893
|
-
/**
|
|
2894
|
-
*
|
|
2895
|
-
* @type {string}
|
|
2896
|
-
* @memberof SingleCountryStatsDto
|
|
2897
|
-
*/
|
|
2898
|
-
country: string;
|
|
2899
|
-
/**
|
|
2900
|
-
*
|
|
2901
|
-
* @type {number}
|
|
2902
|
-
* @memberof SingleCountryStatsDto
|
|
2903
|
-
*/
|
|
2904
|
-
openedCount: number;
|
|
2905
|
-
}
|
|
2906
|
-
|
|
2907
|
-
/**
|
|
2908
|
-
* Hey Pharamcist API
|
|
2909
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
2910
|
-
*
|
|
2911
|
-
* OpenAPI spec version: 1.0
|
|
2912
|
-
*
|
|
2913
|
-
*
|
|
2914
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
2915
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
2916
|
-
* Do not edit the class manually.
|
|
2917
|
-
*/
|
|
2918
|
-
|
|
2919
|
-
/**
|
|
2920
|
-
*
|
|
2921
|
-
* @export
|
|
2922
|
-
* @interface CountryStatsResponseDTO
|
|
2923
|
-
*/
|
|
2924
|
-
interface CountryStatsResponseDTO {
|
|
2925
|
-
_id?: string;
|
|
2926
|
-
/**
|
|
2927
|
-
*
|
|
2928
|
-
* @type {number}
|
|
2929
|
-
* @memberof CountryStatsResponseDTO
|
|
2930
|
-
*/
|
|
2931
|
-
count: number;
|
|
2932
|
-
/**
|
|
2933
|
-
*
|
|
2934
|
-
* @type {Array<SingleCountryStatsDto>}
|
|
2935
|
-
* @memberof CountryStatsResponseDTO
|
|
2936
|
-
*/
|
|
2937
|
-
data: Array<SingleCountryStatsDto>;
|
|
2938
|
-
/**
|
|
2939
|
-
*
|
|
2940
|
-
* @type {number}
|
|
2941
|
-
* @memberof CountryStatsResponseDTO
|
|
2942
|
-
*/
|
|
2943
|
-
total: number;
|
|
2944
|
-
}
|
|
2945
|
-
|
|
2946
1772
|
/**
|
|
2947
1773
|
* Hey Pharamcist API
|
|
2948
1774
|
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
@@ -3150,70 +1976,6 @@ interface CreateCategoryDto {
|
|
|
3150
1976
|
isActive: boolean;
|
|
3151
1977
|
}
|
|
3152
1978
|
|
|
3153
|
-
/**
|
|
3154
|
-
* Hey Pharamcist API
|
|
3155
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
3156
|
-
*
|
|
3157
|
-
* OpenAPI spec version: 1.0
|
|
3158
|
-
*
|
|
3159
|
-
*
|
|
3160
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
3161
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
3162
|
-
* Do not edit the class manually.
|
|
3163
|
-
*/
|
|
3164
|
-
/**
|
|
3165
|
-
*
|
|
3166
|
-
* @export
|
|
3167
|
-
* @interface CreateContactDTO
|
|
3168
|
-
*/
|
|
3169
|
-
interface CreateContactDTO {
|
|
3170
|
-
_id?: string;
|
|
3171
|
-
/**
|
|
3172
|
-
*
|
|
3173
|
-
* @type {string}
|
|
3174
|
-
* @memberof CreateContactDTO
|
|
3175
|
-
*/
|
|
3176
|
-
name: string;
|
|
3177
|
-
/**
|
|
3178
|
-
*
|
|
3179
|
-
* @type {string}
|
|
3180
|
-
* @memberof CreateContactDTO
|
|
3181
|
-
*/
|
|
3182
|
-
email: string;
|
|
3183
|
-
/**
|
|
3184
|
-
*
|
|
3185
|
-
* @type {boolean}
|
|
3186
|
-
* @memberof CreateContactDTO
|
|
3187
|
-
*/
|
|
3188
|
-
isExcludedFromCampaigns: boolean;
|
|
3189
|
-
}
|
|
3190
|
-
|
|
3191
|
-
/**
|
|
3192
|
-
* Hey Pharamcist API
|
|
3193
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
3194
|
-
*
|
|
3195
|
-
* OpenAPI spec version: 1.0
|
|
3196
|
-
*
|
|
3197
|
-
*
|
|
3198
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
3199
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
3200
|
-
* Do not edit the class manually.
|
|
3201
|
-
*/
|
|
3202
|
-
/**
|
|
3203
|
-
*
|
|
3204
|
-
* @export
|
|
3205
|
-
* @interface CreateContactListDTO
|
|
3206
|
-
*/
|
|
3207
|
-
interface CreateContactListDTO {
|
|
3208
|
-
_id?: string;
|
|
3209
|
-
/**
|
|
3210
|
-
*
|
|
3211
|
-
* @type {string}
|
|
3212
|
-
* @memberof CreateContactListDTO
|
|
3213
|
-
*/
|
|
3214
|
-
name: string;
|
|
3215
|
-
}
|
|
3216
|
-
|
|
3217
1979
|
/**
|
|
3218
1980
|
* Hey Pharamcist API
|
|
3219
1981
|
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
@@ -3346,109 +2108,8 @@ declare enum CreateDiscountDtoValueTypeEnum {
|
|
|
3346
2108
|
declare enum CreateDiscountDtoStateEnum {
|
|
3347
2109
|
ACTIVE = "ACTIVE",
|
|
3348
2110
|
INACTIVE = "INACTIVE",
|
|
3349
|
-
EXPIRED = "EXPIRED",
|
|
3350
|
-
SCHEDULED = "SCHEDULED"
|
|
3351
|
-
}
|
|
3352
|
-
|
|
3353
|
-
/**
|
|
3354
|
-
* Hey Pharamcist API
|
|
3355
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
3356
|
-
*
|
|
3357
|
-
* OpenAPI spec version: 1.0
|
|
3358
|
-
*
|
|
3359
|
-
*
|
|
3360
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
3361
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
3362
|
-
* Do not edit the class manually.
|
|
3363
|
-
*/
|
|
3364
|
-
/**
|
|
3365
|
-
*
|
|
3366
|
-
* @export
|
|
3367
|
-
* @interface CreateEmailTemplateDTO
|
|
3368
|
-
*/
|
|
3369
|
-
interface CreateEmailTemplateDTO {
|
|
3370
|
-
_id?: string;
|
|
3371
|
-
/**
|
|
3372
|
-
*
|
|
3373
|
-
* @type {string}
|
|
3374
|
-
* @memberof CreateEmailTemplateDTO
|
|
3375
|
-
*/
|
|
3376
|
-
name: string;
|
|
3377
|
-
/**
|
|
3378
|
-
*
|
|
3379
|
-
* @type {string}
|
|
3380
|
-
* @memberof CreateEmailTemplateDTO
|
|
3381
|
-
*/
|
|
3382
|
-
htmlContent: string;
|
|
3383
|
-
/**
|
|
3384
|
-
*
|
|
3385
|
-
* @type {string}
|
|
3386
|
-
* @memberof CreateEmailTemplateDTO
|
|
3387
|
-
*/
|
|
3388
|
-
textContent: string;
|
|
3389
|
-
/**
|
|
3390
|
-
*
|
|
3391
|
-
* @type {string}
|
|
3392
|
-
* @memberof CreateEmailTemplateDTO
|
|
3393
|
-
*/
|
|
3394
|
-
subject: string;
|
|
3395
|
-
/**
|
|
3396
|
-
*
|
|
3397
|
-
* @type {string}
|
|
3398
|
-
* @memberof CreateEmailTemplateDTO
|
|
3399
|
-
*/
|
|
3400
|
-
description: string;
|
|
3401
|
-
}
|
|
3402
|
-
|
|
3403
|
-
/**
|
|
3404
|
-
* Hey Pharamcist API
|
|
3405
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
3406
|
-
*
|
|
3407
|
-
* OpenAPI spec version: 1.0
|
|
3408
|
-
*
|
|
3409
|
-
*
|
|
3410
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
3411
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
3412
|
-
* Do not edit the class manually.
|
|
3413
|
-
*/
|
|
3414
|
-
|
|
3415
|
-
/**
|
|
3416
|
-
*
|
|
3417
|
-
* @export
|
|
3418
|
-
* @interface CreateEventDto
|
|
3419
|
-
*/
|
|
3420
|
-
interface CreateEventDto {
|
|
3421
|
-
_id?: string;
|
|
3422
|
-
/**
|
|
3423
|
-
*
|
|
3424
|
-
* @type {string}
|
|
3425
|
-
* @memberof CreateEventDto
|
|
3426
|
-
*/
|
|
3427
|
-
title?: string;
|
|
3428
|
-
/**
|
|
3429
|
-
*
|
|
3430
|
-
* @type {string}
|
|
3431
|
-
* @memberof CreateEventDto
|
|
3432
|
-
*/
|
|
3433
|
-
description?: string;
|
|
3434
|
-
/**
|
|
3435
|
-
*
|
|
3436
|
-
* @type {number}
|
|
3437
|
-
* @memberof CreateEventDto
|
|
3438
|
-
*/
|
|
3439
|
-
durationInMinutes?: number;
|
|
3440
|
-
/**
|
|
3441
|
-
*
|
|
3442
|
-
* @type {number}
|
|
3443
|
-
* @memberof CreateEventDto
|
|
3444
|
-
*/
|
|
3445
|
-
bufferTimeInMinutes?: number;
|
|
3446
|
-
/**
|
|
3447
|
-
*
|
|
3448
|
-
* @type {Array<AvailableDatesDto>}
|
|
3449
|
-
* @memberof CreateEventDto
|
|
3450
|
-
*/
|
|
3451
|
-
availableDates?: Array<AvailableDatesDto>;
|
|
2111
|
+
EXPIRED = "EXPIRED",
|
|
2112
|
+
SCHEDULED = "SCHEDULED"
|
|
3452
2113
|
}
|
|
3453
2114
|
|
|
3454
2115
|
/**
|
|
@@ -3462,73 +2123,44 @@ interface CreateEventDto {
|
|
|
3462
2123
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
3463
2124
|
* Do not edit the class manually.
|
|
3464
2125
|
*/
|
|
2126
|
+
|
|
3465
2127
|
/**
|
|
3466
2128
|
*
|
|
3467
2129
|
* @export
|
|
3468
|
-
* @interface
|
|
2130
|
+
* @interface CreateEventDto
|
|
3469
2131
|
*/
|
|
3470
|
-
interface
|
|
2132
|
+
interface CreateEventDto {
|
|
3471
2133
|
_id?: string;
|
|
3472
2134
|
/**
|
|
3473
|
-
*
|
|
2135
|
+
*
|
|
3474
2136
|
* @type {string}
|
|
3475
|
-
* @memberof
|
|
2137
|
+
* @memberof CreateEventDto
|
|
3476
2138
|
*/
|
|
3477
|
-
title
|
|
2139
|
+
title?: string;
|
|
3478
2140
|
/**
|
|
3479
|
-
*
|
|
2141
|
+
*
|
|
3480
2142
|
* @type {string}
|
|
3481
|
-
* @memberof
|
|
2143
|
+
* @memberof CreateEventDto
|
|
3482
2144
|
*/
|
|
3483
|
-
|
|
2145
|
+
description?: string;
|
|
3484
2146
|
/**
|
|
3485
|
-
*
|
|
2147
|
+
*
|
|
3486
2148
|
* @type {number}
|
|
3487
|
-
* @memberof
|
|
2149
|
+
* @memberof CreateEventDto
|
|
3488
2150
|
*/
|
|
3489
|
-
|
|
2151
|
+
durationInMinutes?: number;
|
|
3490
2152
|
/**
|
|
3491
|
-
*
|
|
2153
|
+
*
|
|
3492
2154
|
* @type {number}
|
|
3493
|
-
* @memberof
|
|
3494
|
-
*/
|
|
3495
|
-
sender: number;
|
|
3496
|
-
/**
|
|
3497
|
-
* ID of the sender email address. Required for successful sending of the campaign.
|
|
3498
|
-
* @type {string}
|
|
3499
|
-
* @memberof CreateMarketingCampaignDTO
|
|
3500
|
-
*/
|
|
3501
|
-
senderEmail: string;
|
|
3502
|
-
/**
|
|
3503
|
-
* The email address of the sender. Required for successful sending of the campaign
|
|
3504
|
-
* @type {string}
|
|
3505
|
-
* @memberof CreateMarketingCampaignDTO
|
|
3506
|
-
*/
|
|
3507
|
-
senderName: string;
|
|
3508
|
-
/**
|
|
3509
|
-
* Unique numeric ID of the template the CampaignDraft was generated from, or as which it was last saved. Changing the template ID will not update the content of the CampaignDraft.
|
|
3510
|
-
* @type {string}
|
|
3511
|
-
* @memberof CreateMarketingCampaignDTO
|
|
3512
|
-
*/
|
|
3513
|
-
templateId: string;
|
|
3514
|
-
/**
|
|
3515
|
-
* Edit mode for the campaign draft.
|
|
3516
|
-
* @type {string}
|
|
3517
|
-
* @memberof CreateMarketingCampaignDTO
|
|
3518
|
-
*/
|
|
3519
|
-
editMode: string;
|
|
3520
|
-
/**
|
|
3521
|
-
* Indicates whether the campaign draft is marked as Starred or not.
|
|
3522
|
-
* @type {boolean}
|
|
3523
|
-
* @memberof CreateMarketingCampaignDTO
|
|
2155
|
+
* @memberof CreateEventDto
|
|
3524
2156
|
*/
|
|
3525
|
-
|
|
2157
|
+
bufferTimeInMinutes?: number;
|
|
3526
2158
|
/**
|
|
3527
|
-
*
|
|
3528
|
-
* @type {
|
|
3529
|
-
* @memberof
|
|
2159
|
+
*
|
|
2160
|
+
* @type {Array<AvailableDatesDto>}
|
|
2161
|
+
* @memberof CreateEventDto
|
|
3530
2162
|
*/
|
|
3531
|
-
|
|
2163
|
+
availableDates?: Array<AvailableDatesDto>;
|
|
3532
2164
|
}
|
|
3533
2165
|
|
|
3534
2166
|
/**
|
|
@@ -4836,122 +3468,6 @@ interface EmailInvoiceDto {
|
|
|
4836
3468
|
orderId: string;
|
|
4837
3469
|
}
|
|
4838
3470
|
|
|
4839
|
-
/**
|
|
4840
|
-
* Hey Pharamcist API
|
|
4841
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4842
|
-
*
|
|
4843
|
-
* OpenAPI spec version: 1.0
|
|
4844
|
-
*
|
|
4845
|
-
*
|
|
4846
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
4847
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
4848
|
-
* Do not edit the class manually.
|
|
4849
|
-
*/
|
|
4850
|
-
/**
|
|
4851
|
-
*
|
|
4852
|
-
* @export
|
|
4853
|
-
* @interface EmailTemplateResponseDTO
|
|
4854
|
-
*/
|
|
4855
|
-
interface EmailTemplateResponseDTO {
|
|
4856
|
-
_id?: string;
|
|
4857
|
-
/**
|
|
4858
|
-
*
|
|
4859
|
-
* @type {number}
|
|
4860
|
-
* @memberof EmailTemplateResponseDTO
|
|
4861
|
-
*/
|
|
4862
|
-
ID: number;
|
|
4863
|
-
/**
|
|
4864
|
-
*
|
|
4865
|
-
* @type {string}
|
|
4866
|
-
* @memberof EmailTemplateResponseDTO
|
|
4867
|
-
*/
|
|
4868
|
-
name: string;
|
|
4869
|
-
/**
|
|
4870
|
-
*
|
|
4871
|
-
* @type {string}
|
|
4872
|
-
* @memberof EmailTemplateResponseDTO
|
|
4873
|
-
*/
|
|
4874
|
-
locale: string;
|
|
4875
|
-
/**
|
|
4876
|
-
*
|
|
4877
|
-
* @type {string}
|
|
4878
|
-
* @memberof EmailTemplateResponseDTO
|
|
4879
|
-
*/
|
|
4880
|
-
author: string;
|
|
4881
|
-
/**
|
|
4882
|
-
*
|
|
4883
|
-
* @type {string}
|
|
4884
|
-
* @memberof EmailTemplateResponseDTO
|
|
4885
|
-
*/
|
|
4886
|
-
presets: string;
|
|
4887
|
-
/**
|
|
4888
|
-
*
|
|
4889
|
-
* @type {Array<string>}
|
|
4890
|
-
* @memberof EmailTemplateResponseDTO
|
|
4891
|
-
*/
|
|
4892
|
-
previews: Array<string>;
|
|
4893
|
-
/**
|
|
4894
|
-
*
|
|
4895
|
-
* @type {string}
|
|
4896
|
-
* @memberof EmailTemplateResponseDTO
|
|
4897
|
-
*/
|
|
4898
|
-
ownerType: string;
|
|
4899
|
-
/**
|
|
4900
|
-
*
|
|
4901
|
-
* @type {string}
|
|
4902
|
-
* @memberof EmailTemplateResponseDTO
|
|
4903
|
-
*/
|
|
4904
|
-
copyright: string;
|
|
4905
|
-
/**
|
|
4906
|
-
*
|
|
4907
|
-
* @type {string}
|
|
4908
|
-
* @memberof EmailTemplateResponseDTO
|
|
4909
|
-
*/
|
|
4910
|
-
description: string;
|
|
4911
|
-
/**
|
|
4912
|
-
*
|
|
4913
|
-
* @type {Array<string>}
|
|
4914
|
-
* @memberof EmailTemplateResponseDTO
|
|
4915
|
-
*/
|
|
4916
|
-
purposes: Array<string>;
|
|
4917
|
-
/**
|
|
4918
|
-
*
|
|
4919
|
-
* @type {Array<string>}
|
|
4920
|
-
* @memberof EmailTemplateResponseDTO
|
|
4921
|
-
*/
|
|
4922
|
-
categories: Array<string>;
|
|
4923
|
-
/**
|
|
4924
|
-
*
|
|
4925
|
-
* @type {boolean}
|
|
4926
|
-
* @memberof EmailTemplateResponseDTO
|
|
4927
|
-
*/
|
|
4928
|
-
isStarred: boolean;
|
|
4929
|
-
/**
|
|
4930
|
-
*
|
|
4931
|
-
* @type {boolean}
|
|
4932
|
-
* @memberof EmailTemplateResponseDTO
|
|
4933
|
-
*/
|
|
4934
|
-
isTextPartGenerationEnabled: boolean;
|
|
4935
|
-
/**
|
|
4936
|
-
*
|
|
4937
|
-
* @type {string}
|
|
4938
|
-
* @memberof EmailTemplateResponseDTO
|
|
4939
|
-
*/
|
|
4940
|
-
createdAt: string;
|
|
4941
|
-
/**
|
|
4942
|
-
*
|
|
4943
|
-
* @type {string}
|
|
4944
|
-
* @memberof EmailTemplateResponseDTO
|
|
4945
|
-
*/
|
|
4946
|
-
lastUpdatedAt: string;
|
|
4947
|
-
/**
|
|
4948
|
-
*
|
|
4949
|
-
* @type {Array<string>}
|
|
4950
|
-
* @memberof EmailTemplateResponseDTO
|
|
4951
|
-
*/
|
|
4952
|
-
localeList: Array<string>;
|
|
4953
|
-
}
|
|
4954
|
-
|
|
4955
3471
|
/**
|
|
4956
3472
|
* Hey Pharamcist API
|
|
4957
3473
|
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
@@ -5067,207 +3583,16 @@ interface FileproccesorUploadBody {
|
|
|
5067
3583
|
/**
|
|
5068
3584
|
*
|
|
5069
3585
|
* @export
|
|
5070
|
-
* @interface ForgetPassword
|
|
5071
|
-
*/
|
|
5072
|
-
interface ForgetPassword {
|
|
5073
|
-
_id?: string;
|
|
5074
|
-
/**
|
|
5075
|
-
*
|
|
5076
|
-
* @type {string}
|
|
5077
|
-
* @memberof ForgetPassword
|
|
5078
|
-
*/
|
|
5079
|
-
email: string;
|
|
5080
|
-
}
|
|
5081
|
-
|
|
5082
|
-
/**
|
|
5083
|
-
* Hey Pharamcist API
|
|
5084
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5085
|
-
*
|
|
5086
|
-
* OpenAPI spec version: 1.0
|
|
5087
|
-
*
|
|
5088
|
-
*
|
|
5089
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
5090
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
5091
|
-
* Do not edit the class manually.
|
|
5092
|
-
*/
|
|
5093
|
-
/**
|
|
5094
|
-
*
|
|
5095
|
-
* @export
|
|
5096
|
-
* @interface SingleGeneralStats
|
|
5097
|
-
*/
|
|
5098
|
-
interface SingleGeneralStats {
|
|
5099
|
-
_id?: string;
|
|
5100
|
-
/**
|
|
5101
|
-
*
|
|
5102
|
-
* @type {number}
|
|
5103
|
-
* @memberof SingleGeneralStats
|
|
5104
|
-
*/
|
|
5105
|
-
blockedCount: number;
|
|
5106
|
-
/**
|
|
5107
|
-
*
|
|
5108
|
-
* @type {number}
|
|
5109
|
-
* @memberof SingleGeneralStats
|
|
5110
|
-
*/
|
|
5111
|
-
bouncedCount: number;
|
|
5112
|
-
/**
|
|
5113
|
-
*
|
|
5114
|
-
* @type {number}
|
|
5115
|
-
* @memberof SingleGeneralStats
|
|
5116
|
-
*/
|
|
5117
|
-
campaignID: number;
|
|
5118
|
-
/**
|
|
5119
|
-
*
|
|
5120
|
-
* @type {boolean}
|
|
5121
|
-
* @memberof SingleGeneralStats
|
|
5122
|
-
*/
|
|
5123
|
-
campaignIsStarred: boolean;
|
|
5124
|
-
/**
|
|
5125
|
-
*
|
|
5126
|
-
* @type {string}
|
|
5127
|
-
* @memberof SingleGeneralStats
|
|
5128
|
-
*/
|
|
5129
|
-
campaignSendStartAt: string;
|
|
5130
|
-
/**
|
|
5131
|
-
*
|
|
5132
|
-
* @type {string}
|
|
5133
|
-
* @memberof SingleGeneralStats
|
|
5134
|
-
*/
|
|
5135
|
-
campaignSubject: string;
|
|
5136
|
-
/**
|
|
5137
|
-
*
|
|
5138
|
-
* @type {number}
|
|
5139
|
-
* @memberof SingleGeneralStats
|
|
5140
|
-
*/
|
|
5141
|
-
clickedCount: number;
|
|
5142
|
-
/**
|
|
5143
|
-
*
|
|
5144
|
-
* @type {string}
|
|
5145
|
-
* @memberof SingleGeneralStats
|
|
5146
|
-
*/
|
|
5147
|
-
contactListName: string;
|
|
5148
|
-
/**
|
|
5149
|
-
*
|
|
5150
|
-
* @type {number}
|
|
5151
|
-
* @memberof SingleGeneralStats
|
|
5152
|
-
*/
|
|
5153
|
-
deferredCount: number;
|
|
5154
|
-
/**
|
|
5155
|
-
*
|
|
5156
|
-
* @type {number}
|
|
5157
|
-
* @memberof SingleGeneralStats
|
|
5158
|
-
*/
|
|
5159
|
-
deliveredCount: number;
|
|
5160
|
-
/**
|
|
5161
|
-
*
|
|
5162
|
-
* @type {number}
|
|
5163
|
-
* @memberof SingleGeneralStats
|
|
5164
|
-
*/
|
|
5165
|
-
hardBouncedCount: number;
|
|
5166
|
-
/**
|
|
5167
|
-
*
|
|
5168
|
-
* @type {string}
|
|
5169
|
-
* @memberof SingleGeneralStats
|
|
5170
|
-
*/
|
|
5171
|
-
lastActivityAt: string;
|
|
5172
|
-
/**
|
|
5173
|
-
*
|
|
5174
|
-
* @type {number}
|
|
5175
|
-
* @memberof SingleGeneralStats
|
|
5176
|
-
*/
|
|
5177
|
-
newsLetterID: number;
|
|
5178
|
-
/**
|
|
5179
|
-
*
|
|
5180
|
-
* @type {number}
|
|
5181
|
-
* @memberof SingleGeneralStats
|
|
5182
|
-
*/
|
|
5183
|
-
openedCount: number;
|
|
5184
|
-
/**
|
|
5185
|
-
*
|
|
5186
|
-
* @type {number}
|
|
5187
|
-
* @memberof SingleGeneralStats
|
|
5188
|
-
*/
|
|
5189
|
-
preQueuedCount: number;
|
|
5190
|
-
/**
|
|
5191
|
-
*
|
|
5192
|
-
* @type {number}
|
|
5193
|
-
* @memberof SingleGeneralStats
|
|
5194
|
-
*/
|
|
5195
|
-
processedCount: number;
|
|
5196
|
-
/**
|
|
5197
|
-
*
|
|
5198
|
-
* @type {number}
|
|
5199
|
-
* @memberof SingleGeneralStats
|
|
5200
|
-
*/
|
|
5201
|
-
queuedCount: number;
|
|
5202
|
-
/**
|
|
5203
|
-
*
|
|
5204
|
-
* @type {string}
|
|
5205
|
-
* @memberof SingleGeneralStats
|
|
5206
|
-
*/
|
|
5207
|
-
segmentName: string;
|
|
5208
|
-
/**
|
|
5209
|
-
*
|
|
5210
|
-
* @type {number}
|
|
5211
|
-
* @memberof SingleGeneralStats
|
|
5212
|
-
*/
|
|
5213
|
-
softBouncedCount: number;
|
|
5214
|
-
/**
|
|
5215
|
-
*
|
|
5216
|
-
* @type {number}
|
|
5217
|
-
* @memberof SingleGeneralStats
|
|
5218
|
-
*/
|
|
5219
|
-
spamComplaintCount: number;
|
|
5220
|
-
/**
|
|
5221
|
-
*
|
|
5222
|
-
* @type {number}
|
|
5223
|
-
* @memberof SingleGeneralStats
|
|
5224
|
-
*/
|
|
5225
|
-
unsubscribedCount: number;
|
|
5226
|
-
/**
|
|
5227
|
-
*
|
|
5228
|
-
* @type {number}
|
|
5229
|
-
* @memberof SingleGeneralStats
|
|
5230
|
-
*/
|
|
5231
|
-
workFlowExitedCount: number;
|
|
5232
|
-
}
|
|
5233
|
-
|
|
5234
|
-
/**
|
|
5235
|
-
* Hey Pharamcist API
|
|
5236
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5237
|
-
*
|
|
5238
|
-
* OpenAPI spec version: 1.0
|
|
5239
|
-
*
|
|
5240
|
-
*
|
|
5241
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
5242
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
5243
|
-
* Do not edit the class manually.
|
|
5244
|
-
*/
|
|
5245
|
-
|
|
5246
|
-
/**
|
|
5247
|
-
*
|
|
5248
|
-
* @export
|
|
5249
|
-
* @interface GeneralStatsResponseDTO
|
|
3586
|
+
* @interface ForgetPassword
|
|
5250
3587
|
*/
|
|
5251
|
-
interface
|
|
3588
|
+
interface ForgetPassword {
|
|
5252
3589
|
_id?: string;
|
|
5253
3590
|
/**
|
|
5254
3591
|
*
|
|
5255
|
-
* @type {
|
|
5256
|
-
* @memberof
|
|
5257
|
-
*/
|
|
5258
|
-
count: number;
|
|
5259
|
-
/**
|
|
5260
|
-
*
|
|
5261
|
-
* @type {Array<SingleGeneralStats>}
|
|
5262
|
-
* @memberof GeneralStatsResponseDTO
|
|
5263
|
-
*/
|
|
5264
|
-
data: Array<SingleGeneralStats>;
|
|
5265
|
-
/**
|
|
5266
|
-
*
|
|
5267
|
-
* @type {number}
|
|
5268
|
-
* @memberof GeneralStatsResponseDTO
|
|
3592
|
+
* @type {string}
|
|
3593
|
+
* @memberof ForgetPassword
|
|
5269
3594
|
*/
|
|
5270
|
-
|
|
3595
|
+
email: string;
|
|
5271
3596
|
}
|
|
5272
3597
|
|
|
5273
3598
|
/**
|
|
@@ -5486,12 +3811,6 @@ interface GroupWithNoUsersDto {
|
|
|
5486
3811
|
* @memberof GroupWithNoUsersDto
|
|
5487
3812
|
*/
|
|
5488
3813
|
storeId: string;
|
|
5489
|
-
/**
|
|
5490
|
-
*
|
|
5491
|
-
* @type {number}
|
|
5492
|
-
* @memberof GroupWithNoUsersDto
|
|
5493
|
-
*/
|
|
5494
|
-
mailJetListId: number;
|
|
5495
3814
|
/**
|
|
5496
3815
|
*
|
|
5497
3816
|
* @type {number}
|
|
@@ -5778,12 +4097,6 @@ interface GroupWithUsersDto {
|
|
|
5778
4097
|
* @memberof GroupWithUsersDto
|
|
5779
4098
|
*/
|
|
5780
4099
|
storeId?: string;
|
|
5781
|
-
/**
|
|
5782
|
-
*
|
|
5783
|
-
* @type {number}
|
|
5784
|
-
* @memberof GroupWithUsersDto
|
|
5785
|
-
*/
|
|
5786
|
-
mailJetListId?: number;
|
|
5787
4100
|
/**
|
|
5788
4101
|
*
|
|
5789
4102
|
* @type {number}
|
|
@@ -5824,83 +4137,6 @@ interface ImagesUploadBody {
|
|
|
5824
4137
|
file?: Blob;
|
|
5825
4138
|
}
|
|
5826
4139
|
|
|
5827
|
-
/**
|
|
5828
|
-
* Hey Pharamcist API
|
|
5829
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5830
|
-
*
|
|
5831
|
-
* OpenAPI spec version: 1.0
|
|
5832
|
-
*
|
|
5833
|
-
*
|
|
5834
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
5835
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
5836
|
-
* Do not edit the class manually.
|
|
5837
|
-
*/
|
|
5838
|
-
/**
|
|
5839
|
-
*
|
|
5840
|
-
* @export
|
|
5841
|
-
* @interface SingleLinkStatsDto
|
|
5842
|
-
*/
|
|
5843
|
-
interface SingleLinkStatsDto {
|
|
5844
|
-
_id?: string;
|
|
5845
|
-
/**
|
|
5846
|
-
*
|
|
5847
|
-
* @type {number}
|
|
5848
|
-
* @memberof SingleLinkStatsDto
|
|
5849
|
-
*/
|
|
5850
|
-
clickedCount: number;
|
|
5851
|
-
/**
|
|
5852
|
-
*
|
|
5853
|
-
* @type {number}
|
|
5854
|
-
* @memberof SingleLinkStatsDto
|
|
5855
|
-
*/
|
|
5856
|
-
linkId: number;
|
|
5857
|
-
/**
|
|
5858
|
-
*
|
|
5859
|
-
* @type {string}
|
|
5860
|
-
* @memberof SingleLinkStatsDto
|
|
5861
|
-
*/
|
|
5862
|
-
url: string;
|
|
5863
|
-
}
|
|
5864
|
-
|
|
5865
|
-
/**
|
|
5866
|
-
* Hey Pharamcist API
|
|
5867
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5868
|
-
*
|
|
5869
|
-
* OpenAPI spec version: 1.0
|
|
5870
|
-
*
|
|
5871
|
-
*
|
|
5872
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
5873
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
5874
|
-
* Do not edit the class manually.
|
|
5875
|
-
*/
|
|
5876
|
-
|
|
5877
|
-
/**
|
|
5878
|
-
*
|
|
5879
|
-
* @export
|
|
5880
|
-
* @interface LinkStatsResponseDTO
|
|
5881
|
-
*/
|
|
5882
|
-
interface LinkStatsResponseDTO {
|
|
5883
|
-
_id?: string;
|
|
5884
|
-
/**
|
|
5885
|
-
*
|
|
5886
|
-
* @type {number}
|
|
5887
|
-
* @memberof LinkStatsResponseDTO
|
|
5888
|
-
*/
|
|
5889
|
-
count: number;
|
|
5890
|
-
/**
|
|
5891
|
-
*
|
|
5892
|
-
* @type {Array<SingleLinkStatsDto>}
|
|
5893
|
-
* @memberof LinkStatsResponseDTO
|
|
5894
|
-
*/
|
|
5895
|
-
data: Array<SingleLinkStatsDto>;
|
|
5896
|
-
/**
|
|
5897
|
-
*
|
|
5898
|
-
* @type {number}
|
|
5899
|
-
* @memberof LinkStatsResponseDTO
|
|
5900
|
-
*/
|
|
5901
|
-
total: number;
|
|
5902
|
-
}
|
|
5903
|
-
|
|
5904
4140
|
/**
|
|
5905
4141
|
* Hey Pharamcist API
|
|
5906
4142
|
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
@@ -6561,12 +4797,6 @@ interface UserWithNoId {
|
|
|
6561
4797
|
* @memberof UserWithNoId
|
|
6562
4798
|
*/
|
|
6563
4799
|
notes?: string;
|
|
6564
|
-
/**
|
|
6565
|
-
*
|
|
6566
|
-
* @type {number}
|
|
6567
|
-
* @memberof UserWithNoId
|
|
6568
|
-
*/
|
|
6569
|
-
mailJetId?: number;
|
|
6570
4800
|
/**
|
|
6571
4801
|
*
|
|
6572
4802
|
* @type {string}
|
|
@@ -6821,12 +5051,6 @@ interface Order {
|
|
|
6821
5051
|
* @memberof Order
|
|
6822
5052
|
*/
|
|
6823
5053
|
storeId: string;
|
|
6824
|
-
/**
|
|
6825
|
-
*
|
|
6826
|
-
* @type {string}
|
|
6827
|
-
* @memberof Order
|
|
6828
|
-
*/
|
|
6829
|
-
stringId: string;
|
|
6830
5054
|
/**
|
|
6831
5055
|
*
|
|
6832
5056
|
* @type {Array<OrderTimeLineDTO>}
|
|
@@ -7232,12 +5456,6 @@ interface PopulatedOrder {
|
|
|
7232
5456
|
* @memberof PopulatedOrder
|
|
7233
5457
|
*/
|
|
7234
5458
|
storeId?: string;
|
|
7235
|
-
/**
|
|
7236
|
-
*
|
|
7237
|
-
* @type {string}
|
|
7238
|
-
* @memberof PopulatedOrder
|
|
7239
|
-
*/
|
|
7240
|
-
stringId?: string;
|
|
7241
5459
|
/**
|
|
7242
5460
|
*
|
|
7243
5461
|
* @type {Array<OrderTimeLineDTO>}
|
|
@@ -8011,6 +6229,7 @@ declare enum PreferenceUpdateItemTypeEnum {
|
|
|
8011
6229
|
ORDERSHIPPED = "ORDER_SHIPPED",
|
|
8012
6230
|
ORDERDELIVERED = "ORDER_DELIVERED",
|
|
8013
6231
|
REFUNDPROCESSED = "REFUND_PROCESSED",
|
|
6232
|
+
REVIEWREPLY = "REVIEW_REPLY",
|
|
8014
6233
|
ABANDONEDCARTREMINDER = "ABANDONED_CART_REMINDER",
|
|
8015
6234
|
PRICEDROPALERT = "PRICE_DROP_ALERT",
|
|
8016
6235
|
BACKINSTOCK = "BACK_IN_STOCK",
|
|
@@ -9186,32 +7405,6 @@ interface ReviewableOrderDto {
|
|
|
9186
7405
|
pendingCount: number;
|
|
9187
7406
|
}
|
|
9188
7407
|
|
|
9189
|
-
/**
|
|
9190
|
-
* Hey Pharamcist API
|
|
9191
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
9192
|
-
*
|
|
9193
|
-
* OpenAPI spec version: 1.0
|
|
9194
|
-
*
|
|
9195
|
-
*
|
|
9196
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9197
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
9198
|
-
* Do not edit the class manually.
|
|
9199
|
-
*/
|
|
9200
|
-
/**
|
|
9201
|
-
*
|
|
9202
|
-
* @export
|
|
9203
|
-
* @interface ScheduleCampaignDraftDTO
|
|
9204
|
-
*/
|
|
9205
|
-
interface ScheduleCampaignDraftDTO {
|
|
9206
|
-
_id?: string;
|
|
9207
|
-
/**
|
|
9208
|
-
*
|
|
9209
|
-
* @type {string}
|
|
9210
|
-
* @memberof ScheduleCampaignDraftDTO
|
|
9211
|
-
*/
|
|
9212
|
-
date: string;
|
|
9213
|
-
}
|
|
9214
|
-
|
|
9215
7408
|
/**
|
|
9216
7409
|
* Hey Pharamcist API
|
|
9217
7410
|
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
@@ -9256,65 +7449,6 @@ interface ScheduleTourEmailDto {
|
|
|
9256
7449
|
message: string;
|
|
9257
7450
|
}
|
|
9258
7451
|
|
|
9259
|
-
/**
|
|
9260
|
-
* Hey Pharamcist API
|
|
9261
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
9262
|
-
*
|
|
9263
|
-
* OpenAPI spec version: 1.0
|
|
9264
|
-
*
|
|
9265
|
-
*
|
|
9266
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9267
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
9268
|
-
* Do not edit the class manually.
|
|
9269
|
-
*/
|
|
9270
|
-
/**
|
|
9271
|
-
*
|
|
9272
|
-
* @export
|
|
9273
|
-
* @interface SingleRecipientDTO
|
|
9274
|
-
*/
|
|
9275
|
-
interface SingleRecipientDTO {
|
|
9276
|
-
_id?: string;
|
|
9277
|
-
/**
|
|
9278
|
-
* The email address to which the test email will be sent.
|
|
9279
|
-
* @type {string}
|
|
9280
|
-
* @memberof SingleRecipientDTO
|
|
9281
|
-
*/
|
|
9282
|
-
email: string;
|
|
9283
|
-
/**
|
|
9284
|
-
*
|
|
9285
|
-
* @type {string}
|
|
9286
|
-
* @memberof SingleRecipientDTO
|
|
9287
|
-
*/
|
|
9288
|
-
name: string;
|
|
9289
|
-
}
|
|
9290
|
-
|
|
9291
|
-
/**
|
|
9292
|
-
* Hey Pharamcist API
|
|
9293
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
9294
|
-
*
|
|
9295
|
-
* OpenAPI spec version: 1.0
|
|
9296
|
-
*
|
|
9297
|
-
*
|
|
9298
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9299
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
9300
|
-
* Do not edit the class manually.
|
|
9301
|
-
*/
|
|
9302
|
-
|
|
9303
|
-
/**
|
|
9304
|
-
*
|
|
9305
|
-
* @export
|
|
9306
|
-
* @interface SendTestEmailDTO
|
|
9307
|
-
*/
|
|
9308
|
-
interface SendTestEmailDTO {
|
|
9309
|
-
_id?: string;
|
|
9310
|
-
/**
|
|
9311
|
-
*
|
|
9312
|
-
* @type {Array<SingleRecipientDTO>}
|
|
9313
|
-
* @memberof SendTestEmailDTO
|
|
9314
|
-
*/
|
|
9315
|
-
recipients: Array<SingleRecipientDTO>;
|
|
9316
|
-
}
|
|
9317
|
-
|
|
9318
7452
|
/**
|
|
9319
7453
|
* Hey Pharamcist API
|
|
9320
7454
|
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
@@ -11031,32 +9165,6 @@ interface UpdateBlogDto {
|
|
|
11031
9165
|
isActive?: boolean;
|
|
11032
9166
|
}
|
|
11033
9167
|
|
|
11034
|
-
/**
|
|
11035
|
-
* Hey Pharamcist API
|
|
11036
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
11037
|
-
*
|
|
11038
|
-
* OpenAPI spec version: 1.0
|
|
11039
|
-
*
|
|
11040
|
-
*
|
|
11041
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11042
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
11043
|
-
* Do not edit the class manually.
|
|
11044
|
-
*/
|
|
11045
|
-
/**
|
|
11046
|
-
*
|
|
11047
|
-
* @export
|
|
11048
|
-
* @interface UpdateCampaignDraftContentDto
|
|
11049
|
-
*/
|
|
11050
|
-
interface UpdateCampaignDraftContentDto {
|
|
11051
|
-
_id?: string;
|
|
11052
|
-
/**
|
|
11053
|
-
* The Content of the campaign draft in HTML format.
|
|
11054
|
-
* @type {string}
|
|
11055
|
-
* @memberof UpdateCampaignDraftContentDto
|
|
11056
|
-
*/
|
|
11057
|
-
htmlContent: string;
|
|
11058
|
-
}
|
|
11059
|
-
|
|
11060
9168
|
/**
|
|
11061
9169
|
* Hey Pharamcist API
|
|
11062
9170
|
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
@@ -11358,86 +9466,6 @@ declare enum UpdateManualShipmentStatusDtoStatusEnum {
|
|
|
11358
9466
|
Returned = "Returned"
|
|
11359
9467
|
}
|
|
11360
9468
|
|
|
11361
|
-
/**
|
|
11362
|
-
* Hey Pharamcist API
|
|
11363
|
-
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
11364
|
-
*
|
|
11365
|
-
* OpenAPI spec version: 1.0
|
|
11366
|
-
*
|
|
11367
|
-
*
|
|
11368
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11369
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
11370
|
-
* Do not edit the class manually.
|
|
11371
|
-
*/
|
|
11372
|
-
/**
|
|
11373
|
-
*
|
|
11374
|
-
* @export
|
|
11375
|
-
* @interface UpdateMarketingCampDraftDto
|
|
11376
|
-
*/
|
|
11377
|
-
interface UpdateMarketingCampDraftDto {
|
|
11378
|
-
_id?: string;
|
|
11379
|
-
/**
|
|
11380
|
-
* Internal title for this campaign draft.
|
|
11381
|
-
* @type {string}
|
|
11382
|
-
* @memberof UpdateMarketingCampDraftDto
|
|
11383
|
-
*/
|
|
11384
|
-
title?: string;
|
|
11385
|
-
/**
|
|
11386
|
-
* Subject line for the campaign emails.
|
|
11387
|
-
* @type {string}
|
|
11388
|
-
* @memberof UpdateMarketingCampDraftDto
|
|
11389
|
-
*/
|
|
11390
|
-
subject?: string;
|
|
11391
|
-
/**
|
|
11392
|
-
* Unique numeric ID for the contact list linked to this draft. Required for successful sending of the campaign.
|
|
11393
|
-
* @type {number}
|
|
11394
|
-
* @memberof UpdateMarketingCampDraftDto
|
|
11395
|
-
*/
|
|
11396
|
-
contactsListID?: number;
|
|
11397
|
-
/**
|
|
11398
|
-
* ID of the sender email address. Required for successful sending of the campaign.
|
|
11399
|
-
* @type {number}
|
|
11400
|
-
* @memberof UpdateMarketingCampDraftDto
|
|
11401
|
-
*/
|
|
11402
|
-
sender?: number;
|
|
11403
|
-
/**
|
|
11404
|
-
* ID of the sender email address. Required for successful sending of the campaign.
|
|
11405
|
-
* @type {string}
|
|
11406
|
-
* @memberof UpdateMarketingCampDraftDto
|
|
11407
|
-
*/
|
|
11408
|
-
senderEmail?: string;
|
|
11409
|
-
/**
|
|
11410
|
-
* The email address of the sender. Required for successful sending of the campaign
|
|
11411
|
-
* @type {string}
|
|
11412
|
-
* @memberof UpdateMarketingCampDraftDto
|
|
11413
|
-
*/
|
|
11414
|
-
senderName?: string;
|
|
11415
|
-
/**
|
|
11416
|
-
* Unique numeric ID of the template the CampaignDraft was generated from, or as which it was last saved. Changing the template ID will not update the content of the CampaignDraft.
|
|
11417
|
-
* @type {string}
|
|
11418
|
-
* @memberof UpdateMarketingCampDraftDto
|
|
11419
|
-
*/
|
|
11420
|
-
templateId?: string;
|
|
11421
|
-
/**
|
|
11422
|
-
* Edit mode for the campaign draft.
|
|
11423
|
-
* @type {string}
|
|
11424
|
-
* @memberof UpdateMarketingCampDraftDto
|
|
11425
|
-
*/
|
|
11426
|
-
editMode?: string;
|
|
11427
|
-
/**
|
|
11428
|
-
* Indicates whether the campaign draft is marked as Starred or not.
|
|
11429
|
-
* @type {boolean}
|
|
11430
|
-
* @memberof UpdateMarketingCampDraftDto
|
|
11431
|
-
*/
|
|
11432
|
-
isStarred?: boolean;
|
|
11433
|
-
/**
|
|
11434
|
-
* The email address to which replies to the campaign emails will be sent.
|
|
11435
|
-
* @type {string}
|
|
11436
|
-
* @memberof UpdateMarketingCampDraftDto
|
|
11437
|
-
*/
|
|
11438
|
-
replyEmail?: string;
|
|
11439
|
-
}
|
|
11440
|
-
|
|
11441
9469
|
/**
|
|
11442
9470
|
* Hey Pharamcist API
|
|
11443
9471
|
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
@@ -12093,12 +10121,6 @@ interface UserGroup {
|
|
|
12093
10121
|
* @memberof UserGroup
|
|
12094
10122
|
*/
|
|
12095
10123
|
storeId: string;
|
|
12096
|
-
/**
|
|
12097
|
-
*
|
|
12098
|
-
* @type {number}
|
|
12099
|
-
* @memberof UserGroup
|
|
12100
|
-
*/
|
|
12101
|
-
mailJetListId: number;
|
|
12102
10124
|
/**
|
|
12103
10125
|
*
|
|
12104
10126
|
* @type {number}
|
|
@@ -12204,12 +10226,6 @@ interface UpdateUserDto {
|
|
|
12204
10226
|
* @memberof UpdateUserDto
|
|
12205
10227
|
*/
|
|
12206
10228
|
notes?: string;
|
|
12207
|
-
/**
|
|
12208
|
-
*
|
|
12209
|
-
* @type {number}
|
|
12210
|
-
* @memberof UpdateUserDto
|
|
12211
|
-
*/
|
|
12212
|
-
mailJetId?: number;
|
|
12213
10229
|
/**
|
|
12214
10230
|
*
|
|
12215
10231
|
* @type {string}
|
|
@@ -13237,4 +11253,4 @@ declare function generateColorShades(baseColor: string): {
|
|
|
13237
11253
|
950: string;
|
|
13238
11254
|
};
|
|
13239
11255
|
|
|
13240
|
-
export { AccountReviewsTab, type
|
|
11256
|
+
export { AccountReviewsTab, type Address, AddressAddressTypeEnum, type AddressCreatedRequest, AddressCreatedRequestAddressTypeEnum, AddressesScreen, type AllowUserCreditDto, type ApiKeyInfoDto, ApiKeyInfoDtoKeyTypeEnum, type Appointment, AuthProvider, type AvailableDatesDto, type AvailableSuggestedDatesDto, Badge, type Blog, type BulkChannelToggleDto, BulkChannelToggleDtoCategoryEnum, type BulkMoveSubcategoriesDto, type BulkUnassignSubcategoriesDto, Button, type CartBodyDTO, type CartBodyPopulated, CartItem, type CartItemPopulated, CartProvider, type CartResponseDto, CartScreen, type CategoriesPaginatedResponseDTO, type Category, type CategoryFilters, type CategoryPopulated, type CategorySubCategoryPopulated, type CategorysHeadlinesResponseDTO, type ChangePasswordDto, ChangePasswordScreen, type ChangeUserEmailDto, type ChannelSettingsDto, CheckoutScreen, type CompletedOrderDto, type ContactUs, type CreateAddressDto, CreateAddressDtoAddressTypeEnum, type CreateBlogDto, type CreateCategoryDto, type CreateDiscountDto, CreateDiscountDtoStateEnum, CreateDiscountDtoTypeEnum, CreateDiscountDtoValueTypeEnum, type CreateEventDto, type CreateMessageDto, type CreateProductDto, type CreateReviewDto, type CreateShippoAccountDto, type CreateStoreAddressDto, CreateStoreAddressDtoAddressTypeEnum, type CreateStoreDto, type CreateStoreDtoSettings, type CreateSubCategoryDto, type CreateUserDto, CreateUserDtoCustomerTypeEnum, CreateUserDtoRoleEnum, type CreateUserGroupDto, type CreateVariantDto, CurrentOrdersScreen, type CustomProductDto, type DeleteFileDto, type DeleteManyFilesDto, type Discount, DiscountStateEnum, DiscountTypeEnum, DiscountValueTypeEnum, type DiscountsInsightsDto, type EcommerceConfig, EcommerceProvider, EditProfileScreen, type EmailInvoiceDto, EmptyState, type Event, type FileproccesorUploadBody, Footer, type ForgetPassword, ForgotPasswordScreen, type GenerateDaySlotsDto, type GenerateMonthSlotsDto, type GenerateWeekSlotsDto, type GroupWithNoUsersDto, type GroupWithUsersDto, Header, type ImagesUploadBody, Input, type LoginDto, LoginScreen, type ManualDiscountDto, ManualDiscountDtoValueTypeEnum, type ManualOrderDTO, ManualOrderDTOOrderStatusEnum, ManualOrderDTOPaymentMethodEnum, ManualOrderDTOPaymentStatusEnum, type ManualShippingDto, Modal, type MoveSubcategoryDto, NewAddressPage as NewAddressScreen, type NewClientEmailDto, NotificationBell, NotificationCard, NotificationCenterProvider, NotificationDrawer, NotificationSettingsScreen, type ObjectId, type Order, OrderCard, OrderCardSkeleton, OrderDetailScreen, OrderOrderTypeEnum, type OrderPaginatedResponse, OrderReviewsScreen, OrderStatus, type OrderTimeLineDTO, OrderTimeLineDTOTypeEnum, OrderTypeEnum, type OrdersInsightsDto, OrdersScreen, type PaginatedProductsDto, type Payment, PaymentPaymentMethodEnum, PaymentPaymentStatusEnum, type PaymentTimeLineDTO, PaymentTimeLineDTOTitleEnum, type PaymentsInsightsDto, type PaymentsPaginatedResponse, type PopulatedDiscount, PopulatedDiscountStateEnum, PopulatedDiscountTypeEnum, PopulatedDiscountValueTypeEnum, type PopulatedOrder, PopulatedOrderOrderTypeEnum, PopulatedOrderTypeEnum, type PreferedPickOrDeliveryTimeDto, type PreferenceUpdateItem, PreferenceUpdateItemTypeEnum, type PriceRange, type Product, ProductCard, ProductCardSkeleton, ProductDetailScreen, type ProductFilters, type ProductLightDto, ProductReviewsSection, type ProductSummary, type ProductVariant, ProductVariantInventoryStatusEnum, type ProductsInsightsDto, AccountPage as ProfileScreen, type RateDto, RatingDistribution, type RefillRequest, type RefillRequestDto, type RegisterOrLoginWithGmail, RegisterScreen, type ReorderCategoriesDto, type ReorderProductsDto, ReorderProductsDtoContainerTypeEnum, type ReorderProductsSuccessResponseDto, type ReorderSubcategoriesDto, type ReorderSuccessResponseDto, type ReserveAppointment, ResetPasswordScreen, type Review, ReviewCard, ReviewForm, ReviewPromptBanner, type ReviewStatusDto, type ReviewableOrderDto, type ReviewableProductDto, ReviewsList, type ScheduleTourEmailDto, SearchPage as SearchResultsScreen, type Shipment, type ShipmentDetailsDto, ShipmentDetailsDtoStatusEnum, type ShipmentStatusDto, type ShipmentWithOrder, type ShippingInfo, ShippingInfoStatusEnum, type ShippoAccountResponseDto, ShopScreen, type SingleProductMedia, SingleProductMediaTypeEnum, Skeleton, StarRating, type Store, type StoreApiKeysResponseDto, type StoreCapabilitiesDto, type StoreEntity, type SubCategory, type SubCategoryHeadlinesOnlyResponseDTO, type SuggestedSlot, type TAdminSessionData, type TUserSessionData, ThemeProvider, type TrackDto, type TrackingStatus, type TrackingStatusLocationBase, type TrackingStatusSubstatus, type TransferePatientRequest, type TransferePatientsRequestDto, type UpdateAddressDto, UpdateAddressDtoAddressTypeEnum, type UpdateApiKeysDto, type UpdateBlogDto, type UpdateCategoryDto, type UpdateDiscountDto, UpdateDiscountDtoStateEnum, UpdateDiscountDtoTypeEnum, UpdateDiscountDtoValueTypeEnum, type UpdateEventDto, type UpdateItemsOrderDto, type UpdateManualShipmentStatusDto, UpdateManualShipmentStatusDtoStatusEnum, type UpdateMessageDto, type UpdateNotificationSettingsDto, type UpdateProductDto, type UpdateRefillRequestDto, type UpdateReviewDto, type UpdateStoreDto, type UpdateSubCategoryDto, type UpdateTransferePatientsRequestDto, type UpdateUserDto, UpdateUserDtoCustomerTypeEnum, UpdateUserDtoRoleEnum, type UpdateUserGroupDto, type UpdateVariantDto, type UploadPdfBody, type UsedBy, type UserEntity, UserEntityCustomerTypeEnum, UserEntityRoleEnum, type UserGroup, type UserInsightsDto, type UserWithNoId, UserWithNoIdCustomerTypeEnum, UserWithNoIdRoleEnum, type UsersPaginatedResponse, type VariantIdInventoryBody, type VariantLightDto, type VerifyEmailDTO, type Wishlist, WishlistProvider, WishlistScreen, formatDate, formatPrice, generateColorShades, getApiConfiguration, getInitials, hexToRgb, initializeApiAdapter, truncate, useAddresses, useAuth, useBasePath, useCart, useCategories, useCreateReview, useCurrentOrders, useDeleteReview, useNotificationCenter, useOrder, useOrders, useProduct, useProductReviews, useProducts, useReviewStats, useReviewsByRating, useStoreCapabilities, useTheme, useUpdateReview, useUserReviews, useWishlist };
|