Skip to content

Commit ff9335a

Browse files
committed
fix: bump codegen to 4.47.10, regenerate SDK/CLI/hooks with partition key fix
- Bumps @constructive-io/graphql-codegen from ^4.47.7 to ^4.47.10 - Regenerated ORM: update/delete methods now include databaseId in where type - Regenerated hooks: update/delete mutation hooks include databaseId in variables - Regenerated CLI: commands for new execution tables - FlowsPanel: removed rawMutation() workaround, uses proper ORM methods orm().platformFunctionGraphRef.update({ where: { id, databaseId }, data }) orm().platformFunctionGraphStore.delete({ where: { id }, select })
1 parent 4750fd8 commit ff9335a

168 files changed

Lines changed: 2955 additions & 530 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.agents/skills/cli-compute/SKILL.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
name: cli-compute
3-
description: CLI commands for the compute API target — 14 tables and 16 custom operations via constructive-functions
3+
description: CLI commands for the compute API target — 17 tables and 16 custom operations via constructive-functions
44
---
55

66
# cli-compute
77

88
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
99

10-
CLI commands for the compute API target — 14 tables and 16 custom operations via constructive-functions
10+
CLI commands for the compute API target — 17 tables and 16 custom operations via constructive-functions
1111

1212
## Usage
1313

