Skip to content

Commit 54e8cb6

Browse files
committed
Merge latest main into SMS verification flow
2 parents 4218afb + 08b1292 commit 54e8cb6

1,042 files changed

Lines changed: 121014 additions & 28413 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-api/SKILL.md

Lines changed: 5 additions & 3 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 46 tables and 8 custom operations
3+
description: CLI tool (csdk) for the api API — provides CRUD commands for 47 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 46 tables and 8 custom operations
10+
CLI tool (csdk) for the api API — provides CRUD commands for 47 tables and 9 custom operations
1111

1212
## Usage
1313

@@ -76,8 +76,9 @@ See the `references/` directory for detailed per-entity API documentation:
7676
- [foreign-key-constraint](references/foreign-key-constraint.md)
7777
- [full-text-search](references/full-text-search.md)
7878
- [function](references/function.md)
79+
- [http-route](references/http-route.md)
7980
- [index](references/index.md)
80-
- [migrate-file](references/migrate-file.md)
81+
- [managed-domain](references/managed-domain.md)
8182
- [node-type-registry](references/node-type-registry.md)
8283
- [partition](references/partition.md)
8384
- [policy](references/policy.md)
@@ -103,6 +104,7 @@ See the `references/` directory for detailed per-entity API documentation:
103104
- [view-table](references/view-table.md)
104105
- [webauthn-setting](references/webauthn-setting.md)
105106
- [apply-registry-defaults](references/apply-registry-defaults.md)
107+
- [resolve-http-route](references/resolve-http-route.md)
106108
- [accept-database-transfer](references/accept-database-transfer.md)
107109
- [apply-rls](references/apply-rls.md)
108110
- [cancel-database-transfer](references/cancel-database-transfer.md)

