@lssm/example.agent-console 0.0.0-canary-20251217063201 → 0.0.0-canary-20251217073102
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$colon$bundle.log +201 -166
- package/CHANGELOG.md +6 -6
- package/dist/agent/agent.contracts.d.ts +126 -126
- package/dist/agent/agent.contracts.js +336 -1
- package/dist/agent/agent.entity.d.ts +36 -36
- package/dist/agent/agent.entity.js +136 -1
- package/dist/agent/agent.enum.d.ts +4 -4
- package/dist/agent/agent.enum.js +34 -1
- package/dist/agent/agent.event.d.ts +31 -31
- package/dist/agent/agent.event.js +183 -1
- package/dist/agent/agent.handler.d.ts +1 -1
- package/dist/agent/agent.handler.js +83 -1
- package/dist/agent/agent.presentation.js +75 -1
- package/dist/agent/agent.schema.d.ts +95 -95
- package/dist/agent/agent.schema.js +407 -1
- package/dist/agent/index.js +9 -1
- package/dist/agent.feature.js +295 -1
- package/dist/docs/agent-console.docblock.js +69 -5
- package/dist/docs/index.js +1 -1
- package/dist/example.js +50 -1
- package/dist/handlers/index.js +5 -1
- package/dist/index.js +32 -1
- package/dist/libs/contracts/dist/capabilities/openbanking.js +88 -1
- package/dist/libs/contracts/dist/client/index.js +5 -1
- package/dist/libs/contracts/dist/client/react/feature-render.js +2 -1
- package/dist/libs/contracts/dist/client/react/form-render.js +4 -1
- package/dist/libs/contracts/dist/client/react/index.js +4 -1
- package/dist/libs/contracts/dist/contract-registry/index.js +1 -1
- package/dist/libs/contracts/dist/contract-registry/schemas.js +60 -1
- package/dist/libs/contracts/dist/docs/PUBLISHING.docblock.js +16 -76
- package/dist/libs/contracts/dist/docs/accessibility_wcag_compliance_specs.docblock.js +16 -350
- package/dist/libs/contracts/dist/docs/index.js +29 -1
- package/dist/libs/contracts/dist/docs/presentations.js +71 -1
- package/dist/libs/contracts/dist/docs/registry.js +44 -1
- package/dist/libs/contracts/dist/docs/tech/PHASE_1_QUICKSTART.docblock.js +16 -383
- package/dist/libs/contracts/dist/docs/tech/PHASE_2_AI_NATIVE_OPERATIONS.docblock.js +16 -68
- package/dist/libs/contracts/dist/docs/tech/PHASE_3_AUTO_EVOLUTION.docblock.js +16 -140
- package/dist/libs/contracts/dist/docs/tech/PHASE_4_PERSONALIZATION_ENGINE.docblock.js +16 -86
- package/dist/libs/contracts/dist/docs/tech/PHASE_5_ZERO_TOUCH_OPERATIONS.docblock.js +16 -1
- package/dist/libs/contracts/dist/docs/tech/auth/better-auth-nextjs.docblock.js +24 -2
- package/dist/libs/contracts/dist/docs/tech/contracts/openapi-export.docblock.js +21 -2
- package/dist/libs/contracts/dist/docs/tech/lifecycle-stage-system.docblock.js +16 -213
- package/dist/libs/contracts/dist/docs/tech/llm/llm-integration.docblock.js +73 -5
- package/dist/libs/contracts/dist/docs/tech/mcp-endpoints.docblock.js +37 -1
- package/dist/libs/contracts/dist/docs/tech/presentation-runtime.docblock.js +16 -1
- package/dist/libs/contracts/dist/docs/tech/schema/README.docblock.js +20 -262
- package/dist/libs/contracts/dist/docs/tech/studio/learning-events.docblock.js +48 -1
- package/dist/libs/contracts/dist/docs/tech/studio/learning-journeys.docblock.js +24 -2
- package/dist/libs/contracts/dist/docs/tech/studio/platform-admin-panel.docblock.js +23 -2
- package/dist/libs/contracts/dist/docs/tech/studio/project-access-teams.docblock.js +25 -16
- package/dist/libs/contracts/dist/docs/tech/studio/project-routing.docblock.js +67 -1
- package/dist/libs/contracts/dist/docs/tech/studio/sandbox-unlogged.docblock.js +22 -2
- package/dist/libs/contracts/dist/docs/tech/studio/team-invitations.docblock.js +40 -36
- package/dist/libs/contracts/dist/docs/tech/studio/workspace-ops.docblock.js +47 -1
- package/dist/libs/contracts/dist/docs/tech/studio/workspaces.docblock.js +23 -2
- package/dist/libs/contracts/dist/docs/tech/telemetry-ingest.docblock.js +36 -3
- package/dist/libs/contracts/dist/docs/tech/templates/runtime.docblock.js +20 -1
- package/dist/libs/contracts/dist/docs/tech/vscode-extension.docblock.js +36 -3
- package/dist/libs/contracts/dist/docs/tech/workflows/overview.docblock.js +20 -1
- package/dist/libs/contracts/dist/events.js +10 -1
- package/dist/libs/contracts/dist/experiments/evaluator.js +1 -1
- package/dist/libs/contracts/dist/index.js +71 -1
- package/dist/libs/contracts/dist/install.js +2 -1
- package/dist/libs/contracts/dist/integrations/contracts.js +377 -1
- package/dist/libs/contracts/dist/integrations/index.js +18 -1
- package/dist/libs/contracts/dist/integrations/openbanking/contracts/accounts.js +228 -1
- package/dist/libs/contracts/dist/integrations/openbanking/contracts/balances.js +159 -1
- package/dist/libs/contracts/dist/integrations/openbanking/contracts/index.js +3 -1
- package/dist/libs/contracts/dist/integrations/openbanking/contracts/transactions.js +210 -1
- package/dist/libs/contracts/dist/integrations/openbanking/models.js +242 -1
- package/dist/libs/contracts/dist/integrations/openbanking/telemetry.js +13 -1
- package/dist/libs/contracts/dist/integrations/providers/elevenlabs.js +52 -1
- package/dist/libs/contracts/dist/integrations/providers/gcs-storage.js +75 -1
- package/dist/libs/contracts/dist/integrations/providers/gmail.js +87 -1
- package/dist/libs/contracts/dist/integrations/providers/google-calendar.js +66 -1
- package/dist/libs/contracts/dist/integrations/providers/index.js +11 -1
- package/dist/libs/contracts/dist/integrations/providers/mistral.js +68 -1
- package/dist/libs/contracts/dist/integrations/providers/postmark.js +68 -1
- package/dist/libs/contracts/dist/integrations/providers/powens.js +116 -1
- package/dist/libs/contracts/dist/integrations/providers/qdrant.js +73 -1
- package/dist/libs/contracts/dist/integrations/providers/registry.js +10 -1
- package/dist/libs/contracts/dist/integrations/providers/stripe.js +83 -1
- package/dist/libs/contracts/dist/integrations/providers/twilio-sms.js +61 -1
- package/dist/libs/contracts/dist/jsonschema.js +1 -1
- package/dist/libs/contracts/dist/knowledge/contracts.js +306 -1
- package/dist/libs/contracts/dist/knowledge/index.js +7 -1
- package/dist/libs/contracts/dist/knowledge/spaces/email-threads.js +34 -1
- package/dist/libs/contracts/dist/knowledge/spaces/financial-docs.js +34 -1
- package/dist/libs/contracts/dist/knowledge/spaces/financial-overview.js +38 -1
- package/dist/libs/contracts/dist/knowledge/spaces/index.js +6 -1
- package/dist/libs/contracts/dist/knowledge/spaces/product-canon.js +34 -1
- package/dist/libs/contracts/dist/knowledge/spaces/support-faq.js +37 -1
- package/dist/libs/contracts/dist/knowledge/spaces/uploaded-docs.js +34 -1
- package/dist/libs/contracts/dist/llm/exporters.js +19 -1
- package/dist/libs/contracts/dist/llm/index.js +2 -1
- package/dist/libs/contracts/dist/llm/prompts.js +1 -1
- package/dist/libs/contracts/dist/onboarding-base.js +196 -1
- package/dist/libs/contracts/dist/openapi.js +1 -1
- package/dist/libs/contracts/dist/ownership.js +21 -1
- package/dist/libs/contracts/dist/presentations.js +1 -1
- package/dist/libs/contracts/dist/presentations.v2.js +11 -1
- package/dist/libs/contracts/dist/prompt.js +1 -1
- package/dist/libs/contracts/dist/promptRegistry.js +1 -1
- package/dist/libs/contracts/dist/regenerator/index.js +1 -1
- package/dist/libs/contracts/dist/regenerator/service.js +6 -1
- package/dist/libs/contracts/dist/registry.js +2 -1
- package/dist/libs/contracts/dist/resources.js +1 -1
- package/dist/libs/contracts/dist/schema/dist/EnumType.js +2 -1
- package/dist/libs/contracts/dist/schema/dist/FieldType.js +49 -1
- package/dist/libs/contracts/dist/schema/dist/ScalarTypeEnum.js +236 -1
- package/dist/libs/contracts/dist/schema/dist/SchemaModel.js +39 -1
- package/dist/libs/contracts/dist/schema/dist/entity/defineEntity.js +1 -1
- package/dist/libs/contracts/dist/schema/dist/entity/index.js +2 -1
- package/dist/libs/contracts/dist/schema/dist/entity/types.js +1 -1
- package/dist/libs/contracts/dist/schema/dist/index.js +6 -1
- package/dist/libs/contracts/dist/server/graphql-pothos.js +6 -1
- package/dist/libs/contracts/dist/server/index.js +8 -1
- package/dist/libs/contracts/dist/server/mcp/createMcpServer.js +4 -1
- package/dist/libs/contracts/dist/server/mcp/registerPresentations.js +2 -1
- package/dist/libs/contracts/dist/server/mcp/registerPrompts.js +1 -1
- package/dist/libs/contracts/dist/server/mcp/registerResources.js +2 -1
- package/dist/libs/contracts/dist/server/mcp/registerTools.js +1 -1
- package/dist/libs/contracts/dist/server/provider-mcp.js +1 -1
- package/dist/libs/contracts/dist/server/rest-elysia.js +1 -1
- package/dist/libs/contracts/dist/server/rest-express.js +1 -1
- package/dist/libs/contracts/dist/server/rest-generic.js +1 -1
- package/dist/libs/contracts/dist/server/rest-next-app.js +1 -1
- package/dist/libs/contracts/dist/server/rest-next-pages.js +1 -1
- package/dist/libs/contracts/dist/spec.js +34 -1
- package/dist/libs/contracts/dist/telemetry/index.js +1 -1
- package/dist/libs/contracts/dist/telemetry/tracker.js +1 -1
- package/dist/libs/contracts/dist/tests/index.js +1 -1
- package/dist/libs/contracts/dist/tests/runner.js +2 -1
- package/dist/libs/contracts/dist/workflow/index.js +1 -1
- package/dist/libs/contracts/dist/workflow/runner.js +1 -1
- package/dist/libs/schema/dist/EnumType.js +56 -1
- package/dist/libs/schema/dist/FieldType.js +49 -1
- package/dist/libs/schema/dist/ScalarTypeEnum.js +236 -1
- package/dist/libs/schema/dist/SchemaModel.js +39 -1
- package/dist/libs/schema/dist/entity/defineEntity.js +236 -1
- package/dist/libs/schema/dist/entity/index.js +2 -1
- package/dist/libs/schema/dist/entity/types.js +1 -1
- package/dist/libs/schema/dist/index.js +6 -1
- package/dist/presentations/index.js +5 -1
- package/dist/run/index.js +9 -1
- package/dist/run/run.contracts.d.ts +175 -175
- package/dist/run/run.contracts.js +469 -1
- package/dist/run/run.entity.d.ts +56 -56
- package/dist/run/run.entity.js +205 -1
- package/dist/run/run.enum.d.ts +5 -5
- package/dist/run/run.enum.js +45 -1
- package/dist/run/run.event.d.ts +71 -71
- package/dist/run/run.event.js +389 -1
- package/dist/run/run.handler.js +82 -1
- package/dist/run/run.presentation.js +55 -1
- package/dist/run/run.schema.d.ts +99 -99
- package/dist/run/run.schema.js +339 -1
- package/dist/shared/index.js +5 -1
- package/dist/shared/mock-agents.js +93 -1
- package/dist/shared/mock-runs.js +117 -1
- package/dist/shared/mock-tools.js +180 -1
- package/dist/tool/index.js +9 -1
- package/dist/tool/tool.contracts.d.ts +101 -101
- package/dist/tool/tool.contracts.js +288 -1
- package/dist/tool/tool.entity.d.ts +24 -24
- package/dist/tool/tool.entity.js +105 -1
- package/dist/tool/tool.enum.d.ts +4 -4
- package/dist/tool/tool.enum.js +35 -1
- package/dist/tool/tool.event.d.ts +25 -25
- package/dist/tool/tool.event.js +145 -1
- package/dist/tool/tool.handler.d.ts +1 -1
- package/dist/tool/tool.handler.js +86 -1
- package/dist/tool/tool.presentation.js +55 -1
- package/dist/tool/tool.schema.d.ts +52 -52
- package/dist/tool/tool.schema.js +237 -1
- package/package.json +8 -8
package/dist/tool/tool.schema.js
CHANGED
|
@@ -1 +1,237 @@
|
|
|
1
|
-
import{
|
|
1
|
+
import { ScalarTypeEnum } from "../libs/schema/dist/ScalarTypeEnum.js";
|
|
2
|
+
import { defineSchemaModel } from "../libs/schema/dist/SchemaModel.js";
|
|
3
|
+
import "../libs/schema/dist/index.js";
|
|
4
|
+
import { ImplementationTypeEnum, ToolCategoryEnum, ToolStatusEnum } from "./tool.enum.js";
|
|
5
|
+
|
|
6
|
+
//#region src/tool/tool.schema.ts
|
|
7
|
+
/**
|
|
8
|
+
* AI tool definition.
|
|
9
|
+
*/
|
|
10
|
+
const ToolModel = defineSchemaModel({
|
|
11
|
+
name: "Tool",
|
|
12
|
+
description: "AI tool definition",
|
|
13
|
+
fields: {
|
|
14
|
+
id: {
|
|
15
|
+
type: ScalarTypeEnum.String_unsecure(),
|
|
16
|
+
isOptional: false
|
|
17
|
+
},
|
|
18
|
+
organizationId: {
|
|
19
|
+
type: ScalarTypeEnum.String_unsecure(),
|
|
20
|
+
isOptional: false
|
|
21
|
+
},
|
|
22
|
+
name: {
|
|
23
|
+
type: ScalarTypeEnum.NonEmptyString(),
|
|
24
|
+
isOptional: false
|
|
25
|
+
},
|
|
26
|
+
slug: {
|
|
27
|
+
type: ScalarTypeEnum.String_unsecure(),
|
|
28
|
+
isOptional: false
|
|
29
|
+
},
|
|
30
|
+
description: {
|
|
31
|
+
type: ScalarTypeEnum.String_unsecure(),
|
|
32
|
+
isOptional: false
|
|
33
|
+
},
|
|
34
|
+
category: {
|
|
35
|
+
type: ToolCategoryEnum,
|
|
36
|
+
isOptional: false
|
|
37
|
+
},
|
|
38
|
+
status: {
|
|
39
|
+
type: ToolStatusEnum,
|
|
40
|
+
isOptional: false
|
|
41
|
+
},
|
|
42
|
+
parametersSchema: {
|
|
43
|
+
type: ScalarTypeEnum.JSONObject(),
|
|
44
|
+
isOptional: false
|
|
45
|
+
},
|
|
46
|
+
outputSchema: {
|
|
47
|
+
type: ScalarTypeEnum.JSONObject(),
|
|
48
|
+
isOptional: true
|
|
49
|
+
},
|
|
50
|
+
implementationType: {
|
|
51
|
+
type: ImplementationTypeEnum,
|
|
52
|
+
isOptional: false
|
|
53
|
+
},
|
|
54
|
+
implementationConfig: {
|
|
55
|
+
type: ScalarTypeEnum.JSONObject(),
|
|
56
|
+
isOptional: false
|
|
57
|
+
},
|
|
58
|
+
maxInvocationsPerMinute: {
|
|
59
|
+
type: ScalarTypeEnum.Int_unsecure(),
|
|
60
|
+
isOptional: true
|
|
61
|
+
},
|
|
62
|
+
timeoutMs: {
|
|
63
|
+
type: ScalarTypeEnum.Int_unsecure(),
|
|
64
|
+
isOptional: false,
|
|
65
|
+
defaultValue: 3e4
|
|
66
|
+
},
|
|
67
|
+
version: {
|
|
68
|
+
type: ScalarTypeEnum.NonEmptyString(),
|
|
69
|
+
isOptional: false
|
|
70
|
+
},
|
|
71
|
+
tags: {
|
|
72
|
+
type: ScalarTypeEnum.String_unsecure(),
|
|
73
|
+
isArray: true,
|
|
74
|
+
isOptional: true
|
|
75
|
+
},
|
|
76
|
+
createdAt: {
|
|
77
|
+
type: ScalarTypeEnum.DateTime(),
|
|
78
|
+
isOptional: false
|
|
79
|
+
},
|
|
80
|
+
updatedAt: {
|
|
81
|
+
type: ScalarTypeEnum.DateTime(),
|
|
82
|
+
isOptional: false
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
});
|
|
86
|
+
/**
|
|
87
|
+
* Summary of a tool for list views.
|
|
88
|
+
*/
|
|
89
|
+
const ToolSummaryModel = defineSchemaModel({
|
|
90
|
+
name: "ToolSummary",
|
|
91
|
+
description: "Summary of a tool for list views",
|
|
92
|
+
fields: {
|
|
93
|
+
id: {
|
|
94
|
+
type: ScalarTypeEnum.String_unsecure(),
|
|
95
|
+
isOptional: false
|
|
96
|
+
},
|
|
97
|
+
name: {
|
|
98
|
+
type: ScalarTypeEnum.NonEmptyString(),
|
|
99
|
+
isOptional: false
|
|
100
|
+
},
|
|
101
|
+
slug: {
|
|
102
|
+
type: ScalarTypeEnum.String_unsecure(),
|
|
103
|
+
isOptional: false
|
|
104
|
+
},
|
|
105
|
+
description: {
|
|
106
|
+
type: ScalarTypeEnum.String_unsecure(),
|
|
107
|
+
isOptional: false
|
|
108
|
+
},
|
|
109
|
+
category: {
|
|
110
|
+
type: ToolCategoryEnum,
|
|
111
|
+
isOptional: false
|
|
112
|
+
},
|
|
113
|
+
status: {
|
|
114
|
+
type: ToolStatusEnum,
|
|
115
|
+
isOptional: false
|
|
116
|
+
},
|
|
117
|
+
version: {
|
|
118
|
+
type: ScalarTypeEnum.NonEmptyString(),
|
|
119
|
+
isOptional: false
|
|
120
|
+
},
|
|
121
|
+
createdAt: {
|
|
122
|
+
type: ScalarTypeEnum.DateTime(),
|
|
123
|
+
isOptional: false
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
});
|
|
127
|
+
/**
|
|
128
|
+
* Input for creating a tool.
|
|
129
|
+
*/
|
|
130
|
+
const CreateToolInputModel = defineSchemaModel({
|
|
131
|
+
name: "CreateToolInput",
|
|
132
|
+
description: "Input for creating a tool",
|
|
133
|
+
fields: {
|
|
134
|
+
organizationId: {
|
|
135
|
+
type: ScalarTypeEnum.String_unsecure(),
|
|
136
|
+
isOptional: false
|
|
137
|
+
},
|
|
138
|
+
name: {
|
|
139
|
+
type: ScalarTypeEnum.NonEmptyString(),
|
|
140
|
+
isOptional: false
|
|
141
|
+
},
|
|
142
|
+
slug: {
|
|
143
|
+
type: ScalarTypeEnum.String_unsecure(),
|
|
144
|
+
isOptional: false
|
|
145
|
+
},
|
|
146
|
+
description: {
|
|
147
|
+
type: ScalarTypeEnum.String_unsecure(),
|
|
148
|
+
isOptional: false
|
|
149
|
+
},
|
|
150
|
+
category: {
|
|
151
|
+
type: ToolCategoryEnum,
|
|
152
|
+
isOptional: true
|
|
153
|
+
},
|
|
154
|
+
parametersSchema: {
|
|
155
|
+
type: ScalarTypeEnum.JSONObject(),
|
|
156
|
+
isOptional: false
|
|
157
|
+
},
|
|
158
|
+
outputSchema: {
|
|
159
|
+
type: ScalarTypeEnum.JSONObject(),
|
|
160
|
+
isOptional: true
|
|
161
|
+
},
|
|
162
|
+
implementationType: {
|
|
163
|
+
type: ImplementationTypeEnum,
|
|
164
|
+
isOptional: false
|
|
165
|
+
},
|
|
166
|
+
implementationConfig: {
|
|
167
|
+
type: ScalarTypeEnum.JSONObject(),
|
|
168
|
+
isOptional: false
|
|
169
|
+
},
|
|
170
|
+
maxInvocationsPerMinute: {
|
|
171
|
+
type: ScalarTypeEnum.Int_unsecure(),
|
|
172
|
+
isOptional: true
|
|
173
|
+
},
|
|
174
|
+
timeoutMs: {
|
|
175
|
+
type: ScalarTypeEnum.Int_unsecure(),
|
|
176
|
+
isOptional: true
|
|
177
|
+
},
|
|
178
|
+
tags: {
|
|
179
|
+
type: ScalarTypeEnum.String_unsecure(),
|
|
180
|
+
isArray: true,
|
|
181
|
+
isOptional: true
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
});
|
|
185
|
+
/**
|
|
186
|
+
* Input for updating a tool.
|
|
187
|
+
*/
|
|
188
|
+
const UpdateToolInputModel = defineSchemaModel({
|
|
189
|
+
name: "UpdateToolInput",
|
|
190
|
+
description: "Input for updating a tool",
|
|
191
|
+
fields: {
|
|
192
|
+
toolId: {
|
|
193
|
+
type: ScalarTypeEnum.String_unsecure(),
|
|
194
|
+
isOptional: false
|
|
195
|
+
},
|
|
196
|
+
name: {
|
|
197
|
+
type: ScalarTypeEnum.NonEmptyString(),
|
|
198
|
+
isOptional: true
|
|
199
|
+
},
|
|
200
|
+
description: {
|
|
201
|
+
type: ScalarTypeEnum.String_unsecure(),
|
|
202
|
+
isOptional: true
|
|
203
|
+
},
|
|
204
|
+
status: {
|
|
205
|
+
type: ToolStatusEnum,
|
|
206
|
+
isOptional: true
|
|
207
|
+
},
|
|
208
|
+
parametersSchema: {
|
|
209
|
+
type: ScalarTypeEnum.JSONObject(),
|
|
210
|
+
isOptional: true
|
|
211
|
+
},
|
|
212
|
+
outputSchema: {
|
|
213
|
+
type: ScalarTypeEnum.JSONObject(),
|
|
214
|
+
isOptional: true
|
|
215
|
+
},
|
|
216
|
+
implementationConfig: {
|
|
217
|
+
type: ScalarTypeEnum.JSONObject(),
|
|
218
|
+
isOptional: true
|
|
219
|
+
},
|
|
220
|
+
maxInvocationsPerMinute: {
|
|
221
|
+
type: ScalarTypeEnum.Int_unsecure(),
|
|
222
|
+
isOptional: true
|
|
223
|
+
},
|
|
224
|
+
timeoutMs: {
|
|
225
|
+
type: ScalarTypeEnum.Int_unsecure(),
|
|
226
|
+
isOptional: true
|
|
227
|
+
},
|
|
228
|
+
tags: {
|
|
229
|
+
type: ScalarTypeEnum.String_unsecure(),
|
|
230
|
+
isArray: true,
|
|
231
|
+
isOptional: true
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
});
|
|
235
|
+
|
|
236
|
+
//#endregion
|
|
237
|
+
export { CreateToolInputModel, ToolModel, ToolSummaryModel, UpdateToolInputModel };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lssm/example.agent-console",
|
|
3
|
-
"version": "0.0.0-canary-
|
|
3
|
+
"version": "0.0.0-canary-20251217073102",
|
|
4
4
|
"description": "Agent Console example - AI agent orchestration with tools, runs, and logs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -57,16 +57,16 @@
|
|
|
57
57
|
"test": "bun run"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@lssm/lib.schema": "0.0.0-canary-
|
|
61
|
-
"@lssm/lib.contracts": "0.0.0-canary-
|
|
62
|
-
"@lssm/lib.identity-rbac": "0.0.0-canary-
|
|
63
|
-
"@lssm/module.audit-trail": "0.0.0-canary-
|
|
64
|
-
"@lssm/lib.jobs": "0.0.0-canary-
|
|
60
|
+
"@lssm/lib.schema": "0.0.0-canary-20251217073102",
|
|
61
|
+
"@lssm/lib.contracts": "0.0.0-canary-20251217073102",
|
|
62
|
+
"@lssm/lib.identity-rbac": "0.0.0-canary-20251217073102",
|
|
63
|
+
"@lssm/module.audit-trail": "0.0.0-canary-20251217073102",
|
|
64
|
+
"@lssm/lib.jobs": "0.0.0-canary-20251217073102",
|
|
65
65
|
"zod": "^4.1.13"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
|
-
"@lssm/tool.tsdown": "0.0.0-canary-
|
|
69
|
-
"@lssm/tool.typescript": "0.0.0-canary-
|
|
68
|
+
"@lssm/tool.tsdown": "0.0.0-canary-20251217073102",
|
|
69
|
+
"@lssm/tool.typescript": "0.0.0-canary-20251217073102",
|
|
70
70
|
"tsdown": "^0.17.4",
|
|
71
71
|
"typescript": "^5.9.3"
|
|
72
72
|
},
|