// @generated by protoc-gen-connect-web v0.11.0 with parameter "target=ts" // @generated from file artworking/v1/job-share.proto (package artworking.v1, syntax proto3) /* eslint-disable */ // @ts-nocheck import { GetShareFileDownloadRequest, GetShareFileDownloadResponse, GetShareInfoRequest, GetShareInfoResponse, ListShareFilesRequest, ListShareFilesResponse, RecordFileDownloadRequest, RecordFileDownloadResponse, VerifySharePasswordRequest, VerifySharePasswordResponse } from "./job-share_pb.js"; import { MethodKind } from "@bufbuild/protobuf"; /** * Public share service (separate from main ArtworkingService) * * @generated from service artworking.v1.JobSharePublicService */ export const JobSharePublicService = { typeName: "artworking.v1.JobSharePublicService", methods: { /** * @generated from rpc artworking.v1.JobSharePublicService.GetShareInfo */ getShareInfo: { name: "GetShareInfo", I: GetShareInfoRequest, O: GetShareInfoResponse, kind: MethodKind.Unary, }, /** * @generated from rpc artworking.v1.JobSharePublicService.VerifySharePassword */ verifySharePassword: { name: "VerifySharePassword", I: VerifySharePasswordRequest, O: VerifySharePasswordResponse, kind: MethodKind.Unary, }, /** * @generated from rpc artworking.v1.JobSharePublicService.ListShareFiles */ listShareFiles: { name: "ListShareFiles", I: ListShareFilesRequest, O: ListShareFilesResponse, kind: MethodKind.Unary, }, /** * @generated from rpc artworking.v1.JobSharePublicService.GetShareFileDownload */ getShareFileDownload: { name: "GetShareFileDownload", I: GetShareFileDownloadRequest, O: GetShareFileDownloadResponse, kind: MethodKind.Unary, }, /** * @generated from rpc artworking.v1.JobSharePublicService.RecordFileDownload */ recordFileDownload: { name: "RecordFileDownload", I: RecordFileDownloadRequest, O: RecordFileDownloadResponse, kind: MethodKind.Unary, }, } } as const;