tina4-nodejs 3.13.123 → 3.13.124
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/CLAUDE.md
CHANGED
|
@@ -13,13 +13,13 @@ Even if the skill text is not currently loaded, these are non-negotiable:
|
|
|
13
13
|
|
|
14
14
|
The full discipline lives in `.claude/skills/tina4-maintainer/SKILL.md`; this block is the always-on floor.
|
|
15
15
|
|
|
16
|
-
# CLAUDE.md - AI Developer Guide for tina4-nodejs (v3.13.
|
|
16
|
+
# CLAUDE.md - AI Developer Guide for tina4-nodejs (v3.13.124)
|
|
17
17
|
|
|
18
18
|
> This file helps AI assistants (Claude, Copilot, Cursor, etc.) understand and work on this codebase effectively.
|
|
19
19
|
|
|
20
20
|
## What This Project Is
|
|
21
21
|
|
|
22
|
-
Tina4 for Node.js/TypeScript v3.13.
|
|
22
|
+
Tina4 for Node.js/TypeScript v3.13.124 - The Intelligent Native Application 4ramework. A convention-over-configuration structural paradigm. The developer writes TypeScript; Tina4 is invisible infrastructure.
|
|
23
23
|
|
|
24
24
|
The philosophy: zero ceremony, batteries included, file system as source of truth.
|
|
25
25
|
|
package/package.json
CHANGED
package/packages/cli/dist/bin.js
CHANGED
|
@@ -22383,8 +22383,10 @@ var init_databaseHandler = __esm({
|
|
|
22383
22383
|
// A VARCHAR rather than BLOB SUB_TYPE TEXT on purpose: node-firebird hands a
|
|
22384
22384
|
// blob back as a reader function rather than a string, which the read path
|
|
22385
22385
|
// here would not understand. The cost is a session payload ceiling of 8191
|
|
22386
|
-
// characters on this engine alone.
|
|
22387
|
-
//
|
|
22386
|
+
// characters on this engine alone. VERIFIED end to end through the
|
|
22387
|
+
// node-firebird DRIVER against the lab's live Firebird 5.0.4: a nested payload
|
|
22388
|
+
// written by one handler and read back by a fresh one round-tripped intact
|
|
22389
|
+
// through this VARCHAR column - not just the isql-level SQL measured above.
|
|
22388
22390
|
firebird: `
|
|
22389
22391
|
EXECUTE BLOCK AS BEGIN
|
|
22390
22392
|
IF (NOT EXISTS(SELECT 1 FROM RDB$RELATIONS WHERE RDB$RELATION_NAME = 'TINA4_SESSION')) THEN
|
|
@@ -22362,8 +22362,10 @@ var init_databaseHandler = __esm({
|
|
|
22362
22362
|
// A VARCHAR rather than BLOB SUB_TYPE TEXT on purpose: node-firebird hands a
|
|
22363
22363
|
// blob back as a reader function rather than a string, which the read path
|
|
22364
22364
|
// here would not understand. The cost is a session payload ceiling of 8191
|
|
22365
|
-
// characters on this engine alone.
|
|
22366
|
-
//
|
|
22365
|
+
// characters on this engine alone. VERIFIED end to end through the
|
|
22366
|
+
// node-firebird DRIVER against the lab's live Firebird 5.0.4: a nested payload
|
|
22367
|
+
// written by one handler and read back by a fresh one round-tripped intact
|
|
22368
|
+
// through this VARCHAR column - not just the isql-level SQL measured above.
|
|
22367
22369
|
firebird: `
|
|
22368
22370
|
EXECUTE BLOCK AS BEGIN
|
|
22369
22371
|
IF (NOT EXISTS(SELECT 1 FROM RDB$RELATIONS WHERE RDB$RELATION_NAME = 'TINA4_SESSION')) THEN
|
|
@@ -140,8 +140,10 @@ const CREATE_TABLE: Record<string, string> = {
|
|
|
140
140
|
// A VARCHAR rather than BLOB SUB_TYPE TEXT on purpose: node-firebird hands a
|
|
141
141
|
// blob back as a reader function rather than a string, which the read path
|
|
142
142
|
// here would not understand. The cost is a session payload ceiling of 8191
|
|
143
|
-
// characters on this engine alone.
|
|
144
|
-
//
|
|
143
|
+
// characters on this engine alone. VERIFIED end to end through the
|
|
144
|
+
// node-firebird DRIVER against the lab's live Firebird 5.0.4: a nested payload
|
|
145
|
+
// written by one handler and read back by a fresh one round-tripped intact
|
|
146
|
+
// through this VARCHAR column - not just the isql-level SQL measured above.
|
|
145
147
|
firebird: `
|
|
146
148
|
EXECUTE BLOCK AS BEGIN
|
|
147
149
|
IF (NOT EXISTS(SELECT 1 FROM RDB$RELATIONS WHERE RDB$RELATION_NAME = 'TINA4_SESSION')) THEN
|
|
@@ -10721,8 +10721,10 @@ var init_databaseHandler = __esm({
|
|
|
10721
10721
|
// A VARCHAR rather than BLOB SUB_TYPE TEXT on purpose: node-firebird hands a
|
|
10722
10722
|
// blob back as a reader function rather than a string, which the read path
|
|
10723
10723
|
// here would not understand. The cost is a session payload ceiling of 8191
|
|
10724
|
-
// characters on this engine alone.
|
|
10725
|
-
//
|
|
10724
|
+
// characters on this engine alone. VERIFIED end to end through the
|
|
10725
|
+
// node-firebird DRIVER against the lab's live Firebird 5.0.4: a nested payload
|
|
10726
|
+
// written by one handler and read back by a fresh one round-tripped intact
|
|
10727
|
+
// through this VARCHAR column - not just the isql-level SQL measured above.
|
|
10726
10728
|
firebird: `
|
|
10727
10729
|
EXECUTE BLOCK AS BEGIN
|
|
10728
10730
|
IF (NOT EXISTS(SELECT 1 FROM RDB$RELATIONS WHERE RDB$RELATION_NAME = 'TINA4_SESSION')) THEN
|