@nocobase/plugin-multi-app-manager 0.15.0-alpha.4 → 0.16.0-alpha.1
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/dist/externalVersion.js +3 -3
- package/dist/node_modules/mariadb/LICENSE +502 -0
- package/dist/node_modules/mariadb/callback.js +41 -0
- package/dist/node_modules/mariadb/lib/cmd/batch-bulk.js +278 -0
- package/dist/node_modules/mariadb/lib/cmd/batch-rewrite.js +372 -0
- package/dist/node_modules/mariadb/lib/cmd/change-user.js +149 -0
- package/dist/node_modules/mariadb/lib/cmd/class/ok-packet.js +17 -0
- package/dist/node_modules/mariadb/lib/cmd/column-definition.js +102 -0
- package/dist/node_modules/mariadb/lib/cmd/command.js +168 -0
- package/dist/node_modules/mariadb/lib/cmd/common-binary-cmd.js +327 -0
- package/dist/node_modules/mariadb/lib/cmd/common-text-cmd.js +427 -0
- package/dist/node_modules/mariadb/lib/cmd/handshake/auth/caching-sha2-password-auth.js +168 -0
- package/dist/node_modules/mariadb/lib/cmd/handshake/auth/clear-password-auth.js +23 -0
- package/dist/node_modules/mariadb/lib/cmd/handshake/auth/ed25519-password-auth.js +761 -0
- package/dist/node_modules/mariadb/lib/cmd/handshake/auth/native-password-auth.js +55 -0
- package/dist/node_modules/mariadb/lib/cmd/handshake/auth/pam-password-auth.js +58 -0
- package/dist/node_modules/mariadb/lib/cmd/handshake/auth/plugin-auth.js +19 -0
- package/dist/node_modules/mariadb/lib/cmd/handshake/auth/sha256-password-auth.js +142 -0
- package/dist/node_modules/mariadb/lib/cmd/handshake/client-capabilities.js +74 -0
- package/dist/node_modules/mariadb/lib/cmd/handshake/client-handshake-response.js +126 -0
- package/dist/node_modules/mariadb/lib/cmd/handshake/handshake.js +292 -0
- package/dist/node_modules/mariadb/lib/cmd/handshake/initial-handshake.js +74 -0
- package/dist/node_modules/mariadb/lib/cmd/handshake/ssl-request.js +29 -0
- package/dist/node_modules/mariadb/lib/cmd/ping.js +52 -0
- package/dist/node_modules/mariadb/lib/cmd/query.js +255 -0
- package/dist/node_modules/mariadb/lib/cmd/quit.js +28 -0
- package/dist/node_modules/mariadb/lib/cmd/reset.js +54 -0
- package/dist/node_modules/mariadb/lib/cmd/resultset.js +607 -0
- package/dist/node_modules/mariadb/lib/cmd/stream.js +45 -0
- package/dist/node_modules/mariadb/lib/config/connection-options.js +258 -0
- package/dist/node_modules/mariadb/lib/config/pool-cluster-options.js +19 -0
- package/dist/node_modules/mariadb/lib/config/pool-options.js +47 -0
- package/dist/node_modules/mariadb/lib/connection-callback.js +160 -0
- package/dist/node_modules/mariadb/lib/connection.js +1460 -0
- package/dist/node_modules/mariadb/lib/const/capabilities.js +64 -0
- package/dist/node_modules/mariadb/lib/const/collations.js +473 -0
- package/dist/node_modules/mariadb/lib/const/connection_status.js +13 -0
- package/dist/node_modules/mariadb/lib/const/error-code.js +1282 -0
- package/dist/node_modules/mariadb/lib/const/field-detail.js +35 -0
- package/dist/node_modules/mariadb/lib/const/field-type.js +71 -0
- package/dist/node_modules/mariadb/lib/const/server-status.js +30 -0
- package/dist/node_modules/mariadb/lib/const/state-change.js +12 -0
- package/dist/node_modules/mariadb/lib/filtered-pool-cluster.js +81 -0
- package/dist/node_modules/mariadb/lib/io/bulk-packet.js +590 -0
- package/dist/node_modules/mariadb/lib/io/compression-input-stream.js +141 -0
- package/dist/node_modules/mariadb/lib/io/compression-output-stream.js +171 -0
- package/dist/node_modules/mariadb/lib/io/packet-input-stream.js +193 -0
- package/dist/node_modules/mariadb/lib/io/packet-node-encoded.js +36 -0
- package/dist/node_modules/mariadb/lib/io/packet-node-iconv.js +37 -0
- package/dist/node_modules/mariadb/lib/io/packet-output-stream.js +502 -0
- package/dist/node_modules/mariadb/lib/io/packet.js +515 -0
- package/dist/node_modules/mariadb/lib/io/rewrite-packet.js +481 -0
- package/dist/node_modules/mariadb/lib/misc/connection-information.js +96 -0
- package/dist/node_modules/mariadb/lib/misc/errors.js +123 -0
- package/dist/node_modules/mariadb/lib/misc/parse.js +1033 -0
- package/dist/node_modules/mariadb/lib/misc/utils.js +298 -0
- package/dist/node_modules/mariadb/lib/pool-base.js +611 -0
- package/dist/node_modules/mariadb/lib/pool-callback.js +202 -0
- package/dist/node_modules/mariadb/lib/pool-cluster-callback.js +66 -0
- package/dist/node_modules/mariadb/lib/pool-cluster.js +407 -0
- package/dist/node_modules/mariadb/lib/pool-promise.js +108 -0
- package/dist/node_modules/mariadb/node_modules/@types/geojson/index.d.ts +165 -0
- package/dist/node_modules/mariadb/node_modules/@types/geojson/package.json +46 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/assert/strict.d.ts +8 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/assert.d.ts +912 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/async_hooks.d.ts +501 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/buffer.d.ts +2232 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/child_process.d.ts +1366 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/cluster.d.ts +414 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/console.d.ts +412 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/constants.d.ts +18 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/crypto.d.ts +3338 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/dgram.d.ts +545 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/diagnostics_channel.d.ts +152 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/dns/promises.d.ts +370 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/dns.d.ts +659 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/domain.d.ts +169 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/events.d.ts +651 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/fs/promises.d.ts +1091 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/fs.d.ts +3869 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/globals.d.ts +294 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/globals.global.d.ts +1 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/http.d.ts +1396 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/http2.d.ts +2101 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/https.d.ts +391 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/index.d.ts +129 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/inspector.d.ts +2744 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/module.d.ts +114 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/net.d.ts +791 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/os.d.ts +455 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/package.json +220 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/path.d.ts +180 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/perf_hooks.d.ts +557 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/process.d.ts +1481 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/punycode.d.ts +117 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/querystring.d.ts +131 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/readline.d.ts +650 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/repl.d.ts +424 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/stream/consumers.d.ts +24 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/stream/promises.d.ts +42 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/stream/web.d.ts +330 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/stream.d.ts +1249 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/string_decoder.d.ts +67 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/timers/promises.d.ts +68 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/timers.d.ts +94 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/tls.d.ts +1020 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/trace_events.d.ts +161 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/tty.d.ts +204 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/url.d.ts +891 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/util.d.ts +1594 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/v8.d.ts +378 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/vm.d.ts +507 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/wasi.d.ts +158 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/worker_threads.d.ts +649 -0
- package/dist/node_modules/mariadb/node_modules/@types/node/zlib.d.ts +517 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/.github/dependabot.yml +11 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/.idea/codeStyles/Project.xml +47 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/.idea/iconv-lite.iml +12 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/.idea/modules.xml +8 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/.idea/vcs.xml +6 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/encodings/dbcs-codec.js +597 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/encodings/dbcs-data.js +188 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/encodings/index.js +23 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/encodings/internal.js +198 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/encodings/sbcs-data.js +179 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/encodings/utf16.js +197 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/encodings/utf32.js +319 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/encodings/utf7.js +290 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/lib/index.d.ts +41 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/lib/index.js +180 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/lib/streams.js +109 -0
- package/dist/node_modules/mariadb/node_modules/iconv-lite/package.json +44 -0
- package/dist/node_modules/mariadb/node_modules/long/index.d.ts +457 -0
- package/dist/node_modules/mariadb/node_modules/long/index.js +1467 -0
- package/dist/node_modules/mariadb/node_modules/long/package.json +50 -0
- package/dist/node_modules/mariadb/node_modules/long/umd/index.d.ts +2 -0
- package/dist/node_modules/mariadb/node_modules/long/umd/index.js +1432 -0
- package/dist/node_modules/mariadb/node_modules/long/umd/package.json +3 -0
- package/dist/node_modules/mariadb/package.json +1 -0
- package/dist/node_modules/mariadb/promise.js +34 -0
- package/dist/node_modules/mariadb/types/index.d.ts +870 -0
- package/dist/server/server.js +6 -0
- package/package.json +2 -2
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @since v0.3.7
|
|
3
|
+
*/
|
|
4
|
+
declare module 'module' {
|
|
5
|
+
import { URL } from 'node:url';
|
|
6
|
+
namespace Module {
|
|
7
|
+
/**
|
|
8
|
+
* The `module.syncBuiltinESMExports()` method updates all the live bindings for
|
|
9
|
+
* builtin `ES Modules` to match the properties of the `CommonJS` exports. It
|
|
10
|
+
* does not add or remove exported names from the `ES Modules`.
|
|
11
|
+
*
|
|
12
|
+
* ```js
|
|
13
|
+
* const fs = require('fs');
|
|
14
|
+
* const assert = require('assert');
|
|
15
|
+
* const { syncBuiltinESMExports } = require('module');
|
|
16
|
+
*
|
|
17
|
+
* fs.readFile = newAPI;
|
|
18
|
+
*
|
|
19
|
+
* delete fs.readFileSync;
|
|
20
|
+
*
|
|
21
|
+
* function newAPI() {
|
|
22
|
+
* // ...
|
|
23
|
+
* }
|
|
24
|
+
*
|
|
25
|
+
* fs.newAPI = newAPI;
|
|
26
|
+
*
|
|
27
|
+
* syncBuiltinESMExports();
|
|
28
|
+
*
|
|
29
|
+
* import('fs').then((esmFS) => {
|
|
30
|
+
* // It syncs the existing readFile property with the new value
|
|
31
|
+
* assert.strictEqual(esmFS.readFile, newAPI);
|
|
32
|
+
* // readFileSync has been deleted from the required fs
|
|
33
|
+
* assert.strictEqual('readFileSync' in fs, false);
|
|
34
|
+
* // syncBuiltinESMExports() does not remove readFileSync from esmFS
|
|
35
|
+
* assert.strictEqual('readFileSync' in esmFS, true);
|
|
36
|
+
* // syncBuiltinESMExports() does not add names
|
|
37
|
+
* assert.strictEqual(esmFS.newAPI, undefined);
|
|
38
|
+
* });
|
|
39
|
+
* ```
|
|
40
|
+
* @since v12.12.0
|
|
41
|
+
*/
|
|
42
|
+
function syncBuiltinESMExports(): void;
|
|
43
|
+
/**
|
|
44
|
+
* `path` is the resolved path for the file for which a corresponding source map
|
|
45
|
+
* should be fetched.
|
|
46
|
+
* @since v13.7.0, v12.17.0
|
|
47
|
+
*/
|
|
48
|
+
function findSourceMap(path: string, error?: Error): SourceMap;
|
|
49
|
+
interface SourceMapPayload {
|
|
50
|
+
file: string;
|
|
51
|
+
version: number;
|
|
52
|
+
sources: string[];
|
|
53
|
+
sourcesContent: string[];
|
|
54
|
+
names: string[];
|
|
55
|
+
mappings: string;
|
|
56
|
+
sourceRoot: string;
|
|
57
|
+
}
|
|
58
|
+
interface SourceMapping {
|
|
59
|
+
generatedLine: number;
|
|
60
|
+
generatedColumn: number;
|
|
61
|
+
originalSource: string;
|
|
62
|
+
originalLine: number;
|
|
63
|
+
originalColumn: number;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* @since v13.7.0, v12.17.0
|
|
67
|
+
*/
|
|
68
|
+
class SourceMap {
|
|
69
|
+
/**
|
|
70
|
+
* Getter for the payload used to construct the `SourceMap` instance.
|
|
71
|
+
*/
|
|
72
|
+
readonly payload: SourceMapPayload;
|
|
73
|
+
constructor(payload: SourceMapPayload);
|
|
74
|
+
/**
|
|
75
|
+
* Given a line number and column number in the generated source file, returns
|
|
76
|
+
* an object representing the position in the original file. The object returned
|
|
77
|
+
* consists of the following keys:
|
|
78
|
+
*/
|
|
79
|
+
findEntry(line: number, column: number): SourceMapping;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
interface Module extends NodeModule {}
|
|
83
|
+
class Module {
|
|
84
|
+
static runMain(): void;
|
|
85
|
+
static wrap(code: string): string;
|
|
86
|
+
static createRequire(path: string | URL): NodeRequire;
|
|
87
|
+
static builtinModules: string[];
|
|
88
|
+
static Module: typeof Module;
|
|
89
|
+
constructor(id: string, parent?: Module);
|
|
90
|
+
}
|
|
91
|
+
global {
|
|
92
|
+
interface ImportMeta {
|
|
93
|
+
url: string;
|
|
94
|
+
/**
|
|
95
|
+
* @experimental
|
|
96
|
+
* This feature is only available with the `--experimental-import-meta-resolve`
|
|
97
|
+
* command flag enabled.
|
|
98
|
+
*
|
|
99
|
+
* Provides a module-relative resolution function scoped to each module, returning
|
|
100
|
+
* the URL string.
|
|
101
|
+
*
|
|
102
|
+
* @param specified The module specifier to resolve relative to `parent`.
|
|
103
|
+
* @param parent The absolute parent module URL to resolve from. If none
|
|
104
|
+
* is specified, the value of `import.meta.url` is used as the default.
|
|
105
|
+
*/
|
|
106
|
+
resolve?(specified: string, parent?: string | URL): Promise<string>;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
export = Module;
|
|
110
|
+
}
|
|
111
|
+
declare module 'node:module' {
|
|
112
|
+
import module = require('module');
|
|
113
|
+
export = module;
|
|
114
|
+
}
|