@explo-tech/fido-api 0.0.40 → 0.0.42
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 +1 -0
- package/core/ApiRequestOptions.ts +1 -0
- package/core/ApiResult.ts +1 -0
- package/core/CancelablePromise.ts +1 -0
- package/core/OpenAPI.ts +6 -5
- package/core/request.ts +28 -15
- package/index.ts +6 -0
- package/models/AggregateProperty.ts +1 -0
- package/models/Aggregation.ts +1 -0
- package/models/AggregationOption.ts +1 -0
- package/models/And.ts +1 -0
- package/models/BaseComputation.ts +1 -0
- package/models/BooleanPropertyValue.ts +1 -0
- package/models/CalendarInterval.ts +1 -0
- package/models/CalendarIntervalGrouping.ts +1 -0
- package/models/ClientError.ts +1 -0
- package/models/Computation.ts +1 -0
- package/models/ComputedView.ts +5 -3
- package/models/DataPage.ts +1 -0
- package/models/DataRecord.ts +1 -0
- package/models/DataRequestParameters.ts +1 -0
- package/models/DataResponseMetadata.ts +1 -0
- package/models/DataSchema.ts +1 -0
- package/models/DataSource.ts +3 -2
- package/models/DataSourceConfiguration.ts +1 -0
- package/models/DataSourceRequest.ts +1 -0
- package/models/DataSourceResponse.ts +9 -2
- package/models/DatePart.ts +1 -0
- package/models/DatePartGrouping.ts +1 -0
- package/models/DatePropertyValue.ts +1 -0
- package/models/DateTimePropertyValue.ts +1 -0
- package/models/DecimalIntervalGrouping.ts +1 -0
- package/models/DecimalPropertyValue.ts +1 -0
- package/models/DoublePropertyValue.ts +1 -0
- package/models/Equal.ts +1 -0
- package/models/Filter.ts +1 -0
- package/models/GreaterThan.ts +1 -0
- package/models/GreaterThanOrEqual.ts +1 -0
- package/models/Grouping.ts +1 -0
- package/models/In.ts +1 -0
- package/models/IntegerIntervalGrouping.ts +1 -0
- package/models/IntegerPropertyValue.ts +1 -0
- package/models/LateBoundEqual.ts +1 -0
- package/models/LateBoundGreaterThan.ts +1 -0
- package/models/LateBoundGreaterThanOrEqual.ts +1 -0
- package/models/LateBoundIn.ts +1 -0
- package/models/LateBoundLessThan.ts +1 -0
- package/models/LateBoundLessThanOrEqual.ts +1 -0
- package/models/LateBoundStringContains.ts +1 -0
- package/models/LessThan.ts +1 -0
- package/models/LessThanOrEqual.ts +1 -0
- package/models/ListNamespacesResponse.ts +1 -0
- package/models/ListViewsRequest.ts +1 -0
- package/models/ListViewsResponse.ts +3 -2
- package/models/MSS.ts +1 -0
- package/models/MSSAuthentication.ts +1 -0
- package/models/MySql.ts +1 -0
- package/models/MySqlAuthentication.ts +1 -0
- package/models/Namespace.ts +2 -1
- package/models/NamespaceRequest.ts +1 -0
- package/models/NamespaceResponse.ts +4 -1
- package/models/NamespaceResponseMetadata.ts +4 -1
- package/models/Not.ts +1 -0
- package/models/Null.ts +1 -0
- package/models/Or.ts +1 -0
- package/models/PagingConfiguration.ts +1 -0
- package/models/PasswordAuthentication.ts +1 -0
- package/models/Pivot.ts +1 -0
- package/models/PivotColumn.ts +1 -0
- package/models/PivotValue.ts +1 -0
- package/models/Postgres.ts +1 -0
- package/models/PostgresAuthentication.ts +1 -0
- package/models/Property.ts +1 -0
- package/models/PropertySchema.ts +1 -0
- package/models/PropertyType.ts +1 -0
- package/models/PropertyValue.ts +1 -0
- package/models/PublicTunnel.ts +1 -0
- package/models/QueryExecutionResponse.ts +1 -0
- package/models/QueryPreviewRequest.ts +1 -0
- package/models/RequestTelemetry.ts +1 -0
- package/models/SSHAuthentication.ts +1 -0
- package/models/SSHTunnel.ts +1 -0
- package/models/Sort.ts +1 -0
- package/models/SortDirection.ts +1 -0
- package/models/SourceProperty.ts +1 -0
- package/models/StringContains.ts +1 -0
- package/models/StringPropertyValue.ts +1 -0
- package/models/TablePreviewRequest.ts +1 -0
- package/models/TableView.ts +5 -3
- package/models/Tenant.ts +12 -0
- package/models/TenantKey.ts +11 -0
- package/models/TenantPrivateKeyAuthentication.ts +1 -0
- package/models/TenantRequest.ts +9 -0
- package/models/TenantResponse.ts +11 -0
- package/models/TestConnectionRequest.ts +1 -0
- package/models/TestConnectionResponse.ts +1 -0
- package/models/Tunnel.ts +1 -0
- package/models/UUID.ts +1 -0
- package/models/ValueGrouping.ts +1 -0
- package/models/VendorPrivateKeyAuthentication.ts +1 -0
- package/models/View.ts +5 -6
- package/models/ViewRequest.ts +4 -2
- package/models/ViewResponse.ts +5 -1
- package/models/ViewRunRequest.ts +1 -0
- package/package.json +1 -1
- package/services/DataSourceResourceService.ts +18 -20
- package/services/HealthResourceService.ts +1 -0
- package/services/ListViewsResourceService.ts +4 -3
- package/services/NamespaceResourceService.ts +24 -22
- package/services/QueryResourceService.ts +1 -0
- package/services/TenantResourceService.ts +50 -0
- package/services/TestConnectionResourceService.ts +1 -0
- package/services/ViewResourceService.ts +18 -20
- package/.tool-versions +0 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
1
2
|
/* istanbul ignore file */
|
|
2
3
|
/* tslint:disable */
|
|
3
4
|
/* eslint-disable */
|
|
@@ -12,66 +13,63 @@ import { request as __request } from '../core/request';
|
|
|
12
13
|
export class ViewResourceService {
|
|
13
14
|
|
|
14
15
|
/**
|
|
15
|
-
*
|
|
16
|
-
* @param id
|
|
16
|
+
* Creates a view
|
|
17
17
|
* @param namespaceId
|
|
18
|
+
* @param requestBody View object to create
|
|
18
19
|
* @returns ViewResponse The requested view
|
|
19
20
|
* @throws ApiError
|
|
20
21
|
*/
|
|
21
|
-
public static
|
|
22
|
-
id: UUID,
|
|
22
|
+
public static createView(
|
|
23
23
|
namespaceId: UUID,
|
|
24
|
+
requestBody: ViewRequest,
|
|
24
25
|
): CancelablePromise<ViewResponse> {
|
|
25
26
|
return __request(OpenAPI, {
|
|
26
|
-
method: '
|
|
27
|
-
url: '/v1/namespaces/{namespaceId}/views
|
|
27
|
+
method: 'POST',
|
|
28
|
+
url: '/v1/namespaces/{namespaceId}/views',
|
|
28
29
|
path: {
|
|
29
|
-
'id': id,
|
|
30
30
|
'namespaceId': namespaceId,
|
|
31
31
|
},
|
|
32
|
+
body: requestBody,
|
|
33
|
+
mediaType: '*/*',
|
|
32
34
|
});
|
|
33
35
|
}
|
|
34
36
|
|
|
35
37
|
/**
|
|
36
|
-
*
|
|
38
|
+
* Gets a view
|
|
37
39
|
* @param id
|
|
38
40
|
* @param namespaceId
|
|
39
|
-
* @
|
|
40
|
-
* @returns ViewResponse The updated view
|
|
41
|
+
* @returns ViewResponse The requested view
|
|
41
42
|
* @throws ApiError
|
|
42
43
|
*/
|
|
43
|
-
public static
|
|
44
|
+
public static getView(
|
|
44
45
|
id: UUID,
|
|
45
46
|
namespaceId: UUID,
|
|
46
|
-
requestBody: ViewRequest,
|
|
47
47
|
): CancelablePromise<ViewResponse> {
|
|
48
48
|
return __request(OpenAPI, {
|
|
49
|
-
method: '
|
|
49
|
+
method: 'GET',
|
|
50
50
|
url: '/v1/namespaces/{namespaceId}/views/{id}',
|
|
51
51
|
path: {
|
|
52
52
|
'id': id,
|
|
53
53
|
'namespaceId': namespaceId,
|
|
54
54
|
},
|
|
55
|
-
body: requestBody,
|
|
56
|
-
mediaType: '*/*',
|
|
57
55
|
});
|
|
58
56
|
}
|
|
59
57
|
|
|
60
58
|
/**
|
|
61
|
-
*
|
|
59
|
+
* Updates a view's metadata
|
|
62
60
|
* @param id
|
|
63
61
|
* @param namespaceId
|
|
64
|
-
* @param requestBody View object to
|
|
65
|
-
* @returns ViewResponse The
|
|
62
|
+
* @param requestBody View object to update
|
|
63
|
+
* @returns ViewResponse The updated view
|
|
66
64
|
* @throws ApiError
|
|
67
65
|
*/
|
|
68
|
-
public static
|
|
66
|
+
public static updateView(
|
|
69
67
|
id: UUID,
|
|
70
68
|
namespaceId: UUID,
|
|
71
69
|
requestBody: ViewRequest,
|
|
72
70
|
): CancelablePromise<ViewResponse> {
|
|
73
71
|
return __request(OpenAPI, {
|
|
74
|
-
method: '
|
|
72
|
+
method: 'PUT',
|
|
75
73
|
url: '/v1/namespaces/{namespaceId}/views/{id}',
|
|
76
74
|
path: {
|
|
77
75
|
'id': id,
|
package/.tool-versions
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
nodejs 16.17.1
|