@eggjs/tegg 4.0.2-beta.1 → 4.0.2-beta.3
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/agent.d.ts +3 -0
- package/dist/agent.js +4 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/package.json +22 -20
package/dist/agent.d.ts
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { AgentController, AgentHandler } from "@eggjs/controller-decorator";
|
|
2
|
+
import { AgentConflictError, AgentNotFoundError, AgentRunConfig, AgentRunUsage, AgentStore, AgentStreamMessage, CreateRunInput, HttpSSEWriter, InputContentPart, InputMessage, MessageContentBlock, MessageDeltaObject, MessageObject, RunObject, RunRecord, RunStatus, TextContentBlock, ThreadObject, ThreadObjectWithMessages, ThreadRecord } from "@eggjs/agent-runtime";
|
|
3
|
+
export { AgentConflictError, AgentController, type AgentHandler, AgentNotFoundError, type AgentRunConfig, type AgentRunUsage, type AgentStore, type AgentStreamMessage, type CreateRunInput, HttpSSEWriter, type InputContentPart, type InputMessage, type MessageContentBlock, type MessageDeltaObject, type MessageObject, type RunObject, type RunRecord, type RunStatus, type TextContentBlock, type ThreadObject, type ThreadObjectWithMessages, type ThreadRecord };
|
package/dist/agent.js
ADDED
package/dist/index.d.ts
CHANGED
|
@@ -3,9 +3,9 @@ import { ModuleConfig, ModuleConfigHolder, ModuleConfigs, RuntimeConfig } from "
|
|
|
3
3
|
import * as orm from "@eggjs/orm-decorator";
|
|
4
4
|
import * as schedule from "@eggjs/schedule-decorator";
|
|
5
5
|
import { Logger } from "@eggjs/tegg-types";
|
|
6
|
+
export * from "@eggjs/controller-decorator";
|
|
6
7
|
export * from "@eggjs/core-decorator";
|
|
7
8
|
export * from "@eggjs/lifecycle";
|
|
8
|
-
export * from "@eggjs/controller-decorator";
|
|
9
9
|
export * from "@eggjs/eventbus-decorator";
|
|
10
10
|
export * from "@eggjs/dynamic-inject";
|
|
11
11
|
export * from "@eggjs/background-task";
|
package/dist/index.js
CHANGED
|
@@ -3,12 +3,12 @@ import { ModuleConfigs } from "@eggjs/tegg-common-util";
|
|
|
3
3
|
import * as orm from "@eggjs/orm-decorator";
|
|
4
4
|
import * as schedule from "@eggjs/schedule-decorator";
|
|
5
5
|
|
|
6
|
+
export * from "@eggjs/controller-decorator"
|
|
7
|
+
|
|
6
8
|
export * from "@eggjs/core-decorator"
|
|
7
9
|
|
|
8
10
|
export * from "@eggjs/lifecycle"
|
|
9
11
|
|
|
10
|
-
export * from "@eggjs/controller-decorator"
|
|
11
|
-
|
|
12
12
|
export * from "@eggjs/eventbus-decorator"
|
|
13
13
|
|
|
14
14
|
export * from "@eggjs/dynamic-inject"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eggjs/tegg",
|
|
3
|
-
"version": "4.0.2-beta.
|
|
3
|
+
"version": "4.0.2-beta.3",
|
|
4
4
|
"description": "tegg decorator packages",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"egg",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"types": "./dist/index.d.ts",
|
|
29
29
|
"exports": {
|
|
30
30
|
".": "./dist/index.js",
|
|
31
|
+
"./agent": "./dist/agent.js",
|
|
31
32
|
"./ajv": "./dist/ajv.js",
|
|
32
33
|
"./aop": "./dist/aop.js",
|
|
33
34
|
"./dal": "./dist/dal.js",
|
|
@@ -42,25 +43,26 @@
|
|
|
42
43
|
"access": "public"
|
|
43
44
|
},
|
|
44
45
|
"dependencies": {
|
|
45
|
-
"@eggjs/
|
|
46
|
-
"@eggjs/
|
|
47
|
-
"@eggjs/
|
|
48
|
-
"@eggjs/
|
|
49
|
-
"@eggjs/core-decorator": "4.0.2-beta.
|
|
50
|
-
"@eggjs/
|
|
51
|
-
"@eggjs/
|
|
52
|
-
"@eggjs/
|
|
53
|
-
"@eggjs/
|
|
54
|
-
"@eggjs/
|
|
55
|
-
"@eggjs/
|
|
56
|
-
"@eggjs/
|
|
57
|
-
"@eggjs/
|
|
58
|
-
"@eggjs/
|
|
59
|
-
"@eggjs/tegg-loader": "4.0.2-beta.
|
|
60
|
-
"@eggjs/
|
|
61
|
-
"@eggjs/
|
|
62
|
-
"@eggjs/
|
|
63
|
-
"@eggjs/tegg-
|
|
46
|
+
"@eggjs/agent-runtime": "4.0.2-beta.2",
|
|
47
|
+
"@eggjs/ajv-decorator": "4.0.2-beta.3",
|
|
48
|
+
"@eggjs/aop-decorator": "4.0.2-beta.3",
|
|
49
|
+
"@eggjs/controller-decorator": "4.0.2-beta.3",
|
|
50
|
+
"@eggjs/core-decorator": "4.0.2-beta.3",
|
|
51
|
+
"@eggjs/lifecycle": "4.0.2-beta.3",
|
|
52
|
+
"@eggjs/eventbus-decorator": "4.0.2-beta.3",
|
|
53
|
+
"@eggjs/orm-decorator": "4.0.2-beta.3",
|
|
54
|
+
"@eggjs/metadata": "4.0.2-beta.3",
|
|
55
|
+
"@eggjs/schedule-decorator": "4.0.2-beta.3",
|
|
56
|
+
"@eggjs/standalone-decorator": "4.0.2-beta.3",
|
|
57
|
+
"@eggjs/background-task": "4.0.2-beta.3",
|
|
58
|
+
"@eggjs/dal-decorator": "4.0.2-beta.3",
|
|
59
|
+
"@eggjs/tegg-common-util": "4.0.2-beta.3",
|
|
60
|
+
"@eggjs/tegg-loader": "4.0.2-beta.3",
|
|
61
|
+
"@eggjs/dynamic-inject": "4.0.2-beta.3",
|
|
62
|
+
"@eggjs/transaction-decorator": "4.0.2-beta.3",
|
|
63
|
+
"@eggjs/tegg-types": "4.0.2-beta.3",
|
|
64
|
+
"@eggjs/tegg-runtime": "4.0.2-beta.3",
|
|
65
|
+
"@eggjs/dal-plugin": "4.0.2-beta.3"
|
|
64
66
|
},
|
|
65
67
|
"devDependencies": {
|
|
66
68
|
"@types/node": "^24.10.2",
|