Skip to content

feat(domain): add a new task type for moving project #828

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/clients/src/api/domain/v2beta1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ export type TaskType =
| 'create_host'
| 'update_host'
| 'delete_host'
| 'move_project'

export interface AvailableDomain {
domain: string
Expand Down
1 change: 1 addition & 0 deletions packages/clients/src/api/function/v1beta1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -673,6 +673,7 @@ export type GetFunctionUploadURLRequest = {
region?: Region
/** UUID of the function to get the upload URL for. */
functionId: string
/** Size of the archive to upload in bytes. */
contentLength: number
}

Expand Down