Skip to content

Commit b28679a

Browse files
committed
Restore IssueTemporaryAccessTokenRequestBody fields and restore CODEOWNERS files
1 parent 6bc4e3e commit b28679a

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

.fernignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Specify files that shouldn't be modified by Fern
22

3+
.github/CODEOWNERS
34
CLAUDE.md
45
LICENSE
56
README.md

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @SchematicHQ/devtools

src/api/resources/accesstokens/client/requests/IssueTemporaryAccessTokenRequestBody.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,12 @@
77
* {
88
* lookup: {
99
* "key": "value"
10-
* }
10+
* },
11+
* resource_type: "value"
12+
*
1113
* }
1214
*/
1315
export interface IssueTemporaryAccessTokenRequestBody {
1416
lookup: Record<string, string>;
17+
resource_type: string;
1518
}

0 commit comments

Comments
 (0)