.agents/skills/cli-api/references/ast-migration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ csdk ast-migration list --where.<field>.<op> <value> --orderBy <values>
1212
csdk ast-migration list --limit 10 --after <cursor>
1313
csdk ast-migration find-first --where.<field>.<op> <value>
1414
csdk ast-migration get --id <Int>
15-
csdk ast-migration create [--action <String>] [--actionId <UUID>] [--actorId <UUID>] [--databaseId <UUID>] [--deploy <JSON>] [--deploys <String>] [--name <String>] [--payload <JSON>] [--requires <String>] [--revert <JSON>] [--verify <JSON>]
16-
csdk ast-migration update --id <Int> [--action <String>] [--actionId <UUID>] [--actorId <UUID>] [--databaseId <UUID>] [--deploy <JSON>] [--deploys <String>] [--name <String>] [--payload <JSON>] [--requires <String>] [--revert <JSON>] [--verify <JSON>]
15+
csdk ast-migration create --actionId <UUID> --actionName <String> --actorId <UUID> --databaseId <UUID> --deploy <JSON> --deploys <String> --name <String> --payload <JSON> --requires <String> --revert <JSON> --verify <JSON>
16+
csdk ast-migration update --id <Int> [--actionId <UUID>] [--actionName <String>] [--actorId <UUID>] [--databaseId <UUID>] [--deploy <JSON>] [--deploys <String>] [--name <String>] [--payload <JSON>] [--requires <String>] [--revert <JSON>] [--verify <JSON>]
1717
csdk ast-migration delete --id <Int>
1818
```
1919

@@ -58,7 +58,7 @@ csdk ast-migration list --where.id.equalTo <value> --orderBy ID_ASC
5858
### Create a astMigration
5959

6060
```bash
61-
csdk ast-migration create [--action <String>] [--actionId <UUID>] [--actorId <UUID>] [--databaseId <UUID>] [--deploy <JSON>] [--deploys <String>] [--name <String>] [--payload <JSON>] [--requires <String>] [--revert <JSON>] [--verify <JSON>]
61+
csdk ast-migration create --actionId <UUID> --actionName <String> --actorId <UUID> --databaseId <UUID> --deploy <JSON> --deploys <String> --name <String> --payload <JSON> --requires <String> --revert <JSON> --verify <JSON>
6262
```
6363

6464
### Get a astMigration by id
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# httpRoute
2+
3+
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
4+
5+
CRUD operations for HttpRoute records via csdk CLI
6+
7+
## Usage
8+
9+
```bash
10+
csdk http-route list
11+
csdk http-route list --where.<field>.<op> <value> --orderBy <values>
12+
csdk http-route list --limit 10 --after <cursor>
13+
csdk http-route find-first --where.<field>.<op> <value>
14+
csdk http-route get --id <UUID>
15+
csdk http-route create --databaseId <UUID> --domainId <UUID> --targetId <UUID> --targetKind <String> [--createdBy <UUID>] [--isActive <Boolean>] [--method <String>] [--path <String>] [--priority <Int>] [--updatedBy <UUID>]
16+
csdk http-route update --id <UUID> [--createdBy <UUID>] [--databaseId <UUID>] [--domainId <UUID>] [--isActive <Boolean>] [--method <String>] [--path <String>] [--priority <Int>] [--targetId <UUID>] [--targetKind <String>] [--updatedBy <UUID>]
17+
csdk http-route delete --id <UUID>
18+
```
19+
20+
## Examples
21+
22+
### List httpRoute records
23+
24+
```bash
25+
csdk http-route list
26+
```
27+
28+
### List httpRoute records with pagination
29+
30+
```bash
31+
csdk http-route list --limit 10 --offset 0
32+
```
33+
34+
### List httpRoute records with cursor pagination
35+
36+
```bash
37+
csdk http-route list --limit 10 --after <cursor>
38+
```
39+
40+
### Find first matching httpRoute
41+
42+
```bash
43+
csdk http-route find-first --where.id.equalTo <value>
44+
```
45+
46+
### List httpRoute records with field selection
47+
48+
```bash
49+
csdk http-route list --select id,id
50+
```
51+
52+
### List httpRoute records with filtering and ordering
53+
54+
```bash
55+
csdk http-route list --where.id.equalTo <value> --orderBy ID_ASC
56+
```
57+
58+
### Create a httpRoute
59+
60+
```bash
61+
csdk http-route create --databaseId <UUID> --domainId <UUID> --targetId <UUID> --targetKind <String> [--createdBy <UUID>] [--isActive <Boolean>] [--method <String>] [--path <String>] [--priority <Int>] [--updatedBy <UUID>]
62+
```
63+
64+
### Get a httpRoute by id
65+
66+
```bash
67+
csdk http-route get --id <value>
68+
```
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# managedDomain
2+
3+
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
4+
5+
CRUD operations for ManagedDomain records via csdk CLI
6+
7+
## Usage
8+
9+
```bash
10+
csdk managed-domain list
11+
csdk managed-domain list --where.<field>.<op> <value> --orderBy <values>
12+
csdk managed-domain list --limit 10 --after <cursor>
13+
csdk managed-domain find-first --where.<field>.<op> <value>
14+
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>]
17+
csdk managed-domain delete --id <UUID>
18+
```
19+
20+
## Examples
21+
22+
### List managedDomain records
23+
24+
```bash
25+
csdk managed-domain list
26+
```
27+
28+
### List managedDomain records with pagination
29+
30+
```bash
31+
csdk managed-domain list --limit 10 --offset 0
32+
```
33+
34+
### List managedDomain records with cursor pagination
35+
36+
```bash
37+
csdk managed-domain list --limit 10 --after <cursor>
38+
```
39+
40+
### Find first matching managedDomain
41+
42+
```bash
43+
csdk managed-domain find-first --where.id.equalTo <value>
44+
```
45+
46+
### List managedDomain records with field selection
47+
48+
```bash
49+
csdk managed-domain list --select id,id
50+
```
51+
52+
### List managedDomain records with filtering and ordering
53+
54+
```bash
55+
csdk managed-domain list --where.id.equalTo <value> --orderBy ID_ASC
56+
```
57+
58+
### Create a managedDomain
59+
60+
```bash
61+
csdk managed-domain create --databaseId <UUID> --domain <Hostname> [--annotations <JSON>] [--isWildcard <Boolean>] [--tlsReadyAt <Datetime>] [--tlsStatus <String>] [--verificationStatus <String>] [--verifiedAt <Datetime>]
62+
```
63+
64+
### Get a managedDomain by id
65+
66+
```bash
67+
csdk managed-domain get --id <value>
68+
```
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# resolveHttpRoute
2+
3+
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
4+
5+
Execute the resolveHttpRoute query
6+
7+
## Usage
8+
9+
```bash
10+
csdk resolve-http-route --pHost <String> --pMethod <String> --pPath <String>
11+
```
12+
13+
## Examples
14+
15+
### Run resolveHttpRoute
16+
17+
```bash
18+
csdk resolve-http-route --pHost <String> --pMethod <String> --pPath <String>
19+
```

.agents/skills/cli-api/references/sql-action.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ csdk sql-action list --where.<field>.<op> <value> --orderBy <values>
1212
csdk sql-action list --limit 10 --after <cursor>
1313
csdk sql-action find-first --where.<field>.<op> <value>
1414
csdk sql-action get --id <Int>
15-
csdk sql-action create [--action <String>] [--actionId <UUID>] [--actorId <UUID>] [--content <String>] [--databaseId <UUID>] [--deploy <String>] [--deps <String>] [--name <String>] [--payload <JSON>] [--revert <String>] [--verify <String>]
16-
csdk sql-action update --id <Int> [--action <String>] [--actionId <UUID>] [--actorId <UUID>] [--content <String>] [--databaseId <UUID>] [--deploy <String>] [--deps <String>] [--name <String>] [--payload <JSON>] [--revert <String>] [--verify <String>]
15+
csdk sql-action create --actionId <UUID> --actionName <String> --actorId <UUID> --content <String> --databaseId <UUID> --deploy <String> --deps <String> --name <String> --payload <JSON> --revert <String> --verify <String>
16+
csdk sql-action update --id <Int> [--actionId <UUID>] [--actionName <String>] [--actorId <UUID>] [--content <String>] [--databaseId <UUID>] [--deploy <String>] [--deps <String>] [--name <String>] [--payload <JSON>] [--revert <String>] [--verify <String>]
1717
csdk sql-action delete --id <Int>
1818
```
1919

