-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.d.ts
More file actions
402 lines (366 loc) · 9.93 KB
/
index.d.ts
File metadata and controls
402 lines (366 loc) · 9.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
/**
* @conceptkernel/ck-client-js - TypeScript Definitions
* ConceptKernel JavaScript Client Library
*
* Copyright (c) 2024-2025 ConceptKernel.org
* Contact: peter@styk.ai & dorota@styk.ai
* Repository: https://github.com/ConceptKernel/ck-client-js
*
* MIT License
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
declare module '@conceptkernel/ck-client-js' {
/**
* Connection options for ConceptKernel client
*/
export interface ConnectionOptions {
/** Auto-connect WebSocket on initialization (default: true) */
autoConnect?: boolean;
/** Authentication credentials */
auth?: {
username: string;
password: string;
};
/** Service discovery cache timeout in milliseconds (default: 60000) */
cacheTimeout?: number;
/** Auto-reconnect WebSocket on disconnect (default: true) */
reconnect?: boolean;
/** Reconnect delay in milliseconds (default: 3000) */
reconnectDelay?: number;
}
/**
* Emit options for kernel invocation
*/
export interface EmitOptions {
/** Transaction ID (auto-generated if not provided) */
txId?: string;
}
/**
* Service endpoint configuration
*/
export interface ServiceEndpoint {
http?: string;
https?: string;
ws?: string;
wss?: string;
emit?: string;
}
/**
* Service configuration
*/
export interface Service {
/** Kernel URN */
urn: string;
/** Service endpoints */
endpoints: ServiceEndpoint;
/** Service capabilities */
capabilities: string[];
}
/**
* Service discovery response
*/
export interface ServiceMap {
[serviceName: string]: Service;
}
/**
* Emit result with transaction tracking
*/
export interface EmitResult {
/** Transaction ID */
txId: string;
/** BFO Process URN for temporal tracking */
processUrn: string;
/** Target kernel URN */
kernel: string;
/** Message from gateway */
message?: string;
}
/**
* Authentication result
*/
export interface AuthResult {
/** JWT token */
token: string;
/** Actor URN (e.g., ckp://System.Oidc.User#alice) */
actor: string;
/** Assigned roles */
roles: string[];
}
/**
* Kernel bootstrap configuration
*/
export interface KernelBootstrapConfig {
/** Kernel URN (e.g., ckp://MyApp.Service:v1) */
kernel: string;
/** Kernel type (e.g., 'rust:hot', 'node:cold', 'python:cold') */
kernelType: string;
/** Kernel description */
description?: string;
/** Edge predicates for routing */
edges?: string[];
/** BFO class (default: ckp://BFO#Continuant) */
bfoClass?: string;
}
/**
* Bootstrap result
*/
export interface BootstrapResult {
/** Bootstrap result type */
type: 'kernel_bootstrapped';
/** Kernel URN */
kernel: string;
/** Bootstrap timestamp */
timestamp: string;
/** Process URN */
processUrn: string;
}
/**
* Event data from WebSocket
*/
export interface Event {
/** Event type */
type: 'event' | 'notification';
/** Source kernel URN */
kernel: string;
/** Transaction ID */
txId: string;
/** Event timestamp */
timestamp: string;
/** Event payload */
data: any;
/** Process URN */
processUrn?: string;
}
/**
* Connection status
*/
export interface ConnectionStatus {
/** Service discovery completed */
discovered: boolean;
/** Last discovery timestamp */
lastDiscovery: number | null;
/** Service cache age in milliseconds */
cacheAge: number | null;
/** WebSocket connection status */
websocketConnected: boolean;
/** Authentication status */
authenticated: boolean;
/** Current actor URN */
actor: string | null;
/** Assigned roles */
roles: string[];
/** Available service names */
availableServices: string[];
}
/**
* Event handler type
*/
export type EventHandler<T = any> = (data: T) => void;
/**
* Unsubscribe function
*/
export type Unsubscribe = () => void;
/**
* ConceptKernel client class
*/
export default class ConceptKernel {
/**
* Connect to ConceptKernel gateway with auto-discovery
*
* @param gatewayUrl - Gateway URL (e.g., 'http://localhost:56000' for local discovery)
* @param options - Connection options
* @returns Connected client instance
*
* @example
* ```typescript
* // Connect to local discovery port
* const ck = await ConceptKernel.connect('http://localhost:56000');
*
* // Connect with authentication
* const ck = await ConceptKernel.connect('http://localhost:56000', {
* auth: { username: 'alice', password: 'secret123' }
* });
* ```
*/
static connect(
gatewayUrl: string,
options?: ConnectionOptions
): Promise<ConceptKernel>;
/**
* Gateway URL
*/
readonly gatewayUrl: string;
/**
* Connection options
*/
readonly options: Required<ConnectionOptions>;
/**
* Discovered services
*/
services: ServiceMap | null;
/**
* Last service discovery timestamp
*/
lastDiscovery: number | null;
/**
* WebSocket connection
*/
websocket: WebSocket | null;
/**
* Current JWT token
*/
token: string | null;
/**
* Current actor URN
*/
actor: string | null;
/**
* Assigned roles
*/
roles: string[];
/**
* Authentication status
*/
authenticated: boolean;
/**
* ConceptKernel version
*/
ckVersion?: string;
/**
* Domain name
*/
domain?: string;
/**
* Discover available services from gateway
*
* @param forceRefresh - Force refresh even if cache is valid
* @returns Service map
*/
discover(forceRefresh?: boolean): Promise<ServiceMap>;
/**
* Emit event to a kernel
*
* @param kernelUrn - Kernel URN or simple name (e.g., 'UI.Bakery')
* @param payload - Event payload
* @param options - Emit options
* @returns Result with txId and processUrn
*
* @example
* ```typescript
* // Simple emit
* await ck.emit('UI.Bakery', { action: 'mix' });
*
* // With full URN
* await ck.emit('ckp://UI.Bakery:v1', { action: 'bake', temp: 350 });
* ```
*/
emit(
kernelUrn: string,
payload: any,
options?: EmitOptions
): Promise<EmitResult>;
/**
* Authenticate with username and password
*
* @param username - Username
* @param password - Password
* @returns Authentication result with token and roles
*
* @example
* ```typescript
* await ck.authenticate('alice', 'secret123');
* console.log('Roles:', ck.roles);
* ```
*/
authenticate(username: string, password: string): Promise<AuthResult>;
/**
* Bootstrap a new kernel dynamically
*
* @param config - Kernel configuration
* @returns Bootstrap result
*
* @example
* ```typescript
* await ck.bootstrapKernel({
* kernel: 'ckp://MyApp.Service:v1',
* kernelType: 'rust:hot',
* description: 'My custom service'
* });
* ```
*/
bootstrapKernel(config: KernelBootstrapConfig): Promise<BootstrapResult>;
/**
* Register event handler
*
* @param eventType - Event type
* @param handler - Event handler function
* @returns Unsubscribe function
*
* @example
* ```typescript
* // Listen for events
* ck.on('event', (event) => {
* console.log('Event:', event);
* });
*
* // Unsubscribe
* const unsubscribe = ck.on('event', handler);
* unsubscribe();
* ```
*/
on(eventType: 'event', handler: EventHandler<Event>): Unsubscribe;
on(eventType: 'notification', handler: EventHandler<Event>): Unsubscribe;
on(eventType: 'connected', handler: EventHandler<{ url: string }>): Unsubscribe;
on(eventType: 'authenticated', handler: EventHandler<{ actor: string; roles: string[] }>): Unsubscribe;
on(eventType: 'disconnected', handler: EventHandler<{}>): Unsubscribe;
on(eventType: 'error', handler: EventHandler<{ message: string; error?: any; context?: string }>): Unsubscribe;
/**
* Get service by name
*
* @param serviceName - Service name (gateway, websocket, oidc, registry)
* @returns Service configuration or null
*/
getService(serviceName: string): Service | null;
/**
* Check if service is available
*
* @param serviceName - Service name
* @returns True if service is available
*/
hasService(serviceName: string): boolean;
/**
* Get all available service names
*
* @returns Array of service names
*/
getAvailableServices(): string[];
/**
* Get connection status
*
* @returns Status object
*/
getStatus(): ConnectionStatus;
/**
* Disconnect WebSocket
*/
disconnect(): void;
}
export = ConceptKernel;
}