@open-mercato/search 0.6.7-develop.6758.1.697eade236 → 0.6.7-develop.6768.1.9d2c4efc43
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/.turbo/turbo-build.log
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
[build:search] found
|
|
1
|
+
[build:search] found 96 entry points
|
|
2
2
|
[build:search] built successfully
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { createModuleEvents } from "@open-mercato/shared/modules/events";
|
|
2
|
+
const events = [
|
|
3
|
+
{ id: "search.index_record", label: "Index Record", category: "lifecycle" }
|
|
4
|
+
];
|
|
5
|
+
const eventsConfig = createModuleEvents({ moduleId: "search", events });
|
|
6
|
+
const emitSearchEvent = eventsConfig.emit;
|
|
7
|
+
var events_default = eventsConfig;
|
|
8
|
+
export {
|
|
9
|
+
events_default as default,
|
|
10
|
+
emitSearchEvent,
|
|
11
|
+
eventsConfig
|
|
12
|
+
};
|
|
13
|
+
//# sourceMappingURL=events.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../src/modules/search/events.ts"],
|
|
4
|
+
"sourcesContent": ["import { createModuleEvents } from '@open-mercato/shared/modules/events'\n\nconst events = [\n { id: 'search.index_record', label: 'Index Record', category: 'lifecycle' },\n] as const\n\nexport const eventsConfig = createModuleEvents({ moduleId: 'search', events })\nexport const emitSearchEvent = eventsConfig.emit\nexport type SearchEventId = typeof events[number]['id']\nexport default eventsConfig\n"],
|
|
5
|
+
"mappings": "AAAA,SAAS,0BAA0B;AAEnC,MAAM,SAAS;AAAA,EACb,EAAE,IAAI,uBAAuB,OAAO,gBAAgB,UAAU,YAAY;AAC5E;AAEO,MAAM,eAAe,mBAAmB,EAAE,UAAU,UAAU,OAAO,CAAC;AACtE,MAAM,kBAAkB,aAAa;AAE5C,IAAO,iBAAQ;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@open-mercato/search",
|
|
3
|
-
"version": "0.6.7-develop.
|
|
3
|
+
"version": "0.6.7-develop.6768.1.9d2c4efc43",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -127,9 +127,9 @@
|
|
|
127
127
|
"zod": "^4.4.3"
|
|
128
128
|
},
|
|
129
129
|
"peerDependencies": {
|
|
130
|
-
"@open-mercato/core": "0.6.7-develop.
|
|
131
|
-
"@open-mercato/queue": "0.6.7-develop.
|
|
132
|
-
"@open-mercato/shared": "0.6.7-develop.
|
|
130
|
+
"@open-mercato/core": "0.6.7-develop.6768.1.9d2c4efc43",
|
|
131
|
+
"@open-mercato/queue": "0.6.7-develop.6768.1.9d2c4efc43",
|
|
132
|
+
"@open-mercato/shared": "0.6.7-develop.6768.1.9d2c4efc43"
|
|
133
133
|
},
|
|
134
134
|
"devDependencies": {
|
|
135
135
|
"@types/jest": "^30.0.0",
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { createModuleEvents } from '@open-mercato/shared/modules/events'
|
|
2
|
+
|
|
3
|
+
const events = [
|
|
4
|
+
{ id: 'search.index_record', label: 'Index Record', category: 'lifecycle' },
|
|
5
|
+
] as const
|
|
6
|
+
|
|
7
|
+
export const eventsConfig = createModuleEvents({ moduleId: 'search', events })
|
|
8
|
+
export const emitSearchEvent = eventsConfig.emit
|
|
9
|
+
export type SearchEventId = typeof events[number]['id']
|
|
10
|
+
export default eventsConfig
|