-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
79b5ea4
commit 7467b3d
Showing
63 changed files
with
503 additions
and
308 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export {}; | ||
export * from "./requests"; |
13 changes: 13 additions & 0 deletions
13
src/api/resources/actions/client/requests/ActionCreateRequest.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
import * as Flatfile from "../../../.."; | ||
|
||
export interface ActionCreateRequest { | ||
/** | ||
* The Space ID for which to create the Action. | ||
*/ | ||
spaceId: Flatfile.SpaceId; | ||
body: Flatfile.ApiActionConfig; | ||
} |
13 changes: 13 additions & 0 deletions
13
src/api/resources/actions/client/requests/ActionsBulkCreateRequest.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
import * as Flatfile from "../../../.."; | ||
|
||
export interface ActionsBulkCreateRequest { | ||
/** | ||
* The Space ID for which to create the Actions. | ||
*/ | ||
spaceId: Flatfile.SpaceId; | ||
body: Flatfile.ApiActionConfigs; | ||
} |
12 changes: 12 additions & 0 deletions
12
src/api/resources/actions/client/requests/GetActionsRequest.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
import * as Flatfile from "../../../.."; | ||
|
||
export interface GetActionsRequest { | ||
/** | ||
* The Space ID for which to get the Actions. | ||
*/ | ||
spaceId: Flatfile.SpaceId; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export { ActionCreateRequest } from "./ActionCreateRequest"; | ||
export { ActionsBulkCreateRequest } from "./ActionsBulkCreateRequest"; | ||
export { GetActionsRequest } from "./GetActionsRequest"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export * from "./Actions"; | ||
export * from "./ActionResponse"; | ||
export * from "./ActionsResponse"; | ||
export * from "./ApiActionConfigs"; | ||
export * from "./ApiActionResponse"; | ||
export * from "./ApiActionsResponse"; |
Oops, something went wrong.