@@ -58,7 +58,7 @@ csdk sql-action list --where.id.equalTo <value> --orderBy ID_ASC
5858
### Create a sqlAction
5959

6060
```bash
61-
csdk sql-action create [--action <String>] [--actionId <UUID>] [--actorId <UUID>] [--content <String>] [--databaseId <UUID>] [--deploy <String>] [--deps <String>] [--name <String>] [--payload <JSON>] [--revert <String>] [--verify <String>]
61+
csdk sql-action create --actionId <UUID> --actionName <String> --actorId <UUID> --content <String> --databaseId <UUID> --deploy <String> --deps <String> --name <String> --payload <JSON> --revert <String> --verify <String>
6262
```
6363

6464
### Get a sqlAction by id

.agents/skills/cli-auth/references/identity-provider.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ csdk identity-provider list --where.<field>.<op> <value> --orderBy <values>
1212
csdk identity-provider list --limit 10 --after <cursor>
1313
csdk identity-provider find-first --where.<field>.<op> <value>
1414
csdk identity-provider get --id <UUID>
15-
csdk identity-provider create [--displayName <String>] [--enabled <Boolean>] [--kind <String>] [--slug <String>]
15+
csdk identity-provider create --displayName <String> --enabled <Boolean> --kind <String> --slug <String>
1616
csdk identity-provider update --id <UUID> [--displayName <String>] [--enabled <Boolean>] [--kind <String>] [--slug <String>]
1717
csdk identity-provider delete --id <UUID>
1818
```
@@ -58,7 +58,7 @@ csdk identity-provider list --where.id.equalTo <value> --orderBy ID_ASC
5858
### Create a identityProvider
5959

6060
```bash
61-
csdk identity-provider create [--displayName <String>] [--enabled <Boolean>] [--kind <String>] [--slug <String>]
61+
csdk identity-provider create --displayName <String> --enabled <Boolean> --kind <String> --slug <String>
6262
```
6363

6464
### Get a identityProvider by id

.agents/skills/cli-auth/references/org-api-key-list.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ csdk org-api-key-list list --where.<field>.<op> <value> --orderBy <values>
1212
csdk org-api-key-list list --limit 10 --after <cursor>
1313
csdk org-api-key-list find-first --where.<field>.<op> <value>
1414
csdk org-api-key-list get --id <UUID>
15-
csdk org-api-key-list create [--accessLevel <String>] [--expiresAt <Datetime>] [--keyId <String>] [--lastUsedAt <Datetime>] [--mfaLevel <String>] [--name <String>] [--orgId <UUID>] [--principalId <UUID>] [--revokedAt <Datetime>]
15+
csdk org-api-key-list create --accessLevel <String> --expiresAt <Datetime> --keyId <String> --lastUsedAt <Datetime> --mfaLevel <String> --name <String> --orgId <UUID> --principalId <UUID> --revokedAt <Datetime>
1616
csdk org-api-key-list update --id <UUID> [--accessLevel <String>] [--expiresAt <Datetime>] [--keyId <String>] [--lastUsedAt <Datetime>] [--mfaLevel <String>] [--name <String>] [--orgId <UUID>] [--principalId <UUID>] [--revokedAt <Datetime>]
1717
csdk org-api-key-list delete --id <UUID>
1818
```
@@ -58,7 +58,7 @@ csdk org-api-key-list list --where.id.equalTo <value> --orderBy ID_ASC
5858
### Create a orgApiKeyList
5959

