/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { CancelablePromise } from '../core/CancelablePromise'; import type { BaseHttpRequest } from '../core/BaseHttpRequest'; export class MonitorIntelService { constructor(public readonly httpRequest: BaseHttpRequest) {} /** * @returns void * @throws ApiError */ public groupIntelDetections(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/intel/groupIntelDetections', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public getAllIntelDetections(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/intel/getAllIntelDetections', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public updateFlowCapabilities(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/intel/updateFlowCapabilities', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * search everywhere. * @returns void * @throws ApiError */ public search(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/intel/search', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public ai(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/intel/ai', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public startExploration(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/intel/startExploration', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public updateExploration(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/intel/updateExploration', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public getIntel(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/intel/getIntel', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } /** * @returns void * @throws ApiError */ public getDarkweb(): CancelablePromise { return this.httpRequest.request({ method: 'GET', url: '/monitor/intel/getDarkweb', errors: { 401: `Need proper authorization, it's usually acheived by getting the right permission.`, }, }); } }