mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
25 lines
375 B
TypeScript
25 lines
375 B
TypeScript
import type { IDataObject } from 'n8n-workflow';
|
|
|
|
export type SplunkCredentials = {
|
|
authToken: string;
|
|
baseUrl: string;
|
|
allowUnauthorizedCerts: boolean;
|
|
};
|
|
|
|
export type SplunkFeedResponse = {
|
|
feed: {
|
|
entry: IDataObject[] | IDataObject;
|
|
};
|
|
};
|
|
|
|
export type SplunkError = {
|
|
response?: {
|
|
messages?: {
|
|
msg: {
|
|
$: { type: string };
|
|
_: string;
|
|
};
|
|
};
|
|
};
|
|
};
|