-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from depot/regenerate
- Loading branch information
Showing
4 changed files
with
561 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
// @generated by protoc-gen-connect-es v1.4.0 with parameter "target=ts" | ||
// @generated from file depot/core/v1/build.proto (package depot.core.v1, syntax proto3) | ||
/* eslint-disable */ | ||
// @ts-nocheck | ||
|
||
import {MethodKind} from '@bufbuild/protobuf' | ||
import { | ||
GetBuildRequest, | ||
GetBuildResponse, | ||
ListBuildsRequest, | ||
ListBuildsResponse, | ||
ShareBuildRequest, | ||
ShareBuildResponse, | ||
StopSharingBuildRequest, | ||
StopSharingBuildResponse, | ||
} from './build_pb.js' | ||
|
||
/** | ||
* @generated from service depot.core.v1.BuildService | ||
*/ | ||
export const BuildService = { | ||
typeName: 'depot.core.v1.BuildService', | ||
methods: { | ||
/** | ||
* Share a URL to a build with users outside of your organization | ||
* | ||
* @generated from rpc depot.core.v1.BuildService.ShareBuild | ||
*/ | ||
shareBuild: { | ||
name: 'ShareBuild', | ||
I: ShareBuildRequest, | ||
O: ShareBuildResponse, | ||
kind: MethodKind.Unary, | ||
}, | ||
/** | ||
* Stop sharing a build | ||
* | ||
* @generated from rpc depot.core.v1.BuildService.StopSharingBuild | ||
*/ | ||
stopSharingBuild: { | ||
name: 'StopSharingBuild', | ||
I: StopSharingBuildRequest, | ||
O: StopSharingBuildResponse, | ||
kind: MethodKind.Unary, | ||
}, | ||
/** | ||
* List the builds in your organization | ||
* | ||
* @generated from rpc depot.core.v1.BuildService.ListBuilds | ||
*/ | ||
listBuilds: { | ||
name: 'ListBuilds', | ||
I: ListBuildsRequest, | ||
O: ListBuildsResponse, | ||
kind: MethodKind.Unary, | ||
}, | ||
/** | ||
* Get the build metadata of a build | ||
* | ||
* @generated from rpc depot.core.v1.BuildService.GetBuild | ||
*/ | ||
getBuild: { | ||
name: 'GetBuild', | ||
I: GetBuildRequest, | ||
O: GetBuildResponse, | ||
kind: MethodKind.Unary, | ||
}, | ||
}, | ||
} as const |
Oops, something went wrong.