Skip to content

Commit 43c1580

Browse files
chore: update schemas and regenerate all SDK clients
Auto-generated by schema-propagation workflow. Source: constructive-db@4abce2469e3
1 parent 278757d commit 43c1580

381 files changed

Lines changed: 51714 additions & 6353 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-admin/references/org-is-manager-of.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ Execute the orgIsManagerOf query
77
## Usage
88

99
```bash
10-
csdk org-is-manager-of --pEntityId <UUID> --pManagerId <UUID> --pMaxDepth <Int> --pUserId <UUID>
10+
csdk org-is-manager-of --managerId <UUID> --maxDepth <Int> --targetEntityId <UUID> --userId <UUID>
1111
```
1212

1313
## Examples
1414

1515
### Run orgIsManagerOf
1616

1717
```bash
18-
csdk org-is-manager-of --pEntityId <UUID> --pManagerId <UUID> --pMaxDepth <Int> --pUserId <UUID>
18+
csdk org-is-manager-of --managerId <UUID> --maxDepth <Int> --targetEntityId <UUID> --userId <UUID>
1919
```

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
name: cli-api
3-
description: CLI tool (csdk) for the api API — provides CRUD commands for 47 tables and 9 custom operations
3+
description: CLI tool (csdk) for the api API — provides CRUD commands for 49 tables and 9 custom operations
44
---
55

66
# cli-api
77

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

10-
CLI tool (csdk) for the api API — provides CRUD commands for 47 tables and 9 custom operations
10+
CLI tool (csdk) for the api API — provides CRUD commands for 49 tables and 9 custom operations
1111

1212
## Usage
1313

@@ -70,6 +70,8 @@ See the `references/` directory for detailed per-entity API documentation:
7070
- [database-transfer](references/database-transfer.md)
7171
- [default-privilege](references/default-privilege.md)
7272
- [domain](references/domain.md)
73+
- [domain-event](references/domain-event.md)
74+
- [domain-verification](references/domain-verification.md)
7375
- [embedding-chunk](references/embedding-chunk.md)
7476
- [enum](references/enum.md)
7577
- [field](references/field.md)
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# domainEvent
2+
3+
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
4+
5+
CRUD operations for DomainEvent records via csdk CLI
6+
7+
## Usage
8+
9+
```bash
10+
csdk domain-event list
11+
csdk domain-event list --where.<field>.<op> <value> --orderBy <values>
12+
csdk domain-event list --limit 10 --after <cursor>
13+
csdk domain-event find-first --where.<field>.<op> <value>
14+
csdk domain-event get --id <UUID>
15+
csdk domain-event create --eventType <String> --managedDomainId <UUID> --ownerId <UUID> [--actorId <UUID>] [--domainVerificationId <UUID>] [--message <String>] [--metadata <JSON>]
16+
csdk domain-event update --id <UUID> [--actorId <UUID>] [--domainVerificationId <UUID>] [--eventType <String>] [--managedDomainId <UUID>] [--message <String>] [--metadata <JSON>] [--ownerId <UUID>]
17+
csdk domain-event delete --id <UUID>
18+
```
19+
20+
## Examples
21+
22+
### List domainEvent records
23+
24+
```bash
25+
csdk domain-event list
26+
```
27+
28+
### List domainEvent records with pagination
29+
30+
```bash
31+
csdk domain-event list --limit 10 --offset 0
32+
```
33+
34+
### List domainEvent records with cursor pagination
35+
36+
```bash
37+
csdk domain-event list --limit 10 --after <cursor>
38+
```
39+
40+
### Find first matching domainEvent
41+
42+
```bash
43+
csdk domain-event find-first --where.id.equalTo <value>
44+
```
45+
46+
### List domainEvent records with field selection
47+
48+
```bash
49+
csdk domain-event list --select id,id
50+
```
51+
52+
### List domainEvent records with filtering and ordering
53+
54+
```bash
55+
csdk domain-event list --where.id.equalTo <value> --orderBy ID_ASC
56+
```
57+
58+
### Create a domainEvent
59+
60+
```bash
61+
csdk domain-event create --eventType <String> --managedDomainId <UUID> --ownerId <UUID> [--actorId <UUID>] [--domainVerificationId <UUID>] [--message <String>] [--metadata <JSON>]
62+
```
63+
64+
### Get a domainEvent by id
65+
66+
```bash
67+
csdk domain-event get --id <value>
68+
```
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# domainVerification
2+
3+
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
4+
5+
CRUD operations for DomainVerification records via csdk CLI
6+
7+
## Usage
8+
9+
```bash
10+
csdk domain-verification list
11+
csdk domain-verification list --where.<field>.<op> <value> --orderBy <values>
12+
csdk domain-verification list --limit 10 --after <cursor>
13+
csdk domain-verification find-first --where.<field>.<op> <value>
14+
csdk domain-verification get --id <UUID>
15+
csdk domain-verification create --managedDomainId <UUID> --ownerId <UUID> [--attempts <Int>] [--error <String>] [--expiresAt <Datetime>] [--lastCheckedAt <Datetime>] [--method <String>] [--recordName <String>] [--recordType <String>] [--recordValue <String>] [--status <String>] [--verifiedAt <Datetime>]
16+
csdk domain-verification update --id <UUID> [--attempts <Int>] [--error <String>] [--expiresAt <Datetime>] [--lastCheckedAt <Datetime>] [--managedDomainId <UUID>] [--method <String>] [--ownerId <UUID>] [--recordName <String>] [--recordType <String>] [--recordValue <String>] [--status <String>] [--verifiedAt <Datetime>]
17+
csdk domain-verification delete --id <UUID>
18+
```
19+
20+
## Examples
21+
22+
### List domainVerification records
23+
24+
```bash
25+
csdk domain-verification list
26+
```
27+
28+
### List domainVerification records with pagination
29+
30+
```bash
31+
csdk domain-verification list --limit 10 --offset 0
32+
```
33+
34+
### List domainVerification records with cursor pagination
35+
36+
```bash
37+
csdk domain-verification list --limit 10 --after <cursor>
38+
```
39+
40+
### Find first matching domainVerification
41+
42+
```bash
43+
csdk domain-verification find-first --where.id.equalTo <value>
44+
```
45+
46+
### List domainVerification records with field selection
47+
48+
```bash
49+
csdk domain-verification list --select id,id
50+
```
51+
52+
### List domainVerification records with filtering and ordering
53+
54+
```bash
55+
csdk domain-verification list --where.id.equalTo <value> --orderBy ID_ASC
56+
```
57+
58+
### Create a domainVerification
59+
60+
```bash
61+
csdk domain-verification create --managedDomainId <UUID> --ownerId <UUID> [--attempts <Int>] [--error <String>] [--expiresAt <Datetime>] [--lastCheckedAt <Datetime>] [--method <String>] [--recordName <String>] [--recordType <String>] [--recordValue <String>] [--status <String>] [--verifiedAt <Datetime>]
62+
```
63+
64+
### Get a domainVerification by id
65+
66+
```bash
67+
csdk domain-verification get --id <value>
68+
```

