Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

InstallationAuthOptions

Users SHOULD only enter repositoryIds || repositoryNames. However, this moduke still passes both to the backend API to let the API decide how to handle the logic. We just throw the reponse back to the client making the request.

type InstallationAuthOptions = {
[key: string]: unknown;
type: "installation";
installationId?: number | string;
repositoryIds?: number[];
repositoryNames?: string[];
permissions?: Permissions;
refresh?: boolean;
factory?: never;
}
;

§Type

§
{
[key: string]: unknown;
type: "installation";
installationId?: number | string;
repositoryIds?: number[];
repositoryNames?: string[];
permissions?: Permissions;
refresh?: boolean;
factory?: never;
}
[src]