// @generated by protoc-gen-es v2.2.0 with parameter "target=dts,json_types=true,import_extension=js" // @generated from file zitadel/object.proto (package zitadel.v1, syntax proto3) /* eslint-disable */ import type { GenEnum, GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1"; import type { Message } from "@bufbuild/protobuf"; import type { Timestamp, TimestampJson } from "@bufbuild/protobuf/wkt"; /** * Describes the file zitadel/object.proto. */ export declare const file_zitadel_object: GenFile; /** * @generated from message zitadel.v1.ObjectDetails */ export declare type ObjectDetails = Message<"zitadel.v1.ObjectDetails"> & { /** * sequence represents the order of events. It's always counting * * on read: the sequence of the last event reduced by the projection * * on manipulation: the timestamp of the event(s) added by the manipulation * * @generated from field: uint64 sequence = 1; */ sequence: bigint; /** * creation_date is the timestamp where the first operation on the object was made * * on read: the timestamp of the first event of the object * * on create: the timestamp of the event(s) added by the manipulation * * @generated from field: google.protobuf.Timestamp creation_date = 2; */ creationDate?: Timestamp; /** * change_date is the timestamp when the object was changed * * on read: the timestamp of the last event reduced by the projection * * on manipulation: the * * @generated from field: google.protobuf.Timestamp change_date = 3; */ changeDate?: Timestamp; /** * resource_owner is the organization an object belongs to * * @generated from field: string resource_owner = 4; */ resourceOwner: string; }; /** * @generated from message zitadel.v1.ObjectDetails */ export declare type ObjectDetailsJson = { /** * sequence represents the order of events. It's always counting * * on read: the sequence of the last event reduced by the projection * * on manipulation: the timestamp of the event(s) added by the manipulation * * @generated from field: uint64 sequence = 1; */ sequence?: string; /** * creation_date is the timestamp where the first operation on the object was made * * on read: the timestamp of the first event of the object * * on create: the timestamp of the event(s) added by the manipulation * * @generated from field: google.protobuf.Timestamp creation_date = 2; */ creationDate?: TimestampJson; /** * change_date is the timestamp when the object was changed * * on read: the timestamp of the last event reduced by the projection * * on manipulation: the * * @generated from field: google.protobuf.Timestamp change_date = 3; */ changeDate?: TimestampJson; /** * resource_owner is the organization an object belongs to * * @generated from field: string resource_owner = 4; */ resourceOwner?: string; }; /** * Describes the message zitadel.v1.ObjectDetails. * Use `create(ObjectDetailsSchema)` to create a new message. */ export declare const ObjectDetailsSchema: GenMessage; /** * @generated from message zitadel.v1.ListQuery */ export declare type ListQuery = Message<"zitadel.v1.ListQuery"> & { /** * @generated from field: uint64 offset = 1; */ offset: bigint; /** * @generated from field: uint32 limit = 2; */ limit: number; /** * @generated from field: bool asc = 3; */ asc: boolean; }; /** * @generated from message zitadel.v1.ListQuery */ export declare type ListQueryJson = { /** * @generated from field: uint64 offset = 1; */ offset?: string; /** * @generated from field: uint32 limit = 2; */ limit?: number; /** * @generated from field: bool asc = 3; */ asc?: boolean; }; /** * Describes the message zitadel.v1.ListQuery. * Use `create(ListQuerySchema)` to create a new message. */ export declare const ListQuerySchema: GenMessage; /** * @generated from message zitadel.v1.ListDetails */ export declare type ListDetails = Message<"zitadel.v1.ListDetails"> & { /** * @generated from field: uint64 total_result = 1; */ totalResult: bigint; /** * @generated from field: uint64 processed_sequence = 2; */ processedSequence: bigint; /** * @generated from field: google.protobuf.Timestamp view_timestamp = 3; */ viewTimestamp?: Timestamp; }; /** * @generated from message zitadel.v1.ListDetails */ export declare type ListDetailsJson = { /** * @generated from field: uint64 total_result = 1; */ totalResult?: string; /** * @generated from field: uint64 processed_sequence = 2; */ processedSequence?: string; /** * @generated from field: google.protobuf.Timestamp view_timestamp = 3; */ viewTimestamp?: TimestampJson; }; /** * Describes the message zitadel.v1.ListDetails. * Use `create(ListDetailsSchema)` to create a new message. */ export declare const ListDetailsSchema: GenMessage; /** * @generated from enum zitadel.v1.TextQueryMethod */ export enum TextQueryMethod { /** * @generated from enum value: TEXT_QUERY_METHOD_EQUALS = 0; */ EQUALS = 0, /** * @generated from enum value: TEXT_QUERY_METHOD_EQUALS_IGNORE_CASE = 1; */ EQUALS_IGNORE_CASE = 1, /** * @generated from enum value: TEXT_QUERY_METHOD_STARTS_WITH = 2; */ STARTS_WITH = 2, /** * @generated from enum value: TEXT_QUERY_METHOD_STARTS_WITH_IGNORE_CASE = 3; */ STARTS_WITH_IGNORE_CASE = 3, /** * @generated from enum value: TEXT_QUERY_METHOD_CONTAINS = 4; */ CONTAINS = 4, /** * @generated from enum value: TEXT_QUERY_METHOD_CONTAINS_IGNORE_CASE = 5; */ CONTAINS_IGNORE_CASE = 5, /** * @generated from enum value: TEXT_QUERY_METHOD_ENDS_WITH = 6; */ ENDS_WITH = 6, /** * @generated from enum value: TEXT_QUERY_METHOD_ENDS_WITH_IGNORE_CASE = 7; */ ENDS_WITH_IGNORE_CASE = 7, } /** * @generated from enum zitadel.v1.TextQueryMethod */ export declare type TextQueryMethodJson = "TEXT_QUERY_METHOD_EQUALS" | "TEXT_QUERY_METHOD_EQUALS_IGNORE_CASE" | "TEXT_QUERY_METHOD_STARTS_WITH" | "TEXT_QUERY_METHOD_STARTS_WITH_IGNORE_CASE" | "TEXT_QUERY_METHOD_CONTAINS" | "TEXT_QUERY_METHOD_CONTAINS_IGNORE_CASE" | "TEXT_QUERY_METHOD_ENDS_WITH" | "TEXT_QUERY_METHOD_ENDS_WITH_IGNORE_CASE"; /** * Describes the enum zitadel.v1.TextQueryMethod. */ export declare const TextQueryMethodSchema: GenEnum; /** * @generated from enum zitadel.v1.ListQueryMethod */ export enum ListQueryMethod { /** * @generated from enum value: LIST_QUERY_METHOD_IN = 0; */ IN = 0, } /** * @generated from enum zitadel.v1.ListQueryMethod */ export declare type ListQueryMethodJson = "LIST_QUERY_METHOD_IN"; /** * Describes the enum zitadel.v1.ListQueryMethod. */ export declare const ListQueryMethodSchema: GenEnum; /** * @generated from enum zitadel.v1.TimestampQueryMethod */ export enum TimestampQueryMethod { /** * @generated from enum value: TIMESTAMP_QUERY_METHOD_EQUALS = 0; */ EQUALS = 0, /** * @generated from enum value: TIMESTAMP_QUERY_METHOD_GREATER = 1; */ GREATER = 1, /** * @generated from enum value: TIMESTAMP_QUERY_METHOD_GREATER_OR_EQUALS = 2; */ GREATER_OR_EQUALS = 2, /** * @generated from enum value: TIMESTAMP_QUERY_METHOD_LESS = 3; */ LESS = 3, /** * @generated from enum value: TIMESTAMP_QUERY_METHOD_LESS_OR_EQUALS = 4; */ LESS_OR_EQUALS = 4, } /** * @generated from enum zitadel.v1.TimestampQueryMethod */ export declare type TimestampQueryMethodJson = "TIMESTAMP_QUERY_METHOD_EQUALS" | "TIMESTAMP_QUERY_METHOD_GREATER" | "TIMESTAMP_QUERY_METHOD_GREATER_OR_EQUALS" | "TIMESTAMP_QUERY_METHOD_LESS" | "TIMESTAMP_QUERY_METHOD_LESS_OR_EQUALS"; /** * Describes the enum zitadel.v1.TimestampQueryMethod. */ export declare const TimestampQueryMethodSchema: GenEnum;