@resolveio/server-lib 1.0.0-rc12 → 1.0.0-rc14
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/index.d.ts +2 -1
- package/index.js +42 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import ResolveIOMainServer from './server-app';
|
|
1
2
|
export declare class ResolveIOServer {
|
|
2
3
|
private static _serverConfig;
|
|
3
4
|
private static _mainDB;
|
|
@@ -7,7 +8,7 @@ export declare class ResolveIOServer {
|
|
|
7
8
|
constructor(serverConfig: any, client: string);
|
|
8
9
|
static connectAndRun(): Promise<void>;
|
|
9
10
|
static getClientName(): string;
|
|
10
|
-
static getMainServer():
|
|
11
|
+
static getMainServer(): ResolveIOMainServer;
|
|
11
12
|
static getMainDB(): any;
|
|
12
13
|
static getSupportDB(): any;
|
|
13
14
|
}
|
package/index.js
CHANGED
|
@@ -36,8 +36,6 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
36
36
|
};
|
|
37
37
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38
38
|
var mongoose = require("mongoose");
|
|
39
|
-
// import { ResolveIOMainServer } from './server-app';
|
|
40
|
-
// let serverConfig = require('./settings.json');
|
|
41
39
|
var ResolveIOServer = /** @class */ (function () {
|
|
42
40
|
function ResolveIOServer(serverConfig, client) {
|
|
43
41
|
ResolveIOServer._serverConfig = serverConfig;
|
|
@@ -118,3 +116,45 @@ var ResolveIOServer = /** @class */ (function () {
|
|
|
118
116
|
}());
|
|
119
117
|
exports.ResolveIOServer = ResolveIOServer;
|
|
120
118
|
// export * from './server-app';
|
|
119
|
+
// export * from './collections/active-subscription.collection';
|
|
120
|
+
// export * from './collections/app-status.collection';
|
|
121
|
+
// export * from './collections/app-version.collection';
|
|
122
|
+
// export * from './collections/counter.collection';
|
|
123
|
+
// export * from './collections/cron-job-history.collection';
|
|
124
|
+
// export * from './collections/cron-job.collection';
|
|
125
|
+
// export * from './collections/file.collection';
|
|
126
|
+
// export * from './collections/flag.collection';
|
|
127
|
+
// export * from './collections/log.collection';
|
|
128
|
+
// export * from './collections/logged-in-users.collection';
|
|
129
|
+
// export * from './collections/method-call.collection';
|
|
130
|
+
// export * from './collections/method-response.collection';
|
|
131
|
+
// export * from './collections/queue-flag.collection';
|
|
132
|
+
// export * from './collections/queue-method.collection';
|
|
133
|
+
// export * from './collections/queue-response.collection';
|
|
134
|
+
// export * from './collections/support-ticket.collection';
|
|
135
|
+
// export * from './collections/user.collection';
|
|
136
|
+
// export * from './managers/cron.manager';
|
|
137
|
+
// export * from './managers/method.manager';
|
|
138
|
+
// export * from './managers/queue-method.manager';
|
|
139
|
+
// export * from './managers/subscription.manager';
|
|
140
|
+
// export * from './managers/support.manager';
|
|
141
|
+
// export * from './models/active-subscription.model';
|
|
142
|
+
// export * from './models/app-status.model';
|
|
143
|
+
// export * from './models/app-version.model';
|
|
144
|
+
// export * from './models/collection-document.model';
|
|
145
|
+
// export * from './models/counter.model';
|
|
146
|
+
// // export * from './models/cron-job-history.model';
|
|
147
|
+
// export * from './models/cron-job.model';
|
|
148
|
+
// export * from './models/dialog.model';
|
|
149
|
+
// export * from './models/file.model';
|
|
150
|
+
// export * from './models/flag.model';
|
|
151
|
+
// export * from './models/log.model';
|
|
152
|
+
// export * from './models/method.model';
|
|
153
|
+
// export * from './models/pagination.model';
|
|
154
|
+
// export * from './models/permission.model';
|
|
155
|
+
// export * from './models/select-data-label.model';
|
|
156
|
+
// export * from './models/server-response.model';
|
|
157
|
+
// export * from './models/support-method.model';
|
|
158
|
+
// export * from './models/support-ticket.model';
|
|
159
|
+
// export * from './models/user.model';
|
|
160
|
+
// export * from './util/common';
|