Skip to content

Commit

Permalink
Merge pull request #13 from depot/regenerate
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobwgillespie authored Oct 23, 2024
2 parents db11bd7 + e7dfd82 commit ef6cbdd
Show file tree
Hide file tree
Showing 4 changed files with 561 additions and 0 deletions.
69 changes: 69 additions & 0 deletions src/gen/depot/core/v1/build_connect.ts
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
Loading

0 comments on commit ef6cbdd

Please sign in to comment.