UNPKG

@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

29 lines (28 loc) 1.44 kB
import Long from "long"; import _m0 from "protobufjs/minimal"; import { ResourceOwnerType } from "./settings"; export declare const protobufPackage = "zitadel.settings.v2beta"; export interface LegalAndSupportSettings { tosLink: string; privacyPolicyLink: string; helpLink: string; supportEmail: string; /** resource_owner_type returns if the setting is managed on the organization or on the instance */ resourceOwnerType: ResourceOwnerType; docsLink: string; customLink: string; customLinkText: string; } export declare const LegalAndSupportSettings: { encode(message: LegalAndSupportSettings, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): LegalAndSupportSettings; fromJSON(object: any): LegalAndSupportSettings; toJSON(message: LegalAndSupportSettings): unknown; create(base?: DeepPartial<LegalAndSupportSettings>): LegalAndSupportSettings; fromPartial(object: DeepPartial<LegalAndSupportSettings>): LegalAndSupportSettings; }; 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 {};