@aldb2b/common 1.0.2140 → 1.0.2141
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 +12 -6
- package/build/entities/models/common/entities/audit-trail.entity.d.ts +4 -2
- package/build/entities/models/common/entities/location.entity.d.ts +4 -2
- package/build/entities/models/common/entities/preference-customization.entity.d.ts +4 -2
- package/build/entities/models/common/entities/tracing.entity.d.ts +4 -2
- package/build/entities/models/companies/companies.provider.d.ts +32 -16
- package/build/entities/models/companies/entities/categories/category.schema.d.ts +4 -2
- package/build/entities/models/companies/entities/cities/city.schema.d.ts +4 -2
- package/build/entities/models/companies/entities/companies/company.entity.d.ts +4 -2
- package/build/entities/models/companies/entities/contacts/contact.entity.d.ts +4 -2
- package/build/entities/models/companies/entities/countries/country.schema.d.ts +4 -2
- package/build/entities/models/companies/entities/itps/itp.entity.d.ts +4 -2
- package/build/entities/models/events/entities/event/event.entity.d.ts +4 -2
- package/build/entities/models/events/entities/eventProfile/company-profile-item.entity.d.ts +4 -2
- package/build/entities/models/events/entities/eventProfile/event-profile.entity.d.ts +4 -2
- package/build/entities/models/events/entities/eventType/event-type.entity.d.ts +4 -2
- package/build/entities/models/events/entities/timestamp.entity.d.ts +4 -2
- package/build/entities/models/events/events.provider.d.ts +12 -6
- package/build/entities/models/meetings/entities/meetingRequests/meeting-request.entity.d.ts +4 -2
- package/build/entities/models/meetings/entities/meetings/meeting.entity.d.ts +4 -2
- package/build/entities/models/meetings/entities/userAvailabilities/user-availability-timeslot.entity.d.ts +4 -2
- package/build/entities/models/meetings/entities/userAvailabilities/user-availability.entity.d.ts +4 -2
- package/build/entities/models/meetings/meetings.provider.d.ts +12 -6
- package/build/entities/models/model.providers.d.ts +88 -44
- package/build/entities/models/subscriptions/entities/companySubscriptions/company-subscription.entity.d.ts +4 -2
- package/build/entities/models/subscriptions/entities/eventSubscriptions/event-subscription.entity.d.ts +4 -2
- package/build/entities/models/subscriptions/entities/features/feature.entity.d.ts +4 -2
- package/build/entities/models/subscriptions/entities/managedServiceSubscriptions/managed-service-subscription.entity.d.ts +4 -2
- package/build/entities/models/subscriptions/entities/subscription/subscription.entity.d.ts +4 -2
- package/build/entities/models/subscriptions/entities/subscriptionLogs/subscription-log.entity.d.ts +4 -2
- package/build/entities/models/subscriptions/subscriptions.provider.d.ts +24 -12
- package/build/entities/models/users/entities/rolePermissions/permission.entity.d.ts +4 -2
- package/build/entities/models/users/entities/rolePermissions/role-permission.entity.d.ts +4 -2
- package/build/entities/models/users/entities/users/chat-info.entity.d.ts +4 -2
- package/build/entities/models/users/entities/users/user.entity.d.ts +4 -2
- package/build/entities/models/users/users.provider.d.ts +8 -4
- package/build/events/bot-survey-feedback.interface.d.ts +15 -0
- package/build/events/bot-survey-feedback.interface.js +3 -0
- package/build/events/bot-survey-feedback.interface.js.map +1 -0
- package/build/events/bot-survey-transition.interface.d.ts +15 -0
- package/build/events/bot-survey-transition.interface.js +3 -0
- package/build/events/bot-survey-transition.interface.js.map +1 -0
- package/build/events/mutate-whatsapp-flow.interface.d.ts +2 -1
- package/build/events/queues.d.ts +1 -0
- package/build/events/queues.js +1 -0
- package/build/events/queues.js.map +1 -1
- package/build/events/send-notifications.interface.d.ts +8 -7
- package/build/events/subjects.d.ts +2 -0
- package/build/events/subjects.js +2 -0
- package/build/events/subjects.js.map +1 -1
- package/build/index.d.ts +3 -0
- package/build/index.js +3 -0
- package/build/index.js.map +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/build/types/notification-type.enum.d.ts +1 -0
- package/build/types/notification-type.enum.js +1 -0
- package/build/types/notification-type.enum.js.map +1 -1
- package/build/types/question.d.ts +14 -0
- package/build/types/question.js +3 -0
- package/build/types/question.js.map +1 -0
- package/package.json +46 -46
|
@@ -13,9 +13,11 @@ import { Tracing } from "./entities/tracing.entity";
|
|
|
13
13
|
import { TracingRepository } from "./repositories/tracing.repository";
|
|
14
14
|
export declare const commonProviders: ({
|
|
15
15
|
provide: DatabaseModel;
|
|
16
|
-
useFactory: (connection: import("mongoose").Connection, eventConnection: import("mongoose").Connection, userConnection: import("mongoose").Connection) => import("mongoose").Model<AuditTrail, {}, {}, {}, import("mongoose").Document<unknown, {}, AuditTrail> & AuditTrail & Required<{
|
|
16
|
+
useFactory: (connection: import("mongoose").Connection, eventConnection: import("mongoose").Connection, userConnection: import("mongoose").Connection) => import("mongoose").Model<AuditTrail, {}, {}, {}, import("mongoose").Document<unknown, {}, AuditTrail, {}, {}> & AuditTrail & Required<{
|
|
17
17
|
_id: string;
|
|
18
|
-
}
|
|
18
|
+
}> & {
|
|
19
|
+
__v: number;
|
|
20
|
+
}, any>;
|
|
19
21
|
inject: DatabaseConnection[];
|
|
20
22
|
} | {
|
|
21
23
|
provide: RepositoryProvider;
|
|
@@ -27,9 +29,11 @@ export declare const commonProviders: ({
|
|
|
27
29
|
useFactory: (auditLogRepository: AuditTrailRepository, userModel: CustomModel<User>) => AuditTrailService;
|
|
28
30
|
} | {
|
|
29
31
|
provide: DatabaseModel;
|
|
30
|
-
useFactory: (connection: import("mongoose").Connection, eventConnection: import("mongoose").Connection, companyConnection: import("mongoose").Connection) => import("mongoose").Model<PreferenceCustomization, {}, {}, {}, import("mongoose").Document<unknown, {}, PreferenceCustomization> & PreferenceCustomization & Required<{
|
|
32
|
+
useFactory: (connection: import("mongoose").Connection, eventConnection: import("mongoose").Connection, companyConnection: import("mongoose").Connection) => import("mongoose").Model<PreferenceCustomization, {}, {}, {}, import("mongoose").Document<unknown, {}, PreferenceCustomization, {}, {}> & PreferenceCustomization & Required<{
|
|
31
33
|
_id: string;
|
|
32
|
-
}
|
|
34
|
+
}> & {
|
|
35
|
+
__v: number;
|
|
36
|
+
}, any>;
|
|
33
37
|
inject: DatabaseConnection[];
|
|
34
38
|
} | {
|
|
35
39
|
provide: RepositoryProvider;
|
|
@@ -37,9 +41,11 @@ export declare const commonProviders: ({
|
|
|
37
41
|
useFactory: (preferenceCustomizationModel: CustomModel<PreferenceCustomization>) => PreferenceCustomizationRepository;
|
|
38
42
|
} | {
|
|
39
43
|
provide: DatabaseModel;
|
|
40
|
-
useFactory: (connection: import("mongoose").Connection, eventConnection: import("mongoose").Connection, userConnection: import("mongoose").Connection) => import("mongoose").Model<Tracing, {}, {}, {}, import("mongoose").Document<unknown, {}, Tracing> & Tracing & Required<{
|
|
44
|
+
useFactory: (connection: import("mongoose").Connection, eventConnection: import("mongoose").Connection, userConnection: import("mongoose").Connection) => import("mongoose").Model<Tracing, {}, {}, {}, import("mongoose").Document<unknown, {}, Tracing, {}, {}> & Tracing & Required<{
|
|
41
45
|
_id: string;
|
|
42
|
-
}
|
|
46
|
+
}> & {
|
|
47
|
+
__v: number;
|
|
48
|
+
}, any>;
|
|
43
49
|
inject: DatabaseConnection[];
|
|
44
50
|
} | {
|
|
45
51
|
provide: RepositoryProvider;
|
|
@@ -18,6 +18,8 @@ export declare class AuditTrail {
|
|
|
18
18
|
performedByName: string;
|
|
19
19
|
performedAt: Date;
|
|
20
20
|
}
|
|
21
|
-
export declare const auditTrailFactory: (connection: Connection, eventConnection: Connection, userConnection: Connection) => import("mongoose").Model<AuditTrail, {}, {}, {}, import("mongoose").Document<unknown, {}, AuditTrail> & AuditTrail & Required<{
|
|
21
|
+
export declare const auditTrailFactory: (connection: Connection, eventConnection: Connection, userConnection: Connection) => import("mongoose").Model<AuditTrail, {}, {}, {}, import("mongoose").Document<unknown, {}, AuditTrail, {}, {}> & AuditTrail & Required<{
|
|
22
22
|
_id: string;
|
|
23
|
-
}
|
|
23
|
+
}> & {
|
|
24
|
+
__v: number;
|
|
25
|
+
}, any>;
|
|
@@ -6,6 +6,8 @@ export declare class Location {
|
|
|
6
6
|
type: string;
|
|
7
7
|
coordinates: number[];
|
|
8
8
|
}
|
|
9
|
-
export declare const LocationSchema: Schema<Location, LocationModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, Location, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<Location
|
|
9
|
+
export declare const LocationSchema: Schema<Location, LocationModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, Location, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<Location>, {}, import("mongoose").DefaultSchemaOptions> & import("mongoose").FlatRecord<Location> & Required<{
|
|
10
10
|
_id: string;
|
|
11
|
-
}
|
|
11
|
+
}> & {
|
|
12
|
+
__v: number;
|
|
13
|
+
}>;
|
|
@@ -22,6 +22,8 @@ export declare class PreferenceCustomization {
|
|
|
22
22
|
createdAt: Date;
|
|
23
23
|
updatedAt: Date;
|
|
24
24
|
}
|
|
25
|
-
export declare const preferenceCustomizationFactory: (connection: Connection, eventConnection: Connection, companyConnection: Connection) => import("mongoose").Model<PreferenceCustomization, {}, {}, {}, import("mongoose").Document<unknown, {}, PreferenceCustomization> & PreferenceCustomization & Required<{
|
|
25
|
+
export declare const preferenceCustomizationFactory: (connection: Connection, eventConnection: Connection, companyConnection: Connection) => import("mongoose").Model<PreferenceCustomization, {}, {}, {}, import("mongoose").Document<unknown, {}, PreferenceCustomization, {}, {}> & PreferenceCustomization & Required<{
|
|
26
26
|
_id: string;
|
|
27
|
-
}
|
|
27
|
+
}> & {
|
|
28
|
+
__v: number;
|
|
29
|
+
}, any>;
|
|
@@ -19,6 +19,8 @@ export declare class Tracing {
|
|
|
19
19
|
createdAt: Date;
|
|
20
20
|
updatedAt: Date;
|
|
21
21
|
}
|
|
22
|
-
export declare const TracingFactory: (connection: Connection, eventConnection: Connection, userConnection: Connection) => import("mongoose").Model<Tracing, {}, {}, {}, import("mongoose").Document<unknown, {}, Tracing> & Tracing & Required<{
|
|
22
|
+
export declare const TracingFactory: (connection: Connection, eventConnection: Connection, userConnection: Connection) => import("mongoose").Model<Tracing, {}, {}, {}, import("mongoose").Document<unknown, {}, Tracing, {}, {}> & Tracing & Required<{
|
|
23
23
|
_id: string;
|
|
24
|
-
}
|
|
24
|
+
}> & {
|
|
25
|
+
__v: number;
|
|
26
|
+
}, any>;
|
|
@@ -14,51 +14,67 @@ import { SubscriptionLog } from "../subscriptions";
|
|
|
14
14
|
import { ContactCommonRepository } from "./repositories/contact-common.repository";
|
|
15
15
|
export declare const companiesProviders: ({
|
|
16
16
|
provide: DatabaseModel;
|
|
17
|
-
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./entities/countries/country.schema").Country, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./entities/countries/country.schema").Country> & import("./entities/countries/country.schema").Country & Required<{
|
|
17
|
+
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./entities/countries/country.schema").Country, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./entities/countries/country.schema").Country, {}, {}> & import("./entities/countries/country.schema").Country & Required<{
|
|
18
18
|
_id: string;
|
|
19
|
-
}
|
|
19
|
+
}> & {
|
|
20
|
+
__v: number;
|
|
21
|
+
}, any>;
|
|
20
22
|
inject: DatabaseConnection[];
|
|
21
23
|
} | {
|
|
22
24
|
provide: DatabaseModel;
|
|
23
|
-
useFactory: (connection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<import("./entities/categories/category.schema").Category, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./entities/categories/category.schema").Category> & import("./entities/categories/category.schema").Category & Required<{
|
|
25
|
+
useFactory: (connection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<import("./entities/categories/category.schema").Category, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./entities/categories/category.schema").Category, {}, {}> & import("./entities/categories/category.schema").Category & Required<{
|
|
24
26
|
_id: string;
|
|
25
|
-
}
|
|
27
|
+
}> & {
|
|
28
|
+
__v: number;
|
|
29
|
+
}, any>;
|
|
26
30
|
inject: DatabaseConnection[];
|
|
27
31
|
} | {
|
|
28
32
|
provide: DatabaseModel;
|
|
29
|
-
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./entities/cities/city.schema").City, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./entities/cities/city.schema").City> & import("./entities/cities/city.schema").City & Required<{
|
|
33
|
+
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./entities/cities/city.schema").City, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./entities/cities/city.schema").City, {}, {}> & import("./entities/cities/city.schema").City & Required<{
|
|
30
34
|
_id: string;
|
|
31
|
-
}
|
|
35
|
+
}> & {
|
|
36
|
+
__v: number;
|
|
37
|
+
}, any>;
|
|
32
38
|
inject: DatabaseConnection[];
|
|
33
39
|
} | {
|
|
34
40
|
provide: DatabaseModel;
|
|
35
|
-
useFactory: (connection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<Company, {}, {}, {}, import("mongoose").Document<unknown, {}, Company> & Company & Required<{
|
|
41
|
+
useFactory: (connection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<Company, {}, {}, {}, import("mongoose").Document<unknown, {}, Company, {}, {}> & Company & Required<{
|
|
36
42
|
_id: string;
|
|
37
|
-
}
|
|
43
|
+
}> & {
|
|
44
|
+
__v: number;
|
|
45
|
+
}, any>;
|
|
38
46
|
inject: DatabaseConnection[];
|
|
39
47
|
} | {
|
|
40
48
|
provide: DatabaseModel;
|
|
41
|
-
useFactory: (connection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<import("./entities/contacts/contact.entity").Contact, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./entities/contacts/contact.entity").Contact> & import("./entities/contacts/contact.entity").Contact & Required<{
|
|
49
|
+
useFactory: (connection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<import("./entities/contacts/contact.entity").Contact, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./entities/contacts/contact.entity").Contact, {}, {}> & import("./entities/contacts/contact.entity").Contact & Required<{
|
|
42
50
|
_id: string;
|
|
43
|
-
}
|
|
51
|
+
}> & {
|
|
52
|
+
__v: number;
|
|
53
|
+
}, any>;
|
|
44
54
|
inject: DatabaseConnection[];
|
|
45
55
|
} | {
|
|
46
56
|
provide: DatabaseModel;
|
|
47
|
-
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<MeetingRequest, {}, {}, {}, import("mongoose").Document<unknown, {}, MeetingRequest> & MeetingRequest & Required<{
|
|
57
|
+
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<MeetingRequest, {}, {}, {}, import("mongoose").Document<unknown, {}, MeetingRequest, {}, {}> & MeetingRequest & Required<{
|
|
48
58
|
_id: string;
|
|
49
|
-
}
|
|
59
|
+
}> & {
|
|
60
|
+
__v: number;
|
|
61
|
+
}, any>;
|
|
50
62
|
inject: DatabaseConnection[];
|
|
51
63
|
} | {
|
|
52
64
|
provide: DatabaseModel;
|
|
53
|
-
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection, subscriptionConnection: import("mongoose").Connection) => import("mongoose").Model<Meeting, {}, {}, {}, import("mongoose").Document<unknown, {}, Meeting> & Meeting & Required<{
|
|
65
|
+
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection, subscriptionConnection: import("mongoose").Connection) => import("mongoose").Model<Meeting, {}, {}, {}, import("mongoose").Document<unknown, {}, Meeting, {}, {}> & Meeting & Required<{
|
|
54
66
|
_id: string;
|
|
55
|
-
}
|
|
67
|
+
}> & {
|
|
68
|
+
__v: number;
|
|
69
|
+
}, any>;
|
|
56
70
|
inject: DatabaseConnection[];
|
|
57
71
|
} | {
|
|
58
72
|
provide: DatabaseModel;
|
|
59
|
-
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, userConnection: import("mongoose").Connection) => import("mongoose").Model<SubscriptionLog, {}, {}, {}, import("mongoose").Document<unknown, {}, SubscriptionLog> & SubscriptionLog & Required<{
|
|
73
|
+
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, userConnection: import("mongoose").Connection) => import("mongoose").Model<SubscriptionLog, {}, {}, {}, import("mongoose").Document<unknown, {}, SubscriptionLog, {}, {}> & SubscriptionLog & Required<{
|
|
60
74
|
_id: string;
|
|
61
|
-
}
|
|
75
|
+
}> & {
|
|
76
|
+
__v: number;
|
|
77
|
+
}, any>;
|
|
62
78
|
inject: DatabaseConnection[];
|
|
63
79
|
} | {
|
|
64
80
|
provide: RepositoryProvider;
|
|
@@ -16,6 +16,8 @@ export declare class Category {
|
|
|
16
16
|
createdAt: Date;
|
|
17
17
|
updatedAt: Date;
|
|
18
18
|
}
|
|
19
|
-
export declare const categoryFactory: (connection: Connection, eventConnection: Connection) => import("mongoose").Model<Category, {}, {}, {}, import("mongoose").Document<unknown, {}, Category> & Category & Required<{
|
|
19
|
+
export declare const categoryFactory: (connection: Connection, eventConnection: Connection) => import("mongoose").Model<Category, {}, {}, {}, import("mongoose").Document<unknown, {}, Category, {}, {}> & Category & Required<{
|
|
20
20
|
_id: string;
|
|
21
|
-
}
|
|
21
|
+
}> & {
|
|
22
|
+
__v: number;
|
|
23
|
+
}, any>;
|
|
@@ -10,6 +10,8 @@ export declare class City {
|
|
|
10
10
|
createdAt: Date;
|
|
11
11
|
updatedAt: Date;
|
|
12
12
|
}
|
|
13
|
-
export declare const cityFactory: (connection: Connection) => import("mongoose").Model<City, {}, {}, {}, import("mongoose").Document<unknown, {}, City> & City & Required<{
|
|
13
|
+
export declare const cityFactory: (connection: Connection) => import("mongoose").Model<City, {}, {}, {}, import("mongoose").Document<unknown, {}, City, {}, {}> & City & Required<{
|
|
14
14
|
_id: string;
|
|
15
|
-
}
|
|
15
|
+
}> & {
|
|
16
|
+
__v: number;
|
|
17
|
+
}, any>;
|
|
@@ -136,7 +136,9 @@ export declare class Company {
|
|
|
136
136
|
groups?: any[];
|
|
137
137
|
assignee?: Assignee[];
|
|
138
138
|
}
|
|
139
|
-
export declare const companyFactory: (connection: Connection, eventConnection: Connection) => import("mongoose").Model<Company, {}, {}, {}, import("mongoose").Document<unknown, {}, Company> & Company & Required<{
|
|
139
|
+
export declare const companyFactory: (connection: Connection, eventConnection: Connection) => import("mongoose").Model<Company, {}, {}, {}, import("mongoose").Document<unknown, {}, Company, {}, {}> & Company & Required<{
|
|
140
140
|
_id: string;
|
|
141
|
-
}
|
|
141
|
+
}> & {
|
|
142
|
+
__v: number;
|
|
143
|
+
}, any>;
|
|
142
144
|
export declare const CompanyProperties: string[];
|
|
@@ -96,7 +96,9 @@ export declare class Contact {
|
|
|
96
96
|
dataCode: string;
|
|
97
97
|
groups: any[];
|
|
98
98
|
}
|
|
99
|
-
export declare const contactFactory: (connection: Connection, eventConnection: Connection) => import("mongoose").Model<Contact, {}, {}, {}, import("mongoose").Document<unknown, {}, Contact> & Contact & Required<{
|
|
99
|
+
export declare const contactFactory: (connection: Connection, eventConnection: Connection) => import("mongoose").Model<Contact, {}, {}, {}, import("mongoose").Document<unknown, {}, Contact, {}, {}> & Contact & Required<{
|
|
100
100
|
_id: string;
|
|
101
|
-
}
|
|
101
|
+
}> & {
|
|
102
|
+
__v: number;
|
|
103
|
+
}, any>;
|
|
102
104
|
export declare const ContactProperties: string[];
|
|
@@ -16,6 +16,8 @@ export declare class Country {
|
|
|
16
16
|
createdAt: Date;
|
|
17
17
|
updatedAt: Date;
|
|
18
18
|
}
|
|
19
|
-
export declare const countryFactory: (connection: Connection) => import("mongoose").Model<Country, {}, {}, {}, import("mongoose").Document<unknown, {}, Country> & Country & Required<{
|
|
19
|
+
export declare const countryFactory: (connection: Connection) => import("mongoose").Model<Country, {}, {}, {}, import("mongoose").Document<unknown, {}, Country, {}, {}> & Country & Required<{
|
|
20
20
|
_id: string;
|
|
21
|
-
}
|
|
21
|
+
}> & {
|
|
22
|
+
__v: number;
|
|
23
|
+
}, any>;
|
|
@@ -5,6 +5,8 @@ export declare class ITP {
|
|
|
5
5
|
_id: string;
|
|
6
6
|
title: string;
|
|
7
7
|
}
|
|
8
|
-
export declare const itpFactory: (connection: Connection) => import("mongoose").Model<ITP, {}, {}, {}, import("mongoose").Document<unknown, {}, ITP> & ITP & Required<{
|
|
8
|
+
export declare const itpFactory: (connection: Connection) => import("mongoose").Model<ITP, {}, {}, {}, import("mongoose").Document<unknown, {}, ITP, {}, {}> & ITP & Required<{
|
|
9
9
|
_id: string;
|
|
10
|
-
}
|
|
10
|
+
}> & {
|
|
11
|
+
__v: number;
|
|
12
|
+
}, any>;
|
|
@@ -38,6 +38,8 @@ export declare class Event {
|
|
|
38
38
|
createdAt: Date;
|
|
39
39
|
updatedAt: Date;
|
|
40
40
|
}
|
|
41
|
-
export declare const eventFactory: (connection: Connection, companyConnection: Connection, userConnection: Connection) => import("mongoose").Model<Event, {}, {}, {}, import("mongoose").Document<unknown, {}, Event> & Event & Required<{
|
|
41
|
+
export declare const eventFactory: (connection: Connection, companyConnection: Connection, userConnection: Connection) => import("mongoose").Model<Event, {}, {}, {}, import("mongoose").Document<unknown, {}, Event, {}, {}> & Event & Required<{
|
|
42
42
|
_id: string;
|
|
43
|
-
}
|
|
43
|
+
}> & {
|
|
44
|
+
__v: number;
|
|
45
|
+
}, any>;
|
|
@@ -19,6 +19,8 @@ export declare class CompanyProfileItem {
|
|
|
19
19
|
createdAt: Date;
|
|
20
20
|
updatedAt: Date;
|
|
21
21
|
}
|
|
22
|
-
export declare const CompanyProfileItemSchema: Schema<CompanyProfileItem, CompanyProfileItemModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, CompanyProfileItem, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<CompanyProfileItem
|
|
22
|
+
export declare const CompanyProfileItemSchema: Schema<CompanyProfileItem, CompanyProfileItemModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, CompanyProfileItem, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<CompanyProfileItem>, {}, import("mongoose").DefaultSchemaOptions> & import("mongoose").FlatRecord<CompanyProfileItem> & Required<{
|
|
23
23
|
_id: string;
|
|
24
|
-
}
|
|
24
|
+
}> & {
|
|
25
|
+
__v: number;
|
|
26
|
+
}>;
|
|
@@ -11,6 +11,8 @@ export declare class EventProfile {
|
|
|
11
11
|
createdAt: Date;
|
|
12
12
|
updatedAt: Date;
|
|
13
13
|
}
|
|
14
|
-
export declare const eventProfileFactory: (connection: Connection) => import("mongoose").Model<EventProfile, {}, {}, {}, import("mongoose").Document<unknown, {}, EventProfile> & EventProfile & Required<{
|
|
14
|
+
export declare const eventProfileFactory: (connection: Connection) => import("mongoose").Model<EventProfile, {}, {}, {}, import("mongoose").Document<unknown, {}, EventProfile, {}, {}> & EventProfile & Required<{
|
|
15
15
|
_id: string;
|
|
16
|
-
}
|
|
16
|
+
}> & {
|
|
17
|
+
__v: number;
|
|
18
|
+
}, any>;
|
|
@@ -9,6 +9,8 @@ export declare class EventType {
|
|
|
9
9
|
createdAt: Date;
|
|
10
10
|
updatedAt: Date;
|
|
11
11
|
}
|
|
12
|
-
export declare const eventTypeFactory: (connection: Connection) => import("mongoose").Model<EventType, {}, {}, {}, import("mongoose").Document<unknown, {}, EventType> & EventType & Required<{
|
|
12
|
+
export declare const eventTypeFactory: (connection: Connection) => import("mongoose").Model<EventType, {}, {}, {}, import("mongoose").Document<unknown, {}, EventType, {}, {}> & EventType & Required<{
|
|
13
13
|
_id: string;
|
|
14
|
-
}
|
|
14
|
+
}> & {
|
|
15
|
+
__v: number;
|
|
16
|
+
}, any>;
|
|
@@ -6,6 +6,8 @@ export declare class Timestamp {
|
|
|
6
6
|
startDate: Date;
|
|
7
7
|
endDate: Date;
|
|
8
8
|
}
|
|
9
|
-
export declare const TimestampSchema: Schema<Timestamp, TimestampModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, Timestamp, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<Timestamp
|
|
9
|
+
export declare const TimestampSchema: Schema<Timestamp, TimestampModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, Timestamp, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<Timestamp>, {}, import("mongoose").DefaultSchemaOptions> & import("mongoose").FlatRecord<Timestamp> & Required<{
|
|
10
10
|
_id: string;
|
|
11
|
-
}
|
|
11
|
+
}> & {
|
|
12
|
+
__v: number;
|
|
13
|
+
}>;
|
|
@@ -6,21 +6,27 @@ import { CustomModel } from "../../../db/CustomModel";
|
|
|
6
6
|
import { EventProfileRepository } from "./repositories/event-profile.repository";
|
|
7
7
|
export declare const eventProviders: ({
|
|
8
8
|
provide: DatabaseModel;
|
|
9
|
-
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./entities/eventType/event-type.entity").EventType, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./entities/eventType/event-type.entity").EventType> & import("./entities/eventType/event-type.entity").EventType & Required<{
|
|
9
|
+
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./entities/eventType/event-type.entity").EventType, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./entities/eventType/event-type.entity").EventType, {}, {}> & import("./entities/eventType/event-type.entity").EventType & Required<{
|
|
10
10
|
_id: string;
|
|
11
|
-
}
|
|
11
|
+
}> & {
|
|
12
|
+
__v: number;
|
|
13
|
+
}, any>;
|
|
12
14
|
inject: DatabaseConnection[];
|
|
13
15
|
} | {
|
|
14
16
|
provide: DatabaseModel;
|
|
15
|
-
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<EventProfile, {}, {}, {}, import("mongoose").Document<unknown, {}, EventProfile> & EventProfile & Required<{
|
|
17
|
+
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<EventProfile, {}, {}, {}, import("mongoose").Document<unknown, {}, EventProfile, {}, {}> & EventProfile & Required<{
|
|
16
18
|
_id: string;
|
|
17
|
-
}
|
|
19
|
+
}> & {
|
|
20
|
+
__v: number;
|
|
21
|
+
}, any>;
|
|
18
22
|
inject: DatabaseConnection[];
|
|
19
23
|
} | {
|
|
20
24
|
provide: DatabaseModel;
|
|
21
|
-
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, userConnection: import("mongoose").Connection) => import("mongoose").Model<import("./entities/event/event.entity").Event, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./entities/event/event.entity").Event> & import("./entities/event/event.entity").Event & Required<{
|
|
25
|
+
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, userConnection: import("mongoose").Connection) => import("mongoose").Model<import("./entities/event/event.entity").Event, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./entities/event/event.entity").Event, {}, {}> & import("./entities/event/event.entity").Event & Required<{
|
|
22
26
|
_id: string;
|
|
23
|
-
}
|
|
27
|
+
}> & {
|
|
28
|
+
__v: number;
|
|
29
|
+
}, any>;
|
|
24
30
|
inject: DatabaseConnection[];
|
|
25
31
|
} | {
|
|
26
32
|
provide: RepositoryProvider;
|
|
@@ -41,6 +41,8 @@ export declare class MeetingRequest {
|
|
|
41
41
|
updatedAt: Date;
|
|
42
42
|
hostType: CompanyUserType;
|
|
43
43
|
}
|
|
44
|
-
export declare const meetingRequestFactory: (connection: Connection, companyConnection: Connection, eventConnection: Connection) => import("mongoose").Model<MeetingRequest, {}, {}, {}, import("mongoose").Document<unknown, {}, MeetingRequest> & MeetingRequest & Required<{
|
|
44
|
+
export declare const meetingRequestFactory: (connection: Connection, companyConnection: Connection, eventConnection: Connection) => import("mongoose").Model<MeetingRequest, {}, {}, {}, import("mongoose").Document<unknown, {}, MeetingRequest, {}, {}> & MeetingRequest & Required<{
|
|
45
45
|
_id: string;
|
|
46
|
-
}
|
|
46
|
+
}> & {
|
|
47
|
+
__v: number;
|
|
48
|
+
}, any>;
|
|
@@ -56,6 +56,8 @@ export declare class Meeting {
|
|
|
56
56
|
hostType: CompanyUserType;
|
|
57
57
|
creationSource?: CreationSourceEnum;
|
|
58
58
|
}
|
|
59
|
-
export declare const meetingFactory: (connection: Connection, companyConnection: Connection, eventConnection: Connection, subscriptionConnection: Connection) => import("mongoose").Model<Meeting, {}, {}, {}, import("mongoose").Document<unknown, {}, Meeting> & Meeting & Required<{
|
|
59
|
+
export declare const meetingFactory: (connection: Connection, companyConnection: Connection, eventConnection: Connection, subscriptionConnection: Connection) => import("mongoose").Model<Meeting, {}, {}, {}, import("mongoose").Document<unknown, {}, Meeting, {}, {}> & Meeting & Required<{
|
|
60
60
|
_id: string;
|
|
61
|
-
}
|
|
61
|
+
}> & {
|
|
62
|
+
__v: number;
|
|
63
|
+
}, any>;
|
|
@@ -9,6 +9,8 @@ export declare class UserAvailabilityTimeSlot {
|
|
|
9
9
|
startTime: string;
|
|
10
10
|
endTime: string;
|
|
11
11
|
}
|
|
12
|
-
export declare const UserAvailabilityTimeSlotSchema: Schema<UserAvailabilityTimeSlot, UserAvailabilityTimeSlotModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, UserAvailabilityTimeSlot, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<UserAvailabilityTimeSlot
|
|
12
|
+
export declare const UserAvailabilityTimeSlotSchema: Schema<UserAvailabilityTimeSlot, UserAvailabilityTimeSlotModel, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, UserAvailabilityTimeSlot, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<UserAvailabilityTimeSlot>, {}, import("mongoose").DefaultSchemaOptions> & import("mongoose").FlatRecord<UserAvailabilityTimeSlot> & Required<{
|
|
13
13
|
_id: string;
|
|
14
|
-
}
|
|
14
|
+
}> & {
|
|
15
|
+
__v: number;
|
|
16
|
+
}>;
|
package/build/entities/models/meetings/entities/userAvailabilities/user-availability.entity.d.ts
CHANGED
|
@@ -24,6 +24,8 @@ export declare class UserAvailability {
|
|
|
24
24
|
createdAt: Date;
|
|
25
25
|
updatedAt: Date;
|
|
26
26
|
}
|
|
27
|
-
export declare const userAvailabilityFactory: (connection: Connection, companyConnection: Connection, eventConnection: Connection) => import("mongoose").Model<UserAvailability, {}, {}, {}, import("mongoose").Document<unknown, {}, UserAvailability> & UserAvailability & Required<{
|
|
27
|
+
export declare const userAvailabilityFactory: (connection: Connection, companyConnection: Connection, eventConnection: Connection) => import("mongoose").Model<UserAvailability, {}, {}, {}, import("mongoose").Document<unknown, {}, UserAvailability, {}, {}> & UserAvailability & Required<{
|
|
28
28
|
_id: string;
|
|
29
|
-
}
|
|
29
|
+
}> & {
|
|
30
|
+
__v: number;
|
|
31
|
+
}, any>;
|
|
@@ -2,20 +2,26 @@ import { DatabaseModel } from '../../../enums/database-model.enum';
|
|
|
2
2
|
import { DatabaseConnection } from '../../../enums/database-connection.enum';
|
|
3
3
|
export declare const meetingProviders: ({
|
|
4
4
|
provide: DatabaseModel;
|
|
5
|
-
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection, subscriptionConnection: import("mongoose").Connection) => import("mongoose").Model<import("./entities/meetings").Meeting, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./entities/meetings").Meeting> & import("./entities/meetings").Meeting & Required<{
|
|
5
|
+
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection, subscriptionConnection: import("mongoose").Connection) => import("mongoose").Model<import("./entities/meetings").Meeting, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./entities/meetings").Meeting, {}, {}> & import("./entities/meetings").Meeting & Required<{
|
|
6
6
|
_id: string;
|
|
7
|
-
}
|
|
7
|
+
}> & {
|
|
8
|
+
__v: number;
|
|
9
|
+
}, any>;
|
|
8
10
|
inject: DatabaseConnection[];
|
|
9
11
|
} | {
|
|
10
12
|
provide: DatabaseModel;
|
|
11
|
-
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<import("./entities/meetingRequests").MeetingRequest, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./entities/meetingRequests").MeetingRequest> & import("./entities/meetingRequests").MeetingRequest & Required<{
|
|
13
|
+
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<import("./entities/meetingRequests").MeetingRequest, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./entities/meetingRequests").MeetingRequest, {}, {}> & import("./entities/meetingRequests").MeetingRequest & Required<{
|
|
12
14
|
_id: string;
|
|
13
|
-
}
|
|
15
|
+
}> & {
|
|
16
|
+
__v: number;
|
|
17
|
+
}, any>;
|
|
14
18
|
inject: DatabaseConnection[];
|
|
15
19
|
} | {
|
|
16
20
|
provide: DatabaseModel;
|
|
17
|
-
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<import("./entities/userAvailabilities").UserAvailability, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./entities/userAvailabilities").UserAvailability> & import("./entities/userAvailabilities").UserAvailability & Required<{
|
|
21
|
+
useFactory: (connection: import("mongoose").Connection, companyConnection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<import("./entities/userAvailabilities").UserAvailability, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./entities/userAvailabilities").UserAvailability, {}, {}> & import("./entities/userAvailabilities").UserAvailability & Required<{
|
|
18
22
|
_id: string;
|
|
19
|
-
}
|
|
23
|
+
}> & {
|
|
24
|
+
__v: number;
|
|
25
|
+
}, any>;
|
|
20
26
|
inject: DatabaseConnection[];
|
|
21
27
|
})[];
|