hey-pharmacist-ecommerce 1.0.0
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 +269 -0
- package/dist/index.d.mts +564 -0
- package/dist/index.d.ts +564 -0
- package/dist/index.js +7541 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +7485 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +70 -0
- package/src/components/CartItem.tsx +103 -0
- package/src/components/EmptyState.tsx +27 -0
- package/src/components/Footer.tsx +147 -0
- package/src/components/Header.tsx +151 -0
- package/src/components/OrderCard.tsx +98 -0
- package/src/components/ProductCard.tsx +122 -0
- package/src/components/ui/Badge.tsx +31 -0
- package/src/components/ui/Button.tsx +61 -0
- package/src/components/ui/Input.tsx +45 -0
- package/src/components/ui/Modal.tsx +79 -0
- package/src/components/ui/Skeleton.tsx +46 -0
- package/src/hooks/useOrders.ts +98 -0
- package/src/hooks/useProducts.ts +125 -0
- package/src/index.ts +71 -0
- package/src/lib/Apis/api.ts +46 -0
- package/src/lib/Apis/apis/addresses-api.ts +1461 -0
- package/src/lib/Apis/apis/auth-api.ts +945 -0
- package/src/lib/Apis/apis/blogs-api.ts +582 -0
- package/src/lib/Apis/apis/cart-api.ts +456 -0
- package/src/lib/Apis/apis/categories-api.ts +725 -0
- package/src/lib/Apis/apis/chats-api.ts +1101 -0
- package/src/lib/Apis/apis/contact-us-api.ts +394 -0
- package/src/lib/Apis/apis/discounts-api.ts +763 -0
- package/src/lib/Apis/apis/drafts-api.ts +448 -0
- package/src/lib/Apis/apis/events-api.ts +1311 -0
- package/src/lib/Apis/apis/file-proccesor-api.ts +293 -0
- package/src/lib/Apis/apis/health-api.ts +119 -0
- package/src/lib/Apis/apis/images-api.ts +271 -0
- package/src/lib/Apis/apis/inventory-api.ts +375 -0
- package/src/lib/Apis/apis/marketing-api.ts +3099 -0
- package/src/lib/Apis/apis/notifications-api.ts +843 -0
- package/src/lib/Apis/apis/open-aiapi.ts +513 -0
- package/src/lib/Apis/apis/orders-api.ts +1343 -0
- package/src/lib/Apis/apis/payment-methods-api.ts +411 -0
- package/src/lib/Apis/apis/payments-api.ts +469 -0
- package/src/lib/Apis/apis/product-attributes-api.ts +538 -0
- package/src/lib/Apis/apis/product-favorite-list-api.ts +321 -0
- package/src/lib/Apis/apis/product-variants-api.ts +648 -0
- package/src/lib/Apis/apis/products-api.ts +1442 -0
- package/src/lib/Apis/apis/review-api.ts +1383 -0
- package/src/lib/Apis/apis/roles-api.ts +614 -0
- package/src/lib/Apis/apis/shipping-api.ts +703 -0
- package/src/lib/Apis/apis/statistics-api.ts +234 -0
- package/src/lib/Apis/apis/stores-api.ts +1519 -0
- package/src/lib/Apis/apis/sub-categories-api.ts +1208 -0
- package/src/lib/Apis/apis/user-groups-api.ts +1198 -0
- package/src/lib/Apis/apis/users-api.ts +1403 -0
- package/src/lib/Apis/apis/web-hooks-api.ts +198 -0
- package/src/lib/Apis/base.ts +70 -0
- package/src/lib/Apis/configuration.ts +75 -0
- package/src/lib/Apis/index.ts +17 -0
- package/src/lib/Apis/models/add-contact-to-list-dto.ts +33 -0
- package/src/lib/Apis/models/add-message-dto.ts +56 -0
- package/src/lib/Apis/models/address-created-request.ts +134 -0
- package/src/lib/Apis/models/address.ts +164 -0
- package/src/lib/Apis/models/allow-user-credit-dto.ts +27 -0
- package/src/lib/Apis/models/appointment.ts +75 -0
- package/src/lib/Apis/models/available-dates-dto.ts +33 -0
- package/src/lib/Apis/models/available-suggested-dates-dto.ts +33 -0
- package/src/lib/Apis/models/blog.ts +75 -0
- package/src/lib/Apis/models/browser-stats-response-dto.ts +40 -0
- package/src/lib/Apis/models/bulk-move-subcategories-dto.ts +33 -0
- package/src/lib/Apis/models/bulk-unassign-subcategories-dto.ts +27 -0
- package/src/lib/Apis/models/campaign-content-response-dto.ts +40 -0
- package/src/lib/Apis/models/campaign-draft-dto.ts +175 -0
- package/src/lib/Apis/models/campaign-draft-response-dto.ts +40 -0
- package/src/lib/Apis/models/campaign-draft-schedule-dto.ts +49 -0
- package/src/lib/Apis/models/campaign-draft-schedule-response-dto.ts +40 -0
- package/src/lib/Apis/models/campaign-draft-sending-dto.ts +43 -0
- package/src/lib/Apis/models/campaign-draft-sending-response-dto.ts +40 -0
- package/src/lib/Apis/models/cart-body-dto.ts +40 -0
- package/src/lib/Apis/models/cart-body-populated.ts +47 -0
- package/src/lib/Apis/models/cart-item-populated.ts +41 -0
- package/src/lib/Apis/models/cart-item.ts +33 -0
- package/src/lib/Apis/models/cart-response-dto.ts +70 -0
- package/src/lib/Apis/models/categories-paginated-response-dto.ts +52 -0
- package/src/lib/Apis/models/category-filters.ts +40 -0
- package/src/lib/Apis/models/category-populated.ts +106 -0
- package/src/lib/Apis/models/category-sub-category-populated.ts +51 -0
- package/src/lib/Apis/models/category.ts +99 -0
- package/src/lib/Apis/models/categorys-headlines-response-dto.ts +40 -0
- package/src/lib/Apis/models/change-user-email-dto.ts +27 -0
- package/src/lib/Apis/models/chat.ts +33 -0
- package/src/lib/Apis/models/check-notifications-response-dto.ts +33 -0
- package/src/lib/Apis/models/contact-aggregated-stats-response-dto.ts +40 -0
- package/src/lib/Apis/models/contact-full-dto.ts +93 -0
- package/src/lib/Apis/models/contact-full-response-dto.ts +40 -0
- package/src/lib/Apis/models/contact-list-stats-response-dto.ts +40 -0
- package/src/lib/Apis/models/contact-lists-response-dto.ts +40 -0
- package/src/lib/Apis/models/contact-us.ts +81 -0
- package/src/lib/Apis/models/country-stats-response-dto.ts +40 -0
- package/src/lib/Apis/models/create-address-dto.ts +134 -0
- package/src/lib/Apis/models/create-blog-dto.ts +45 -0
- package/src/lib/Apis/models/create-category-dto.ts +45 -0
- package/src/lib/Apis/models/create-chat-dto.ts +39 -0
- package/src/lib/Apis/models/create-contact-dto.ts +39 -0
- package/src/lib/Apis/models/create-contact-list-dto.ts +27 -0
- package/src/lib/Apis/models/create-discount-dto.ts +208 -0
- package/src/lib/Apis/models/create-draft-dto.ts +67 -0
- package/src/lib/Apis/models/create-email-template-dto.ts +51 -0
- package/src/lib/Apis/models/create-event-dto.ts +52 -0
- package/src/lib/Apis/models/create-marketing-campaign-dto.ts +81 -0
- package/src/lib/Apis/models/create-message-dto.ts +57 -0
- package/src/lib/Apis/models/create-notification-dto.ts +75 -0
- package/src/lib/Apis/models/create-product-attribute-dto.ts +33 -0
- package/src/lib/Apis/models/create-product-dto.ts +94 -0
- package/src/lib/Apis/models/create-review-dto.ts +63 -0
- package/src/lib/Apis/models/create-role-dto.ts +57 -0
- package/src/lib/Apis/models/create-single-variant-product-dto.ts +155 -0
- package/src/lib/Apis/models/create-store-address-dto.ts +134 -0
- package/src/lib/Apis/models/create-store-dto.ts +105 -0
- package/src/lib/Apis/models/create-sub-category-dto.ts +45 -0
- package/src/lib/Apis/models/create-user-dto.ts +89 -0
- package/src/lib/Apis/models/create-user-group-dto.ts +39 -0
- package/src/lib/Apis/models/create-variant-dto.ts +119 -0
- package/src/lib/Apis/models/create-zone-dto.ts +82 -0
- package/src/lib/Apis/models/custom-product-dto.ts +63 -0
- package/src/lib/Apis/models/default-payment-method-request-dto.ts +27 -0
- package/src/lib/Apis/models/delete-file-dto.ts +27 -0
- package/src/lib/Apis/models/delete-many-files-dto.ts +27 -0
- package/src/lib/Apis/models/discount-paginated-response.ts +52 -0
- package/src/lib/Apis/models/discount.ts +245 -0
- package/src/lib/Apis/models/discounts-insights-dto.ts +57 -0
- package/src/lib/Apis/models/draft.ts +79 -0
- package/src/lib/Apis/models/email-invoice-dto.ts +45 -0
- package/src/lib/Apis/models/email-template-response-dto.ts +117 -0
- package/src/lib/Apis/models/event.ts +76 -0
- package/src/lib/Apis/models/extended-product-dto.ts +204 -0
- package/src/lib/Apis/models/fileproccesor-upload-body.ts +27 -0
- package/src/lib/Apis/models/forget-password.ts +27 -0
- package/src/lib/Apis/models/frequently-bought-product-dto.ts +71 -0
- package/src/lib/Apis/models/general-stats-response-dto.ts +40 -0
- package/src/lib/Apis/models/generate-day-slots-dto.ts +51 -0
- package/src/lib/Apis/models/generate-month-slots-dto.ts +57 -0
- package/src/lib/Apis/models/generate-week-slots-dto.ts +57 -0
- package/src/lib/Apis/models/google-analytics-request-dto.ts +55 -0
- package/src/lib/Apis/models/google-analytics-response-dto.ts +39 -0
- package/src/lib/Apis/models/group-with-no-users-dto.ts +75 -0
- package/src/lib/Apis/models/group-with-users-dto.ts +76 -0
- package/src/lib/Apis/models/images-upload-body.ts +27 -0
- package/src/lib/Apis/models/index.ts +197 -0
- package/src/lib/Apis/models/inventory-paginated-response.ts +75 -0
- package/src/lib/Apis/models/link-stats-response-dto.ts +40 -0
- package/src/lib/Apis/models/login-dto.ts +33 -0
- package/src/lib/Apis/models/manual-discount.ts +49 -0
- package/src/lib/Apis/models/manual-order-dto.ts +133 -0
- package/src/lib/Apis/models/manual-shipping-dto.ts +45 -0
- package/src/lib/Apis/models/marketing-campaign-content-dto.ts +27 -0
- package/src/lib/Apis/models/marketing-list-contact-dto.ts +51 -0
- package/src/lib/Apis/models/move-subcategory-dto.ts +27 -0
- package/src/lib/Apis/models/my-favorite-list-dto.ts +52 -0
- package/src/lib/Apis/models/notification.ts +93 -0
- package/src/lib/Apis/models/object-id.ts +21 -0
- package/src/lib/Apis/models/open-api.ts +33 -0
- package/src/lib/Apis/models/order-paginated-response.ts +52 -0
- package/src/lib/Apis/models/order.ts +214 -0
- package/src/lib/Apis/models/orders-insights-dto.ts +69 -0
- package/src/lib/Apis/models/paginated-products-dto.ts +52 -0
- package/src/lib/Apis/models/payment-method-data.ts +34 -0
- package/src/lib/Apis/models/payment-method.ts +51 -0
- package/src/lib/Apis/models/payment-time-line-dto.ts +56 -0
- package/src/lib/Apis/models/payment.ts +182 -0
- package/src/lib/Apis/models/payments-insights-dto.ts +69 -0
- package/src/lib/Apis/models/payments-paginated-response.ts +52 -0
- package/src/lib/Apis/models/pick-type-class.ts +51 -0
- package/src/lib/Apis/models/populated-chat-dto.ts +95 -0
- package/src/lib/Apis/models/populated-discount.ts +246 -0
- package/src/lib/Apis/models/populated-order.ts +209 -0
- package/src/lib/Apis/models/prefered-pick-or-delivery-time-dto.ts +33 -0
- package/src/lib/Apis/models/price-range.ts +33 -0
- package/src/lib/Apis/models/product-attribute.ts +57 -0
- package/src/lib/Apis/models/product-variant.ts +167 -0
- package/src/lib/Apis/models/product.ts +136 -0
- package/src/lib/Apis/models/products-insights-dto.ts +45 -0
- package/src/lib/Apis/models/rate-dto.ts +123 -0
- package/src/lib/Apis/models/refill-request-dto.ts +75 -0
- package/src/lib/Apis/models/refill-request.ts +105 -0
- package/src/lib/Apis/models/register-or-login-with-gmail.ts +27 -0
- package/src/lib/Apis/models/reserve-appointment.ts +261 -0
- package/src/lib/Apis/models/review.ts +93 -0
- package/src/lib/Apis/models/role.ts +69 -0
- package/src/lib/Apis/models/schedule-campaign-draft-dto.ts +27 -0
- package/src/lib/Apis/models/send-test-email-dto.ts +28 -0
- package/src/lib/Apis/models/shallow-parent-category-dto.ts +33 -0
- package/src/lib/Apis/models/shipment-details-dto.ts +88 -0
- package/src/lib/Apis/models/shipment-status-dto.ts +117 -0
- package/src/lib/Apis/models/shipment-with-order.ts +105 -0
- package/src/lib/Apis/models/shipment.ts +104 -0
- package/src/lib/Apis/models/shipping-info.ts +88 -0
- package/src/lib/Apis/models/single-browser-stats-dto.ts +45 -0
- package/src/lib/Apis/models/single-contact-aggregated-stats-dto.ts +129 -0
- package/src/lib/Apis/models/single-contact-list-stats-dto.ts +117 -0
- package/src/lib/Apis/models/single-country-stats-dto.ts +39 -0
- package/src/lib/Apis/models/single-general-stats.ts +153 -0
- package/src/lib/Apis/models/single-link-stats-dto.ts +39 -0
- package/src/lib/Apis/models/single-message-populated.ts +59 -0
- package/src/lib/Apis/models/single-notification-dto.ts +99 -0
- package/src/lib/Apis/models/single-product-media.ts +74 -0
- package/src/lib/Apis/models/single-recipient-dto.ts +33 -0
- package/src/lib/Apis/models/single-suggest-attribute.ts +33 -0
- package/src/lib/Apis/models/statistic-dto.ts +171 -0
- package/src/lib/Apis/models/store-entity.ts +117 -0
- package/src/lib/Apis/models/store.ts +135 -0
- package/src/lib/Apis/models/sub-category-headlines-only-response-dto.ts +39 -0
- package/src/lib/Apis/models/sub-category.ts +93 -0
- package/src/lib/Apis/models/suggest-attributes.ts +28 -0
- package/src/lib/Apis/models/suggested-slot.ts +33 -0
- package/src/lib/Apis/models/table-cell-dto.ts +33 -0
- package/src/lib/Apis/models/table-dto.ts +34 -0
- package/src/lib/Apis/models/tadmin-session-data.ts +47 -0
- package/src/lib/Apis/models/track-dto.ts +94 -0
- package/src/lib/Apis/models/tracking-status-location-base.ts +45 -0
- package/src/lib/Apis/models/tracking-status-substatus.ts +39 -0
- package/src/lib/Apis/models/tracking-status.ts +71 -0
- package/src/lib/Apis/models/transfere-patient-request.ts +123 -0
- package/src/lib/Apis/models/transfere-patients-request-dto.ts +99 -0
- package/src/lib/Apis/models/tuser-session-data.ts +34 -0
- package/src/lib/Apis/models/update-address-dto.ts +134 -0
- package/src/lib/Apis/models/update-blog-dto.ts +45 -0
- package/src/lib/Apis/models/update-campaign-draft-content-dto.ts +27 -0
- package/src/lib/Apis/models/update-category-dto.ts +45 -0
- package/src/lib/Apis/models/update-discount-dto.ts +208 -0
- package/src/lib/Apis/models/update-event-dto.ts +52 -0
- package/src/lib/Apis/models/update-items-order-dto.ts +27 -0
- package/src/lib/Apis/models/update-marketing-camp-draft-dto.ts +81 -0
- package/src/lib/Apis/models/update-message-dto.ts +57 -0
- package/src/lib/Apis/models/update-product-attribute-dto.ts +33 -0
- package/src/lib/Apis/models/update-product-dto.ts +96 -0
- package/src/lib/Apis/models/update-product-variant-dto.ts +119 -0
- package/src/lib/Apis/models/update-refill-request-dto.ts +75 -0
- package/src/lib/Apis/models/update-review-dto.ts +63 -0
- package/src/lib/Apis/models/update-role-dto.ts +57 -0
- package/src/lib/Apis/models/update-store-dto.ts +105 -0
- package/src/lib/Apis/models/update-sub-category-dto.ts +45 -0
- package/src/lib/Apis/models/update-transfere-patients-request-dto.ts +99 -0
- package/src/lib/Apis/models/update-user-dto.ts +239 -0
- package/src/lib/Apis/models/update-user-group-dto.ts +39 -0
- package/src/lib/Apis/models/update-zone-dto.ts +82 -0
- package/src/lib/Apis/models/upload-pdf-body.ts +27 -0
- package/src/lib/Apis/models/used-by.ts +87 -0
- package/src/lib/Apis/models/user-entity.ts +220 -0
- package/src/lib/Apis/models/user-group.ts +75 -0
- package/src/lib/Apis/models/user-insights-dto.ts +39 -0
- package/src/lib/Apis/models/user-with-no-id.ts +226 -0
- package/src/lib/Apis/models/user.ts +232 -0
- package/src/lib/Apis/models/users-paginated-response.ts +52 -0
- package/src/lib/Apis/models/verify-email-dto.ts +33 -0
- package/src/lib/Apis/models/zone-single-size.ts +51 -0
- package/src/lib/Apis/models/zone.ts +106 -0
- package/src/lib/Apis/wrapper.ts +37 -0
- package/src/lib/api/auth.ts +81 -0
- package/src/lib/api/cart.ts +42 -0
- package/src/lib/api/client.ts +118 -0
- package/src/lib/api/orders.ts +53 -0
- package/src/lib/api/products.ts +51 -0
- package/src/lib/api-adapter/auth-adapter.ts +196 -0
- package/src/lib/api-adapter/cart-adapter.ts +193 -0
- package/src/lib/api-adapter/config.ts +76 -0
- package/src/lib/api-adapter/index.ts +13 -0
- package/src/lib/api-adapter/mappers.ts +147 -0
- package/src/lib/api-adapter/orders-adapter.ts +195 -0
- package/src/lib/api-adapter/products-adapter.ts +194 -0
- package/src/lib/types/index.ts +152 -0
- package/src/lib/utils/colors.ts +51 -0
- package/src/lib/utils/format.ts +48 -0
- package/src/providers/AuthProvider.tsx +117 -0
- package/src/providers/CartProvider.tsx +131 -0
- package/src/providers/EcommerceProvider.tsx +34 -0
- package/src/providers/ThemeProvider.tsx +57 -0
- package/src/screens/CartScreen.tsx +140 -0
- package/src/screens/CheckoutScreen.tsx +340 -0
- package/src/screens/CurrentOrdersScreen.tsx +85 -0
- package/src/screens/LoginScreen.tsx +149 -0
- package/src/screens/OrdersScreen.tsx +86 -0
- package/src/screens/ProductDetailScreen.tsx +255 -0
- package/src/screens/ProfileScreen.tsx +211 -0
- package/src/screens/RegisterScreen.tsx +200 -0
- package/src/screens/ShopScreen.tsx +233 -0
- package/src/styles/globals.css +51 -0
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Hey Pharamcist API
|
|
5
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
6
|
+
*
|
|
7
|
+
* OpenAPI spec version: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface GenerateWeekSlotsDto
|
|
18
|
+
*/
|
|
19
|
+
export interface GenerateWeekSlotsDto {
|
|
20
|
+
_id?: string;
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
* @type {string}
|
|
24
|
+
* @memberof GenerateWeekSlotsDto
|
|
25
|
+
*/
|
|
26
|
+
startTime: string;
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
* @type {string}
|
|
30
|
+
* @memberof GenerateWeekSlotsDto
|
|
31
|
+
*/
|
|
32
|
+
endTime: string;
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @type {number}
|
|
36
|
+
* @memberof GenerateWeekSlotsDto
|
|
37
|
+
*/
|
|
38
|
+
duration: number;
|
|
39
|
+
/**
|
|
40
|
+
*
|
|
41
|
+
* @type {number}
|
|
42
|
+
* @memberof GenerateWeekSlotsDto
|
|
43
|
+
*/
|
|
44
|
+
buffer: number;
|
|
45
|
+
/**
|
|
46
|
+
*
|
|
47
|
+
* @type {string}
|
|
48
|
+
* @memberof GenerateWeekSlotsDto
|
|
49
|
+
*/
|
|
50
|
+
date: string;
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @type {string}
|
|
54
|
+
* @memberof GenerateWeekSlotsDto
|
|
55
|
+
*/
|
|
56
|
+
weekStartDate: string;
|
|
57
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Hey Pharamcist API
|
|
5
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
6
|
+
*
|
|
7
|
+
* OpenAPI spec version: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface GoogleAnalyticsRequestDto
|
|
18
|
+
*/
|
|
19
|
+
export interface GoogleAnalyticsRequestDto {
|
|
20
|
+
_id?: string;
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
* @type {string}
|
|
24
|
+
* @memberof GoogleAnalyticsRequestDto
|
|
25
|
+
*/
|
|
26
|
+
startDate: string;
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
* @type {string}
|
|
30
|
+
* @memberof GoogleAnalyticsRequestDto
|
|
31
|
+
*/
|
|
32
|
+
endDate: string;
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof GoogleAnalyticsRequestDto
|
|
37
|
+
*/
|
|
38
|
+
dimension: GoogleAnalyticsRequestDtoDimensionEnum;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* @export
|
|
43
|
+
* @enum {string}
|
|
44
|
+
*/
|
|
45
|
+
export enum GoogleAnalyticsRequestDtoDimensionEnum {
|
|
46
|
+
City = 'city',
|
|
47
|
+
Country = 'country',
|
|
48
|
+
DeviceCategory = 'deviceCategory',
|
|
49
|
+
Browser = 'browser',
|
|
50
|
+
PagePath = 'pagePath',
|
|
51
|
+
Source = 'source',
|
|
52
|
+
Medium = 'medium',
|
|
53
|
+
UserType = 'userType'
|
|
54
|
+
}
|
|
55
|
+
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Hey Pharamcist API
|
|
5
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
6
|
+
*
|
|
7
|
+
* OpenAPI spec version: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface GoogleAnalyticsResponseDto
|
|
18
|
+
*/
|
|
19
|
+
export interface GoogleAnalyticsResponseDto {
|
|
20
|
+
_id?: string;
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
* @type {number}
|
|
24
|
+
* @memberof GoogleAnalyticsResponseDto
|
|
25
|
+
*/
|
|
26
|
+
activeUsers: number;
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
* @type {number}
|
|
30
|
+
* @memberof GoogleAnalyticsResponseDto
|
|
31
|
+
*/
|
|
32
|
+
totalUsers: number;
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @type {number}
|
|
36
|
+
* @memberof GoogleAnalyticsResponseDto
|
|
37
|
+
*/
|
|
38
|
+
transactions: number;
|
|
39
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Hey Pharamcist API
|
|
5
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
6
|
+
*
|
|
7
|
+
* OpenAPI spec version: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface GroupWithNoUsersDto
|
|
18
|
+
*/
|
|
19
|
+
export interface GroupWithNoUsersDto {
|
|
20
|
+
_id?: string;
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
* @type {Date}
|
|
24
|
+
* @memberof GroupWithNoUsersDto
|
|
25
|
+
*/
|
|
26
|
+
createdAt: Date;
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
* @type {Date}
|
|
30
|
+
* @memberof GroupWithNoUsersDto
|
|
31
|
+
*/
|
|
32
|
+
updatedAt: Date;
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof GroupWithNoUsersDto
|
|
37
|
+
*/
|
|
38
|
+
id: string;
|
|
39
|
+
/**
|
|
40
|
+
* Name of the user group
|
|
41
|
+
* @type {string}
|
|
42
|
+
* @memberof GroupWithNoUsersDto
|
|
43
|
+
*/
|
|
44
|
+
name: string;
|
|
45
|
+
/**
|
|
46
|
+
*
|
|
47
|
+
* @type {string}
|
|
48
|
+
* @memberof GroupWithNoUsersDto
|
|
49
|
+
*/
|
|
50
|
+
description: string;
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @type {string}
|
|
54
|
+
* @memberof GroupWithNoUsersDto
|
|
55
|
+
*/
|
|
56
|
+
storeId: string;
|
|
57
|
+
/**
|
|
58
|
+
*
|
|
59
|
+
* @type {number}
|
|
60
|
+
* @memberof GroupWithNoUsersDto
|
|
61
|
+
*/
|
|
62
|
+
mailJetListId: number;
|
|
63
|
+
/**
|
|
64
|
+
*
|
|
65
|
+
* @type {number}
|
|
66
|
+
* @memberof GroupWithNoUsersDto
|
|
67
|
+
*/
|
|
68
|
+
percentageOfUsers: number;
|
|
69
|
+
/**
|
|
70
|
+
*
|
|
71
|
+
* @type {number}
|
|
72
|
+
* @memberof GroupWithNoUsersDto
|
|
73
|
+
*/
|
|
74
|
+
usersCount: number;
|
|
75
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Hey Pharamcist API
|
|
5
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
6
|
+
*
|
|
7
|
+
* OpenAPI spec version: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
import { UserEntity } from './user-entity';
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @export
|
|
18
|
+
* @interface GroupWithUsersDto
|
|
19
|
+
*/
|
|
20
|
+
export interface GroupWithUsersDto {
|
|
21
|
+
_id?: string;
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {Date}
|
|
25
|
+
* @memberof GroupWithUsersDto
|
|
26
|
+
*/
|
|
27
|
+
createdAt?: Date;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {Date}
|
|
31
|
+
* @memberof GroupWithUsersDto
|
|
32
|
+
*/
|
|
33
|
+
updatedAt?: Date;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof GroupWithUsersDto
|
|
38
|
+
*/
|
|
39
|
+
id?: string;
|
|
40
|
+
/**
|
|
41
|
+
* Name of the user group
|
|
42
|
+
* @type {string}
|
|
43
|
+
* @memberof GroupWithUsersDto
|
|
44
|
+
*/
|
|
45
|
+
name?: string;
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
* @type {string}
|
|
49
|
+
* @memberof GroupWithUsersDto
|
|
50
|
+
*/
|
|
51
|
+
description?: string;
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
* @type {string}
|
|
55
|
+
* @memberof GroupWithUsersDto
|
|
56
|
+
*/
|
|
57
|
+
storeId?: string;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @type {number}
|
|
61
|
+
* @memberof GroupWithUsersDto
|
|
62
|
+
*/
|
|
63
|
+
mailJetListId?: number;
|
|
64
|
+
/**
|
|
65
|
+
*
|
|
66
|
+
* @type {number}
|
|
67
|
+
* @memberof GroupWithUsersDto
|
|
68
|
+
*/
|
|
69
|
+
percentageOfUsers?: number;
|
|
70
|
+
/**
|
|
71
|
+
*
|
|
72
|
+
* @type {Array<UserEntity>}
|
|
73
|
+
* @memberof GroupWithUsersDto
|
|
74
|
+
*/
|
|
75
|
+
users: Array<UserEntity>;
|
|
76
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Hey Pharamcist API
|
|
5
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
6
|
+
*
|
|
7
|
+
* OpenAPI spec version: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface ImagesUploadBody
|
|
18
|
+
*/
|
|
19
|
+
export interface ImagesUploadBody {
|
|
20
|
+
_id?: string;
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
* @type {Blob}
|
|
24
|
+
* @memberof ImagesUploadBody
|
|
25
|
+
*/
|
|
26
|
+
file?: Blob;
|
|
27
|
+
}
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
export * from './add-contact-to-list-dto';
|
|
2
|
+
export * from './add-message-dto';
|
|
3
|
+
export * from './address';
|
|
4
|
+
export * from './address-created-request';
|
|
5
|
+
export * from './allow-user-credit-dto';
|
|
6
|
+
export * from './appointment';
|
|
7
|
+
export * from './available-dates-dto';
|
|
8
|
+
export * from './available-suggested-dates-dto';
|
|
9
|
+
export * from './blog';
|
|
10
|
+
export * from './browser-stats-response-dto';
|
|
11
|
+
export * from './bulk-move-subcategories-dto';
|
|
12
|
+
export * from './bulk-unassign-subcategories-dto';
|
|
13
|
+
export * from './campaign-content-response-dto';
|
|
14
|
+
export * from './campaign-draft-dto';
|
|
15
|
+
export * from './campaign-draft-response-dto';
|
|
16
|
+
export * from './campaign-draft-schedule-dto';
|
|
17
|
+
export * from './campaign-draft-schedule-response-dto';
|
|
18
|
+
export * from './campaign-draft-sending-dto';
|
|
19
|
+
export * from './campaign-draft-sending-response-dto';
|
|
20
|
+
export * from './cart-body-dto';
|
|
21
|
+
export * from './cart-body-populated';
|
|
22
|
+
export * from './cart-item';
|
|
23
|
+
export * from './cart-item-populated';
|
|
24
|
+
export * from './cart-response-dto';
|
|
25
|
+
export * from './categories-paginated-response-dto';
|
|
26
|
+
export * from './category';
|
|
27
|
+
export * from './category-filters';
|
|
28
|
+
export * from './category-populated';
|
|
29
|
+
export * from './category-sub-category-populated';
|
|
30
|
+
export * from './categorys-headlines-response-dto';
|
|
31
|
+
export * from './change-user-email-dto';
|
|
32
|
+
export * from './chat';
|
|
33
|
+
export * from './check-notifications-response-dto';
|
|
34
|
+
export * from './contact-aggregated-stats-response-dto';
|
|
35
|
+
export * from './contact-full-dto';
|
|
36
|
+
export * from './contact-full-response-dto';
|
|
37
|
+
export * from './contact-list-stats-response-dto';
|
|
38
|
+
export * from './contact-lists-response-dto';
|
|
39
|
+
export * from './contact-us';
|
|
40
|
+
export * from './country-stats-response-dto';
|
|
41
|
+
export * from './create-address-dto';
|
|
42
|
+
export * from './create-blog-dto';
|
|
43
|
+
export * from './create-category-dto';
|
|
44
|
+
export * from './create-chat-dto';
|
|
45
|
+
export * from './create-contact-dto';
|
|
46
|
+
export * from './create-contact-list-dto';
|
|
47
|
+
export * from './create-discount-dto';
|
|
48
|
+
export * from './create-draft-dto';
|
|
49
|
+
export * from './create-email-template-dto';
|
|
50
|
+
export * from './create-event-dto';
|
|
51
|
+
export * from './create-marketing-campaign-dto';
|
|
52
|
+
export * from './create-message-dto';
|
|
53
|
+
export * from './create-notification-dto';
|
|
54
|
+
export * from './create-product-attribute-dto';
|
|
55
|
+
export * from './create-product-dto';
|
|
56
|
+
export * from './create-review-dto';
|
|
57
|
+
export * from './create-role-dto';
|
|
58
|
+
export * from './create-single-variant-product-dto';
|
|
59
|
+
export * from './create-store-address-dto';
|
|
60
|
+
export * from './create-store-dto';
|
|
61
|
+
export * from './create-sub-category-dto';
|
|
62
|
+
export * from './create-user-dto';
|
|
63
|
+
export * from './create-user-group-dto';
|
|
64
|
+
export * from './create-variant-dto';
|
|
65
|
+
export * from './create-zone-dto';
|
|
66
|
+
export * from './custom-product-dto';
|
|
67
|
+
export * from './default-payment-method-request-dto';
|
|
68
|
+
export * from './delete-file-dto';
|
|
69
|
+
export * from './delete-many-files-dto';
|
|
70
|
+
export * from './discount';
|
|
71
|
+
export * from './discount-paginated-response';
|
|
72
|
+
export * from './discounts-insights-dto';
|
|
73
|
+
export * from './draft';
|
|
74
|
+
export * from './email-invoice-dto';
|
|
75
|
+
export * from './email-template-response-dto';
|
|
76
|
+
export * from './event';
|
|
77
|
+
export * from './extended-product-dto';
|
|
78
|
+
export * from './fileproccesor-upload-body';
|
|
79
|
+
export * from './forget-password';
|
|
80
|
+
export * from './frequently-bought-product-dto';
|
|
81
|
+
export * from './general-stats-response-dto';
|
|
82
|
+
export * from './generate-day-slots-dto';
|
|
83
|
+
export * from './generate-month-slots-dto';
|
|
84
|
+
export * from './generate-week-slots-dto';
|
|
85
|
+
export * from './google-analytics-request-dto';
|
|
86
|
+
export * from './google-analytics-response-dto';
|
|
87
|
+
export * from './group-with-no-users-dto';
|
|
88
|
+
export * from './group-with-users-dto';
|
|
89
|
+
export * from './images-upload-body';
|
|
90
|
+
export * from './inventory-paginated-response';
|
|
91
|
+
export * from './link-stats-response-dto';
|
|
92
|
+
export * from './login-dto';
|
|
93
|
+
export * from './manual-discount';
|
|
94
|
+
export * from './manual-order-dto';
|
|
95
|
+
export * from './manual-shipping-dto';
|
|
96
|
+
export * from './marketing-campaign-content-dto';
|
|
97
|
+
export * from './marketing-list-contact-dto';
|
|
98
|
+
export * from './move-subcategory-dto';
|
|
99
|
+
export * from './my-favorite-list-dto';
|
|
100
|
+
export * from './notification';
|
|
101
|
+
export * from './object-id';
|
|
102
|
+
export * from './open-api';
|
|
103
|
+
export * from './order';
|
|
104
|
+
export * from './order-paginated-response';
|
|
105
|
+
export * from './orders-insights-dto';
|
|
106
|
+
export * from './paginated-products-dto';
|
|
107
|
+
export * from './payment';
|
|
108
|
+
export * from './payment-method';
|
|
109
|
+
export * from './payment-method-data';
|
|
110
|
+
export * from './payment-time-line-dto';
|
|
111
|
+
export * from './payments-insights-dto';
|
|
112
|
+
export * from './payments-paginated-response';
|
|
113
|
+
export * from './pick-type-class';
|
|
114
|
+
export * from './populated-chat-dto';
|
|
115
|
+
export * from './populated-discount';
|
|
116
|
+
export * from './populated-order';
|
|
117
|
+
export * from './prefered-pick-or-delivery-time-dto';
|
|
118
|
+
export * from './price-range';
|
|
119
|
+
export * from './product';
|
|
120
|
+
export * from './product-attribute';
|
|
121
|
+
export * from './product-variant';
|
|
122
|
+
export * from './products-insights-dto';
|
|
123
|
+
export * from './rate-dto';
|
|
124
|
+
export * from './refill-request';
|
|
125
|
+
export * from './refill-request-dto';
|
|
126
|
+
export * from './register-or-login-with-gmail';
|
|
127
|
+
export * from './reserve-appointment';
|
|
128
|
+
export * from './review';
|
|
129
|
+
export * from './role';
|
|
130
|
+
export * from './schedule-campaign-draft-dto';
|
|
131
|
+
export * from './send-test-email-dto';
|
|
132
|
+
export * from './shallow-parent-category-dto';
|
|
133
|
+
export * from './shipment';
|
|
134
|
+
export * from './shipment-details-dto';
|
|
135
|
+
export * from './shipment-status-dto';
|
|
136
|
+
export * from './shipment-with-order';
|
|
137
|
+
export * from './shipping-info';
|
|
138
|
+
export * from './single-browser-stats-dto';
|
|
139
|
+
export * from './single-contact-aggregated-stats-dto';
|
|
140
|
+
export * from './single-contact-list-stats-dto';
|
|
141
|
+
export * from './single-country-stats-dto';
|
|
142
|
+
export * from './single-general-stats';
|
|
143
|
+
export * from './single-link-stats-dto';
|
|
144
|
+
export * from './single-message-populated';
|
|
145
|
+
export * from './single-notification-dto';
|
|
146
|
+
export * from './single-product-media';
|
|
147
|
+
export * from './single-recipient-dto';
|
|
148
|
+
export * from './single-suggest-attribute';
|
|
149
|
+
export * from './statistic-dto';
|
|
150
|
+
export * from './store';
|
|
151
|
+
export * from './store-entity';
|
|
152
|
+
export * from './sub-category';
|
|
153
|
+
export * from './sub-category-headlines-only-response-dto';
|
|
154
|
+
export * from './suggest-attributes';
|
|
155
|
+
export * from './suggested-slot';
|
|
156
|
+
export * from './tadmin-session-data';
|
|
157
|
+
export * from './tuser-session-data';
|
|
158
|
+
export * from './table-cell-dto';
|
|
159
|
+
export * from './table-dto';
|
|
160
|
+
export * from './track-dto';
|
|
161
|
+
export * from './tracking-status';
|
|
162
|
+
export * from './tracking-status-location-base';
|
|
163
|
+
export * from './tracking-status-substatus';
|
|
164
|
+
export * from './transfere-patient-request';
|
|
165
|
+
export * from './transfere-patients-request-dto';
|
|
166
|
+
export * from './update-address-dto';
|
|
167
|
+
export * from './update-blog-dto';
|
|
168
|
+
export * from './update-campaign-draft-content-dto';
|
|
169
|
+
export * from './update-category-dto';
|
|
170
|
+
export * from './update-discount-dto';
|
|
171
|
+
export * from './update-event-dto';
|
|
172
|
+
export * from './update-items-order-dto';
|
|
173
|
+
export * from './update-marketing-camp-draft-dto';
|
|
174
|
+
export * from './update-message-dto';
|
|
175
|
+
export * from './update-product-attribute-dto';
|
|
176
|
+
export * from './update-product-dto';
|
|
177
|
+
export * from './update-product-variant-dto';
|
|
178
|
+
export * from './update-refill-request-dto';
|
|
179
|
+
export * from './update-review-dto';
|
|
180
|
+
export * from './update-role-dto';
|
|
181
|
+
export * from './update-store-dto';
|
|
182
|
+
export * from './update-sub-category-dto';
|
|
183
|
+
export * from './update-transfere-patients-request-dto';
|
|
184
|
+
export * from './update-user-dto';
|
|
185
|
+
export * from './update-user-group-dto';
|
|
186
|
+
export * from './update-zone-dto';
|
|
187
|
+
export * from './upload-pdf-body';
|
|
188
|
+
export * from './used-by';
|
|
189
|
+
export * from './user';
|
|
190
|
+
export * from './user-entity';
|
|
191
|
+
export * from './user-group';
|
|
192
|
+
export * from './user-insights-dto';
|
|
193
|
+
export * from './user-with-no-id';
|
|
194
|
+
export * from './users-paginated-response';
|
|
195
|
+
export * from './verify-email-dto';
|
|
196
|
+
export * from './zone';
|
|
197
|
+
export * from './zone-single-size';
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Hey Pharamcist API
|
|
5
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
6
|
+
*
|
|
7
|
+
* OpenAPI spec version: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
import { ProductVariant } from './product-variant';
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @export
|
|
18
|
+
* @interface InventoryPaginatedResponse
|
|
19
|
+
*/
|
|
20
|
+
export interface InventoryPaginatedResponse {
|
|
21
|
+
_id?: string;
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof InventoryPaginatedResponse
|
|
26
|
+
*/
|
|
27
|
+
storeId?: string;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {ProductVariant}
|
|
31
|
+
* @memberof InventoryPaginatedResponse
|
|
32
|
+
*/
|
|
33
|
+
variant?: ProductVariant;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {number}
|
|
37
|
+
* @memberof InventoryPaginatedResponse
|
|
38
|
+
*/
|
|
39
|
+
quantity?: number;
|
|
40
|
+
/**
|
|
41
|
+
*
|
|
42
|
+
* @type {string}
|
|
43
|
+
* @memberof InventoryPaginatedResponse
|
|
44
|
+
*/
|
|
45
|
+
status?: InventoryPaginatedResponseStatusEnum;
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
* @type {number}
|
|
49
|
+
* @memberof InventoryPaginatedResponse
|
|
50
|
+
*/
|
|
51
|
+
total: number;
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
* @type {number}
|
|
55
|
+
* @memberof InventoryPaginatedResponse
|
|
56
|
+
*/
|
|
57
|
+
page: number;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @type {number}
|
|
61
|
+
* @memberof InventoryPaginatedResponse
|
|
62
|
+
*/
|
|
63
|
+
limit: number;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* @export
|
|
68
|
+
* @enum {string}
|
|
69
|
+
*/
|
|
70
|
+
export enum InventoryPaginatedResponseStatusEnum {
|
|
71
|
+
INSTOCK = 'IN_STOCK',
|
|
72
|
+
OUTOFSTOCK = 'OUT_OF_STOCK',
|
|
73
|
+
LOWSTOCK = 'LOW_STOCK'
|
|
74
|
+
}
|
|
75
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Hey Pharamcist API
|
|
5
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
6
|
+
*
|
|
7
|
+
* OpenAPI spec version: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
import { SingleLinkStatsDto } from './single-link-stats-dto';
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @export
|
|
18
|
+
* @interface LinkStatsResponseDTO
|
|
19
|
+
*/
|
|
20
|
+
export interface LinkStatsResponseDTO {
|
|
21
|
+
_id?: string;
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {number}
|
|
25
|
+
* @memberof LinkStatsResponseDTO
|
|
26
|
+
*/
|
|
27
|
+
count: number;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {Array<SingleLinkStatsDto>}
|
|
31
|
+
* @memberof LinkStatsResponseDTO
|
|
32
|
+
*/
|
|
33
|
+
data: Array<SingleLinkStatsDto>;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {number}
|
|
37
|
+
* @memberof LinkStatsResponseDTO
|
|
38
|
+
*/
|
|
39
|
+
total: number;
|
|
40
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Hey Pharamcist API
|
|
5
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
6
|
+
*
|
|
7
|
+
* OpenAPI spec version: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
11
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface LoginDto
|
|
18
|
+
*/
|
|
19
|
+
export interface LoginDto {
|
|
20
|
+
_id?: string;
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
* @type {string}
|
|
24
|
+
* @memberof LoginDto
|
|
25
|
+
*/
|
|
26
|
+
email: string;
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
* @type {string}
|
|
30
|
+
* @memberof LoginDto
|
|
31
|
+
*/
|
|
32
|
+
password: string;
|
|
33
|
+
}
|