opencroc 0.4.0 → 0.5.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.en.md +2 -2
- package/README.ja.md +2 -2
- package/README.md +2 -2
- package/README.zh-CN.md +2 -2
- package/dist/cli/index.js +1 -1
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +11 -1
- package/dist/index.js +254 -17
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.en.md
CHANGED
|
@@ -260,7 +260,7 @@ export default defineConfig({
|
|
|
260
260
|
|
|
261
261
|
| Layer | Supported | Planned |
|
|
262
262
|
|---|---|---|
|
|
263
|
-
| **ORM** | Sequelize, TypeORM, Prisma |
|
|
263
|
+
| **ORM** | Sequelize, TypeORM, Prisma, Drizzle | — |
|
|
264
264
|
| **Framework** | Express | NestJS, Fastify, Koa |
|
|
265
265
|
| **Test Runner** | Playwright | — |
|
|
266
266
|
| **LLM** | OpenAI, ZhiPu (GLM), Ollama (local) | Anthropic |
|
|
@@ -295,7 +295,7 @@ export default defineConfig({
|
|
|
295
295
|
- [x] HTML / JSON / Markdown report generation
|
|
296
296
|
- [x] NestJS controller parser
|
|
297
297
|
- [ ] Visual dashboard (opencroc.com)
|
|
298
|
-
- [
|
|
298
|
+
- [x] Drizzle ORM adapter
|
|
299
299
|
|
|
300
300
|
## Documentation
|
|
301
301
|
|
package/README.ja.md
CHANGED
|
@@ -260,7 +260,7 @@ export default defineConfig({
|
|
|
260
260
|
|
|
261
261
|
| レイヤー | 対応済み | 予定 |
|
|
262
262
|
|---|---|---|
|
|
263
|
-
| **ORM** | Sequelize, TypeORM, Prisma |
|
|
263
|
+
| **ORM** | Sequelize, TypeORM, Prisma, Drizzle | — |
|
|
264
264
|
| **Framework** | Express | NestJS, Fastify, Koa |
|
|
265
265
|
| **Test Runner** | Playwright | — |
|
|
266
266
|
| **LLM** | OpenAI, ZhiPu (GLM), Ollama (local) | Anthropic |
|
|
@@ -295,7 +295,7 @@ export default defineConfig({
|
|
|
295
295
|
- [x] HTML / JSON / Markdown report generation
|
|
296
296
|
- [x] NestJS controller parser
|
|
297
297
|
- [ ] Visual dashboard (opencroc.com)
|
|
298
|
-
- [
|
|
298
|
+
- [x] Drizzle ORM adapter
|
|
299
299
|
|
|
300
300
|
## ドキュメント
|
|
301
301
|
|
package/README.md
CHANGED
|
@@ -260,7 +260,7 @@ export default defineConfig({
|
|
|
260
260
|
|
|
261
261
|
| Layer | Supported | Planned |
|
|
262
262
|
|---|---|---|
|
|
263
|
-
| **ORM** | Sequelize, TypeORM, Prisma |
|
|
263
|
+
| **ORM** | Sequelize, TypeORM, Prisma, Drizzle | — |
|
|
264
264
|
| **Framework** | Express | NestJS, Fastify, Koa |
|
|
265
265
|
| **Test Runner** | Playwright | — |
|
|
266
266
|
| **LLM** | OpenAI, ZhiPu (GLM), Ollama (local) | Anthropic |
|
|
@@ -295,7 +295,7 @@ export default defineConfig({
|
|
|
295
295
|
- [x] HTML / JSON / Markdown report generation
|
|
296
296
|
- [x] NestJS controller parser
|
|
297
297
|
- [ ] Visual dashboard (opencroc.com)
|
|
298
|
-
- [
|
|
298
|
+
- [x] Drizzle ORM adapter
|
|
299
299
|
|
|
300
300
|
## Documentation
|
|
301
301
|
|
package/README.zh-CN.md
CHANGED
|
@@ -260,7 +260,7 @@ export default defineConfig({
|
|
|
260
260
|
|
|
261
261
|
| 层级 | 已支持 | 规划中 |
|
|
262
262
|
|---|---|---|
|
|
263
|
-
| **ORM** | Sequelize, TypeORM, Prisma |
|
|
263
|
+
| **ORM** | Sequelize, TypeORM, Prisma, Drizzle | — |
|
|
264
264
|
| **Framework** | Express | NestJS, Fastify, Koa |
|
|
265
265
|
| **Test Runner** | Playwright | — |
|
|
266
266
|
| **LLM** | OpenAI, ZhiPu (GLM), Ollama (local) | Anthropic |
|
|
@@ -295,7 +295,7 @@ export default defineConfig({
|
|
|
295
295
|
- [x] HTML / JSON / Markdown report generation
|
|
296
296
|
- [x] NestJS controller parser
|
|
297
297
|
- [ ] Visual dashboard (opencroc.com)
|
|
298
|
-
- [
|
|
298
|
+
- [x] Drizzle ORM adapter
|
|
299
299
|
|
|
300
300
|
## 文档
|
|
301
301
|
|
package/dist/cli/index.js
CHANGED
|
@@ -2131,7 +2131,7 @@ var init_report = __esm({
|
|
|
2131
2131
|
init_esm_shims();
|
|
2132
2132
|
import { Command } from "commander";
|
|
2133
2133
|
var program = new Command();
|
|
2134
|
-
program.name("opencroc").description("AI-native E2E testing framework").version("0.
|
|
2134
|
+
program.name("opencroc").description("AI-native E2E testing framework").version("0.5.0");
|
|
2135
2135
|
program.command("init").description("Initialize OpenCroc in the current project").option("-y, --yes", "Skip prompts and use defaults").action(async (opts) => {
|
|
2136
2136
|
const { initProject: initProject2 } = await Promise.resolve().then(() => (init_init(), init_exports));
|
|
2137
2137
|
await initProject2(opts);
|