@lssm/example.agent-console 0.0.0-canary-20251223205220 → 0.0.0-canary-20251223214424

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.
@@ -107,13 +107,13 @@ $ tsdown
107
107
  ℹ dist/run/run.handler.d.ts  4.51 kB │ gzip: 0.89 kB
108
108
  ℹ dist/agent/agent.event.d.ts  3.46 kB │ gzip: 0.51 kB
109
109
  ℹ dist/run/run.entity.d.ts  3.43 kB │ gzip: 0.60 kB
110
- ℹ dist/tool/tool.event.d.ts  2.76 kB │ gzip: 0.46 kB
110
+ ℹ dist/tool/tool.event.d.ts  2.77 kB │ gzip: 0.46 kB
111
111
  ℹ dist/agent/agent.handler.d.ts  2.67 kB │ gzip: 0.76 kB
112
112
  ℹ dist/shared/mock-runs.d.ts  2.41 kB │ gzip: 0.50 kB
113
113
  ℹ dist/agent/agent.entity.d.ts  2.33 kB │ gzip: 0.53 kB
114
114
  ℹ dist/agent/index.d.ts  1.75 kB │ gzip: 0.44 kB
115
115
  ℹ dist/shared/mock-agents.d.ts  1.73 kB │ gzip: 0.41 kB
116
- ℹ dist/tool/tool.entity.d.ts  1.71 kB │ gzip: 0.45 kB
116
+ ℹ dist/tool/tool.entity.d.ts  1.73 kB │ gzip: 0.45 kB
117
117
  ℹ dist/run/index.d.ts  1.68 kB │ gzip: 0.46 kB
118
118
  ℹ dist/tool/index.d.ts  1.41 kB │ gzip: 0.36 kB
119
119
  ℹ dist/example.d.ts  1.37 kB │ gzip: 0.52 kB
@@ -129,5 +129,5 @@ $ tsdown
129
129
  ℹ dist/shared/index.d.ts  0.18 kB │ gzip: 0.10 kB
130
130
  ℹ dist/docs/agent-console.docblock.d.ts  0.01 kB │ gzip: 0.03 kB
131
131
  ℹ dist/docs/index.d.ts  0.01 kB │ gzip: 0.03 kB
132
- ℹ 123 files, total: 432.81 kB
133
- ✔ Build complete in 29609ms
132
+ ℹ 123 files, total: 432.84 kB
133
+ ✔ Build complete in 23519ms
@@ -131,4 +131,4 @@ $ tsdown
131
131
  ℹ dist/docs/agent-console.docblock.d.ts  0.01 kB │ gzip: 0.03 kB
132
132
  ℹ dist/docs/index.d.ts  0.01 kB │ gzip: 0.03 kB
133
133
  ℹ 123 files, total: 432.86 kB
134
- ✔ Build complete in 30538ms
134
+ ✔ Build complete in 26450ms
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @lssm/example.agent-console
2
2
 
3
- ## 0.0.0-canary-20251223205220
3
+ ## 0.0.0-canary-20251223214424
4
4
 
5
5
  ### Minor Changes
6
6
 
@@ -9,8 +9,8 @@
9
9
  ### Patch Changes
10
10
 
11
11
  - Updated dependencies [8eefd9c]
12
- - @lssm/lib.contracts@0.0.0-canary-20251223205220
13
- - @lssm/lib.identity-rbac@0.0.0-canary-20251223205220
14
- - @lssm/lib.jobs@0.0.0-canary-20251223205220
15
- - @lssm/lib.schema@0.0.0-canary-20251223205220
16
- - @lssm/module.audit-trail@0.0.0-canary-20251223205220
12
+ - @lssm/lib.contracts@0.0.0-canary-20251223214424
13
+ - @lssm/lib.identity-rbac@0.0.0-canary-20251223214424
14
+ - @lssm/lib.jobs@0.0.0-canary-20251223214424
15
+ - @lssm/lib.schema@0.0.0-canary-20251223214424
16
+ - @lssm/module.audit-trail@0.0.0-canary-20251223214424
@@ -1,54 +1,54 @@
1
- import * as _lssm_lib_schema170 from "@lssm/lib.schema";
1
+ import * as _lssm_lib_schema144 from "@lssm/lib.schema";
2
2
 
