weave-typescript 0.47.0 → 0.48.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/dist/weaveapi/agent/v1/agent.pb.d.ts +31 -0
- package/dist/weaveapi/agent/v1/agent.pb.js +436 -1
- package/dist/weaveapi/agent/v1/service.pb.d.ts +24 -1
- package/dist/weaveapi/agent/v1/service.pb.js +201 -2
- package/dist/weaveapi/workflow/v1/service.pb.d.ts +24 -1
- package/dist/weaveapi/workflow/v1/service.pb.js +201 -2
- package/dist/weaveapi/workflow/v1/workflow.pb.d.ts +31 -0
- package/dist/weaveapi/workflow/v1/workflow.pb.js +436 -1
- package/dist/weavesql/weavedb/agent_sql.d.ts +56 -0
- package/dist/weavesql/weavedb/agent_sql.js +100 -1
- package/dist/weavesql/weavedb/workflow_sql.d.ts +56 -0
- package/dist/weavesql/weavedb/workflow_sql.js +100 -1
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.listAgentRunEventsQuery = exports.insertAgentRunEventQuery = exports.updateAgentRunStatusQuery = exports.listAgentRunsQuery = exports.getAgentRunQuery = exports.createAgentRunQuery = exports.listAgentDefinitionVersionsQuery = exports.getAgentDefinitionVersionByIDQuery = exports.getAgentDefinitionVersionByNumberQuery = exports.setAgentDefinitionLatestVersionQuery = exports.insertAgentDefinitionVersionQuery = exports.insertAgentDraftPatchQuery = exports.updateAgentDraftQuery = exports.updateAgentDefinitionStatusQuery = exports.updateAgentDefinitionDraftMetadataQuery = exports.listAgentDefinitionsQuery = exports.getAgentDefinitionDraftQuery = exports.getAgentDefinitionBySlugQuery = exports.getAgentDefinitionByIDQuery = exports.createAgentDefinitionDraftQuery = exports.createAgentDefinitionQuery = void 0;
|
|
3
|
+
exports.listAgentRunEventsQuery = exports.insertAgentRunEventQuery = exports.updateAgentRunStatusQuery = exports.listAgentRunsQuery = exports.getAgentRunQuery = exports.createAgentRunQuery = exports.listAgentDefinitionVersionsQuery = exports.getAgentDefinitionVersionByIDQuery = exports.getAgentDefinitionVersionByNumberQuery = exports.setAgentDefinitionLatestVersionQuery = exports.insertAgentDefinitionVersionQuery = exports.listAgentDraftEventsQuery = exports.insertAgentDraftEventQuery = exports.insertAgentDraftPatchQuery = exports.updateAgentDraftQuery = exports.updateAgentDefinitionStatusQuery = exports.updateAgentDefinitionDraftMetadataQuery = exports.listAgentDefinitionsQuery = exports.getAgentDefinitionDraftQuery = exports.getAgentDefinitionBySlugQuery = exports.getAgentDefinitionByIDQuery = exports.createAgentDefinitionDraftQuery = exports.createAgentDefinitionQuery = void 0;
|
|
4
4
|
exports.createAgentDefinition = createAgentDefinition;
|
|
5
5
|
exports.createAgentDefinitionDraft = createAgentDefinitionDraft;
|
|
6
6
|
exports.getAgentDefinitionByID = getAgentDefinitionByID;
|
|
@@ -11,6 +11,8 @@ exports.updateAgentDefinitionDraftMetadata = updateAgentDefinitionDraftMetadata;
|
|
|
11
11
|
exports.updateAgentDefinitionStatus = updateAgentDefinitionStatus;
|
|
12
12
|
exports.updateAgentDraft = updateAgentDraft;
|
|
13
13
|
exports.insertAgentDraftPatch = insertAgentDraftPatch;
|
|
14
|
+
exports.insertAgentDraftEvent = insertAgentDraftEvent;
|
|
15
|
+
exports.listAgentDraftEvents = listAgentDraftEvents;
|
|
14
16
|
exports.insertAgentDefinitionVersion = insertAgentDefinitionVersion;
|
|
15
17
|
exports.setAgentDefinitionLatestVersion = setAgentDefinitionLatestVersion;
|
|
16
18
|
exports.getAgentDefinitionVersionByNumber = getAgentDefinitionVersionByNumber;
|
|
@@ -410,6 +412,103 @@ async function insertAgentDraftPatch(client, args) {
|
|
|
410
412
|
createdAt: row[6]
|
|
411
413
|
};
|
|
412
414
|
}
|
|
415
|
+
exports.insertAgentDraftEventQuery = `-- name: InsertAgentDraftEvent :one
|
|
416
|
+
INSERT INTO weave.agent_definition_draft_events (
|
|
417
|
+
id,
|
|
418
|
+
definition_id,
|
|
419
|
+
organization_id,
|
|
420
|
+
draft_id,
|
|
421
|
+
sequence,
|
|
422
|
+
kind,
|
|
423
|
+
base_revision,
|
|
424
|
+
result_revision,
|
|
425
|
+
changed_fields,
|
|
426
|
+
source,
|
|
427
|
+
client_request_id,
|
|
428
|
+
conflict,
|
|
429
|
+
created_by_user_id
|
|
430
|
+
) VALUES (
|
|
431
|
+
$1,
|
|
432
|
+
$2,
|
|
433
|
+
$3,
|
|
434
|
+
$4,
|
|
435
|
+
COALESCE(
|
|
436
|
+
(
|
|
437
|
+
SELECT max(sequence) + 1
|
|
438
|
+
FROM weave.agent_definition_draft_events
|
|
439
|
+
WHERE definition_id = $2
|
|
440
|
+
),
|
|
441
|
+
1
|
|
442
|
+
),
|
|
443
|
+
$5,
|
|
444
|
+
$6,
|
|
445
|
+
$7::integer,
|
|
446
|
+
$8::text[],
|
|
447
|
+
$9,
|
|
448
|
+
$10,
|
|
449
|
+
$11::jsonb,
|
|
450
|
+
$12
|
|
451
|
+
)
|
|
452
|
+
RETURNING id, organization_id, definition_id, draft_id, sequence, kind, base_revision, result_revision, changed_fields, source, client_request_id, conflict, created_by_user_id, created_at`;
|
|
453
|
+
async function insertAgentDraftEvent(client, args) {
|
|
454
|
+
const result = await client.query({
|
|
455
|
+
text: exports.insertAgentDraftEventQuery,
|
|
456
|
+
values: [args.id, args.definitionId, args.organizationId, args.draftId, args.kind, args.baseRevision, args.resultRevision, args.changedFields, args.source, args.clientRequestId, args.conflict, args.createdByUserId],
|
|
457
|
+
rowMode: "array"
|
|
458
|
+
});
|
|
459
|
+
if (result.rows.length !== 1) {
|
|
460
|
+
return null;
|
|
461
|
+
}
|
|
462
|
+
const row = result.rows[0];
|
|
463
|
+
return {
|
|
464
|
+
id: row[0],
|
|
465
|
+
organizationId: row[1],
|
|
466
|
+
definitionId: row[2],
|
|
467
|
+
draftId: row[3],
|
|
468
|
+
sequence: row[4],
|
|
469
|
+
kind: row[5],
|
|
470
|
+
baseRevision: row[6],
|
|
471
|
+
resultRevision: row[7],
|
|
472
|
+
changedFields: row[8],
|
|
473
|
+
source: row[9],
|
|
474
|
+
clientRequestId: row[10],
|
|
475
|
+
conflict: row[11],
|
|
476
|
+
createdByUserId: row[12],
|
|
477
|
+
createdAt: row[13]
|
|
478
|
+
};
|
|
479
|
+
}
|
|
480
|
+
exports.listAgentDraftEventsQuery = `-- name: ListAgentDraftEvents :many
|
|
481
|
+
SELECT id, organization_id, definition_id, draft_id, sequence, kind, base_revision, result_revision, changed_fields, source, client_request_id, conflict, created_by_user_id, created_at FROM weave.agent_definition_draft_events
|
|
482
|
+
WHERE organization_id = $1
|
|
483
|
+
AND definition_id = $2
|
|
484
|
+
AND sequence > $3
|
|
485
|
+
ORDER BY sequence
|
|
486
|
+
LIMIT $4`;
|
|
487
|
+
async function listAgentDraftEvents(client, args) {
|
|
488
|
+
const result = await client.query({
|
|
489
|
+
text: exports.listAgentDraftEventsQuery,
|
|
490
|
+
values: [args.organizationId, args.definitionId, args.afterSequence, args.pageSize],
|
|
491
|
+
rowMode: "array"
|
|
492
|
+
});
|
|
493
|
+
return result.rows.map(row => {
|
|
494
|
+
return {
|
|
495
|
+
id: row[0],
|
|
496
|
+
organizationId: row[1],
|
|
497
|
+
definitionId: row[2],
|
|
498
|
+
draftId: row[3],
|
|
499
|
+
sequence: row[4],
|
|
500
|
+
kind: row[5],
|
|
501
|
+
baseRevision: row[6],
|
|
502
|
+
resultRevision: row[7],
|
|
503
|
+
changedFields: row[8],
|
|
504
|
+
source: row[9],
|
|
505
|
+
clientRequestId: row[10],
|
|
506
|
+
conflict: row[11],
|
|
507
|
+
createdByUserId: row[12],
|
|
508
|
+
createdAt: row[13]
|
|
509
|
+
};
|
|
510
|
+
});
|
|
511
|
+
}
|
|
413
512
|
exports.insertAgentDefinitionVersionQuery = `-- name: InsertAgentDefinitionVersion :one
|
|
414
513
|
INSERT INTO weave.agent_definition_versions (
|
|
415
514
|
id,
|
|
@@ -237,6 +237,62 @@ export interface InsertWorkflowDraftPatchRow {
|
|
|
237
237
|
createdAt: Date;
|
|
238
238
|
}
|
|
239
239
|
export declare function insertWorkflowDraftPatch(client: Client, args: InsertWorkflowDraftPatchArgs): Promise<InsertWorkflowDraftPatchRow | null>;
|
|
240
|
+
export declare const insertWorkflowDraftEventQuery = "-- name: InsertWorkflowDraftEvent :one\nINSERT INTO weave.workflow_definition_draft_events (\n id,\n definition_id,\n organization_id,\n draft_id,\n sequence,\n kind,\n base_revision,\n result_revision,\n changed_fields,\n source,\n client_request_id,\n conflict,\n created_by_user_id\n) VALUES (\n $1,\n $2,\n $3,\n $4,\n COALESCE(\n (\n SELECT max(sequence) + 1\n FROM weave.workflow_definition_draft_events\n WHERE definition_id = $2\n ),\n 1\n ),\n $5,\n $6,\n $7::integer,\n $8::text[],\n $9,\n $10,\n $11::jsonb,\n $12\n)\nRETURNING id, organization_id, definition_id, draft_id, sequence, kind, base_revision, result_revision, changed_fields, source, client_request_id, conflict, created_by_user_id, created_at";
|
|
241
|
+
export interface InsertWorkflowDraftEventArgs {
|
|
242
|
+
id: string;
|
|
243
|
+
definitionId: string;
|
|
244
|
+
organizationId: string;
|
|
245
|
+
draftId: string;
|
|
246
|
+
kind: string;
|
|
247
|
+
baseRevision: number;
|
|
248
|
+
resultRevision: number | null;
|
|
249
|
+
changedFields: string[];
|
|
250
|
+
source: string;
|
|
251
|
+
clientRequestId: string;
|
|
252
|
+
conflict: any | null;
|
|
253
|
+
createdByUserId: string;
|
|
254
|
+
}
|
|
255
|
+
export interface InsertWorkflowDraftEventRow {
|
|
256
|
+
id: string;
|
|
257
|
+
organizationId: string;
|
|
258
|
+
definitionId: string;
|
|
259
|
+
draftId: string;
|
|
260
|
+
sequence: string;
|
|
261
|
+
kind: string;
|
|
262
|
+
baseRevision: number;
|
|
263
|
+
resultRevision: number | null;
|
|
264
|
+
changedFields: string[];
|
|
265
|
+
source: string;
|
|
266
|
+
clientRequestId: string;
|
|
267
|
+
conflict: any | null;
|
|
268
|
+
createdByUserId: string;
|
|
269
|
+
createdAt: Date;
|
|
270
|
+
}
|
|
271
|
+
export declare function insertWorkflowDraftEvent(client: Client, args: InsertWorkflowDraftEventArgs): Promise<InsertWorkflowDraftEventRow | null>;
|
|
272
|
+
export declare const listWorkflowDraftEventsQuery = "-- name: ListWorkflowDraftEvents :many\nSELECT id, organization_id, definition_id, draft_id, sequence, kind, base_revision, result_revision, changed_fields, source, client_request_id, conflict, created_by_user_id, created_at FROM weave.workflow_definition_draft_events\nWHERE organization_id = $1\n AND definition_id = $2\n AND sequence > $3\nORDER BY sequence\nLIMIT $4";
|
|
273
|
+
export interface ListWorkflowDraftEventsArgs {
|
|
274
|
+
organizationId: string;
|
|
275
|
+
definitionId: string;
|
|
276
|
+
afterSequence: string;
|
|
277
|
+
pageSize: string;
|
|
278
|
+
}
|
|
279
|
+
export interface ListWorkflowDraftEventsRow {
|
|
280
|
+
id: string;
|
|
281
|
+
organizationId: string;
|
|
282
|
+
definitionId: string;
|
|
283
|
+
draftId: string;
|
|
284
|
+
sequence: string;
|
|
285
|
+
kind: string;
|
|
286
|
+
baseRevision: number;
|
|
287
|
+
resultRevision: number | null;
|
|
288
|
+
changedFields: string[];
|
|
289
|
+
source: string;
|
|
290
|
+
clientRequestId: string;
|
|
291
|
+
conflict: any | null;
|
|
292
|
+
createdByUserId: string;
|
|
293
|
+
createdAt: Date;
|
|
294
|
+
}
|
|
295
|
+
export declare function listWorkflowDraftEvents(client: Client, args: ListWorkflowDraftEventsArgs): Promise<ListWorkflowDraftEventsRow[]>;
|
|
240
296
|
export declare const insertWorkflowDefinitionVersionQuery = "-- name: InsertWorkflowDefinitionVersion :one\nINSERT INTO weave.workflow_definition_versions (\n id,\n definition_id,\n organization_id,\n version,\n source_draft_revision,\n name,\n description,\n graph,\n input_schema,\n output_schema,\n metadata,\n published_by_user_id\n) VALUES (\n $1,\n $2,\n $3,\n $4,\n $5,\n $6,\n $7,\n $8,\n $9,\n $10,\n $11,\n $12\n)\nRETURNING id, definition_id, organization_id, version, source_draft_revision, name, description, graph, input_schema, output_schema, metadata, published_by_user_id, published_at";
|
|
241
297
|
export interface InsertWorkflowDefinitionVersionArgs {
|
|
242
298
|
id: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.listToolCallEventsQuery = exports.insertToolCallEventQuery = exports.listWorkflowRunEventsQuery = exports.insertWorkflowRunEventQuery = exports.updateWorkflowStepRunStatusQuery = exports.listWorkflowStepRunsQuery = exports.createWorkflowStepRunQuery = exports.updateWorkflowRunStatusQuery = exports.listWorkflowRunsQuery = exports.getWorkflowRunQuery = exports.createWorkflowRunQuery = exports.listWorkflowDefinitionVersionsQuery = exports.getWorkflowDefinitionVersionByIDQuery = exports.getWorkflowDefinitionVersionByNumberQuery = exports.setWorkflowDefinitionLatestVersionQuery = exports.insertWorkflowDefinitionVersionQuery = exports.insertWorkflowDraftPatchQuery = exports.updateWorkflowDraftQuery = exports.updateWorkflowDefinitionStatusQuery = exports.updateWorkflowDefinitionDraftMetadataQuery = exports.listWorkflowDefinitionsQuery = exports.getWorkflowDefinitionDraftQuery = exports.getWorkflowDefinitionBySlugQuery = exports.getWorkflowDefinitionByIDQuery = exports.createWorkflowDefinitionDraftQuery = exports.createWorkflowDefinitionQuery = void 0;
|
|
3
|
+
exports.listToolCallEventsQuery = exports.insertToolCallEventQuery = exports.listWorkflowRunEventsQuery = exports.insertWorkflowRunEventQuery = exports.updateWorkflowStepRunStatusQuery = exports.listWorkflowStepRunsQuery = exports.createWorkflowStepRunQuery = exports.updateWorkflowRunStatusQuery = exports.listWorkflowRunsQuery = exports.getWorkflowRunQuery = exports.createWorkflowRunQuery = exports.listWorkflowDefinitionVersionsQuery = exports.getWorkflowDefinitionVersionByIDQuery = exports.getWorkflowDefinitionVersionByNumberQuery = exports.setWorkflowDefinitionLatestVersionQuery = exports.insertWorkflowDefinitionVersionQuery = exports.listWorkflowDraftEventsQuery = exports.insertWorkflowDraftEventQuery = exports.insertWorkflowDraftPatchQuery = exports.updateWorkflowDraftQuery = exports.updateWorkflowDefinitionStatusQuery = exports.updateWorkflowDefinitionDraftMetadataQuery = exports.listWorkflowDefinitionsQuery = exports.getWorkflowDefinitionDraftQuery = exports.getWorkflowDefinitionBySlugQuery = exports.getWorkflowDefinitionByIDQuery = exports.createWorkflowDefinitionDraftQuery = exports.createWorkflowDefinitionQuery = void 0;
|
|
4
4
|
exports.createWorkflowDefinition = createWorkflowDefinition;
|
|
5
5
|
exports.createWorkflowDefinitionDraft = createWorkflowDefinitionDraft;
|
|
6
6
|
exports.getWorkflowDefinitionByID = getWorkflowDefinitionByID;
|
|
@@ -11,6 +11,8 @@ exports.updateWorkflowDefinitionDraftMetadata = updateWorkflowDefinitionDraftMet
|
|
|
11
11
|
exports.updateWorkflowDefinitionStatus = updateWorkflowDefinitionStatus;
|
|
12
12
|
exports.updateWorkflowDraft = updateWorkflowDraft;
|
|
13
13
|
exports.insertWorkflowDraftPatch = insertWorkflowDraftPatch;
|
|
14
|
+
exports.insertWorkflowDraftEvent = insertWorkflowDraftEvent;
|
|
15
|
+
exports.listWorkflowDraftEvents = listWorkflowDraftEvents;
|
|
14
16
|
exports.insertWorkflowDefinitionVersion = insertWorkflowDefinitionVersion;
|
|
15
17
|
exports.setWorkflowDefinitionLatestVersion = setWorkflowDefinitionLatestVersion;
|
|
16
18
|
exports.getWorkflowDefinitionVersionByNumber = getWorkflowDefinitionVersionByNumber;
|
|
@@ -397,6 +399,103 @@ async function insertWorkflowDraftPatch(client, args) {
|
|
|
397
399
|
createdAt: row[6]
|
|
398
400
|
};
|
|
399
401
|
}
|
|
402
|
+
exports.insertWorkflowDraftEventQuery = `-- name: InsertWorkflowDraftEvent :one
|
|
403
|
+
INSERT INTO weave.workflow_definition_draft_events (
|
|
404
|
+
id,
|
|
405
|
+
definition_id,
|
|
406
|
+
organization_id,
|
|
407
|
+
draft_id,
|
|
408
|
+
sequence,
|
|
409
|
+
kind,
|
|
410
|
+
base_revision,
|
|
411
|
+
result_revision,
|
|
412
|
+
changed_fields,
|
|
413
|
+
source,
|
|
414
|
+
client_request_id,
|
|
415
|
+
conflict,
|
|
416
|
+
created_by_user_id
|
|
417
|
+
) VALUES (
|
|
418
|
+
$1,
|
|
419
|
+
$2,
|
|
420
|
+
$3,
|
|
421
|
+
$4,
|
|
422
|
+
COALESCE(
|
|
423
|
+
(
|
|
424
|
+
SELECT max(sequence) + 1
|
|
425
|
+
FROM weave.workflow_definition_draft_events
|
|
426
|
+
WHERE definition_id = $2
|
|
427
|
+
),
|
|
428
|
+
1
|
|
429
|
+
),
|
|
430
|
+
$5,
|
|
431
|
+
$6,
|
|
432
|
+
$7::integer,
|
|
433
|
+
$8::text[],
|
|
434
|
+
$9,
|
|
435
|
+
$10,
|
|
436
|
+
$11::jsonb,
|
|
437
|
+
$12
|
|
438
|
+
)
|
|
439
|
+
RETURNING id, organization_id, definition_id, draft_id, sequence, kind, base_revision, result_revision, changed_fields, source, client_request_id, conflict, created_by_user_id, created_at`;
|
|
440
|
+
async function insertWorkflowDraftEvent(client, args) {
|
|
441
|
+
const result = await client.query({
|
|
442
|
+
text: exports.insertWorkflowDraftEventQuery,
|
|
443
|
+
values: [args.id, args.definitionId, args.organizationId, args.draftId, args.kind, args.baseRevision, args.resultRevision, args.changedFields, args.source, args.clientRequestId, args.conflict, args.createdByUserId],
|
|
444
|
+
rowMode: "array"
|
|
445
|
+
});
|
|
446
|
+
if (result.rows.length !== 1) {
|
|
447
|
+
return null;
|
|
448
|
+
}
|
|
449
|
+
const row = result.rows[0];
|
|
450
|
+
return {
|
|
451
|
+
id: row[0],
|
|
452
|
+
organizationId: row[1],
|
|
453
|
+
definitionId: row[2],
|
|
454
|
+
draftId: row[3],
|
|
455
|
+
sequence: row[4],
|
|
456
|
+
kind: row[5],
|
|
457
|
+
baseRevision: row[6],
|
|
458
|
+
resultRevision: row[7],
|
|
459
|
+
changedFields: row[8],
|
|
460
|
+
source: row[9],
|
|
461
|
+
clientRequestId: row[10],
|
|
462
|
+
conflict: row[11],
|
|
463
|
+
createdByUserId: row[12],
|
|
464
|
+
createdAt: row[13]
|
|
465
|
+
};
|
|
466
|
+
}
|
|
467
|
+
exports.listWorkflowDraftEventsQuery = `-- name: ListWorkflowDraftEvents :many
|
|
468
|
+
SELECT id, organization_id, definition_id, draft_id, sequence, kind, base_revision, result_revision, changed_fields, source, client_request_id, conflict, created_by_user_id, created_at FROM weave.workflow_definition_draft_events
|
|
469
|
+
WHERE organization_id = $1
|
|
470
|
+
AND definition_id = $2
|
|
471
|
+
AND sequence > $3
|
|
472
|
+
ORDER BY sequence
|
|
473
|
+
LIMIT $4`;
|
|
474
|
+
async function listWorkflowDraftEvents(client, args) {
|
|
475
|
+
const result = await client.query({
|
|
476
|
+
text: exports.listWorkflowDraftEventsQuery,
|
|
477
|
+
values: [args.organizationId, args.definitionId, args.afterSequence, args.pageSize],
|
|
478
|
+
rowMode: "array"
|
|
479
|
+
});
|
|
480
|
+
return result.rows.map(row => {
|
|
481
|
+
return {
|
|
482
|
+
id: row[0],
|
|
483
|
+
organizationId: row[1],
|
|
484
|
+
definitionId: row[2],
|
|
485
|
+
draftId: row[3],
|
|
486
|
+
sequence: row[4],
|
|
487
|
+
kind: row[5],
|
|
488
|
+
baseRevision: row[6],
|
|
489
|
+
resultRevision: row[7],
|
|
490
|
+
changedFields: row[8],
|
|
491
|
+
source: row[9],
|
|
492
|
+
clientRequestId: row[10],
|
|
493
|
+
conflict: row[11],
|
|
494
|
+
createdByUserId: row[12],
|
|
495
|
+
createdAt: row[13]
|
|
496
|
+
};
|
|
497
|
+
});
|
|
498
|
+
}
|
|
400
499
|
exports.insertWorkflowDefinitionVersionQuery = `-- name: InsertWorkflowDefinitionVersion :one
|
|
401
500
|
INSERT INTO weave.workflow_definition_versions (
|
|
402
501
|
id,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "weave-typescript",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.48.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/node": "^25.2.0",
|
|
33
33
|
"@types/pg": "^8.15.5",
|
|
34
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
34
|
+
"@typescript/native-preview": "7.0.0-dev.20260523.1"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"test": "node tools/sqlcgen.test.js",
|