/*** * * SaaSquatch Type Definitions * * This file was automatically generated. DO NOT edit it by hand, instead edit the related JSON Schema file. * * Generated on 2026-03-20T21:11:42.771Z * ***/ /*** * UserIdentifier.schema.json * Generated on 2026-03-20T21:11:43.578Z * This file was automatically generated. DO NOT edit it by hand, instead edit the related JSON Schema file. ***/ /** * This user's unique identifier */ export type UserId = string /** * The unique identifier of the account this user belongs to */ export type AccountId = string /** * The unique identifiers used to distinguish a user. */ export interface UserIdentifierSchema { id: UserId accountId: AccountId }