@nestbox-ai/admin 1.0.39 → 1.0.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +77 -0
- package/.openapi-generator/VERSION +1 -1
- package/README.md +145 -2
- package/api.ts +331 -488
- package/common.ts +4 -4
- package/dist/api.d.ts +155 -227
- package/dist/api.js +329 -484
- package/dist/esm/api.d.ts +155 -227
- package/dist/esm/api.js +324 -479
- package/docs/AddProjectMemberData.md +22 -0
- package/docs/AddProjectMemberDto.md +26 -0
- package/docs/AddProjectMemberResponseDTO.md +20 -0
- package/docs/AllProjectResponse.md +30 -0
- package/docs/AllProjectResponseModel.md +22 -0
- package/docs/AuthApi.md +405 -0
- package/docs/BadRequestExceptionResponse.md +22 -0
- package/docs/BooleanResponseDTO.md +20 -0
- package/docs/ChunkFileRequestDTO.md +24 -0
- package/docs/CreateCollectionRequestDTO.md +22 -0
- package/docs/CreateDocumentRequestDTO.md +24 -0
- package/docs/CreateMachineAgentDto.md +42 -0
- package/docs/CreatePermissionDto.md +26 -0
- package/docs/CreateProjectDTO.md +22 -0
- package/docs/CreateProjectResponseDTO.md +20 -0
- package/docs/CreateProjectRoleResponseDto.md +20 -0
- package/docs/CreateResourceDto.md +22 -0
- package/docs/CreateRoleDTO.md +26 -0
- package/docs/CreateRoleDto.md +24 -0
- package/docs/CreateWebhookDto.md +22 -0
- package/docs/DeleteProjectDto.md +20 -0
- package/docs/DeleteProjectResponseDTO.md +20 -0
- package/docs/DeleteProjectRoleByIdResponseDto.md +20 -0
- package/docs/DocumentsApi.md +781 -0
- package/docs/EvaluationTestApi.md +299 -0
- package/docs/FatalErrorExceptionResponse.md +20 -0
- package/docs/ForbiddenExceptionResponse.md +20 -0
- package/docs/ForgetPasswordRequestDTO.md +20 -0
- package/docs/ForgetPasswordResponseDTO.md +20 -0
- package/docs/ForgetPasswordVerificationRequestDTO.md +20 -0
- package/docs/ForgetPasswordVerificationResponseDTO.md +20 -0
- package/docs/GetAllProjectDto.md +22 -0
- package/docs/GetAllProjectMemberResponse.md +22 -0
- package/docs/GetAllProjectMemberResponseDto.md +20 -0
- package/docs/GetAllProjectRoleResponseDto.md +20 -0
- package/docs/GetAllProjectsResponseDTO.md +20 -0
- package/docs/GetAllRoleDTO.md +32 -0
- package/docs/GetProjectByIDResponseDTO.md +20 -0
- package/docs/GetProjectRoleByIdResponseDto.md +20 -0
- package/docs/GetRoleDTO.md +26 -0
- package/docs/GetUserProjectRoleByRoleIdResponseDto.md +20 -0
- package/docs/LoginRequestDTO.md +22 -0
- package/docs/LoginResponseDTO.md +20 -0
- package/docs/MachineAgentApi.md +253 -0
- package/docs/MachineAgentLogsApi.md +131 -0
- package/docs/MachineInstancesApi.md +361 -0
- package/docs/MembersApi.md +204 -0
- package/docs/MessageResponseDTO.md +20 -0
- package/docs/MiscellaneousApi.md +169 -0
- package/docs/NotFoundExceptionResponse.md +20 -0
- package/docs/NotificationsApi.md +122 -0
- package/docs/OAuthLoginRequestDTO.md +26 -0
- package/docs/PermissionsDTO.md +28 -0
- package/docs/ProjectResponseModel.md +30 -0
- package/docs/ProjectsApi.md +301 -0
- package/docs/QueriesAndDocumentationsApi.md +125 -0
- package/docs/ResetPasswordRequestDTO.md +22 -0
- package/docs/ResourceDTO.md +24 -0
- package/docs/RoleDto.md +22 -0
- package/docs/RolesApi.md +372 -0
- package/docs/SignupRequestDTO.md +36 -0
- package/docs/SignupResponseDTO.md +20 -0
- package/docs/SimilaritySearchQueryDTO.md +26 -0
- package/docs/TeamMemberDto.md +26 -0
- package/docs/UnauthorizedExceptionResponse.md +20 -0
- package/docs/UpdateDocumentRequestDTO.md +22 -0
- package/docs/UpdatePermissionDto.md +28 -0
- package/docs/UpdateProjectByIDResponseDTO.md +20 -0
- package/docs/UpdateProjectByIdRequest.md +22 -0
- package/docs/UpdateProjectRoleResponseDto.md +20 -0
- package/docs/UpdateResourceDto.md +24 -0
- package/docs/UpdateRoleByIdDto.md +24 -0
- package/docs/UpdateRoleDTO.md +26 -0
- package/docs/UpdateTeamMemberRequestDTO.md +20 -0
- package/docs/UpdateTeamMemberStatusRequestDTO.md +22 -0
- package/docs/UserDto.md +32 -0
- package/docs/WebhookApi.md +243 -0
- package/package.json +1 -1
package/common.ts
CHANGED
|
@@ -89,17 +89,17 @@ function setFlattenedQueryParams(urlSearchParams: URLSearchParams, parameter: an
|
|
|
89
89
|
if (typeof parameter === "object") {
|
|
90
90
|
if (Array.isArray(parameter)) {
|
|
91
91
|
(parameter as any[]).forEach(item => setFlattenedQueryParams(urlSearchParams, item, key));
|
|
92
|
-
}
|
|
92
|
+
}
|
|
93
93
|
else {
|
|
94
|
-
Object.keys(parameter).forEach(currentKey =>
|
|
94
|
+
Object.keys(parameter).forEach(currentKey =>
|
|
95
95
|
setFlattenedQueryParams(urlSearchParams, parameter[currentKey], `${key}${key !== '' ? '.' : ''}${currentKey}`)
|
|
96
96
|
);
|
|
97
97
|
}
|
|
98
|
-
}
|
|
98
|
+
}
|
|
99
99
|
else {
|
|
100
100
|
if (urlSearchParams.has(key)) {
|
|
101
101
|
urlSearchParams.append(key, parameter);
|
|
102
|
-
}
|
|
102
|
+
}
|
|
103
103
|
else {
|
|
104
104
|
urlSearchParams.set(key, parameter);
|
|
105
105
|
}
|
package/dist/api.d.ts
CHANGED
|
@@ -293,6 +293,12 @@ export interface CreateMachineAgentDto {
|
|
|
293
293
|
* @memberof CreateMachineAgentDto
|
|
294
294
|
*/
|
|
295
295
|
'machineManifestId': string;
|
|
296
|
+
/**
|
|
297
|
+
*
|
|
298
|
+
* @type {string}
|
|
299
|
+
* @memberof CreateMachineAgentDto
|
|
300
|
+
*/
|
|
301
|
+
'type': string;
|
|
296
302
|
/**
|
|
297
303
|
*
|
|
298
304
|
* @type {Array<object>}
|
|
@@ -1454,6 +1460,14 @@ export interface UserDto {
|
|
|
1454
1460
|
* @export
|
|
1455
1461
|
*/
|
|
1456
1462
|
export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1463
|
+
/**
|
|
1464
|
+
*
|
|
1465
|
+
* @summary Exchange token
|
|
1466
|
+
* @param {string} token
|
|
1467
|
+
* @param {*} [options] Override http request option.
|
|
1468
|
+
* @throws {RequiredError}
|
|
1469
|
+
*/
|
|
1470
|
+
authControllerExchangeToken: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1457
1471
|
/**
|
|
1458
1472
|
*
|
|
1459
1473
|
* @summary Forget password initiate
|
|
@@ -1508,6 +1522,14 @@ export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
1508
1522
|
* @export
|
|
1509
1523
|
*/
|
|
1510
1524
|
export declare const AuthApiFp: (configuration?: Configuration) => {
|
|
1525
|
+
/**
|
|
1526
|
+
*
|
|
1527
|
+
* @summary Exchange token
|
|
1528
|
+
* @param {string} token
|
|
1529
|
+
* @param {*} [options] Override http request option.
|
|
1530
|
+
* @throws {RequiredError}
|
|
1531
|
+
*/
|
|
1532
|
+
authControllerExchangeToken(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
1511
1533
|
/**
|
|
1512
1534
|
*
|
|
1513
1535
|
* @summary Forget password initiate
|
|
@@ -1562,6 +1584,14 @@ export declare const AuthApiFp: (configuration?: Configuration) => {
|
|
|
1562
1584
|
* @export
|
|
1563
1585
|
*/
|
|
1564
1586
|
export declare const AuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1587
|
+
/**
|
|
1588
|
+
*
|
|
1589
|
+
* @summary Exchange token
|
|
1590
|
+
* @param {string} token
|
|
1591
|
+
* @param {*} [options] Override http request option.
|
|
1592
|
+
* @throws {RequiredError}
|
|
1593
|
+
*/
|
|
1594
|
+
authControllerExchangeToken(token: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1565
1595
|
/**
|
|
1566
1596
|
*
|
|
1567
1597
|
* @summary Forget password initiate
|
|
@@ -1618,6 +1648,15 @@ export declare const AuthApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1618
1648
|
* @extends {BaseAPI}
|
|
1619
1649
|
*/
|
|
1620
1650
|
export declare class AuthApi extends BaseAPI {
|
|
1651
|
+
/**
|
|
1652
|
+
*
|
|
1653
|
+
* @summary Exchange token
|
|
1654
|
+
* @param {string} token
|
|
1655
|
+
* @param {*} [options] Override http request option.
|
|
1656
|
+
* @throws {RequiredError}
|
|
1657
|
+
* @memberof AuthApi
|
|
1658
|
+
*/
|
|
1659
|
+
authControllerExchangeToken(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
1621
1660
|
/**
|
|
1622
1661
|
*
|
|
1623
1662
|
* @summary Forget password initiate
|
|
@@ -2460,10 +2499,11 @@ export declare const MachineAgentApiAxiosParamCreator: (configuration?: Configur
|
|
|
2460
2499
|
* @param {string} projectId
|
|
2461
2500
|
* @param {number} page
|
|
2462
2501
|
* @param {number} limit
|
|
2502
|
+
* @param {string} type
|
|
2463
2503
|
* @param {*} [options] Override http request option.
|
|
2464
2504
|
* @throws {RequiredError}
|
|
2465
2505
|
*/
|
|
2466
|
-
machineAgentControllerGetMachineAgentByProjectId: (projectId: string, page: number, limit: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2506
|
+
machineAgentControllerGetMachineAgentByProjectId: (projectId: string, page: number, limit: number, type: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2467
2507
|
/**
|
|
2468
2508
|
*
|
|
2469
2509
|
* @summary Update machine agent by id
|
|
@@ -2504,10 +2544,11 @@ export declare const MachineAgentApiFp: (configuration?: Configuration) => {
|
|
|
2504
2544
|
* @param {string} projectId
|
|
2505
2545
|
* @param {number} page
|
|
2506
2546
|
* @param {number} limit
|
|
2547
|
+
* @param {string} type
|
|
2507
2548
|
* @param {*} [options] Override http request option.
|
|
2508
2549
|
* @throws {RequiredError}
|
|
2509
2550
|
*/
|
|
2510
|
-
machineAgentControllerGetMachineAgentByProjectId(projectId: string, page: number, limit: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateMachineAgentDto>>;
|
|
2551
|
+
machineAgentControllerGetMachineAgentByProjectId(projectId: string, page: number, limit: number, type: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateMachineAgentDto>>;
|
|
2511
2552
|
/**
|
|
2512
2553
|
*
|
|
2513
2554
|
* @summary Update machine agent by id
|
|
@@ -2548,10 +2589,11 @@ export declare const MachineAgentApiFactory: (configuration?: Configuration, bas
|
|
|
2548
2589
|
* @param {string} projectId
|
|
2549
2590
|
* @param {number} page
|
|
2550
2591
|
* @param {number} limit
|
|
2592
|
+
* @param {string} type
|
|
2551
2593
|
* @param {*} [options] Override http request option.
|
|
2552
2594
|
* @throws {RequiredError}
|
|
2553
2595
|
*/
|
|
2554
|
-
machineAgentControllerGetMachineAgentByProjectId(projectId: string, page: number, limit: number, options?: RawAxiosRequestConfig): AxiosPromise<CreateMachineAgentDto>;
|
|
2596
|
+
machineAgentControllerGetMachineAgentByProjectId(projectId: string, page: number, limit: number, type: string, options?: RawAxiosRequestConfig): AxiosPromise<CreateMachineAgentDto>;
|
|
2555
2597
|
/**
|
|
2556
2598
|
*
|
|
2557
2599
|
* @summary Update machine agent by id
|
|
@@ -2596,11 +2638,12 @@ export declare class MachineAgentApi extends BaseAPI {
|
|
|
2596
2638
|
* @param {string} projectId
|
|
2597
2639
|
* @param {number} page
|
|
2598
2640
|
* @param {number} limit
|
|
2641
|
+
* @param {string} type
|
|
2599
2642
|
* @param {*} [options] Override http request option.
|
|
2600
2643
|
* @throws {RequiredError}
|
|
2601
2644
|
* @memberof MachineAgentApi
|
|
2602
2645
|
*/
|
|
2603
|
-
machineAgentControllerGetMachineAgentByProjectId(projectId: string, page: number, limit: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMachineAgentDto, any>>;
|
|
2646
|
+
machineAgentControllerGetMachineAgentByProjectId(projectId: string, page: number, limit: number, type: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMachineAgentDto, any>>;
|
|
2604
2647
|
/**
|
|
2605
2648
|
*
|
|
2606
2649
|
* @summary Update machine agent by id
|
|
@@ -2612,6 +2655,114 @@ export declare class MachineAgentApi extends BaseAPI {
|
|
|
2612
2655
|
*/
|
|
2613
2656
|
machineAgentControllerUpdateMachineAgent(projectId: string, agentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMachineAgentDto, any>>;
|
|
2614
2657
|
}
|
|
2658
|
+
/**
|
|
2659
|
+
* MachineAgentLogsApi - axios parameter creator
|
|
2660
|
+
* @export
|
|
2661
|
+
*/
|
|
2662
|
+
export declare const MachineAgentLogsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2663
|
+
/**
|
|
2664
|
+
*
|
|
2665
|
+
* @summary Fetch agent logs.
|
|
2666
|
+
* @param {string} projectId
|
|
2667
|
+
* @param {string} agentId
|
|
2668
|
+
* @param {string} direction
|
|
2669
|
+
* @param {string} cursor
|
|
2670
|
+
* @param {*} [options] Override http request option.
|
|
2671
|
+
* @throws {RequiredError}
|
|
2672
|
+
*/
|
|
2673
|
+
logsControllerFetchAgentLogs: (projectId: string, agentId: string, direction: string, cursor: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2674
|
+
/**
|
|
2675
|
+
*
|
|
2676
|
+
* @summary Fetch event logs.
|
|
2677
|
+
* @param {string} projectId
|
|
2678
|
+
* @param {string} agentId
|
|
2679
|
+
* @param {*} [options] Override http request option.
|
|
2680
|
+
* @throws {RequiredError}
|
|
2681
|
+
*/
|
|
2682
|
+
logsControllerFetchEventLogs: (projectId: string, agentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2683
|
+
};
|
|
2684
|
+
/**
|
|
2685
|
+
* MachineAgentLogsApi - functional programming interface
|
|
2686
|
+
* @export
|
|
2687
|
+
*/
|
|
2688
|
+
export declare const MachineAgentLogsApiFp: (configuration?: Configuration) => {
|
|
2689
|
+
/**
|
|
2690
|
+
*
|
|
2691
|
+
* @summary Fetch agent logs.
|
|
2692
|
+
* @param {string} projectId
|
|
2693
|
+
* @param {string} agentId
|
|
2694
|
+
* @param {string} direction
|
|
2695
|
+
* @param {string} cursor
|
|
2696
|
+
* @param {*} [options] Override http request option.
|
|
2697
|
+
* @throws {RequiredError}
|
|
2698
|
+
*/
|
|
2699
|
+
logsControllerFetchAgentLogs(projectId: string, agentId: string, direction: string, cursor: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
2700
|
+
/**
|
|
2701
|
+
*
|
|
2702
|
+
* @summary Fetch event logs.
|
|
2703
|
+
* @param {string} projectId
|
|
2704
|
+
* @param {string} agentId
|
|
2705
|
+
* @param {*} [options] Override http request option.
|
|
2706
|
+
* @throws {RequiredError}
|
|
2707
|
+
*/
|
|
2708
|
+
logsControllerFetchEventLogs(projectId: string, agentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
2709
|
+
};
|
|
2710
|
+
/**
|
|
2711
|
+
* MachineAgentLogsApi - factory interface
|
|
2712
|
+
* @export
|
|
2713
|
+
*/
|
|
2714
|
+
export declare const MachineAgentLogsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2715
|
+
/**
|
|
2716
|
+
*
|
|
2717
|
+
* @summary Fetch agent logs.
|
|
2718
|
+
* @param {string} projectId
|
|
2719
|
+
* @param {string} agentId
|
|
2720
|
+
* @param {string} direction
|
|
2721
|
+
* @param {string} cursor
|
|
2722
|
+
* @param {*} [options] Override http request option.
|
|
2723
|
+
* @throws {RequiredError}
|
|
2724
|
+
*/
|
|
2725
|
+
logsControllerFetchAgentLogs(projectId: string, agentId: string, direction: string, cursor: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
2726
|
+
/**
|
|
2727
|
+
*
|
|
2728
|
+
* @summary Fetch event logs.
|
|
2729
|
+
* @param {string} projectId
|
|
2730
|
+
* @param {string} agentId
|
|
2731
|
+
* @param {*} [options] Override http request option.
|
|
2732
|
+
* @throws {RequiredError}
|
|
2733
|
+
*/
|
|
2734
|
+
logsControllerFetchEventLogs(projectId: string, agentId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
2735
|
+
};
|
|
2736
|
+
/**
|
|
2737
|
+
* MachineAgentLogsApi - object-oriented interface
|
|
2738
|
+
* @export
|
|
2739
|
+
* @class MachineAgentLogsApi
|
|
2740
|
+
* @extends {BaseAPI}
|
|
2741
|
+
*/
|
|
2742
|
+
export declare class MachineAgentLogsApi extends BaseAPI {
|
|
2743
|
+
/**
|
|
2744
|
+
*
|
|
2745
|
+
* @summary Fetch agent logs.
|
|
2746
|
+
* @param {string} projectId
|
|
2747
|
+
* @param {string} agentId
|
|
2748
|
+
* @param {string} direction
|
|
2749
|
+
* @param {string} cursor
|
|
2750
|
+
* @param {*} [options] Override http request option.
|
|
2751
|
+
* @throws {RequiredError}
|
|
2752
|
+
* @memberof MachineAgentLogsApi
|
|
2753
|
+
*/
|
|
2754
|
+
logsControllerFetchAgentLogs(projectId: string, agentId: string, direction: string, cursor: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
2755
|
+
/**
|
|
2756
|
+
*
|
|
2757
|
+
* @summary Fetch event logs.
|
|
2758
|
+
* @param {string} projectId
|
|
2759
|
+
* @param {string} agentId
|
|
2760
|
+
* @param {*} [options] Override http request option.
|
|
2761
|
+
* @throws {RequiredError}
|
|
2762
|
+
* @memberof MachineAgentLogsApi
|
|
2763
|
+
*/
|
|
2764
|
+
logsControllerFetchEventLogs(projectId: string, agentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
2765
|
+
}
|
|
2615
2766
|
/**
|
|
2616
2767
|
* MachineInstancesApi - axios parameter creator
|
|
2617
2768
|
* @export
|
|
@@ -2860,188 +3011,6 @@ export declare class MachineInstancesApi extends BaseAPI {
|
|
|
2860
3011
|
*/
|
|
2861
3012
|
machineInstancesControllerUpdateRunningStatus(projectId: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
2862
3013
|
}
|
|
2863
|
-
/**
|
|
2864
|
-
* MachineModelsApi - axios parameter creator
|
|
2865
|
-
* @export
|
|
2866
|
-
*/
|
|
2867
|
-
export declare const MachineModelsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2868
|
-
/**
|
|
2869
|
-
*
|
|
2870
|
-
* @summary Create New Machine Model
|
|
2871
|
-
* @param {string} projectId
|
|
2872
|
-
* @param {object} body
|
|
2873
|
-
* @param {*} [options] Override http request option.
|
|
2874
|
-
* @throws {RequiredError}
|
|
2875
|
-
*/
|
|
2876
|
-
machineModelControllerCreateMachineModel: (projectId: string, body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2877
|
-
/**
|
|
2878
|
-
*
|
|
2879
|
-
* @summary Create New Machine Model
|
|
2880
|
-
* @param {string} projectId
|
|
2881
|
-
* @param {string} modelId
|
|
2882
|
-
* @param {Array<string>} requestBody
|
|
2883
|
-
* @param {*} [options] Override http request option.
|
|
2884
|
-
* @throws {RequiredError}
|
|
2885
|
-
*/
|
|
2886
|
-
machineModelControllerDeleteMachineModels: (projectId: string, modelId: string, requestBody: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2887
|
-
/**
|
|
2888
|
-
*
|
|
2889
|
-
* @summary Get all machine models with count
|
|
2890
|
-
* @param {string} projectId
|
|
2891
|
-
* @param {number} page
|
|
2892
|
-
* @param {number} limit
|
|
2893
|
-
* @param {*} [options] Override http request option.
|
|
2894
|
-
* @throws {RequiredError}
|
|
2895
|
-
*/
|
|
2896
|
-
machineModelControllerGetMachineInstanceByProjectId: (projectId: string, page: number, limit: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2897
|
-
/**
|
|
2898
|
-
*
|
|
2899
|
-
* @summary Update machine model by id
|
|
2900
|
-
* @param {string} projectId
|
|
2901
|
-
* @param {string} modelId
|
|
2902
|
-
* @param {*} [options] Override http request option.
|
|
2903
|
-
* @throws {RequiredError}
|
|
2904
|
-
*/
|
|
2905
|
-
machineModelControllerUpdateMachineModel: (projectId: string, modelId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2906
|
-
};
|
|
2907
|
-
/**
|
|
2908
|
-
* MachineModelsApi - functional programming interface
|
|
2909
|
-
* @export
|
|
2910
|
-
*/
|
|
2911
|
-
export declare const MachineModelsApiFp: (configuration?: Configuration) => {
|
|
2912
|
-
/**
|
|
2913
|
-
*
|
|
2914
|
-
* @summary Create New Machine Model
|
|
2915
|
-
* @param {string} projectId
|
|
2916
|
-
* @param {object} body
|
|
2917
|
-
* @param {*} [options] Override http request option.
|
|
2918
|
-
* @throws {RequiredError}
|
|
2919
|
-
*/
|
|
2920
|
-
machineModelControllerCreateMachineModel(projectId: string, body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
2921
|
-
/**
|
|
2922
|
-
*
|
|
2923
|
-
* @summary Create New Machine Model
|
|
2924
|
-
* @param {string} projectId
|
|
2925
|
-
* @param {string} modelId
|
|
2926
|
-
* @param {Array<string>} requestBody
|
|
2927
|
-
* @param {*} [options] Override http request option.
|
|
2928
|
-
* @throws {RequiredError}
|
|
2929
|
-
*/
|
|
2930
|
-
machineModelControllerDeleteMachineModels(projectId: string, modelId: string, requestBody: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
2931
|
-
/**
|
|
2932
|
-
*
|
|
2933
|
-
* @summary Get all machine models with count
|
|
2934
|
-
* @param {string} projectId
|
|
2935
|
-
* @param {number} page
|
|
2936
|
-
* @param {number} limit
|
|
2937
|
-
* @param {*} [options] Override http request option.
|
|
2938
|
-
* @throws {RequiredError}
|
|
2939
|
-
*/
|
|
2940
|
-
machineModelControllerGetMachineInstanceByProjectId(projectId: string, page: number, limit: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
2941
|
-
/**
|
|
2942
|
-
*
|
|
2943
|
-
* @summary Update machine model by id
|
|
2944
|
-
* @param {string} projectId
|
|
2945
|
-
* @param {string} modelId
|
|
2946
|
-
* @param {*} [options] Override http request option.
|
|
2947
|
-
* @throws {RequiredError}
|
|
2948
|
-
*/
|
|
2949
|
-
machineModelControllerUpdateMachineModel(projectId: string, modelId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
2950
|
-
};
|
|
2951
|
-
/**
|
|
2952
|
-
* MachineModelsApi - factory interface
|
|
2953
|
-
* @export
|
|
2954
|
-
*/
|
|
2955
|
-
export declare const MachineModelsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2956
|
-
/**
|
|
2957
|
-
*
|
|
2958
|
-
* @summary Create New Machine Model
|
|
2959
|
-
* @param {string} projectId
|
|
2960
|
-
* @param {object} body
|
|
2961
|
-
* @param {*} [options] Override http request option.
|
|
2962
|
-
* @throws {RequiredError}
|
|
2963
|
-
*/
|
|
2964
|
-
machineModelControllerCreateMachineModel(projectId: string, body: object, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
2965
|
-
/**
|
|
2966
|
-
*
|
|
2967
|
-
* @summary Create New Machine Model
|
|
2968
|
-
* @param {string} projectId
|
|
2969
|
-
* @param {string} modelId
|
|
2970
|
-
* @param {Array<string>} requestBody
|
|
2971
|
-
* @param {*} [options] Override http request option.
|
|
2972
|
-
* @throws {RequiredError}
|
|
2973
|
-
*/
|
|
2974
|
-
machineModelControllerDeleteMachineModels(projectId: string, modelId: string, requestBody: Array<string>, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
2975
|
-
/**
|
|
2976
|
-
*
|
|
2977
|
-
* @summary Get all machine models with count
|
|
2978
|
-
* @param {string} projectId
|
|
2979
|
-
* @param {number} page
|
|
2980
|
-
* @param {number} limit
|
|
2981
|
-
* @param {*} [options] Override http request option.
|
|
2982
|
-
* @throws {RequiredError}
|
|
2983
|
-
*/
|
|
2984
|
-
machineModelControllerGetMachineInstanceByProjectId(projectId: string, page: number, limit: number, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
2985
|
-
/**
|
|
2986
|
-
*
|
|
2987
|
-
* @summary Update machine model by id
|
|
2988
|
-
* @param {string} projectId
|
|
2989
|
-
* @param {string} modelId
|
|
2990
|
-
* @param {*} [options] Override http request option.
|
|
2991
|
-
* @throws {RequiredError}
|
|
2992
|
-
*/
|
|
2993
|
-
machineModelControllerUpdateMachineModel(projectId: string, modelId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
2994
|
-
};
|
|
2995
|
-
/**
|
|
2996
|
-
* MachineModelsApi - object-oriented interface
|
|
2997
|
-
* @export
|
|
2998
|
-
* @class MachineModelsApi
|
|
2999
|
-
* @extends {BaseAPI}
|
|
3000
|
-
*/
|
|
3001
|
-
export declare class MachineModelsApi extends BaseAPI {
|
|
3002
|
-
/**
|
|
3003
|
-
*
|
|
3004
|
-
* @summary Create New Machine Model
|
|
3005
|
-
* @param {string} projectId
|
|
3006
|
-
* @param {object} body
|
|
3007
|
-
* @param {*} [options] Override http request option.
|
|
3008
|
-
* @throws {RequiredError}
|
|
3009
|
-
* @memberof MachineModelsApi
|
|
3010
|
-
*/
|
|
3011
|
-
machineModelControllerCreateMachineModel(projectId: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
3012
|
-
/**
|
|
3013
|
-
*
|
|
3014
|
-
* @summary Create New Machine Model
|
|
3015
|
-
* @param {string} projectId
|
|
3016
|
-
* @param {string} modelId
|
|
3017
|
-
* @param {Array<string>} requestBody
|
|
3018
|
-
* @param {*} [options] Override http request option.
|
|
3019
|
-
* @throws {RequiredError}
|
|
3020
|
-
* @memberof MachineModelsApi
|
|
3021
|
-
*/
|
|
3022
|
-
machineModelControllerDeleteMachineModels(projectId: string, modelId: string, requestBody: Array<string>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
3023
|
-
/**
|
|
3024
|
-
*
|
|
3025
|
-
* @summary Get all machine models with count
|
|
3026
|
-
* @param {string} projectId
|
|
3027
|
-
* @param {number} page
|
|
3028
|
-
* @param {number} limit
|
|
3029
|
-
* @param {*} [options] Override http request option.
|
|
3030
|
-
* @throws {RequiredError}
|
|
3031
|
-
* @memberof MachineModelsApi
|
|
3032
|
-
*/
|
|
3033
|
-
machineModelControllerGetMachineInstanceByProjectId(projectId: string, page: number, limit: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
3034
|
-
/**
|
|
3035
|
-
*
|
|
3036
|
-
* @summary Update machine model by id
|
|
3037
|
-
* @param {string} projectId
|
|
3038
|
-
* @param {string} modelId
|
|
3039
|
-
* @param {*} [options] Override http request option.
|
|
3040
|
-
* @throws {RequiredError}
|
|
3041
|
-
* @memberof MachineModelsApi
|
|
3042
|
-
*/
|
|
3043
|
-
machineModelControllerUpdateMachineModel(projectId: string, modelId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
3044
|
-
}
|
|
3045
3014
|
/**
|
|
3046
3015
|
* MembersApi - axios parameter creator
|
|
3047
3016
|
* @export
|
|
@@ -3658,16 +3627,6 @@ export declare const QueriesAndDocumentationsApiAxiosParamCreator: (configuratio
|
|
|
3658
3627
|
* @throws {RequiredError}
|
|
3659
3628
|
*/
|
|
3660
3629
|
queriesAndDocControllerFetchSwaggerJSON: (modelId: string, projectId: string, fieldName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3661
|
-
/**
|
|
3662
|
-
*
|
|
3663
|
-
* @summary Fetch Swagger JSON
|
|
3664
|
-
* @param {string} projectId
|
|
3665
|
-
* @param {string} modelId
|
|
3666
|
-
* @param {string} queryId
|
|
3667
|
-
* @param {*} [options] Override http request option.
|
|
3668
|
-
* @throws {RequiredError}
|
|
3669
|
-
*/
|
|
3670
|
-
queriesAndDocControllerGetEventLogsByQueryId: (projectId: string, modelId: string, queryId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3671
3630
|
/**
|
|
3672
3631
|
*
|
|
3673
3632
|
* @summary Run Query
|
|
@@ -3692,16 +3651,6 @@ export declare const QueriesAndDocumentationsApiFp: (configuration?: Configurati
|
|
|
3692
3651
|
* @throws {RequiredError}
|
|
3693
3652
|
*/
|
|
3694
3653
|
queriesAndDocControllerFetchSwaggerJSON(modelId: string, projectId: string, fieldName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
3695
|
-
/**
|
|
3696
|
-
*
|
|
3697
|
-
* @summary Fetch Swagger JSON
|
|
3698
|
-
* @param {string} projectId
|
|
3699
|
-
* @param {string} modelId
|
|
3700
|
-
* @param {string} queryId
|
|
3701
|
-
* @param {*} [options] Override http request option.
|
|
3702
|
-
* @throws {RequiredError}
|
|
3703
|
-
*/
|
|
3704
|
-
queriesAndDocControllerGetEventLogsByQueryId(projectId: string, modelId: string, queryId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
3705
3654
|
/**
|
|
3706
3655
|
*
|
|
3707
3656
|
* @summary Run Query
|
|
@@ -3726,16 +3675,6 @@ export declare const QueriesAndDocumentationsApiFactory: (configuration?: Config
|
|
|
3726
3675
|
* @throws {RequiredError}
|
|
3727
3676
|
*/
|
|
3728
3677
|
queriesAndDocControllerFetchSwaggerJSON(modelId: string, projectId: string, fieldName: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
3729
|
-
/**
|
|
3730
|
-
*
|
|
3731
|
-
* @summary Fetch Swagger JSON
|
|
3732
|
-
* @param {string} projectId
|
|
3733
|
-
* @param {string} modelId
|
|
3734
|
-
* @param {string} queryId
|
|
3735
|
-
* @param {*} [options] Override http request option.
|
|
3736
|
-
* @throws {RequiredError}
|
|
3737
|
-
*/
|
|
3738
|
-
queriesAndDocControllerGetEventLogsByQueryId(projectId: string, modelId: string, queryId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
3739
3678
|
/**
|
|
3740
3679
|
*
|
|
3741
3680
|
* @summary Run Query
|
|
@@ -3763,17 +3702,6 @@ export declare class QueriesAndDocumentationsApi extends BaseAPI {
|
|
|
3763
3702
|
* @memberof QueriesAndDocumentationsApi
|
|
3764
3703
|
*/
|
|
3765
3704
|
queriesAndDocControllerFetchSwaggerJSON(modelId: string, projectId: string, fieldName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
3766
|
-
/**
|
|
3767
|
-
*
|
|
3768
|
-
* @summary Fetch Swagger JSON
|
|
3769
|
-
* @param {string} projectId
|
|
3770
|
-
* @param {string} modelId
|
|
3771
|
-
* @param {string} queryId
|
|
3772
|
-
* @param {*} [options] Override http request option.
|
|
3773
|
-
* @throws {RequiredError}
|
|
3774
|
-
* @memberof QueriesAndDocumentationsApi
|
|
3775
|
-
*/
|
|
3776
|
-
queriesAndDocControllerGetEventLogsByQueryId(projectId: string, modelId: string, queryId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
3777
3705
|
/**
|
|
3778
3706
|
*
|
|
3779
3707
|
* @summary Run Query
|