@@ -11,11 +11,34 @@ export type paths = {
1111 path ?: never ;
1212 cookie ?: never ;
1313 } ;
14- get ?: never ;
14+ /**
15+ * Get all sites personal
16+ * @description Gets a list of all the sites you have access to
17+ */
18+ get : {
19+ parameters : {
20+ query ?: never ;
21+ header ?: never ;
22+ path ?: never ;
23+ cookie ?: never ;
24+ } ;
25+ requestBody ?: never ;
26+ responses : {
27+ 200 : {
28+ headers : {
29+ [ name : string ] : unknown ;
30+ } ;
31+ content : {
32+ "application/json; charset=utf-8" : components [ "schemas" ] [ "Site" ] [ ] ;
33+ } ;
34+ } ;
35+ } ;
36+ } ;
1537 put ?: never ;
1638 /**
1739 * Create a new site
1840 * @description Creates a new site given a create request
41+ * (user-only)
1942 */
2043 post : {
2144 parameters : {
@@ -594,7 +617,10 @@ export type paths = {
594617 } ;
595618 } ;
596619 put ?: never ;
597- /** Create a site key */
620+ /**
621+ * Create a site key
622+ * @description (user-only)
623+ */
598624 post : {
599625 parameters : {
600626 query ?: never ;
@@ -636,7 +662,10 @@ export type paths = {
636662 get ?: never ;
637663 put ?: never ;
638664 post ?: never ;
639- /** Delete a site key */
665+ /**
666+ * Delete a site key
667+ * @description (user-only)
668+ */
640669 delete : {
641670 parameters : {
642671 query ?: never ;
@@ -875,6 +904,7 @@ export type paths = {
875904 /**
876905 * Get all teams
877906 * @description Gets a list of all the teams you have access to
907+ * (user-only)
878908 */
879909 get : {
880910 parameters : {
@@ -896,7 +926,10 @@ export type paths = {
896926 } ;
897927 } ;
898928 put ?: never ;
899- /** Create a team */
929+ /**
930+ * Create a team
931+ * @description (user-only)
932+ */
900933 post : {
901934 parameters : {
902935 query ?: never ;
@@ -958,6 +991,7 @@ export type paths = {
958991 /**
959992 * Update a team
960993 * @description Updates a team with the given name
994+ * (user-only) (due to team-owner overwrite)
961995 */
962996 put : {
963997 parameters : {
@@ -984,6 +1018,7 @@ export type paths = {
9841018 /**
9851019 * Delete a team
9861020 * @description Deletes a team
1021+ * (user-only) (due to team-owner overwrite)
9871022 */
9881023 delete : {
9891024 parameters : {
@@ -1042,7 +1077,10 @@ export type paths = {
10421077 } ;
10431078 } ;
10441079 put ?: never ;
1045- /** Invite a user to a team */
1080+ /**
1081+ * Invite a user to a team
1082+ * @description (user-only) (due to team-owner overwrite)
1083+ */
10461084 post : {
10471085 parameters : {
10481086 query ?: never ;
@@ -1084,7 +1122,10 @@ export type paths = {
10841122 get ?: never ;
10851123 put ?: never ;
10861124 post ?: never ;
1087- /** Delete a team invite */
1125+ /**
1126+ * Delete a team invite
1127+ * @description (user-only) (due to team-owner overwrite)
1128+ */
10881129 delete : {
10891130 parameters : {
10901131 query ?: never ;
@@ -1202,6 +1243,7 @@ export type paths = {
12021243 /**
12031244 * Upload a team avatar
12041245 * @description Uploads an avatar for a team
1246+ * (user-only) (due to team-owner overwrite)
12051247 */
12061248 post : {
12071249 parameters : {
@@ -1267,7 +1309,10 @@ export type paths = {
12671309 } ;
12681310 } ;
12691311 put ?: never ;
1270- /** Create a team key */
1312+ /**
1313+ * Create a team key
1314+ * @description (user-only)
1315+ */
12711316 post : {
12721317 parameters : {
12731318 query ?: never ;
@@ -1557,7 +1602,7 @@ export type components = {
15571602 * Deployment
15581603 * @example {
15591604 * "context": "test",
1560- * "created_at": "2025-04-01T05:35:50.968993860 +00:00",
1605+ * "created_at": "2025-04-01T05:55:46.154258712 +00:00",
15611606 * "deployment_id": "d_1234567890",
15621607 * "site_id": "s_1234567890"
15631608 * }
@@ -1624,13 +1669,13 @@ export type components = {
16241669 /**
16251670 * Key
16261671 * @example {
1627- * "created_at": "2025-04-01T05:35:50.969062001 +00:00",
1672+ * "created_at": "2025-04-01T05:55:46.154323592 +00:00",
16281673 * "created_by": "u_1234567890",
1629- * "expires_at": "2025-05-01T05:35:50.969062181 +00:00",
1674+ * "expires_at": "2025-05-01T05:55:46.154323772 +00:00",
16301675 * "key_id": "k_site_12345678901234567890",
16311676 * "key_resource": "s_1234567890",
16321677 * "key_type": "site",
1633- * "last_used": "2025-04-01T05:35:50.969062111 +00:00",
1678+ * "last_used": "2025-04-01T05:55:46.154323692 +00:00",
16341679 * "permissions": "TBD",
16351680 * "vanity": "4567890"
16361681 * }
0 commit comments