@interncom/diplomatic 0.9.0 → 0.10.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/web/entdb/idb.d.ts +3 -3
- package/dist/web/index.mjs +1 -1
- package/dist/web/worker.mjs +1 -1
- package/package.json +1 -1
package/dist/web/entdb/idb.d.ts
CHANGED
|
@@ -7,12 +7,12 @@ export declare const typeIndexName = "entity_type_created_at";
|
|
|
7
7
|
export declare const typeUpdatedAtIndexName = "entity_type_updated_at";
|
|
8
8
|
export declare const typeGroupIndexName = "entity_type_group_id";
|
|
9
9
|
export declare const typeParentIndexName = "entity_type_parent_id";
|
|
10
|
-
/** multiEntry index on
|
|
10
|
+
/** multiEntry index on tgs[]; query by tag then filter by type. */
|
|
11
11
|
export declare const tagsIndexName = "entity_tags";
|
|
12
12
|
/** Shared by main thread and sync worker — must stay in lockstep. */
|
|
13
13
|
export declare const ENT_IDB_NAME = "db";
|
|
14
|
-
/**
|
|
15
|
-
export declare const ENT_IDB_VERSION =
|
|
14
|
+
/** v13: stored field tags → tgs (3-letter keys); multiEntry on tgs. */
|
|
15
|
+
export declare const ENT_IDB_VERSION = 13;
|
|
16
16
|
export declare class EntIDB implements IEntDB {
|
|
17
17
|
db: IDBDatabase | undefined;
|
|
18
18
|
/** In-flight open; coalesces concurrent ensureDb / peer upgrade reopen. */
|