@etohq/index 1.5.2 → 1.5.4-alpha.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/services/index-data.d.ts +4 -1
- package/dist/services/index-data.d.ts.map +1 -1
- package/dist/services/index-metadata.d.ts +4 -1
- package/dist/services/index-metadata.d.ts.map +1 -1
- package/dist/services/index-relation.d.ts +4 -1
- package/dist/services/index-relation.d.ts.map +1 -1
- package/dist/services/index-sync.d.ts +4 -1
- package/dist/services/index-sync.d.ts.map +1 -1
- package/package.json +7 -7
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
declare const IndexDataService_base:
|
|
1
|
+
declare const IndexDataService_base: {
|
|
2
|
+
new <TContainer extends object = object, TEntity extends object = any>(container: TContainer): import("@etohq/types").IEtoInternalService<TEntity, TContainer>;
|
|
3
|
+
setEventSubscriber(subscriber: import("@etohq/framework/utils").EtoMikroOrmEventSubscriber): void;
|
|
4
|
+
};
|
|
2
5
|
export declare class IndexDataService extends IndexDataService_base {
|
|
3
6
|
}
|
|
4
7
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index-data.d.ts","sourceRoot":"","sources":["../../src/services/index-data.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index-data.d.ts","sourceRoot":"","sources":["../../src/services/index-data.ts"],"names":[],"mappings":";;;;AAGA,qBAAa,gBAAiB,SAAQ,qBAA6B;CAAG"}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
declare const IndexMetadataService_base:
|
|
1
|
+
declare const IndexMetadataService_base: {
|
|
2
|
+
new <TContainer extends object = object, TEntity extends object = any>(container: TContainer): import("@etohq/types").IEtoInternalService<TEntity, TContainer>;
|
|
3
|
+
setEventSubscriber(subscriber: import("@etohq/framework/utils").EtoMikroOrmEventSubscriber): void;
|
|
4
|
+
};
|
|
2
5
|
export declare class IndexMetadataService extends IndexMetadataService_base {
|
|
3
6
|
}
|
|
4
7
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index-metadata.d.ts","sourceRoot":"","sources":["../../src/services/index-metadata.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index-metadata.d.ts","sourceRoot":"","sources":["../../src/services/index-metadata.ts"],"names":[],"mappings":";;;;AAGA,qBAAa,oBAAqB,SAAQ,yBAEzC;CAAG"}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
declare const IndexRelationService_base:
|
|
1
|
+
declare const IndexRelationService_base: {
|
|
2
|
+
new <TContainer extends object = object, TEntity extends object = any>(container: TContainer): import("@etohq/types").IEtoInternalService<TEntity, TContainer>;
|
|
3
|
+
setEventSubscriber(subscriber: import("@etohq/framework/utils").EtoMikroOrmEventSubscriber): void;
|
|
4
|
+
};
|
|
2
5
|
export declare class IndexRelationService extends IndexRelationService_base {
|
|
3
6
|
}
|
|
4
7
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index-relation.d.ts","sourceRoot":"","sources":["../../src/services/index-relation.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index-relation.d.ts","sourceRoot":"","sources":["../../src/services/index-relation.ts"],"names":[],"mappings":";;;;AAGA,qBAAa,oBAAqB,SAAQ,yBAEzC;CAAG"}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
declare const IndexSyncService_base:
|
|
1
|
+
declare const IndexSyncService_base: {
|
|
2
|
+
new <TContainer extends object = object, TEntity extends object = any>(container: TContainer): import("@etohq/types").IEtoInternalService<TEntity, TContainer>;
|
|
3
|
+
setEventSubscriber(subscriber: import("@etohq/framework/utils").EtoMikroOrmEventSubscriber): void;
|
|
4
|
+
};
|
|
2
5
|
export declare class IndexSyncService extends IndexSyncService_base {
|
|
3
6
|
}
|
|
4
7
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index-sync.d.ts","sourceRoot":"","sources":["../../src/services/index-sync.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index-sync.d.ts","sourceRoot":"","sources":["../../src/services/index-sync.ts"],"names":[],"mappings":";;;;AAGA,qBAAa,gBAAiB,SAAQ,qBAA6B;CAAG"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etohq/index",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.4-alpha.0",
|
|
4
4
|
"description": "Eto Index module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -36,13 +36,13 @@
|
|
|
36
36
|
"rimraf": "5.0.2",
|
|
37
37
|
"tsc-alias": "1.8.6",
|
|
38
38
|
"typescript": "5.8.3",
|
|
39
|
-
"@etohq/framework": "1.5.
|
|
40
|
-
"@etohq/
|
|
41
|
-
"@etohq/
|
|
39
|
+
"@etohq/framework": "1.5.4-alpha.0",
|
|
40
|
+
"@etohq/types": "1.5.4-alpha.0",
|
|
41
|
+
"@etohq/test-utils": "1.5.4-alpha.0"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"awilix": "8.0.1",
|
|
45
|
-
"@etohq/utils": "1.5.
|
|
45
|
+
"@etohq/utils": "1.5.4-alpha.0"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"@mikro-orm/core": "6.4.3",
|
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
"@mikro-orm/migrations": "6.4.3",
|
|
51
51
|
"@mikro-orm/postgresql": "6.4.3",
|
|
52
52
|
"awilix": "8.0.1",
|
|
53
|
-
"@etohq/framework": "1.5.
|
|
54
|
-
"@etohq/types": "1.5.
|
|
53
|
+
"@etohq/framework": "1.5.4-alpha.0",
|
|
54
|
+
"@etohq/types": "1.5.4-alpha.0"
|
|
55
55
|
},
|
|
56
56
|
"scripts": {
|
|
57
57
|
"watch": "tsc --build --watch",
|