@aldb2b/common 1.0.863 → 1.0.865
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/companies/index.d.ts +1 -1
- package/build/entities/models/companies/index.js +1 -1
- package/build/entities/models/companies/index.js.map +1 -1
- package/build/entities/models/model.providers.d.ts +24 -24
- package/build/entities/models/subscriptions/index.d.ts +1 -0
- package/build/entities/models/subscriptions/index.js +1 -0
- package/build/entities/models/subscriptions/index.js.map +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export * from './entities/companies';
|
|
2
2
|
export * from './entities/contacts';
|
|
3
|
-
export * from './companies.provider';
|
|
4
3
|
export * from './repositories/company-common.repository';
|
|
5
4
|
export * from './repositories/contact-common.repository';
|
|
6
5
|
export * from './services/company-common.service';
|
|
6
|
+
export * from './companies.provider';
|
|
@@ -16,8 +16,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./entities/companies"), exports);
|
|
18
18
|
__exportStar(require("./entities/contacts"), exports);
|
|
19
|
-
__exportStar(require("./companies.provider"), exports);
|
|
20
19
|
__exportStar(require("./repositories/company-common.repository"), exports);
|
|
21
20
|
__exportStar(require("./repositories/contact-common.repository"), exports);
|
|
22
21
|
__exportStar(require("./services/company-common.service"), exports);
|
|
22
|
+
__exportStar(require("./companies.provider"), exports);
|
|
23
23
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/entities/models/companies/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uDAAoC;AACpC,sDAAmC;AACnC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/entities/models/companies/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uDAAoC;AACpC,sDAAmC;AACnC,2EAAwD;AACxD,2EAAwD;AACxD,oEAAiD;AACjD,uDAAoC"}
|
|
@@ -69,13 +69,19 @@ export declare const modelProviders: ({
|
|
|
69
69
|
inject: import("../..").DatabaseConnection[];
|
|
70
70
|
} | {
|
|
71
71
|
provide: import("../..").DatabaseModel;
|
|
72
|
-
useFactory: (connection: import("mongoose").Connection
|
|
72
|
+
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./subscriptions").Feature, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./subscriptions").Feature> & import("./subscriptions").Feature & Required<{
|
|
73
73
|
_id: string;
|
|
74
74
|
}>, any>;
|
|
75
75
|
inject: import("../..").DatabaseConnection[];
|
|
76
76
|
} | {
|
|
77
77
|
provide: import("../..").DatabaseModel;
|
|
78
|
-
useFactory: (connection: import("mongoose").Connection, eventConnection: import("mongoose").Connection) => import("mongoose").Model<import("./
|
|
78
|
+
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<{
|
|
79
|
+
_id: string;
|
|
80
|
+
}>, any>;
|
|
81
|
+
inject: import("../..").DatabaseConnection[];
|
|
82
|
+
} | {
|
|
83
|
+
provide: import("../..").DatabaseModel;
|
|
84
|
+
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<{
|
|
79
85
|
_id: string;
|
|
80
86
|
}>, any>;
|
|
81
87
|
inject: import("../..").DatabaseConnection[];
|
|
@@ -88,19 +94,31 @@ export declare const modelProviders: ({
|
|
|
88
94
|
} | {
|
|
89
95
|
provide: import("../..").RepositoryProvider;
|
|
90
96
|
inject: import("../..").DatabaseModel[];
|
|
91
|
-
useFactory: (
|
|
97
|
+
useFactory: (subscriptionLog: import("@aldb2b/common").CustomModel<import("./subscriptions").SubscriptionLog>) => import("./subscriptions").SubscriptionLogRepository;
|
|
98
|
+
} | {
|
|
99
|
+
provide: import("../..").DatabaseModel;
|
|
100
|
+
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<{
|
|
101
|
+
_id: string;
|
|
102
|
+
}>, any>;
|
|
103
|
+
inject: import("../..").DatabaseConnection[];
|
|
104
|
+
} | {
|
|
105
|
+
provide: import("../..").DatabaseModel;
|
|
106
|
+
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<{
|
|
107
|
+
_id: string;
|
|
108
|
+
}>, any>;
|
|
109
|
+
inject: import("../..").DatabaseConnection[];
|
|
92
110
|
} | {
|
|
93
111
|
provide: import("../..").RepositoryProvider;
|
|
94
112
|
inject: import("../..").DatabaseModel[];
|
|
95
|
-
useFactory: (
|
|
113
|
+
useFactory: (companyModel: import("../..").CustomModel<import("./companies").Company>) => import("./companies").CompanyCommonRepository;
|
|
96
114
|
} | {
|
|
97
115
|
provide: import("../..").RepositoryProvider;
|
|
98
116
|
inject: import("../..").DatabaseModel[];
|
|
99
|
-
useFactory: (
|
|
117
|
+
useFactory: (meetingRequestModel: import("../..").CustomModel<import("./meetings").MeetingRequest>) => import("./meetings").MeetingRequestCommonRepository;
|
|
100
118
|
} | {
|
|
101
119
|
provide: import("../..").RepositoryProvider;
|
|
102
120
|
inject: import("../..").DatabaseModel[];
|
|
103
|
-
useFactory: (
|
|
121
|
+
useFactory: (meetingModel: import("../..").CustomModel<import("./meetings").Meeting>) => import("./meetings").MeetingCommonRepository;
|
|
104
122
|
} | {
|
|
105
123
|
provide: import("../..").ServiceProvider;
|
|
106
124
|
inject: import("../..").RepositoryProvider[];
|
|
@@ -135,22 +153,4 @@ export declare const modelProviders: ({
|
|
|
135
153
|
_id: string;
|
|
136
154
|
}>, any>;
|
|
137
155
|
inject: import("../..").DatabaseConnection[];
|
|
138
|
-
} | {
|
|
139
|
-
provide: import("../..").DatabaseModel;
|
|
140
|
-
useFactory: (connection: import("mongoose").Connection) => import("mongoose").Model<import("./subscriptions").Feature, {}, {}, {}, import("mongoose").Document<unknown, {}, import("./subscriptions").Feature> & import("./subscriptions").Feature & Required<{
|
|
141
|
-
_id: string;
|
|
142
|
-
}>, any>;
|
|
143
|
-
inject: import("../..").DatabaseConnection[];
|
|
144
|
-
} | {
|
|
145
|
-
provide: import("../..").DatabaseModel;
|
|
146
|
-
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<{
|
|
147
|
-
_id: string;
|
|
148
|
-
}>, any>;
|
|
149
|
-
inject: import("../..").DatabaseConnection[];
|
|
150
|
-
} | {
|
|
151
|
-
provide: import("../..").DatabaseModel;
|
|
152
|
-
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<{
|
|
153
|
-
_id: string;
|
|
154
|
-
}>, any>;
|
|
155
|
-
inject: import("../..").DatabaseConnection[];
|
|
156
156
|
})[];
|
|
@@ -19,4 +19,5 @@ __exportStar(require("./entities/companySubscriptions"), exports);
|
|
|
19
19
|
__exportStar(require("./entities/subscriptionLogs"), exports);
|
|
20
20
|
__exportStar(require("./entities/features"), exports);
|
|
21
21
|
__exportStar(require("./repositories"), exports);
|
|
22
|
+
__exportStar(require("./subscriptions.provider"), exports);
|
|
22
23
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/entities/models/subscriptions/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gEAA6C;AAC7C,kEAA+C;AAC/C,8DAA2C;AAC3C,sDAAmC;AACnC,iDAA8B"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/entities/models/subscriptions/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gEAA6C;AAC7C,kEAA+C;AAC/C,8DAA2C;AAC3C,sDAAmC;AACnC,iDAA8B;AAC9B,2DAAwC"}
|