Skip to content

Commit 8de5b9c

Browse files
authored
Merge pull request #306 from badaitech/feat/flow-initialize-enhance
BadAI API examples and readme
2 parents c7457fc + 405ccac commit 8de5b9c

28 files changed

Lines changed: 589 additions & 46 deletions

File tree

.changeset/pre.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"@badaitech/chaingraph-nodes": "0.5.4",
1212
"@badaitech/chaingraph-trpc": "0.5.4",
1313
"@badaitech/chaingraph-types": "0.5.4",
14-
"@badaitech/typescript-config": "0.5.4"
14+
"@badaitech/typescript-config": "0.5.4",
15+
"@badaitech/badai-api-example": "0.5.5-dev.19"
1516
},
1617
"changesets": [
1718
"afraid-needles-greet",
@@ -20,6 +21,7 @@
2021
"brave-webs-refuse",
2122
"chubby-numbers-enjoy",
2223
"cold-news-fold",
24+
"dirty-glasses-drop",
2325
"easy-candies-smile",
2426
"full-readers-itch",
2527
"hip-doors-notice",

apps/chaingraph-backend/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @badaitech/chaingraph-backend
22

3+
## 0.5.5-dev.20
4+
5+
### Patch Changes
6+
7+
- feat: rename auth-example to full-cycle-example, enhance GraphQL client integration, and add environment configuration
8+
39
## 0.5.5-dev.19
410

511
### Patch Changes

apps/chaingraph-backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@badaitech/chaingraph-backend",
33
"type": "module",
4-
"version": "0.5.5-dev.19",
4+
"version": "0.5.5-dev.20",
55
"private": false,
66
"description": "Backend server for the Chaingraph project",
77
"license": "BUSL-1.1",

apps/chaingraph-execution-api/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @badaitech/chaingraph-execution-api
22

3+
## 0.5.5-dev.20
4+
5+
### Patch Changes
6+
7+
- feat: rename auth-example to full-cycle-example, enhance GraphQL client integration, and add environment configuration
8+
- Updated dependencies
9+
- @badaitech/chaingraph-executor@0.5.5-dev.20
10+
- @badaitech/chaingraph-types@0.5.5-dev.20
11+
- @badaitech/chaingraph-trpc@0.5.5-dev.20
12+
313
## 0.5.5-dev.19
414

515
### Patch Changes

apps/chaingraph-execution-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@badaitech/chaingraph-execution-api",
33
"type": "module",
4-
"version": "0.5.5-dev.19",
4+
"version": "0.5.5-dev.20",
55
"private": false,
66
"description": "Chaingraph tRPC Server - Scalable API server for Chaingraph execution management",
77
"license": "BUSL-1.1",

apps/chaingraph-execution-worker/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @badaitech/chaingraph-execution-worker
22

3+
## 0.5.5-dev.20
4+
5+
### Patch Changes
6+
7+
- feat: rename auth-example to full-cycle-example, enhance GraphQL client integration, and add environment configuration
8+
- Updated dependencies
9+
- @badaitech/chaingraph-executor@0.5.5-dev.20
10+
- @badaitech/chaingraph-nodes@0.5.5-dev.20
11+
- @badaitech/chaingraph-types@0.5.5-dev.20
12+
- @badaitech/chaingraph-trpc@0.5.5-dev.20
13+
314
## 0.5.5-dev.19
415

516
### Patch Changes

apps/chaingraph-execution-worker/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@badaitech/chaingraph-execution-worker",
33
"type": "module",
4-
"version": "0.5.5-dev.19",
4+
"version": "0.5.5-dev.20",
55
"private": false,
66
"description": "Chaingraph Execution Worker Service which connected to Kafka and process the flow executions",
77
"license": "BUSL-1.1",

apps/chaingraph-frontend/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @badaitech/chaingraph-frontend
22

3+
## 0.5.5-dev.20
4+
5+
### Patch Changes
6+
7+
- feat: rename auth-example to full-cycle-example, enhance GraphQL client integration, and add environment configuration
8+
- Updated dependencies
9+
- @badaitech/chaingraph-executor@0.5.5-dev.20
10+
- @badaitech/chaingraph-nodes@0.5.5-dev.20
11+
- @badaitech/chaingraph-types@0.5.5-dev.20
12+
- @badaitech/chaingraph-trpc@0.5.5-dev.20
13+
- @badaitech/badai-api@0.5.5-dev.20
14+
315
## 0.5.5-dev.19
416

517
### Patch Changes

apps/chaingraph-frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@badaitech/chaingraph-frontend",
33
"type": "module",
4-
"version": "0.5.5-dev.19",
4+
"version": "0.5.5-dev.20",
55
"private": false,
66
"description": "Frontend application for the Chaingraph project",
77
"license": "BUSL-1.1",
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
REST_API_URL=https://api.badai.io/graphql
2+
WS_API_URL=wss://api.badai.io/graphql-ws
3+
AGENT_ID=260ec0fe-92ae-4693-92a5-097364196a06

0 commit comments

Comments
 (0)