@nocobase/server 1.3.0-alpha.20240819011229 → 1.3.0-beta
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/lib/application.d.ts +7 -7
- package/lib/application.js +7 -7
- package/package.json +14 -14
package/lib/application.d.ts
CHANGED
|
@@ -149,26 +149,26 @@ export declare class Application<StateT = DefaultState, ContextT = DefaultContex
|
|
|
149
149
|
* @internal
|
|
150
150
|
*/
|
|
151
151
|
perfHistograms: Map<string, RecordableHistogram>;
|
|
152
|
-
/**
|
|
153
|
-
* @internal
|
|
154
|
-
*/
|
|
155
|
-
syncManager: SyncManager;
|
|
156
|
-
requestLogger: Logger;
|
|
157
152
|
protected plugins: Map<string, Plugin<any>>;
|
|
158
153
|
protected _appSupervisor: AppSupervisor;
|
|
154
|
+
protected _started: Date | null;
|
|
159
155
|
private _authenticated;
|
|
160
156
|
private _maintaining;
|
|
161
157
|
private _maintainingCommandStatus;
|
|
162
158
|
private _maintainingStatusBeforeCommand;
|
|
163
159
|
private _actionCommand;
|
|
160
|
+
/**
|
|
161
|
+
* @internal
|
|
162
|
+
*/
|
|
163
|
+
syncManager: SyncManager;
|
|
164
|
+
requestLogger: Logger;
|
|
164
165
|
private sqlLogger;
|
|
166
|
+
protected _logger: SystemLogger;
|
|
165
167
|
constructor(options: ApplicationOptions);
|
|
166
|
-
protected _started: Date | null;
|
|
167
168
|
/**
|
|
168
169
|
* @experimental
|
|
169
170
|
*/
|
|
170
171
|
get started(): Date;
|
|
171
|
-
protected _logger: SystemLogger;
|
|
172
172
|
get logger(): SystemLogger;
|
|
173
173
|
get log(): SystemLogger;
|
|
174
174
|
protected _loaded: boolean;
|
package/lib/application.js
CHANGED
|
@@ -107,27 +107,27 @@ const _Application = class _Application extends import_koa.default {
|
|
|
107
107
|
* @internal
|
|
108
108
|
*/
|
|
109
109
|
perfHistograms = /* @__PURE__ */ new Map();
|
|
110
|
-
/**
|
|
111
|
-
* @internal
|
|
112
|
-
*/
|
|
113
|
-
syncManager;
|
|
114
|
-
requestLogger;
|
|
115
110
|
plugins = /* @__PURE__ */ new Map();
|
|
116
111
|
_appSupervisor = import_app_supervisor.AppSupervisor.getInstance();
|
|
112
|
+
_started = null;
|
|
117
113
|
_authenticated = false;
|
|
118
114
|
_maintaining = false;
|
|
119
115
|
_maintainingCommandStatus;
|
|
120
116
|
_maintainingStatusBeforeCommand;
|
|
121
117
|
_actionCommand;
|
|
118
|
+
/**
|
|
119
|
+
* @internal
|
|
120
|
+
*/
|
|
121
|
+
syncManager;
|
|
122
|
+
requestLogger;
|
|
122
123
|
sqlLogger;
|
|
123
|
-
|
|
124
|
+
_logger;
|
|
124
125
|
/**
|
|
125
126
|
* @experimental
|
|
126
127
|
*/
|
|
127
128
|
get started() {
|
|
128
129
|
return this._started;
|
|
129
130
|
}
|
|
130
|
-
_logger;
|
|
131
131
|
get logger() {
|
|
132
132
|
return this._logger;
|
|
133
133
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nocobase/server",
|
|
3
|
-
"version": "1.3.0-
|
|
3
|
+
"version": "1.3.0-beta",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"types": "./lib/index.d.ts",
|
|
6
6
|
"license": "AGPL-3.0",
|
|
@@ -10,18 +10,18 @@
|
|
|
10
10
|
"@koa/cors": "^3.1.0",
|
|
11
11
|
"@koa/multer": "^3.0.2",
|
|
12
12
|
"@koa/router": "^9.4.0",
|
|
13
|
-
"@nocobase/acl": "1.3.0-
|
|
14
|
-
"@nocobase/actions": "1.3.0-
|
|
15
|
-
"@nocobase/auth": "1.3.0-
|
|
16
|
-
"@nocobase/cache": "1.3.0-
|
|
17
|
-
"@nocobase/data-source-manager": "1.3.0-
|
|
18
|
-
"@nocobase/database": "1.3.0-
|
|
19
|
-
"@nocobase/evaluators": "1.3.0-
|
|
20
|
-
"@nocobase/logger": "1.3.0-
|
|
21
|
-
"@nocobase/resourcer": "1.3.0-
|
|
22
|
-
"@nocobase/sdk": "1.3.0-
|
|
23
|
-
"@nocobase/telemetry": "1.3.0-
|
|
24
|
-
"@nocobase/utils": "1.3.0-
|
|
13
|
+
"@nocobase/acl": "1.3.0-beta",
|
|
14
|
+
"@nocobase/actions": "1.3.0-beta",
|
|
15
|
+
"@nocobase/auth": "1.3.0-beta",
|
|
16
|
+
"@nocobase/cache": "1.3.0-beta",
|
|
17
|
+
"@nocobase/data-source-manager": "1.3.0-beta",
|
|
18
|
+
"@nocobase/database": "1.3.0-beta",
|
|
19
|
+
"@nocobase/evaluators": "1.3.0-beta",
|
|
20
|
+
"@nocobase/logger": "1.3.0-beta",
|
|
21
|
+
"@nocobase/resourcer": "1.3.0-beta",
|
|
22
|
+
"@nocobase/sdk": "1.3.0-beta",
|
|
23
|
+
"@nocobase/telemetry": "1.3.0-beta",
|
|
24
|
+
"@nocobase/utils": "1.3.0-beta",
|
|
25
25
|
"@types/decompress": "4.2.4",
|
|
26
26
|
"@types/ini": "^1.3.31",
|
|
27
27
|
"@types/koa-send": "^4.1.3",
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"@types/serve-handler": "^6.1.1",
|
|
55
55
|
"@types/ws": "^8.5.5"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "175a86dcc41577bff4f94ae614ebe778fd532f3f"
|
|
58
58
|
}
|