@seij/entity-storage 0.0.1 → 0.1.1

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -2
  2. package/package.json +4 -4
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { ContributionPoint, Extension, ExtensionContext, ServiceConstructorProps } from '../../extension-platform/src/index.ts';
1
+ import { ContributionPoint, Extension, ExtensionContext, ServiceConstructorProps } from '@seij/extension-platform';
2
2
  import { Id, IdDto, ListPaginatedDto, SingleItemDto } from './dto';
3
3
  import { QueryKey } from './internal/querykeys';
4
4
  export * from './dto';
@@ -140,7 +140,7 @@ export interface EntityStorageInvalidationContribution {
140
140
  */
141
141
  queryKeys: QueryKey[];
142
142
  }
143
- export declare const EntityStorageServiceRef: import('../../extension-platform/src/index.ts').ServiceRef<EntityStorageService>;
143
+ export declare const EntityStorageServiceRef: import('@seij/extension-platform').ServiceRef<EntityStorageService>;
144
144
  export declare class EntityStorageService {
145
145
  storageByEntityName: Record<string, EntityStorageContribution>;
146
146
  invalidationQueryKeysContribs: EntityStorageInvalidationContribution[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seij/entity-storage",
3
- "version": "0.0.1",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -8,9 +8,9 @@
8
8
  "url": "https://github.com/seij-net/seij-commons-js.git"
9
9
  },
10
10
  "dependencies": {
11
- "@seij/common-types": "0.1.2",
12
- "@seij/extension-platform": "0.1.0",
13
- "@seij/extension-tooling": "0.1.0"
11
+ "@seij/common-types": "0.1.3",
12
+ "@seij/extension-platform": "0.1.1",
13
+ "@seij/extension-tooling": "0.1.1"
14
14
  },
15
15
  "devDependencies": {},
16
16
  "exports": {