import { PageDirection } from "./resource_pb.mjs"; import { CustomDomain, StaticWebsite } from "./staticwebsite_resource_pb.mjs"; import { GenMessage } from "@bufbuild/protobuf/codegenv2"; import { Message } from "@bufbuild/protobuf"; //#region ../tailor-proto/src/tailor/v1/staticwebsite_pb.d.ts /** * @generated from message tailor.v1.CreateStaticWebsiteRequest */ export declare type CreateStaticWebsiteRequest = Message<"tailor.v1.CreateStaticWebsiteRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: tailor.v1.StaticWebsite staticwebsite = 2; */ staticwebsite?: StaticWebsite; }; /** * Describes the message tailor.v1.CreateStaticWebsiteRequest. * Use `create(CreateStaticWebsiteRequestSchema)` to create a new message. */ export declare const CreateStaticWebsiteRequestSchema: GenMessage; /** * @generated from message tailor.v1.CreateStaticWebsiteResponse */ export declare type CreateStaticWebsiteResponse = Message<"tailor.v1.CreateStaticWebsiteResponse"> & { /** * @generated from field: tailor.v1.StaticWebsite staticwebsite = 1; */ staticwebsite?: StaticWebsite; }; /** * Describes the message tailor.v1.CreateStaticWebsiteResponse. * Use `create(CreateStaticWebsiteResponseSchema)` to create a new message. */ export declare const CreateStaticWebsiteResponseSchema: GenMessage; /** * @generated from message tailor.v1.UpdateStaticWebsiteRequest */ export declare type UpdateStaticWebsiteRequest = Message<"tailor.v1.UpdateStaticWebsiteRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: tailor.v1.StaticWebsite staticwebsite = 2; */ staticwebsite?: StaticWebsite; }; /** * Describes the message tailor.v1.UpdateStaticWebsiteRequest. * Use `create(UpdateStaticWebsiteRequestSchema)` to create a new message. */ export declare const UpdateStaticWebsiteRequestSchema: GenMessage; /** * @generated from message tailor.v1.UpdateStaticWebsiteResponse */ export declare type UpdateStaticWebsiteResponse = Message<"tailor.v1.UpdateStaticWebsiteResponse"> & { /** * @generated from field: tailor.v1.StaticWebsite staticwebsite = 1; */ staticwebsite?: StaticWebsite; }; /** * Describes the message tailor.v1.UpdateStaticWebsiteResponse. * Use `create(UpdateStaticWebsiteResponseSchema)` to create a new message. */ export declare const UpdateStaticWebsiteResponseSchema: GenMessage; /** * @generated from message tailor.v1.GetStaticWebsiteRequest */ export declare type GetStaticWebsiteRequest = Message<"tailor.v1.GetStaticWebsiteRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string name = 2; */ name: string; }; /** * Describes the message tailor.v1.GetStaticWebsiteRequest. * Use `create(GetStaticWebsiteRequestSchema)` to create a new message. */ export declare const GetStaticWebsiteRequestSchema: GenMessage; /** * @generated from message tailor.v1.GetStaticWebsiteResponse */ export declare type GetStaticWebsiteResponse = Message<"tailor.v1.GetStaticWebsiteResponse"> & { /** * @generated from field: tailor.v1.StaticWebsite staticwebsite = 1; */ staticwebsite?: StaticWebsite; }; /** * Describes the message tailor.v1.GetStaticWebsiteResponse. * Use `create(GetStaticWebsiteResponseSchema)` to create a new message. */ export declare const GetStaticWebsiteResponseSchema: GenMessage; /** * @generated from message tailor.v1.DeleteStaticWebsiteRequest */ export declare type DeleteStaticWebsiteRequest = Message<"tailor.v1.DeleteStaticWebsiteRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string name = 2; */ name: string; }; /** * Describes the message tailor.v1.DeleteStaticWebsiteRequest. * Use `create(DeleteStaticWebsiteRequestSchema)` to create a new message. */ export declare const DeleteStaticWebsiteRequestSchema: GenMessage; /** * @generated from message tailor.v1.DeleteStaticWebsiteResponse */ export declare type DeleteStaticWebsiteResponse = Message<"tailor.v1.DeleteStaticWebsiteResponse"> & {}; /** * Describes the message tailor.v1.DeleteStaticWebsiteResponse. * Use `create(DeleteStaticWebsiteResponseSchema)` to create a new message. */ export declare const DeleteStaticWebsiteResponseSchema: GenMessage; /** * @generated from message tailor.v1.ListStaticWebsitesRequest */ export declare type ListStaticWebsitesRequest = Message<"tailor.v1.ListStaticWebsitesRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string page_token = 2; */ pageToken: string; /** * @generated from field: uint32 page_size = 3; */ pageSize: number; /** * @generated from field: tailor.v1.PageDirection page_direction = 4; */ pageDirection: PageDirection; }; /** * Describes the message tailor.v1.ListStaticWebsitesRequest. * Use `create(ListStaticWebsitesRequestSchema)` to create a new message. */ export declare const ListStaticWebsitesRequestSchema: GenMessage; /** * @generated from message tailor.v1.ListStaticWebsitesResponse */ export declare type ListStaticWebsitesResponse = Message<"tailor.v1.ListStaticWebsitesResponse"> & { /** * @generated from field: repeated tailor.v1.StaticWebsite staticwebsites = 1; */ staticwebsites: StaticWebsite[]; /** * @generated from field: string next_page_token = 2; */ nextPageToken: string; /** * @generated from field: int64 total_count = 3; */ totalCount: bigint; }; /** * Describes the message tailor.v1.ListStaticWebsitesResponse. * Use `create(ListStaticWebsitesResponseSchema)` to create a new message. */ export declare const ListStaticWebsitesResponseSchema: GenMessage; /** * @generated from message tailor.v1.CreateDeploymentRequest */ export declare type CreateDeploymentRequest = Message<"tailor.v1.CreateDeploymentRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string name = 2; */ name: string; }; /** * Describes the message tailor.v1.CreateDeploymentRequest. * Use `create(CreateDeploymentRequestSchema)` to create a new message. */ export declare const CreateDeploymentRequestSchema: GenMessage; /** * @generated from message tailor.v1.CreateDeploymentResponse */ export declare type CreateDeploymentResponse = Message<"tailor.v1.CreateDeploymentResponse"> & { /** * @generated from field: string deployment_id = 1; */ deploymentId: string; }; /** * Describes the message tailor.v1.CreateDeploymentResponse. * Use `create(CreateDeploymentResponseSchema)` to create a new message. */ export declare const CreateDeploymentResponseSchema: GenMessage; /** * @generated from message tailor.v1.UploadFileRequest */ export declare type UploadFileRequest = Message<"tailor.v1.UploadFileRequest"> & { /** * @generated from oneof tailor.v1.UploadFileRequest.payload */ payload: { /** * @generated from field: tailor.v1.UploadFileRequest.InitialUploadMetadata initial_metadata = 1; */ value: UploadFileRequest_InitialUploadMetadata; case: "initialMetadata"; } | { /** * @generated from field: bytes chunk_data = 2; */ value: Uint8Array; case: "chunkData"; } | { case: undefined; value?: undefined; }; }; /** * Describes the message tailor.v1.UploadFileRequest. * Use `create(UploadFileRequestSchema)` to create a new message. */ export declare const UploadFileRequestSchema: GenMessage; /** * @generated from message tailor.v1.UploadFileRequest.InitialUploadMetadata */ export declare type UploadFileRequest_InitialUploadMetadata = Message<"tailor.v1.UploadFileRequest.InitialUploadMetadata"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string deployment_id = 2; */ deploymentId: string; /** * @generated from field: string file_path = 3; */ filePath: string; /** * @generated from field: string content_type = 4; */ contentType: string; }; /** * @generated from message tailor.v1.UploadFileResponse */ export declare type UploadFileResponse = Message<"tailor.v1.UploadFileResponse"> & {}; /** * Describes the message tailor.v1.UploadFileResponse. * Use `create(UploadFileResponseSchema)` to create a new message. */ export declare const UploadFileResponseSchema: GenMessage; /** * @generated from message tailor.v1.PublishDeploymentRequest */ export declare type PublishDeploymentRequest = Message<"tailor.v1.PublishDeploymentRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string deployment_id = 2; */ deploymentId: string; }; /** * Describes the message tailor.v1.PublishDeploymentRequest. * Use `create(PublishDeploymentRequestSchema)` to create a new message. */ export declare const PublishDeploymentRequestSchema: GenMessage; /** * @generated from message tailor.v1.PublishDeploymentResponse */ export declare type PublishDeploymentResponse = Message<"tailor.v1.PublishDeploymentResponse"> & { /** * @generated from field: string url = 1; */ url: string; }; /** * Describes the message tailor.v1.PublishDeploymentResponse. * Use `create(PublishDeploymentResponseSchema)` to create a new message. */ export declare const PublishDeploymentResponseSchema: GenMessage; /** * @generated from message tailor.v1.AddCustomDomainRequest */ export declare type AddCustomDomainRequest = Message<"tailor.v1.AddCustomDomainRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string static_website_name = 2; */ staticWebsiteName: string; /** * @generated from field: string domain = 3; */ domain: string; }; /** * Describes the message tailor.v1.AddCustomDomainRequest. * Use `create(AddCustomDomainRequestSchema)` to create a new message. */ export declare const AddCustomDomainRequestSchema: GenMessage; /** * @generated from message tailor.v1.AddCustomDomainResponse */ export declare type AddCustomDomainResponse = Message<"tailor.v1.AddCustomDomainResponse"> & { /** * @generated from field: tailor.v1.CustomDomain custom_domain = 1; */ customDomain?: CustomDomain; }; /** * Describes the message tailor.v1.AddCustomDomainResponse. * Use `create(AddCustomDomainResponseSchema)` to create a new message. */ export declare const AddCustomDomainResponseSchema: GenMessage; /** * @generated from message tailor.v1.GetCustomDomainRequest */ export declare type GetCustomDomainRequest = Message<"tailor.v1.GetCustomDomainRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string domain = 2; */ domain: string; }; /** * Describes the message tailor.v1.GetCustomDomainRequest. * Use `create(GetCustomDomainRequestSchema)` to create a new message. */ export declare const GetCustomDomainRequestSchema: GenMessage; /** * @generated from message tailor.v1.GetCustomDomainResponse */ export declare type GetCustomDomainResponse = Message<"tailor.v1.GetCustomDomainResponse"> & { /** * @generated from field: tailor.v1.CustomDomain custom_domain = 1; */ customDomain?: CustomDomain; }; /** * Describes the message tailor.v1.GetCustomDomainResponse. * Use `create(GetCustomDomainResponseSchema)` to create a new message. */ export declare const GetCustomDomainResponseSchema: GenMessage; /** * @generated from message tailor.v1.ListCustomDomainsRequest */ export declare type ListCustomDomainsRequest = Message<"tailor.v1.ListCustomDomainsRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string static_website_name = 2; */ staticWebsiteName: string; }; /** * Describes the message tailor.v1.ListCustomDomainsRequest. * Use `create(ListCustomDomainsRequestSchema)` to create a new message. */ export declare const ListCustomDomainsRequestSchema: GenMessage; /** * @generated from message tailor.v1.ListCustomDomainsResponse */ export declare type ListCustomDomainsResponse = Message<"tailor.v1.ListCustomDomainsResponse"> & { /** * @generated from field: repeated tailor.v1.CustomDomain custom_domains = 1; */ customDomains: CustomDomain[]; }; /** * Describes the message tailor.v1.ListCustomDomainsResponse. * Use `create(ListCustomDomainsResponseSchema)` to create a new message. */ export declare const ListCustomDomainsResponseSchema: GenMessage; /** * @generated from message tailor.v1.RemoveCustomDomainRequest */ export declare type RemoveCustomDomainRequest = Message<"tailor.v1.RemoveCustomDomainRequest"> & { /** * @generated from field: string workspace_id = 1; */ workspaceId: string; /** * @generated from field: string domain = 2; */ domain: string; }; /** * Describes the message tailor.v1.RemoveCustomDomainRequest. * Use `create(RemoveCustomDomainRequestSchema)` to create a new message. */ export declare const RemoveCustomDomainRequestSchema: GenMessage; /** * @generated from message tailor.v1.RemoveCustomDomainResponse */ export declare type RemoveCustomDomainResponse = Message<"tailor.v1.RemoveCustomDomainResponse"> & {}; /** * Describes the message tailor.v1.RemoveCustomDomainResponse. * Use `create(RemoveCustomDomainResponseSchema)` to create a new message. */ export declare const RemoveCustomDomainResponseSchema: GenMessage; //#endregion