3
3
  //#region src/agent/agent.entity.d.ts
4
4
  /**
5
5
  * Agent status for lifecycle management.
6
6
  */
7
- declare const AgentStatusEntityEnum: _lssm_lib_schema170.EntityEnumDef;
7
+ declare const AgentStatusEntityEnum: _lssm_lib_schema144.EntityEnumDef;
8
8
  /**
9
9
  * Agent model provider.
10
10
  */
11
- declare const ModelProviderEntityEnum: _lssm_lib_schema170.EntityEnumDef;
11
+ declare const ModelProviderEntityEnum: _lssm_lib_schema144.EntityEnumDef;
12
12
  /**
13
13
  * Agent entity - Represents an AI agent configuration.
14
14
  */
15
- declare const AgentEntity: _lssm_lib_schema170.EntitySpec<{
16
- id: _lssm_lib_schema170.EntityScalarField;
17
- organizationId: _lssm_lib_schema170.EntityScalarField;
18
- name: _lssm_lib_schema170.EntityScalarField;
19
- slug: _lssm_lib_schema170.EntityScalarField;
20
- description: _lssm_lib_schema170.EntityScalarField;
21
- status: _lssm_lib_schema170.EntityEnumField;
22
- modelProvider: _lssm_lib_schema170.EntityEnumField;
23
- modelName: _lssm_lib_schema170.EntityScalarField;
24
- modelConfig: _lssm_lib_schema170.EntityScalarField;
25
- systemPrompt: _lssm_lib_schema170.EntityScalarField;
26
- userPromptTemplate: _lssm_lib_schema170.EntityScalarField;
27
- toolIds: _lssm_lib_schema170.EntityScalarField;
28
- toolChoice: _lssm_lib_schema170.EntityScalarField;
29
- maxIterations: _lssm_lib_schema170.EntityScalarField;
30
- maxTokensPerRun: _lssm_lib_schema170.EntityScalarField;
31
- timeoutMs: _lssm_lib_schema170.EntityScalarField;
32
- version: _lssm_lib_schema170.EntityScalarField;
33
- tags: _lssm_lib_schema170.EntityScalarField;
34
- createdAt: _lssm_lib_schema170.EntityScalarField;
35
- updatedAt: _lssm_lib_schema170.EntityScalarField;
36
- createdById: _lssm_lib_schema170.EntityScalarField;
37
- tools: _lssm_lib_schema170.EntityRelationField;
15
+ declare const AgentEntity: _lssm_lib_schema144.EntitySpec<{
16
+ id: _lssm_lib_schema144.EntityScalarField;
17
+ organizationId: _lssm_lib_schema144.EntityScalarField;
18
+ name: _lssm_lib_schema144.EntityScalarField;
19
+ slug: _lssm_lib_schema144.EntityScalarField;
20
+ description: _lssm_lib_schema144.EntityScalarField;
21
+ status: _lssm_lib_schema144.EntityEnumField;
22
+ modelProvider: _lssm_lib_schema144.EntityEnumField;
23
+ modelName: _lssm_lib_schema144.EntityScalarField;
24
+ modelConfig: _lssm_lib_schema144.EntityScalarField;
25
+ systemPrompt: _lssm_lib_schema144.EntityScalarField;
26
+ userPromptTemplate: _lssm_lib_schema144.EntityScalarField;
27
+ toolIds: _lssm_lib_schema144.EntityScalarField;
28
+ toolChoice: _lssm_lib_schema144.EntityScalarField;
29
+ maxIterations: _lssm_lib_schema144.EntityScalarField;
30
+ maxTokensPerRun: _lssm_lib_schema144.EntityScalarField;
31
+ timeoutMs: _lssm_lib_schema144.EntityScalarField;
32
+ version: _lssm_lib_schema144.EntityScalarField;
33
+ tags: _lssm_lib_schema144.EntityScalarField;
34
+ createdAt: _lssm_lib_schema144.EntityScalarField;
35
+ updatedAt: _lssm_lib_schema144.EntityScalarField;
36
+ createdById: _lssm_lib_schema144.EntityScalarField;
37
+ tools: _lssm_lib_schema144.EntityRelationField;
38
38
  }>;
39
39
  /**
40
40
  * AgentTool join entity - Links agents to their assigned tools.
41
41
  */
42
- declare const AgentToolEntity: _lssm_lib_schema170.EntitySpec<{
43
- id: _lssm_lib_schema170.EntityScalarField;
44
- agentId: _lssm_lib_schema170.EntityScalarField;
45
- toolId: _lssm_lib_schema170.EntityScalarField;
46
- config: _lssm_lib_schema170.EntityScalarField;
47
- order: _lssm_lib_schema170.EntityScalarField;
48
- isEnabled: _lssm_lib_schema170.EntityScalarField;
49
- createdAt: _lssm_lib_schema170.EntityScalarField;
50
- agent: _lssm_lib_schema170.EntityRelationField;
51
- tool: _lssm_lib_schema170.EntityRelationField;
42
+ declare const AgentToolEntity: _lssm_lib_schema144.EntitySpec<{
43
+ id: _lssm_lib_schema144.EntityScalarField;
44
+ agentId: _lssm_lib_schema144.EntityScalarField;
45
+ toolId: _lssm_lib_schema144.EntityScalarField;
46
+ config: _lssm_lib_schema144.EntityScalarField;
47
+ order: _lssm_lib_schema144.EntityScalarField;
48
+ isEnabled: _lssm_lib_schema144.EntityScalarField;
49
+ createdAt: _lssm_lib_schema144.EntityScalarField;
50
+ agent: _lssm_lib_schema144.EntityRelationField;
51
+ tool: _lssm_lib_schema144.EntityRelationField;
52
52
  }>;
53
53
  //#endregion
54
54
  export { AgentEntity, AgentStatusEntityEnum, AgentToolEntity, ModelProviderEntityEnum };
@@ -1,18 +1,18 @@
1
- import * as _lssm_lib_schema73 from "@lssm/lib.schema";
1
+ import * as _lssm_lib_schema179 from "@lssm/lib.schema";
2
2
 
3
3
  //#region src/agent/agent.enum.d.ts
4
4
  /**
5
5
  * Agent status enum.
6
6
  */
7
- declare const AgentStatusEnum: _lssm_lib_schema73.EnumType<[string, string, string, string]>;
7
+ declare const AgentStatusEnum: _lssm_lib_schema179.EnumType<[string, string, string, string]>;
8
8
  /**
9
9
  * Model provider enum.
10
10
  */
11
- declare const ModelProviderEnum: _lssm_lib_schema73.EnumType<[string, string, string, string, string]>;
11
+ declare const ModelProviderEnum: _lssm_lib_schema179.EnumType<[string, string, string, string, string]>;
12
12
  /**
13
13
  * Tool choice mode enum.
14
14
  */
15
- declare const ToolChoiceEnum: _lssm_lib_schema73.EnumType<[string, string, string]>;
15
+ declare const ToolChoiceEnum: _lssm_lib_schema179.EnumType<[string, string, string]>;
16
16
  //#endregion
17
17
  export { AgentStatusEnum, ModelProviderEnum, ToolChoiceEnum };
18
18
  //# sourceMappingURL=agent.enum.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"agent.enum.d.ts","names":[],"sources":["../../src/agent/agent.enum.ts"],"sourcesContent":[],"mappings":";;;;;;AAKa,cAAA,eAKX,EAAA,kBAAA,CAL0B,QAAA,CAAA,CAAA,MAAA,EAAA,MAAA,EAAA,MAAA,EAAA,MAAA,CAAA,CAAA;AAU5B;AAWA;;cAXa,mBAMX,kBAAA,CAN4B;;;;cAWjB,gBAIX,kBAAA,CAJyB"}
1
+ {"version":3,"file":"agent.enum.d.ts","names":[],"sources":["../../src/agent/agent.enum.ts"],"sourcesContent":[],"mappings":";;;;;;AAKa,cAAA,eAKX,EAAA,mBAAA,CAL0B,QAAA,CAAA,CAAA,MAAA,EAAA,MAAA,EAAA,MAAA,EAAA,MAAA,CAAA,CAAA;AAU5B;AAWA;;cAXa,mBAMX,mBAAA,CAN4B;;;;cAWjB,gBAIX,mBAAA,CAJyB"}
@@ -1,125 +1,125 @@
1
- import * as _lssm_lib_schema263 from "@lssm/lib.schema";
1
+ import * as _lssm_lib_schema182 from "@lssm/lib.schema";
2
2
  import * as _lssm_lib_contracts0 from "@lssm/lib.contracts";
3
3
 
4
4
  //#region src/agent/agent.event.d.ts
5
5
  /**
6
6
  * AgentCreatedEvent - A new agent was created.
7
7
  */
8
- declare const AgentCreatedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema263.SchemaModel<{
8
+ declare const AgentCreatedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema182.SchemaModel<{
9
9
  id: {
10
- type: _lssm_lib_schema263.FieldType<string, string>;
10
+ type: _lssm_lib_schema182.FieldType<string, string>;
11
11
  isOptional: false;
12
12
  };
13
13
  organizationId: {
14
- type: _lssm_lib_schema263.FieldType<string, string>;
14
+ type: _lssm_lib_schema182.FieldType<string, string>;
15
15
  isOptional: false;
16
16
  };
17
17
  name: {
18
- type: _lssm_lib_schema263.FieldType<string, string>;
18
+ type: _lssm_lib_schema182.FieldType<string, string>;
19
19
  isOptional: false;
20
20
  };
21
21
  slug: {
22
- type: _lssm_lib_schema263.FieldType<string, string>;
22
+ type: _lssm_lib_schema182.FieldType<string, string>;
23
23
  isOptional: false;
24
24
  };
25
25
  modelProvider: {
26
- type: _lssm_lib_schema263.FieldType<string, string>;
26
+ type: _lssm_lib_schema182.FieldType<string, string>;
27
27
  isOptional: false;
28
28
  };
29
29
  modelName: {
30
- type: _lssm_lib_schema263.FieldType<string, string>;
30
+ type: _lssm_lib_schema182.FieldType<string, string>;
31
31
  isOptional: false;
32
32
  };
33
33
  toolCount: {
34
- type: _lssm_lib_schema263.FieldType<number, number>;
34
+ type: _lssm_lib_schema182.FieldType<number, number>;
35
35
  isOptional: false;
36
36
  };
37
37
  createdById: {
38
- type: _lssm_lib_schema263.FieldType<string, string>;
38
+ type: _lssm_lib_schema182.FieldType<string, string>;
39
39
  isOptional: true;
40
40
  };
41
41
  createdAt: {
42
- type: _lssm_lib_schema263.FieldType<Date, string>;
42
+ type: _lssm_lib_schema182.FieldType<Date, string>;
43
43
  isOptional: false;
44
44
  };
45
45
  }>>;
46
46
  /**
47
47
  * AgentUpdatedEvent - An agent was updated.
48
48
  */
49
- declare const AgentUpdatedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema263.SchemaModel<{
49
+ declare const AgentUpdatedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema182.SchemaModel<{
50
50
  id: {
51
- type: _lssm_lib_schema263.FieldType<string, string>;
51
+ type: _lssm_lib_schema182.FieldType<string, string>;
52
52
  isOptional: false;
53
53
  };
54
54
  organizationId: {
55
- type: _lssm_lib_schema263.FieldType<string, string>;
55
+ type: _lssm_lib_schema182.FieldType<string, string>;
56
56
  isOptional: false;
57
57
  };
58
58
  name: {
59
- type: _lssm_lib_schema263.FieldType<string, string>;
59
+ type: _lssm_lib_schema182.FieldType<string, string>;
60
60
  isOptional: false;
61
61
  };
62
62
  status: {
63
- type: _lssm_lib_schema263.FieldType<string, string>;
63
+ type: _lssm_lib_schema182.FieldType<string, string>;
64
64
  isOptional: false;
65
65
  };
66
66
  updatedFields: {
67
- type: _lssm_lib_schema263.FieldType<string, string>;
67
+ type: _lssm_lib_schema182.FieldType<string, string>;
68
68
  isArray: true;
69
69
  isOptional: false;
70
70
  };
71
71
  updatedAt: {
72
- type: _lssm_lib_schema263.FieldType<Date, string>;
72
+ type: _lssm_lib_schema182.FieldType<Date, string>;
73
73
  isOptional: false;
74
74
  };
75
75
  }>>;
76
76
  /**
77
77
  * AgentToolAssignedEvent - A tool was assigned to an agent.
78
78
  */
79
- declare const AgentToolAssignedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema263.SchemaModel<{
79
+ declare const AgentToolAssignedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema182.SchemaModel<{
80
80
  agentId: {
81
- type: _lssm_lib_schema263.FieldType<string, string>;
81
+ type: _lssm_lib_schema182.FieldType<string, string>;
82
82
  isOptional: false;
83
83
  };
84
84
  toolId: {
85
- type: _lssm_lib_schema263.FieldType<string, string>;
85
+ type: _lssm_lib_schema182.FieldType<string, string>;
86
86
  isOptional: false;
87
87
  };
88
88
  agentName: {
89
- type: _lssm_lib_schema263.FieldType<string, string>;
89
+ type: _lssm_lib_schema182.FieldType<string, string>;
90
90
  isOptional: false;
91
91
  };
92
92
  toolName: {
93
- type: _lssm_lib_schema263.FieldType<string, string>;
93
+ type: _lssm_lib_schema182.FieldType<string, string>;
94
94
  isOptional: false;
95
95
  };
96
96
  assignedAt: {
97
- type: _lssm_lib_schema263.FieldType<Date, string>;
97
+ type: _lssm_lib_schema182.FieldType<Date, string>;
98
98
  isOptional: false;
99
99
  };
100
100
  }>>;
101
101
  /**
102
102
  * AgentToolRemovedEvent - A tool was removed from an agent.
103
103
  */
104
- declare const AgentToolRemovedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema263.SchemaModel<{
104
+ declare const AgentToolRemovedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema182.SchemaModel<{
105
105
  agentId: {
106
- type: _lssm_lib_schema263.FieldType<string, string>;
106
+ type: _lssm_lib_schema182.FieldType<string, string>;
107
107
  isOptional: false;
108
108
  };
109
109
  toolId: {
110
- type: _lssm_lib_schema263.FieldType<string, string>;
110
+ type: _lssm_lib_schema182.FieldType<string, string>;
111
111
  isOptional: false;
112
112
  };
113
113
  agentName: {
114
- type: _lssm_lib_schema263.FieldType<string, string>;
114
+ type: _lssm_lib_schema182.FieldType<string, string>;
115
115
  isOptional: false;
116
116
  };
117
117
  toolName: {
118
- type: _lssm_lib_schema263.FieldType<string, string>;
118
+ type: _lssm_lib_schema182.FieldType<string, string>;
119
119
  isOptional: false;
120
120
  };
121
121
  removedAt: {
122
- type: _lssm_lib_schema263.FieldType<Date, string>;
122
+ type: _lssm_lib_schema182.FieldType<Date, string>;
123
123
  isOptional: false;
124
124
  };
125
125
  }>>;