Skip to content

Commit 7b3a560

Browse files
authored
Merge pull request #253 from objectstack-ai/copilot/update-actions-run-references
2 parents 73822a4 + b682731 commit 7b3a560

6 files changed

Lines changed: 10197 additions & 7806 deletions

File tree

packages/foundation/core/tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
"dist"
1111
],
1212
"references": [
13-
{ "path": "../types" }
13+
{ "path": "../types" },
14+
{ "path": "../plugin-validator" },
15+
{ "path": "../plugin-formula" }
1416
]
1517
}

packages/tools/cli/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"dependencies": {
3434
"@objectql/types": "workspace:*",
3535
"@objectql/core": "workspace:*",
36+
"@objectql/plugin-validator": "workspace:*",
3637
"@objectql/server": "workspace:*",
3738
"@objectql/driver-sql": "workspace:*",
3839
"@objectql/platform-node": "workspace:*",

packages/tools/cli/src/commands/ai.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ import * as yaml from 'js-yaml';
1212
import * as readline from 'readline';
1313
import chalk from 'chalk';
1414
import OpenAI from 'openai';
15-
import { Validator, ObjectQLAgent } from '@objectql/core';
15+
import { ObjectQLAgent } from '@objectql/core';
16+
import { Validator } from '@objectql/plugin-validator';
1617
import { glob } from 'fast-glob';
1718

1819
/**

packages/tools/cli/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"include": ["src"],
88
"references": [
99
{ "path": "../../foundation/types" },
10+
{ "path": "../../foundation/plugin-validator" },
1011
{ "path": "../../foundation/core" },
1112
{ "path": "../../runtime/server" },
1213
{ "path": "../../foundation/platform-node" },

0 commit comments

Comments
 (0)