@guinetik/primitives-ts 0.2.9 → 0.4.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/README.md +0 -0
- package/dist/agent.types.d.ts +75 -0
- package/dist/agent.types.d.ts.map +1 -0
- package/dist/agent.types.js +21 -0
- package/dist/auth.types.d.ts +0 -0
- package/dist/auth.types.d.ts.map +0 -0
- package/dist/auth.types.js +0 -0
- package/dist/chat.types.d.ts +79 -44
- package/dist/chat.types.d.ts.map +1 -1
- package/dist/chat.types.js +7 -3
- package/dist/deployment-history.types.d.ts +0 -0
- package/dist/deployment-history.types.d.ts.map +0 -0
- package/dist/deployment-history.types.js +0 -0
- package/dist/firestore.types.d.ts +0 -0
- package/dist/firestore.types.d.ts.map +0 -0
- package/dist/firestore.types.js +0 -0
- package/dist/github.types.d.ts +0 -0
- package/dist/github.types.d.ts.map +0 -0
- package/dist/github.types.js +0 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -1
- package/dist/security.interface.d.ts +0 -0
- package/dist/security.interface.d.ts.map +0 -0
- package/dist/security.interface.js +0 -0
- package/dist/system.types.d.ts +0 -0
- package/dist/system.types.d.ts.map +0 -0
- package/dist/system.types.js +0 -0
- package/dist/totp.types.d.ts +0 -0
- package/dist/totp.types.d.ts.map +0 -0
- package/dist/totp.types.js +0 -0
- package/dist/website-firestore.types.d.ts +0 -0
- package/dist/website-firestore.types.d.ts.map +0 -0
- package/dist/website-firestore.types.js +0 -0
- package/dist/website.types.d.ts +0 -0
- package/dist/website.types.d.ts.map +0 -0
- package/dist/website.types.js +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
File without changes
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Autonomous Agent Monitoring Types
|
|
3
|
+
* Shared between API and Admin for agent monitoring features
|
|
4
|
+
*/
|
|
5
|
+
/**
|
|
6
|
+
* Agent status enum
|
|
7
|
+
*/
|
|
8
|
+
export declare enum AgentStatus {
|
|
9
|
+
/** Agent is online and idle */
|
|
10
|
+
ONLINE = "ONLINE",
|
|
11
|
+
/** Agent is offline or stopped */
|
|
12
|
+
OFFLINE = "OFFLINE",
|
|
13
|
+
/** Agent is actively working on a task */
|
|
14
|
+
WORKING = "WORKING",
|
|
15
|
+
/** Agent encountered an error */
|
|
16
|
+
ERROR = "ERROR"
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* Individual agent information
|
|
20
|
+
*/
|
|
21
|
+
export interface AgentInfo {
|
|
22
|
+
/** Unique identifier for the agent */
|
|
23
|
+
id: string;
|
|
24
|
+
/** Agent name (e.g., 'dev-agent', 'designer-agent') */
|
|
25
|
+
name: string;
|
|
26
|
+
/** Current status of the agent */
|
|
27
|
+
status: AgentStatus;
|
|
28
|
+
/** Last time the agent status was updated */
|
|
29
|
+
updatedAt: Date;
|
|
30
|
+
/** Optional error message if agent is in ERROR state */
|
|
31
|
+
errorMessage?: string;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Summary statistics for all agents
|
|
35
|
+
*/
|
|
36
|
+
export interface AgentSummary {
|
|
37
|
+
/** Total number of agents */
|
|
38
|
+
total: number;
|
|
39
|
+
/** Number of agents currently running */
|
|
40
|
+
running: number;
|
|
41
|
+
/** Number of idle agents */
|
|
42
|
+
idle: number;
|
|
43
|
+
/** Number of failed/error agents */
|
|
44
|
+
failed: number;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Response from agent status endpoint
|
|
48
|
+
*/
|
|
49
|
+
export interface AgentStatusResponse {
|
|
50
|
+
/** ISO timestamp when status was retrieved */
|
|
51
|
+
timestamp: string;
|
|
52
|
+
/** List of all agents and their statuses */
|
|
53
|
+
agents: AgentInfo[];
|
|
54
|
+
/** Optional summary statistics */
|
|
55
|
+
summary?: AgentSummary;
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* Response from agent logs endpoint
|
|
59
|
+
*/
|
|
60
|
+
export interface AgentLogsResponse {
|
|
61
|
+
/** Array of log lines */
|
|
62
|
+
logs: string[];
|
|
63
|
+
/** Total number of log lines returned */
|
|
64
|
+
total: number;
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* Query parameters for fetching agent logs
|
|
68
|
+
*/
|
|
69
|
+
export interface AgentLogsQuery {
|
|
70
|
+
/** Number of log lines to retrieve (default: 50, min: 10, max: 1000) */
|
|
71
|
+
lines?: number;
|
|
72
|
+
/** Offset for pagination (default: 0) */
|
|
73
|
+
offset?: number;
|
|
74
|
+
}
|
|
75
|
+
//# sourceMappingURL=agent.types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agent.types.d.ts","sourceRoot":"","sources":["../src/agent.types.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;GAEG;AACH,oBAAY,WAAW;IACrB,+BAA+B;IAC/B,MAAM,WAAW;IAEjB,kCAAkC;IAClC,OAAO,YAAY;IAEnB,0CAA0C;IAC1C,OAAO,YAAY;IAEnB,iCAAiC;IACjC,KAAK,UAAU;CAChB;AAED;;GAEG;AACH,MAAM,WAAW,SAAS;IACxB,sCAAsC;IACtC,EAAE,EAAE,MAAM,CAAC;IAEX,uDAAuD;IACvD,IAAI,EAAE,MAAM,CAAC;IAEb,kCAAkC;IAClC,MAAM,EAAE,WAAW,CAAC;IAEpB,6CAA6C;IAC7C,SAAS,EAAE,IAAI,CAAC;IAEhB,wDAAwD;IACxD,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B,6BAA6B;IAC7B,KAAK,EAAE,MAAM,CAAC;IAEd,yCAAyC;IACzC,OAAO,EAAE,MAAM,CAAC;IAEhB,4BAA4B;IAC5B,IAAI,EAAE,MAAM,CAAC;IAEb,oCAAoC;IACpC,MAAM,EAAE,MAAM,CAAC;CAChB;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,8CAA8C;IAC9C,SAAS,EAAE,MAAM,CAAC;IAElB,4CAA4C;IAC5C,MAAM,EAAE,SAAS,EAAE,CAAC;IAEpB,kCAAkC;IAClC,OAAO,CAAC,EAAE,YAAY,CAAC;CACxB;AAED;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAChC,yBAAyB;IACzB,IAAI,EAAE,MAAM,EAAE,CAAC;IAEf,yCAAyC;IACzC,KAAK,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B,wEAAwE;IACxE,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf,yCAAyC;IACzC,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Autonomous Agent Monitoring Types
|
|
4
|
+
* Shared between API and Admin for agent monitoring features
|
|
5
|
+
*/
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
exports.AgentStatus = void 0;
|
|
8
|
+
/**
|
|
9
|
+
* Agent status enum
|
|
10
|
+
*/
|
|
11
|
+
var AgentStatus;
|
|
12
|
+
(function (AgentStatus) {
|
|
13
|
+
/** Agent is online and idle */
|
|
14
|
+
AgentStatus["ONLINE"] = "ONLINE";
|
|
15
|
+
/** Agent is offline or stopped */
|
|
16
|
+
AgentStatus["OFFLINE"] = "OFFLINE";
|
|
17
|
+
/** Agent is actively working on a task */
|
|
18
|
+
AgentStatus["WORKING"] = "WORKING";
|
|
19
|
+
/** Agent encountered an error */
|
|
20
|
+
AgentStatus["ERROR"] = "ERROR";
|
|
21
|
+
})(AgentStatus || (exports.AgentStatus = AgentStatus = {}));
|
package/dist/auth.types.d.ts
CHANGED
|
File without changes
|
package/dist/auth.types.d.ts.map
CHANGED
|
File without changes
|
package/dist/auth.types.js
CHANGED
|
File without changes
|
package/dist/chat.types.d.ts
CHANGED
|
@@ -1,99 +1,134 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Chat
|
|
3
|
-
*
|
|
2
|
+
* Chat Types
|
|
3
|
+
* Shared between API and Admin for Claude AI chat functionality
|
|
4
4
|
*/
|
|
5
5
|
/**
|
|
6
|
-
* Available Claude models
|
|
6
|
+
* Available Claude models
|
|
7
7
|
*/
|
|
8
8
|
export declare enum ClaudeModel {
|
|
9
|
+
/** Claude Haiku 3.5 - Fastest, most cost-effective */
|
|
9
10
|
HAIKU_3_5 = "claude-3-5-haiku-20241022",
|
|
11
|
+
/** Claude Sonnet 3.7 - Extended thinking capability */
|
|
10
12
|
SONNET_3_7 = "claude-3-7-sonnet-20250219",
|
|
13
|
+
/** Claude Sonnet 4 - Best model for complex reasoning */
|
|
11
14
|
SONNET_4 = "claude-sonnet-4-20250514",
|
|
15
|
+
/** Claude Opus 4 - Exceptional for specialized complex tasks */
|
|
12
16
|
OPUS_4 = "claude-opus-4-20250514"
|
|
13
17
|
}
|
|
14
18
|
/**
|
|
15
|
-
*
|
|
19
|
+
* Model metadata for display in UI
|
|
20
|
+
*/
|
|
21
|
+
export interface ClaudeModelInfo {
|
|
22
|
+
/** Model ID */
|
|
23
|
+
id: ClaudeModel;
|
|
24
|
+
/** Display name */
|
|
25
|
+
name: string;
|
|
26
|
+
/** Model description */
|
|
27
|
+
description: string;
|
|
28
|
+
/** Model tier (for cost indication) */
|
|
29
|
+
tier: 'fast' | 'balanced' | 'powerful' | 'expert';
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Chat message role
|
|
33
|
+
*/
|
|
34
|
+
export type ChatRole = 'user' | 'assistant';
|
|
35
|
+
/**
|
|
36
|
+
* Chat session document (Firestore)
|
|
16
37
|
*/
|
|
17
38
|
export interface ChatSession {
|
|
39
|
+
/** Session ID (Firestore document ID) */
|
|
18
40
|
id: string;
|
|
41
|
+
/** User ID who created the session */
|
|
19
42
|
userId: string;
|
|
43
|
+
/** Current model for the session */
|
|
44
|
+
model: ClaudeModel;
|
|
45
|
+
/** Session creation timestamp */
|
|
20
46
|
createdAt: Date;
|
|
47
|
+
/** Last update timestamp */
|
|
21
48
|
updatedAt: Date;
|
|
49
|
+
/** Optional session title (first message summary or user-defined) */
|
|
22
50
|
title?: string;
|
|
23
|
-
model: string;
|
|
24
51
|
}
|
|
25
52
|
/**
|
|
26
|
-
* Chat message document
|
|
53
|
+
* Chat message document (Firestore)
|
|
27
54
|
*/
|
|
28
55
|
export interface ChatMessage {
|
|
56
|
+
/** Message ID (Firestore document ID) */
|
|
29
57
|
id: string;
|
|
58
|
+
/** Parent session ID */
|
|
30
59
|
sessionId: string;
|
|
31
|
-
|
|
60
|
+
/** Message role */
|
|
61
|
+
role: ChatRole;
|
|
62
|
+
/** Message content */
|
|
32
63
|
content: string;
|
|
64
|
+
/** Message timestamp */
|
|
33
65
|
timestamp: Date;
|
|
34
|
-
|
|
66
|
+
/** Model used for this specific message (for assistant messages) */
|
|
67
|
+
model?: ClaudeModel;
|
|
35
68
|
}
|
|
36
69
|
/**
|
|
37
|
-
*
|
|
70
|
+
* Send message request body
|
|
38
71
|
*/
|
|
39
|
-
export interface
|
|
72
|
+
export interface SendMessageRequest {
|
|
73
|
+
/** Optional session ID (creates new session if not provided) */
|
|
40
74
|
sessionId?: string;
|
|
75
|
+
/** User message content */
|
|
41
76
|
message: string;
|
|
42
|
-
|
|
77
|
+
/** Model to use for response */
|
|
78
|
+
model: ClaudeModel;
|
|
43
79
|
}
|
|
44
80
|
/**
|
|
45
|
-
*
|
|
81
|
+
* Send message response
|
|
46
82
|
*/
|
|
47
|
-
export interface
|
|
83
|
+
export interface SendMessageResponse {
|
|
84
|
+
/** Session ID (existing or newly created) */
|
|
48
85
|
sessionId: string;
|
|
86
|
+
/** Assistant's response content */
|
|
49
87
|
response: string;
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
/**
|
|
53
|
-
|
|
54
|
-
*/
|
|
55
|
-
export interface CreateChatSessionRequest {
|
|
56
|
-
model: string;
|
|
57
|
-
}
|
|
58
|
-
/**
|
|
59
|
-
* Response from creating a new chat session
|
|
60
|
-
*/
|
|
61
|
-
export interface CreateChatSessionResponse {
|
|
62
|
-
sessionId: string;
|
|
88
|
+
/** User message ID */
|
|
89
|
+
userMessageId: string;
|
|
90
|
+
/** Assistant message ID */
|
|
91
|
+
assistantMessageId: string;
|
|
63
92
|
}
|
|
64
93
|
/**
|
|
65
|
-
*
|
|
94
|
+
* Get chat sessions response
|
|
66
95
|
*/
|
|
67
|
-
export interface
|
|
96
|
+
export interface GetChatSessionsResponse {
|
|
97
|
+
/** List of chat sessions */
|
|
68
98
|
sessions: ChatSession[];
|
|
99
|
+
/** Total number of sessions */
|
|
100
|
+
total: number;
|
|
69
101
|
}
|
|
70
102
|
/**
|
|
71
|
-
*
|
|
103
|
+
* Get session messages response
|
|
72
104
|
*/
|
|
73
|
-
export interface
|
|
105
|
+
export interface GetSessionMessagesResponse {
|
|
106
|
+
/** List of messages in the session */
|
|
74
107
|
messages: ChatMessage[];
|
|
108
|
+
/** Total number of messages */
|
|
109
|
+
total: number;
|
|
75
110
|
}
|
|
76
111
|
/**
|
|
77
|
-
*
|
|
112
|
+
* Create new session request
|
|
78
113
|
*/
|
|
79
|
-
export interface
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
114
|
+
export interface CreateSessionRequest {
|
|
115
|
+
/** Initial model for the session */
|
|
116
|
+
model: ClaudeModel;
|
|
117
|
+
/** Optional session title */
|
|
118
|
+
title?: string;
|
|
83
119
|
}
|
|
84
120
|
/**
|
|
85
|
-
*
|
|
121
|
+
* Create new session response
|
|
86
122
|
*/
|
|
87
|
-
export interface
|
|
88
|
-
|
|
123
|
+
export interface CreateSessionResponse {
|
|
124
|
+
/** Newly created session */
|
|
125
|
+
session: ChatSession;
|
|
89
126
|
}
|
|
90
127
|
/**
|
|
91
|
-
*
|
|
128
|
+
* Get available models response
|
|
92
129
|
*/
|
|
93
|
-
export interface
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
rateLimitRpm: number;
|
|
97
|
-
maxMessageLength: number;
|
|
130
|
+
export interface GetModelsResponse {
|
|
131
|
+
/** List of available models */
|
|
132
|
+
models: ClaudeModelInfo[];
|
|
98
133
|
}
|
|
99
134
|
//# sourceMappingURL=chat.types.d.ts.map
|
package/dist/chat.types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chat.types.d.ts","sourceRoot":"","sources":["../src/chat.types.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;GAEG;AACH,oBAAY,WAAW;IACrB,SAAS,8BAA8B;
|
|
1
|
+
{"version":3,"file":"chat.types.d.ts","sourceRoot":"","sources":["../src/chat.types.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;GAEG;AACH,oBAAY,WAAW;IACrB,sDAAsD;IACtD,SAAS,8BAA8B;IAEvC,uDAAuD;IACvD,UAAU,+BAA+B;IAEzC,yDAAyD;IACzD,QAAQ,6BAA6B;IAErC,gEAAgE;IAChE,MAAM,2BAA2B;CAClC;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,eAAe;IACf,EAAE,EAAE,WAAW,CAAC;IAEhB,mBAAmB;IACnB,IAAI,EAAE,MAAM,CAAC;IAEb,wBAAwB;IACxB,WAAW,EAAE,MAAM,CAAC;IAEpB,uCAAuC;IACvC,IAAI,EAAE,MAAM,GAAG,UAAU,GAAG,UAAU,GAAG,QAAQ,CAAC;CACnD;AAED;;GAEG;AACH,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG,WAAW,CAAC;AAE5C;;GAEG;AACH,MAAM,WAAW,WAAW;IAC1B,yCAAyC;IACzC,EAAE,EAAE,MAAM,CAAC;IAEX,sCAAsC;IACtC,MAAM,EAAE,MAAM,CAAC;IAEf,oCAAoC;IACpC,KAAK,EAAE,WAAW,CAAC;IAEnB,iCAAiC;IACjC,SAAS,EAAE,IAAI,CAAC;IAEhB,4BAA4B;IAC5B,SAAS,EAAE,IAAI,CAAC;IAEhB,qEAAqE;IACrE,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;GAEG;AACH,MAAM,WAAW,WAAW;IAC1B,yCAAyC;IACzC,EAAE,EAAE,MAAM,CAAC;IAEX,wBAAwB;IACxB,SAAS,EAAE,MAAM,CAAC;IAElB,mBAAmB;IACnB,IAAI,EAAE,QAAQ,CAAC;IAEf,sBAAsB;IACtB,OAAO,EAAE,MAAM,CAAC;IAEhB,wBAAwB;IACxB,SAAS,EAAE,IAAI,CAAC;IAEhB,oEAAoE;IACpE,KAAK,CAAC,EAAE,WAAW,CAAC;CACrB;AAED;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC,gEAAgE;IAChE,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB,2BAA2B;IAC3B,OAAO,EAAE,MAAM,CAAC;IAEhB,gCAAgC;IAChC,KAAK,EAAE,WAAW,CAAC;CACpB;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,6CAA6C;IAC7C,SAAS,EAAE,MAAM,CAAC;IAElB,mCAAmC;IACnC,QAAQ,EAAE,MAAM,CAAC;IAEjB,sBAAsB;IACtB,aAAa,EAAE,MAAM,CAAC;IAEtB,2BAA2B;IAC3B,kBAAkB,EAAE,MAAM,CAAC;CAC5B;AAED;;GAEG;AACH,MAAM,WAAW,uBAAuB;IACtC,4BAA4B;IAC5B,QAAQ,EAAE,WAAW,EAAE,CAAC;IAExB,+BAA+B;IAC/B,KAAK,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACzC,sCAAsC;IACtC,QAAQ,EAAE,WAAW,EAAE,CAAC;IAExB,+BAA+B;IAC/B,KAAK,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,oCAAoC;IACpC,KAAK,EAAE,WAAW,CAAC;IAEnB,6BAA6B;IAC7B,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,4BAA4B;IAC5B,OAAO,EAAE,WAAW,CAAC;CACtB;AAED;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAChC,+BAA+B;IAC/B,MAAM,EAAE,eAAe,EAAE,CAAC;CAC3B"}
|
package/dist/chat.types.js
CHANGED
|
@@ -1,17 +1,21 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* Chat
|
|
4
|
-
*
|
|
3
|
+
* Chat Types
|
|
4
|
+
* Shared between API and Admin for Claude AI chat functionality
|
|
5
5
|
*/
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
7
|
exports.ClaudeModel = void 0;
|
|
8
8
|
/**
|
|
9
|
-
* Available Claude models
|
|
9
|
+
* Available Claude models
|
|
10
10
|
*/
|
|
11
11
|
var ClaudeModel;
|
|
12
12
|
(function (ClaudeModel) {
|
|
13
|
+
/** Claude Haiku 3.5 - Fastest, most cost-effective */
|
|
13
14
|
ClaudeModel["HAIKU_3_5"] = "claude-3-5-haiku-20241022";
|
|
15
|
+
/** Claude Sonnet 3.7 - Extended thinking capability */
|
|
14
16
|
ClaudeModel["SONNET_3_7"] = "claude-3-7-sonnet-20250219";
|
|
17
|
+
/** Claude Sonnet 4 - Best model for complex reasoning */
|
|
15
18
|
ClaudeModel["SONNET_4"] = "claude-sonnet-4-20250514";
|
|
19
|
+
/** Claude Opus 4 - Exceptional for specialized complex tasks */
|
|
16
20
|
ClaudeModel["OPUS_4"] = "claude-opus-4-20250514";
|
|
17
21
|
})(ClaudeModel || (exports.ClaudeModel = ClaudeModel = {}));
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/dist/firestore.types.js
CHANGED
|
File without changes
|
package/dist/github.types.d.ts
CHANGED
|
File without changes
|
|
File without changes
|
package/dist/github.types.js
CHANGED
|
File without changes
|
package/dist/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export * from './totp.types';
|
|
|
16
16
|
export * from './deployment-history.types';
|
|
17
17
|
export * from './github.types';
|
|
18
18
|
export * from './chat.types';
|
|
19
|
+
export * from './agent.types';
|
|
19
20
|
export type { Security, SecurityChallengeOptions, SecurityChallengeResult } from './security.interface';
|
|
20
21
|
export { SecurityLevel } from './security.interface';
|
|
21
22
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAGH,cAAc,cAAc,CAAC;AAG7B,cAAc,gBAAgB,CAAC;AAG/B,cAAc,iBAAiB,CAAC;AAGhC,cAAc,mBAAmB,CAAC;AAGlC,cAAc,2BAA2B,CAAC;AAG1C,cAAc,cAAc,CAAC;AAG7B,cAAc,4BAA4B,CAAC;AAG3C,cAAc,gBAAgB,CAAC;AAG/B,cAAc,cAAc,CAAC;AAG7B,YAAY,EAAE,QAAQ,EAAE,wBAAwB,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AACxG,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAGH,cAAc,cAAc,CAAC;AAG7B,cAAc,gBAAgB,CAAC;AAG/B,cAAc,iBAAiB,CAAC;AAGhC,cAAc,mBAAmB,CAAC;AAGlC,cAAc,2BAA2B,CAAC;AAG1C,cAAc,cAAc,CAAC;AAG7B,cAAc,4BAA4B,CAAC;AAG3C,cAAc,gBAAgB,CAAC;AAG/B,cAAc,cAAc,CAAC;AAG7B,cAAc,eAAe,CAAC;AAG9B,YAAY,EAAE,QAAQ,EAAE,wBAAwB,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AACxG,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -40,7 +40,9 @@ __exportStar(require("./totp.types"), exports);
|
|
|
40
40
|
__exportStar(require("./deployment-history.types"), exports);
|
|
41
41
|
// GitHub API types
|
|
42
42
|
__exportStar(require("./github.types"), exports);
|
|
43
|
-
// Chat types
|
|
43
|
+
// Chat system types
|
|
44
44
|
__exportStar(require("./chat.types"), exports);
|
|
45
|
+
// Agent monitoring types
|
|
46
|
+
__exportStar(require("./agent.types"), exports);
|
|
45
47
|
var security_interface_1 = require("./security.interface");
|
|
46
48
|
Object.defineProperty(exports, "SecurityLevel", { enumerable: true, get: function () { return security_interface_1.SecurityLevel; } });
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/dist/system.types.d.ts
CHANGED
|
File without changes
|
|
File without changes
|
package/dist/system.types.js
CHANGED
|
File without changes
|
package/dist/totp.types.d.ts
CHANGED
|
File without changes
|
package/dist/totp.types.d.ts.map
CHANGED
|
File without changes
|
package/dist/totp.types.js
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/dist/website.types.d.ts
CHANGED
|
File without changes
|
|
File without changes
|
package/dist/website.types.js
CHANGED
|
File without changes
|