Skip to content

Commit eada727

Browse files
authored
Merge pull request #1090 from constructive-io/schema-update/20260509-215447
chore: update schemas from constructive-db
2 parents 0fcb26c + 4516671 commit eada727

504 files changed

Lines changed: 144788 additions & 55979 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/SKILL.md

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

66
# cli-admin
77

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

10-
CLI tool (csdk) for the admin API — provides CRUD commands for 37 tables and 15 custom operations
10+
CLI tool (csdk) for the admin API — provides CRUD commands for 46 tables and 14 custom operations
1111

1212
## Usage
1313

@@ -61,18 +61,27 @@ See the `references/` directory for detailed per-entity API documentation:
6161
- [app-permission](references/app-permission.md)
6262
- [org-permission](references/org-permission.md)
6363
- [app-level-requirement](references/app-level-requirement.md)
64+
- [app-limit-credit-redemption](references/app-limit-credit-redemption.md)
65+
- [app-limit-credit-code-item](references/app-limit-credit-code-item.md)
66+
- [app-limit-credit](references/app-limit-credit.md)
6467
- [org-member](references/org-member.md)
6568
- [app-permission-default](references/app-permission-default.md)
69+
- [app-limit-credit-code](references/app-limit-credit-code.md)
6670
- [org-permission-default](references/org-permission-default.md)
6771
- [app-admin-grant](references/app-admin-grant.md)
6872
- [app-owner-grant](references/app-owner-grant.md)
6973
- [app-achievement](references/app-achievement.md)
7074
- [app-step](references/app-step.md)
75+
- [app-limit-caps-default](references/app-limit-caps-default.md)
76+
- [org-limit-caps-default](references/org-limit-caps-default.md)
77+
- [app-limit-cap](references/app-limit-cap.md)
78+
- [org-limit-cap](references/org-limit-cap.md)
7179
- [org-admin-grant](references/org-admin-grant.md)
7280
- [org-owner-grant](references/org-owner-grant.md)
7381
- [membership-type](references/membership-type.md)
7482
- [app-limit-default](references/app-limit-default.md)
7583
- [org-limit-default](references/org-limit-default.md)
84+
- [org-limit-credit](references/org-limit-credit.md)
7685
- [org-chart-edge-grant](references/org-chart-edge-grant.md)
7786
- [app-claimed-invite](references/app-claimed-invite.md)
7887
- [app-grant](references/app-grant.md)
@@ -83,13 +92,13 @@ See the `references/` directory for detailed per-entity API documentation:
8392
- [org-limit-event](references/org-limit-event.md)
8493
- [org-grant](references/org-grant.md)
8594
- [org-chart-edge](references/org-chart-edge.md)
86-
- [app-limit](references/app-limit.md)
87-
- [org-limit-aggregate](references/org-limit-aggregate.md)
8895
- [org-member-profile](references/org-member-profile.md)
89-
- [org-limit](references/org-limit.md)
9096
- [app-level](references/app-level.md)
97+
- [app-limit](references/app-limit.md)
9198
- [app-invite](references/app-invite.md)
9299
- [org-membership-setting](references/org-membership-setting.md)
100+
- [org-limit-aggregate](references/org-limit-aggregate.md)
101+
- [org-limit](references/org-limit.md)
93102
- [org-invite](references/org-invite.md)
94103
- [app-membership](references/app-membership.md)
95104
- [org-membership](references/org-membership.md)
@@ -106,5 +115,4 @@ See the `references/` directory for detailed per-entity API documentation:
106115
- [steps-required](references/steps-required.md)
107116
- [submit-app-invite-code](references/submit-app-invite-code.md)
108117
- [submit-org-invite-code](references/submit-org-invite-code.md)
109-
- [request-upload-url](references/request-upload-url.md)
110118
- [provision-bucket](references/provision-bucket.md)
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# appLimitCap
2+
3+
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
4+
5+
CRUD operations for AppLimitCap records via csdk CLI
6+
7+
## Usage
8+
9+
```bash
10+
csdk app-limit-cap list
11+
csdk app-limit-cap list --where.<field>.<op> <value> --orderBy <values>
12+
csdk app-limit-cap list --limit 10 --after <cursor>
13+
csdk app-limit-cap find-first --where.<field>.<op> <value>
14+
csdk app-limit-cap get --id <UUID>
15+
csdk app-limit-cap create --name <String> --entityId <UUID> [--max <BigInt>]
16+
csdk app-limit-cap update --id <UUID> [--name <String>] [--entityId <UUID>] [--max <BigInt>]
17+
csdk app-limit-cap delete --id <UUID>
18+
```
19+
20+
## Examples
21+
22+
### List appLimitCap records
23+
24+
```bash
25+
csdk app-limit-cap list
26+
```
27+
28+
### List appLimitCap records with pagination
29+
30+
```bash
31+
csdk app-limit-cap list --limit 10 --offset 0
32+
```
33+
34+
### List appLimitCap records with cursor pagination
35+
36+
```bash
37+
csdk app-limit-cap list --limit 10 --after <cursor>
38+
```
39+
40+
### Find first matching appLimitCap
41+
42+
```bash
43+
csdk app-limit-cap find-first --where.id.equalTo <value>
44+
```
45+
46+
### List appLimitCap records with field selection
47+
48+
```bash
49+
csdk app-limit-cap list --select id,id
50+
```
51+
52+
### List appLimitCap records with filtering and ordering
53+
54+
```bash
55+
csdk app-limit-cap list --where.id.equalTo <value> --orderBy ID_ASC
56+
```
57+
58+
### Create a appLimitCap
59+
60+
```bash
61+
csdk app-limit-cap create --name <String> --entityId <UUID> [--max <BigInt>]
62+
```
63+
64+
### Get a appLimitCap by id
65+
66+
```bash
67+
csdk app-limit-cap get --id <value>
68+
```
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# appLimitCapsDefault
2+
3+
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
4+
5+
CRUD operations for AppLimitCapsDefault records via csdk CLI
6+
7+
## Usage
8+
9+
```bash
10+
csdk app-limit-caps-default list
11+
csdk app-limit-caps-default list --where.<field>.<op> <value> --orderBy <values>
12+
csdk app-limit-caps-default list --limit 10 --after <cursor>
13+
csdk app-limit-caps-default find-first --where.<field>.<op> <value>
14+
csdk app-limit-caps-default get --id <UUID>
15+
csdk app-limit-caps-default create --name <String> [--max <BigInt>]
16+
csdk app-limit-caps-default update --id <UUID> [--name <String>] [--max <BigInt>]
17+
csdk app-limit-caps-default delete --id <UUID>
18+
```
19+
20+
## Examples
21+
22+
### List appLimitCapsDefault records
23+
24+
```bash
25+
csdk app-limit-caps-default list
26+
```
27+
28+
### List appLimitCapsDefault records with pagination
29+
30+
```bash
31+
csdk app-limit-caps-default list --limit 10 --offset 0
32+
```
33+
34+
### List appLimitCapsDefault records with cursor pagination
35+
36+
```bash
37+
csdk app-limit-caps-default list --limit 10 --after <cursor>
38+
```
39+
40+
### Find first matching appLimitCapsDefault
41+
42+
```bash
43+
csdk app-limit-caps-default find-first --where.id.equalTo <value>
44+
```
45+
46+
### List appLimitCapsDefault records with field selection
47+
48+
```bash
49+
csdk app-limit-caps-default list --select id,id
50+
```
51+
52+
### List appLimitCapsDefault records with filtering and ordering
53+
54+
```bash
55+
csdk app-limit-caps-default list --where.id.equalTo <value> --orderBy ID_ASC
56+
```
57+
58+
### Create a appLimitCapsDefault
59+
60+
```bash
61+
csdk app-limit-caps-default create --name <String> [--max <BigInt>]
62+
```
63+
64+
### Get a appLimitCapsDefault by id
65+
66+
```bash
67+
csdk app-limit-caps-default get --id <value>
68+
```
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# appLimitCreditCodeItem
2+
3+
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
4+
5+
CRUD operations for AppLimitCreditCodeItem records via csdk CLI
6+
7+
## Usage
8+
9+
```bash
10+
csdk app-limit-credit-code-item list
11+
csdk app-limit-credit-code-item list --where.<field>.<op> <value> --orderBy <values>
12+
csdk app-limit-credit-code-item list --limit 10 --after <cursor>
13+
csdk app-limit-credit-code-item find-first --where.<field>.<op> <value>
14+
csdk app-limit-credit-code-item get --id <UUID>
15+
csdk app-limit-credit-code-item create --creditCodeId <UUID> --defaultLimitId <UUID> --amount <BigInt> [--creditType <String>]
16+
csdk app-limit-credit-code-item update --id <UUID> [--creditCodeId <UUID>] [--defaultLimitId <UUID>] [--amount <BigInt>] [--creditType <String>]
17+
csdk app-limit-credit-code-item delete --id <UUID>
18+
```
19+
20+
## Examples
21+
22+
### List appLimitCreditCodeItem records
23+
24+
```bash
25+
csdk app-limit-credit-code-item list
26+
```
27+
28+
### List appLimitCreditCodeItem records with pagination
29+
30+
```bash
31+
csdk app-limit-credit-code-item list --limit 10 --offset 0
32+
```
33+
34+
### List appLimitCreditCodeItem records with cursor pagination
35+
36+
```bash
37+
csdk app-limit-credit-code-item list --limit 10 --after <cursor>
38+
```
39+
40+
### Find first matching appLimitCreditCodeItem
41+
42+
```bash
43+
csdk app-limit-credit-code-item find-first --where.id.equalTo <value>
44+
```
45+
46+
### List appLimitCreditCodeItem records with field selection
47+
48+
```bash
49+
csdk app-limit-credit-code-item list --select id,id
50+
```
51+
52+
### List appLimitCreditCodeItem records with filtering and ordering
53+
54+
```bash
55+
csdk app-limit-credit-code-item list --where.id.equalTo <value> --orderBy ID_ASC
56+
```
57+
58+
### Create a appLimitCreditCodeItem
59+
60+
```bash
61+
csdk app-limit-credit-code-item create --creditCodeId <UUID> --defaultLimitId <UUID> --amount <BigInt> [--creditType <String>]
62+
```
63+
64+
### Get a appLimitCreditCodeItem by id
65+
66+
```bash
67+
csdk app-limit-credit-code-item get --id <value>
68+
```
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# appLimitCreditCode
2+
3+
<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->
4+
5+
CRUD operations for AppLimitCreditCode records via csdk CLI
6+
7+
## Usage
8+
9+
```bash
10+
csdk app-limit-credit-code list
11+
csdk app-limit-credit-code list --where.<field>.<op> <value> --orderBy <values>
12+
csdk app-limit-credit-code list --limit 10 --after <cursor>
13+
csdk app-limit-credit-code find-first --where.<field>.<op> <value>
14+
csdk app-limit-credit-code get --id <UUID>
15+
csdk app-limit-credit-code create --code <String> [--maxRedemptions <Int>] [--currentRedemptions <Int>] [--expiresAt <Datetime>]
16+
csdk app-limit-credit-code update --id <UUID> [--code <String>] [--maxRedemptions <Int>] [--currentRedemptions <Int>] [--expiresAt <Datetime>]
17+
csdk app-limit-credit-code delete --id <UUID>
18+
```
19+
20+
## Examples
21+
22+
### List appLimitCreditCode records
23+
24+
```bash
25+
csdk app-limit-credit-code list
26+
```
27+
28+
### List appLimitCreditCode records with pagination
29+
30+
```bash
31+
csdk app-limit-credit-code list --limit 10 --offset 0
32+
```
33+
34+
### List appLimitCreditCode records with cursor pagination
35+
36+
```bash
37+
csdk app-limit-credit-code list --limit 10 --after <cursor>
38+
```
39+
40+
### Find first matching appLimitCreditCode
41+
42+
```bash
43+
csdk app-limit-credit-code find-first --where.id.equalTo <value>
44+
```
45+
46+
### List appLimitCreditCode records with field selection
47+
48+
```bash
49+
csdk app-limit-credit-code list --select id,id
50+
```
51+
52+
### List appLimitCreditCode records with filtering and ordering
53+
54+
```bash
55+
csdk app-limit-credit-code list --where.id.equalTo <value> --orderBy ID_ASC
56+
```
57+
58+
### Create a appLimitCreditCode
59+
60+
```bash
61+
csdk app-limit-credit-code create --code <String> [--maxRedemptions <Int>] [--currentRedemptions <Int>] [--expiresAt <Datetime>]
62+
```
63+
64+
### Get a appLimitCreditCode by id
65+
66+
```bash
67+
csdk app-limit-credit-code get --id <value>
68+
```

0 commit comments

Comments
 (0)