@principal-ai/control-tower-core 0.2.1 → 0.2.2
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/generated/client-connection-auth.types.d.ts +312 -0
- package/dist/generated/client-connection-auth.types.d.ts.map +1 -0
- package/dist/generated/client-connection-auth.types.js +11 -0
- package/dist/generated/control-tower-execution.types.d.ts +445 -0
- package/dist/generated/control-tower-execution.types.d.ts.map +1 -0
- package/dist/generated/control-tower-execution.types.js +11 -0
- package/dist/index.js.map +3 -3
- package/dist/index.mjs +39 -6
- package/dist/index.mjs.map +3 -3
- package/dist/server/BaseServer.d.ts +22 -2
- package/dist/server/BaseServer.d.ts.map +1 -1
- package/dist/server/BaseServer.js +63 -8
- package/dist/telemetry/EventValidationIntegration.d.ts +135 -0
- package/dist/telemetry/EventValidationIntegration.d.ts.map +1 -0
- package/dist/telemetry/EventValidationIntegration.js +253 -0
- package/dist/telemetry/EventValidationIntegration.test.d.ts +7 -0
- package/dist/telemetry/EventValidationIntegration.test.d.ts.map +1 -0
- package/dist/telemetry/EventValidationIntegration.test.js +322 -0
- package/dist/telemetry/TelemetryCapture.d.ts +268 -0
- package/dist/telemetry/TelemetryCapture.d.ts.map +1 -0
- package/dist/telemetry/TelemetryCapture.js +263 -0
- package/dist/telemetry/TelemetryCapture.test.d.ts +7 -0
- package/dist/telemetry/TelemetryCapture.test.d.ts.map +1 -0
- package/dist/telemetry/TelemetryCapture.test.js +396 -0
- package/dist/telemetry-example.d.ts +33 -0
- package/dist/telemetry-example.d.ts.map +1 -0
- package/dist/telemetry-example.js +124 -0
- package/package.json +1 -1
- package/dist/adapters/websocket/WebSocketTransportAdapter.d.ts +0 -60
- package/dist/adapters/websocket/WebSocketTransportAdapter.d.ts.map +0 -1
- package/dist/adapters/websocket/WebSocketTransportAdapter.js +0 -386
|
@@ -0,0 +1,312 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated types from canvas: Client Connection and Authentication Flow
|
|
3
|
+
*
|
|
4
|
+
* DO NOT EDIT MANUALLY - This file is auto-generated
|
|
5
|
+
* Generated by @principal-ai/principal-view-core
|
|
6
|
+
*
|
|
7
|
+
* Canvas: Telemetry instrumentation for client WebSocket connection, message validation, and authentication flow through Control Tower
|
|
8
|
+
* Version: 1.0.0
|
|
9
|
+
*/
|
|
10
|
+
/**
|
|
11
|
+
* Event types for node: websocket-adapter
|
|
12
|
+
*/
|
|
13
|
+
export declare namespace WebsocketAdapter {
|
|
14
|
+
/**
|
|
15
|
+
* New WebSocket connection received
|
|
16
|
+
*/
|
|
17
|
+
interface ConnectionReceived {
|
|
18
|
+
name: 'connection.received';
|
|
19
|
+
attributes: {
|
|
20
|
+
/** Unique connection identifier */
|
|
21
|
+
'connection.id': string;
|
|
22
|
+
/** Origin header from connection */
|
|
23
|
+
'connection.origin'?: string;
|
|
24
|
+
/** WebSocket protocol version */
|
|
25
|
+
'connection.protocol'?: string;
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* WebSocket connection successfully established
|
|
30
|
+
*/
|
|
31
|
+
interface ConnectionEstablished {
|
|
32
|
+
name: 'connection.established';
|
|
33
|
+
attributes: {
|
|
34
|
+
'connection.id': string;
|
|
35
|
+
/** Transport type (websocket, mock) */
|
|
36
|
+
'transport.type': string;
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* WebSocket connection rejected
|
|
41
|
+
*/
|
|
42
|
+
interface ConnectionRejected {
|
|
43
|
+
name: 'connection.rejected';
|
|
44
|
+
attributes: {
|
|
45
|
+
'connection.id': string;
|
|
46
|
+
/** Reason for rejection */
|
|
47
|
+
'rejection.reason': string;
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Union of all event types for websocket-adapter
|
|
52
|
+
*/
|
|
53
|
+
type Event = ConnectionReceived | ConnectionEstablished | ConnectionRejected;
|
|
54
|
+
/**
|
|
55
|
+
* Literal union of event names for websocket-adapter
|
|
56
|
+
*/
|
|
57
|
+
type EventName = 'connection.received' | 'connection.established' | 'connection.rejected';
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* Event types for node: server
|
|
61
|
+
*/
|
|
62
|
+
export declare namespace Server {
|
|
63
|
+
/**
|
|
64
|
+
* Client connection registered with server
|
|
65
|
+
*/
|
|
66
|
+
interface ClientConnected {
|
|
67
|
+
name: 'client.connected';
|
|
68
|
+
attributes: {
|
|
69
|
+
/** Unique client identifier */
|
|
70
|
+
'client.id': string;
|
|
71
|
+
/** Transport adapter type */
|
|
72
|
+
'transport.type': string;
|
|
73
|
+
/** Unix timestamp of connection */
|
|
74
|
+
'connection.timestamp': number;
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* Client connected but not yet authenticated
|
|
79
|
+
*/
|
|
80
|
+
interface ClientAwaiting_auth {
|
|
81
|
+
name: 'client.awaiting_auth';
|
|
82
|
+
attributes: {
|
|
83
|
+
'client.id': string;
|
|
84
|
+
/** Authentication timeout period */
|
|
85
|
+
'auth.timeout_ms'?: number;
|
|
86
|
+
};
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* Union of all event types for server
|
|
90
|
+
*/
|
|
91
|
+
type Event = ClientConnected | ClientAwaiting_auth;
|
|
92
|
+
/**
|
|
93
|
+
* Literal union of event names for server
|
|
94
|
+
*/
|
|
95
|
+
type EventName = 'client.connected' | 'client.awaiting_auth';
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* Event types for node: message-handler
|
|
99
|
+
*/
|
|
100
|
+
export declare namespace MessageHandler {
|
|
101
|
+
/**
|
|
102
|
+
* Message received from client
|
|
103
|
+
*/
|
|
104
|
+
interface MessageReceived {
|
|
105
|
+
name: 'message.received';
|
|
106
|
+
attributes: {
|
|
107
|
+
'client.id': string;
|
|
108
|
+
/** Message type (authenticate, join_room, etc.) */
|
|
109
|
+
'message.type': string;
|
|
110
|
+
/** Message payload size in bytes */
|
|
111
|
+
'message.size_bytes'?: number;
|
|
112
|
+
};
|
|
113
|
+
}
|
|
114
|
+
/**
|
|
115
|
+
* Message passed schema validation
|
|
116
|
+
*/
|
|
117
|
+
interface MessageValidated {
|
|
118
|
+
name: 'message.validated';
|
|
119
|
+
attributes: {
|
|
120
|
+
'client.id': string;
|
|
121
|
+
'message.type': string;
|
|
122
|
+
};
|
|
123
|
+
}
|
|
124
|
+
/**
|
|
125
|
+
* Message failed schema validation
|
|
126
|
+
*/
|
|
127
|
+
interface MessageValidation_failed {
|
|
128
|
+
name: 'message.validation_failed';
|
|
129
|
+
attributes: {
|
|
130
|
+
'client.id': string;
|
|
131
|
+
'message.type': string;
|
|
132
|
+
/** Validation error message */
|
|
133
|
+
'validation.error': string;
|
|
134
|
+
/** Field that failed validation */
|
|
135
|
+
'validation.field'?: string;
|
|
136
|
+
};
|
|
137
|
+
}
|
|
138
|
+
/**
|
|
139
|
+
* Union of all event types for message-handler
|
|
140
|
+
*/
|
|
141
|
+
type Event = MessageReceived | MessageValidated | MessageValidation_failed;
|
|
142
|
+
/**
|
|
143
|
+
* Literal union of event names for message-handler
|
|
144
|
+
*/
|
|
145
|
+
type EventName = 'message.received' | 'message.validated' | 'message.validation_failed';
|
|
146
|
+
}
|
|
147
|
+
/**
|
|
148
|
+
* Event types for node: auth-adapter
|
|
149
|
+
*/
|
|
150
|
+
export declare namespace AuthAdapter {
|
|
151
|
+
/**
|
|
152
|
+
* Authentication validation begins
|
|
153
|
+
*/
|
|
154
|
+
interface AuthValidation_started {
|
|
155
|
+
name: 'auth.validation_started';
|
|
156
|
+
attributes: {
|
|
157
|
+
'client.id': string;
|
|
158
|
+
/** Authentication method (token, password, etc.) */
|
|
159
|
+
'auth.method'?: string;
|
|
160
|
+
};
|
|
161
|
+
}
|
|
162
|
+
/**
|
|
163
|
+
* Authentication validation succeeded
|
|
164
|
+
*/
|
|
165
|
+
interface AuthValidation_success {
|
|
166
|
+
name: 'auth.validation_success';
|
|
167
|
+
attributes: {
|
|
168
|
+
'client.id': string;
|
|
169
|
+
/** Authenticated user identifier */
|
|
170
|
+
'user.id': string;
|
|
171
|
+
'auth.method'?: string;
|
|
172
|
+
/** Time taken to validate */
|
|
173
|
+
'validation.duration_ms'?: number;
|
|
174
|
+
};
|
|
175
|
+
}
|
|
176
|
+
/**
|
|
177
|
+
* Authentication validation failed
|
|
178
|
+
*/
|
|
179
|
+
interface AuthValidation_failed {
|
|
180
|
+
name: 'auth.validation_failed';
|
|
181
|
+
attributes: {
|
|
182
|
+
'client.id': string;
|
|
183
|
+
/** Error code (invalid_token, expired, etc.) */
|
|
184
|
+
'auth.error_code': string;
|
|
185
|
+
/** Human-readable error message */
|
|
186
|
+
'auth.error_message': string;
|
|
187
|
+
};
|
|
188
|
+
}
|
|
189
|
+
/**
|
|
190
|
+
* Union of all event types for auth-adapter
|
|
191
|
+
*/
|
|
192
|
+
type Event = AuthValidation_started | AuthValidation_success | AuthValidation_failed;
|
|
193
|
+
/**
|
|
194
|
+
* Literal union of event names for auth-adapter
|
|
195
|
+
*/
|
|
196
|
+
type EventName = 'auth.validation_started' | 'auth.validation_success' | 'auth.validation_failed';
|
|
197
|
+
}
|
|
198
|
+
/**
|
|
199
|
+
* Event types for node: client-lifecycle
|
|
200
|
+
*/
|
|
201
|
+
export declare namespace ClientLifecycle {
|
|
202
|
+
/**
|
|
203
|
+
* Client state transition occurred
|
|
204
|
+
*/
|
|
205
|
+
interface ClientState_changed {
|
|
206
|
+
name: 'client.state_changed';
|
|
207
|
+
attributes: {
|
|
208
|
+
'client.id': string;
|
|
209
|
+
/** Previous state (connected, authenticating, authenticated) */
|
|
210
|
+
'state.from': string;
|
|
211
|
+
/** New state */
|
|
212
|
+
'state.to': string;
|
|
213
|
+
/** Time spent in previous state */
|
|
214
|
+
'state.duration_ms'?: number;
|
|
215
|
+
};
|
|
216
|
+
}
|
|
217
|
+
/**
|
|
218
|
+
* Client successfully authenticated and ready
|
|
219
|
+
*/
|
|
220
|
+
interface ClientAuthenticated {
|
|
221
|
+
name: 'client.authenticated';
|
|
222
|
+
attributes: {
|
|
223
|
+
'client.id': string;
|
|
224
|
+
'user.id': string;
|
|
225
|
+
/** Total time from connection to authentication */
|
|
226
|
+
'connection.total_duration_ms'?: number;
|
|
227
|
+
};
|
|
228
|
+
}
|
|
229
|
+
/**
|
|
230
|
+
* Client failed to authenticate within timeout period
|
|
231
|
+
*/
|
|
232
|
+
interface ClientAuth_timeout {
|
|
233
|
+
name: 'client.auth_timeout';
|
|
234
|
+
attributes: {
|
|
235
|
+
'client.id': string;
|
|
236
|
+
/** Configured timeout duration */
|
|
237
|
+
'timeout.duration_ms': number;
|
|
238
|
+
};
|
|
239
|
+
}
|
|
240
|
+
/**
|
|
241
|
+
* Client connection terminated
|
|
242
|
+
*/
|
|
243
|
+
interface ClientDisconnected {
|
|
244
|
+
name: 'client.disconnected';
|
|
245
|
+
attributes: {
|
|
246
|
+
'client.id': string;
|
|
247
|
+
/** Reason for disconnection */
|
|
248
|
+
'disconnect.reason'?: string;
|
|
249
|
+
/** Total session duration */
|
|
250
|
+
'session.total_duration_ms'?: number;
|
|
251
|
+
/** Whether client had completed authentication */
|
|
252
|
+
'client.was_authenticated': boolean;
|
|
253
|
+
};
|
|
254
|
+
}
|
|
255
|
+
/**
|
|
256
|
+
* Union of all event types for client-lifecycle
|
|
257
|
+
*/
|
|
258
|
+
type Event = ClientState_changed | ClientAuthenticated | ClientAuth_timeout | ClientDisconnected;
|
|
259
|
+
/**
|
|
260
|
+
* Literal union of event names for client-lifecycle
|
|
261
|
+
*/
|
|
262
|
+
type EventName = 'client.state_changed' | 'client.authenticated' | 'client.auth_timeout' | 'client.disconnected';
|
|
263
|
+
}
|
|
264
|
+
/**
|
|
265
|
+
* Event types for node: client-response
|
|
266
|
+
*/
|
|
267
|
+
export declare namespace ClientResponse {
|
|
268
|
+
/**
|
|
269
|
+
* Response message sent to client
|
|
270
|
+
*/
|
|
271
|
+
interface ResponseSent {
|
|
272
|
+
name: 'response.sent';
|
|
273
|
+
attributes: {
|
|
274
|
+
'client.id': string;
|
|
275
|
+
/** Response message type (authenticated, error) */
|
|
276
|
+
'response.type': string;
|
|
277
|
+
/** Response payload size */
|
|
278
|
+
'response.size_bytes'?: number;
|
|
279
|
+
};
|
|
280
|
+
}
|
|
281
|
+
/**
|
|
282
|
+
* Failed to send response to client
|
|
283
|
+
*/
|
|
284
|
+
interface ResponseSend_failed {
|
|
285
|
+
name: 'response.send_failed';
|
|
286
|
+
attributes: {
|
|
287
|
+
'client.id': string;
|
|
288
|
+
/** Error that occurred during send */
|
|
289
|
+
'error.message': string;
|
|
290
|
+
};
|
|
291
|
+
}
|
|
292
|
+
/**
|
|
293
|
+
* Union of all event types for client-response
|
|
294
|
+
*/
|
|
295
|
+
type Event = ResponseSent | ResponseSend_failed;
|
|
296
|
+
/**
|
|
297
|
+
* Literal union of event names for client-response
|
|
298
|
+
*/
|
|
299
|
+
type EventName = 'response.sent' | 'response.send_failed';
|
|
300
|
+
}
|
|
301
|
+
/**
|
|
302
|
+
* Helper type for creating event emitters by name
|
|
303
|
+
*/
|
|
304
|
+
export type NodeEmitterByName<T extends {
|
|
305
|
+
name: string;
|
|
306
|
+
attributes: any;
|
|
307
|
+
}> = {
|
|
308
|
+
[K in T['name']]: (eventName: K, attributes: Extract<T, {
|
|
309
|
+
name: K;
|
|
310
|
+
}>['attributes']) => void;
|
|
311
|
+
}[T['name']];
|
|
312
|
+
//# sourceMappingURL=client-connection-auth.types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"client-connection-auth.types.d.ts","sourceRoot":"","sources":["../../src/generated/client-connection-auth.types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated types from canvas: Client Connection and Authentication Flow
|
|
4
|
+
*
|
|
5
|
+
* DO NOT EDIT MANUALLY - This file is auto-generated
|
|
6
|
+
* Generated by @principal-ai/principal-view-core
|
|
7
|
+
*
|
|
8
|
+
* Canvas: Telemetry instrumentation for client WebSocket connection, message validation, and authentication flow through Control Tower
|
|
9
|
+
* Version: 1.0.0
|
|
10
|
+
*/
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|