@objectstack/metadata 5.2.0 → 6.0.0
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/index.cjs +82 -24
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -8
- package/dist/index.d.ts +8 -8
- package/dist/index.js +82 -24
- package/dist/index.js.map +1 -1
- package/dist/migrations/index.cjs +58 -3
- package/dist/migrations/index.cjs.map +1 -1
- package/dist/migrations/index.d.cts +45 -3
- package/dist/migrations/index.d.ts +45 -3
- package/dist/migrations/index.js +56 -2
- package/dist/migrations/index.js.map +1 -1
- package/dist/node.cjs +82 -24
- package/dist/node.cjs.map +1 -1
- package/dist/node.js +82 -24
- package/dist/node.js.map +1 -1
- package/package.json +7 -7
package/dist/index.d.cts
CHANGED
|
@@ -179,9 +179,9 @@ declare class MetadataManager implements IMetadataService {
|
|
|
179
179
|
*
|
|
180
180
|
* @param driver - An IDataDriver instance for database operations
|
|
181
181
|
* @param organizationId - Organization ID for multi-tenant isolation
|
|
182
|
-
* @param
|
|
182
|
+
* @param environmentId - Project ID (undefined = platform-global)
|
|
183
183
|
*/
|
|
184
|
-
setDatabaseDriver(driver: IDataDriver, organizationId?: string,
|
|
184
|
+
setDatabaseDriver(driver: IDataDriver, organizationId?: string, environmentId?: string): void;
|
|
185
185
|
/**
|
|
186
186
|
* Configure and register a DatabaseLoader backed by an IDataEngine (ObjectQL).
|
|
187
187
|
* The engine handles datasource routing automatically — sys_metadata will
|
|
@@ -190,9 +190,9 @@ declare class MetadataManager implements IMetadataService {
|
|
|
190
190
|
*
|
|
191
191
|
* @param engine - An IDataEngine instance (typically the ObjectQL service)
|
|
192
192
|
* @param organizationId - Organization ID for multi-tenant isolation
|
|
193
|
-
* @param
|
|
193
|
+
* @param environmentId - Project ID (undefined = platform-global)
|
|
194
194
|
*/
|
|
195
|
-
setDataEngine(engine: IDataEngine, organizationId?: string,
|
|
195
|
+
setDataEngine(engine: IDataEngine, organizationId?: string, environmentId?: string): void;
|
|
196
196
|
/**
|
|
197
197
|
* Set the realtime service for publishing metadata change events.
|
|
198
198
|
* Should be called after kernel resolves the realtime service.
|
|
@@ -511,7 +511,7 @@ interface MetadataPluginOptions {
|
|
|
511
511
|
/** Organization ID for metadata-scoped consumers; MetadataPlugin itself does not persist runtime metadata. */
|
|
512
512
|
organizationId?: string;
|
|
513
513
|
/** Project ID used by local artifact envelopes and metadata-scoped consumers. */
|
|
514
|
-
|
|
514
|
+
environmentId?: string;
|
|
515
515
|
/**
|
|
516
516
|
* When set, MetadataPlugin loads metadata from an artifact instead of scanning
|
|
517
517
|
* the filesystem. Only `local-file` is implemented now; `artifact-api` is
|
|
@@ -712,10 +712,10 @@ interface DatabaseLoaderOptions {
|
|
|
712
712
|
* @deprecated since ADR-0008 §0 amendment (branch/project removal).
|
|
713
713
|
* The metadata layer is keyed by organization only. This option is
|
|
714
714
|
* accepted for back-compat but ignored — writes do not set
|
|
715
|
-
* `
|
|
715
|
+
* `environment_id` and filters do not constrain on it. Will be removed
|
|
716
716
|
* in the next major release.
|
|
717
717
|
*/
|
|
718
|
-
|
|
718
|
+
environmentId?: string;
|
|
719
719
|
/** Enable history tracking (default: true) */
|
|
720
720
|
trackHistory?: boolean;
|
|
721
721
|
/**
|
|
@@ -794,7 +794,7 @@ declare class DatabaseLoader implements MetadataLoader {
|
|
|
794
794
|
private ensureHistorySchema;
|
|
795
795
|
/**
|
|
796
796
|
* Build base filter conditions for queries.
|
|
797
|
-
* Filters by organizationId when configured. `
|
|
797
|
+
* Filters by organizationId when configured. `environmentId` is accepted
|
|
798
798
|
* for back-compat but no longer constrains the query — see
|
|
799
799
|
* ADR-0008 §0 (branch/project removal).
|
|
800
800
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -179,9 +179,9 @@ declare class MetadataManager implements IMetadataService {
|
|
|
179
179
|
*
|
|
180
180
|
* @param driver - An IDataDriver instance for database operations
|
|
181
181
|
* @param organizationId - Organization ID for multi-tenant isolation
|
|
182
|
-
* @param
|
|
182
|
+
* @param environmentId - Project ID (undefined = platform-global)
|
|
183
183
|
*/
|
|
184
|
-
setDatabaseDriver(driver: IDataDriver, organizationId?: string,
|
|
184
|
+
setDatabaseDriver(driver: IDataDriver, organizationId?: string, environmentId?: string): void;
|
|
185
185
|
/**
|
|
186
186
|
* Configure and register a DatabaseLoader backed by an IDataEngine (ObjectQL).
|
|
187
187
|
* The engine handles datasource routing automatically — sys_metadata will
|
|
@@ -190,9 +190,9 @@ declare class MetadataManager implements IMetadataService {
|
|
|
190
190
|
*
|
|
191
191
|
* @param engine - An IDataEngine instance (typically the ObjectQL service)
|
|
192
192
|
* @param organizationId - Organization ID for multi-tenant isolation
|
|
193
|
-
* @param
|
|
193
|
+
* @param environmentId - Project ID (undefined = platform-global)
|
|
194
194
|
*/
|
|
195
|
-
setDataEngine(engine: IDataEngine, organizationId?: string,
|
|
195
|
+
setDataEngine(engine: IDataEngine, organizationId?: string, environmentId?: string): void;
|
|
196
196
|
/**
|
|
197
197
|
* Set the realtime service for publishing metadata change events.
|
|
198
198
|
* Should be called after kernel resolves the realtime service.
|
|
@@ -511,7 +511,7 @@ interface MetadataPluginOptions {
|
|
|
511
511
|
/** Organization ID for metadata-scoped consumers; MetadataPlugin itself does not persist runtime metadata. */
|
|
512
512
|
organizationId?: string;
|
|
513
513
|
/** Project ID used by local artifact envelopes and metadata-scoped consumers. */
|
|
514
|
-
|
|
514
|
+
environmentId?: string;
|
|
515
515
|
/**
|
|
516
516
|
* When set, MetadataPlugin loads metadata from an artifact instead of scanning
|
|
517
517
|
* the filesystem. Only `local-file` is implemented now; `artifact-api` is
|
|
@@ -712,10 +712,10 @@ interface DatabaseLoaderOptions {
|
|
|
712
712
|
* @deprecated since ADR-0008 §0 amendment (branch/project removal).
|
|
713
713
|
* The metadata layer is keyed by organization only. This option is
|
|
714
714
|
* accepted for back-compat but ignored — writes do not set
|
|
715
|
-
* `
|
|
715
|
+
* `environment_id` and filters do not constrain on it. Will be removed
|
|
716
716
|
* in the next major release.
|
|
717
717
|
*/
|
|
718
|
-
|
|
718
|
+
environmentId?: string;
|
|
719
719
|
/** Enable history tracking (default: true) */
|
|
720
720
|
trackHistory?: boolean;
|
|
721
721
|
/**
|
|
@@ -794,7 +794,7 @@ declare class DatabaseLoader implements MetadataLoader {
|
|
|
794
794
|
private ensureHistorySchema;
|
|
795
795
|
/**
|
|
796
796
|
* Build base filter conditions for queries.
|
|
797
|
-
* Filters by organizationId when configured. `
|
|
797
|
+
* Filters by organizationId when configured. `environmentId` is accepted
|
|
798
798
|
* for back-compat but no longer constrains the query — see
|
|
799
799
|
* ADR-0008 §0 (branch/project removal).
|
|
800
800
|
*/
|
package/dist/index.js
CHANGED
|
@@ -502,7 +502,7 @@ var LRUCache = class {
|
|
|
502
502
|
// src/migrations/add-sys-metadata-overlay-index.ts
|
|
503
503
|
var INDEX_NAME = "idx_sys_metadata_overlay_active";
|
|
504
504
|
var TABLE = "sys_metadata";
|
|
505
|
-
var COLUMNS = "(type, name, organization_id,
|
|
505
|
+
var COLUMNS = "(type, name, organization_id, environment_id, scope)";
|
|
506
506
|
var WHERE = "state = 'active'";
|
|
507
507
|
async function addSysMetadataOverlayIndex(driver) {
|
|
508
508
|
const driverAny = driver;
|
|
@@ -541,6 +541,59 @@ async function addSysMetadataOverlayIndex(driver) {
|
|
|
541
541
|
}
|
|
542
542
|
}
|
|
543
543
|
|
|
544
|
+
// src/migrations/migrate-project-id-to-environment-id.ts
|
|
545
|
+
var AFFECTED_TABLES = [
|
|
546
|
+
"sys_metadata",
|
|
547
|
+
"sys_metadata_history"
|
|
548
|
+
];
|
|
549
|
+
async function migrateProjectIdToEnvironmentId(driver) {
|
|
550
|
+
const driverAny = driver;
|
|
551
|
+
if (typeof driverAny.raw !== "function") {
|
|
552
|
+
throw new Error(
|
|
553
|
+
"migrateProjectIdToEnvironmentId: driver must expose a .raw(sql, bindings?) method. SqlDriver (better-sqlite3/knex) and TursoDriver both support this."
|
|
554
|
+
);
|
|
555
|
+
}
|
|
556
|
+
const results = [];
|
|
557
|
+
for (const table of AFFECTED_TABLES) {
|
|
558
|
+
try {
|
|
559
|
+
const hasColumn = await _columnExists(driverAny, table, "project_id");
|
|
560
|
+
const alreadyMigrated = await _columnExists(driverAny, table, "environment_id");
|
|
561
|
+
if (alreadyMigrated && !hasColumn) {
|
|
562
|
+
results.push({ table, status: "already_done" });
|
|
563
|
+
continue;
|
|
564
|
+
}
|
|
565
|
+
if (!hasColumn) {
|
|
566
|
+
results.push({ table, status: "table_missing" });
|
|
567
|
+
continue;
|
|
568
|
+
}
|
|
569
|
+
await driverAny.raw(
|
|
570
|
+
`ALTER TABLE "${table}" RENAME COLUMN project_id TO environment_id`
|
|
571
|
+
);
|
|
572
|
+
results.push({ table, status: "renamed" });
|
|
573
|
+
} catch (err) {
|
|
574
|
+
results.push({ table, status: "error", error: err?.message ?? String(err) });
|
|
575
|
+
}
|
|
576
|
+
}
|
|
577
|
+
return results;
|
|
578
|
+
}
|
|
579
|
+
async function _columnExists(driver, table, column) {
|
|
580
|
+
try {
|
|
581
|
+
const rows = await driver.raw(`PRAGMA table_info("${table}")`);
|
|
582
|
+
if (Array.isArray(rows) && rows.length > 0) {
|
|
583
|
+
const list2 = Array.isArray(rows[0]) ? rows[0] : rows;
|
|
584
|
+
return list2.some((r) => r?.name === column);
|
|
585
|
+
}
|
|
586
|
+
const result = await driver.raw(
|
|
587
|
+
`SELECT column_name FROM information_schema.columns WHERE table_name = ? AND column_name = ?`,
|
|
588
|
+
[table, column]
|
|
589
|
+
);
|
|
590
|
+
const list = Array.isArray(result[0]) ? result[0] : result;
|
|
591
|
+
return list.length > 0;
|
|
592
|
+
} catch {
|
|
593
|
+
return false;
|
|
594
|
+
}
|
|
595
|
+
}
|
|
596
|
+
|
|
544
597
|
// src/loaders/database-loader.ts
|
|
545
598
|
var DatabaseLoader = class {
|
|
546
599
|
constructor(options) {
|
|
@@ -564,7 +617,7 @@ var DatabaseLoader = class {
|
|
|
564
617
|
this.tableName = options.tableName ?? "sys_metadata";
|
|
565
618
|
this.historyTableName = options.historyTableName ?? "sys_metadata_history";
|
|
566
619
|
this.organizationId = options.organizationId;
|
|
567
|
-
void options.
|
|
620
|
+
void options.environmentId;
|
|
568
621
|
this.trackHistory = options.trackHistory !== false;
|
|
569
622
|
const cacheOpts = options.cache;
|
|
570
623
|
const cacheEnabled = cacheOpts?.enabled !== false;
|
|
@@ -696,6 +749,7 @@ var DatabaseLoader = class {
|
|
|
696
749
|
}
|
|
697
750
|
}
|
|
698
751
|
if (driver) {
|
|
752
|
+
await migrateProjectIdToEnvironmentId(driver).catch(() => void 0);
|
|
699
753
|
await addSysMetadataOverlayIndex(driver);
|
|
700
754
|
}
|
|
701
755
|
} catch {
|
|
@@ -708,6 +762,10 @@ var DatabaseLoader = class {
|
|
|
708
762
|
name: this.tableName
|
|
709
763
|
});
|
|
710
764
|
this.schemaReady = true;
|
|
765
|
+
try {
|
|
766
|
+
await migrateProjectIdToEnvironmentId(this.driver);
|
|
767
|
+
} catch {
|
|
768
|
+
}
|
|
711
769
|
try {
|
|
712
770
|
await addSysMetadataOverlayIndex(this.driver);
|
|
713
771
|
} catch {
|
|
@@ -738,7 +796,7 @@ var DatabaseLoader = class {
|
|
|
738
796
|
}
|
|
739
797
|
/**
|
|
740
798
|
* Build base filter conditions for queries.
|
|
741
|
-
* Filters by organizationId when configured. `
|
|
799
|
+
* Filters by organizationId when configured. `environmentId` is accepted
|
|
742
800
|
* for back-compat but no longer constrains the query — see
|
|
743
801
|
* ADR-0008 §0 (branch/project removal).
|
|
744
802
|
*/
|
|
@@ -837,7 +895,7 @@ var DatabaseLoader = class {
|
|
|
837
895
|
owner: row.owner,
|
|
838
896
|
state: row.state ?? "active",
|
|
839
897
|
organizationId: row.organization_id,
|
|
840
|
-
|
|
898
|
+
environmentId: row.environment_id,
|
|
841
899
|
version: row.version ?? 1,
|
|
842
900
|
checksum: row.checksum,
|
|
843
901
|
source: row.source,
|
|
@@ -1271,13 +1329,13 @@ var _MetadataManager = class _MetadataManager {
|
|
|
1271
1329
|
*
|
|
1272
1330
|
* @param driver - An IDataDriver instance for database operations
|
|
1273
1331
|
* @param organizationId - Organization ID for multi-tenant isolation
|
|
1274
|
-
* @param
|
|
1332
|
+
* @param environmentId - Project ID (undefined = platform-global)
|
|
1275
1333
|
*/
|
|
1276
|
-
setDatabaseDriver(driver, organizationId,
|
|
1277
|
-
if (
|
|
1334
|
+
setDatabaseDriver(driver, organizationId, environmentId) {
|
|
1335
|
+
if (environmentId !== void 0) {
|
|
1278
1336
|
this.logger.info("Project kernel \u2014 skipping DatabaseLoader for sys_metadata (control-plane only)", {
|
|
1279
1337
|
organizationId,
|
|
1280
|
-
|
|
1338
|
+
environmentId
|
|
1281
1339
|
});
|
|
1282
1340
|
return;
|
|
1283
1341
|
}
|
|
@@ -1286,7 +1344,7 @@ var _MetadataManager = class _MetadataManager {
|
|
|
1286
1344
|
driver,
|
|
1287
1345
|
tableName,
|
|
1288
1346
|
organizationId,
|
|
1289
|
-
|
|
1347
|
+
environmentId,
|
|
1290
1348
|
cache: this.config.cache?.databaseLoader
|
|
1291
1349
|
});
|
|
1292
1350
|
this.registerLoader(dbLoader);
|
|
@@ -1300,13 +1358,13 @@ var _MetadataManager = class _MetadataManager {
|
|
|
1300
1358
|
*
|
|
1301
1359
|
* @param engine - An IDataEngine instance (typically the ObjectQL service)
|
|
1302
1360
|
* @param organizationId - Organization ID for multi-tenant isolation
|
|
1303
|
-
* @param
|
|
1361
|
+
* @param environmentId - Project ID (undefined = platform-global)
|
|
1304
1362
|
*/
|
|
1305
|
-
setDataEngine(engine, organizationId,
|
|
1306
|
-
if (
|
|
1363
|
+
setDataEngine(engine, organizationId, environmentId) {
|
|
1364
|
+
if (environmentId !== void 0) {
|
|
1307
1365
|
this.logger.info("Project kernel \u2014 skipping DatabaseLoader for sys_metadata (control-plane only)", {
|
|
1308
1366
|
organizationId,
|
|
1309
|
-
|
|
1367
|
+
environmentId
|
|
1310
1368
|
});
|
|
1311
1369
|
return;
|
|
1312
1370
|
}
|
|
@@ -1315,7 +1373,7 @@ var _MetadataManager = class _MetadataManager {
|
|
|
1315
1373
|
engine,
|
|
1316
1374
|
tableName,
|
|
1317
1375
|
organizationId,
|
|
1318
|
-
|
|
1376
|
+
environmentId,
|
|
1319
1377
|
cache: this.config.cache?.databaseLoader
|
|
1320
1378
|
});
|
|
1321
1379
|
this.registerLoader(dbLoader);
|
|
@@ -3317,24 +3375,24 @@ var MetadataPlugin = class {
|
|
|
3317
3375
|
* metadata items into the MetadataManager.
|
|
3318
3376
|
*/
|
|
3319
3377
|
async _parseAndRegisterArtifact(ctx, raw, label) {
|
|
3320
|
-
const {
|
|
3378
|
+
const { EnvironmentArtifactSchema } = await import("@objectstack/spec/cloud");
|
|
3321
3379
|
const { ObjectStackDefinitionSchema } = await import("@objectstack/spec");
|
|
3322
3380
|
let metadata;
|
|
3323
3381
|
const obj = raw;
|
|
3324
3382
|
if (obj?.schemaVersion && obj?.commitId && obj?.metadata !== void 0) {
|
|
3325
|
-
const artifact =
|
|
3383
|
+
const artifact = EnvironmentArtifactSchema.parse(obj);
|
|
3326
3384
|
metadata = artifact.metadata;
|
|
3327
3385
|
} else if (obj?.success && obj?.data?.metadata) {
|
|
3328
|
-
const artifact =
|
|
3386
|
+
const artifact = EnvironmentArtifactSchema.parse(obj.data);
|
|
3329
3387
|
metadata = artifact.metadata;
|
|
3330
3388
|
} else {
|
|
3331
3389
|
const def = ObjectStackDefinitionSchema.parse(obj);
|
|
3332
3390
|
const canonical = JSON.stringify(def, Object.keys(def).sort());
|
|
3333
3391
|
const checksum = createHash2("sha256").update(canonical).digest("hex");
|
|
3334
|
-
const
|
|
3335
|
-
|
|
3392
|
+
const environmentId = this.options.environmentId ?? "proj_local";
|
|
3393
|
+
EnvironmentArtifactSchema.parse({
|
|
3336
3394
|
schemaVersion: "0.1",
|
|
3337
|
-
|
|
3395
|
+
environmentId,
|
|
3338
3396
|
commitId: "local-dev",
|
|
3339
3397
|
checksum,
|
|
3340
3398
|
metadata: def
|
|
@@ -3390,13 +3448,13 @@ var MetadataPlugin = class {
|
|
|
3390
3448
|
* P2: Load metadata from the cloud artifact API endpoint.
|
|
3391
3449
|
*/
|
|
3392
3450
|
async _loadFromArtifactApi(ctx, src) {
|
|
3393
|
-
const
|
|
3394
|
-
if (!
|
|
3395
|
-
throw new Error("[MetadataPlugin] artifact-api source requires options.
|
|
3451
|
+
const environmentId = this.options.environmentId;
|
|
3452
|
+
if (!environmentId) {
|
|
3453
|
+
throw new Error("[MetadataPlugin] artifact-api source requires options.environmentId to be set");
|
|
3396
3454
|
}
|
|
3397
3455
|
let artifactUrl = src.url.replace(/\/+$/, "");
|
|
3398
3456
|
if (!/\/api\/v\d+\/cloud\/projects\//i.test(artifactUrl)) {
|
|
3399
|
-
artifactUrl = `${artifactUrl}/api/v1/cloud/
|
|
3457
|
+
artifactUrl = `${artifactUrl}/api/v1/cloud/environments/${environmentId}/artifact`;
|
|
3400
3458
|
}
|
|
3401
3459
|
if (src.commitId) {
|
|
3402
3460
|
artifactUrl += `${artifactUrl.includes("?") ? "&" : "?"}commit=${encodeURIComponent(src.commitId)}`;
|