/** * List of opa policy sets. */ export type PolicySetsV3 = Array<{ /** * Policy Set name */ policySetName: string; /** * Unique reference for the opa policy set. Example: `my-policy` or `account.my-policy` */ policySetRef: string; }>;