@resolveio/server-lib 1.0.0-rc13 → 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/server-app.d.ts +0 -41
- package/server-app.js +42 -27
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';
|
package/package.json
CHANGED
package/server-app.d.ts
CHANGED
|
@@ -30,45 +30,4 @@ export default class ResolveIOMainServer {
|
|
|
30
30
|
private listen;
|
|
31
31
|
unsubscribeWS(ws: WebSocket): void;
|
|
32
32
|
}
|
|
33
|
-
export * from './collections/active-subscription.collection';
|
|
34
|
-
export * from './collections/app-status.collection';
|
|
35
|
-
export * from './collections/app-version.collection';
|
|
36
|
-
export * from './collections/counter.collection';
|
|
37
|
-
export * from './collections/cron-job-history.collection';
|
|
38
|
-
export * from './collections/cron-job.collection';
|
|
39
|
-
export * from './collections/file.collection';
|
|
40
|
-
export * from './collections/flag.collection';
|
|
41
|
-
export * from './collections/log.collection';
|
|
42
|
-
export * from './collections/logged-in-users.collection';
|
|
43
|
-
export * from './collections/method-call.collection';
|
|
44
|
-
export * from './collections/method-response.collection';
|
|
45
|
-
export * from './collections/queue-flag.collection';
|
|
46
|
-
export * from './collections/queue-method.collection';
|
|
47
|
-
export * from './collections/queue-response.collection';
|
|
48
|
-
export * from './collections/support-ticket.collection';
|
|
49
|
-
export * from './collections/user.collection';
|
|
50
|
-
export * from './managers/cron.manager';
|
|
51
|
-
export * from './managers/method.manager';
|
|
52
|
-
export * from './managers/queue-method.manager';
|
|
53
|
-
export * from './managers/subscription.manager';
|
|
54
|
-
export * from './managers/support.manager';
|
|
55
|
-
export * from './models/active-subscription.model';
|
|
56
|
-
export * from './models/app-status.model';
|
|
57
|
-
export * from './models/app-version.model';
|
|
58
|
-
export * from './models/collection-document.model';
|
|
59
|
-
export * from './models/counter.model';
|
|
60
|
-
export * from './models/cron-job.model';
|
|
61
|
-
export * from './models/dialog.model';
|
|
62
|
-
export * from './models/file.model';
|
|
63
|
-
export * from './models/flag.model';
|
|
64
|
-
export * from './models/log.model';
|
|
65
|
-
export * from './models/method.model';
|
|
66
|
-
export * from './models/pagination.model';
|
|
67
|
-
export * from './models/permission.model';
|
|
68
|
-
export * from './models/select-data-label.model';
|
|
69
|
-
export * from './models/server-response.model';
|
|
70
|
-
export * from './models/support-method.model';
|
|
71
|
-
export * from './models/support-ticket.model';
|
|
72
|
-
export * from './models/user.model';
|
|
73
|
-
export * from './util/common';
|
|
74
33
|
//# sourceMappingURL=server-app.d.ts.map
|
package/server-app.js
CHANGED
|
@@ -34,9 +34,6 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
34
34
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
35
35
|
}
|
|
36
36
|
};
|
|
37
|
-
function __export(m) {
|
|
38
|
-
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
|
39
|
-
}
|
|
40
37
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
41
38
|
var http_1 = require("http");
|
|
42
39
|
var express = require("express");
|
|
@@ -599,27 +596,45 @@ var ResolveIOMainServer = /** @class */ (function () {
|
|
|
599
596
|
return ResolveIOMainServer;
|
|
600
597
|
}());
|
|
601
598
|
exports.default = ResolveIOMainServer;
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
599
|
+
// export * from './collections/active-subscription.collection';
|
|
600
|
+
// export * from './collections/app-status.collection';
|
|
601
|
+
// export * from './collections/app-version.collection';
|
|
602
|
+
// export * from './collections/counter.collection';
|
|
603
|
+
// export * from './collections/cron-job-history.collection';
|
|
604
|
+
// export * from './collections/cron-job.collection';
|
|
605
|
+
// export * from './collections/file.collection';
|
|
606
|
+
// export * from './collections/flag.collection';
|
|
607
|
+
// export * from './collections/log.collection';
|
|
608
|
+
// export * from './collections/logged-in-users.collection';
|
|
609
|
+
// export * from './collections/method-call.collection';
|
|
610
|
+
// export * from './collections/method-response.collection';
|
|
611
|
+
// export * from './collections/queue-flag.collection';
|
|
612
|
+
// export * from './collections/queue-method.collection';
|
|
613
|
+
// export * from './collections/queue-response.collection';
|
|
614
|
+
// export * from './collections/support-ticket.collection';
|
|
615
|
+
// export * from './collections/user.collection';
|
|
616
|
+
// export * from './managers/cron.manager';
|
|
617
|
+
// export * from './managers/method.manager';
|
|
618
|
+
// export * from './managers/queue-method.manager';
|
|
619
|
+
// export * from './managers/subscription.manager';
|
|
620
|
+
// export * from './managers/support.manager';
|
|
621
|
+
// export * from './models/active-subscription.model';
|
|
622
|
+
// export * from './models/app-status.model';
|
|
623
|
+
// export * from './models/app-version.model';
|
|
624
|
+
// export * from './models/collection-document.model';
|
|
625
|
+
// export * from './models/counter.model';
|
|
626
|
+
// // export * from './models/cron-job-history.model';
|
|
627
|
+
// export * from './models/cron-job.model';
|
|
628
|
+
// export * from './models/dialog.model';
|
|
629
|
+
// export * from './models/file.model';
|
|
630
|
+
// export * from './models/flag.model';
|
|
631
|
+
// export * from './models/log.model';
|
|
632
|
+
// export * from './models/method.model';
|
|
633
|
+
// export * from './models/pagination.model';
|
|
634
|
+
// export * from './models/permission.model';
|
|
635
|
+
// export * from './models/select-data-label.model';
|
|
636
|
+
// export * from './models/server-response.model';
|
|
637
|
+
// export * from './models/support-method.model';
|
|
638
|
+
// export * from './models/support-ticket.model';
|
|
639
|
+
// export * from './models/user.model';
|
|
640
|
+
// export * from './util/common';
|