@@ -19,13 +19,14 @@ import { APIResourceRun } from './api/APIResourceRun';
1919import { APIResourceUser } from './api/APIResourceUser' ;
2020import { APIResourceUserSession } from './api/APIResourceUserSession' ;
2121import { Cluster } from './api/models/Cluster' ;
22- import { NoQueryParams } from './api/models/HTTP' ;
22+ import { NoQueryParams , QueryParams } from './api/models/HTTP' ;
2323import { License } from './api/models/License' ;
2424import { Project } from './api/models/Project' ;
2525import { Property } from './api/models/Property' ;
2626import { UserFile , UserFileData , UserFileParams } from './api/models/UserFile' ;
2727import { ApiConfig } from './ApiConfig' ;
2828import './finka' ;
29+ import { LabelGroup } from './api/models/LabelGroup' ;
2930export declare class API {
3031 private config ;
3132 axios : AxiosInstance ;
@@ -44,20 +45,20 @@ export declare class API {
4445 deviceSession ( id : number ) : APIResourceDeviceSession ;
4546 deviceSessions ( ) : APIList < any , import ( "./api/models/HTTP" ) . CollectionQueryParams , any > ;
4647 deviceStatistics ( ) : APIList < any , import ( "./api/models/HTTP" ) . CollectionQueryParams , any > ;
47- enums ( ) : APIResource < any , import ( "./api/models/HTTP" ) . QueryParams , import ( "./api/models/HTTP" ) . QueryParams > ;
48+ enums ( ) : APIResource < any , QueryParams , QueryParams > ;
4849 files ( ) : APIList < UserFile , UserFileParams , UserFileData > ;
4950 file ( id : number ) : APIResourceFile ;
50- labelGroups ( ) : APIList < any , import ( "./api/models/HTTP" ) . CollectionQueryParams , any > ;
51+ labelGroups ( ) : APIList < LabelGroup , QueryParams , void > ;
5152 labelGroup ( id : number ) : APIResourceLabelGroup ;
5253 labels ( ) : APIList < any , import ( "./api/models/HTTP" ) . CollectionQueryParams , any > ;
53- licenses ( ) : APIResource < any , import ( "./api/models/HTTP" ) . QueryParams , import ( "./api/models/HTTP" ) . QueryParams > ;
54+ licenses ( ) : APIResource < any , QueryParams , QueryParams > ;
5455 license ( ) : APIResource < License , NoQueryParams , void > ;
5556 ma ( ) : APIAdminResource | APIResourceUser ;
5657 me ( ) : APIResourceUser ;
5758 projects ( ) : APIList < Project , import ( "./api/models/HTTP" ) . CollectionQueryParams , any > ;
5859 project ( id : number ) : APIResourceProject ;
5960 properties ( ) : APIListProperties ;
60- property ( id : number ) : APIResource < Property , import ( "./api/models/HTTP" ) . QueryParams , import ( "./api/models/HTTP" ) . QueryParams > ;
61+ property ( id : number ) : APIResource < Property , QueryParams , QueryParams > ;
6162 run ( id : number ) : APIResourceRun ;
6263 services ( ) : APIListServices ;
6364 user ( id : number | 'me' ) : APIResourceUser ;
0 commit comments