n8n/packages/nodes-base/nodes/Splunk/v2/helpers/interfaces.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
375 B
TypeScript
Raw Normal View History

2024-07-04 06:07:17 -07:00
import type { IDataObject } from 'n8n-workflow';
export type SplunkCredentials = {
authToken: string;
baseUrl: string;
allowUnauthorizedCerts: boolean;
};
export type SplunkFeedResponse = {
feed: {
2024-07-04 06:07:17 -07:00
entry: IDataObject[] | IDataObject;
};
};
export type SplunkError = {
response?: {
messages?: {
msg: {
$: { type: string };
_: string;
};
};
};
};