import _m0 from "protobufjs/minimal"; import { IError, QueryFilterRequest, RemoveReply } from "../../core/common"; import { FileEntity } from "../drive/index"; import { GeoCountryEntity } from "../geo/index"; import { SkillsetEntity } from "../skillset/index"; export declare const protobufPackage = ""; export interface ResumeCompanyCreateReply { data: ResumeCompanyEntity | undefined; error: IError | undefined; } export interface ResumeCompanyReply { data: ResumeCompanyEntity | undefined; error: IError | undefined; } export interface ResumeCompanyQueryReply { items: ResumeCompanyEntity[]; totalItems: number; itemsPerPage: number; startIndex: number; error: IError | undefined; } export interface ResumeCompanyEntity { /** @tag(yaml:"visibility") */ visibility?: string | undefined; /** @tag(yaml:"workspaceId") */ workspaceId?: string | undefined; /** @tag(yaml:"linkerId") */ linkerId?: string | undefined; /** @tag(yaml:"parentId") */ parentId?: string | undefined; /** @tag(gorm:"primarykey;uniqueId;unique;not null;size:100;" yaml:"uniqueId") */ uniqueId: string; /** @tag(yaml:"userId") */ userId?: string | undefined; /** One 2 one to external entity */ placeCountryId?: string | undefined; /** @tag(gorm:"foreignKey:PlaceCountryId;references:UniqueId" json:"placeCountry" yaml:"placeCountry") */ placeCountry: GeoCountryEntity | undefined; /** One 2 one to external entity */ workCountryId?: string | undefined; /** @tag(gorm:"foreignKey:WorkCountryId;references:UniqueId" json:"workCountry" yaml:"workCountry") */ workCountry: GeoCountryEntity | undefined; /** One 2 one to external entity */ mainIndustryId?: string | undefined; /** @tag(gorm:"foreignKey:MainIndustryId;references:UniqueId" json:"mainIndustry" yaml:"mainIndustry") */ mainIndustry: ResumeIndustryEntity | undefined; /** @tag( yaml:"employeeCount" ) */ employeeCount: number; /** @tag(gorm:"type:int;name:rank") */ rank: number; /** @tag(gorm:"autoUpdateTime:nano") */ updated: number; /** @tag(gorm:"autoUpdateTime:nano") */ created: number; /** @tag(sql:"-") */ createdFormatted: string; /** @tag(sql:"-") */ updatedFormatted: string; } export interface ResumeCreateReply { data: ResumeEntity | undefined; error: IError | undefined; } export interface ResumeReply { data: ResumeEntity | undefined; error: IError | undefined; } export interface ResumeQueryReply { items: ResumeEntity[]; totalItems: number; itemsPerPage: number; startIndex: number; error: IError | undefined; } export interface ResumeEntity { /** @tag(yaml:"visibility") */ visibility?: string | undefined; /** @tag(yaml:"workspaceId") */ workspaceId?: string | undefined; /** @tag(yaml:"linkerId") */ linkerId?: string | undefined; /** @tag(yaml:"parentId") */ parentId?: string | undefined; /** @tag(gorm:"primarykey;uniqueId;unique;not null;size:100;" yaml:"uniqueId") */ uniqueId: string; /** @tag(yaml:"userId") */ userId?: string | undefined; /** @tag(gorm:"foreignKey:LinkerId;references:UniqueId" json:"translations") */ translations: ResumeEntityPolyglot[]; /** @tag(translate:"true" yaml:"title" ) */ title?: string | undefined; /** Many 2 many entities */ projectsListId: string[]; /** @tag(gorm:"many2many:resume_projects;foreignKey:UniqueId;references:UniqueId" yaml:"projects") */ projects: ResumeProjectEntity[]; /** Many 2 many entities */ companiesListId: string[]; /** @tag(gorm:"many2many:resume_companies;foreignKey:UniqueId;references:UniqueId" yaml:"companies") */ companies: ResumeCompanyEntity[]; /** @tag(gorm:"type:int;name:rank") */ rank: number; /** @tag(gorm:"autoUpdateTime:nano") */ updated: number; /** @tag(gorm:"autoUpdateTime:nano") */ created: number; /** @tag(sql:"-") */ createdFormatted: string; /** @tag(sql:"-") */ updatedFormatted: string; } /** Because it has translation field, we need a translation table for this */ export interface ResumeEntityPolyglot { /** @tag(gorm:"uniqueId;not null;size:100;" json:"linkerId" yaml:"linkerId") */ linkerId: string; /** @tag(gorm:"uniqueId;not null;size:100;" json:"languageId" yaml:"languageId") */ languageId: string; /** @tag(yaml:"title" json:"title"); */ title: string; } export interface ResumeIndustryCreateReply { data: ResumeIndustryEntity | undefined; error: IError | undefined; } export interface ResumeIndustryReply { data: ResumeIndustryEntity | undefined; error: IError | undefined; } export interface ResumeIndustryQueryReply { items: ResumeIndustryEntity[]; totalItems: number; itemsPerPage: number; startIndex: number; error: IError | undefined; } export interface ResumeIndustryEntity { /** @tag(yaml:"visibility") */ visibility?: string | undefined; /** @tag(yaml:"workspaceId") */ workspaceId?: string | undefined; /** @tag(yaml:"linkerId") */ linkerId?: string | undefined; /** @tag(yaml:"parentId") */ parentId?: string | undefined; /** @tag(gorm:"primarykey;uniqueId;unique;not null;size:100;" yaml:"uniqueId") */ uniqueId: string; /** @tag(yaml:"userId") */ userId?: string | undefined; /** @tag(gorm:"foreignKey:LinkerId;references:UniqueId" json:"translations") */ translations: ResumeIndustryEntityPolyglot[]; /** @tag(translate:"true" yaml:"name" ) */ name?: string | undefined; /** @tag(gorm:"type:int;name:rank") */ rank: number; /** @tag(gorm:"autoUpdateTime:nano") */ updated: number; /** @tag(gorm:"autoUpdateTime:nano") */ created: number; /** @tag(sql:"-") */ createdFormatted: string; /** @tag(sql:"-") */ updatedFormatted: string; } /** Because it has translation field, we need a translation table for this */ export interface ResumeIndustryEntityPolyglot { /** @tag(gorm:"uniqueId;not null;size:100;" json:"linkerId" yaml:"linkerId") */ linkerId: string; /** @tag(gorm:"uniqueId;not null;size:100;" json:"languageId" yaml:"languageId") */ languageId: string; /** @tag(yaml:"name" json:"name"); */ name: string; } export interface ResumeProjectCreateReply { data: ResumeProjectEntity | undefined; error: IError | undefined; } export interface ResumeProjectReply { data: ResumeProjectEntity | undefined; error: IError | undefined; } export interface ResumeProjectQueryReply { items: ResumeProjectEntity[]; totalItems: number; itemsPerPage: number; startIndex: number; error: IError | undefined; } export interface ResumeProjectEntity { /** @tag(yaml:"visibility") */ visibility?: string | undefined; /** @tag(yaml:"workspaceId") */ workspaceId?: string | undefined; /** @tag(yaml:"linkerId") */ linkerId?: string | undefined; /** @tag(yaml:"parentId") */ parentId?: string | undefined; /** @tag(gorm:"primarykey;uniqueId;unique;not null;size:100;" yaml:"uniqueId") */ uniqueId: string; /** @tag(yaml:"userId") */ userId?: string | undefined; /** @tag(gorm:"foreignKey:LinkerId;references:UniqueId" json:"translations") */ translations: ResumeProjectEntityPolyglot[]; /** @tag(translate:"true" yaml:"title" ) */ title?: string | undefined; /** @tag(translate:"true" yaml:"description" gorm:"text" ) */ description?: string | undefined; /** @tag(translate:"true" yaml:"descriptionExcerpt" gorm:"text" ) */ descriptionExcerpt?: string | undefined; /** @tag(translate:"true" yaml:"technicalDescription" gorm:"text" ) */ technicalDescription?: string | undefined; /** @tag(translate:"true" yaml:"technicalDescriptionExcerpt" gorm:"text" ) */ technicalDescriptionExcerpt?: string | undefined; /** One 2 one to external entity */ typeId?: string | undefined; /** @tag(gorm:"foreignKey:TypeId;references:UniqueId" json:"type" yaml:"type") */ type: ResumeProjectTypeEntity | undefined; /** Many 2 many entities */ attachmentsListId: string[]; /** @tag(gorm:"many2many:resumeProject_attachments;foreignKey:UniqueId;references:UniqueId" yaml:"attachments") */ attachments: FileEntity[]; start: number; startFormatted: string; end: number; endFormatted: string; /** repeated ResumeProjectLinksEntity links = 26; // @tag(gorm:"foreignKey:LinkerId;references:UniqueId" yaml:"links") */ links: ResumeProjectLinksEntity[]; /** @tag(gorm:"type:int;name:rank") */ rank: number; /** @tag(gorm:"autoUpdateTime:nano") */ updated: number; /** @tag(gorm:"autoUpdateTime:nano") */ created: number; /** @tag(sql:"-") */ createdFormatted: string; /** @tag(sql:"-") */ updatedFormatted: string; } /** Because it has translation field, we need a translation table for this */ export interface ResumeProjectEntityPolyglot { /** @tag(gorm:"uniqueId;not null;size:100;" json:"linkerId" yaml:"linkerId") */ linkerId: string; /** @tag(gorm:"uniqueId;not null;size:100;" json:"languageId" yaml:"languageId") */ languageId: string; /** @tag(yaml:"title" json:"title"); */ title: string; /** @tag(yaml:"description" json:"description"); */ description: string; /** @tag(yaml:"technicalDescription" json:"technicalDescription"); */ technicalDescription: string; } export interface ResumeProjectLinksEntity { /** @tag(yaml:"visibility") */ visibility?: string | undefined; /** @tag(yaml:"workspaceId") */ workspaceId?: string | undefined; /** @tag(yaml:"linkerId") */ linkerId?: string | undefined; /** @tag(yaml:"parentId") */ parentId?: string | undefined; /** @tag(gorm:"primarykey;uniqueId;unique;not null;size:100;" yaml:"uniqueId") */ uniqueId: string; /** @tag(yaml:"userId") */ userId?: string | undefined; /** @tag( yaml:"link" ) */ link?: string | undefined; /** @tag(gorm:"type:int;name:rank") */ rank: number; /** @tag(gorm:"autoUpdateTime:nano") */ updated: number; /** @tag(gorm:"autoUpdateTime:nano") */ created: number; /** @tag(sql:"-") */ createdFormatted: string; /** @tag(sql:"-") */ updatedFormatted: string; } export interface ResumeProjectTypeCreateReply { data: ResumeProjectTypeEntity | undefined; error: IError | undefined; } export interface ResumeProjectTypeReply { data: ResumeProjectTypeEntity | undefined; error: IError | undefined; } export interface ResumeProjectTypeQueryReply { items: ResumeProjectTypeEntity[]; totalItems: number; itemsPerPage: number; startIndex: number; error: IError | undefined; } export interface ResumeProjectTypeEntity { /** @tag(yaml:"visibility") */ visibility?: string | undefined; /** @tag(yaml:"workspaceId") */ workspaceId?: string | undefined; /** @tag(yaml:"linkerId") */ linkerId?: string | undefined; /** @tag(yaml:"parentId") */ parentId?: string | undefined; /** @tag(gorm:"primarykey;uniqueId;unique;not null;size:100;" yaml:"uniqueId") */ uniqueId: string; /** @tag(yaml:"userId") */ userId?: string | undefined; /** @tag(gorm:"foreignKey:LinkerId;references:UniqueId" json:"translations") */ translations: ResumeProjectTypeEntityPolyglot[]; /** @tag(translate:"true" yaml:"name" ) */ name?: string | undefined; /** @tag(gorm:"type:int;name:rank") */ rank: number; /** @tag(gorm:"autoUpdateTime:nano") */ updated: number; /** @tag(gorm:"autoUpdateTime:nano") */ created: number; /** @tag(sql:"-") */ createdFormatted: string; /** @tag(sql:"-") */ updatedFormatted: string; } /** Because it has translation field, we need a translation table for this */ export interface ResumeProjectTypeEntityPolyglot { /** @tag(gorm:"uniqueId;not null;size:100;" json:"linkerId" yaml:"linkerId") */ linkerId: string; /** @tag(gorm:"uniqueId;not null;size:100;" json:"languageId" yaml:"languageId") */ languageId: string; /** @tag(yaml:"name" json:"name"); */ name: string; } export interface ResumeSkillCreateReply { data: ResumeSkillEntity | undefined; error: IError | undefined; } export interface ResumeSkillReply { data: ResumeSkillEntity | undefined; error: IError | undefined; } export interface ResumeSkillQueryReply { items: ResumeSkillEntity[]; totalItems: number; itemsPerPage: number; startIndex: number; error: IError | undefined; } export interface ResumeSkillEntity { /** @tag(yaml:"visibility") */ visibility?: string | undefined; /** @tag(yaml:"workspaceId") */ workspaceId?: string | undefined; /** @tag(yaml:"linkerId") */ linkerId?: string | undefined; /** @tag(yaml:"parentId") */ parentId?: string | undefined; /** @tag(gorm:"primarykey;uniqueId;unique;not null;size:100;" yaml:"uniqueId") */ uniqueId: string; /** @tag(yaml:"userId") */ userId?: string | undefined; /** One 2 one to external entity */ skillsetId?: string | undefined; /** @tag(gorm:"foreignKey:SkillsetId;references:UniqueId" json:"skillset" yaml:"skillset") */ skillset: SkillsetEntity | undefined; /** @tag(gorm:"type:int;name:rank") */ rank: number; /** @tag(gorm:"autoUpdateTime:nano") */ updated: number; /** @tag(gorm:"autoUpdateTime:nano") */ created: number; /** @tag(sql:"-") */ createdFormatted: string; /** @tag(sql:"-") */ updatedFormatted: string; } export declare const ResumeCompanyCreateReply: { encode(message: ResumeCompanyCreateReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeCompanyCreateReply; fromJSON(object: any): ResumeCompanyCreateReply; toJSON(message: ResumeCompanyCreateReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_2 in Exclude]: never; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_3 in Exclude]: never; })[] & { [K_4 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_5 in Exclude]: never; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_6 in Exclude]: never; })[] & { [K_7 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_8 in Exclude]: never; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_9 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_10 in Exclude]: never; })[] & { [K_11 in Exclude]: never; }; httpCode?: number; } & { [K_12 in Exclude]: never; }; } & { [K_13 in Exclude]: never; }>(base?: I): ResumeCompanyCreateReply; fromPartial]: never; })[] & { [K_15 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_16 in Exclude]: never; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_17 in Exclude]: never; })[] & { [K_18 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_19 in Exclude]: never; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_20 in Exclude]: never; })[] & { [K_21 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_22 in Exclude]: never; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_23 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_24 in Exclude]: never; })[] & { [K_25 in Exclude]: never; }; httpCode?: number; } & { [K_26 in Exclude]: never; }; } & { [K_27 in Exclude]: never; }>(object: I_1): ResumeCompanyCreateReply; }; export declare const ResumeCompanyReply: { encode(message: ResumeCompanyReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeCompanyReply; fromJSON(object: any): ResumeCompanyReply; toJSON(message: ResumeCompanyReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_2 in Exclude]: never; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_3 in Exclude]: never; })[] & { [K_4 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_5 in Exclude]: never; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_6 in Exclude]: never; })[] & { [K_7 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_8 in Exclude]: never; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_9 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_10 in Exclude]: never; })[] & { [K_11 in Exclude]: never; }; httpCode?: number; } & { [K_12 in Exclude]: never; }; } & { [K_13 in Exclude]: never; }>(base?: I): ResumeCompanyReply; fromPartial]: never; })[] & { [K_15 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_16 in Exclude]: never; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_17 in Exclude]: never; })[] & { [K_18 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_19 in Exclude]: never; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_20 in Exclude]: never; })[] & { [K_21 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_22 in Exclude]: never; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_23 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_24 in Exclude]: never; })[] & { [K_25 in Exclude]: never; }; httpCode?: number; } & { [K_26 in Exclude]: never; }; } & { [K_27 in Exclude]: never; }>(object: I_1): ResumeCompanyReply; }; export declare const ResumeCompanyQueryReply: { encode(message: ResumeCompanyQueryReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeCompanyQueryReply; fromJSON(object: any): ResumeCompanyQueryReply; toJSON(message: ResumeCompanyQueryReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_2 in Exclude]: never; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_3 in Exclude]: never; })[] & { [K_4 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_5 in Exclude]: never; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_6 in Exclude]: never; })[] & { [K_7 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_8 in Exclude]: never; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_9 in Exclude]: never; })[] & { [K_10 in Exclude]: never; }; totalItems?: number; itemsPerPage?: number; startIndex?: number; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_11 in Exclude]: never; })[] & { [K_12 in Exclude]: never; }; httpCode?: number; } & { [K_13 in Exclude]: never; }; } & { [K_14 in Exclude]: never; }>(base?: I): ResumeCompanyQueryReply; fromPartial]: never; })[] & { [K_16 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_17 in Exclude]: never; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_18 in Exclude]: never; })[] & { [K_19 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_20 in Exclude]: never; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_21 in Exclude]: never; })[] & { [K_22 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_23 in Exclude]: never; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_24 in Exclude]: never; })[] & { [K_25 in Exclude]: never; }; totalItems?: number; itemsPerPage?: number; startIndex?: number; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_26 in Exclude]: never; })[] & { [K_27 in Exclude]: never; }; httpCode?: number; } & { [K_28 in Exclude]: never; }; } & { [K_29 in Exclude]: never; }>(object: I_1): ResumeCompanyQueryReply; }; export declare const ResumeCompanyEntity: { encode(message: ResumeCompanyEntity, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeCompanyEntity; fromJSON(object: any): ResumeCompanyEntity; toJSON(message: ResumeCompanyEntity): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_2 in Exclude]: never; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_3 in Exclude]: never; })[] & { [K_4 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_5 in Exclude]: never; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_6 in Exclude]: never; })[] & { [K_7 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_8 in Exclude]: never; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_9 in Exclude]: never; }>(base?: I): ResumeCompanyEntity; fromPartial]: never; })[] & { [K_11 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_12 in Exclude]: never; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_13 in Exclude]: never; })[] & { [K_14 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_15 in Exclude]: never; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_16 in Exclude]: never; })[] & { [K_17 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_18 in Exclude]: never; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_19 in Exclude]: never; }>(object: I_1): ResumeCompanyEntity; }; export declare const ResumeCreateReply: { encode(message: ResumeCreateReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeCreateReply; fromJSON(object: any): ResumeCreateReply; toJSON(message: ResumeCreateReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; title?: string | undefined; projectsListId?: string[] & string[] & { [K_2 in Exclude]: never; }; projects?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; }[]; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; attachmentsListId?: string[]; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; }[]; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; attachmentsListId?: string[]; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; }[] & ({ linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; } & { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; } & { [K_3 in Exclude]: never; })[] & { [K_4 in Exclude]: never; }; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_5 in Exclude]: never; })[] & { [K_6 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_7 in Exclude]: never; }; attachmentsListId?: string[] & string[] & { [K_8 in Exclude]: never; }; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { [K_9 in Exclude]: never; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { [K_10 in Exclude]: never; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_11 in Exclude]: never; })[] & { [K_12 in Exclude]: never; }; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_13 in Exclude]: never; })[] & { [K_14 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_15 in Exclude]: never; })[] & { [K_16 in Exclude]: never; }; companiesListId?: string[] & string[] & { [K_17 in Exclude]: never; }; companies?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; placeCountryId?: string | undefined; placeCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; placeCountryId?: string | undefined; placeCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; placeCountryId?: string | undefined; placeCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_18 in Exclude]: never; })[] & { [K_19 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_20 in Exclude]: never; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_21 in Exclude]: never; })[] & { [K_22 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_23 in Exclude]: never; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_24 in Exclude]: never; })[] & { [K_25 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_26 in Exclude]: never; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_27 in Exclude]: never; })[] & { [K_28 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_29 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_30 in Exclude]: never; })[] & { [K_31 in Exclude]: never; }; httpCode?: number; } & { [K_32 in Exclude]: never; }; } & { [K_33 in Exclude]: never; }>(base?: I): ResumeCreateReply; fromPartial]: never; })[] & { [K_35 in Exclude]: never; }; title?: string | undefined; projectsListId?: string[] & string[] & { [K_36 in Exclude]: never; }; projects?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; }[]; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; attachmentsListId?: string[]; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; }[]; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; attachmentsListId?: string[]; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; }[] & ({ linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; } & { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; } & { [K_37 in Exclude]: never; })[] & { [K_38 in Exclude]: never; }; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_39 in Exclude]: never; })[] & { [K_40 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_41 in Exclude]: never; }; attachmentsListId?: string[] & string[] & { [K_42 in Exclude]: never; }; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { [K_43 in Exclude]: never; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { [K_44 in Exclude]: never; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_45 in Exclude]: never; })[] & { [K_46 in Exclude]: never; }; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_47 in Exclude]: never; })[] & { [K_48 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_49 in Exclude]: never; })[] & { [K_50 in Exclude]: never; }; companiesListId?: string[] & string[] & { [K_51 in Exclude]: never; }; companies?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; placeCountryId?: string | undefined; placeCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; placeCountryId?: string | undefined; placeCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; placeCountryId?: string | undefined; placeCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_52 in Exclude]: never; })[] & { [K_53 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_54 in Exclude]: never; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_55 in Exclude]: never; })[] & { [K_56 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_57 in Exclude]: never; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_58 in Exclude]: never; })[] & { [K_59 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_60 in Exclude]: never; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_61 in Exclude]: never; })[] & { [K_62 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_63 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_64 in Exclude]: never; })[] & { [K_65 in Exclude]: never; }; httpCode?: number; } & { [K_66 in Exclude]: never; }; } & { [K_67 in Exclude]: never; }>(object: I_1): ResumeCreateReply; }; export declare const ResumeReply: { encode(message: ResumeReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeReply; fromJSON(object: any): ResumeReply; toJSON(message: ResumeReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; title?: string | undefined; projectsListId?: string[] & string[] & { [K_2 in Exclude]: never; }; projects?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; }[]; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; attachmentsListId?: string[]; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; }[]; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; attachmentsListId?: string[]; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; }[] & ({ linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; } & { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; } & { [K_3 in Exclude]: never; })[] & { [K_4 in Exclude]: never; }; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_5 in Exclude]: never; })[] & { [K_6 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_7 in Exclude]: never; }; attachmentsListId?: string[] & string[] & { [K_8 in Exclude]: never; }; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { [K_9 in Exclude]: never; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { [K_10 in Exclude]: never; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_11 in Exclude]: never; })[] & { [K_12 in Exclude]: never; }; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_13 in Exclude]: never; })[] & { [K_14 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_15 in Exclude]: never; })[] & { [K_16 in Exclude]: never; }; companiesListId?: string[] & string[] & { [K_17 in Exclude]: never; }; companies?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; placeCountryId?: string | undefined; placeCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; placeCountryId?: string | undefined; placeCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; placeCountryId?: string | undefined; placeCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_18 in Exclude]: never; })[] & { [K_19 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_20 in Exclude]: never; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_21 in Exclude]: never; })[] & { [K_22 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_23 in Exclude]: never; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_24 in Exclude]: never; })[] & { [K_25 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_26 in Exclude]: never; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_27 in Exclude]: never; })[] & { [K_28 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_29 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_30 in Exclude]: never; })[] & { [K_31 in Exclude]: never; }; httpCode?: number; } & { [K_32 in Exclude]: never; }; } & { [K_33 in Exclude]: never; }>(base?: I): ResumeReply; fromPartial]: never; })[] & { [K_35 in Exclude]: never; }; title?: string | undefined; projectsListId?: string[] & string[] & { [K_36 in Exclude]: never; }; projects?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; }[]; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; attachmentsListId?: string[]; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; }[]; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; attachmentsListId?: string[]; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; }[] & ({ linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; } & { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; } & { [K_37 in Exclude]: never; })[] & { [K_38 in Exclude]: never; }; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_39 in Exclude]: never; })[] & { [K_40 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_41 in Exclude]: never; }; attachmentsListId?: string[] & string[] & { [K_42 in Exclude]: never; }; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { [K_43 in Exclude]: never; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { [K_44 in Exclude]: never; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_45 in Exclude]: never; })[] & { [K_46 in Exclude]: never; }; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_47 in Exclude]: never; })[] & { [K_48 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_49 in Exclude]: never; })[] & { [K_50 in Exclude]: never; }; companiesListId?: string[] & string[] & { [K_51 in Exclude]: never; }; companies?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; placeCountryId?: string | undefined; placeCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; placeCountryId?: string | undefined; placeCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; placeCountryId?: string | undefined; placeCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_52 in Exclude]: never; })[] & { [K_53 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_54 in Exclude]: never; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_55 in Exclude]: never; })[] & { [K_56 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_57 in Exclude]: never; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_58 in Exclude]: never; })[] & { [K_59 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_60 in Exclude]: never; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_61 in Exclude]: never; })[] & { [K_62 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_63 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_64 in Exclude]: never; })[] & { [K_65 in Exclude]: never; }; httpCode?: number; } & { [K_66 in Exclude]: never; }; } & { [K_67 in Exclude]: never; }>(object: I_1): ResumeReply; }; export declare const ResumeQueryReply: { encode(message: ResumeQueryReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeQueryReply; fromJSON(object: any): ResumeQueryReply; toJSON(message: ResumeQueryReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; title?: string | undefined; projectsListId?: string[] & string[] & { [K_2 in Exclude]: never; }; projects?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; }[]; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; attachmentsListId?: string[]; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; }[]; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; attachmentsListId?: string[]; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; }[] & ({ linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; } & { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; } & { [K_3 in Exclude]: never; })[] & { [K_4 in Exclude]: never; }; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_5 in Exclude]: never; })[] & { [K_6 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_7 in Exclude]: never; }; attachmentsListId?: string[] & string[] & { [K_8 in Exclude]: never; }; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { [K_9 in Exclude]: never; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { [K_10 in Exclude]: never; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_11 in Exclude]: never; })[] & { [K_12 in Exclude]: never; }; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_13 in Exclude]: never; })[] & { [K_14 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_15 in Exclude]: never; })[] & { [K_16 in Exclude]: never; }; companiesListId?: string[] & string[] & { [K_17 in Exclude]: never; }; companies?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; placeCountryId?: string | undefined; placeCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; placeCountryId?: string | undefined; placeCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; placeCountryId?: string | undefined; placeCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_18 in Exclude]: never; })[] & { [K_19 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_20 in Exclude]: never; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_21 in Exclude]: never; })[] & { [K_22 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_23 in Exclude]: never; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_24 in Exclude]: never; })[] & { [K_25 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_26 in Exclude]: never; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_27 in Exclude]: never; })[] & { [K_28 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_29 in Exclude]: never; })[] & { [K_30 in Exclude]: never; }; totalItems?: number; itemsPerPage?: number; startIndex?: number; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_31 in Exclude]: never; })[] & { [K_32 in Exclude]: never; }; httpCode?: number; } & { [K_33 in Exclude]: never; }; } & { [K_34 in Exclude]: never; }>(base?: I): ResumeQueryReply; fromPartial]: never; })[] & { [K_36 in Exclude]: never; }; title?: string | undefined; projectsListId?: string[] & string[] & { [K_37 in Exclude]: never; }; projects?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; }[]; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; attachmentsListId?: string[]; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; }[]; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; attachmentsListId?: string[]; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; }[] & ({ linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; } & { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; } & { [K_38 in Exclude]: never; })[] & { [K_39 in Exclude]: never; }; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_40 in Exclude]: never; })[] & { [K_41 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_42 in Exclude]: never; }; attachmentsListId?: string[] & string[] & { [K_43 in Exclude]: never; }; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { [K_44 in Exclude]: never; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { [K_45 in Exclude]: never; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_46 in Exclude]: never; })[] & { [K_47 in Exclude]: never; }; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_48 in Exclude]: never; })[] & { [K_49 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_50 in Exclude]: never; })[] & { [K_51 in Exclude]: never; }; companiesListId?: string[] & string[] & { [K_52 in Exclude]: never; }; companies?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; placeCountryId?: string | undefined; placeCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; placeCountryId?: string | undefined; placeCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; placeCountryId?: string | undefined; placeCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_53 in Exclude]: never; })[] & { [K_54 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_55 in Exclude]: never; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_56 in Exclude]: never; })[] & { [K_57 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_58 in Exclude]: never; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_59 in Exclude]: never; })[] & { [K_60 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_61 in Exclude]: never; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_62 in Exclude]: never; })[] & { [K_63 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_64 in Exclude]: never; })[] & { [K_65 in Exclude]: never; }; totalItems?: number; itemsPerPage?: number; startIndex?: number; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_66 in Exclude]: never; })[] & { [K_67 in Exclude]: never; }; httpCode?: number; } & { [K_68 in Exclude]: never; }; } & { [K_69 in Exclude]: never; }>(object: I_1): ResumeQueryReply; }; export declare const ResumeEntity: { encode(message: ResumeEntity, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeEntity; fromJSON(object: any): ResumeEntity; toJSON(message: ResumeEntity): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; title?: string | undefined; projectsListId?: string[] & string[] & { [K_2 in Exclude]: never; }; projects?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; }[]; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; attachmentsListId?: string[]; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; }[]; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; attachmentsListId?: string[]; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; }[] & ({ linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; } & { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; } & { [K_3 in Exclude]: never; })[] & { [K_4 in Exclude]: never; }; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_5 in Exclude]: never; })[] & { [K_6 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_7 in Exclude]: never; }; attachmentsListId?: string[] & string[] & { [K_8 in Exclude]: never; }; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { [K_9 in Exclude]: never; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { [K_10 in Exclude]: never; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_11 in Exclude]: never; })[] & { [K_12 in Exclude]: never; }; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_13 in Exclude]: never; })[] & { [K_14 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_15 in Exclude]: never; })[] & { [K_16 in Exclude]: never; }; companiesListId?: string[] & string[] & { [K_17 in Exclude]: never; }; companies?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; placeCountryId?: string | undefined; placeCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; placeCountryId?: string | undefined; placeCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; placeCountryId?: string | undefined; placeCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_18 in Exclude]: never; })[] & { [K_19 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_20 in Exclude]: never; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_21 in Exclude]: never; })[] & { [K_22 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_23 in Exclude]: never; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_24 in Exclude]: never; })[] & { [K_25 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_26 in Exclude]: never; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_27 in Exclude]: never; })[] & { [K_28 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_29 in Exclude]: never; }>(base?: I): ResumeEntity; fromPartial]: never; })[] & { [K_31 in Exclude]: never; }; title?: string | undefined; projectsListId?: string[] & string[] & { [K_32 in Exclude]: never; }; projects?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; }[]; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; attachmentsListId?: string[]; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; }[]; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; attachmentsListId?: string[]; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[]; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; }[] & ({ linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; } & { linkerId?: string; languageId?: string; title?: string; description?: string; technicalDescription?: string; } & { [K_33 in Exclude]: never; })[] & { [K_34 in Exclude]: never; }; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_35 in Exclude]: never; })[] & { [K_36 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_37 in Exclude]: never; }; attachmentsListId?: string[] & string[] & { [K_38 in Exclude]: never; }; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { [K_39 in Exclude]: never; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { [K_40 in Exclude]: never; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_41 in Exclude]: never; })[] & { [K_42 in Exclude]: never; }; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_43 in Exclude]: never; })[] & { [K_44 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_45 in Exclude]: never; })[] & { [K_46 in Exclude]: never; }; companiesListId?: string[] & string[] & { [K_47 in Exclude]: never; }; companies?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; placeCountryId?: string | undefined; placeCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; placeCountryId?: string | undefined; placeCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; placeCountryId?: string | undefined; placeCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_48 in Exclude]: never; })[] & { [K_49 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_50 in Exclude]: never; }; workCountryId?: string | undefined; workCountry?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_51 in Exclude]: never; })[] & { [K_52 in Exclude]: never; }; status?: string; flag?: string; commonName?: string; officialName?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_53 in Exclude]: never; }; mainIndustryId?: string | undefined; mainIndustry?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_54 in Exclude]: never; })[] & { [K_55 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_56 in Exclude]: never; }; employeeCount?: number; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_57 in Exclude]: never; })[] & { [K_58 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_59 in Exclude]: never; }>(object: I_1): ResumeEntity; }; export declare const ResumeEntityPolyglot: { encode(message: ResumeEntityPolyglot, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeEntityPolyglot; fromJSON(object: any): ResumeEntityPolyglot; toJSON(message: ResumeEntityPolyglot): unknown; create]: never; }>(base?: I): ResumeEntityPolyglot; fromPartial]: never; }>(object: I_1): ResumeEntityPolyglot; }; export declare const ResumeIndustryCreateReply: { encode(message: ResumeIndustryCreateReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeIndustryCreateReply; fromJSON(object: any): ResumeIndustryCreateReply; toJSON(message: ResumeIndustryCreateReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_2 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_3 in Exclude]: never; })[] & { [K_4 in Exclude]: never; }; httpCode?: number; } & { [K_5 in Exclude]: never; }; } & { [K_6 in Exclude]: never; }>(base?: I): ResumeIndustryCreateReply; fromPartial]: never; })[] & { [K_8 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_9 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_10 in Exclude]: never; })[] & { [K_11 in Exclude]: never; }; httpCode?: number; } & { [K_12 in Exclude]: never; }; } & { [K_13 in Exclude]: never; }>(object: I_1): ResumeIndustryCreateReply; }; export declare const ResumeIndustryReply: { encode(message: ResumeIndustryReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeIndustryReply; fromJSON(object: any): ResumeIndustryReply; toJSON(message: ResumeIndustryReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_2 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_3 in Exclude]: never; })[] & { [K_4 in Exclude]: never; }; httpCode?: number; } & { [K_5 in Exclude]: never; }; } & { [K_6 in Exclude]: never; }>(base?: I): ResumeIndustryReply; fromPartial]: never; })[] & { [K_8 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_9 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_10 in Exclude]: never; })[] & { [K_11 in Exclude]: never; }; httpCode?: number; } & { [K_12 in Exclude]: never; }; } & { [K_13 in Exclude]: never; }>(object: I_1): ResumeIndustryReply; }; export declare const ResumeIndustryQueryReply: { encode(message: ResumeIndustryQueryReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeIndustryQueryReply; fromJSON(object: any): ResumeIndustryQueryReply; toJSON(message: ResumeIndustryQueryReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_2 in Exclude]: never; })[] & { [K_3 in Exclude]: never; }; totalItems?: number; itemsPerPage?: number; startIndex?: number; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_4 in Exclude]: never; })[] & { [K_5 in Exclude]: never; }; httpCode?: number; } & { [K_6 in Exclude]: never; }; } & { [K_7 in Exclude]: never; }>(base?: I): ResumeIndustryQueryReply; fromPartial]: never; })[] & { [K_9 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_10 in Exclude]: never; })[] & { [K_11 in Exclude]: never; }; totalItems?: number; itemsPerPage?: number; startIndex?: number; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_12 in Exclude]: never; })[] & { [K_13 in Exclude]: never; }; httpCode?: number; } & { [K_14 in Exclude]: never; }; } & { [K_15 in Exclude]: never; }>(object: I_1): ResumeIndustryQueryReply; }; export declare const ResumeIndustryEntity: { encode(message: ResumeIndustryEntity, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeIndustryEntity; fromJSON(object: any): ResumeIndustryEntity; toJSON(message: ResumeIndustryEntity): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_2 in Exclude]: never; }>(base?: I): ResumeIndustryEntity; fromPartial]: never; })[] & { [K_4 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_5 in Exclude]: never; }>(object: I_1): ResumeIndustryEntity; }; export declare const ResumeIndustryEntityPolyglot: { encode(message: ResumeIndustryEntityPolyglot, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeIndustryEntityPolyglot; fromJSON(object: any): ResumeIndustryEntityPolyglot; toJSON(message: ResumeIndustryEntityPolyglot): unknown; create]: never; }>(base?: I): ResumeIndustryEntityPolyglot; fromPartial]: never; }>(object: I_1): ResumeIndustryEntityPolyglot; }; export declare const ResumeProjectCreateReply: { encode(message: ResumeProjectCreateReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeProjectCreateReply; fromJSON(object: any): ResumeProjectCreateReply; toJSON(message: ResumeProjectCreateReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_2 in Exclude]: never; })[] & { [K_3 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_4 in Exclude]: never; }; attachmentsListId?: string[] & string[] & { [K_5 in Exclude]: never; }; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { [K_6 in Exclude]: never; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { [K_7 in Exclude]: never; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_8 in Exclude]: never; })[] & { [K_9 in Exclude]: never; }; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_10 in Exclude]: never; })[] & { [K_11 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_12 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_13 in Exclude]: never; })[] & { [K_14 in Exclude]: never; }; httpCode?: number; } & { [K_15 in Exclude]: never; }; } & { [K_16 in Exclude]: never; }>(base?: I): ResumeProjectCreateReply; fromPartial]: never; })[] & { [K_18 in Exclude]: never; }; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_19 in Exclude]: never; })[] & { [K_20 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_21 in Exclude]: never; }; attachmentsListId?: string[] & string[] & { [K_22 in Exclude]: never; }; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { [K_23 in Exclude]: never; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { [K_24 in Exclude]: never; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_25 in Exclude]: never; })[] & { [K_26 in Exclude]: never; }; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_27 in Exclude]: never; })[] & { [K_28 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_29 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_30 in Exclude]: never; })[] & { [K_31 in Exclude]: never; }; httpCode?: number; } & { [K_32 in Exclude]: never; }; } & { [K_33 in Exclude]: never; }>(object: I_1): ResumeProjectCreateReply; }; export declare const ResumeProjectReply: { encode(message: ResumeProjectReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeProjectReply; fromJSON(object: any): ResumeProjectReply; toJSON(message: ResumeProjectReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_2 in Exclude]: never; })[] & { [K_3 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_4 in Exclude]: never; }; attachmentsListId?: string[] & string[] & { [K_5 in Exclude]: never; }; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { [K_6 in Exclude]: never; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { [K_7 in Exclude]: never; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_8 in Exclude]: never; })[] & { [K_9 in Exclude]: never; }; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_10 in Exclude]: never; })[] & { [K_11 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_12 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_13 in Exclude]: never; })[] & { [K_14 in Exclude]: never; }; httpCode?: number; } & { [K_15 in Exclude]: never; }; } & { [K_16 in Exclude]: never; }>(base?: I): ResumeProjectReply; fromPartial]: never; })[] & { [K_18 in Exclude]: never; }; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_19 in Exclude]: never; })[] & { [K_20 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_21 in Exclude]: never; }; attachmentsListId?: string[] & string[] & { [K_22 in Exclude]: never; }; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { [K_23 in Exclude]: never; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { [K_24 in Exclude]: never; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_25 in Exclude]: never; })[] & { [K_26 in Exclude]: never; }; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_27 in Exclude]: never; })[] & { [K_28 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_29 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_30 in Exclude]: never; })[] & { [K_31 in Exclude]: never; }; httpCode?: number; } & { [K_32 in Exclude]: never; }; } & { [K_33 in Exclude]: never; }>(object: I_1): ResumeProjectReply; }; export declare const ResumeProjectQueryReply: { encode(message: ResumeProjectQueryReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeProjectQueryReply; fromJSON(object: any): ResumeProjectQueryReply; toJSON(message: ResumeProjectQueryReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_2 in Exclude]: never; })[] & { [K_3 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_4 in Exclude]: never; }; attachmentsListId?: string[] & string[] & { [K_5 in Exclude]: never; }; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { [K_6 in Exclude]: never; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { [K_7 in Exclude]: never; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_8 in Exclude]: never; })[] & { [K_9 in Exclude]: never; }; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_10 in Exclude]: never; })[] & { [K_11 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_12 in Exclude]: never; })[] & { [K_13 in Exclude]: never; }; totalItems?: number; itemsPerPage?: number; startIndex?: number; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_14 in Exclude]: never; })[] & { [K_15 in Exclude]: never; }; httpCode?: number; } & { [K_16 in Exclude]: never; }; } & { [K_17 in Exclude]: never; }>(base?: I): ResumeProjectQueryReply; fromPartial]: never; })[] & { [K_19 in Exclude]: never; }; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_20 in Exclude]: never; })[] & { [K_21 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_22 in Exclude]: never; }; attachmentsListId?: string[] & string[] & { [K_23 in Exclude]: never; }; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { [K_24 in Exclude]: never; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { [K_25 in Exclude]: never; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_26 in Exclude]: never; })[] & { [K_27 in Exclude]: never; }; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_28 in Exclude]: never; })[] & { [K_29 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_30 in Exclude]: never; })[] & { [K_31 in Exclude]: never; }; totalItems?: number; itemsPerPage?: number; startIndex?: number; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_32 in Exclude]: never; })[] & { [K_33 in Exclude]: never; }; httpCode?: number; } & { [K_34 in Exclude]: never; }; } & { [K_35 in Exclude]: never; }>(object: I_1): ResumeProjectQueryReply; }; export declare const ResumeProjectEntity: { encode(message: ResumeProjectEntity, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeProjectEntity; fromJSON(object: any): ResumeProjectEntity; toJSON(message: ResumeProjectEntity): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_2 in Exclude]: never; })[] & { [K_3 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_4 in Exclude]: never; }; attachmentsListId?: string[] & string[] & { [K_5 in Exclude]: never; }; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { [K_6 in Exclude]: never; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { [K_7 in Exclude]: never; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_8 in Exclude]: never; })[] & { [K_9 in Exclude]: never; }; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_10 in Exclude]: never; })[] & { [K_11 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_12 in Exclude]: never; }>(base?: I): ResumeProjectEntity; fromPartial]: never; })[] & { [K_14 in Exclude]: never; }; title?: string | undefined; description?: string | undefined; descriptionExcerpt?: string | undefined; technicalDescription?: string | undefined; technicalDescriptionExcerpt?: string | undefined; typeId?: string | undefined; type?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_15 in Exclude]: never; })[] & { [K_16 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_17 in Exclude]: never; }; attachmentsListId?: string[] & string[] & { [K_18 in Exclude]: never; }; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { [K_19 in Exclude]: never; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { [K_20 in Exclude]: never; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_21 in Exclude]: never; })[] & { [K_22 in Exclude]: never; }; start?: number; startFormatted?: string; end?: number; endFormatted?: string; links?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; link?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_23 in Exclude]: never; })[] & { [K_24 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_25 in Exclude]: never; }>(object: I_1): ResumeProjectEntity; }; export declare const ResumeProjectEntityPolyglot: { encode(message: ResumeProjectEntityPolyglot, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeProjectEntityPolyglot; fromJSON(object: any): ResumeProjectEntityPolyglot; toJSON(message: ResumeProjectEntityPolyglot): unknown; create]: never; }>(base?: I): ResumeProjectEntityPolyglot; fromPartial]: never; }>(object: I_1): ResumeProjectEntityPolyglot; }; export declare const ResumeProjectLinksEntity: { encode(message: ResumeProjectLinksEntity, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeProjectLinksEntity; fromJSON(object: any): ResumeProjectLinksEntity; toJSON(message: ResumeProjectLinksEntity): unknown; create]: never; }>(base?: I): ResumeProjectLinksEntity; fromPartial]: never; }>(object: I_1): ResumeProjectLinksEntity; }; export declare const ResumeProjectTypeCreateReply: { encode(message: ResumeProjectTypeCreateReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeProjectTypeCreateReply; fromJSON(object: any): ResumeProjectTypeCreateReply; toJSON(message: ResumeProjectTypeCreateReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_2 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_3 in Exclude]: never; })[] & { [K_4 in Exclude]: never; }; httpCode?: number; } & { [K_5 in Exclude]: never; }; } & { [K_6 in Exclude]: never; }>(base?: I): ResumeProjectTypeCreateReply; fromPartial]: never; })[] & { [K_8 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_9 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_10 in Exclude]: never; })[] & { [K_11 in Exclude]: never; }; httpCode?: number; } & { [K_12 in Exclude]: never; }; } & { [K_13 in Exclude]: never; }>(object: I_1): ResumeProjectTypeCreateReply; }; export declare const ResumeProjectTypeReply: { encode(message: ResumeProjectTypeReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeProjectTypeReply; fromJSON(object: any): ResumeProjectTypeReply; toJSON(message: ResumeProjectTypeReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_2 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_3 in Exclude]: never; })[] & { [K_4 in Exclude]: never; }; httpCode?: number; } & { [K_5 in Exclude]: never; }; } & { [K_6 in Exclude]: never; }>(base?: I): ResumeProjectTypeReply; fromPartial]: never; })[] & { [K_8 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_9 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_10 in Exclude]: never; })[] & { [K_11 in Exclude]: never; }; httpCode?: number; } & { [K_12 in Exclude]: never; }; } & { [K_13 in Exclude]: never; }>(object: I_1): ResumeProjectTypeReply; }; export declare const ResumeProjectTypeQueryReply: { encode(message: ResumeProjectTypeQueryReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeProjectTypeQueryReply; fromJSON(object: any): ResumeProjectTypeQueryReply; toJSON(message: ResumeProjectTypeQueryReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_2 in Exclude]: never; })[] & { [K_3 in Exclude]: never; }; totalItems?: number; itemsPerPage?: number; startIndex?: number; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_4 in Exclude]: never; })[] & { [K_5 in Exclude]: never; }; httpCode?: number; } & { [K_6 in Exclude]: never; }; } & { [K_7 in Exclude]: never; }>(base?: I): ResumeProjectTypeQueryReply; fromPartial]: never; })[] & { [K_9 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_10 in Exclude]: never; })[] & { [K_11 in Exclude]: never; }; totalItems?: number; itemsPerPage?: number; startIndex?: number; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_12 in Exclude]: never; })[] & { [K_13 in Exclude]: never; }; httpCode?: number; } & { [K_14 in Exclude]: never; }; } & { [K_15 in Exclude]: never; }>(object: I_1): ResumeProjectTypeQueryReply; }; export declare const ResumeProjectTypeEntity: { encode(message: ResumeProjectTypeEntity, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeProjectTypeEntity; fromJSON(object: any): ResumeProjectTypeEntity; toJSON(message: ResumeProjectTypeEntity): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_2 in Exclude]: never; }>(base?: I): ResumeProjectTypeEntity; fromPartial]: never; })[] & { [K_4 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_5 in Exclude]: never; }>(object: I_1): ResumeProjectTypeEntity; }; export declare const ResumeProjectTypeEntityPolyglot: { encode(message: ResumeProjectTypeEntityPolyglot, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeProjectTypeEntityPolyglot; fromJSON(object: any): ResumeProjectTypeEntityPolyglot; toJSON(message: ResumeProjectTypeEntityPolyglot): unknown; create]: never; }>(base?: I): ResumeProjectTypeEntityPolyglot; fromPartial]: never; }>(object: I_1): ResumeProjectTypeEntityPolyglot; }; export declare const ResumeSkillCreateReply: { encode(message: ResumeSkillCreateReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeSkillCreateReply; fromJSON(object: any): ResumeSkillCreateReply; toJSON(message: ResumeSkillCreateReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; name?: string; description?: string; attachmentsListId?: string[] & string[] & { [K_2 in Exclude]: never; }; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { [K_3 in Exclude]: never; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { [K_4 in Exclude]: never; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_5 in Exclude]: never; })[] & { [K_6 in Exclude]: never; }; categoryId?: string; category?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_7 in Exclude]: never; })[] & { [K_8 in Exclude]: never; }; name?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_9 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_10 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_11 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_12 in Exclude]: never; })[] & { [K_13 in Exclude]: never; }; httpCode?: number; } & { [K_14 in Exclude]: never; }; } & { [K_15 in Exclude]: never; }>(base?: I): ResumeSkillCreateReply; fromPartial]: never; })[] & { [K_17 in Exclude]: never; }; name?: string; description?: string; attachmentsListId?: string[] & string[] & { [K_18 in Exclude]: never; }; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { [K_19 in Exclude]: never; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { [K_20 in Exclude]: never; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_21 in Exclude]: never; })[] & { [K_22 in Exclude]: never; }; categoryId?: string; category?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_23 in Exclude]: never; })[] & { [K_24 in Exclude]: never; }; name?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_25 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_26 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_27 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_28 in Exclude]: never; })[] & { [K_29 in Exclude]: never; }; httpCode?: number; } & { [K_30 in Exclude]: never; }; } & { [K_31 in Exclude]: never; }>(object: I_1): ResumeSkillCreateReply; }; export declare const ResumeSkillReply: { encode(message: ResumeSkillReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeSkillReply; fromJSON(object: any): ResumeSkillReply; toJSON(message: ResumeSkillReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; name?: string; description?: string; attachmentsListId?: string[] & string[] & { [K_2 in Exclude]: never; }; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { [K_3 in Exclude]: never; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { [K_4 in Exclude]: never; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_5 in Exclude]: never; })[] & { [K_6 in Exclude]: never; }; categoryId?: string; category?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_7 in Exclude]: never; })[] & { [K_8 in Exclude]: never; }; name?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_9 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_10 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_11 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_12 in Exclude]: never; })[] & { [K_13 in Exclude]: never; }; httpCode?: number; } & { [K_14 in Exclude]: never; }; } & { [K_15 in Exclude]: never; }>(base?: I): ResumeSkillReply; fromPartial]: never; })[] & { [K_17 in Exclude]: never; }; name?: string; description?: string; attachmentsListId?: string[] & string[] & { [K_18 in Exclude]: never; }; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { [K_19 in Exclude]: never; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { [K_20 in Exclude]: never; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_21 in Exclude]: never; })[] & { [K_22 in Exclude]: never; }; categoryId?: string; category?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_23 in Exclude]: never; })[] & { [K_24 in Exclude]: never; }; name?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_25 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_26 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_27 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_28 in Exclude]: never; })[] & { [K_29 in Exclude]: never; }; httpCode?: number; } & { [K_30 in Exclude]: never; }; } & { [K_31 in Exclude]: never; }>(object: I_1): ResumeSkillReply; }; export declare const ResumeSkillQueryReply: { encode(message: ResumeSkillQueryReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeSkillQueryReply; fromJSON(object: any): ResumeSkillQueryReply; toJSON(message: ResumeSkillQueryReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; name?: string; description?: string; attachmentsListId?: string[] & string[] & { [K_2 in Exclude]: never; }; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { [K_3 in Exclude]: never; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { [K_4 in Exclude]: never; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_5 in Exclude]: never; })[] & { [K_6 in Exclude]: never; }; categoryId?: string; category?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_7 in Exclude]: never; })[] & { [K_8 in Exclude]: never; }; name?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_9 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_10 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_11 in Exclude]: never; })[] & { [K_12 in Exclude]: never; }; totalItems?: number; itemsPerPage?: number; startIndex?: number; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_13 in Exclude]: never; })[] & { [K_14 in Exclude]: never; }; httpCode?: number; } & { [K_15 in Exclude]: never; }; } & { [K_16 in Exclude]: never; }>(base?: I): ResumeSkillQueryReply; fromPartial]: never; })[] & { [K_18 in Exclude]: never; }; name?: string; description?: string; attachmentsListId?: string[] & string[] & { [K_19 in Exclude]: never; }; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { [K_20 in Exclude]: never; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { [K_21 in Exclude]: never; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_22 in Exclude]: never; })[] & { [K_23 in Exclude]: never; }; categoryId?: string; category?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_24 in Exclude]: never; })[] & { [K_25 in Exclude]: never; }; name?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_26 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_27 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_28 in Exclude]: never; })[] & { [K_29 in Exclude]: never; }; totalItems?: number; itemsPerPage?: number; startIndex?: number; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_30 in Exclude]: never; })[] & { [K_31 in Exclude]: never; }; httpCode?: number; } & { [K_32 in Exclude]: never; }; } & { [K_33 in Exclude]: never; }>(object: I_1): ResumeSkillQueryReply; }; export declare const ResumeSkillEntity: { encode(message: ResumeSkillEntity, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ResumeSkillEntity; fromJSON(object: any): ResumeSkillEntity; toJSON(message: ResumeSkillEntity): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; name?: string; description?: string; attachmentsListId?: string[] & string[] & { [K_2 in Exclude]: never; }; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { [K_3 in Exclude]: never; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { [K_4 in Exclude]: never; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_5 in Exclude]: never; })[] & { [K_6 in Exclude]: never; }; categoryId?: string; category?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_7 in Exclude]: never; })[] & { [K_8 in Exclude]: never; }; name?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_9 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_10 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_11 in Exclude]: never; }>(base?: I): ResumeSkillEntity; fromPartial]: never; })[] & { [K_13 in Exclude]: never; }; name?: string; description?: string; attachmentsListId?: string[] & string[] & { [K_14 in Exclude]: never; }; attachments?: { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; }[] & ({ name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { name?: string; diskPath?: string; size?: number; virtualPath?: string; uniqueId?: string; type?: string; workspace?: { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { name?: string; description?: string; uniqueId?: string; linkerId?: string; visibility?: string; updated?: number; created?: number; parentId?: string; } & { [K_15 in Exclude]: never; }; workspaceId?: string; user?: { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { firstName?: string; lastName?: string; photo?: string; uniqueId?: string; visibility?: string; updated?: number; created?: number; } & { [K_16 in Exclude]: never; }; userId?: string; visibility?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_17 in Exclude]: never; })[] & { [K_18 in Exclude]: never; }; categoryId?: string; category?: { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string; workspaceId?: string; linkerId?: string; parentId?: string; uniqueId?: string; userId?: string; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_19 in Exclude]: never; })[] & { [K_20 in Exclude]: never; }; name?: string; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_21 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_22 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_23 in Exclude]: never; }>(object: I_1): ResumeSkillEntity; }; export interface ResumeCompanys { ResumeCompanyActionCreate(request: ResumeCompanyEntity): Promise; ResumeCompanyActionUpdate(request: ResumeCompanyEntity): Promise; ResumeCompanyActionQuery(request: QueryFilterRequest): Promise; ResumeCompanyActionGetOne(request: QueryFilterRequest): Promise; ResumeCompanyActionRemove(request: QueryFilterRequest): Promise; } export declare class ResumeCompanysClientImpl implements ResumeCompanys { private readonly rpc; private readonly service; constructor(rpc: Rpc, opts?: { service?: string; }); ResumeCompanyActionCreate(request: ResumeCompanyEntity): Promise; ResumeCompanyActionUpdate(request: ResumeCompanyEntity): Promise; ResumeCompanyActionQuery(request: QueryFilterRequest): Promise; ResumeCompanyActionGetOne(request: QueryFilterRequest): Promise; ResumeCompanyActionRemove(request: QueryFilterRequest): Promise; } export interface Resumes { ResumeActionCreate(request: ResumeEntity): Promise; ResumeActionUpdate(request: ResumeEntity): Promise; ResumeActionQuery(request: QueryFilterRequest): Promise; ResumeActionGetOne(request: QueryFilterRequest): Promise; ResumeActionRemove(request: QueryFilterRequest): Promise; } export declare class ResumesClientImpl implements Resumes { private readonly rpc; private readonly service; constructor(rpc: Rpc, opts?: { service?: string; }); ResumeActionCreate(request: ResumeEntity): Promise; ResumeActionUpdate(request: ResumeEntity): Promise; ResumeActionQuery(request: QueryFilterRequest): Promise; ResumeActionGetOne(request: QueryFilterRequest): Promise; ResumeActionRemove(request: QueryFilterRequest): Promise; } export interface ResumeIndustrys { ResumeIndustryActionCreate(request: ResumeIndustryEntity): Promise; ResumeIndustryActionUpdate(request: ResumeIndustryEntity): Promise; ResumeIndustryActionQuery(request: QueryFilterRequest): Promise; ResumeIndustryActionGetOne(request: QueryFilterRequest): Promise; ResumeIndustryActionRemove(request: QueryFilterRequest): Promise; } export declare class ResumeIndustrysClientImpl implements ResumeIndustrys { private readonly rpc; private readonly service; constructor(rpc: Rpc, opts?: { service?: string; }); ResumeIndustryActionCreate(request: ResumeIndustryEntity): Promise; ResumeIndustryActionUpdate(request: ResumeIndustryEntity): Promise; ResumeIndustryActionQuery(request: QueryFilterRequest): Promise; ResumeIndustryActionGetOne(request: QueryFilterRequest): Promise; ResumeIndustryActionRemove(request: QueryFilterRequest): Promise; } export interface ResumeProjects { ResumeProjectActionCreate(request: ResumeProjectEntity): Promise; ResumeProjectActionUpdate(request: ResumeProjectEntity): Promise; ResumeProjectActionQuery(request: QueryFilterRequest): Promise; ResumeProjectActionGetOne(request: QueryFilterRequest): Promise; ResumeProjectActionRemove(request: QueryFilterRequest): Promise; } export declare class ResumeProjectsClientImpl implements ResumeProjects { private readonly rpc; private readonly service; constructor(rpc: Rpc, opts?: { service?: string; }); ResumeProjectActionCreate(request: ResumeProjectEntity): Promise; ResumeProjectActionUpdate(request: ResumeProjectEntity): Promise; ResumeProjectActionQuery(request: QueryFilterRequest): Promise; ResumeProjectActionGetOne(request: QueryFilterRequest): Promise; ResumeProjectActionRemove(request: QueryFilterRequest): Promise; } export interface ResumeProjectTypes { ResumeProjectTypeActionCreate(request: ResumeProjectTypeEntity): Promise; ResumeProjectTypeActionUpdate(request: ResumeProjectTypeEntity): Promise; ResumeProjectTypeActionQuery(request: QueryFilterRequest): Promise; ResumeProjectTypeActionGetOne(request: QueryFilterRequest): Promise; ResumeProjectTypeActionRemove(request: QueryFilterRequest): Promise; } export declare class ResumeProjectTypesClientImpl implements ResumeProjectTypes { private readonly rpc; private readonly service; constructor(rpc: Rpc, opts?: { service?: string; }); ResumeProjectTypeActionCreate(request: ResumeProjectTypeEntity): Promise; ResumeProjectTypeActionUpdate(request: ResumeProjectTypeEntity): Promise; ResumeProjectTypeActionQuery(request: QueryFilterRequest): Promise; ResumeProjectTypeActionGetOne(request: QueryFilterRequest): Promise; ResumeProjectTypeActionRemove(request: QueryFilterRequest): Promise; } export interface ResumeSkills { ResumeSkillActionCreate(request: ResumeSkillEntity): Promise; ResumeSkillActionUpdate(request: ResumeSkillEntity): Promise; ResumeSkillActionQuery(request: QueryFilterRequest): Promise; ResumeSkillActionGetOne(request: QueryFilterRequest): Promise; ResumeSkillActionRemove(request: QueryFilterRequest): Promise; } export declare class ResumeSkillsClientImpl implements ResumeSkills { private readonly rpc; private readonly service; constructor(rpc: Rpc, opts?: { service?: string; }); ResumeSkillActionCreate(request: ResumeSkillEntity): Promise; ResumeSkillActionUpdate(request: ResumeSkillEntity): Promise; ResumeSkillActionQuery(request: QueryFilterRequest): Promise; ResumeSkillActionGetOne(request: QueryFilterRequest): Promise; ResumeSkillActionRemove(request: QueryFilterRequest): Promise; } interface Rpc { request(service: string, method: string, data: Uint8Array): Promise; } type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; type KeysOfUnion = T extends T ? keyof T : never; export type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact; } & { [K in Exclude>]: never; }; export {};