mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
feat(Splunk Node): Overhaul (#9813)
This commit is contained in:
24
packages/nodes-base/nodes/Splunk/v2/helpers/interfaces.ts
Normal file
24
packages/nodes-base/nodes/Splunk/v2/helpers/interfaces.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
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;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user