@@ -44,14 +44,17 @@ See the `references/` directory for detailed per-entity API documentation:
4444
- [platform-function-graph-store](references/platform-function-graph-store.md)
4545
- [platform-function-graph-object](references/platform-function-graph-object.md)
4646
- [org-function-execution-log](references/org-function-execution-log.md)
47+
- [platform-function-graph-execution-output](references/platform-function-graph-execution-output.md)
4748
- [platform-function-graph-commit](references/platform-function-graph-commit.md)
4849
- [platform-secret-definition](references/platform-secret-definition.md)
4950
- [platform-function-execution-log](references/platform-function-execution-log.md)
51+
- [platform-function-graph-execution-node-state](references/platform-function-graph-execution-node-state.md)
5052
- [platform-function-graph](references/platform-function-graph.md)
5153
- [platform-compute-log](references/platform-compute-log.md)
5254
- [platform-usage-daily](references/platform-usage-daily.md)
5355
- [org-function-invocation](references/org-function-invocation.md)
5456
- [platform-function-invocation](references/platform-function-invocation.md)
57+
- [platform-function-graph-execution](references/platform-function-graph-execution.md)
5558
- [platform-function-definition](references/platform-function-definition.md)
5659
- [platform-read-function-graph](references/platform-read-function-graph.md)
5760
- [platform-validate-function-graph](references/platform-validate-function-graph.md)
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# platformFunctionGraphExecutionNodeState
2+
3+
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
4+
5+
CRUD operations for PlatformFunctionGraphExecutionNodeState records via constructive-functions CLI (compute target)
6+
7+
## Usage
8+
9+
```bash
10+
constructive-functions compute:platform-function-graph-execution-node-state list
11+
constructive-functions compute:platform-function-graph-execution-node-state list --where.<field>.<op> <value> --orderBy <values>
12+
constructive-functions compute:platform-function-graph-execution-node-state list --limit 10 --after <cursor>
13+
constructive-functions compute:platform-function-graph-execution-node-state find-first --where.<field>.<op> <value>
14+
constructive-functions compute:platform-function-graph-execution-node-state get --id <UUID>
15+
constructive-functions compute:platform-function-graph-execution-node-state create --databaseId <UUID> --executionId <UUID> --nodeName <String> [--completedAt <Datetime>] [--errorCode <String>] [--errorMessage <String>] [--outputId <UUID>] [--startedAt <Datetime>] [--status <String>] [--nodePath <String>]
16+
constructive-functions compute:platform-function-graph-execution-node-state update --id <UUID> [--completedAt <Datetime>] [--databaseId <UUID>] [--errorCode <String>] [--errorMessage <String>] [--executionId <UUID>] [--nodeName <String>] [--outputId <UUID>] [--startedAt <Datetime>] [--status <String>] [--nodePath <String>]
17+
constructive-functions compute:platform-function-graph-execution-node-state delete --id <UUID>
18+
```
19+
20+
## Examples
21+
22+
### List platformFunctionGraphExecutionNodeState records
23+
24+
```bash
25+
constructive-functions compute:platform-function-graph-execution-node-state list
26+
```
27+
28+
### List platformFunctionGraphExecutionNodeState records with pagination
29+
30+
```bash
31+
constructive-functions compute:platform-function-graph-execution-node-state list --limit 10 --offset 0
32+
```
33+
34+
### List platformFunctionGraphExecutionNodeState records with cursor pagination
35+
36+
```bash
37+
constructive-functions compute:platform-function-graph-execution-node-state list --limit 10 --after <cursor>
38+
```
39+
40+
### Find first matching platformFunctionGraphExecutionNodeState
41+
42+
```bash
43+
constructive-functions compute:platform-function-graph-execution-node-state find-first --where.id.equalTo <value>
44+
```
45+
46+
### List platformFunctionGraphExecutionNodeState records with filtering and ordering
47+
48+
```bash
49+
constructive-functions compute:platform-function-graph-execution-node-state list --where.id.equalTo <value> --orderBy ID_ASC
50+
```
51+
52+
### Create a platformFunctionGraphExecutionNodeState
53+
54+
```bash
55+
constructive-functions compute:platform-function-graph-execution-node-state create --databaseId <UUID> --executionId <UUID> --nodeName <String> [--completedAt <Datetime>] [--errorCode <String>] [--errorMessage <String>] [--outputId <UUID>] [--startedAt <Datetime>] [--status <String>] [--nodePath <String>]
56+
```
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# platformFunctionGraphExecutionOutput
2+
3+
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
4+
5+
CRUD operations for PlatformFunctionGraphExecutionOutput records via constructive-functions CLI (compute target)
6+
7+
## Usage
8+
9+
```bash
10+
constructive-functions compute:platform-function-graph-execution-output list
11+
constructive-functions compute:platform-function-graph-execution-output list --where.<field>.<op> <value> --orderBy <values>
12+
constructive-functions compute:platform-function-graph-execution-output list --limit 10 --after <cursor>
13+
constructive-functions compute:platform-function-graph-execution-output find-first --where.<field>.<op> <value>
14+
constructive-functions compute:platform-function-graph-execution-output get --id <UUID>
15+
constructive-functions compute:platform-function-graph-execution-output create --data <JSON> --databaseId <UUID> --hash <Base64EncodedBinary>
16+
constructive-functions compute:platform-function-graph-execution-output update --id <UUID> [--data <JSON>] [--databaseId <UUID>] [--hash <Base64EncodedBinary>]
17+
constructive-functions compute:platform-function-graph-execution-output delete --id <UUID>
18+
```
19+
20+
## Examples
21+
22+
### List platformFunctionGraphExecutionOutput records
23+
24+
```bash
25+
constructive-functions compute:platform-function-graph-execution-output list
26+
```
27+
28+
### List platformFunctionGraphExecutionOutput records with pagination
29+
30+
```bash
31+
constructive-functions compute:platform-function-graph-execution-output list --limit 10 --offset 0
32+
```
33+
34+
### List platformFunctionGraphExecutionOutput records with cursor pagination
35+
36+
```bash
37+
constructive-functions compute:platform-function-graph-execution-output list --limit 10 --after <cursor>
38+
```
39+
40+
### Find first matching platformFunctionGraphExecutionOutput
41+
42+
```bash
43+
constructive-functions compute:platform-function-graph-execution-output find-first --where.id.equalTo <value>
44+
```
45+
46+
### List platformFunctionGraphExecutionOutput records with filtering and ordering
47+
48+
```bash
49+
constructive-functions compute:platform-function-graph-execution-output list --where.id.equalTo <value> --orderBy ID_ASC
50+
```
51+
52+
### Create a platformFunctionGraphExecutionOutput
53+
54+
```bash
55+
constructive-functions compute:platform-function-graph-execution-output create --data <JSON> --databaseId <UUID> --hash <Base64EncodedBinary>
56+
```
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# platformFunctionGraphExecution
2+
3+
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
4+
5+
CRUD operations for PlatformFunctionGraphExecution records via constructive-functions CLI (compute target)
6+
7+
## Usage
8+
9+
```bash
10+
constructive-functions compute:platform-function-graph-execution list
11+
constructive-functions compute:platform-function-graph-execution list --where.<field>.<op> <value> --orderBy <values>
12+
constructive-functions compute:platform-function-graph-execution list --limit 10 --after <cursor>
13+
constructive-functions compute:platform-function-graph-execution find-first --where.<field>.<op> <value>
14+
constructive-functions compute:platform-function-graph-execution get --id <UUID>
15+
constructive-functions compute:platform-function-graph-execution create --databaseId <UUID> --graphId <UUID> --outputNode <String> [--startedAt <Datetime>] [--completedAt <Datetime>] [--currentWave <Int>] [--definitionsCommitId <UUID>] [--entityId <UUID>] [--errorCode <String>] [--errorMessage <String>] [--executionPlan <JSON>] [--inputPayload <JSON>] [--invocationId <UUID>] [--maxPendingJobs <Int>] [--maxTicks <Int>] [--nodeOutputs <JSON>] [--outputPayload <JSON>] [--outputPort <String>] [--parentExecutionId <UUID>] [--parentNodeName <String>] [--status <String>] [--tickCount <Int>] [--timeoutAt <Datetime>]
16+
constructive-functions compute:platform-function-graph-execution update --id <UUID> [--startedAt <Datetime>] [--completedAt <Datetime>] [--currentWave <Int>] [--databaseId <UUID>] [--definitionsCommitId <UUID>] [--entityId <UUID>] [--errorCode <String>] [--errorMessage <String>] [--executionPlan <JSON>] [--graphId <UUID>] [--inputPayload <JSON>] [--invocationId <UUID>] [--maxPendingJobs <Int>] [--maxTicks <Int>] [--nodeOutputs <JSON>] [--outputNode <String>] [--outputPayload <JSON>] [--outputPort <String>] [--parentExecutionId <UUID>] [--parentNodeName <String>] [--status <String>] [--tickCount <Int>] [--timeoutAt <Datetime>]
17+
constructive-functions compute:platform-function-graph-execution delete --id <UUID>
18+
```
19+
20+
## Examples
21+
22+
### List platformFunctionGraphExecution records
23+
24+
```bash
25+
constructive-functions compute:platform-function-graph-execution list
26+
```
27+
28+
### List platformFunctionGraphExecution records with pagination
29+
30+
```bash
31+
constructive-functions compute:platform-function-graph-execution list --limit 10 --offset 0
32+
```
33+
34+
### List platformFunctionGraphExecution records with cursor pagination
35+
36+
```bash
37+
constructive-functions compute:platform-function-graph-execution list --limit 10 --after <cursor>
38+
```
39+
40+
### Find first matching platformFunctionGraphExecution
41+
42+
```bash
43+
constructive-functions compute:platform-function-graph-execution find-first --where.id.equalTo <value>
44+
```
45+
46+
### List platformFunctionGraphExecution records with filtering and ordering
47+
48+
```bash
49+
constructive-functions compute:platform-function-graph-execution list --where.id.equalTo <value> --orderBy ID_ASC
50+
```
51+
52+
### Create a platformFunctionGraphExecution
53+
54+
```bash
55+
constructive-functions compute:platform-function-graph-execution create --databaseId <UUID> --graphId <UUID> --outputNode <String> [--startedAt <Datetime>] [--completedAt <Datetime>] [--currentWave <Int>] [--definitionsCommitId <UUID>] [--entityId <UUID>] [--errorCode <String>] [--errorMessage <String>] [--executionPlan <JSON>] [--inputPayload <JSON>] [--invocationId <UUID>] [--maxPendingJobs <Int>] [--maxTicks <Int>] [--nodeOutputs <JSON>] [--outputPayload <JSON>] [--outputPort <String>] [--parentExecutionId <UUID>] [--parentNodeName <String>] [--status <String>] [--tickCount <Int>] [--timeoutAt <Datetime>]
56+
```

0 commit comments

Comments
 (0)