@medyll/idae-idbql 0.1.1 → 0.2.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.d.ts CHANGED
@@ -1,7 +1,10 @@
1
- export * from './collection/collection.js';
2
- export * from './idbqlCore/idbqlCore.js';
3
- export * from './idbqlCore/idbqlSchema.js';
4
- export * from './path/pathResolver.js';
5
- export * from './scripts/types.js';
6
- export * from './state/idbqlEvent.svelte.js';
7
1
  export * from './state/idbstate.svelte.js';
2
+ export * from './state/idbqlEvent.svelte.js';
3
+ export * from './state/idbqlEvent.svelte.test.js';
4
+ export * from './scripts/types.js';
5
+ export * from './path/pathResolver.js';
6
+ export * from './idbqlCore/idbqlSchema.js';
7
+ export * from './idbqlCore/idbqlCore.js';
8
+ export * from './idbqlCore/idbqlCore.test.js';
9
+ export * from './collection/collection.js';
10
+ export * from './collection/collection.test.js';
package/dist/index.js CHANGED
@@ -1,8 +1,11 @@
1
1
  // Reexport of entry components
2
- export * from './collection/collection.js';
3
- export * from './idbqlCore/idbqlCore.js';
4
- export * from './idbqlCore/idbqlSchema.js';
5
- export * from './path/pathResolver.js';
6
- export * from './scripts/types.js';
7
- export * from './state/idbqlEvent.svelte.js';
8
2
  export * from './state/idbstate.svelte.js';
3
+ export * from './state/idbqlEvent.svelte.js';
4
+ export * from './state/idbqlEvent.svelte.test.js';
5
+ export * from './scripts/types.js';
6
+ export * from './path/pathResolver.js';
7
+ export * from './idbqlCore/idbqlSchema.js';
8
+ export * from './idbqlCore/idbqlCore.js';
9
+ export * from './idbqlCore/idbqlCore.test.js';
10
+ export * from './collection/collection.js';
11
+ export * from './collection/collection.test.js';
@@ -26,7 +26,7 @@ export declare class StateCollectionDyn<T> {
26
26
  get collectionState(): any;
27
27
  private testIdbql;
28
28
  private feed;
29
- where(qy: Where<T>, options?: ResultsetOptions): any;
29
+ where(qy: Where<T>, options?: ResultsetOptions): ResultSet<T>;
30
30
  update(keyPathValue: string | number, data: Partial<T>): void;
31
31
  get(value: any, pathKey?: string): T[];
32
32
  getOne(value: any, pathKey?: string): T;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@medyll/idae-idbql",
3
3
  "scope": "@medyll",
4
- "version": "0.1.1",
4
+ "version": "0.2.0",
5
5
  "scripts": {
6
6
  "dev": "vite dev",
7
7
  "build": "vite build && npm run package",
@@ -10,7 +10,8 @@
10
10
  "package:watch": "svelte-kit sync && svelte-package --watch",
11
11
  "prepublishOnly": "npm run package",
12
12
  "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
13
- "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
13
+ "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
14
+ "package:pre": "node scripts/package-pre.js"
14
15
  },
15
16
  "exports": {
16
17
  ".": {
@@ -24,25 +25,24 @@
24
25
  "!dist/**/*.spec.*"
25
26
  ],
26
27
  "peerDependencies": {
27
- "svelte": "^5.0.0-next.1"
28
+ "svelte": "^5.0.0-next"
28
29
  },
29
30
  "devDependencies": {
30
31
  "@medyll/idae-prettier-config": "^1.0.0",
31
- "@sveltejs/adapter-auto": "^3.0.0",
32
- "@sveltejs/kit": "^2.0.0",
33
- "@sveltejs/package": "^2.0.0",
34
- "@sveltejs/vite-plugin-svelte": "^3.0.0",
35
- "publint": "^0.1.9",
36
- "svelte": "^5.0.0-next.181",
37
- "svelte-check": "^3.6.0",
38
- "tslib": "^2.4.1",
39
- "typescript": "^5.0.0",
40
- "vite": "^5.0.11"
32
+ "@sveltejs/adapter-auto": "^3.2.2",
33
+ "@sveltejs/kit": "^2.5.20",
34
+ "@sveltejs/package": "^2.3.2",
35
+ "@sveltejs/vite-plugin-svelte": "^3.1.1",
36
+ "svelte": "^5.0.0-next.218",
37
+ "svelte-check": "^3.8.5",
38
+ "tslib": "^2.6.3",
39
+ "typescript": "^5.5.4",
40
+ "vite": "^5.3.5"
41
41
  },
42
42
  "svelte": "./dist/index.js",
43
43
  "types": "./dist/index.d.ts",
44
44
  "type": "module",
45
45
  "dependencies": {
46
- "@medyll/idae-query": "^0.1.1"
46
+ "@medyll/idae-query": "^0.2.0"
47
47
  }
48
- }
48
+ }