@explo-tech/fido-api 1.3.1-jordan-fix-export-schema.1 → 1.3.1

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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@explo-tech/fido-api",
3
3
  "description": "Fido api",
4
4
  "homepage": "https://github.com/trust-kaz/fido",
5
- "version": "1.3.1-jordan-fix-export-schema.1",
5
+ "version": "1.3.1",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/trust-kaz/fido"
@@ -2,6 +2,7 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
  import type { QueryExecutionResponse } from '../models/QueryExecutionResponse';
5
+ import type { QueryExportResponse } from '../models/QueryExportResponse';
5
6
  import type { QueryPreviewRequest } from '../models/QueryPreviewRequest';
6
7
  import type { TablePreviewRequest } from '../models/TablePreviewRequest';
7
8
  import type { UUID } from '../models/UUID';
@@ -77,7 +78,7 @@ export class QueryResourceService {
77
78
  * @param namespaceId
78
79
  * @param viewId
79
80
  * @param requestBody View to export against the provided data source
80
- * @returns QueryExecutionResponse A DataPage of the provided query
81
+ * @returns QueryExportResponse A DataPage of the provided query
81
82
  * @throws ApiError
82
83
  */
83
84
  public static exportView(
@@ -85,7 +86,7 @@ export class QueryResourceService {
85
86
  namespaceId: UUID,
86
87
  viewId: UUID,
87
88
  requestBody: ViewExportRequest,
88
- ): CancelablePromise<QueryExecutionResponse> {
89
+ ): CancelablePromise<QueryExportResponse> {
89
90
  return __request(OpenAPI, {
90
91
  method: 'POST',
91
92
  url: '/v1/namespaces/{namespaceId}/data-sources/{dataSourceId}/views/{viewId}/export',