@jskit-ai/auth-provider-local-db-core 0.1.8 → 0.1.9
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/package.descriptor.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export default Object.freeze({
|
|
2
2
|
packageVersion: 1,
|
|
3
3
|
packageId: "@jskit-ai/auth-provider-local-db-core",
|
|
4
|
-
version: "0.1.
|
|
4
|
+
version: "0.1.9",
|
|
5
5
|
kind: "runtime",
|
|
6
6
|
description: "Database-backed local auth storage backend for JSKIT local auth.",
|
|
7
7
|
dependsOn: [
|
|
@@ -70,12 +70,19 @@ export default Object.freeze({
|
|
|
70
70
|
}
|
|
71
71
|
}
|
|
72
72
|
},
|
|
73
|
+
ci: {
|
|
74
|
+
environment: {
|
|
75
|
+
AUTH_LOCAL_BACKEND: "db"
|
|
76
|
+
},
|
|
77
|
+
services: [],
|
|
78
|
+
steps: []
|
|
79
|
+
},
|
|
73
80
|
mutations: {
|
|
74
81
|
dependencies: {
|
|
75
82
|
runtime: {
|
|
76
|
-
"@jskit-ai/auth-provider-local-core": "0.1.
|
|
77
|
-
"@jskit-ai/database-runtime": "0.1.
|
|
78
|
-
"@jskit-ai/kernel": "0.1.
|
|
83
|
+
"@jskit-ai/auth-provider-local-core": "0.1.17",
|
|
84
|
+
"@jskit-ai/database-runtime": "0.1.117",
|
|
85
|
+
"@jskit-ai/kernel": "0.1.118"
|
|
79
86
|
},
|
|
80
87
|
dev: {}
|
|
81
88
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jskit-ai/auth-provider-local-db-core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "node --test"
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"./server/lib/index": "./src/server/lib/index.js"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@jskit-ai/auth-provider-local-core": "0.1.
|
|
14
|
-
"@jskit-ai/database-runtime": "0.1.
|
|
15
|
-
"@jskit-ai/kernel": "0.1.
|
|
13
|
+
"@jskit-ai/auth-provider-local-core": "0.1.17",
|
|
14
|
+
"@jskit-ai/database-runtime": "0.1.117",
|
|
15
|
+
"@jskit-ai/kernel": "0.1.118"
|
|
16
16
|
}
|
|
17
17
|
}
|
|
@@ -470,6 +470,8 @@ test("local auth DB backend still supports lazy profile projection", async () =>
|
|
|
470
470
|
test("package descriptor installs portable local auth DB migrations", () => {
|
|
471
471
|
const files = descriptor.mutations.files.map((file) => file.from);
|
|
472
472
|
assert.deepEqual(files, ["templates/migrations/auth_local_db_initial.cjs"]);
|
|
473
|
+
assert.equal(descriptor.ci.environment.AUTH_LOCAL_BACKEND, "db");
|
|
474
|
+
assert.deepEqual(descriptor.ci.services, []);
|
|
473
475
|
assert.deepEqual(
|
|
474
476
|
descriptor.metadata.jskit.tableOwnership.tables.map((table) => table.tableName),
|
|
475
477
|
[
|