.agents/skills/cli-api/references/managed-domain.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ csdk managed-domain list --where.<field>.<op> <value> --orderBy <values>
1212
csdk managed-domain list --limit 10 --after <cursor>
1313
csdk managed-domain find-first --where.<field>.<op> <value>
1414
csdk managed-domain get --id <UUID>
15-
csdk managed-domain create --databaseId <UUID> --domain <Hostname> [--annotations <JSON>] [--isWildcard <Boolean>] [--tlsReadyAt <Datetime>] [--tlsStatus <String>] [--verificationStatus <String>] [--verifiedAt <Datetime>]
16-
csdk managed-domain update --id <UUID> [--annotations <JSON>] [--databaseId <UUID>] [--domain <Hostname>] [--isWildcard <Boolean>] [--tlsReadyAt <Datetime>] [--tlsStatus <String>] [--verificationStatus <String>] [--verifiedAt <Datetime>]
15+
csdk managed-domain create --databaseId <UUID> --domain <Hostname> [--allowPublicUsage <Boolean>] [--annotations <JSON>] [--certStatus <String>] [--isWildcard <Boolean>] [--tlsReadyAt <Datetime>] [--tlsStatus <String>] [--verificationStatus <String>] [--verifiedAt <Datetime>]
16+
csdk managed-domain update --id <UUID> [--allowPublicUsage <Boolean>] [--annotations <JSON>] [--certStatus <String>] [--databaseId <UUID>] [--domain <Hostname>] [--isWildcard <Boolean>] [--tlsReadyAt <Datetime>] [--tlsStatus <String>] [--verificationStatus <String>] [--verifiedAt <Datetime>]
1717
csdk managed-domain delete --id <UUID>
1818
```
1919

@@ -58,7 +58,7 @@ csdk managed-domain list --where.id.equalTo <value> --orderBy ID_ASC
5858
### Create a managedDomain
5959

6060
```bash
61-
csdk managed-domain create --databaseId <UUID> --domain <Hostname> [--annotations <JSON>] [--isWildcard <Boolean>] [--tlsReadyAt <Datetime>] [--tlsStatus <String>] [--verificationStatus <String>] [--verifiedAt <Datetime>]
61+
csdk managed-domain create --databaseId <UUID> --domain <Hostname> [--allowPublicUsage <Boolean>] [--annotations <JSON>] [--certStatus <String>] [--isWildcard <Boolean>] [--tlsReadyAt <Datetime>] [--tlsStatus <String>] [--verificationStatus <String>] [--verifiedAt <Datetime>]
6262
```
6363

6464
### Get a managedDomain by id

.agents/skills/cli-api/references/request-database.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Requests a database and returns a ticket (database_provision_module row) to poll.
66

7-
Pass exactly one of preset_slug or modules. The pool, presets, and owner bootstrap are private implementation details: a warm pool hit fulfills the ticket immediately (fulfilled_at set, deferred owner bootstrap), otherwise the database is cold-provisioned with exactly the requested modules. Poll the ticket until status = 'completed'; it then carries database_id and fulfilled_at.
7+
Pass exactly one of preset_slug or modules. The pool, presets, and owner bootstrap are private implementation details: a warm pool hit fulfills the ticket immediately (fulfilled_at set, deferred owner bootstrap), otherwise the database is cold-provisioned asynchronously with exactly the requested modules. Poll the ticket until status = 'completed'; it then carries database_id and fulfilled_at.
88

99
Example usage:
1010
SELECT * FROM metaschema_public.request_database('my_app', 'example.com', preset_slug := 'full');

.agents/skills/cli-api/references/resolve-http-route.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ Execute the resolveHttpRoute query
77
## Usage
88

99
```bash
10-
csdk resolve-http-route --pHost <String> --pMethod <String> --pPath <String>
10+
csdk resolve-http-route --requestHost <String> --requestMethod <String> --requestPath <String>
1111
```
1212

1313
## Examples
1414

1515
### Run resolveHttpRoute
1616

1717
```bash
18-
csdk resolve-http-route --pHost <String> --pMethod <String> --pPath <String>
18+
csdk resolve-http-route --requestHost <String> --requestMethod <String> --requestPath <String>
1919
```

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

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
name: cli-compute
3-
description: CLI tool (csdk) for the compute API — provides CRUD commands for 65 tables and 29 custom operations
3+
description: CLI tool (csdk) for the compute API — provides CRUD commands for 67 tables and 29 custom operations
44
---
55

66
# cli-compute
77

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

10-
CLI tool (csdk) for the compute API — provides CRUD commands for 65 tables and 29 custom operations
10+
CLI tool (csdk) for the compute API — provides CRUD commands for 67 tables and 29 custom operations
1111

1212
## Usage
1313

@@ -57,7 +57,6 @@ See the `references/` directory for detailed per-entity API documentation:
5757
- [auth](references/auth.md)
5858
- [config](references/config.md)
5959
- [db-preset](references/db-preset.md)
60-
- [declared-capacity](references/declared-capacity.md)
6160
- [function-api-binding](references/function-api-binding.md)
6261
- [function-definition](references/function-definition.md)
6362
- [function-deployment](references/function-deployment.md)
@@ -71,6 +70,7 @@ See the `references/` directory for detailed per-entity API documentation:
7170
- [function-graph-object](references/function-graph-object.md)
7271
- [function-graph-ref](references/function-graph-ref.md)
7372
- [function-graph-store](references/function-graph-store.md)
73+
- [function-invocation-attempt](references/function-invocation-attempt.md)
7474
- [function-invocation](references/function-invocation.md)
7575
- [get-all-tree-nodes-record](references/get-all-tree-nodes-record.md)
7676
- [infra-commit](references/infra-commit.md)
@@ -81,12 +81,12 @@ See the `references/` directory for detailed per-entity API documentation:
8181
- [integration-provider](references/integration-provider.md)
8282
- [namespace](references/namespace.md)
8383
- [namespace-event](references/namespace-event.md)
84-
- [platform-declared-capacity](references/platform-declared-capacity.md)
8584
- [platform-function-api-binding](references/platform-function-api-binding.md)
8685
- [platform-function-definition](references/platform-function-definition.md)
8786
- [platform-function-deployment](references/platform-function-deployment.md)
8887
- [platform-function-deployment-event](references/platform-function-deployment-event.md)
8988
- [platform-function-execution-log](references/platform-function-execution-log.md)
89+
- [platform-function-invocation-attempt](references/platform-function-invocation-attempt.md)
9090
- [platform-function-invocation](references/platform-function-invocation.md)
9191
- [platform-infra-commit](references/platform-infra-commit.md)
9292
- [platform-infra-get-all-tree-nodes-record](references/platform-infra-get-all-tree-nodes-record.md)
@@ -96,26 +96,28 @@ See the `references/` directory for detailed per-entity API documentation:
9696
- [platform-namespace](references/platform-namespace.md)
9797
- [platform-namespace-event](references/platform-namespace-event.md)
9898
- [platform-resource](references/platform-resource.md)
99+
- [platform-resource-declared-capacity](references/platform-resource-declared-capacity.md)
99100
- [platform-resource-definition](references/platform-resource-definition.md)
100101
- [platform-resource-event](references/platform-resource-event.md)
101102
- [platform-resource-installation](references/platform-resource-installation.md)
102103
- [platform-resource-status-check](references/platform-resource-status-check.md)
103104
- [platform-resource-usage-log](references/platform-resource-usage-log.md)
104105
- [platform-resource-usage-summary](references/platform-resource-usage-summary.md)
105-
- [platform-resource-utilization-daily](references/platform-resource-utilization-daily.md)
106+
- [platform-resource-utilization](references/platform-resource-utilization.md)
106107
- [platform-resources-health](references/platform-resources-health.md)
107108
- [platform-resources-requirements-state](references/platform-resources-requirements-state.md)
108109
- [platform-resources-resolved-requirement](references/platform-resources-resolved-requirement.md)
109110
- [platform-webhook-endpoint](references/platform-webhook-endpoint.md)
110111
- [platform-webhook-event](references/platform-webhook-event.md)
111112
- [resource](references/resource.md)
113+
- [resource-declared-capacity](references/resource-declared-capacity.md)
112114
- [resource-definition](references/resource-definition.md)
113115
- [resource-event](references/resource-event.md)
114116
- [resource-installation](references/resource-installation.md)
115117
- [resource-status-check](references/resource-status-check.md)
116118
- [resource-usage-log](references/resource-usage-log.md)
117119
- [resource-usage-summary](references/resource-usage-summary.md)
118-
- [resource-utilization-daily](references/resource-utilization-daily.md)
120+
- [resource-utilization](references/resource-utilization.md)
119121
- [resources-health](references/resources-health.md)
120122
- [resources-requirements-state](references/resources-requirements-state.md)
121123
- [resources-resolved-requirement](references/resources-resolved-requirement.md)

.agents/skills/cli-compute/references/function-definition.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ csdk function-definition list --where.<field>.<op> <value> --orderBy <values>
1212
csdk function-definition list --limit 10 --after <cursor>
1313
csdk function-definition find-first --where.<field>.<op> <value>
1414
csdk function-definition get --id <UUID>
15-
csdk function-definition create --category <String> --databaseId <UUID> --name <String> --taskIdentifier <String> [--accessChannels <String>] [--concurrency <Int>] [--description <String>] [--fnCategory <String>] [--functionColumns <JSON>] [--graphId <UUID>] [--icon <String>] [--image <String>] [--inputs <JSON>] [--integrations <String>] [--isPublished <Boolean>] [--maxAttempts <Int>] [--moduleTable <String>] [--outputs <JSON>] [--payloadArgs <JSON>] [--priority <Int>] [--props <JSON>] [--protected <Boolean>] [--publishedAt <Datetime>] [--queueName <String>] [--requiredBuckets <String>] [--requiredConfigs <ResourceRequirement>] [--requiredModels <String>] [--requiredSecrets <ResourceRequirement>] [--resources <JSON>] [--runtime <String>] [--scaleMax <Int>] [--scaleMin <Int>] [--targetFunction <String>] [--targetSchema <String>] [--timeoutSeconds <Int>] [--volatile <Boolean>]
16-
csdk function-definition update --id <UUID> [--accessChannels <String>] [--category <String>] [--concurrency <Int>] [--databaseId <UUID>] [--description <String>] [--fnCategory <String>] [--functionColumns <JSON>] [--graphId <UUID>] [--icon <String>] [--image <String>] [--inputs <JSON>] [--integrations <String>] [--isPublished <Boolean>] [--maxAttempts <Int>] [--moduleTable <String>] [--name <String>] [--outputs <JSON>] [--payloadArgs <JSON>] [--priority <Int>] [--props <JSON>] [--protected <Boolean>] [--publishedAt <Datetime>] [--queueName <String>] [--requiredBuckets <String>] [--requiredConfigs <ResourceRequirement>] [--requiredModels <String>] [--requiredSecrets <ResourceRequirement>] [--resources <JSON>] [--runtime <String>] [--scaleMax <Int>] [--scaleMin <Int>] [--targetFunction <String>] [--targetSchema <String>] [--taskIdentifier <String>] [--timeoutSeconds <Int>] [--volatile <Boolean>]
15+
csdk function-definition create --category <String> --databaseId <UUID> --name <String> [--accessChannels <String>] [--concurrency <Int>] [--description <String>] [--fnCategory <String>] [--functionColumns <JSON>] [--graphId <UUID>] [--icon <String>] [--image <String>] [--inputs <JSON>] [--integrations <String>] [--isPublished <Boolean>] [--maxAttempts <Int>] [--moduleTable <String>] [--outputs <JSON>] [--payloadArgs <JSON>] [--priority <Int>] [--props <JSON>] [--protected <Boolean>] [--publishedAt <Datetime>] [--queueName <String>] [--requiredBuckets <String>] [--requiredConfigs <ResourceRequirement>] [--requiredModels <String>] [--requiredSecrets <ResourceRequirement>] [--resources <JSON>] [--runtime <String>] [--scaleMax <Int>] [--scaleMin <Int>] [--targetFunction <String>] [--targetSchema <String>] [--timeoutSeconds <Int>] [--volatile <Boolean>]
16+
csdk function-definition update --id <UUID> [--accessChannels <String>] [--category <String>] [--concurrency <Int>] [--databaseId <UUID>] [--description <String>] [--fnCategory <String>] [--functionColumns <JSON>] [--graphId <UUID>] [--icon <String>] [--image <String>] [--inputs <JSON>] [--integrations <String>] [--isPublished <Boolean>] [--maxAttempts <Int>] [--moduleTable <String>] [--name <String>] [--outputs <JSON>] [--payloadArgs <JSON>] [--priority <Int>] [--props <JSON>] [--protected <Boolean>] [--publishedAt <Datetime>] [--queueName <String>] [--requiredBuckets <String>] [--requiredConfigs <ResourceRequirement>] [--requiredModels <String>] [--requiredSecrets <ResourceRequirement>] [--resources <JSON>] [--runtime <String>] [--scaleMax <Int>] [--scaleMin <Int>] [--targetFunction <String>] [--targetSchema <String>] [--timeoutSeconds <Int>] [--volatile <Boolean>]
1717
csdk function-definition delete --id <UUID>
1818
```
1919

