Update protobuf definitions: 4119ac8e
By allanger
Commit link: 4119ac8e9f
Pipeline link: https://ci.badhouseplants.net/repos/34/pipeline/42
This commit is contained in:
192
dist/api/accounts/v1/accounts_v1_pb.d.ts
vendored
Normal file
192
dist/api/accounts/v1/accounts_v1_pb.d.ts
vendored
Normal file
@@ -0,0 +1,192 @@
|
||||
import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
||||
import type { EmptySchema } from "@bufbuild/protobuf/wkt";
|
||||
import type { Message } from "@bufbuild/protobuf";
|
||||
/**
|
||||
* Describes the file accounts/v1/accounts_v1.proto.
|
||||
*/
|
||||
export declare const file_accounts_v1_accounts_v1: GenFile;
|
||||
/**
|
||||
* @generated from message accounts.v1.AccountPassword
|
||||
*/
|
||||
export type AccountPassword = Message<"accounts.v1.AccountPassword"> & {
|
||||
/**
|
||||
* @generated from field: string password = 1;
|
||||
*/
|
||||
password: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message accounts.v1.AccountPassword.
|
||||
* Use `create(AccountPasswordSchema)` to create a new message.
|
||||
*/
|
||||
export declare const AccountPasswordSchema: GenMessage<AccountPassword>;
|
||||
/**
|
||||
* @generated from message accounts.v1.AccountData
|
||||
*/
|
||||
export type AccountData = Message<"accounts.v1.AccountData"> & {
|
||||
/**
|
||||
* Account name
|
||||
*
|
||||
* @generated from field: string name = 1;
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* Account email
|
||||
*
|
||||
* @generated from field: string email = 2;
|
||||
*/
|
||||
email: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message accounts.v1.AccountData.
|
||||
* Use `create(AccountDataSchema)` to create a new message.
|
||||
*/
|
||||
export declare const AccountDataSchema: GenMessage<AccountData>;
|
||||
/**
|
||||
* @generated from message accounts.v1.SignUpRequest
|
||||
*/
|
||||
export type SignUpRequest = Message<"accounts.v1.SignUpRequest"> & {
|
||||
/**
|
||||
* @generated from field: accounts.v1.AccountData data = 1;
|
||||
*/
|
||||
data?: AccountData | undefined;
|
||||
/**
|
||||
* @generated from field: accounts.v1.AccountPassword password = 2;
|
||||
*/
|
||||
password?: AccountPassword | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message accounts.v1.SignUpRequest.
|
||||
* Use `create(SignUpRequestSchema)` to create a new message.
|
||||
*/
|
||||
export declare const SignUpRequestSchema: GenMessage<SignUpRequest>;
|
||||
/**
|
||||
* @generated from message accounts.v1.SignInRequest
|
||||
*/
|
||||
export type SignInRequest = Message<"accounts.v1.SignInRequest"> & {
|
||||
/**
|
||||
* @generated from field: accounts.v1.AccountData data = 1;
|
||||
*/
|
||||
data?: AccountData | undefined;
|
||||
/**
|
||||
* @generated from field: accounts.v1.AccountPassword password = 2;
|
||||
*/
|
||||
password?: AccountPassword | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message accounts.v1.SignInRequest.
|
||||
* Use `create(SignInRequestSchema)` to create a new message.
|
||||
*/
|
||||
export declare const SignInRequestSchema: GenMessage<SignInRequest>;
|
||||
/**
|
||||
* @generated from message accounts.v1.ResetPasswordRequest
|
||||
*/
|
||||
export type ResetPasswordRequest = Message<"accounts.v1.ResetPasswordRequest"> & {
|
||||
/**
|
||||
* @generated from field: accounts.v1.AccountData data = 1;
|
||||
*/
|
||||
data?: AccountData | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message accounts.v1.ResetPasswordRequest.
|
||||
* Use `create(ResetPasswordRequestSchema)` to create a new message.
|
||||
*/
|
||||
export declare const ResetPasswordRequestSchema: GenMessage<ResetPasswordRequest>;
|
||||
/**
|
||||
* @generated from message accounts.v1.NewPasswordRequest
|
||||
*/
|
||||
export type NewPasswordRequest = Message<"accounts.v1.NewPasswordRequest"> & {
|
||||
/**
|
||||
* @generated from field: accounts.v1.AccountData data = 1;
|
||||
*/
|
||||
data?: AccountData | undefined;
|
||||
/**
|
||||
* @generated from field: accounts.v1.AccountPassword password = 2;
|
||||
*/
|
||||
password?: AccountPassword | undefined;
|
||||
/**
|
||||
* @generated from field: string code = 3;
|
||||
*/
|
||||
code: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message accounts.v1.NewPasswordRequest.
|
||||
* Use `create(NewPasswordRequestSchema)` to create a new message.
|
||||
*/
|
||||
export declare const NewPasswordRequestSchema: GenMessage<NewPasswordRequest>;
|
||||
/**
|
||||
* @generated from message accounts.v1.IsEmailVerifiedRequest
|
||||
*/
|
||||
export type IsEmailVerifiedRequest = Message<"accounts.v1.IsEmailVerifiedRequest"> & {
|
||||
/**
|
||||
* @generated from field: accounts.v1.AccountData data = 1;
|
||||
*/
|
||||
data?: AccountData | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message accounts.v1.IsEmailVerifiedRequest.
|
||||
* Use `create(IsEmailVerifiedRequestSchema)` to create a new message.
|
||||
*/
|
||||
export declare const IsEmailVerifiedRequestSchema: GenMessage<IsEmailVerifiedRequest>;
|
||||
/**
|
||||
* @generated from message accounts.v1.IsEmailVerifiedResponse
|
||||
*/
|
||||
export type IsEmailVerifiedResponse = Message<"accounts.v1.IsEmailVerifiedResponse"> & {
|
||||
/**
|
||||
* @generated from field: bool verified = 1;
|
||||
*/
|
||||
verified: boolean;
|
||||
};
|
||||
/**
|
||||
* Describes the message accounts.v1.IsEmailVerifiedResponse.
|
||||
* Use `create(IsEmailVerifiedResponseSchema)` to create a new message.
|
||||
*/
|
||||
export declare const IsEmailVerifiedResponseSchema: GenMessage<IsEmailVerifiedResponse>;
|
||||
/**
|
||||
* *
|
||||
* Service for handling environments
|
||||
*
|
||||
* @generated from service accounts.v1.AccountsService
|
||||
*/
|
||||
export declare const AccountsService: GenService<{
|
||||
/**
|
||||
* @generated from rpc accounts.v1.AccountsService.SignUp
|
||||
*/
|
||||
signUp: {
|
||||
methodKind: "unary";
|
||||
input: typeof SignUpRequestSchema;
|
||||
output: typeof EmptySchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc accounts.v1.AccountsService.SignIn
|
||||
*/
|
||||
signIn: {
|
||||
methodKind: "unary";
|
||||
input: typeof SignInRequestSchema;
|
||||
output: typeof EmptySchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc accounts.v1.AccountsService.ResetPassword
|
||||
*/
|
||||
resetPassword: {
|
||||
methodKind: "unary";
|
||||
input: typeof ResetPasswordRequestSchema;
|
||||
output: typeof EmptySchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc accounts.v1.AccountsService.NewPassword
|
||||
*/
|
||||
newPassword: {
|
||||
methodKind: "unary";
|
||||
input: typeof NewPasswordRequestSchema;
|
||||
output: typeof EmptySchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc accounts.v1.AccountsService.IsEmailVerified
|
||||
*/
|
||||
isEmailVerified: {
|
||||
methodKind: "unary";
|
||||
input: typeof IsEmailVerifiedRequestSchema;
|
||||
output: typeof IsEmailVerifiedResponseSchema;
|
||||
};
|
||||
}>;
|
||||
//# sourceMappingURL=accounts_v1_pb.d.ts.map
|
||||
1
dist/api/accounts/v1/accounts_v1_pb.d.ts.map
vendored
Normal file
1
dist/api/accounts/v1/accounts_v1_pb.d.ts.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"accounts_v1_pb.d.ts","sourceRoot":"","sources":["../../../../src/api/accounts/v1/accounts_v1_pb.ts"],"names":[],"mappings":"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"}
|
||||
54
dist/api/accounts/v1/accounts_v1_pb.js
vendored
Normal file
54
dist/api/accounts/v1/accounts_v1_pb.js
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
/// This file has messages for describing environments
|
||||
import { fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2";
|
||||
import { file_google_protobuf_empty } from "@bufbuild/protobuf/wkt";
|
||||
/**
|
||||
* Describes the file accounts/v1/accounts_v1.proto.
|
||||
*/
|
||||
export const file_accounts_v1_accounts_v1 = /*@__PURE__*/ fileDesc("Ch1hY2NvdW50cy92MS9hY2NvdW50c192MS5wcm90bxILYWNjb3VudHMudjEiIwoPQWNjb3VudFBhc3N3b3JkEhAKCHBhc3N3b3JkGAEgASgJIioKC0FjY291bnREYXRhEgwKBG5hbWUYASABKAkSDQoFZW1haWwYAiABKAkiZwoNU2lnblVwUmVxdWVzdBImCgRkYXRhGAEgASgLMhguYWNjb3VudHMudjEuQWNjb3VudERhdGESLgoIcGFzc3dvcmQYAiABKAsyHC5hY2NvdW50cy52MS5BY2NvdW50UGFzc3dvcmQiZwoNU2lnbkluUmVxdWVzdBImCgRkYXRhGAEgASgLMhguYWNjb3VudHMudjEuQWNjb3VudERhdGESLgoIcGFzc3dvcmQYAiABKAsyHC5hY2NvdW50cy52MS5BY2NvdW50UGFzc3dvcmQiPgoUUmVzZXRQYXNzd29yZFJlcXVlc3QSJgoEZGF0YRgBIAEoCzIYLmFjY291bnRzLnYxLkFjY291bnREYXRhInoKEk5ld1Bhc3N3b3JkUmVxdWVzdBImCgRkYXRhGAEgASgLMhguYWNjb3VudHMudjEuQWNjb3VudERhdGESLgoIcGFzc3dvcmQYAiABKAsyHC5hY2NvdW50cy52MS5BY2NvdW50UGFzc3dvcmQSDAoEY29kZRgDIAEoCSJAChZJc0VtYWlsVmVyaWZpZWRSZXF1ZXN0EiYKBGRhdGEYASABKAsyGC5hY2NvdW50cy52MS5BY2NvdW50RGF0YSIrChdJc0VtYWlsVmVyaWZpZWRSZXNwb25zZRIQCgh2ZXJpZmllZBgBIAEoCDKJAwoPQWNjb3VudHNTZXJ2aWNlEj4KBlNpZ25VcBIaLmFjY291bnRzLnYxLlNpZ25VcFJlcXVlc3QaFi5nb29nbGUucHJvdG9idWYuRW1wdHkiABI+CgZTaWduSW4SGi5hY2NvdW50cy52MS5TaWduSW5SZXF1ZXN0GhYuZ29vZ2xlLnByb3RvYnVmLkVtcHR5IgASTAoNUmVzZXRQYXNzd29yZBIhLmFjY291bnRzLnYxLlJlc2V0UGFzc3dvcmRSZXF1ZXN0GhYuZ29vZ2xlLnByb3RvYnVmLkVtcHR5IgASSAoLTmV3UGFzc3dvcmQSHy5hY2NvdW50cy52MS5OZXdQYXNzd29yZFJlcXVlc3QaFi5nb29nbGUucHJvdG9idWYuRW1wdHkiABJeCg9Jc0VtYWlsVmVyaWZpZWQSIy5hY2NvdW50cy52MS5Jc0VtYWlsVmVyaWZpZWRSZXF1ZXN0GiQuYWNjb3VudHMudjEuSXNFbWFpbFZlcmlmaWVkUmVzcG9uc2UiAEJJWkdnaXRlYS5iYWRob3VzZXBsYW50cy5uZXQvc29mdHBsYXllci9zb2Z0cGxheWVyLWdvLXByb3RvL3BrZy9hY2NvdW50cy92MWIGcHJvdG8z", [file_google_protobuf_empty]);
|
||||
/**
|
||||
* Describes the message accounts.v1.AccountPassword.
|
||||
* Use `create(AccountPasswordSchema)` to create a new message.
|
||||
*/
|
||||
export const AccountPasswordSchema = /*@__PURE__*/ messageDesc(file_accounts_v1_accounts_v1, 0);
|
||||
/**
|
||||
* Describes the message accounts.v1.AccountData.
|
||||
* Use `create(AccountDataSchema)` to create a new message.
|
||||
*/
|
||||
export const AccountDataSchema = /*@__PURE__*/ messageDesc(file_accounts_v1_accounts_v1, 1);
|
||||
/**
|
||||
* Describes the message accounts.v1.SignUpRequest.
|
||||
* Use `create(SignUpRequestSchema)` to create a new message.
|
||||
*/
|
||||
export const SignUpRequestSchema = /*@__PURE__*/ messageDesc(file_accounts_v1_accounts_v1, 2);
|
||||
/**
|
||||
* Describes the message accounts.v1.SignInRequest.
|
||||
* Use `create(SignInRequestSchema)` to create a new message.
|
||||
*/
|
||||
export const SignInRequestSchema = /*@__PURE__*/ messageDesc(file_accounts_v1_accounts_v1, 3);
|
||||
/**
|
||||
* Describes the message accounts.v1.ResetPasswordRequest.
|
||||
* Use `create(ResetPasswordRequestSchema)` to create a new message.
|
||||
*/
|
||||
export const ResetPasswordRequestSchema = /*@__PURE__*/ messageDesc(file_accounts_v1_accounts_v1, 4);
|
||||
/**
|
||||
* Describes the message accounts.v1.NewPasswordRequest.
|
||||
* Use `create(NewPasswordRequestSchema)` to create a new message.
|
||||
*/
|
||||
export const NewPasswordRequestSchema = /*@__PURE__*/ messageDesc(file_accounts_v1_accounts_v1, 5);
|
||||
/**
|
||||
* Describes the message accounts.v1.IsEmailVerifiedRequest.
|
||||
* Use `create(IsEmailVerifiedRequestSchema)` to create a new message.
|
||||
*/
|
||||
export const IsEmailVerifiedRequestSchema = /*@__PURE__*/ messageDesc(file_accounts_v1_accounts_v1, 6);
|
||||
/**
|
||||
* Describes the message accounts.v1.IsEmailVerifiedResponse.
|
||||
* Use `create(IsEmailVerifiedResponseSchema)` to create a new message.
|
||||
*/
|
||||
export const IsEmailVerifiedResponseSchema = /*@__PURE__*/ messageDesc(file_accounts_v1_accounts_v1, 7);
|
||||
/**
|
||||
* *
|
||||
* Service for handling environments
|
||||
*
|
||||
* @generated from service accounts.v1.AccountsService
|
||||
*/
|
||||
export const AccountsService = /*@__PURE__*/ serviceDesc(file_accounts_v1_accounts_v1, 0);
|
||||
304
dist/api/applications/v1/applications_v1_pb.d.ts
vendored
Normal file
304
dist/api/applications/v1/applications_v1_pb.d.ts
vendored
Normal file
@@ -0,0 +1,304 @@
|
||||
import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
||||
import type { EmptySchema } from "@bufbuild/protobuf/wkt";
|
||||
import type { Message } from "@bufbuild/protobuf";
|
||||
/**
|
||||
* Describes the file applications/v1/applications_v1.proto.
|
||||
*/
|
||||
export declare const file_applications_v1_applications_v1: GenFile;
|
||||
/**
|
||||
* @generated from message applications.OwnerId
|
||||
*/
|
||||
export type OwnerId = Message<"applications.OwnerId"> & {
|
||||
/**
|
||||
* UUID of a user that is creating an environemnt
|
||||
*
|
||||
* @generated from field: string uuid = 1;
|
||||
*/
|
||||
uuid: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message applications.OwnerId.
|
||||
* Use `create(OwnerIdSchema)` to create a new message.
|
||||
*/
|
||||
export declare const OwnerIdSchema: GenMessage<OwnerId>;
|
||||
/**
|
||||
* @generated from message applications.Token
|
||||
*/
|
||||
export type Token = Message<"applications.Token"> & {
|
||||
/**
|
||||
* Token that should be used to create an environment
|
||||
*
|
||||
* @generated from field: string token = 1;
|
||||
*/
|
||||
token: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message applications.Token.
|
||||
* Use `create(TokenSchema)` to create a new message.
|
||||
*/
|
||||
export declare const TokenSchema: GenMessage<Token>;
|
||||
/**
|
||||
* @generated from message applications.CreateOptions
|
||||
*/
|
||||
export type CreateOptions = Message<"applications.CreateOptions"> & {
|
||||
/**
|
||||
* @generated from field: applications.ApplicationMetadata metadata = 1;
|
||||
*/
|
||||
metadata?: ApplicationMetadata | undefined;
|
||||
/**
|
||||
* @generated from field: applications.ApplicationSpec spec = 2;
|
||||
*/
|
||||
spec?: ApplicationSpec | undefined;
|
||||
/**
|
||||
* @generated from field: applications.OwnerId owner_id = 3;
|
||||
*/
|
||||
ownerId?: OwnerId | undefined;
|
||||
/**
|
||||
* @generated from field: applications.Token token = 4;
|
||||
*/
|
||||
token?: Token | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message applications.CreateOptions.
|
||||
* Use `create(CreateOptionsSchema)` to create a new message.
|
||||
*/
|
||||
export declare const CreateOptionsSchema: GenMessage<CreateOptions>;
|
||||
/**
|
||||
* @generated from message applications.UpdateOptions
|
||||
*/
|
||||
export type UpdateOptions = Message<"applications.UpdateOptions"> & {
|
||||
/**
|
||||
* @generated from field: applications.ApplicationId id = 1;
|
||||
*/
|
||||
id?: ApplicationId | undefined;
|
||||
/**
|
||||
* @generated from field: applications.ApplicationMetadata metadata = 2;
|
||||
*/
|
||||
metadata?: ApplicationMetadata | undefined;
|
||||
/**
|
||||
* @generated from field: applications.ApplicationSpec spec = 3;
|
||||
*/
|
||||
spec?: ApplicationSpec | undefined;
|
||||
/**
|
||||
* @generated from field: applications.OwnerId owner_id = 4;
|
||||
*/
|
||||
ownerId?: OwnerId | undefined;
|
||||
/**
|
||||
* @generated from field: applications.Token token = 5;
|
||||
*/
|
||||
token?: Token | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message applications.UpdateOptions.
|
||||
* Use `create(UpdateOptionsSchema)` to create a new message.
|
||||
*/
|
||||
export declare const UpdateOptionsSchema: GenMessage<UpdateOptions>;
|
||||
/**
|
||||
* @generated from message applications.DeleteOptions
|
||||
*/
|
||||
export type DeleteOptions = Message<"applications.DeleteOptions"> & {
|
||||
/**
|
||||
* @generated from field: applications.ApplicationId id = 1;
|
||||
*/
|
||||
id?: ApplicationId | undefined;
|
||||
/**
|
||||
* @generated from field: applications.ApplicationMetadata metadata = 2;
|
||||
*/
|
||||
metadata?: ApplicationMetadata | undefined;
|
||||
/**
|
||||
* @generated from field: applications.OwnerId owner_id = 3;
|
||||
*/
|
||||
ownerId?: OwnerId | undefined;
|
||||
/**
|
||||
* @generated from field: applications.Token token = 4;
|
||||
*/
|
||||
token?: Token | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message applications.DeleteOptions.
|
||||
* Use `create(DeleteOptionsSchema)` to create a new message.
|
||||
*/
|
||||
export declare const DeleteOptionsSchema: GenMessage<DeleteOptions>;
|
||||
/**
|
||||
* @generated from message applications.GetOptions
|
||||
*/
|
||||
export type GetOptions = Message<"applications.GetOptions"> & {
|
||||
/**
|
||||
* @generated from field: applications.ApplicationId id = 1;
|
||||
*/
|
||||
id?: ApplicationId | undefined;
|
||||
/**
|
||||
* @generated from field: applications.ApplicationMetadata metadata = 2;
|
||||
*/
|
||||
metadata?: ApplicationMetadata | undefined;
|
||||
/**
|
||||
* @generated from field: applications.OwnerId owner_id = 3;
|
||||
*/
|
||||
ownerId?: OwnerId | undefined;
|
||||
/**
|
||||
* @generated from field: applications.Token token = 4;
|
||||
*/
|
||||
token?: Token | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message applications.GetOptions.
|
||||
* Use `create(GetOptionsSchema)` to create a new message.
|
||||
*/
|
||||
export declare const GetOptionsSchema: GenMessage<GetOptions>;
|
||||
/**
|
||||
* @generated from message applications.ListOptions
|
||||
*/
|
||||
export type ListOptions = Message<"applications.ListOptions"> & {
|
||||
/**
|
||||
* @generated from field: applications.ApplicationMetadata metadata = 1;
|
||||
*/
|
||||
metadata?: ApplicationMetadata | undefined;
|
||||
/**
|
||||
* @generated from field: applications.OwnerId owner_id = 2;
|
||||
*/
|
||||
ownerId?: OwnerId | undefined;
|
||||
/**
|
||||
* @generated from field: applications.Token token = 3;
|
||||
*/
|
||||
token?: Token | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message applications.ListOptions.
|
||||
* Use `create(ListOptionsSchema)` to create a new message.
|
||||
*/
|
||||
export declare const ListOptionsSchema: GenMessage<ListOptions>;
|
||||
/**
|
||||
* @generated from message applications.ApplicationId
|
||||
*/
|
||||
export type ApplicationId = Message<"applications.ApplicationId"> & {
|
||||
/**
|
||||
* @generated from field: string uuid = 1;
|
||||
*/
|
||||
uuid: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message applications.ApplicationId.
|
||||
* Use `create(ApplicationIdSchema)` to create a new message.
|
||||
*/
|
||||
export declare const ApplicationIdSchema: GenMessage<ApplicationId>;
|
||||
/**
|
||||
* @generated from message applications.ApplicationMetadata
|
||||
*/
|
||||
export type ApplicationMetadata = Message<"applications.ApplicationMetadata"> & {
|
||||
/**
|
||||
* @generated from field: string name = 1;
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* @generated from field: string description = 2;
|
||||
*/
|
||||
description: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message applications.ApplicationMetadata.
|
||||
* Use `create(ApplicationMetadataSchema)` to create a new message.
|
||||
*/
|
||||
export declare const ApplicationMetadataSchema: GenMessage<ApplicationMetadata>;
|
||||
/**
|
||||
* @generated from message applications.ApplicationSpec
|
||||
*/
|
||||
export type ApplicationSpec = Message<"applications.ApplicationSpec"> & {
|
||||
/**
|
||||
* @generated from field: string application = 1;
|
||||
*/
|
||||
application: string;
|
||||
/**
|
||||
* @generated from field: string version = 2;
|
||||
*/
|
||||
version: string;
|
||||
/**
|
||||
* @generated from field: string environemnt_id = 3;
|
||||
*/
|
||||
environemntId: string;
|
||||
/**
|
||||
* @generated from field: map<string, string> config = 4;
|
||||
*/
|
||||
config: {
|
||||
[key: string]: string;
|
||||
};
|
||||
/**
|
||||
* @generated from field: string raw_config = 5;
|
||||
*/
|
||||
rawConfig: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message applications.ApplicationSpec.
|
||||
* Use `create(ApplicationSpecSchema)` to create a new message.
|
||||
*/
|
||||
export declare const ApplicationSpecSchema: GenMessage<ApplicationSpec>;
|
||||
/**
|
||||
* @generated from message applications.ApplicationFull
|
||||
*/
|
||||
export type ApplicationFull = Message<"applications.ApplicationFull"> & {
|
||||
/**
|
||||
* @generated from field: applications.ApplicationMetadata metadata = 1;
|
||||
*/
|
||||
metadata?: ApplicationMetadata | undefined;
|
||||
/**
|
||||
* @generated from field: applications.ApplicationSpec spec = 2;
|
||||
*/
|
||||
spec?: ApplicationSpec | undefined;
|
||||
/**
|
||||
* @generated from field: applications.ApplicationId id = 3;
|
||||
*/
|
||||
id?: ApplicationId | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message applications.ApplicationFull.
|
||||
* Use `create(ApplicationFullSchema)` to create a new message.
|
||||
*/
|
||||
export declare const ApplicationFullSchema: GenMessage<ApplicationFull>;
|
||||
/**
|
||||
* *
|
||||
* Service for handling applications
|
||||
*
|
||||
* @generated from service applications.Applications
|
||||
*/
|
||||
export declare const Applications: GenService<{
|
||||
/**
|
||||
* @generated from rpc applications.Applications.Create
|
||||
*/
|
||||
create: {
|
||||
methodKind: "unary";
|
||||
input: typeof CreateOptionsSchema;
|
||||
output: typeof ApplicationFullSchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc applications.Applications.Update
|
||||
*/
|
||||
update: {
|
||||
methodKind: "unary";
|
||||
input: typeof UpdateOptionsSchema;
|
||||
output: typeof ApplicationFullSchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc applications.Applications.Delete
|
||||
*/
|
||||
delete: {
|
||||
methodKind: "unary";
|
||||
input: typeof DeleteOptionsSchema;
|
||||
output: typeof EmptySchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc applications.Applications.Get
|
||||
*/
|
||||
get: {
|
||||
methodKind: "unary";
|
||||
input: typeof GetOptionsSchema;
|
||||
output: typeof ApplicationFullSchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc applications.Applications.List
|
||||
*/
|
||||
list: {
|
||||
methodKind: "server_streaming";
|
||||
input: typeof ListOptionsSchema;
|
||||
output: typeof ApplicationFullSchema;
|
||||
};
|
||||
}>;
|
||||
//# sourceMappingURL=applications_v1_pb.d.ts.map
|
||||
1
dist/api/applications/v1/applications_v1_pb.d.ts.map
vendored
Normal file
1
dist/api/applications/v1/applications_v1_pb.d.ts.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"applications_v1_pb.d.ts","sourceRoot":"","sources":["../../../../src/api/applications/v1/applications_v1_pb.ts"],"names":[],"mappings":"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"}
|
||||
69
dist/api/applications/v1/applications_v1_pb.js
vendored
Normal file
69
dist/api/applications/v1/applications_v1_pb.js
vendored
Normal file
@@ -0,0 +1,69 @@
|
||||
/// This file has messages for describing applications
|
||||
import { fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2";
|
||||
import { file_google_protobuf_empty } from "@bufbuild/protobuf/wkt";
|
||||
/**
|
||||
* Describes the file applications/v1/applications_v1.proto.
|
||||
*/
|
||||
export const file_applications_v1_applications_v1 = /*@__PURE__*/ fileDesc("CiVhcHBsaWNhdGlvbnMvdjEvYXBwbGljYXRpb25zX3YxLnByb3RvEgxhcHBsaWNhdGlvbnMiFwoHT3duZXJJZBIMCgR1dWlkGAEgASgJIhYKBVRva2VuEg0KBXRva2VuGAEgASgJIr4BCg1DcmVhdGVPcHRpb25zEjMKCG1ldGFkYXRhGAEgASgLMiEuYXBwbGljYXRpb25zLkFwcGxpY2F0aW9uTWV0YWRhdGESKwoEc3BlYxgCIAEoCzIdLmFwcGxpY2F0aW9ucy5BcHBsaWNhdGlvblNwZWMSJwoIb3duZXJfaWQYAyABKAsyFS5hcHBsaWNhdGlvbnMuT3duZXJJZBIiCgV0b2tlbhgEIAEoCzITLmFwcGxpY2F0aW9ucy5Ub2tlbiLnAQoNVXBkYXRlT3B0aW9ucxInCgJpZBgBIAEoCzIbLmFwcGxpY2F0aW9ucy5BcHBsaWNhdGlvbklkEjMKCG1ldGFkYXRhGAIgASgLMiEuYXBwbGljYXRpb25zLkFwcGxpY2F0aW9uTWV0YWRhdGESKwoEc3BlYxgDIAEoCzIdLmFwcGxpY2F0aW9ucy5BcHBsaWNhdGlvblNwZWMSJwoIb3duZXJfaWQYBCABKAsyFS5hcHBsaWNhdGlvbnMuT3duZXJJZBIiCgV0b2tlbhgFIAEoCzITLmFwcGxpY2F0aW9ucy5Ub2tlbiK6AQoNRGVsZXRlT3B0aW9ucxInCgJpZBgBIAEoCzIbLmFwcGxpY2F0aW9ucy5BcHBsaWNhdGlvbklkEjMKCG1ldGFkYXRhGAIgASgLMiEuYXBwbGljYXRpb25zLkFwcGxpY2F0aW9uTWV0YWRhdGESJwoIb3duZXJfaWQYAyABKAsyFS5hcHBsaWNhdGlvbnMuT3duZXJJZBIiCgV0b2tlbhgEIAEoCzITLmFwcGxpY2F0aW9ucy5Ub2tlbiK3AQoKR2V0T3B0aW9ucxInCgJpZBgBIAEoCzIbLmFwcGxpY2F0aW9ucy5BcHBsaWNhdGlvbklkEjMKCG1ldGFkYXRhGAIgASgLMiEuYXBwbGljYXRpb25zLkFwcGxpY2F0aW9uTWV0YWRhdGESJwoIb3duZXJfaWQYAyABKAsyFS5hcHBsaWNhdGlvbnMuT3duZXJJZBIiCgV0b2tlbhgEIAEoCzITLmFwcGxpY2F0aW9ucy5Ub2tlbiKPAQoLTGlzdE9wdGlvbnMSMwoIbWV0YWRhdGEYASABKAsyIS5hcHBsaWNhdGlvbnMuQXBwbGljYXRpb25NZXRhZGF0YRInCghvd25lcl9pZBgCIAEoCzIVLmFwcGxpY2F0aW9ucy5Pd25lcklkEiIKBXRva2VuGAMgASgLMhMuYXBwbGljYXRpb25zLlRva2VuIh0KDUFwcGxpY2F0aW9uSWQSDAoEdXVpZBgBIAEoCSI4ChNBcHBsaWNhdGlvbk1ldGFkYXRhEgwKBG5hbWUYASABKAkSEwoLZGVzY3JpcHRpb24YAiABKAkizQEKD0FwcGxpY2F0aW9uU3BlYxITCgthcHBsaWNhdGlvbhgBIAEoCRIPCgd2ZXJzaW9uGAIgASgJEhYKDmVudmlyb25lbW50X2lkGAMgASgJEjkKBmNvbmZpZxgEIAMoCzIpLmFwcGxpY2F0aW9ucy5BcHBsaWNhdGlvblNwZWMuQ29uZmlnRW50cnkSEgoKcmF3X2NvbmZpZxgFIAEoCRotCgtDb25maWdFbnRyeRILCgNrZXkYASABKAkSDQoFdmFsdWUYAiABKAk6AjgBIpwBCg9BcHBsaWNhdGlvbkZ1bGwSMwoIbWV0YWRhdGEYASABKAsyIS5hcHBsaWNhdGlvbnMuQXBwbGljYXRpb25NZXRhZGF0YRIrCgRzcGVjGAIgASgLMh0uYXBwbGljYXRpb25zLkFwcGxpY2F0aW9uU3BlYxInCgJpZBgDIAEoCzIbLmFwcGxpY2F0aW9ucy5BcHBsaWNhdGlvbklkMucCCgxBcHBsaWNhdGlvbnMSRgoGQ3JlYXRlEhsuYXBwbGljYXRpb25zLkNyZWF0ZU9wdGlvbnMaHS5hcHBsaWNhdGlvbnMuQXBwbGljYXRpb25GdWxsIgASRgoGVXBkYXRlEhsuYXBwbGljYXRpb25zLlVwZGF0ZU9wdGlvbnMaHS5hcHBsaWNhdGlvbnMuQXBwbGljYXRpb25GdWxsIgASPwoGRGVsZXRlEhsuYXBwbGljYXRpb25zLkRlbGV0ZU9wdGlvbnMaFi5nb29nbGUucHJvdG9idWYuRW1wdHkiABJACgNHZXQSGC5hcHBsaWNhdGlvbnMuR2V0T3B0aW9ucxodLmFwcGxpY2F0aW9ucy5BcHBsaWNhdGlvbkZ1bGwiABJECgRMaXN0EhkuYXBwbGljYXRpb25zLkxpc3RPcHRpb25zGh0uYXBwbGljYXRpb25zLkFwcGxpY2F0aW9uRnVsbCIAMAFCSlpIZ2l0ZWEuYmFkaG91c2VwbGFudHMubmV0L3NvZnRwbGF5ZXIvc29mdHBsYXllci1nby1wcm90by9wa2cvYXBwbGljYXRpb25zYgZwcm90bzM", [file_google_protobuf_empty]);
|
||||
/**
|
||||
* Describes the message applications.OwnerId.
|
||||
* Use `create(OwnerIdSchema)` to create a new message.
|
||||
*/
|
||||
export const OwnerIdSchema = /*@__PURE__*/ messageDesc(file_applications_v1_applications_v1, 0);
|
||||
/**
|
||||
* Describes the message applications.Token.
|
||||
* Use `create(TokenSchema)` to create a new message.
|
||||
*/
|
||||
export const TokenSchema = /*@__PURE__*/ messageDesc(file_applications_v1_applications_v1, 1);
|
||||
/**
|
||||
* Describes the message applications.CreateOptions.
|
||||
* Use `create(CreateOptionsSchema)` to create a new message.
|
||||
*/
|
||||
export const CreateOptionsSchema = /*@__PURE__*/ messageDesc(file_applications_v1_applications_v1, 2);
|
||||
/**
|
||||
* Describes the message applications.UpdateOptions.
|
||||
* Use `create(UpdateOptionsSchema)` to create a new message.
|
||||
*/
|
||||
export const UpdateOptionsSchema = /*@__PURE__*/ messageDesc(file_applications_v1_applications_v1, 3);
|
||||
/**
|
||||
* Describes the message applications.DeleteOptions.
|
||||
* Use `create(DeleteOptionsSchema)` to create a new message.
|
||||
*/
|
||||
export const DeleteOptionsSchema = /*@__PURE__*/ messageDesc(file_applications_v1_applications_v1, 4);
|
||||
/**
|
||||
* Describes the message applications.GetOptions.
|
||||
* Use `create(GetOptionsSchema)` to create a new message.
|
||||
*/
|
||||
export const GetOptionsSchema = /*@__PURE__*/ messageDesc(file_applications_v1_applications_v1, 5);
|
||||
/**
|
||||
* Describes the message applications.ListOptions.
|
||||
* Use `create(ListOptionsSchema)` to create a new message.
|
||||
*/
|
||||
export const ListOptionsSchema = /*@__PURE__*/ messageDesc(file_applications_v1_applications_v1, 6);
|
||||
/**
|
||||
* Describes the message applications.ApplicationId.
|
||||
* Use `create(ApplicationIdSchema)` to create a new message.
|
||||
*/
|
||||
export const ApplicationIdSchema = /*@__PURE__*/ messageDesc(file_applications_v1_applications_v1, 7);
|
||||
/**
|
||||
* Describes the message applications.ApplicationMetadata.
|
||||
* Use `create(ApplicationMetadataSchema)` to create a new message.
|
||||
*/
|
||||
export const ApplicationMetadataSchema = /*@__PURE__*/ messageDesc(file_applications_v1_applications_v1, 8);
|
||||
/**
|
||||
* Describes the message applications.ApplicationSpec.
|
||||
* Use `create(ApplicationSpecSchema)` to create a new message.
|
||||
*/
|
||||
export const ApplicationSpecSchema = /*@__PURE__*/ messageDesc(file_applications_v1_applications_v1, 9);
|
||||
/**
|
||||
* Describes the message applications.ApplicationFull.
|
||||
* Use `create(ApplicationFullSchema)` to create a new message.
|
||||
*/
|
||||
export const ApplicationFullSchema = /*@__PURE__*/ messageDesc(file_applications_v1_applications_v1, 10);
|
||||
/**
|
||||
* *
|
||||
* Service for handling applications
|
||||
*
|
||||
* @generated from service applications.Applications
|
||||
*/
|
||||
export const Applications = /*@__PURE__*/ serviceDesc(file_applications_v1_applications_v1, 0);
|
||||
64
dist/api/email/v1/email_v1_pb.d.ts
vendored
Normal file
64
dist/api/email/v1/email_v1_pb.d.ts
vendored
Normal file
@@ -0,0 +1,64 @@
|
||||
import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
||||
import type { EmptySchema } from "@bufbuild/protobuf/wkt";
|
||||
import type { Message } from "@bufbuild/protobuf";
|
||||
/**
|
||||
* Describes the file email/v1/email_v1.proto.
|
||||
*/
|
||||
export declare const file_email_v1_email_v1: GenFile;
|
||||
/**
|
||||
* @generated from message email.RequestValidation
|
||||
*/
|
||||
export type RequestValidation = Message<"email.RequestValidation"> & {
|
||||
/**
|
||||
* @generated from field: string user_id = 1;
|
||||
*/
|
||||
userId: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message email.RequestValidation.
|
||||
* Use `create(RequestValidationSchema)` to create a new message.
|
||||
*/
|
||||
export declare const RequestValidationSchema: GenMessage<RequestValidation>;
|
||||
/**
|
||||
* @generated from message email.ConfirmValidation
|
||||
*/
|
||||
export type ConfirmValidation = Message<"email.ConfirmValidation"> & {
|
||||
/**
|
||||
* @generated from field: string user_id = 1;
|
||||
*/
|
||||
userId: string;
|
||||
/**
|
||||
* @generated from field: int32 code = 2;
|
||||
*/
|
||||
code: number;
|
||||
};
|
||||
/**
|
||||
* Describes the message email.ConfirmValidation.
|
||||
* Use `create(ConfirmValidationSchema)` to create a new message.
|
||||
*/
|
||||
export declare const ConfirmValidationSchema: GenMessage<ConfirmValidation>;
|
||||
/**
|
||||
*
|
||||
* A service that should handle email validation
|
||||
*
|
||||
* @generated from service email.EmailValidation
|
||||
*/
|
||||
export declare const EmailValidation: GenService<{
|
||||
/**
|
||||
* @generated from rpc email.EmailValidation.SendRequest
|
||||
*/
|
||||
sendRequest: {
|
||||
methodKind: "unary";
|
||||
input: typeof RequestValidationSchema;
|
||||
output: typeof EmptySchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc email.EmailValidation.ValidateEmail
|
||||
*/
|
||||
validateEmail: {
|
||||
methodKind: "unary";
|
||||
input: typeof ConfirmValidationSchema;
|
||||
output: typeof EmptySchema;
|
||||
};
|
||||
}>;
|
||||
//# sourceMappingURL=email_v1_pb.d.ts.map
|
||||
1
dist/api/email/v1/email_v1_pb.d.ts.map
vendored
Normal file
1
dist/api/email/v1/email_v1_pb.d.ts.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"email_v1_pb.d.ts","sourceRoot":"","sources":["../../../../src/api/email/v1/email_v1_pb.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAEpF,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;AAE1D,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,sBAAsB,EAAE,OACie,CAAC;AAEvgB;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC,yBAAyB,CAAC,GAAG;IACnE;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,uBAAuB,EAAE,UAAU,CAAC,iBAAiB,CAC1B,CAAC;AAEzC;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC,yBAAyB,CAAC,GAAG;IACnE;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,uBAAuB,EAAE,UAAU,CAAC,iBAAiB,CAC1B,CAAC;AAEzC;;;;;GAKG;AACH,eAAO,MAAM,eAAe,EAAE,UAAU,CAAC;IACvC;;OAEG;IACH,WAAW,EAAE;QACX,UAAU,EAAE,OAAO,CAAC;QACpB,KAAK,EAAE,OAAO,uBAAuB,CAAC;QACtC,MAAM,EAAE,OAAO,WAAW,CAAC;KAC5B,CAAC;IACF;;OAEG;IACH,aAAa,EAAE;QACb,UAAU,EAAE,OAAO,CAAC;QACpB,KAAK,EAAE,OAAO,uBAAuB,CAAC;QACtC,MAAM,EAAE,OAAO,WAAW,CAAC;KAC5B,CAAC;CACH,CACuC,CAAC"}
|
||||
26
dist/api/email/v1/email_v1_pb.js
vendored
Normal file
26
dist/api/email/v1/email_v1_pb.js
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
// @generated by protoc-gen-es v2.12.0 with parameter "target=ts"
|
||||
// @generated from file email/v1/email_v1.proto (package email, syntax proto3)
|
||||
/* eslint-disable */
|
||||
import { fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2";
|
||||
import { file_google_protobuf_empty } from "@bufbuild/protobuf/wkt";
|
||||
/**
|
||||
* Describes the file email/v1/email_v1.proto.
|
||||
*/
|
||||
export const file_email_v1_email_v1 = /*@__PURE__*/ fileDesc("ChdlbWFpbC92MS9lbWFpbF92MS5wcm90bxIFZW1haWwiJAoRUmVxdWVzdFZhbGlkYXRpb24SDwoHdXNlcl9pZBgBIAEoCSIyChFDb25maXJtVmFsaWRhdGlvbhIPCgd1c2VyX2lkGAEgASgJEgwKBGNvZGUYAiABKAUymQEKD0VtYWlsVmFsaWRhdGlvbhJBCgtTZW5kUmVxdWVzdBIYLmVtYWlsLlJlcXVlc3RWYWxpZGF0aW9uGhYuZ29vZ2xlLnByb3RvYnVmLkVtcHR5IgASQwoNVmFsaWRhdGVFbWFpbBIYLmVtYWlsLkNvbmZpcm1WYWxpZGF0aW9uGhYuZ29vZ2xlLnByb3RvYnVmLkVtcHR5IgBCQ1pBZ2l0ZWEuYmFkaG91c2VwbGFudHMubmV0L3NvZnRwbGF5ZXIvc29mdHBsYXllci1nby1wcm90by9wa2cvZW1haWxiBnByb3RvMw", [file_google_protobuf_empty]);
|
||||
/**
|
||||
* Describes the message email.RequestValidation.
|
||||
* Use `create(RequestValidationSchema)` to create a new message.
|
||||
*/
|
||||
export const RequestValidationSchema = /*@__PURE__*/ messageDesc(file_email_v1_email_v1, 0);
|
||||
/**
|
||||
* Describes the message email.ConfirmValidation.
|
||||
* Use `create(ConfirmValidationSchema)` to create a new message.
|
||||
*/
|
||||
export const ConfirmValidationSchema = /*@__PURE__*/ messageDesc(file_email_v1_email_v1, 1);
|
||||
/**
|
||||
*
|
||||
* A service that should handle email validation
|
||||
*
|
||||
* @generated from service email.EmailValidation
|
||||
*/
|
||||
export const EmailValidation = /*@__PURE__*/ serviceDesc(file_email_v1_email_v1, 0);
|
||||
413
dist/api/environments/v1/environments_v1_pb.d.ts
vendored
Normal file
413
dist/api/environments/v1/environments_v1_pb.d.ts
vendored
Normal file
@@ -0,0 +1,413 @@
|
||||
import type { GenEnum, GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
||||
import type { EmptySchema } from "@bufbuild/protobuf/wkt";
|
||||
import type { Message } from "@bufbuild/protobuf";
|
||||
/**
|
||||
* Describes the file environments/v1/environments_v1.proto.
|
||||
*/
|
||||
export declare const file_environments_v1_environments_v1: GenFile;
|
||||
/**
|
||||
* @generated from message environments.OwnerId
|
||||
*/
|
||||
export type OwnerId = Message<"environments.OwnerId"> & {
|
||||
/**
|
||||
* UUID of a user that is creating an environemnt
|
||||
*
|
||||
* @generated from field: string uuid = 1;
|
||||
*/
|
||||
uuid: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message environments.OwnerId.
|
||||
* Use `create(OwnerIdSchema)` to create a new message.
|
||||
*/
|
||||
export declare const OwnerIdSchema: GenMessage<OwnerId>;
|
||||
/**
|
||||
* @generated from message environments.Token
|
||||
*/
|
||||
export type Token = Message<"environments.Token"> & {
|
||||
/**
|
||||
* Token that should be used to create an environment
|
||||
*
|
||||
* @generated from field: string token = 1;
|
||||
*/
|
||||
token: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message environments.Token.
|
||||
* Use `create(TokenSchema)` to create a new message.
|
||||
*/
|
||||
export declare const TokenSchema: GenMessage<Token>;
|
||||
/**
|
||||
* @generated from message environments.CreateOptions
|
||||
*/
|
||||
export type CreateOptions = Message<"environments.CreateOptions"> & {
|
||||
/**
|
||||
* @generated from field: environments.EnvironmentMetadata metadata = 1;
|
||||
*/
|
||||
metadata?: EnvironmentMetadata | undefined;
|
||||
/**
|
||||
* @generated from field: environments.EnvironmentSpec spec = 2;
|
||||
*/
|
||||
spec?: EnvironmentSpec | undefined;
|
||||
/**
|
||||
* @generated from field: environments.OwnerId owner_id = 3;
|
||||
*/
|
||||
ownerId?: OwnerId | undefined;
|
||||
/**
|
||||
* @generated from field: environments.Token token = 4;
|
||||
*/
|
||||
token?: Token | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message environments.CreateOptions.
|
||||
* Use `create(CreateOptionsSchema)` to create a new message.
|
||||
*/
|
||||
export declare const CreateOptionsSchema: GenMessage<CreateOptions>;
|
||||
/**
|
||||
* @generated from message environments.UpdateOptions
|
||||
*/
|
||||
export type UpdateOptions = Message<"environments.UpdateOptions"> & {
|
||||
/**
|
||||
* @generated from field: environments.EnvironmentId id = 1;
|
||||
*/
|
||||
id?: EnvironmentId | undefined;
|
||||
/**
|
||||
* @generated from field: environments.EnvironmentMetadata metadata = 2;
|
||||
*/
|
||||
metadata?: EnvironmentMetadata | undefined;
|
||||
/**
|
||||
* @generated from field: environments.EnvironmentSpec spec = 3;
|
||||
*/
|
||||
spec?: EnvironmentSpec | undefined;
|
||||
/**
|
||||
* @generated from field: environments.OwnerId owner_id = 4;
|
||||
*/
|
||||
ownerId?: OwnerId | undefined;
|
||||
/**
|
||||
* @generated from field: environments.Token token = 5;
|
||||
*/
|
||||
token?: Token | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message environments.UpdateOptions.
|
||||
* Use `create(UpdateOptionsSchema)` to create a new message.
|
||||
*/
|
||||
export declare const UpdateOptionsSchema: GenMessage<UpdateOptions>;
|
||||
/**
|
||||
* @generated from message environments.DeleteOptions
|
||||
*/
|
||||
export type DeleteOptions = Message<"environments.DeleteOptions"> & {
|
||||
/**
|
||||
* @generated from field: environments.EnvironmentId id = 1;
|
||||
*/
|
||||
id?: EnvironmentId | undefined;
|
||||
/**
|
||||
* @generated from field: environments.EnvironmentMetadata metadata = 2;
|
||||
*/
|
||||
metadata?: EnvironmentMetadata | undefined;
|
||||
/**
|
||||
* @generated from field: environments.OwnerId owner_id = 3;
|
||||
*/
|
||||
ownerId?: OwnerId | undefined;
|
||||
/**
|
||||
* @generated from field: environments.Token token = 4;
|
||||
*/
|
||||
token?: Token | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message environments.DeleteOptions.
|
||||
* Use `create(DeleteOptionsSchema)` to create a new message.
|
||||
*/
|
||||
export declare const DeleteOptionsSchema: GenMessage<DeleteOptions>;
|
||||
/**
|
||||
* @generated from message environments.GetOptions
|
||||
*/
|
||||
export type GetOptions = Message<"environments.GetOptions"> & {
|
||||
/**
|
||||
* @generated from field: environments.EnvironmentId id = 1;
|
||||
*/
|
||||
id?: EnvironmentId | undefined;
|
||||
/**
|
||||
* @generated from field: environments.EnvironmentMetadata metadata = 2;
|
||||
*/
|
||||
metadata?: EnvironmentMetadata | undefined;
|
||||
/**
|
||||
* @generated from field: environments.OwnerId owner_id = 3;
|
||||
*/
|
||||
ownerId?: OwnerId | undefined;
|
||||
/**
|
||||
* @generated from field: environments.Token token = 4;
|
||||
*/
|
||||
token?: Token | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message environments.GetOptions.
|
||||
* Use `create(GetOptionsSchema)` to create a new message.
|
||||
*/
|
||||
export declare const GetOptionsSchema: GenMessage<GetOptions>;
|
||||
/**
|
||||
* @generated from message environments.ListOptions
|
||||
*/
|
||||
export type ListOptions = Message<"environments.ListOptions"> & {
|
||||
/**
|
||||
* @generated from field: environments.EnvironmentMetadata metadata = 1;
|
||||
*/
|
||||
metadata?: EnvironmentMetadata | undefined;
|
||||
/**
|
||||
* @generated from field: string search_string = 2;
|
||||
*/
|
||||
searchString: string;
|
||||
/**
|
||||
* @generated from field: environments.OwnerId owner_id = 3;
|
||||
*/
|
||||
ownerId?: OwnerId | undefined;
|
||||
/**
|
||||
* @generated from field: environments.Token token = 4;
|
||||
*/
|
||||
token?: Token | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message environments.ListOptions.
|
||||
* Use `create(ListOptionsSchema)` to create a new message.
|
||||
*/
|
||||
export declare const ListOptionsSchema: GenMessage<ListOptions>;
|
||||
/**
|
||||
* @generated from message environments.EnvironmentId
|
||||
*/
|
||||
export type EnvironmentId = Message<"environments.EnvironmentId"> & {
|
||||
/**
|
||||
* @generated from field: string uuid = 1;
|
||||
*/
|
||||
uuid: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message environments.EnvironmentId.
|
||||
* Use `create(EnvironmentIdSchema)` to create a new message.
|
||||
*/
|
||||
export declare const EnvironmentIdSchema: GenMessage<EnvironmentId>;
|
||||
/**
|
||||
* @generated from message environments.EnvironmentMetadata
|
||||
*/
|
||||
export type EnvironmentMetadata = Message<"environments.EnvironmentMetadata"> & {
|
||||
/**
|
||||
* A name of the environment
|
||||
*
|
||||
* @generated from field: string name = 1;
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* @generated from field: string description = 2;
|
||||
*/
|
||||
description: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message environments.EnvironmentMetadata.
|
||||
* Use `create(EnvironmentMetadataSchema)` to create a new message.
|
||||
*/
|
||||
export declare const EnvironmentMetadataSchema: GenMessage<EnvironmentMetadata>;
|
||||
/**
|
||||
* @generated from message environments.EnvironmentSpec
|
||||
*/
|
||||
export type EnvironmentSpec = Message<"environments.EnvironmentSpec"> & {
|
||||
/**
|
||||
* Provide
|
||||
*
|
||||
* @generated from field: environments.Provider provider = 1;
|
||||
*/
|
||||
provider: Provider;
|
||||
/**
|
||||
* @generated from field: environments.Kubernetes kubernetes = 2;
|
||||
*/
|
||||
kubernetes: Kubernetes;
|
||||
/**
|
||||
* @generated from field: environments.ServerType server_type = 3;
|
||||
*/
|
||||
serverType: ServerType;
|
||||
/**
|
||||
* @generated from field: environments.Location server_location = 4;
|
||||
*/
|
||||
serverLocation: Location;
|
||||
/**
|
||||
* @generated from field: int32 disk_size = 5;
|
||||
*/
|
||||
diskSize: number;
|
||||
};
|
||||
/**
|
||||
* Describes the message environments.EnvironmentSpec.
|
||||
* Use `create(EnvironmentSpecSchema)` to create a new message.
|
||||
*/
|
||||
export declare const EnvironmentSpecSchema: GenMessage<EnvironmentSpec>;
|
||||
/**
|
||||
* @generated from message environments.EnvironmentFull
|
||||
*/
|
||||
export type EnvironmentFull = Message<"environments.EnvironmentFull"> & {
|
||||
/**
|
||||
* @generated from field: environments.EnvironmentMetadata metadata = 1;
|
||||
*/
|
||||
metadata?: EnvironmentMetadata | undefined;
|
||||
/**
|
||||
* @generated from field: environments.EnvironmentSpec spec = 2;
|
||||
*/
|
||||
spec?: EnvironmentSpec | undefined;
|
||||
/**
|
||||
* @generated from field: environments.EnvironmentId id = 3;
|
||||
*/
|
||||
id?: EnvironmentId | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message environments.EnvironmentFull.
|
||||
* Use `create(EnvironmentFullSchema)` to create a new message.
|
||||
*/
|
||||
export declare const EnvironmentFullSchema: GenMessage<EnvironmentFull>;
|
||||
/**
|
||||
* *
|
||||
* Helpers and other messages
|
||||
*
|
||||
* @generated from enum environments.Provider
|
||||
*/
|
||||
export declare enum Provider {
|
||||
/**
|
||||
* @generated from enum value: PROVIDER_UNSPECIFIED = 0;
|
||||
*/
|
||||
UNSPECIFIED = 0,
|
||||
/**
|
||||
* @generated from enum value: PROVIDER_HETZNER = 1;
|
||||
*/
|
||||
HETZNER = 1
|
||||
}
|
||||
/**
|
||||
* Describes the enum environments.Provider.
|
||||
*/
|
||||
export declare const ProviderSchema: GenEnum<Provider>;
|
||||
/**
|
||||
* @generated from enum environments.ServerType
|
||||
*/
|
||||
export declare enum ServerType {
|
||||
/**
|
||||
* @generated from enum value: SERVER_TYPE_UNSPECIFIED = 0;
|
||||
*/
|
||||
UNSPECIFIED = 0,
|
||||
/**
|
||||
* @generated from enum value: SERVER_TYPE_STARTER = 1;
|
||||
*/
|
||||
STARTER = 1,
|
||||
/**
|
||||
* @generated from enum value: SERVER_TYPE_REGULAR = 2;
|
||||
*/
|
||||
REGULAR = 2,
|
||||
/**
|
||||
* @generated from enum value: SERVER_TYPE_PLUS = 3;
|
||||
*/
|
||||
PLUS = 3,
|
||||
/**
|
||||
* @generated from enum value: SERVER_TYPE_PRO = 4;
|
||||
*/
|
||||
PRO = 4,
|
||||
/**
|
||||
* @generated from enum value: SERVER_TYPE_CUSTOM = 5;
|
||||
*/
|
||||
CUSTOM = 5
|
||||
}
|
||||
/**
|
||||
* Describes the enum environments.ServerType.
|
||||
*/
|
||||
export declare const ServerTypeSchema: GenEnum<ServerType>;
|
||||
/**
|
||||
* @generated from enum environments.Location
|
||||
*/
|
||||
export declare enum Location {
|
||||
/**
|
||||
* @generated from enum value: LOCATION_UNSPECIFIED = 0;
|
||||
*/
|
||||
UNSPECIFIED = 0,
|
||||
/**
|
||||
* @generated from enum value: LOCATION_HETZNER_NUREMBERG = 1;
|
||||
*/
|
||||
HETZNER_NUREMBERG = 1,
|
||||
/**
|
||||
* @generated from enum value: LOCATION_HETZNER_FALKENSTEIN = 2;
|
||||
*/
|
||||
HETZNER_FALKENSTEIN = 2,
|
||||
/**
|
||||
* @generated from enum value: LOCATION_HETZNER_HELSINKI = 3;
|
||||
*/
|
||||
HETZNER_HELSINKI = 3,
|
||||
/**
|
||||
* @generated from enum value: LOCATION_HETZNER_HILLSBORO = 4;
|
||||
*/
|
||||
HETZNER_HILLSBORO = 4,
|
||||
/**
|
||||
* @generated from enum value: LOCATION_HETZNER_ASHBURN = 5;
|
||||
*/
|
||||
HETZNER_ASHBURN = 5
|
||||
}
|
||||
/**
|
||||
* Describes the enum environments.Location.
|
||||
*/
|
||||
export declare const LocationSchema: GenEnum<Location>;
|
||||
/**
|
||||
* @generated from enum environments.Kubernetes
|
||||
*/
|
||||
export declare enum Kubernetes {
|
||||
/**
|
||||
* @generated from enum value: KUBERNETES_UNSPECIFIED = 0;
|
||||
*/
|
||||
UNSPECIFIED = 0,
|
||||
/**
|
||||
* @generated from enum value: KUBERNETES_K3S = 1;
|
||||
*/
|
||||
K3S = 1
|
||||
}
|
||||
/**
|
||||
* Describes the enum environments.Kubernetes.
|
||||
*/
|
||||
export declare const KubernetesSchema: GenEnum<Kubernetes>;
|
||||
/**
|
||||
* *
|
||||
* Service for handling environments
|
||||
*
|
||||
* @generated from service environments.Environments
|
||||
*/
|
||||
export declare const Environments: GenService<{
|
||||
/**
|
||||
* @generated from rpc environments.Environments.Create
|
||||
*/
|
||||
create: {
|
||||
methodKind: "unary";
|
||||
input: typeof CreateOptionsSchema;
|
||||
output: typeof EnvironmentFullSchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc environments.Environments.Update
|
||||
*/
|
||||
update: {
|
||||
methodKind: "unary";
|
||||
input: typeof UpdateOptionsSchema;
|
||||
output: typeof EnvironmentFullSchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc environments.Environments.Delete
|
||||
*/
|
||||
delete: {
|
||||
methodKind: "unary";
|
||||
input: typeof DeleteOptionsSchema;
|
||||
output: typeof EmptySchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc environments.Environments.Get
|
||||
*/
|
||||
get: {
|
||||
methodKind: "unary";
|
||||
input: typeof GetOptionsSchema;
|
||||
output: typeof EnvironmentFullSchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc environments.Environments.List
|
||||
*/
|
||||
list: {
|
||||
methodKind: "server_streaming";
|
||||
input: typeof ListOptionsSchema;
|
||||
output: typeof EnvironmentFullSchema;
|
||||
};
|
||||
}>;
|
||||
//# sourceMappingURL=environments_v1_pb.d.ts.map
|
||||
1
dist/api/environments/v1/environments_v1_pb.d.ts.map
vendored
Normal file
1
dist/api/environments/v1/environments_v1_pb.d.ts.map
vendored
Normal file
File diff suppressed because one or more lines are too long
176
dist/api/environments/v1/environments_v1_pb.js
vendored
Normal file
176
dist/api/environments/v1/environments_v1_pb.js
vendored
Normal file
@@ -0,0 +1,176 @@
|
||||
/// This file has messages for describing environments
|
||||
import { enumDesc, fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2";
|
||||
import { file_google_protobuf_empty } from "@bufbuild/protobuf/wkt";
|
||||
/**
|
||||
* Describes the file environments/v1/environments_v1.proto.
|
||||
*/
|
||||
export const file_environments_v1_environments_v1 = /*@__PURE__*/ fileDesc("CiVlbnZpcm9ubWVudHMvdjEvZW52aXJvbm1lbnRzX3YxLnByb3RvEgxlbnZpcm9ubWVudHMiFwoHT3duZXJJZBIMCgR1dWlkGAEgASgJIhYKBVRva2VuEg0KBXRva2VuGAEgASgJIr4BCg1DcmVhdGVPcHRpb25zEjMKCG1ldGFkYXRhGAEgASgLMiEuZW52aXJvbm1lbnRzLkVudmlyb25tZW50TWV0YWRhdGESKwoEc3BlYxgCIAEoCzIdLmVudmlyb25tZW50cy5FbnZpcm9ubWVudFNwZWMSJwoIb3duZXJfaWQYAyABKAsyFS5lbnZpcm9ubWVudHMuT3duZXJJZBIiCgV0b2tlbhgEIAEoCzITLmVudmlyb25tZW50cy5Ub2tlbiLnAQoNVXBkYXRlT3B0aW9ucxInCgJpZBgBIAEoCzIbLmVudmlyb25tZW50cy5FbnZpcm9ubWVudElkEjMKCG1ldGFkYXRhGAIgASgLMiEuZW52aXJvbm1lbnRzLkVudmlyb25tZW50TWV0YWRhdGESKwoEc3BlYxgDIAEoCzIdLmVudmlyb25tZW50cy5FbnZpcm9ubWVudFNwZWMSJwoIb3duZXJfaWQYBCABKAsyFS5lbnZpcm9ubWVudHMuT3duZXJJZBIiCgV0b2tlbhgFIAEoCzITLmVudmlyb25tZW50cy5Ub2tlbiK6AQoNRGVsZXRlT3B0aW9ucxInCgJpZBgBIAEoCzIbLmVudmlyb25tZW50cy5FbnZpcm9ubWVudElkEjMKCG1ldGFkYXRhGAIgASgLMiEuZW52aXJvbm1lbnRzLkVudmlyb25tZW50TWV0YWRhdGESJwoIb3duZXJfaWQYAyABKAsyFS5lbnZpcm9ubWVudHMuT3duZXJJZBIiCgV0b2tlbhgEIAEoCzITLmVudmlyb25tZW50cy5Ub2tlbiK3AQoKR2V0T3B0aW9ucxInCgJpZBgBIAEoCzIbLmVudmlyb25tZW50cy5FbnZpcm9ubWVudElkEjMKCG1ldGFkYXRhGAIgASgLMiEuZW52aXJvbm1lbnRzLkVudmlyb25tZW50TWV0YWRhdGESJwoIb3duZXJfaWQYAyABKAsyFS5lbnZpcm9ubWVudHMuT3duZXJJZBIiCgV0b2tlbhgEIAEoCzITLmVudmlyb25tZW50cy5Ub2tlbiKmAQoLTGlzdE9wdGlvbnMSMwoIbWV0YWRhdGEYASABKAsyIS5lbnZpcm9ubWVudHMuRW52aXJvbm1lbnRNZXRhZGF0YRIVCg1zZWFyY2hfc3RyaW5nGAIgASgJEicKCG93bmVyX2lkGAMgASgLMhUuZW52aXJvbm1lbnRzLk93bmVySWQSIgoFdG9rZW4YBCABKAsyEy5lbnZpcm9ubWVudHMuVG9rZW4iHQoNRW52aXJvbm1lbnRJZBIMCgR1dWlkGAEgASgJIjgKE0Vudmlyb25tZW50TWV0YWRhdGESDAoEbmFtZRgBIAEoCRITCgtkZXNjcmlwdGlvbhgCIAEoCSLcAQoPRW52aXJvbm1lbnRTcGVjEigKCHByb3ZpZGVyGAEgASgOMhYuZW52aXJvbm1lbnRzLlByb3ZpZGVyEiwKCmt1YmVybmV0ZXMYAiABKA4yGC5lbnZpcm9ubWVudHMuS3ViZXJuZXRlcxItCgtzZXJ2ZXJfdHlwZRgDIAEoDjIYLmVudmlyb25tZW50cy5TZXJ2ZXJUeXBlEi8KD3NlcnZlcl9sb2NhdGlvbhgEIAEoDjIWLmVudmlyb25tZW50cy5Mb2NhdGlvbhIRCglkaXNrX3NpemUYBSABKAUinAEKD0Vudmlyb25tZW50RnVsbBIzCghtZXRhZGF0YRgBIAEoCzIhLmVudmlyb25tZW50cy5FbnZpcm9ubWVudE1ldGFkYXRhEisKBHNwZWMYAiABKAsyHS5lbnZpcm9ubWVudHMuRW52aXJvbm1lbnRTcGVjEicKAmlkGAMgASgLMhsuZW52aXJvbm1lbnRzLkVudmlyb25tZW50SWQqOgoIUHJvdmlkZXISGAoUUFJPVklERVJfVU5TUEVDSUZJRUQQABIUChBQUk9WSURFUl9IRVRaTkVSEAEqngEKClNlcnZlclR5cGUSGwoXU0VSVkVSX1RZUEVfVU5TUEVDSUZJRUQQABIXChNTRVJWRVJfVFlQRV9TVEFSVEVSEAESFwoTU0VSVkVSX1RZUEVfUkVHVUxBUhACEhQKEFNFUlZFUl9UWVBFX1BMVVMQAxITCg9TRVJWRVJfVFlQRV9QUk8QBBIWChJTRVJWRVJfVFlQRV9DVVNUT00QBSrDAQoITG9jYXRpb24SGAoUTE9DQVRJT05fVU5TUEVDSUZJRUQQABIeChpMT0NBVElPTl9IRVRaTkVSX05VUkVNQkVSRxABEiAKHExPQ0FUSU9OX0hFVFpORVJfRkFMS0VOU1RFSU4QAhIdChlMT0NBVElPTl9IRVRaTkVSX0hFTFNJTktJEAMSHgoaTE9DQVRJT05fSEVUWk5FUl9ISUxMU0JPUk8QBBIcChhMT0NBVElPTl9IRVRaTkVSX0FTSEJVUk4QBSo8CgpLdWJlcm5ldGVzEhoKFktVQkVSTkVURVNfVU5TUEVDSUZJRUQQABISCg5LVUJFUk5FVEVTX0szUxABMucCCgxFbnZpcm9ubWVudHMSRgoGQ3JlYXRlEhsuZW52aXJvbm1lbnRzLkNyZWF0ZU9wdGlvbnMaHS5lbnZpcm9ubWVudHMuRW52aXJvbm1lbnRGdWxsIgASRgoGVXBkYXRlEhsuZW52aXJvbm1lbnRzLlVwZGF0ZU9wdGlvbnMaHS5lbnZpcm9ubWVudHMuRW52aXJvbm1lbnRGdWxsIgASPwoGRGVsZXRlEhsuZW52aXJvbm1lbnRzLkRlbGV0ZU9wdGlvbnMaFi5nb29nbGUucHJvdG9idWYuRW1wdHkiABJACgNHZXQSGC5lbnZpcm9ubWVudHMuR2V0T3B0aW9ucxodLmVudmlyb25tZW50cy5FbnZpcm9ubWVudEZ1bGwiABJECgRMaXN0EhkuZW52aXJvbm1lbnRzLkxpc3RPcHRpb25zGh0uZW52aXJvbm1lbnRzLkVudmlyb25tZW50RnVsbCIAMAFCSlpIZ2l0ZWEuYmFkaG91c2VwbGFudHMubmV0L3NvZnRwbGF5ZXIvc29mdHBsYXllci1nby1wcm90by9wa2cvZW52aXJvbm1lbnRzYgZwcm90bzM", [file_google_protobuf_empty]);
|
||||
/**
|
||||
* Describes the message environments.OwnerId.
|
||||
* Use `create(OwnerIdSchema)` to create a new message.
|
||||
*/
|
||||
export const OwnerIdSchema = /*@__PURE__*/ messageDesc(file_environments_v1_environments_v1, 0);
|
||||
/**
|
||||
* Describes the message environments.Token.
|
||||
* Use `create(TokenSchema)` to create a new message.
|
||||
*/
|
||||
export const TokenSchema = /*@__PURE__*/ messageDesc(file_environments_v1_environments_v1, 1);
|
||||
/**
|
||||
* Describes the message environments.CreateOptions.
|
||||
* Use `create(CreateOptionsSchema)` to create a new message.
|
||||
*/
|
||||
export const CreateOptionsSchema = /*@__PURE__*/ messageDesc(file_environments_v1_environments_v1, 2);
|
||||
/**
|
||||
* Describes the message environments.UpdateOptions.
|
||||
* Use `create(UpdateOptionsSchema)` to create a new message.
|
||||
*/
|
||||
export const UpdateOptionsSchema = /*@__PURE__*/ messageDesc(file_environments_v1_environments_v1, 3);
|
||||
/**
|
||||
* Describes the message environments.DeleteOptions.
|
||||
* Use `create(DeleteOptionsSchema)` to create a new message.
|
||||
*/
|
||||
export const DeleteOptionsSchema = /*@__PURE__*/ messageDesc(file_environments_v1_environments_v1, 4);
|
||||
/**
|
||||
* Describes the message environments.GetOptions.
|
||||
* Use `create(GetOptionsSchema)` to create a new message.
|
||||
*/
|
||||
export const GetOptionsSchema = /*@__PURE__*/ messageDesc(file_environments_v1_environments_v1, 5);
|
||||
/**
|
||||
* Describes the message environments.ListOptions.
|
||||
* Use `create(ListOptionsSchema)` to create a new message.
|
||||
*/
|
||||
export const ListOptionsSchema = /*@__PURE__*/ messageDesc(file_environments_v1_environments_v1, 6);
|
||||
/**
|
||||
* Describes the message environments.EnvironmentId.
|
||||
* Use `create(EnvironmentIdSchema)` to create a new message.
|
||||
*/
|
||||
export const EnvironmentIdSchema = /*@__PURE__*/ messageDesc(file_environments_v1_environments_v1, 7);
|
||||
/**
|
||||
* Describes the message environments.EnvironmentMetadata.
|
||||
* Use `create(EnvironmentMetadataSchema)` to create a new message.
|
||||
*/
|
||||
export const EnvironmentMetadataSchema = /*@__PURE__*/ messageDesc(file_environments_v1_environments_v1, 8);
|
||||
/**
|
||||
* Describes the message environments.EnvironmentSpec.
|
||||
* Use `create(EnvironmentSpecSchema)` to create a new message.
|
||||
*/
|
||||
export const EnvironmentSpecSchema = /*@__PURE__*/ messageDesc(file_environments_v1_environments_v1, 9);
|
||||
/**
|
||||
* Describes the message environments.EnvironmentFull.
|
||||
* Use `create(EnvironmentFullSchema)` to create a new message.
|
||||
*/
|
||||
export const EnvironmentFullSchema = /*@__PURE__*/ messageDesc(file_environments_v1_environments_v1, 10);
|
||||
/**
|
||||
* *
|
||||
* Helpers and other messages
|
||||
*
|
||||
* @generated from enum environments.Provider
|
||||
*/
|
||||
export var Provider;
|
||||
(function (Provider) {
|
||||
/**
|
||||
* @generated from enum value: PROVIDER_UNSPECIFIED = 0;
|
||||
*/
|
||||
Provider[Provider["UNSPECIFIED"] = 0] = "UNSPECIFIED";
|
||||
/**
|
||||
* @generated from enum value: PROVIDER_HETZNER = 1;
|
||||
*/
|
||||
Provider[Provider["HETZNER"] = 1] = "HETZNER";
|
||||
})(Provider || (Provider = {}));
|
||||
/**
|
||||
* Describes the enum environments.Provider.
|
||||
*/
|
||||
export const ProviderSchema = /*@__PURE__*/ enumDesc(file_environments_v1_environments_v1, 0);
|
||||
/**
|
||||
* @generated from enum environments.ServerType
|
||||
*/
|
||||
export var ServerType;
|
||||
(function (ServerType) {
|
||||
/**
|
||||
* @generated from enum value: SERVER_TYPE_UNSPECIFIED = 0;
|
||||
*/
|
||||
ServerType[ServerType["UNSPECIFIED"] = 0] = "UNSPECIFIED";
|
||||
/**
|
||||
* @generated from enum value: SERVER_TYPE_STARTER = 1;
|
||||
*/
|
||||
ServerType[ServerType["STARTER"] = 1] = "STARTER";
|
||||
/**
|
||||
* @generated from enum value: SERVER_TYPE_REGULAR = 2;
|
||||
*/
|
||||
ServerType[ServerType["REGULAR"] = 2] = "REGULAR";
|
||||
/**
|
||||
* @generated from enum value: SERVER_TYPE_PLUS = 3;
|
||||
*/
|
||||
ServerType[ServerType["PLUS"] = 3] = "PLUS";
|
||||
/**
|
||||
* @generated from enum value: SERVER_TYPE_PRO = 4;
|
||||
*/
|
||||
ServerType[ServerType["PRO"] = 4] = "PRO";
|
||||
/**
|
||||
* @generated from enum value: SERVER_TYPE_CUSTOM = 5;
|
||||
*/
|
||||
ServerType[ServerType["CUSTOM"] = 5] = "CUSTOM";
|
||||
})(ServerType || (ServerType = {}));
|
||||
/**
|
||||
* Describes the enum environments.ServerType.
|
||||
*/
|
||||
export const ServerTypeSchema = /*@__PURE__*/ enumDesc(file_environments_v1_environments_v1, 1);
|
||||
/**
|
||||
* @generated from enum environments.Location
|
||||
*/
|
||||
export var Location;
|
||||
(function (Location) {
|
||||
/**
|
||||
* @generated from enum value: LOCATION_UNSPECIFIED = 0;
|
||||
*/
|
||||
Location[Location["UNSPECIFIED"] = 0] = "UNSPECIFIED";
|
||||
/**
|
||||
* @generated from enum value: LOCATION_HETZNER_NUREMBERG = 1;
|
||||
*/
|
||||
Location[Location["HETZNER_NUREMBERG"] = 1] = "HETZNER_NUREMBERG";
|
||||
/**
|
||||
* @generated from enum value: LOCATION_HETZNER_FALKENSTEIN = 2;
|
||||
*/
|
||||
Location[Location["HETZNER_FALKENSTEIN"] = 2] = "HETZNER_FALKENSTEIN";
|
||||
/**
|
||||
* @generated from enum value: LOCATION_HETZNER_HELSINKI = 3;
|
||||
*/
|
||||
Location[Location["HETZNER_HELSINKI"] = 3] = "HETZNER_HELSINKI";
|
||||
/**
|
||||
* @generated from enum value: LOCATION_HETZNER_HILLSBORO = 4;
|
||||
*/
|
||||
Location[Location["HETZNER_HILLSBORO"] = 4] = "HETZNER_HILLSBORO";
|
||||
/**
|
||||
* @generated from enum value: LOCATION_HETZNER_ASHBURN = 5;
|
||||
*/
|
||||
Location[Location["HETZNER_ASHBURN"] = 5] = "HETZNER_ASHBURN";
|
||||
})(Location || (Location = {}));
|
||||
/**
|
||||
* Describes the enum environments.Location.
|
||||
*/
|
||||
export const LocationSchema = /*@__PURE__*/ enumDesc(file_environments_v1_environments_v1, 2);
|
||||
/**
|
||||
* @generated from enum environments.Kubernetes
|
||||
*/
|
||||
export var Kubernetes;
|
||||
(function (Kubernetes) {
|
||||
/**
|
||||
* @generated from enum value: KUBERNETES_UNSPECIFIED = 0;
|
||||
*/
|
||||
Kubernetes[Kubernetes["UNSPECIFIED"] = 0] = "UNSPECIFIED";
|
||||
/**
|
||||
* @generated from enum value: KUBERNETES_K3S = 1;
|
||||
*/
|
||||
Kubernetes[Kubernetes["K3S"] = 1] = "K3S";
|
||||
})(Kubernetes || (Kubernetes = {}));
|
||||
/**
|
||||
* Describes the enum environments.Kubernetes.
|
||||
*/
|
||||
export const KubernetesSchema = /*@__PURE__*/ enumDesc(file_environments_v1_environments_v1, 3);
|
||||
/**
|
||||
* *
|
||||
* Service for handling environments
|
||||
*
|
||||
* @generated from service environments.Environments
|
||||
*/
|
||||
export const Environments = /*@__PURE__*/ serviceDesc(file_environments_v1_environments_v1, 0);
|
||||
67
dist/api/test/v1/test_v1_pb.d.ts
vendored
Normal file
67
dist/api/test/v1/test_v1_pb.d.ts
vendored
Normal file
@@ -0,0 +1,67 @@
|
||||
import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
||||
import type { Message } from "@bufbuild/protobuf";
|
||||
/**
|
||||
* Describes the file test/v1/test_v1.proto.
|
||||
*/
|
||||
export declare const file_test_v1_test_v1: GenFile;
|
||||
/**
|
||||
* @generated from message test.v1.PingRequest
|
||||
*/
|
||||
export type PingRequest = Message<"test.v1.PingRequest"> & {};
|
||||
/**
|
||||
* Describes the message test.v1.PingRequest.
|
||||
* Use `create(PingRequestSchema)` to create a new message.
|
||||
*/
|
||||
export declare const PingRequestSchema: GenMessage<PingRequest>;
|
||||
/**
|
||||
* @generated from message test.v1.PingResponse
|
||||
*/
|
||||
export type PingResponse = Message<"test.v1.PingResponse"> & {};
|
||||
/**
|
||||
* Describes the message test.v1.PingResponse.
|
||||
* Use `create(PingResponseSchema)` to create a new message.
|
||||
*/
|
||||
export declare const PingResponseSchema: GenMessage<PingResponse>;
|
||||
/**
|
||||
* @generated from message test.v1.PongRequest
|
||||
*/
|
||||
export type PongRequest = Message<"test.v1.PongRequest"> & {};
|
||||
/**
|
||||
* Describes the message test.v1.PongRequest.
|
||||
* Use `create(PongRequestSchema)` to create a new message.
|
||||
*/
|
||||
export declare const PongRequestSchema: GenMessage<PongRequest>;
|
||||
/**
|
||||
* @generated from message test.v1.PongResponse
|
||||
*/
|
||||
export type PongResponse = Message<"test.v1.PongResponse"> & {};
|
||||
/**
|
||||
* Describes the message test.v1.PongResponse.
|
||||
* Use `create(PongResponseSchema)` to create a new message.
|
||||
*/
|
||||
export declare const PongResponseSchema: GenMessage<PongResponse>;
|
||||
/**
|
||||
* *
|
||||
* Service for handling environments
|
||||
*
|
||||
* @generated from service test.v1.TestService
|
||||
*/
|
||||
export declare const TestService: GenService<{
|
||||
/**
|
||||
* @generated from rpc test.v1.TestService.Ping
|
||||
*/
|
||||
ping: {
|
||||
methodKind: "unary";
|
||||
input: typeof PingRequestSchema;
|
||||
output: typeof PingResponseSchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc test.v1.TestService.Pong
|
||||
*/
|
||||
pong: {
|
||||
methodKind: "unary";
|
||||
input: typeof PongRequestSchema;
|
||||
output: typeof PongResponseSchema;
|
||||
};
|
||||
}>;
|
||||
//# sourceMappingURL=test_v1_pb.d.ts.map
|
||||
1
dist/api/test/v1/test_v1_pb.d.ts.map
vendored
Normal file
1
dist/api/test/v1/test_v1_pb.d.ts.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"test_v1_pb.d.ts","sourceRoot":"","sources":["../../../../src/api/test/v1/test_v1_pb.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAEpF,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,oBAAoB,EAAE,OACyX,CAAC;AAE7Z;;GAEG;AACH,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,qBAAqB,CAAC,GAAG,EAC1D,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,iBAAiB,EAAE,UAAU,CAAC,WAAW,CAChB,CAAC;AAEvC;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG,OAAO,CAAC,sBAAsB,CAAC,GAAG,EAC5D,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,kBAAkB,EAAE,UAAU,CAAC,YAAY,CAClB,CAAC;AAEvC;;GAEG;AACH,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,qBAAqB,CAAC,GAAG,EAC1D,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,iBAAiB,EAAE,UAAU,CAAC,WAAW,CAChB,CAAC;AAEvC;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG,OAAO,CAAC,sBAAsB,CAAC,GAAG,EAC5D,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,kBAAkB,EAAE,UAAU,CAAC,YAAY,CAClB,CAAC;AAEvC;;;;;GAKG;AACH,eAAO,MAAM,WAAW,EAAE,UAAU,CAAC;IACnC;;OAEG;IACH,IAAI,EAAE;QACJ,UAAU,EAAE,OAAO,CAAC;QACpB,KAAK,EAAE,OAAO,iBAAiB,CAAC;QAChC,MAAM,EAAE,OAAO,kBAAkB,CAAC;KACnC,CAAC;IACF;;OAEG;IACH,IAAI,EAAE;QACJ,UAAU,EAAE,OAAO,CAAC;QACpB,KAAK,EAAE,OAAO,iBAAiB,CAAC;QAChC,MAAM,EAAE,OAAO,kBAAkB,CAAC;KACnC,CAAC;CACH,CACqC,CAAC"}
|
||||
35
dist/api/test/v1/test_v1_pb.js
vendored
Normal file
35
dist/api/test/v1/test_v1_pb.js
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
// @generated by protoc-gen-es v2.12.0 with parameter "target=ts"
|
||||
// @generated from file test/v1/test_v1.proto (package test.v1, syntax proto3)
|
||||
/* eslint-disable */
|
||||
import { fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2";
|
||||
/**
|
||||
* Describes the file test/v1/test_v1.proto.
|
||||
*/
|
||||
export const file_test_v1_test_v1 = /*@__PURE__*/ fileDesc("ChV0ZXN0L3YxL3Rlc3RfdjEucHJvdG8SB3Rlc3QudjEiDQoLUGluZ1JlcXVlc3QiDgoMUGluZ1Jlc3BvbnNlIg0KC1BvbmdSZXF1ZXN0Ig4KDFBvbmdSZXNwb25zZTJ7CgtUZXN0U2VydmljZRI1CgRQaW5nEhQudGVzdC52MS5QaW5nUmVxdWVzdBoVLnRlc3QudjEuUGluZ1Jlc3BvbnNlIgASNQoEUG9uZxIULnRlc3QudjEuUG9uZ1JlcXVlc3QaFS50ZXN0LnYxLlBvbmdSZXNwb25zZSIAQkVaQ2dpdGVhLmJhZGhvdXNlcGxhbnRzLm5ldC9zb2Z0cGxheWVyL3NvZnRwbGF5ZXItZ28tcHJvdG8vcGtnL3Rlc3QvdjFiBnByb3RvMw");
|
||||
/**
|
||||
* Describes the message test.v1.PingRequest.
|
||||
* Use `create(PingRequestSchema)` to create a new message.
|
||||
*/
|
||||
export const PingRequestSchema = /*@__PURE__*/ messageDesc(file_test_v1_test_v1, 0);
|
||||
/**
|
||||
* Describes the message test.v1.PingResponse.
|
||||
* Use `create(PingResponseSchema)` to create a new message.
|
||||
*/
|
||||
export const PingResponseSchema = /*@__PURE__*/ messageDesc(file_test_v1_test_v1, 1);
|
||||
/**
|
||||
* Describes the message test.v1.PongRequest.
|
||||
* Use `create(PongRequestSchema)` to create a new message.
|
||||
*/
|
||||
export const PongRequestSchema = /*@__PURE__*/ messageDesc(file_test_v1_test_v1, 2);
|
||||
/**
|
||||
* Describes the message test.v1.PongResponse.
|
||||
* Use `create(PongResponseSchema)` to create a new message.
|
||||
*/
|
||||
export const PongResponseSchema = /*@__PURE__*/ messageDesc(file_test_v1_test_v1, 3);
|
||||
/**
|
||||
* *
|
||||
* Service for handling environments
|
||||
*
|
||||
* @generated from service test.v1.TestService
|
||||
*/
|
||||
export const TestService = /*@__PURE__*/ serviceDesc(file_test_v1_test_v1, 0);
|
||||
2
dist/index.d.ts
vendored
Normal file
2
dist/index.d.ts
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
export * from "api/accounts/v1/accounts_v1_pb";
|
||||
//# sourceMappingURL=index.d.ts.map
|
||||
1
dist/index.d.ts.map
vendored
Normal file
1
dist/index.d.ts.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,gCAAgC,CAAC"}
|
||||
1
dist/index.js
vendored
Normal file
1
dist/index.js
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export * from "api/accounts/v1/accounts_v1_pb";
|
||||
Reference in New Issue
Block a user