n8n-nodes-base
Version:
Base nodes of n8n
32 lines • 605 B
TypeScript
export type MispCredentials = {
baseUrl: string;
apiKey: string;
allowUnauthorizedCerts: boolean;
};
export type LoadedOrgs = Array<{
Organisation: {
id: string;
name: string;
};
}>;
export type LoadedTags = {
Tag: Array<{
id: string;
name: string;
}>;
};
export type LoadedUsers = Array<{
User: {
id: string;
email: string;
};
}>;
export type LoadedSharingGroups = {
response: Array<{
SharingGroup: {
id: string;
name: string;
};
}>;
};
//# sourceMappingURL=types.d.ts.map