@explo-tech/fido-api 0.0.3 → 0.0.5
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/core/ApiError.ts +24 -0
- package/core/ApiRequestOptions.ts +16 -0
- package/core/ApiResult.ts +10 -0
- package/core/CancelablePromise.ts +130 -0
- package/core/OpenAPI.ts +31 -0
- package/core/request.ts +307 -0
- package/index.ts +47 -0
- package/models/BooleanPropertyValue.ts +8 -0
- package/models/ClientError.ts +9 -0
- package/models/ComputedViewRunRequest.ts +13 -0
- package/models/DataPage.ts +10 -0
- package/models/DataRequestParameters.ts +11 -0
- package/models/DataResponseMetadata.ts +12 -0
- package/models/DataSchema.ts +10 -0
- package/models/DataSource.ts +15 -0
- package/models/DataSourceConfiguration.ts +10 -0
- package/models/DataSourceRequest.ts +10 -0
- package/models/DataSourceResponse.ts +10 -0
- package/models/DataSourceTablePreviewRequest.ts +11 -0
- package/models/DatePropertyValue.ts +10 -0
- package/models/DateTimePropertyValue.ts +10 -0
- package/models/DecimalPropertyValue.ts +8 -0
- package/models/DoublePropertyValue.ts +8 -0
- package/models/Duration.ts +5 -0
- package/models/Instant.ts +5 -0
- package/models/IntegerPropertyValue.ts +8 -0
- package/models/LocalDate.ts +5 -0
- package/models/Namespace.ts +11 -0
- package/models/NamespaceRequest.ts +10 -0
- package/models/NamespaceResponse.ts +12 -0
- package/models/NamespaceResponseMetadata.ts +10 -0
- package/models/PagingConfiguration.ts +9 -0
- package/models/PropertySchema.ts +13 -0
- package/models/PropertyType.ts +14 -0
- package/models/PropertyValue.ts +14 -0
- package/models/QueryExecutionResponse.ts +15 -0
- package/models/Record.ts +10 -0
- package/models/RequestTelemetry.ts +12 -0
- package/models/StringPropertyValue.ts +8 -0
- package/models/Tunnel.ts +5 -0
- package/models/UUID.ts +5 -0
- package/package.json +1 -1
- package/services/DatasourceResourceService.ts +106 -0
- package/services/HealthResourceService.ts +45 -0
- package/services/NamespaceResourceService.ts +99 -0
- package/services/QueryResourceService.ts +65 -0
- package/.openapi-generator/FILES +0 -32
- package/.openapi-generator/VERSION +0 -1
- package/.openapi-generator-ignore +0 -23
- package/.tool-versions +0 -1
- package/api/apis.ts +0 -20
- package/api/datasourceResourceApi.ts +0 -412
- package/api/healthResourceApi.ts +0 -239
- package/api/namespaceResourceApi.ts +0 -389
- package/api/queryResourceApi.ts +0 -261
- package/api.ts +0 -3
- package/git_push.sh +0 -57
- package/model/clientError.ts +0 -37
- package/model/computedViewRunRequest.ts +0 -50
- package/model/dataPage.ts +0 -32
- package/model/dataRequestParameters.ts +0 -38
- package/model/dataResponseMetadata.ts +0 -44
- package/model/dataSchema.ts +0 -32
- package/model/dataSource.ts +0 -56
- package/model/dataSourceConfiguration.ts +0 -31
- package/model/dataSourceRequest.ts +0 -32
- package/model/dataSourceResponse.ts +0 -32
- package/model/dataSourceTablePreviewRequest.ts +0 -38
- package/model/models.ts +0 -288
- package/model/namespace.ts +0 -37
- package/model/namespaceRequest.ts +0 -32
- package/model/namespaceResponse.ts +0 -39
- package/model/namespaceResponseMeta.ts +0 -32
- package/model/namespaceResponseMetadata.ts +0 -32
- package/model/pagingConfiguration.ts +0 -37
- package/model/propertySchema.ts +0 -52
- package/model/propertyType.ts +0 -24
- package/model/queryExecutionResponse.ts +0 -52
- package/model/queryExecutionResponseRequestTelemetry.ts +0 -43
- package/model/record.ts +0 -31
- package/model/requestTelemetry.ts +0 -43
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { DataRequestParameters } from './DataRequestParameters';
|
|
6
|
+
|
|
7
|
+
export type DataSourceTablePreviewRequest = {
|
|
8
|
+
tableIdentifier: string;
|
|
9
|
+
dataRequestParameters: DataRequestParameters;
|
|
10
|
+
};
|
|
11
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { Namespace } from './Namespace';
|
|
6
|
+
import type { NamespaceResponseMetadata } from './NamespaceResponseMetadata';
|
|
7
|
+
|
|
8
|
+
export type NamespaceResponse = {
|
|
9
|
+
namespace: Namespace;
|
|
10
|
+
meta: NamespaceResponseMetadata | null;
|
|
11
|
+
};
|
|
12
|
+
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
export enum PropertyType {
|
|
6
|
+
BOOLEAN = 'BOOLEAN',
|
|
7
|
+
DATE = 'DATE',
|
|
8
|
+
DATETIME = 'DATETIME',
|
|
9
|
+
DECIMAL = 'DECIMAL',
|
|
10
|
+
DOUBLE = 'DOUBLE',
|
|
11
|
+
INTEGER = 'INTEGER',
|
|
12
|
+
STRING = 'STRING',
|
|
13
|
+
UNSUPPORTED = 'UNSUPPORTED',
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { BooleanPropertyValue } from './BooleanPropertyValue';
|
|
6
|
+
import type { DatePropertyValue } from './DatePropertyValue';
|
|
7
|
+
import type { DateTimePropertyValue } from './DateTimePropertyValue';
|
|
8
|
+
import type { DecimalPropertyValue } from './DecimalPropertyValue';
|
|
9
|
+
import type { DoublePropertyValue } from './DoublePropertyValue';
|
|
10
|
+
import type { IntegerPropertyValue } from './IntegerPropertyValue';
|
|
11
|
+
import type { StringPropertyValue } from './StringPropertyValue';
|
|
12
|
+
|
|
13
|
+
export type PropertyValue = (BooleanPropertyValue | DatePropertyValue | DateTimePropertyValue | DecimalPropertyValue | DoublePropertyValue | IntegerPropertyValue | StringPropertyValue);
|
|
14
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { DataPage } from './DataPage';
|
|
6
|
+
import type { DataResponseMetadata } from './DataResponseMetadata';
|
|
7
|
+
import type { RequestTelemetry } from './RequestTelemetry';
|
|
8
|
+
|
|
9
|
+
export type QueryExecutionResponse = {
|
|
10
|
+
data: DataPage;
|
|
11
|
+
meta: DataResponseMetadata;
|
|
12
|
+
tableIdentifier: string;
|
|
13
|
+
requestTelemetry: RequestTelemetry | null;
|
|
14
|
+
};
|
|
15
|
+
|
package/models/Record.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { Duration } from './Duration';
|
|
6
|
+
|
|
7
|
+
export type RequestTelemetry = {
|
|
8
|
+
requestTime?: Duration | null;
|
|
9
|
+
queryTime?: Duration | null;
|
|
10
|
+
processingTime?: Duration | null;
|
|
11
|
+
};
|
|
12
|
+
|
package/models/Tunnel.ts
ADDED
package/models/UUID.ts
ADDED
package/package.json
CHANGED
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import type { DataSourceRequest } from '../models/DataSourceRequest';
|
|
5
|
+
import type { DataSourceResponse } from '../models/DataSourceResponse';
|
|
6
|
+
import type { UUID } from '../models/UUID';
|
|
7
|
+
|
|
8
|
+
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
9
|
+
import { OpenAPI } from '../core/OpenAPI';
|
|
10
|
+
import { request as __request } from '../core/request';
|
|
11
|
+
|
|
12
|
+
export class DatasourceResourceService {
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Gets a data source
|
|
16
|
+
* @param id
|
|
17
|
+
* @param namespaceId
|
|
18
|
+
* @returns DataSourceResponse The requested data source
|
|
19
|
+
* @throws ApiError
|
|
20
|
+
*/
|
|
21
|
+
public static getDataSource(
|
|
22
|
+
id: UUID,
|
|
23
|
+
namespaceId: UUID,
|
|
24
|
+
): CancelablePromise<DataSourceResponse> {
|
|
25
|
+
return __request(OpenAPI, {
|
|
26
|
+
method: 'GET',
|
|
27
|
+
url: '/v1/namespaces/{namespaceId}/data-sources/{id}',
|
|
28
|
+
path: {
|
|
29
|
+
'id': id,
|
|
30
|
+
'namespaceId': namespaceId,
|
|
31
|
+
},
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Updates a data source's metadata
|
|
37
|
+
* @param id
|
|
38
|
+
* @param namespaceId
|
|
39
|
+
* @param requestBody
|
|
40
|
+
* @returns DataSourceResponse The updated data source
|
|
41
|
+
* @throws ApiError
|
|
42
|
+
*/
|
|
43
|
+
public static updateDataSource(
|
|
44
|
+
id: UUID,
|
|
45
|
+
namespaceId: UUID,
|
|
46
|
+
requestBody?: DataSourceRequest,
|
|
47
|
+
): CancelablePromise<DataSourceResponse> {
|
|
48
|
+
return __request(OpenAPI, {
|
|
49
|
+
method: 'PUT',
|
|
50
|
+
url: '/v1/namespaces/{namespaceId}/data-sources/{id}',
|
|
51
|
+
path: {
|
|
52
|
+
'id': id,
|
|
53
|
+
'namespaceId': namespaceId,
|
|
54
|
+
},
|
|
55
|
+
body: requestBody,
|
|
56
|
+
mediaType: 'application/json',
|
|
57
|
+
});
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* Creates a data source
|
|
62
|
+
* @param id
|
|
63
|
+
* @param namespaceId
|
|
64
|
+
* @param requestBody
|
|
65
|
+
* @returns DataSourceResponse The requested data source
|
|
66
|
+
* @throws ApiError
|
|
67
|
+
*/
|
|
68
|
+
public static createDataSource(
|
|
69
|
+
id: UUID,
|
|
70
|
+
namespaceId: UUID,
|
|
71
|
+
requestBody?: DataSourceRequest,
|
|
72
|
+
): CancelablePromise<DataSourceResponse> {
|
|
73
|
+
return __request(OpenAPI, {
|
|
74
|
+
method: 'POST',
|
|
75
|
+
url: '/v1/namespaces/{namespaceId}/data-sources/{id}',
|
|
76
|
+
path: {
|
|
77
|
+
'id': id,
|
|
78
|
+
'namespaceId': namespaceId,
|
|
79
|
+
},
|
|
80
|
+
body: requestBody,
|
|
81
|
+
mediaType: 'application/json',
|
|
82
|
+
});
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* Deletes a data source
|
|
87
|
+
* @param id
|
|
88
|
+
* @param namespaceId
|
|
89
|
+
* @returns any 200 if the data source was deleted properly
|
|
90
|
+
* @throws ApiError
|
|
91
|
+
*/
|
|
92
|
+
public static deleteDataSource(
|
|
93
|
+
id: UUID,
|
|
94
|
+
namespaceId: UUID,
|
|
95
|
+
): CancelablePromise<Record<string, any>> {
|
|
96
|
+
return __request(OpenAPI, {
|
|
97
|
+
method: 'DELETE',
|
|
98
|
+
url: '/v1/namespaces/{namespaceId}/data-sources/{id}',
|
|
99
|
+
path: {
|
|
100
|
+
'id': id,
|
|
101
|
+
'namespaceId': namespaceId,
|
|
102
|
+
},
|
|
103
|
+
});
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import type { UUID } from '../models/UUID';
|
|
5
|
+
|
|
6
|
+
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
7
|
+
import { OpenAPI } from '../core/OpenAPI';
|
|
8
|
+
import { request as __request } from '../core/request';
|
|
9
|
+
|
|
10
|
+
export class HealthResourceService {
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Returns the entire state of the FIDO application
|
|
14
|
+
* @returns any A response with the current status of the FIDO
|
|
15
|
+
* @throws ApiError
|
|
16
|
+
*/
|
|
17
|
+
public static getFidoHealth(): CancelablePromise<Record<string, any>> {
|
|
18
|
+
return __request(OpenAPI, {
|
|
19
|
+
method: 'GET',
|
|
20
|
+
url: '/v1/health',
|
|
21
|
+
});
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* Verifies that the DataSourceConnection verticle is alive
|
|
26
|
+
* @param dataSourceId
|
|
27
|
+
* @param namespaceId
|
|
28
|
+
* @returns any A response with the current status of the verticle
|
|
29
|
+
* @throws ApiError
|
|
30
|
+
*/
|
|
31
|
+
public static getDataSourceConnectionHealth(
|
|
32
|
+
dataSourceId: UUID,
|
|
33
|
+
namespaceId: UUID,
|
|
34
|
+
): CancelablePromise<Record<string, any>> {
|
|
35
|
+
return __request(OpenAPI, {
|
|
36
|
+
method: 'GET',
|
|
37
|
+
url: '/v1/health/data-source-connection/{namespaceId}/{dataSourceId}',
|
|
38
|
+
path: {
|
|
39
|
+
'dataSourceId': dataSourceId,
|
|
40
|
+
'namespaceId': namespaceId,
|
|
41
|
+
},
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import type { NamespaceRequest } from '../models/NamespaceRequest';
|
|
5
|
+
import type { NamespaceResponse } from '../models/NamespaceResponse';
|
|
6
|
+
import type { UUID } from '../models/UUID';
|
|
7
|
+
|
|
8
|
+
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
9
|
+
import { OpenAPI } from '../core/OpenAPI';
|
|
10
|
+
import { request as __request } from '../core/request';
|
|
11
|
+
|
|
12
|
+
export class NamespaceResourceService {
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Gets a namespace and its associated data sources
|
|
16
|
+
* @param id
|
|
17
|
+
* @param includeDataSources
|
|
18
|
+
* @returns NamespaceResponse The requested namespace, along with its associated data sources
|
|
19
|
+
* @throws ApiError
|
|
20
|
+
*/
|
|
21
|
+
public static getNamespace(
|
|
22
|
+
id: UUID,
|
|
23
|
+
includeDataSources: boolean = false,
|
|
24
|
+
): CancelablePromise<NamespaceResponse> {
|
|
25
|
+
return __request(OpenAPI, {
|
|
26
|
+
method: 'GET',
|
|
27
|
+
url: '/v1/namespaces/{id}',
|
|
28
|
+
path: {
|
|
29
|
+
'id': id,
|
|
30
|
+
},
|
|
31
|
+
query: {
|
|
32
|
+
'includeDataSources': includeDataSources,
|
|
33
|
+
},
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* Updates a namespace's metadata
|
|
39
|
+
* @param id
|
|
40
|
+
* @param requestBody
|
|
41
|
+
* @returns NamespaceResponse The updated namespace, along with its associated data sources
|
|
42
|
+
* @throws ApiError
|
|
43
|
+
*/
|
|
44
|
+
public static updateNamespace(
|
|
45
|
+
id: UUID,
|
|
46
|
+
requestBody?: NamespaceRequest,
|
|
47
|
+
): CancelablePromise<NamespaceResponse> {
|
|
48
|
+
return __request(OpenAPI, {
|
|
49
|
+
method: 'PUT',
|
|
50
|
+
url: '/v1/namespaces/{id}',
|
|
51
|
+
path: {
|
|
52
|
+
'id': id,
|
|
53
|
+
},
|
|
54
|
+
body: requestBody,
|
|
55
|
+
mediaType: 'application/json',
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Creates a namespace and optionally a data source associated with it
|
|
61
|
+
* @param id
|
|
62
|
+
* @param requestBody
|
|
63
|
+
* @returns NamespaceResponse The requested namespace, along with its associated data source if applicable
|
|
64
|
+
* @throws ApiError
|
|
65
|
+
*/
|
|
66
|
+
public static createNamespace(
|
|
67
|
+
id: UUID,
|
|
68
|
+
requestBody?: NamespaceRequest,
|
|
69
|
+
): CancelablePromise<NamespaceResponse> {
|
|
70
|
+
return __request(OpenAPI, {
|
|
71
|
+
method: 'POST',
|
|
72
|
+
url: '/v1/namespaces/{id}',
|
|
73
|
+
path: {
|
|
74
|
+
'id': id,
|
|
75
|
+
},
|
|
76
|
+
body: requestBody,
|
|
77
|
+
mediaType: 'application/json',
|
|
78
|
+
});
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* Deletes a namespace, cascading to its associated resources
|
|
83
|
+
* @param id
|
|
84
|
+
* @returns any 200 if the namespace was deleted properly
|
|
85
|
+
* @throws ApiError
|
|
86
|
+
*/
|
|
87
|
+
public static deleteNamespace(
|
|
88
|
+
id: UUID,
|
|
89
|
+
): CancelablePromise<Record<string, any>> {
|
|
90
|
+
return __request(OpenAPI, {
|
|
91
|
+
method: 'DELETE',
|
|
92
|
+
url: '/v1/namespaces/{id}',
|
|
93
|
+
path: {
|
|
94
|
+
'id': id,
|
|
95
|
+
},
|
|
96
|
+
});
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import type { ComputedViewRunRequest } from '../models/ComputedViewRunRequest';
|
|
5
|
+
import type { DataSourceTablePreviewRequest } from '../models/DataSourceTablePreviewRequest';
|
|
6
|
+
import type { QueryExecutionResponse } from '../models/QueryExecutionResponse';
|
|
7
|
+
import type { UUID } from '../models/UUID';
|
|
8
|
+
|
|
9
|
+
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
10
|
+
import { OpenAPI } from '../core/OpenAPI';
|
|
11
|
+
import { request as __request } from '../core/request';
|
|
12
|
+
|
|
13
|
+
export class QueryResourceService {
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Gets a preview of a specified table in a Data Source
|
|
17
|
+
* @param dataSourceId
|
|
18
|
+
* @param namespaceId
|
|
19
|
+
* @param requestBody
|
|
20
|
+
* @returns QueryExecutionResponse A DataPage of the resulting Data Source's data
|
|
21
|
+
* @throws ApiError
|
|
22
|
+
*/
|
|
23
|
+
public static getDatasourceTablePreview(
|
|
24
|
+
dataSourceId: UUID,
|
|
25
|
+
namespaceId: UUID,
|
|
26
|
+
requestBody?: DataSourceTablePreviewRequest,
|
|
27
|
+
): CancelablePromise<QueryExecutionResponse> {
|
|
28
|
+
return __request(OpenAPI, {
|
|
29
|
+
method: 'POST',
|
|
30
|
+
url: '/v1/namespaces/{namespaceId}/data-sources/{dataSourceId}/_preview',
|
|
31
|
+
path: {
|
|
32
|
+
'dataSourceId': dataSourceId,
|
|
33
|
+
'namespaceId': namespaceId,
|
|
34
|
+
},
|
|
35
|
+
body: requestBody,
|
|
36
|
+
mediaType: 'application/json',
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* Runs a provided query against the provided data source
|
|
42
|
+
* @param dataSourceId
|
|
43
|
+
* @param namespaceId
|
|
44
|
+
* @param requestBody
|
|
45
|
+
* @returns QueryExecutionResponse A DataPage of the resulting Data Source's data
|
|
46
|
+
* @throws ApiError
|
|
47
|
+
*/
|
|
48
|
+
public static runComputedView(
|
|
49
|
+
dataSourceId: UUID,
|
|
50
|
+
namespaceId: UUID,
|
|
51
|
+
requestBody?: ComputedViewRunRequest,
|
|
52
|
+
): CancelablePromise<QueryExecutionResponse> {
|
|
53
|
+
return __request(OpenAPI, {
|
|
54
|
+
method: 'POST',
|
|
55
|
+
url: '/v1/namespaces/{namespaceId}/data-sources/{dataSourceId}/_run',
|
|
56
|
+
path: {
|
|
57
|
+
'dataSourceId': dataSourceId,
|
|
58
|
+
'namespaceId': namespaceId,
|
|
59
|
+
},
|
|
60
|
+
body: requestBody,
|
|
61
|
+
mediaType: 'application/json',
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
}
|
package/.openapi-generator/FILES
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
.gitignore
|
|
2
|
-
api.ts
|
|
3
|
-
api/apis.ts
|
|
4
|
-
api/datasourceResourceApi.ts
|
|
5
|
-
api/healthResourceApi.ts
|
|
6
|
-
api/namespaceResourceApi.ts
|
|
7
|
-
api/queryResourceApi.ts
|
|
8
|
-
git_push.sh
|
|
9
|
-
model/clientError.ts
|
|
10
|
-
model/computedViewRunRequest.ts
|
|
11
|
-
model/dataPage.ts
|
|
12
|
-
model/dataRequestParameters.ts
|
|
13
|
-
model/dataResponseMetadata.ts
|
|
14
|
-
model/dataSchema.ts
|
|
15
|
-
model/dataSource.ts
|
|
16
|
-
model/dataSourceConfiguration.ts
|
|
17
|
-
model/dataSourceRequest.ts
|
|
18
|
-
model/dataSourceResponse.ts
|
|
19
|
-
model/dataSourceTablePreviewRequest.ts
|
|
20
|
-
model/models.ts
|
|
21
|
-
model/namespace.ts
|
|
22
|
-
model/namespaceRequest.ts
|
|
23
|
-
model/namespaceResponse.ts
|
|
24
|
-
model/namespaceResponseMeta.ts
|
|
25
|
-
model/namespaceResponseMetadata.ts
|
|
26
|
-
model/pagingConfiguration.ts
|
|
27
|
-
model/propertySchema.ts
|
|
28
|
-
model/propertyType.ts
|
|
29
|
-
model/queryExecutionResponse.ts
|
|
30
|
-
model/queryExecutionResponseRequestTelemetry.ts
|
|
31
|
-
model/record.ts
|
|
32
|
-
model/requestTelemetry.ts
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
6.5.0
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# OpenAPI Generator Ignore
|
|
2
|
-
# Generated by openapi-generator https://github.com/openapitools/openapi-generator
|
|
3
|
-
|
|
4
|
-
# Use this file to prevent files from being overwritten by the generator.
|
|
5
|
-
# The patterns follow closely to .gitignore or .dockerignore.
|
|
6
|
-
|
|
7
|
-
# As an example, the C# client generator defines ApiClient.cs.
|
|
8
|
-
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
|
|
9
|
-
#ApiClient.cs
|
|
10
|
-
|
|
11
|
-
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
|
|
12
|
-
#foo/*/qux
|
|
13
|
-
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
|
|
14
|
-
|
|
15
|
-
# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
|
|
16
|
-
#foo/**/qux
|
|
17
|
-
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
|
|
18
|
-
|
|
19
|
-
# You can also negate patterns with an exclamation (!).
|
|
20
|
-
# For example, you can ignore all files in a docs folder with the file extension .md:
|
|
21
|
-
#docs/*.md
|
|
22
|
-
# Then explicitly reverse the ignore rule for a single file:
|
|
23
|
-
#!docs/README.md
|
package/.tool-versions
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
nodejs 16.17.1
|