Skip to content

Type Alias: ClientAccountObserveRequest

Makaio Framework


Makaio Framework / contracts / ClientAccountObserveRequest

ClientAccountObserveRequest = z.infer<typeof ClientAccountObserveSchema.request>

Defined in: ../../../packages/contracts/src/client/account-identity.ts:152

type ClientAccountObserveRequest = {
clientId: string;
identifiers: Array<{ scheme: string; value: string; strength: 'strong' | 'alias'; }>;
observedAt?: number | undefined;
displayLabel?: string | undefined;
metadata?: Record<string, unknown> | undefined;
};