@primerouting/zitadel-node
Version:
Library for API access to ZITADEL. Provides compiled gRPC service clients and helpers for applications and service accounts. Support http2 self-hosted instances
38 lines (37 loc) • 1.63 kB
TypeScript
import Long from "long";
import _m0 from "protobufjs/minimal";
import { Owner } from "../../../object/v3alpha/object";
export declare const protobufPackage = "zitadel.settings.object.v3alpha";
export interface Details {
/**
* 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
*/
sequence: Long;
/**
* 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 timestamp of the event(s) added by the manipulation
*/
changeDate: Date | undefined;
/** resource_owner represents the context an object belongs to */
owner: Owner | undefined;
}
export declare const Details: {
encode(message: Details, writer?: _m0.Writer): _m0.Writer;
decode(input: _m0.Reader | Uint8Array, length?: number): Details;
fromJSON(object: any): Details;
toJSON(message: Details): unknown;
create(base?: DeepPartial<Details>): Details;
fromPartial(object: DeepPartial<Details>): Details;
};
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
export type DeepPartial<T> = T extends Builtin ? T : T extends Long ? string | number | Long : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
[K in keyof T]?: DeepPartial<T[K]>;
} : Partial<T>;
export {};