6060
```bash
61-
csdk org-api-key-list create [--accessLevel <String>] [--expiresAt <Datetime>] [--keyId <String>] [--lastUsedAt <Datetime>] [--mfaLevel <String>] [--name <String>] [--orgId <UUID>] [--principalId <UUID>] [--revokedAt <Datetime>]
61+
csdk org-api-key-list create --accessLevel <String> --expiresAt <Datetime> --keyId <String> --lastUsedAt <Datetime> --mfaLevel <String> --name <String> --orgId <UUID> --principalId <UUID> --revokedAt <Datetime>
6262
```
6363

6464
### Get a orgApiKeyList by id

.agents/skills/cli-auth/references/user-connected-account.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ csdk user-connected-account list --where.<field>.<op> <value> --orderBy <values>
1212
csdk user-connected-account list --limit 10 --after <cursor>
1313
csdk user-connected-account find-first --where.<field>.<op> <value>
1414
csdk user-connected-account get --id <UUID>
15-
csdk user-connected-account create [--details <JSON>] [--identifier <String>] [--isVerified <Boolean>] [--ownerId <UUID>] [--service <String>]
15+
csdk user-connected-account create --details <JSON> --identifier <String> --isVerified <Boolean> --ownerId <UUID> --service <String>
1616
csdk user-connected-account update --id <UUID> [--details <JSON>] [--identifier <String>] [--isVerified <Boolean>] [--ownerId <UUID>] [--service <String>]
1717
csdk user-connected-account delete --id <UUID>
1818
```
@@ -58,7 +58,7 @@ csdk user-connected-account list --where.id.equalTo <value> --orderBy ID_ASC
5858
### Create a userConnectedAccount
5959

6060
```bash
61-
csdk user-connected-account create [--details <JSON>] [--identifier <String>] [--isVerified <Boolean>] [--ownerId <UUID>] [--service <String>]
61+
csdk user-connected-account create --details <JSON> --identifier <String> --isVerified <Boolean> --ownerId <UUID> --service <String>
6262
```
6363

6464
### Get a userConnectedAccount by id

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

Lines changed: 36 additions & 4 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 44 tables and 18 custom operations
3+
description: CLI tool (csdk) for the compute API — provides CRUD commands for 65 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 44 tables and 18 custom operations
10+
CLI tool (csdk) for the compute API — provides CRUD commands for 65 tables and 29 custom operations
1111

1212
## Usage
1313

@@ -57,6 +57,7 @@ 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)
6061
- [function-api-binding](references/function-api-binding.md)
6162
- [function-definition](references/function-definition.md)
6263
- [function-deployment](references/function-deployment.md)
@@ -71,35 +72,55 @@ See the `references/` directory for detailed per-entity API documentation:
7172
- [function-graph-ref](references/function-graph-ref.md)
7273
- [function-graph-store](references/function-graph-store.md)
7374
- [function-invocation](references/function-invocation.md)
74-
- [get-all-record](references/get-all-record.md)
75+
- [get-all-tree-nodes-record](references/get-all-tree-nodes-record.md)
7576
- [infra-commit](references/infra-commit.md)
76-
- [infra-get-all-record](references/infra-get-all-record.md)
77+
- [infra-get-all-tree-nodes-record](references/infra-get-all-tree-nodes-record.md)
7778
- [infra-object](references/infra-object.md)
7879
- [infra-ref](references/infra-ref.md)
7980
- [infra-store](references/infra-store.md)
8081
- [integration-provider](references/integration-provider.md)
8182
- [namespace](references/namespace.md)
8283
- [namespace-event](references/namespace-event.md)
84+
- [platform-declared-capacity](references/platform-declared-capacity.md)
8385
- [platform-function-api-binding](references/platform-function-api-binding.md)
8486
- [platform-function-definition](references/platform-function-definition.md)
8587
- [platform-function-deployment](references/platform-function-deployment.md)
8688
- [platform-function-deployment-event](references/platform-function-deployment-event.md)
8789
- [platform-function-execution-log](references/platform-function-execution-log.md)
8890
- [platform-function-invocation](references/platform-function-invocation.md)
91+
- [platform-infra-commit](references/platform-infra-commit.md)
92+
- [platform-infra-get-all-tree-nodes-record](references/platform-infra-get-all-tree-nodes-record.md)
93+
- [platform-infra-object](references/platform-infra-object.md)
94+
- [platform-infra-ref](references/platform-infra-ref.md)
95+
- [platform-infra-store](references/platform-infra-store.md)
8996
- [platform-namespace](references/platform-namespace.md)
9097
- [platform-namespace-event](references/platform-namespace-event.md)
9198
- [platform-resource](references/platform-resource.md)
9299
- [platform-resource-definition](references/platform-resource-definition.md)
93100
- [platform-resource-event](references/platform-resource-event.md)
101+
- [platform-resource-installation](references/platform-resource-installation.md)
94102
- [platform-resource-status-check](references/platform-resource-status-check.md)
103+
- [platform-resource-usage-log](references/platform-resource-usage-log.md)
104+
- [platform-resource-usage-summary](references/platform-resource-usage-summary.md)
105+
- [platform-resource-utilization-daily](references/platform-resource-utilization-daily.md)
106+
- [platform-resources-health](references/platform-resources-health.md)
95107
- [platform-resources-requirements-state](references/platform-resources-requirements-state.md)
96108
- [platform-resources-resolved-requirement](references/platform-resources-resolved-requirement.md)
109+
- [platform-webhook-endpoint](references/platform-webhook-endpoint.md)
110+
- [platform-webhook-event](references/platform-webhook-event.md)
97111
- [resource](references/resource.md)
98112
- [resource-definition](references/resource-definition.md)
99113
- [resource-event](references/resource-event.md)
114+
- [resource-installation](references/resource-installation.md)
100115
- [resource-status-check](references/resource-status-check.md)
116+
- [resource-usage-log](references/resource-usage-log.md)
117+
- [resource-usage-summary](references/resource-usage-summary.md)
118+
- [resource-utilization-daily](references/resource-utilization-daily.md)
119+
- [resources-health](references/resources-health.md)
101120
- [resources-requirements-state](references/resources-requirements-state.md)
102121
- [resources-resolved-requirement](references/resources-resolved-requirement.md)
122+
- [webhook-endpoint](references/webhook-endpoint.md)
123+
- [webhook-event](references/webhook-event.md)
103124
- [read-function-graph](references/read-function-graph.md)
104125
- [add-edge](references/add-edge.md)
105126
- [add-edge-and-save](references/add-edge-and-save.md)
@@ -113,7 +134,18 @@ See the `references/` directory for detailed per-entity API documentation:
113134
- [infra-set-data-at-path](references/infra-set-data-at-path.md)
114135
- [init-empty-repo](references/init-empty-repo.md)
115136
- [insert-node-at-path](references/insert-node-at-path.md)
137+
- [platform-infra-init-empty-repo](references/platform-infra-init-empty-repo.md)
138+
- [platform-infra-insert-node-at-path](references/platform-infra-insert-node-at-path.md)
139+
- [platform-infra-set-data-at-path](references/platform-infra-set-data-at-path.md)
140+
- [platform-resource-installations-install](references/platform-resource-installations-install.md)
141+
- [platform-resource-installations-rollback](references/platform-resource-installations-rollback.md)
142+
- [platform-resource-installations-uninstall](references/platform-resource-installations-uninstall.md)
143+
- [platform-resource-installations-upgrade](references/platform-resource-installations-upgrade.md)
116144
- [provision-bucket](references/provision-bucket.md)
145+
- [resource-installations-install](references/resource-installations-install.md)
146+
- [resource-installations-rollback](references/resource-installations-rollback.md)
147+
- [resource-installations-uninstall](references/resource-installations-uninstall.md)
148+
- [resource-installations-upgrade](references/resource-installations-upgrade.md)
117149
- [save-graph](references/save-graph.md)
118150
- [set-data-at-path](references/set-data-at-path.md)
119151
- [start-execution](references/start-execution.md)

0 commit comments

Comments
 (0)