@aldb2b/common 1.0.2151 → 1.0.2153
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/build/entities/models/common/common.provider.d.ts +6 -12
- package/build/entities/models/common/entities/audit-trail.entity.d.ts +2 -4
- package/build/entities/models/common/entities/location.entity.d.ts +2 -4
- package/build/entities/models/common/entities/preference-customization.entity.d.ts +2 -4
- package/build/entities/models/common/entities/tracing.entity.d.ts +2 -4
- package/build/entities/models/companies/companies.provider.d.ts +16 -32
- package/build/entities/models/companies/entities/categories/category.schema.d.ts +2 -4
- package/build/entities/models/companies/entities/cities/city.schema.d.ts +2 -4
- package/build/entities/models/companies/entities/companies/company.entity.d.ts +2 -4
- package/build/entities/models/companies/entities/contacts/contact.entity.d.ts +2 -4
- package/build/entities/models/companies/entities/countries/country.schema.d.ts +2 -4
- package/build/entities/models/companies/entities/itps/itp.entity.d.ts +2 -4
- package/build/entities/models/events/entities/event/event.entity.d.ts +2 -4
- package/build/entities/models/events/entities/eventProfile/company-profile-item.entity.d.ts +2 -4
- package/build/entities/models/events/entities/eventProfile/event-profile.entity.d.ts +2 -4
- package/build/entities/models/events/entities/eventType/event-type.entity.d.ts +2 -4
- package/build/entities/models/events/entities/timestamp.entity.d.ts +2 -4
- package/build/entities/models/events/events.provider.d.ts +6 -12
- package/build/entities/models/meetings/entities/meetingRequests/meeting-request.entity.d.ts +2 -4
- package/build/entities/models/meetings/entities/meetings/meeting.entity.d.ts +2 -4
- package/build/entities/models/meetings/entities/userAvailabilities/user-availability-timeslot.entity.d.ts +2 -4
- package/build/entities/models/meetings/entities/userAvailabilities/user-availability.entity.d.ts +2 -4
- package/build/entities/models/meetings/meetings.provider.d.ts +6 -12
- package/build/entities/models/model.providers.d.ts +44 -88
- package/build/entities/models/subscriptions/entities/companySubscriptions/company-subscription.entity.d.ts +2 -4
- package/build/entities/models/subscriptions/entities/eventSubscriptions/event-subscription.entity.d.ts +2 -4
- package/build/entities/models/subscriptions/entities/features/feature.entity.d.ts +2 -4
- package/build/entities/models/subscriptions/entities/managedServiceSubscriptions/managed-service-subscription.entity.d.ts +2 -4
- package/build/entities/models/subscriptions/entities/subscription/subscription.entity.d.ts +2 -4
- package/build/entities/models/subscriptions/entities/subscriptionLogs/subscription-log.entity.d.ts +2 -4
- package/build/entities/models/subscriptions/subscriptions.provider.d.ts +12 -24
- package/build/entities/models/users/entities/rolePermissions/permission.entity.d.ts +2 -4
- package/build/entities/models/users/entities/rolePermissions/role-permission.entity.d.ts +2 -4
- package/build/entities/models/users/entities/users/chat-info.entity.d.ts +2 -4
- package/build/entities/models/users/entities/users/user.entity.d.ts +2 -4
- package/build/entities/models/users/users.provider.d.ts +4 -8
- package/build/tsconfig.tsbuildinfo +1 -1
- package/build/types/notification-event.enum.d.ts +4 -1
- package/build/types/notification-event.enum.js +3 -0
- package/build/types/notification-event.enum.js.map +1 -1
- package/build/utils/rmq/client/rabbitmq.client.js +4 -0
- package/build/utils/rmq/client/rabbitmq.client.js.map +1 -1
- package/build/utils/rmq/server/rabbitmq.server.js +4 -0
- package/build/utils/rmq/server/rabbitmq.server.js.map +1 -1
- package/package.json +46 -46
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
export declare const modelProviders: ({
|
|
2
2
|
provide: import("../..").DatabaseModel;
|
|
3
|
-
useFactory: (connection: import("mongoose").Connection, eventConnection: import("mongoose").Connection, userConnection: import("mongoose").Connection) => import("mongoose").Model<import("./common").AuditTrail, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./common").AuditTrail
|
|
3
|
+
useFactory: (connection: import("mongoose").Connection, eventConnection: import("mongoose").Connection, userConnection: import("mongoose").Connection) => import("mongoose").Model<import("./common").AuditTrail, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./common").AuditTrail> & import("./common").AuditTrail & Required<{
|
|
4
4
|
_id: string;
|
|
5
|
-
}
|
|
6
|
-
__v: number;
|
|
7
|
-
}, any>;
|
|
5
|
+
}>, any>;
|
|
8
6
|
inject: import("../..").DatabaseConnection[];
|
|
9
7
|
} | {
|
|
10
8
|
provide: import("../..").RepositoryProvider;
|
|
@@ -16,11 +14,9 @@ export declare const modelProviders: ({
|
|
|
16
14
|
useFactory: (auditLogRepository: import("./common").AuditTrailRepository, userModel: import("../..").CustomModel<import("./users").User>) => import("./common").AuditTrailService;
|
|
17
15
|
} | {
|
|
18
16
|
provide: import("../..").DatabaseModel;
|
|
19
|
-
useFactory: (connection: import("mongoose").Connection, eventConnection: import("mongoose").Connection, companyConnection: import("mongoose").Connection) => import("mongoose").Model<import("./common").PreferenceCustomization, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./common").PreferenceCustomization
|
|
17
|
+
useFactory: (connection: import("mongoose").Connection, eventConnection: import("mongoose").Connection, companyConnection: import("mongoose").Connection) => import("mongoose").Model<import("./common").PreferenceCustomization, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./common").PreferenceCustomization> & import("./common").PreferenceCustomization & Required<{
|
|
20
18
|
_id: string;
|
|
21
|
-
}
|
|
22
|
-
__v: number;
|
|
23
|
-
}, any>;
|
|
19
|
+
}>, any>;
|
|
24
20
|
inject: import("../..").DatabaseConnection[];
|
|
25
21
|
} | {
|
|
26
22
|
provide: import("../..").RepositoryProvider;
|
|
@@ -28,11 +24,9 @@ export declare const modelProviders: ({
|
|
|
28
24
|
useFactory: (preferenceCustomizationModel: import("../..").CustomModel<import("./common").PreferenceCustomization>) => import("./common").PreferenceCustomizationRepository;
|
|
29
25
|
} | {
|
|
30
26
|
provide: import("../..").DatabaseModel;
|
|
31
|
-
useFactory: (connection: import("mongoose").Connection, eventConnection: import("mongoose").Connection, userConnection: import("mongoose").Connection) => import("mongoose").Model<import("./common").Tracing, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./common").Tracing
|
|
27
|
+
useFactory: (connection: import("mongoose").Connection, eventConnection: import("mongoose").Connection, userConnection: import("mongoose").Connection) => import("mongoose").Model<import("./common").Tracing, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./common").Tracing> & import("./common").Tracing & Required<{
|
|
32
28
|
_id: string;
|
|
33
|
-
}
|
|
34
|
-
__v: number;
|
|
35
|
-
}, any>;
|
|
29
|
+
}>, any>;
|
|
36
30
|
inject: import("../..").DatabaseConnection[];
|
|
37
31
|
} | {
|
|
38
32
|
provide: import("../..").RepositoryProvider;
|
|
@@ -40,51 +34,39 @@ export declare const modelProviders: ({
|
|
|
40
34
|
useFactory: (tracingModel: import("../..").CustomModel<import("./common").Tracing>) => import("./common").TracingRepository;
|
|
41
35
|
} | {
|
|
42
36
|
provide: import("../..").DatabaseModel;
|
|
43
|
-
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./subscriptions").Subscription, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./subscriptions").Subscription
|
|
37
|
+
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./subscriptions").Subscription, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./subscriptions").Subscription> & import("./subscriptions").Subscription & Required<{
|
|
44
38
|
_id: string;
|
|
45
|
-
}
|
|
46
|
-
__v: number;
|
|
47
|
-
}, any>;
|
|
39
|
+
}>, any>;
|
|
48
40
|
inject: import("../..").DatabaseConnection[];
|
|
49
41
|
} | {
|
|
50
42
|
provide: import("../..").DatabaseModel;
|
|
51
|
-
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<import("./subscriptions").ManagedServiceSubscription, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./subscriptions").ManagedServiceSubscription
|
|
43
|
+
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<import("./subscriptions").ManagedServiceSubscription, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./subscriptions").ManagedServiceSubscription> & import("./subscriptions").ManagedServiceSubscription & Required<{
|
|
52
44
|
_id: string;
|
|
53
|
-
}
|
|
54
|
-
__v: number;
|
|
55
|
-
}, any>;
|
|
45
|
+
}>, any>;
|
|
56
46
|
inject: import("../..").DatabaseConnection[];
|
|
57
47
|
} | {
|
|
58
48
|
provide: import("../..").DatabaseModel;
|
|
59
|
-
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./subscriptions").Feature, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./subscriptions").Feature
|
|
49
|
+
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./subscriptions").Feature, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./subscriptions").Feature> & import("./subscriptions").Feature & Required<{
|
|
60
50
|
_id: string;
|
|
61
|
-
}
|
|
62
|
-
__v: number;
|
|
63
|
-
}, any>;
|
|
51
|
+
}>, any>;
|
|
64
52
|
inject: import("../..").DatabaseConnection[];
|
|
65
53
|
} | {
|
|
66
54
|
provide: import("../..").DatabaseModel;
|
|
67
|
-
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<import("./subscriptions").CompanySubscription, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./subscriptions").CompanySubscription
|
|
55
|
+
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<import("./subscriptions").CompanySubscription, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./subscriptions").CompanySubscription> & import("./subscriptions").CompanySubscription & Required<{
|
|
68
56
|
_id: string;
|
|
69
|
-
}
|
|
70
|
-
__v: number;
|
|
71
|
-
}, any>;
|
|
57
|
+
}>, any>;
|
|
72
58
|
inject: import("../..").DatabaseConnection[];
|
|
73
59
|
} | {
|
|
74
60
|
provide: import("../..").DatabaseModel;
|
|
75
|
-
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<import("./subscriptions").EventSubscription, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./subscriptions").EventSubscription
|
|
61
|
+
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<import("./subscriptions").EventSubscription, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./subscriptions").EventSubscription> & import("./subscriptions").EventSubscription & Required<{
|
|
76
62
|
_id: string;
|
|
77
|
-
}
|
|
78
|
-
__v: number;
|
|
79
|
-
}, any>;
|
|
63
|
+
}>, any>;
|
|
80
64
|
inject: import("../..").DatabaseConnection[];
|
|
81
65
|
} | {
|
|
82
66
|
provide: import("../..").DatabaseModel;
|
|
83
|
-
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, userConnection: import("mongoose").Connection) => import("mongoose").Model<import("./subscriptions").SubscriptionLog, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./subscriptions").SubscriptionLog
|
|
67
|
+
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, userConnection: import("mongoose").Connection) => import("mongoose").Model<import("./subscriptions").SubscriptionLog, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./subscriptions").SubscriptionLog> & import("./subscriptions").SubscriptionLog & Required<{
|
|
84
68
|
_id: string;
|
|
85
|
-
}
|
|
86
|
-
__v: number;
|
|
87
|
-
}, any>;
|
|
69
|
+
}>, any>;
|
|
88
70
|
inject: import("../..").DatabaseConnection[];
|
|
89
71
|
} | {
|
|
90
72
|
provide: import("../..").RepositoryProvider;
|
|
@@ -104,67 +86,51 @@ export declare const modelProviders: ({
|
|
|
104
86
|
useFactory: (subscriptionLog: import("../..").CustomModel<import("./subscriptions").SubscriptionLog>) => import("./subscriptions").SubscriptionLogRepository;
|
|
105
87
|
} | {
|
|
106
88
|
provide: import("../..").DatabaseModel;
|
|
107
|
-
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection, subscriptionConnection: import("mongoose").Connection) => import("mongoose").Model<import("./meetings").Meeting, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./meetings").Meeting
|
|
89
|
+
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection, subscriptionConnection: import("mongoose").Connection) => import("mongoose").Model<import("./meetings").Meeting, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./meetings").Meeting> & import("./meetings").Meeting & Required<{
|
|
108
90
|
_id: string;
|
|
109
|
-
}
|
|
110
|
-
__v: number;
|
|
111
|
-
}, any>;
|
|
91
|
+
}>, any>;
|
|
112
92
|
inject: import("../..").DatabaseConnection[];
|
|
113
93
|
} | {
|
|
114
94
|
provide: import("../..").DatabaseModel;
|
|
115
|
-
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<import("./meetings").MeetingRequest, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./meetings").MeetingRequest
|
|
95
|
+
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<import("./meetings").MeetingRequest, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./meetings").MeetingRequest> & import("./meetings").MeetingRequest & Required<{
|
|
116
96
|
_id: string;
|
|
117
|
-
}
|
|
118
|
-
__v: number;
|
|
119
|
-
}, any>;
|
|
97
|
+
}>, any>;
|
|
120
98
|
inject: import("../..").DatabaseConnection[];
|
|
121
99
|
} | {
|
|
122
100
|
provide: import("../..").DatabaseModel;
|
|
123
|
-
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<import("./meetings").UserAvailability, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./meetings").UserAvailability
|
|
101
|
+
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<import("./meetings").UserAvailability, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./meetings").UserAvailability> & import("./meetings").UserAvailability & Required<{
|
|
124
102
|
_id: string;
|
|
125
|
-
}
|
|
126
|
-
__v: number;
|
|
127
|
-
}, any>;
|
|
103
|
+
}>, any>;
|
|
128
104
|
inject: import("../..").DatabaseConnection[];
|
|
129
105
|
} | {
|
|
130
106
|
provide: import("../..").DatabaseModel;
|
|
131
|
-
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./companies").Country, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./companies").Country
|
|
107
|
+
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./companies").Country, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./companies").Country> & import("./companies").Country & Required<{
|
|
132
108
|
_id: string;
|
|
133
|
-
}
|
|
134
|
-
__v: number;
|
|
135
|
-
}, any>;
|
|
109
|
+
}>, any>;
|
|
136
110
|
inject: import("../..").DatabaseConnection[];
|
|
137
111
|
} | {
|
|
138
112
|
provide: import("../..").DatabaseModel;
|
|
139
|
-
useFactory: (connection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<import("./companies").Category, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./companies").Category
|
|
113
|
+
useFactory: (connection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<import("./companies").Category, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./companies").Category> & import("./companies").Category & Required<{
|
|
140
114
|
_id: string;
|
|
141
|
-
}
|
|
142
|
-
__v: number;
|
|
143
|
-
}, any>;
|
|
115
|
+
}>, any>;
|
|
144
116
|
inject: import("../..").DatabaseConnection[];
|
|
145
117
|
} | {
|
|
146
118
|
provide: import("../..").DatabaseModel;
|
|
147
|
-
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./companies").City, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./companies").City
|
|
119
|
+
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./companies").City, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./companies").City> & import("./companies").City & Required<{
|
|
148
120
|
_id: string;
|
|
149
|
-
}
|
|
150
|
-
__v: number;
|
|
151
|
-
}, any>;
|
|
121
|
+
}>, any>;
|
|
152
122
|
inject: import("../..").DatabaseConnection[];
|
|
153
123
|
} | {
|
|
154
124
|
provide: import("../..").DatabaseModel;
|
|
155
|
-
useFactory: (connection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<import("./companies").Company, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./companies").Company
|
|
125
|
+
useFactory: (connection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<import("./companies").Company, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./companies").Company> & import("./companies").Company & Required<{
|
|
156
126
|
_id: string;
|
|
157
|
-
}
|
|
158
|
-
__v: number;
|
|
159
|
-
}, any>;
|
|
127
|
+
}>, any>;
|
|
160
128
|
inject: import("../..").DatabaseConnection[];
|
|
161
129
|
} | {
|
|
162
130
|
provide: import("../..").DatabaseModel;
|
|
163
|
-
useFactory: (connection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<import("./companies").Contact, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./companies").Contact
|
|
131
|
+
useFactory: (connection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<import("./companies").Contact, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./companies").Contact> & import("./companies").Contact & Required<{
|
|
164
132
|
_id: string;
|
|
165
|
-
}
|
|
166
|
-
__v: number;
|
|
167
|
-
}, any>;
|
|
133
|
+
}>, any>;
|
|
168
134
|
inject: import("../..").DatabaseConnection[];
|
|
169
135
|
} | {
|
|
170
136
|
provide: import("../..").RepositoryProvider;
|
|
@@ -188,19 +154,15 @@ export declare const modelProviders: ({
|
|
|
188
154
|
useFactory: (companyCommonRepository: import("./companies").CompanyCommonRepository, meetingRequestCommonRepository: import("./meetings").MeetingRequestCommonRepository, meetingCommonRepository: import("./meetings").MeetingCommonRepository, subscriptionLogRepository: import("./subscriptions").SubscriptionLogRepository) => import("./companies").CompanyCommonService;
|
|
189
155
|
} | {
|
|
190
156
|
provide: import("../..").DatabaseModel;
|
|
191
|
-
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./users").RolePermission, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./users").RolePermission
|
|
157
|
+
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./users").RolePermission, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./users").RolePermission> & import("./users").RolePermission & Required<{
|
|
192
158
|
_id: string;
|
|
193
|
-
}
|
|
194
|
-
__v: number;
|
|
195
|
-
}, any>;
|
|
159
|
+
}>, any>;
|
|
196
160
|
inject: import("../..").DatabaseConnection[];
|
|
197
161
|
} | {
|
|
198
162
|
provide: import("../..").DatabaseModel;
|
|
199
|
-
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<import("./users").User, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./users").User
|
|
163
|
+
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<import("./users").User, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./users").User> & import("./users").User & Required<{
|
|
200
164
|
_id: string;
|
|
201
|
-
}
|
|
202
|
-
__v: number;
|
|
203
|
-
}, any>;
|
|
165
|
+
}>, any>;
|
|
204
166
|
inject: import("../..").DatabaseConnection[];
|
|
205
167
|
} | {
|
|
206
168
|
provide: import("../..").RepositoryProvider;
|
|
@@ -208,27 +170,21 @@ export declare const modelProviders: ({
|
|
|
208
170
|
useFactory: (userRepositoryService: import("../..").CustomModel<import("./users").User>) => import("./users").UserCommonRepository;
|
|
209
171
|
} | {
|
|
210
172
|
provide: import("../..").DatabaseModel;
|
|
211
|
-
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./events").EventType, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./events").EventType
|
|
173
|
+
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./events").EventType, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./events").EventType> & import("./events").EventType & Required<{
|
|
212
174
|
_id: string;
|
|
213
|
-
}
|
|
214
|
-
__v: number;
|
|
215
|
-
}, any>;
|
|
175
|
+
}>, any>;
|
|
216
176
|
inject: import("../..").DatabaseConnection[];
|
|
217
177
|
} | {
|
|
218
178
|
provide: import("../..").DatabaseModel;
|
|
219
|
-
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./events").EventProfile, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./events").EventProfile
|
|
179
|
+
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./events").EventProfile, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./events").EventProfile> & import("./events").EventProfile & Required<{
|
|
220
180
|
_id: string;
|
|
221
|
-
}
|
|
222
|
-
__v: number;
|
|
223
|
-
}, any>;
|
|
181
|
+
}>, any>;
|
|
224
182
|
inject: import("../..").DatabaseConnection[];
|
|
225
183
|
} | {
|
|
226
184
|
provide: import("../..").DatabaseModel;
|
|
227
|
-
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, userConnection: import("mongoose").Connection) => import("mongoose").Model<import("./events").Event, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./events").Event
|
|
185
|
+
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, userConnection: import("mongoose").Connection) => import("mongoose").Model<import("./events").Event, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./events").Event> & import("./events").Event & Required<{
|
|
228
186
|
_id: string;
|
|
229
|
-
}
|
|
230
|
-
__v: number;
|
|
231
|
-
}, any>;
|
|
187
|
+
}>, any>;
|
|
232
188
|
inject: import("../..").DatabaseConnection[];
|
|
233
189
|
} | {
|
|
234
190
|
provide: import("../..").RepositoryProvider;
|
|
@@ -30,8 +30,6 @@ export declare class CompanySubscription {
|
|
|
30
30
|
stripeSubscriptionId?: string;
|
|
31
31
|
}
|
|
32
32
|
export declare const getCompanySubscriptionSchema: (connection: Connection, companyConnection: Connection, eventConnection: Connection) => Schema<CompanySubscription, CompanySubscriptionModel>;
|
|
33
|
-
export declare const companySubscriptionFactory: (connection: Connection, companyConnection: Connection, eventConnection: Connection) => import("mongoose").Model<CompanySubscription, {}, {}, {}, import("mongoose").Document<unknown, {}, CompanySubscription
|
|
33
|
+
export declare const companySubscriptionFactory: (connection: Connection, companyConnection: Connection, eventConnection: Connection) => import("mongoose").Model<CompanySubscription, {}, {}, {}, import("mongoose").Document<unknown, {}, CompanySubscription> & CompanySubscription & Required<{
|
|
34
34
|
_id: string;
|
|
35
|
-
}
|
|
36
|
-
__v: number;
|
|
37
|
-
}, any>;
|
|
35
|
+
}>, any>;
|
|
@@ -21,8 +21,6 @@ export declare class EventSubscription {
|
|
|
21
21
|
updatedAt: Date;
|
|
22
22
|
badges: any[];
|
|
23
23
|
}
|
|
24
|
-
export declare const eventSubscriptionFactory: (connection: Connection, companyConnection: Connection, eventConnection: Connection) => import("mongoose").Model<EventSubscription, {}, {}, {}, import("mongoose").Document<unknown, {}, EventSubscription
|
|
24
|
+
export declare const eventSubscriptionFactory: (connection: Connection, companyConnection: Connection, eventConnection: Connection) => import("mongoose").Model<EventSubscription, {}, {}, {}, import("mongoose").Document<unknown, {}, EventSubscription> & EventSubscription & Required<{
|
|
25
25
|
_id: string;
|
|
26
|
-
}
|
|
27
|
-
__v: number;
|
|
28
|
-
}, any>;
|
|
26
|
+
}>, any>;
|
|
@@ -16,8 +16,6 @@ export declare class Feature {
|
|
|
16
16
|
assessmentFeature: boolean;
|
|
17
17
|
}
|
|
18
18
|
export declare const getFeatureSchema: () => Schema<Feature, FeatureModel>;
|
|
19
|
-
export declare const featureFactory: (connection: Connection) => import("mongoose").Model<Feature, {}, {}, {}, import("mongoose").Document<unknown, {}, Feature
|
|
19
|
+
export declare const featureFactory: (connection: Connection) => import("mongoose").Model<Feature, {}, {}, {}, import("mongoose").Document<unknown, {}, Feature> & Feature & Required<{
|
|
20
20
|
_id: string;
|
|
21
|
-
}
|
|
22
|
-
__v: number;
|
|
23
|
-
}, any>;
|
|
21
|
+
}>, any>;
|
|
@@ -30,8 +30,6 @@ export declare class ManagedServiceSubscription {
|
|
|
30
30
|
stripeSubscriptionId?: string;
|
|
31
31
|
}
|
|
32
32
|
export declare const getManagedServiceSubscriptionSchema: (connection: Connection, companyConnection: Connection, eventConnection: Connection) => Schema<ManagedServiceSubscription, ManagedServiceSubscriptionModel>;
|
|
33
|
-
export declare const managedServiceSubscriptionFactory: (connection: Connection, companyConnection: Connection, eventConnection: Connection) => import("mongoose").Model<ManagedServiceSubscription, {}, {}, {}, import("mongoose").Document<unknown, {}, ManagedServiceSubscription
|
|
33
|
+
export declare const managedServiceSubscriptionFactory: (connection: Connection, companyConnection: Connection, eventConnection: Connection) => import("mongoose").Model<ManagedServiceSubscription, {}, {}, {}, import("mongoose").Document<unknown, {}, ManagedServiceSubscription> & ManagedServiceSubscription & Required<{
|
|
34
34
|
_id: string;
|
|
35
|
-
}
|
|
36
|
-
__v: number;
|
|
37
|
-
}, any>;
|
|
35
|
+
}>, any>;
|
|
@@ -35,8 +35,6 @@ export declare class Subscription {
|
|
|
35
35
|
updatedAt?: Date;
|
|
36
36
|
}
|
|
37
37
|
export declare const getSubscriptionSchema: (connection: Connection) => Schema<Subscription, SubscriptionModel>;
|
|
38
|
-
export declare const subscriptionFactory: (connection: Connection) => import("mongoose").Model<Subscription, {}, {}, {}, import("mongoose").Document<unknown, {}, Subscription
|
|
38
|
+
export declare const subscriptionFactory: (connection: Connection) => import("mongoose").Model<Subscription, {}, {}, {}, import("mongoose").Document<unknown, {}, Subscription> & Subscription & Required<{
|
|
39
39
|
_id: string;
|
|
40
|
-
}
|
|
41
|
-
__v: number;
|
|
42
|
-
}, any>;
|
|
40
|
+
}>, any>;
|
package/build/entities/models/subscriptions/entities/subscriptionLogs/subscription-log.entity.d.ts
CHANGED
|
@@ -21,8 +21,6 @@ export declare class SubscriptionLog {
|
|
|
21
21
|
relatedRecordId?: any;
|
|
22
22
|
createdAt: Date;
|
|
23
23
|
}
|
|
24
|
-
export declare const subscriptionLogFactory: (connection: Connection, companyConnection: Connection, userConnection: Connection) => import("mongoose").Model<SubscriptionLog, {}, {}, {}, import("mongoose").Document<unknown, {}, SubscriptionLog
|
|
24
|
+
export declare const subscriptionLogFactory: (connection: Connection, companyConnection: Connection, userConnection: Connection) => import("mongoose").Model<SubscriptionLog, {}, {}, {}, import("mongoose").Document<unknown, {}, SubscriptionLog> & SubscriptionLog & Required<{
|
|
25
25
|
_id: string;
|
|
26
|
-
}
|
|
27
|
-
__v: number;
|
|
28
|
-
}, any>;
|
|
26
|
+
}>, any>;
|
|
@@ -9,51 +9,39 @@ import { CompanySubscriptionCommonRepository, EventSubscriptionCommonRepository,
|
|
|
9
9
|
import { CustomModel } from "../../../db/CustomModel";
|
|
10
10
|
export declare const subscriptionProviders: ({
|
|
11
11
|
provide: DatabaseModel;
|
|
12
|
-
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./entities/subscription/subscription.entity").Subscription, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./entities/subscription/subscription.entity").Subscription
|
|
12
|
+
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./entities/subscription/subscription.entity").Subscription, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./entities/subscription/subscription.entity").Subscription> & import("./entities/subscription/subscription.entity").Subscription & Required<{
|
|
13
13
|
_id: string;
|
|
14
|
-
}
|
|
15
|
-
__v: number;
|
|
16
|
-
}, any>;
|
|
14
|
+
}>, any>;
|
|
17
15
|
inject: DatabaseConnection[];
|
|
18
16
|
} | {
|
|
19
17
|
provide: DatabaseModel;
|
|
20
|
-
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<ManagedServiceSubscription, {}, {}, {}, import("mongoose").Document<unknown, {}, ManagedServiceSubscription
|
|
18
|
+
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<ManagedServiceSubscription, {}, {}, {}, import("mongoose").Document<unknown, {}, ManagedServiceSubscription> & ManagedServiceSubscription & Required<{
|
|
21
19
|
_id: string;
|
|
22
|
-
}
|
|
23
|
-
__v: number;
|
|
24
|
-
}, any>;
|
|
20
|
+
}>, any>;
|
|
25
21
|
inject: DatabaseConnection[];
|
|
26
22
|
} | {
|
|
27
23
|
provide: DatabaseModel;
|
|
28
|
-
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./entities/features").Feature, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./entities/features").Feature
|
|
24
|
+
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./entities/features").Feature, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./entities/features").Feature> & import("./entities/features").Feature & Required<{
|
|
29
25
|
_id: string;
|
|
30
|
-
}
|
|
31
|
-
__v: number;
|
|
32
|
-
}, any>;
|
|
26
|
+
}>, any>;
|
|
33
27
|
inject: DatabaseConnection[];
|
|
34
28
|
} | {
|
|
35
29
|
provide: DatabaseModel;
|
|
36
|
-
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<CompanySubscription, {}, {}, {}, import("mongoose").Document<unknown, {}, CompanySubscription
|
|
30
|
+
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<CompanySubscription, {}, {}, {}, import("mongoose").Document<unknown, {}, CompanySubscription> & CompanySubscription & Required<{
|
|
37
31
|
_id: string;
|
|
38
|
-
}
|
|
39
|
-
__v: number;
|
|
40
|
-
}, any>;
|
|
32
|
+
}>, any>;
|
|
41
33
|
inject: DatabaseConnection[];
|
|
42
34
|
} | {
|
|
43
35
|
provide: DatabaseModel;
|
|
44
|
-
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<EventSubscription, {}, {}, {}, import("mongoose").Document<unknown, {}, EventSubscription
|
|
36
|
+
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<EventSubscription, {}, {}, {}, import("mongoose").Document<unknown, {}, EventSubscription> & EventSubscription & Required<{
|
|
45
37
|
_id: string;
|
|
46
|
-
}
|
|
47
|
-
__v: number;
|
|
48
|
-
}, any>;
|
|
38
|
+
}>, any>;
|
|
49
39
|
inject: DatabaseConnection[];
|
|
50
40
|
} | {
|
|
51
41
|
provide: DatabaseModel;
|
|
52
|
-
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, userConnection: import("mongoose").Connection) => import("mongoose").Model<SubscriptionLog, {}, {}, {}, import("mongoose").Document<unknown, {}, SubscriptionLog
|
|
42
|
+
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, userConnection: import("mongoose").Connection) => import("mongoose").Model<SubscriptionLog, {}, {}, {}, import("mongoose").Document<unknown, {}, SubscriptionLog> & SubscriptionLog & Required<{
|
|
53
43
|
_id: string;
|
|
54
|
-
}
|
|
55
|
-
__v: number;
|
|
56
|
-
}, any>;
|
|
44
|
+
}>, any>;
|
|
57
45
|
inject: DatabaseConnection[];
|
|
58
46
|
} | {
|
|
59
47
|
provide: RepositoryProvider;
|
|
@@ -9,8 +9,6 @@ export declare class Permission {
|
|
|
9
9
|
route: string;
|
|
10
10
|
isAllowed: boolean;
|
|
11
11
|
}
|
|
12
|
-
export declare const PermissionSchema: Schema<Permission, PermissionModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, Permission, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<Permission
|
|
12
|
+
export declare const PermissionSchema: Schema<Permission, PermissionModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, Permission, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<Permission>> & import("mongoose").FlatRecord<Permission> & Required<{
|
|
13
13
|
_id: string;
|
|
14
|
-
}
|
|
15
|
-
__v: number;
|
|
16
|
-
}>;
|
|
14
|
+
}>>;
|
|
@@ -12,8 +12,6 @@ export declare class RolePermission {
|
|
|
12
12
|
createdAt: Date;
|
|
13
13
|
updatedAt: Date;
|
|
14
14
|
}
|
|
15
|
-
export declare const rolePermissionFactory: (connection: Connection) => import("mongoose").Model<RolePermission, {}, {}, {}, import("mongoose").Document<unknown, {}, RolePermission
|
|
15
|
+
export declare const rolePermissionFactory: (connection: Connection) => import("mongoose").Model<RolePermission, {}, {}, {}, import("mongoose").Document<unknown, {}, RolePermission> & RolePermission & Required<{
|
|
16
16
|
_id: string;
|
|
17
|
-
}
|
|
18
|
-
__v: number;
|
|
19
|
-
}, any>;
|
|
17
|
+
}>, any>;
|
|
@@ -6,8 +6,6 @@ export declare class ChatInfo {
|
|
|
6
6
|
password: string;
|
|
7
7
|
token: string;
|
|
8
8
|
}
|
|
9
|
-
export declare const ChatInfoSchema: Schema<ChatInfo, ChatInfoModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ChatInfo, Document<unknown, {}, import("mongoose").FlatRecord<ChatInfo
|
|
9
|
+
export declare const ChatInfoSchema: Schema<ChatInfo, ChatInfoModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ChatInfo, Document<unknown, {}, import("mongoose").FlatRecord<ChatInfo>> & import("mongoose").FlatRecord<ChatInfo> & Required<{
|
|
10
10
|
_id: string;
|
|
11
|
-
}
|
|
12
|
-
__v: number;
|
|
13
|
-
}>;
|
|
11
|
+
}>>;
|
|
@@ -41,8 +41,6 @@ export declare class User {
|
|
|
41
41
|
createdAt: Date;
|
|
42
42
|
updatedAt: Date;
|
|
43
43
|
}
|
|
44
|
-
export declare const userFactory: (connection: Connection, companyConnection: Connection, eventConnection: Connection) => import("mongoose").Model<User, {}, {}, {}, import("mongoose").Document<unknown, {}, User
|
|
44
|
+
export declare const userFactory: (connection: Connection, companyConnection: Connection, eventConnection: Connection) => import("mongoose").Model<User, {}, {}, {}, import("mongoose").Document<unknown, {}, User> & User & Required<{
|
|
45
45
|
_id: string;
|
|
46
|
-
}
|
|
47
|
-
__v: number;
|
|
48
|
-
}, any>;
|
|
46
|
+
}>, any>;
|
|
@@ -6,19 +6,15 @@ import { CustomModel } from "../../../db/CustomModel";
|
|
|
6
6
|
import { UserCommonRepository } from "./repositories";
|
|
7
7
|
export declare const userProviders: ({
|
|
8
8
|
provide: DatabaseModel;
|
|
9
|
-
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./entities/rolePermissions").RolePermission, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./entities/rolePermissions").RolePermission
|
|
9
|
+
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./entities/rolePermissions").RolePermission, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./entities/rolePermissions").RolePermission> & import("./entities/rolePermissions").RolePermission & Required<{
|
|
10
10
|
_id: string;
|
|
11
|
-
}
|
|
12
|
-
__v: number;
|
|
13
|
-
}, any>;
|
|
11
|
+
}>, any>;
|
|
14
12
|
inject: DatabaseConnection[];
|
|
15
13
|
} | {
|
|
16
14
|
provide: DatabaseModel;
|
|
17
|
-
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<User, {}, {}, {}, import("mongoose").Document<unknown, {}, User
|
|
15
|
+
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<User, {}, {}, {}, import("mongoose").Document<unknown, {}, User> & User & Required<{
|
|
18
16
|
_id: string;
|
|
19
|
-
}
|
|
20
|
-
__v: number;
|
|
21
|
-
}, any>;
|
|
17
|
+
}>, any>;
|
|
22
18
|
inject: DatabaseConnection[];
|
|
23
19
|
} | {
|
|
24
20
|
provide: RepositoryProvider;
|