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

43 lines (42 loc) 2.43 kB
import Long from "long"; import _m0 from "protobufjs/minimal"; import { ResourceOwnerType } from "./settings"; export declare const protobufPackage = "zitadel.settings.v2beta"; export interface PasswordComplexitySettings { minLength: Long; requiresUppercase: boolean; requiresLowercase: boolean; requiresNumber: boolean; requiresSymbol: boolean; /** resource_owner_type returns if the settings is managed on the organization or on the instance */ resourceOwnerType: ResourceOwnerType; } export interface PasswordExpirySettings { /** Amount of days after which a password will expire. The user will be forced to change the password on the following authentication. */ maxAgeDays: Long; /** Amount of days after which the user should be notified of the upcoming expiry. ZITADEL will not notify the user. */ expireWarnDays: Long; /** resource_owner_type returns if the settings is managed on the organization or on the instance */ resourceOwnerType: ResourceOwnerType; } export declare const PasswordComplexitySettings: { encode(message: PasswordComplexitySettings, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): PasswordComplexitySettings; fromJSON(object: any): PasswordComplexitySettings; toJSON(message: PasswordComplexitySettings): unknown; create(base?: DeepPartial<PasswordComplexitySettings>): PasswordComplexitySettings; fromPartial(object: DeepPartial<PasswordComplexitySettings>): PasswordComplexitySettings; }; export declare const PasswordExpirySettings: { encode(message: PasswordExpirySettings, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): PasswordExpirySettings; fromJSON(object: any): PasswordExpirySettings; toJSON(message: PasswordExpirySettings): unknown; create(base?: DeepPartial<PasswordExpirySettings>): PasswordExpirySettings; fromPartial(object: DeepPartial<PasswordExpirySettings>): PasswordExpirySettings; }; 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 {};