@pellux/goodvibes-sdk 1.3.2 → 1.3.3
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.
|
@@ -52,7 +52,7 @@ function isExtensionLoadingRefusal(err) {
|
|
|
52
52
|
// Apple's SQLite refuses with an authorization message; a build with
|
|
53
53
|
// SQLITE_OMIT_LOAD_EXTENSION names the capability. A missing file surfaces
|
|
54
54
|
// as ENOENT/dlopen-no-such-file and must stay a loud defect.
|
|
55
|
-
return /not authorized|omit.*load.*extension|extension loading is disabled/i.test(message);
|
|
55
|
+
return /not authorized|omit.*load.*extension|extension loading is disabled|does not support dynamic extension loading/i.test(message);
|
|
56
56
|
}
|
|
57
57
|
/**
|
|
58
58
|
* Loads the sqlite-vec extension into a Bun SQLite database.
|
package/dist/platform/version.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { readFileSync } from 'node:fs';
|
|
2
2
|
import { join } from 'node:path';
|
|
3
|
-
let version = '1.3.
|
|
3
|
+
let version = '1.3.3';
|
|
4
4
|
try {
|
|
5
5
|
const pkg = JSON.parse(readFileSync(join(import.meta.dir, '..', '..', 'package.json'), 'utf-8'));
|
|
6
6
|
version = pkg.version ?? version;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pellux/goodvibes-sdk",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.3",
|
|
4
4
|
"description": "TypeScript SDK for building GoodVibes operator, peer, web, mobile, and daemon-connected apps with typed contracts, auth, realtime events, and transport layers.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"goodvibes",
|
|
@@ -477,14 +477,14 @@
|
|
|
477
477
|
"sideEffects": false,
|
|
478
478
|
"type": "module",
|
|
479
479
|
"dependencies": {
|
|
480
|
-
"@pellux/goodvibes-contracts": "1.3.
|
|
481
|
-
"@pellux/goodvibes-daemon-sdk": "1.3.
|
|
482
|
-
"@pellux/goodvibes-errors": "1.3.
|
|
483
|
-
"@pellux/goodvibes-operator-sdk": "1.3.
|
|
484
|
-
"@pellux/goodvibes-peer-sdk": "1.3.
|
|
485
|
-
"@pellux/goodvibes-transport-core": "1.3.
|
|
486
|
-
"@pellux/goodvibes-transport-http": "1.3.
|
|
487
|
-
"@pellux/goodvibes-transport-realtime": "1.3.
|
|
480
|
+
"@pellux/goodvibes-contracts": "1.3.3",
|
|
481
|
+
"@pellux/goodvibes-daemon-sdk": "1.3.3",
|
|
482
|
+
"@pellux/goodvibes-errors": "1.3.3",
|
|
483
|
+
"@pellux/goodvibes-operator-sdk": "1.3.3",
|
|
484
|
+
"@pellux/goodvibes-peer-sdk": "1.3.3",
|
|
485
|
+
"@pellux/goodvibes-transport-core": "1.3.3",
|
|
486
|
+
"@pellux/goodvibes-transport-http": "1.3.3",
|
|
487
|
+
"@pellux/goodvibes-transport-realtime": "1.3.3"
|
|
488
488
|
},
|
|
489
489
|
"optionalDependencies": {
|
|
490
490
|
"@agentclientprotocol/sdk": "^0.21.0",
|