@@ -58,7 +58,7 @@ csdk function-definition list --where.id.equalTo <value> --orderBy ID_ASC
5858
### Create a functionDefinition
5959

6060
```bash
61-
csdk function-definition create --category <String> --databaseId <UUID> --name <String> --taskIdentifier <String> [--accessChannels <String>] [--concurrency <Int>] [--description <String>] [--fnCategory <String>] [--functionColumns <JSON>] [--graphId <UUID>] [--icon <String>] [--image <String>] [--inputs <JSON>] [--integrations <String>] [--isPublished <Boolean>] [--maxAttempts <Int>] [--moduleTable <String>] [--outputs <JSON>] [--payloadArgs <JSON>] [--priority <Int>] [--props <JSON>] [--protected <Boolean>] [--publishedAt <Datetime>] [--queueName <String>] [--requiredBuckets <String>] [--requiredConfigs <ResourceRequirement>] [--requiredModels <String>] [--requiredSecrets <ResourceRequirement>] [--resources <JSON>] [--runtime <String>] [--scaleMax <Int>] [--scaleMin <Int>] [--targetFunction <String>] [--targetSchema <String>] [--timeoutSeconds <Int>] [--volatile <Boolean>]
61+
csdk function-definition create --category <String> --databaseId <UUID> --name <String> [--accessChannels <String>] [--concurrency <Int>] [--description <String>] [--fnCategory <String>] [--functionColumns <JSON>] [--graphId <UUID>] [--icon <String>] [--image <String>] [--inputs <JSON>] [--integrations <String>] [--isPublished <Boolean>] [--maxAttempts <Int>] [--moduleTable <String>] [--outputs <JSON>] [--payloadArgs <JSON>] [--priority <Int>] [--props <JSON>] [--protected <Boolean>] [--publishedAt <Datetime>] [--queueName <String>] [--requiredBuckets <String>] [--requiredConfigs <ResourceRequirement>] [--requiredModels <String>] [--requiredSecrets <ResourceRequirement>] [--resources <JSON>] [--runtime <String>] [--scaleMax <Int>] [--scaleMin <Int>] [--targetFunction <String>] [--targetSchema <String>] [--timeoutSeconds <Int>] [--volatile <Boolean>]
6262
```
6363

6464
### Get a functionDefinition by id

0 commit comments

Comments
 (0)