hey-pharmacist-ecommerce 1.1.42 → 1.1.44
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 +2550 -3081
- package/dist/index.d.ts +2550 -3081
- package/dist/index.js +506 -399
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +506 -397
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/components/AccountOverviewTab.tsx +5 -5
- package/src/components/AccountReviewsTab.tsx +4 -4
- package/src/components/CartItem.tsx +15 -15
- package/src/components/Header.tsx +1 -1
- package/src/components/Notification.tsx +3 -3
- package/src/components/OrderCard.tsx +1 -1
- package/src/components/ProductCard.tsx +11 -11
- package/src/components/QuickViewModal.tsx +16 -16
- package/src/components/RatingDistribution.tsx +2 -2
- package/src/components/ReviewCard.tsx +2 -2
- package/src/components/ReviewForm.tsx +3 -3
- package/src/components/ReviewPromptBanner.tsx +4 -4
- package/src/components/ReviewsList.tsx +9 -11
- package/src/components/StarRating.tsx +3 -3
- package/src/hooks/useProducts.ts +0 -1
- package/src/hooks/useSmartSearch.ts +68 -0
- package/src/lib/Apis/api.ts +1 -1
- package/src/lib/Apis/apis/analytics-api.ts +809 -0
- package/src/lib/Apis/apis/notifications-api.ts +8 -6
- package/src/lib/Apis/apis/products-api.ts +390 -15
- package/src/lib/Apis/apis/stores-api.ts +26 -149
- package/src/lib/Apis/apis/web-hooks-api.ts +8 -17
- package/src/lib/Apis/models/analytics-period-dto.ts +45 -0
- package/src/lib/Apis/models/appointment-overview-dto.ts +71 -0
- package/src/lib/Apis/models/category-sales-dto.ts +51 -0
- package/src/lib/Apis/models/create-store-dto.ts +12 -0
- package/src/lib/Apis/models/customer-overview-dto.ts +96 -0
- package/src/lib/Apis/models/{country-stats-response-dto.ts → customer-segment-dto.ts} +12 -13
- package/src/lib/Apis/models/dashboard-overview-dto.ts +70 -0
- package/src/lib/Apis/models/discount-overview-dto.ts +71 -0
- 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 +29 -38
- package/src/lib/Apis/models/{single-recipient-dto.ts → inline-response200.ts} +11 -10
- package/src/lib/Apis/models/{create-contact-dto.ts → inline-response2001.ts} +11 -11
- package/src/lib/Apis/models/inventory-alert-dto.ts +67 -0
- package/src/lib/Apis/models/notification-dto.ts +107 -0
- package/src/lib/Apis/models/notifications-paginated-response-dto.ts +58 -0
- package/src/lib/Apis/models/order-overview-dto.ts +89 -0
- package/src/lib/Apis/models/{single-link-stats-dto.ts → order-status-count-dto.ts} +10 -10
- package/src/lib/Apis/models/order.ts +0 -6
- package/src/lib/Apis/models/payout-history-item-dto.ts +45 -0
- package/src/lib/Apis/models/{single-country-stats-dto.ts → popular-time-slot-dto.ts} +10 -10
- 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/product-overview-dto.ts +90 -0
- package/src/lib/Apis/models/product.ts +6 -0
- package/src/lib/Apis/models/{create-contact-list-dto.ts → products-aidraft-body.ts} +4 -4
- package/src/lib/Apis/models/{schedule-campaign-draft-dto.ts → products-processimage-body.ts} +5 -5
- package/src/lib/Apis/models/{contact-full-response-dto.ts → rating-distribution-dto.ts} +9 -10
- package/src/lib/Apis/models/recent-review-dto.ts +63 -0
- package/src/lib/Apis/models/review-overview-dto.ts +65 -0
- package/src/lib/Apis/models/store-balance-dto.ts +39 -0
- package/src/lib/Apis/models/store-entity.ts +12 -0
- package/src/lib/Apis/models/{link-stats-response-dto.ts → store-finance-overview-dto.ts} +10 -15
- package/src/lib/Apis/models/store.ts +12 -0
- package/src/lib/Apis/models/{add-contact-to-list-dto.ts → time-series-point-dto.ts} +9 -9
- package/src/lib/Apis/models/{create-email-template-dto.ts → top-customer-dto.ts} +20 -14
- package/src/lib/Apis/models/{marketing-list-contact-dto.ts → top-discount-dto.ts} +12 -12
- package/src/lib/Apis/models/{single-browser-stats-dto.ts → top-product-dto.ts} +18 -12
- package/src/lib/Apis/models/{marketing-campaign-content-dto.ts → unread-count-dto.ts} +6 -6
- package/src/lib/Apis/models/update-store-dto.ts +12 -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/screens/CartScreen.tsx +10 -10
- package/src/screens/CheckoutScreen.tsx +12 -12
- package/src/screens/OrderReviewsScreen.tsx +6 -6
- package/src/screens/ProductDetailScreen.tsx +40 -40
- package/src/screens/SearchResultsScreen.tsx +17 -21
- package/src/screens/ShopScreen.tsx +20 -82
- package/src/lib/Apis/apis/marketing-api.ts +0 -3099
- package/src/lib/Apis/models/api-key-info-dto.ts +0 -49
- 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-list-stats-response-dto.ts +0 -40
- package/src/lib/Apis/models/contact-lists-response-dto.ts +0 -40
- 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/send-test-email-dto.ts +0 -28
- 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-general-stats.ts +0 -153
- package/src/lib/Apis/models/store-api-keys-response-dto.ts +0 -34
- package/src/lib/Apis/models/update-api-keys-dto.ts +0 -39
- 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
|
@@ -1,40 +0,0 @@
|
|
|
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 { MarketingListContactDTO } from './marketing-list-contact-dto';
|
|
15
|
-
/**
|
|
16
|
-
*
|
|
17
|
-
* @export
|
|
18
|
-
* @interface ContactListsResponseDTO
|
|
19
|
-
*/
|
|
20
|
-
export interface ContactListsResponseDTO {
|
|
21
|
-
_id?: string;
|
|
22
|
-
/**
|
|
23
|
-
*
|
|
24
|
-
* @type {number}
|
|
25
|
-
* @memberof ContactListsResponseDTO
|
|
26
|
-
*/
|
|
27
|
-
count: number;
|
|
28
|
-
/**
|
|
29
|
-
*
|
|
30
|
-
* @type {Array<MarketingListContactDTO>}
|
|
31
|
-
* @memberof ContactListsResponseDTO
|
|
32
|
-
*/
|
|
33
|
-
data: Array<MarketingListContactDTO>;
|
|
34
|
-
/**
|
|
35
|
-
*
|
|
36
|
-
* @type {number}
|
|
37
|
-
* @memberof ContactListsResponseDTO
|
|
38
|
-
*/
|
|
39
|
-
total: number;
|
|
40
|
-
}
|
|
@@ -1,81 +0,0 @@
|
|
|
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 CreateMarketingCampaignDTO
|
|
18
|
-
*/
|
|
19
|
-
export interface CreateMarketingCampaignDTO {
|
|
20
|
-
_id?: string;
|
|
21
|
-
/**
|
|
22
|
-
* Internal title for this campaign draft.
|
|
23
|
-
* @type {string}
|
|
24
|
-
* @memberof CreateMarketingCampaignDTO
|
|
25
|
-
*/
|
|
26
|
-
title: string;
|
|
27
|
-
/**
|
|
28
|
-
* Subject line for the campaign emails.
|
|
29
|
-
* @type {string}
|
|
30
|
-
* @memberof CreateMarketingCampaignDTO
|
|
31
|
-
*/
|
|
32
|
-
subject: string;
|
|
33
|
-
/**
|
|
34
|
-
* Unique numeric ID for the contact list linked to this draft. Required for successful sending of the campaign.
|
|
35
|
-
* @type {number}
|
|
36
|
-
* @memberof CreateMarketingCampaignDTO
|
|
37
|
-
*/
|
|
38
|
-
contactsListID: number;
|
|
39
|
-
/**
|
|
40
|
-
* ID of the sender email address. Required for successful sending of the campaign.
|
|
41
|
-
* @type {number}
|
|
42
|
-
* @memberof CreateMarketingCampaignDTO
|
|
43
|
-
*/
|
|
44
|
-
sender: number;
|
|
45
|
-
/**
|
|
46
|
-
* ID of the sender email address. Required for successful sending of the campaign.
|
|
47
|
-
* @type {string}
|
|
48
|
-
* @memberof CreateMarketingCampaignDTO
|
|
49
|
-
*/
|
|
50
|
-
senderEmail: string;
|
|
51
|
-
/**
|
|
52
|
-
* The email address of the sender. Required for successful sending of the campaign
|
|
53
|
-
* @type {string}
|
|
54
|
-
* @memberof CreateMarketingCampaignDTO
|
|
55
|
-
*/
|
|
56
|
-
senderName: string;
|
|
57
|
-
/**
|
|
58
|
-
* 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.
|
|
59
|
-
* @type {string}
|
|
60
|
-
* @memberof CreateMarketingCampaignDTO
|
|
61
|
-
*/
|
|
62
|
-
templateId: string;
|
|
63
|
-
/**
|
|
64
|
-
* Edit mode for the campaign draft.
|
|
65
|
-
* @type {string}
|
|
66
|
-
* @memberof CreateMarketingCampaignDTO
|
|
67
|
-
*/
|
|
68
|
-
editMode: string;
|
|
69
|
-
/**
|
|
70
|
-
* Indicates whether the campaign draft is marked as Starred or not.
|
|
71
|
-
* @type {boolean}
|
|
72
|
-
* @memberof CreateMarketingCampaignDTO
|
|
73
|
-
*/
|
|
74
|
-
isStarred: boolean;
|
|
75
|
-
/**
|
|
76
|
-
* The email address to which replies to the campaign emails will be sent.
|
|
77
|
-
* @type {string}
|
|
78
|
-
* @memberof CreateMarketingCampaignDTO
|
|
79
|
-
*/
|
|
80
|
-
replyEmail: string;
|
|
81
|
-
}
|
|
@@ -1,117 +0,0 @@
|
|
|
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 EmailTemplateResponseDTO
|
|
18
|
-
*/
|
|
19
|
-
export interface EmailTemplateResponseDTO {
|
|
20
|
-
_id?: string;
|
|
21
|
-
/**
|
|
22
|
-
*
|
|
23
|
-
* @type {number}
|
|
24
|
-
* @memberof EmailTemplateResponseDTO
|
|
25
|
-
*/
|
|
26
|
-
ID: number;
|
|
27
|
-
/**
|
|
28
|
-
*
|
|
29
|
-
* @type {string}
|
|
30
|
-
* @memberof EmailTemplateResponseDTO
|
|
31
|
-
*/
|
|
32
|
-
name: string;
|
|
33
|
-
/**
|
|
34
|
-
*
|
|
35
|
-
* @type {string}
|
|
36
|
-
* @memberof EmailTemplateResponseDTO
|
|
37
|
-
*/
|
|
38
|
-
locale: string;
|
|
39
|
-
/**
|
|
40
|
-
*
|
|
41
|
-
* @type {string}
|
|
42
|
-
* @memberof EmailTemplateResponseDTO
|
|
43
|
-
*/
|
|
44
|
-
author: string;
|
|
45
|
-
/**
|
|
46
|
-
*
|
|
47
|
-
* @type {string}
|
|
48
|
-
* @memberof EmailTemplateResponseDTO
|
|
49
|
-
*/
|
|
50
|
-
presets: string;
|
|
51
|
-
/**
|
|
52
|
-
*
|
|
53
|
-
* @type {Array<string>}
|
|
54
|
-
* @memberof EmailTemplateResponseDTO
|
|
55
|
-
*/
|
|
56
|
-
previews: Array<string>;
|
|
57
|
-
/**
|
|
58
|
-
*
|
|
59
|
-
* @type {string}
|
|
60
|
-
* @memberof EmailTemplateResponseDTO
|
|
61
|
-
*/
|
|
62
|
-
ownerType: string;
|
|
63
|
-
/**
|
|
64
|
-
*
|
|
65
|
-
* @type {string}
|
|
66
|
-
* @memberof EmailTemplateResponseDTO
|
|
67
|
-
*/
|
|
68
|
-
copyright: string;
|
|
69
|
-
/**
|
|
70
|
-
*
|
|
71
|
-
* @type {string}
|
|
72
|
-
* @memberof EmailTemplateResponseDTO
|
|
73
|
-
*/
|
|
74
|
-
description: string;
|
|
75
|
-
/**
|
|
76
|
-
*
|
|
77
|
-
* @type {Array<string>}
|
|
78
|
-
* @memberof EmailTemplateResponseDTO
|
|
79
|
-
*/
|
|
80
|
-
purposes: Array<string>;
|
|
81
|
-
/**
|
|
82
|
-
*
|
|
83
|
-
* @type {Array<string>}
|
|
84
|
-
* @memberof EmailTemplateResponseDTO
|
|
85
|
-
*/
|
|
86
|
-
categories: Array<string>;
|
|
87
|
-
/**
|
|
88
|
-
*
|
|
89
|
-
* @type {boolean}
|
|
90
|
-
* @memberof EmailTemplateResponseDTO
|
|
91
|
-
*/
|
|
92
|
-
isStarred: boolean;
|
|
93
|
-
/**
|
|
94
|
-
*
|
|
95
|
-
* @type {boolean}
|
|
96
|
-
* @memberof EmailTemplateResponseDTO
|
|
97
|
-
*/
|
|
98
|
-
isTextPartGenerationEnabled: boolean;
|
|
99
|
-
/**
|
|
100
|
-
*
|
|
101
|
-
* @type {string}
|
|
102
|
-
* @memberof EmailTemplateResponseDTO
|
|
103
|
-
*/
|
|
104
|
-
createdAt: string;
|
|
105
|
-
/**
|
|
106
|
-
*
|
|
107
|
-
* @type {string}
|
|
108
|
-
* @memberof EmailTemplateResponseDTO
|
|
109
|
-
*/
|
|
110
|
-
lastUpdatedAt: string;
|
|
111
|
-
/**
|
|
112
|
-
*
|
|
113
|
-
* @type {Array<string>}
|
|
114
|
-
* @memberof EmailTemplateResponseDTO
|
|
115
|
-
*/
|
|
116
|
-
localeList: Array<string>;
|
|
117
|
-
}
|
|
@@ -1,40 +0,0 @@
|
|
|
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 { SingleGeneralStats } from './single-general-stats';
|
|
15
|
-
/**
|
|
16
|
-
*
|
|
17
|
-
* @export
|
|
18
|
-
* @interface GeneralStatsResponseDTO
|
|
19
|
-
*/
|
|
20
|
-
export interface GeneralStatsResponseDTO {
|
|
21
|
-
_id?: string;
|
|
22
|
-
/**
|
|
23
|
-
*
|
|
24
|
-
* @type {number}
|
|
25
|
-
* @memberof GeneralStatsResponseDTO
|
|
26
|
-
*/
|
|
27
|
-
count: number;
|
|
28
|
-
/**
|
|
29
|
-
*
|
|
30
|
-
* @type {Array<SingleGeneralStats>}
|
|
31
|
-
* @memberof GeneralStatsResponseDTO
|
|
32
|
-
*/
|
|
33
|
-
data: Array<SingleGeneralStats>;
|
|
34
|
-
/**
|
|
35
|
-
*
|
|
36
|
-
* @type {number}
|
|
37
|
-
* @memberof GeneralStatsResponseDTO
|
|
38
|
-
*/
|
|
39
|
-
total: number;
|
|
40
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
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 { SingleRecipientDTO } from './single-recipient-dto';
|
|
15
|
-
/**
|
|
16
|
-
*
|
|
17
|
-
* @export
|
|
18
|
-
* @interface SendTestEmailDTO
|
|
19
|
-
*/
|
|
20
|
-
export interface SendTestEmailDTO {
|
|
21
|
-
_id?: string;
|
|
22
|
-
/**
|
|
23
|
-
*
|
|
24
|
-
* @type {Array<SingleRecipientDTO>}
|
|
25
|
-
* @memberof SendTestEmailDTO
|
|
26
|
-
*/
|
|
27
|
-
recipients: Array<SingleRecipientDTO>;
|
|
28
|
-
}
|
|
@@ -1,129 +0,0 @@
|
|
|
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 SingleContactAggregatedStatsDto
|
|
18
|
-
*/
|
|
19
|
-
export interface SingleContactAggregatedStatsDto {
|
|
20
|
-
_id?: string;
|
|
21
|
-
/**
|
|
22
|
-
*
|
|
23
|
-
* @type {number}
|
|
24
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
25
|
-
*/
|
|
26
|
-
blockedCount?: number;
|
|
27
|
-
/**
|
|
28
|
-
*
|
|
29
|
-
* @type {number}
|
|
30
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
31
|
-
*/
|
|
32
|
-
bouncedCount?: number;
|
|
33
|
-
/**
|
|
34
|
-
*
|
|
35
|
-
* @type {number}
|
|
36
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
37
|
-
*/
|
|
38
|
-
clickedCount?: number;
|
|
39
|
-
/**
|
|
40
|
-
*
|
|
41
|
-
* @type {number}
|
|
42
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
43
|
-
*/
|
|
44
|
-
deferredCount?: number;
|
|
45
|
-
/**
|
|
46
|
-
*
|
|
47
|
-
* @type {number}
|
|
48
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
49
|
-
*/
|
|
50
|
-
deliveredCount?: number;
|
|
51
|
-
/**
|
|
52
|
-
*
|
|
53
|
-
* @type {number}
|
|
54
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
55
|
-
*/
|
|
56
|
-
hardBouncedCount?: number;
|
|
57
|
-
/**
|
|
58
|
-
*
|
|
59
|
-
* @type {string}
|
|
60
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
61
|
-
*/
|
|
62
|
-
lastActivityAt?: string;
|
|
63
|
-
/**
|
|
64
|
-
*
|
|
65
|
-
* @type {number}
|
|
66
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
67
|
-
*/
|
|
68
|
-
openedCount?: number;
|
|
69
|
-
/**
|
|
70
|
-
*
|
|
71
|
-
* @type {number}
|
|
72
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
73
|
-
*/
|
|
74
|
-
preQueuedCount?: number;
|
|
75
|
-
/**
|
|
76
|
-
*
|
|
77
|
-
* @type {number}
|
|
78
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
79
|
-
*/
|
|
80
|
-
processedCount?: number;
|
|
81
|
-
/**
|
|
82
|
-
*
|
|
83
|
-
* @type {number}
|
|
84
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
85
|
-
*/
|
|
86
|
-
queuedCount?: number;
|
|
87
|
-
/**
|
|
88
|
-
*
|
|
89
|
-
* @type {number}
|
|
90
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
91
|
-
*/
|
|
92
|
-
softBouncedCount?: number;
|
|
93
|
-
/**
|
|
94
|
-
*
|
|
95
|
-
* @type {number}
|
|
96
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
97
|
-
*/
|
|
98
|
-
spamComplaintCount?: number;
|
|
99
|
-
/**
|
|
100
|
-
*
|
|
101
|
-
* @type {number}
|
|
102
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
103
|
-
*/
|
|
104
|
-
unsubscribedCount?: number;
|
|
105
|
-
/**
|
|
106
|
-
*
|
|
107
|
-
* @type {number}
|
|
108
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
109
|
-
*/
|
|
110
|
-
workFlowExitedCount?: number;
|
|
111
|
-
/**
|
|
112
|
-
*
|
|
113
|
-
* @type {number}
|
|
114
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
115
|
-
*/
|
|
116
|
-
contactID: number;
|
|
117
|
-
/**
|
|
118
|
-
*
|
|
119
|
-
* @type {number}
|
|
120
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
121
|
-
*/
|
|
122
|
-
marketingContacts: number;
|
|
123
|
-
/**
|
|
124
|
-
*
|
|
125
|
-
* @type {number}
|
|
126
|
-
* @memberof SingleContactAggregatedStatsDto
|
|
127
|
-
*/
|
|
128
|
-
userMarketingContacts: number;
|
|
129
|
-
}
|
|
@@ -1,117 +0,0 @@
|
|
|
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 SingleContactListStatsDto
|
|
18
|
-
*/
|
|
19
|
-
export interface SingleContactListStatsDto {
|
|
20
|
-
_id?: string;
|
|
21
|
-
/**
|
|
22
|
-
*
|
|
23
|
-
* @type {number}
|
|
24
|
-
* @memberof SingleContactListStatsDto
|
|
25
|
-
*/
|
|
26
|
-
blockedCount?: number;
|
|
27
|
-
/**
|
|
28
|
-
*
|
|
29
|
-
* @type {number}
|
|
30
|
-
* @memberof SingleContactListStatsDto
|
|
31
|
-
*/
|
|
32
|
-
bouncedCount?: number;
|
|
33
|
-
/**
|
|
34
|
-
*
|
|
35
|
-
* @type {number}
|
|
36
|
-
* @memberof SingleContactListStatsDto
|
|
37
|
-
*/
|
|
38
|
-
clickedCount?: number;
|
|
39
|
-
/**
|
|
40
|
-
*
|
|
41
|
-
* @type {number}
|
|
42
|
-
* @memberof SingleContactListStatsDto
|
|
43
|
-
*/
|
|
44
|
-
deferredCount?: number;
|
|
45
|
-
/**
|
|
46
|
-
*
|
|
47
|
-
* @type {number}
|
|
48
|
-
* @memberof SingleContactListStatsDto
|
|
49
|
-
*/
|
|
50
|
-
deliveredCount?: number;
|
|
51
|
-
/**
|
|
52
|
-
*
|
|
53
|
-
* @type {number}
|
|
54
|
-
* @memberof SingleContactListStatsDto
|
|
55
|
-
*/
|
|
56
|
-
hardBouncedCount?: number;
|
|
57
|
-
/**
|
|
58
|
-
*
|
|
59
|
-
* @type {string}
|
|
60
|
-
* @memberof SingleContactListStatsDto
|
|
61
|
-
*/
|
|
62
|
-
lastActivityAt?: string;
|
|
63
|
-
/**
|
|
64
|
-
*
|
|
65
|
-
* @type {number}
|
|
66
|
-
* @memberof SingleContactListStatsDto
|
|
67
|
-
*/
|
|
68
|
-
openedCount?: number;
|
|
69
|
-
/**
|
|
70
|
-
*
|
|
71
|
-
* @type {number}
|
|
72
|
-
* @memberof SingleContactListStatsDto
|
|
73
|
-
*/
|
|
74
|
-
preQueuedCount?: number;
|
|
75
|
-
/**
|
|
76
|
-
*
|
|
77
|
-
* @type {number}
|
|
78
|
-
* @memberof SingleContactListStatsDto
|
|
79
|
-
*/
|
|
80
|
-
processedCount?: number;
|
|
81
|
-
/**
|
|
82
|
-
*
|
|
83
|
-
* @type {number}
|
|
84
|
-
* @memberof SingleContactListStatsDto
|
|
85
|
-
*/
|
|
86
|
-
queuedCount?: number;
|
|
87
|
-
/**
|
|
88
|
-
*
|
|
89
|
-
* @type {number}
|
|
90
|
-
* @memberof SingleContactListStatsDto
|
|
91
|
-
*/
|
|
92
|
-
softBouncedCount?: number;
|
|
93
|
-
/**
|
|
94
|
-
*
|
|
95
|
-
* @type {number}
|
|
96
|
-
* @memberof SingleContactListStatsDto
|
|
97
|
-
*/
|
|
98
|
-
spamComplaintCount?: number;
|
|
99
|
-
/**
|
|
100
|
-
*
|
|
101
|
-
* @type {number}
|
|
102
|
-
* @memberof SingleContactListStatsDto
|
|
103
|
-
*/
|
|
104
|
-
unsubscribedCount?: number;
|
|
105
|
-
/**
|
|
106
|
-
*
|
|
107
|
-
* @type {number}
|
|
108
|
-
* @memberof SingleContactListStatsDto
|
|
109
|
-
*/
|
|
110
|
-
workFlowExitedCount?: number;
|
|
111
|
-
/**
|
|
112
|
-
*
|
|
113
|
-
* @type {number}
|
|
114
|
-
* @memberof SingleContactListStatsDto
|
|
115
|
-
*/
|
|
116
|
-
listRecipientID: number;
|
|
117
|
-
}
|
|
@@ -1,153 +0,0 @@
|
|
|
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 SingleGeneralStats
|
|
18
|
-
*/
|
|
19
|
-
export interface SingleGeneralStats {
|
|
20
|
-
_id?: string;
|
|
21
|
-
/**
|
|
22
|
-
*
|
|
23
|
-
* @type {number}
|
|
24
|
-
* @memberof SingleGeneralStats
|
|
25
|
-
*/
|
|
26
|
-
blockedCount: number;
|
|
27
|
-
/**
|
|
28
|
-
*
|
|
29
|
-
* @type {number}
|
|
30
|
-
* @memberof SingleGeneralStats
|
|
31
|
-
*/
|
|
32
|
-
bouncedCount: number;
|
|
33
|
-
/**
|
|
34
|
-
*
|
|
35
|
-
* @type {number}
|
|
36
|
-
* @memberof SingleGeneralStats
|
|
37
|
-
*/
|
|
38
|
-
campaignID: number;
|
|
39
|
-
/**
|
|
40
|
-
*
|
|
41
|
-
* @type {boolean}
|
|
42
|
-
* @memberof SingleGeneralStats
|
|
43
|
-
*/
|
|
44
|
-
campaignIsStarred: boolean;
|
|
45
|
-
/**
|
|
46
|
-
*
|
|
47
|
-
* @type {string}
|
|
48
|
-
* @memberof SingleGeneralStats
|
|
49
|
-
*/
|
|
50
|
-
campaignSendStartAt: string;
|
|
51
|
-
/**
|
|
52
|
-
*
|
|
53
|
-
* @type {string}
|
|
54
|
-
* @memberof SingleGeneralStats
|
|
55
|
-
*/
|
|
56
|
-
campaignSubject: string;
|
|
57
|
-
/**
|
|
58
|
-
*
|
|
59
|
-
* @type {number}
|
|
60
|
-
* @memberof SingleGeneralStats
|
|
61
|
-
*/
|
|
62
|
-
clickedCount: number;
|
|
63
|
-
/**
|
|
64
|
-
*
|
|
65
|
-
* @type {string}
|
|
66
|
-
* @memberof SingleGeneralStats
|
|
67
|
-
*/
|
|
68
|
-
contactListName: string;
|
|
69
|
-
/**
|
|
70
|
-
*
|
|
71
|
-
* @type {number}
|
|
72
|
-
* @memberof SingleGeneralStats
|
|
73
|
-
*/
|
|
74
|
-
deferredCount: number;
|
|
75
|
-
/**
|
|
76
|
-
*
|
|
77
|
-
* @type {number}
|
|
78
|
-
* @memberof SingleGeneralStats
|
|
79
|
-
*/
|
|
80
|
-
deliveredCount: number;
|
|
81
|
-
/**
|
|
82
|
-
*
|
|
83
|
-
* @type {number}
|
|
84
|
-
* @memberof SingleGeneralStats
|
|
85
|
-
*/
|
|
86
|
-
hardBouncedCount: number;
|
|
87
|
-
/**
|
|
88
|
-
*
|
|
89
|
-
* @type {string}
|
|
90
|
-
* @memberof SingleGeneralStats
|
|
91
|
-
*/
|
|
92
|
-
lastActivityAt: string;
|
|
93
|
-
/**
|
|
94
|
-
*
|
|
95
|
-
* @type {number}
|
|
96
|
-
* @memberof SingleGeneralStats
|
|
97
|
-
*/
|
|
98
|
-
newsLetterID: number;
|
|
99
|
-
/**
|
|
100
|
-
*
|
|
101
|
-
* @type {number}
|
|
102
|
-
* @memberof SingleGeneralStats
|
|
103
|
-
*/
|
|
104
|
-
openedCount: number;
|
|
105
|
-
/**
|
|
106
|
-
*
|
|
107
|
-
* @type {number}
|
|
108
|
-
* @memberof SingleGeneralStats
|
|
109
|
-
*/
|
|
110
|
-
preQueuedCount: number;
|
|
111
|
-
/**
|
|
112
|
-
*
|
|
113
|
-
* @type {number}
|
|
114
|
-
* @memberof SingleGeneralStats
|
|
115
|
-
*/
|
|
116
|
-
processedCount: number;
|
|
117
|
-
/**
|
|
118
|
-
*
|
|
119
|
-
* @type {number}
|
|
120
|
-
* @memberof SingleGeneralStats
|
|
121
|
-
*/
|
|
122
|
-
queuedCount: number;
|
|
123
|
-
/**
|
|
124
|
-
*
|
|
125
|
-
* @type {string}
|
|
126
|
-
* @memberof SingleGeneralStats
|
|
127
|
-
*/
|
|
128
|
-
segmentName: string;
|
|
129
|
-
/**
|
|
130
|
-
*
|
|
131
|
-
* @type {number}
|
|
132
|
-
* @memberof SingleGeneralStats
|
|
133
|
-
*/
|
|
134
|
-
softBouncedCount: number;
|
|
135
|
-
/**
|
|
136
|
-
*
|
|
137
|
-
* @type {number}
|
|
138
|
-
* @memberof SingleGeneralStats
|
|
139
|
-
*/
|
|
140
|
-
spamComplaintCount: number;
|
|
141
|
-
/**
|
|
142
|
-
*
|
|
143
|
-
* @type {number}
|
|
144
|
-
* @memberof SingleGeneralStats
|
|
145
|
-
*/
|
|
146
|
-
unsubscribedCount: number;
|
|
147
|
-
/**
|
|
148
|
-
*
|
|
149
|
-
* @type {number}
|
|
150
|
-
* @memberof SingleGeneralStats
|
|
151
|
-
*/
|
|
152
|
-
workFlowExitedCount: number;
|
|
153
|
-
}
|