@tachybase/module-multi-app 1.5.1 → 1.6.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 +5 -5
- package/dist/node_modules/mariadb/callback.js +43 -8
- package/dist/node_modules/mariadb/check-node.js +30 -0
- package/dist/node_modules/mariadb/lib/cluster-callback.js +84 -0
- package/dist/node_modules/mariadb/lib/cluster.js +446 -0
- package/dist/node_modules/mariadb/lib/cmd/batch-bulk.js +576 -177
- package/dist/node_modules/mariadb/lib/cmd/change-user.js +54 -44
- package/dist/node_modules/mariadb/lib/cmd/class/ok-packet.js +3 -2
- package/dist/node_modules/mariadb/lib/cmd/class/prepare-cache-wrapper.js +46 -0
- package/dist/node_modules/mariadb/lib/cmd/class/prepare-result-packet.js +141 -0
- package/dist/node_modules/mariadb/lib/cmd/class/prepare-wrapper.js +70 -0
- package/dist/node_modules/mariadb/lib/cmd/close-prepare.js +38 -0
- package/dist/node_modules/mariadb/lib/cmd/column-definition.js +145 -47
- package/dist/node_modules/mariadb/lib/cmd/command.js +41 -75
- package/dist/node_modules/mariadb/lib/cmd/decoder/binary-decoder.js +282 -0
- package/dist/node_modules/mariadb/lib/cmd/decoder/text-decoder.js +210 -0
- package/dist/node_modules/mariadb/lib/cmd/{common-binary-cmd.js → encoder/binary-encoder.js} +34 -77
- package/dist/node_modules/mariadb/lib/cmd/encoder/text-encoder.js +311 -0
- package/dist/node_modules/mariadb/lib/cmd/execute-stream.js +61 -0
- package/dist/node_modules/mariadb/lib/cmd/execute.js +338 -0
- package/dist/node_modules/mariadb/lib/cmd/handshake/auth/caching-sha2-password-auth.js +25 -62
- package/dist/node_modules/mariadb/lib/cmd/handshake/auth/clear-password-auth.js +39 -6
- package/dist/node_modules/mariadb/lib/cmd/handshake/auth/ed25519-password-auth.js +48 -16
- package/dist/node_modules/mariadb/lib/cmd/handshake/auth/handshake.js +198 -0
- package/dist/node_modules/mariadb/lib/cmd/handshake/{initial-handshake.js → auth/initial-handshake.js} +10 -8
- package/dist/node_modules/mariadb/lib/cmd/handshake/auth/native-password-auth.js +22 -9
- package/dist/node_modules/mariadb/lib/cmd/handshake/auth/pam-password-auth.js +9 -4
- package/dist/node_modules/mariadb/lib/cmd/handshake/auth/parsec-auth.js +115 -0
- package/dist/node_modules/mariadb/lib/cmd/handshake/auth/plugin-auth.js +12 -5
- package/dist/node_modules/mariadb/lib/cmd/handshake/auth/sha256-password-auth.js +44 -33
- package/dist/node_modules/mariadb/lib/cmd/handshake/authentication.js +335 -0
- package/dist/node_modules/mariadb/lib/cmd/handshake/client-capabilities.js +20 -19
- package/dist/node_modules/mariadb/lib/cmd/handshake/ssl-request.js +6 -3
- package/dist/node_modules/mariadb/lib/cmd/parser.js +861 -0
- package/dist/node_modules/mariadb/lib/cmd/ping.js +17 -18
- package/dist/node_modules/mariadb/lib/cmd/prepare.js +170 -0
- package/dist/node_modules/mariadb/lib/cmd/query.js +281 -144
- package/dist/node_modules/mariadb/lib/cmd/quit.js +9 -6
- package/dist/node_modules/mariadb/lib/cmd/reset.js +15 -19
- package/dist/node_modules/mariadb/lib/cmd/stream.js +21 -6
- package/dist/node_modules/mariadb/lib/config/cluster-options.js +23 -0
- package/dist/node_modules/mariadb/lib/config/connection-options.js +196 -132
- package/dist/node_modules/mariadb/lib/config/pool-options.js +27 -19
- package/dist/node_modules/mariadb/lib/connection-callback.js +492 -120
- package/dist/node_modules/mariadb/lib/connection-promise.js +372 -0
- package/dist/node_modules/mariadb/lib/connection.js +1739 -1016
- package/dist/node_modules/mariadb/lib/const/capabilities.js +36 -30
- package/dist/node_modules/mariadb/lib/const/collations.js +972 -36
- package/dist/node_modules/mariadb/lib/const/connection_status.js +3 -0
- package/dist/node_modules/mariadb/lib/const/error-code.js +35 -11
- package/dist/node_modules/mariadb/lib/const/field-detail.js +3 -0
- package/dist/node_modules/mariadb/lib/const/field-type.js +7 -4
- package/dist/node_modules/mariadb/lib/const/server-status.js +4 -1
- package/dist/node_modules/mariadb/lib/const/state-change.js +3 -0
- package/dist/node_modules/mariadb/lib/filtered-cluster-callback.js +136 -0
- package/dist/node_modules/mariadb/lib/filtered-cluster.js +118 -0
- package/dist/node_modules/mariadb/lib/io/compression-input-stream.js +14 -13
- package/dist/node_modules/mariadb/lib/io/compression-output-stream.js +21 -18
- package/dist/node_modules/mariadb/lib/io/packet-input-stream.js +75 -64
- package/dist/node_modules/mariadb/lib/io/packet-node-encoded.js +13 -9
- package/dist/node_modules/mariadb/lib/io/packet-node-iconv.js +12 -10
- package/dist/node_modules/mariadb/lib/io/packet-output-stream.js +402 -134
- package/dist/node_modules/mariadb/lib/io/packet.js +287 -202
- package/dist/node_modules/mariadb/lib/lru-prepare-cache.js +84 -0
- package/dist/node_modules/mariadb/lib/misc/connection-information.js +15 -32
- package/dist/node_modules/mariadb/lib/misc/errors.js +68 -25
- package/dist/node_modules/mariadb/lib/misc/parse.js +207 -711
- package/dist/node_modules/mariadb/lib/misc/utils.js +34 -62
- package/dist/node_modules/mariadb/lib/pool-callback.js +213 -174
- package/dist/node_modules/mariadb/lib/pool-promise.js +228 -94
- package/dist/node_modules/mariadb/lib/pool.js +951 -0
- package/dist/node_modules/mariadb/package.json +1 -1
- package/dist/node_modules/mariadb/promise.js +1 -34
- package/dist/node_modules/mariadb/types/callback.d.ts +207 -0
- package/dist/node_modules/mariadb/types/index.d.ts +94 -674
- package/dist/node_modules/mariadb/types/share.d.ts +804 -0
- package/dist/node_modules/qs/package.json +1 -1
- package/dist/server/actions/apps.js +2 -2
- package/dist/server/app-lifecycle.d.ts +1 -1
- package/dist/server/app-lifecycle.js +4 -4
- package/dist/server/models/application.d.ts +1 -1
- package/package.json +7 -7
- package/dist/node_modules/mariadb/lib/cmd/batch-rewrite.js +0 -372
- package/dist/node_modules/mariadb/lib/cmd/common-text-cmd.js +0 -427
- package/dist/node_modules/mariadb/lib/cmd/handshake/client-handshake-response.js +0 -126
- package/dist/node_modules/mariadb/lib/cmd/handshake/handshake.js +0 -292
- package/dist/node_modules/mariadb/lib/cmd/resultset.js +0 -607
- package/dist/node_modules/mariadb/lib/config/pool-cluster-options.js +0 -19
- package/dist/node_modules/mariadb/lib/filtered-pool-cluster.js +0 -81
- package/dist/node_modules/mariadb/lib/io/bulk-packet.js +0 -590
- package/dist/node_modules/mariadb/lib/io/rewrite-packet.js +0 -481
- package/dist/node_modules/mariadb/lib/pool-base.js +0 -611
- package/dist/node_modules/mariadb/lib/pool-cluster-callback.js +0 -66
- package/dist/node_modules/mariadb/lib/pool-cluster.js +0 -407
|
@@ -1,64 +1,70 @@
|
|
|
1
|
+
// SPDX-License-Identifier: LGPL-2.1-or-later
|
|
2
|
+
// Copyright (c) 2015-2025 MariaDB Corporation Ab
|
|
3
|
+
|
|
1
4
|
/**
|
|
2
5
|
* Capabilities list ( with 'CLIENT_' removed)
|
|
3
6
|
* see : https://mariadb.com/kb/en/library/1-connecting-connecting/#capabilities
|
|
4
7
|
*/
|
|
5
8
|
/* mysql/old mariadb server/client */
|
|
6
|
-
module.exports.MYSQL =
|
|
9
|
+
module.exports.MYSQL = 1n;
|
|
7
10
|
/* Found instead of affected rows */
|
|
8
|
-
module.exports.FOUND_ROWS =
|
|
11
|
+
module.exports.FOUND_ROWS = 2n;
|
|
9
12
|
/* get all column flags */
|
|
10
|
-
module.exports.LONG_FLAG =
|
|
13
|
+
module.exports.LONG_FLAG = 4n;
|
|
11
14
|
/* one can specify db on connect */
|
|
12
|
-
module.exports.CONNECT_WITH_DB =
|
|
15
|
+
module.exports.CONNECT_WITH_DB = 8n;
|
|
13
16
|
/* don't allow database.table.column */
|
|
14
|
-
module.exports.NO_SCHEMA =
|
|
17
|
+
module.exports.NO_SCHEMA = 1n << 4n;
|
|
15
18
|
/* can use compression protocol */
|
|
16
|
-
module.exports.COMPRESS =
|
|
19
|
+
module.exports.COMPRESS = 1n << 5n;
|
|
17
20
|
/* odbc client */
|
|
18
|
-
module.exports.ODBC =
|
|
21
|
+
module.exports.ODBC = 1n << 6n;
|
|
19
22
|
/* can use LOAD DATA LOCAL */
|
|
20
|
-
module.exports.LOCAL_FILES =
|
|
23
|
+
module.exports.LOCAL_FILES = 1n << 7n;
|
|
21
24
|
/* ignore spaces before '' */
|
|
22
|
-
module.exports.IGNORE_SPACE =
|
|
25
|
+
module.exports.IGNORE_SPACE = 1n << 8n;
|
|
23
26
|
/* new 4.1 protocol */
|
|
24
|
-
module.exports.PROTOCOL_41 =
|
|
27
|
+
module.exports.PROTOCOL_41 = 1n << 9n;
|
|
25
28
|
/* this is an interactive client */
|
|
26
|
-
module.exports.INTERACTIVE =
|
|
29
|
+
module.exports.INTERACTIVE = 1n << 10n;
|
|
27
30
|
/* switch to ssl after handshake */
|
|
28
|
-
module.exports.SSL =
|
|
31
|
+
module.exports.SSL = 1n << 11n;
|
|
29
32
|
/* IGNORE sigpipes */
|
|
30
|
-
module.exports.IGNORE_SIGPIPE =
|
|
33
|
+
module.exports.IGNORE_SIGPIPE = 1n << 12n;
|
|
31
34
|
/* client knows about transactions */
|
|
32
|
-
module.exports.TRANSACTIONS =
|
|
35
|
+
module.exports.TRANSACTIONS = 1n << 13n;
|
|
33
36
|
/* old flag for 4.1 protocol */
|
|
34
|
-
module.exports.RESERVED =
|
|
37
|
+
module.exports.RESERVED = 1n << 14n;
|
|
35
38
|
/* new 4.1 authentication */
|
|
36
|
-
module.exports.SECURE_CONNECTION =
|
|
39
|
+
module.exports.SECURE_CONNECTION = 1n << 15n;
|
|
37
40
|
/* enable/disable multi-stmt support */
|
|
38
|
-
module.exports.MULTI_STATEMENTS =
|
|
41
|
+
module.exports.MULTI_STATEMENTS = 1n << 16n;
|
|
39
42
|
/* enable/disable multi-results */
|
|
40
|
-
module.exports.MULTI_RESULTS =
|
|
43
|
+
module.exports.MULTI_RESULTS = 1n << 17n;
|
|
41
44
|
/* multi-results in ps-protocol */
|
|
42
|
-
module.exports.PS_MULTI_RESULTS =
|
|
45
|
+
module.exports.PS_MULTI_RESULTS = 1n << 18n;
|
|
43
46
|
/* client supports plugin authentication */
|
|
44
|
-
module.exports.PLUGIN_AUTH =
|
|
47
|
+
module.exports.PLUGIN_AUTH = 1n << 19n;
|
|
45
48
|
/* permits connection attributes */
|
|
46
|
-
module.exports.CONNECT_ATTRS =
|
|
49
|
+
module.exports.CONNECT_ATTRS = 1n << 20n;
|
|
47
50
|
/* Enable authentication response packet to be larger than 255 bytes. */
|
|
48
|
-
module.exports.PLUGIN_AUTH_LENENC_CLIENT_DATA =
|
|
51
|
+
module.exports.PLUGIN_AUTH_LENENC_CLIENT_DATA = 1n << 21n;
|
|
49
52
|
/* Don't close the connection for a connection with expired password. */
|
|
50
|
-
module.exports.CAN_HANDLE_EXPIRED_PASSWORDS =
|
|
51
|
-
/* Capable of handling server state change information.
|
|
53
|
+
module.exports.CAN_HANDLE_EXPIRED_PASSWORDS = 1n << 22n;
|
|
54
|
+
/* Capable of handling server state change information. It's a hint to the
|
|
52
55
|
server to include the state change information in Ok packet. */
|
|
53
|
-
module.exports.SESSION_TRACK =
|
|
56
|
+
module.exports.SESSION_TRACK = 1n << 23n;
|
|
54
57
|
/* Client no longer needs EOF packet */
|
|
55
|
-
module.exports.DEPRECATE_EOF =
|
|
56
|
-
module.exports.SSL_VERIFY_SERVER_CERT =
|
|
58
|
+
module.exports.DEPRECATE_EOF = 1n << 24n;
|
|
59
|
+
module.exports.SSL_VERIFY_SERVER_CERT = 1n << 30n;
|
|
57
60
|
|
|
58
61
|
/* MariaDB extended capabilities */
|
|
59
62
|
|
|
60
63
|
/* Permit bulk insert*/
|
|
61
|
-
module.exports.MARIADB_CLIENT_STMT_BULK_OPERATIONS =
|
|
62
|
-
|
|
64
|
+
module.exports.MARIADB_CLIENT_STMT_BULK_OPERATIONS = 1n << 34n;
|
|
63
65
|
/* Clients supporting extended metadata */
|
|
64
|
-
module.exports.
|
|
66
|
+
module.exports.MARIADB_CLIENT_EXTENDED_METADATA = 1n << 35n;
|
|
67
|
+
/* permit metadata caching */
|
|
68
|
+
module.exports.MARIADB_CLIENT_CACHE_METADATA = 1n << 36n;
|
|
69
|
+
/* permit returning all bulk individual results */
|
|
70
|
+
module.exports.BULK_UNIT_RESULTS = 1n << 37n;
|