@resolveio/server-lib 1.0.0-rc6 → 1.0.0-rc8
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 +41 -0
- package/index.js +27 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -11,4 +11,45 @@ export default class ResolveIOServer {
|
|
|
11
11
|
static getMainDB(): any;
|
|
12
12
|
static getSupportDB(): any;
|
|
13
13
|
}
|
|
14
|
+
export * from './collections/active-subscription.collection';
|
|
15
|
+
export * from './collections/app-status.collection';
|
|
16
|
+
export * from './collections/app-version.collection';
|
|
17
|
+
export * from './collections/counter.collection';
|
|
18
|
+
export * from './collections/cron-job-history.collection';
|
|
19
|
+
export * from './collections/cron-job.collection';
|
|
20
|
+
export * from './collections/file.collection';
|
|
21
|
+
export * from './collections/flag.collection';
|
|
22
|
+
export * from './collections/log.collection';
|
|
23
|
+
export * from './collections/logged-in-users.collection';
|
|
24
|
+
export * from './collections/method-call.collection';
|
|
25
|
+
export * from './collections/method-response.collection';
|
|
26
|
+
export * from './collections/queue-flag.collection';
|
|
27
|
+
export * from './collections/queue-method.collection';
|
|
28
|
+
export * from './collections/queue-response.collection';
|
|
29
|
+
export * from './collections/support-ticket.collection';
|
|
30
|
+
export * from './collections/user.collection';
|
|
31
|
+
export * from './managers/cron.manager';
|
|
32
|
+
export * from './managers/method.manager';
|
|
33
|
+
export * from './managers/queue-method.manager';
|
|
34
|
+
export * from './managers/subscription.manager';
|
|
35
|
+
export * from './managers/support.manager';
|
|
36
|
+
export * from './models/active-subscription.model';
|
|
37
|
+
export * from './models/app-status.model';
|
|
38
|
+
export * from './models/app-version.model';
|
|
39
|
+
export * from './models/collection-document.model';
|
|
40
|
+
export * from './models/counter.model';
|
|
41
|
+
export * from './models/cron-job.model';
|
|
42
|
+
export * from './models/dialog.model';
|
|
43
|
+
export * from './models/file.model';
|
|
44
|
+
export * from './models/flag.model';
|
|
45
|
+
export * from './models/log.model';
|
|
46
|
+
export * from './models/method.model';
|
|
47
|
+
export * from './models/pagination.model';
|
|
48
|
+
export * from './models/permission.model';
|
|
49
|
+
export * from './models/select-data-label.model';
|
|
50
|
+
export * from './models/server-response.model';
|
|
51
|
+
export * from './models/support-method.model';
|
|
52
|
+
export * from './models/support-ticket.model';
|
|
53
|
+
export * from './models/user.model';
|
|
54
|
+
export * from './util/common';
|
|
14
55
|
//# sourceMappingURL=index.d.ts.map
|
package/index.js
CHANGED
|
@@ -34,6 +34,9 @@ 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
|
+
}
|
|
37
40
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38
41
|
var mongoose = require("mongoose");
|
|
39
42
|
var server_app_1 = require("./server-app");
|
|
@@ -95,3 +98,27 @@ var ResolveIOServer = /** @class */ (function () {
|
|
|
95
98
|
return ResolveIOServer;
|
|
96
99
|
}());
|
|
97
100
|
exports.default = ResolveIOServer;
|
|
101
|
+
__export(require("./collections/active-subscription.collection"));
|
|
102
|
+
__export(require("./collections/app-status.collection"));
|
|
103
|
+
__export(require("./collections/app-version.collection"));
|
|
104
|
+
__export(require("./collections/counter.collection"));
|
|
105
|
+
__export(require("./collections/cron-job-history.collection"));
|
|
106
|
+
__export(require("./collections/cron-job.collection"));
|
|
107
|
+
__export(require("./collections/file.collection"));
|
|
108
|
+
__export(require("./collections/flag.collection"));
|
|
109
|
+
__export(require("./collections/log.collection"));
|
|
110
|
+
__export(require("./collections/logged-in-users.collection"));
|
|
111
|
+
__export(require("./collections/method-call.collection"));
|
|
112
|
+
__export(require("./collections/method-response.collection"));
|
|
113
|
+
__export(require("./collections/queue-flag.collection"));
|
|
114
|
+
__export(require("./collections/queue-method.collection"));
|
|
115
|
+
__export(require("./collections/queue-response.collection"));
|
|
116
|
+
__export(require("./collections/support-ticket.collection"));
|
|
117
|
+
__export(require("./collections/user.collection"));
|
|
118
|
+
__export(require("./managers/cron.manager"));
|
|
119
|
+
__export(require("./managers/method.manager"));
|
|
120
|
+
__export(require("./managers/queue-method.manager"));
|
|
121
|
+
__export(require("./managers/subscription.manager"));
|
|
122
|
+
__export(require("./managers/support.manager"));
|
|
123
|
+
__export(require("./models/pagination.model"));
|
|
124
|
+
__export(require("./util/common"));
|