@explo-tech/fido-api 0.0.35 → 0.0.37
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/models/ComputedView.ts
CHANGED
|
@@ -8,8 +8,8 @@ export type ComputedView = {
|
|
|
8
8
|
name: string;
|
|
9
9
|
description: string | null;
|
|
10
10
|
columnDefinitions: Array<PropertySchema>;
|
|
11
|
-
readonly id
|
|
12
|
-
readonly namespaceId
|
|
11
|
+
readonly id?: string;
|
|
12
|
+
readonly namespaceId?: string;
|
|
13
13
|
'@type': 'computed-view';
|
|
14
14
|
query: string;
|
|
15
15
|
};
|
package/models/DataSource.ts
CHANGED
|
@@ -7,8 +7,8 @@ import type { DataSourceConfiguration } from './DataSourceConfiguration';
|
|
|
7
7
|
export type DataSource = {
|
|
8
8
|
name: string;
|
|
9
9
|
externalId: string;
|
|
10
|
-
readonly id
|
|
11
|
-
readonly namespaceId
|
|
10
|
+
readonly id?: string;
|
|
11
|
+
readonly namespaceId?: string;
|
|
12
12
|
configuration: DataSourceConfiguration;
|
|
13
13
|
};
|
|
14
14
|
|
|
@@ -2,9 +2,15 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
5
|
-
import type {
|
|
5
|
+
import type { DataSourceConfiguration } from './DataSourceConfiguration';
|
|
6
6
|
|
|
7
7
|
export type DataSourceResponse = {
|
|
8
|
-
dataSource:
|
|
8
|
+
dataSource: {
|
|
9
|
+
name: string;
|
|
10
|
+
externalId: string;
|
|
11
|
+
readonly id: string;
|
|
12
|
+
readonly namespaceId: string;
|
|
13
|
+
configuration: DataSourceConfiguration;
|
|
14
|
+
};
|
|
9
15
|
};
|
|
10
16
|
|
package/models/TableView.ts
CHANGED
|
@@ -8,8 +8,8 @@ export type TableView = {
|
|
|
8
8
|
name: string;
|
|
9
9
|
description: string | null;
|
|
10
10
|
columnDefinitions: Array<PropertySchema>;
|
|
11
|
-
readonly id
|
|
12
|
-
readonly namespaceId
|
|
11
|
+
readonly id?: string;
|
|
12
|
+
readonly namespaceId?: string;
|
|
13
13
|
'@type': 'table-view';
|
|
14
14
|
tableName: string;
|
|
15
15
|
};
|
package/models/View.ts
CHANGED
|
@@ -10,7 +10,7 @@ export type View = (TableView | ComputedView | {
|
|
|
10
10
|
name: string;
|
|
11
11
|
description: string | null;
|
|
12
12
|
columnDefinitions: Array<PropertySchema>;
|
|
13
|
-
readonly id
|
|
14
|
-
readonly namespaceId
|
|
13
|
+
readonly id?: string;
|
|
14
|
+
readonly namespaceId?: string;
|
|
15
15
|
});
|
|
16
16
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
import type { ListViewsRequest } from '../models/ListViewsRequest';
|
|
5
|
-
import type {
|
|
5
|
+
import type { ViewResponse } from '../models/ViewResponse';
|
|
6
6
|
|
|
7
7
|
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
8
8
|
import { OpenAPI } from '../core/OpenAPI';
|
|
@@ -19,7 +19,7 @@ export class ListViewsResourceService {
|
|
|
19
19
|
public static cloneViews(
|
|
20
20
|
requestBody: ListViewsRequest,
|
|
21
21
|
): CancelablePromise<{
|
|
22
|
-
views: Array<
|
|
22
|
+
views: Array<ViewResponse>;
|
|
23
23
|
}> {
|
|
24
24
|
return __request(OpenAPI, {
|
|
25
25
|
method: 'POST',
|
|
@@ -38,7 +38,7 @@ export class ListViewsResourceService {
|
|
|
38
38
|
public static getViews(
|
|
39
39
|
requestBody: ListViewsRequest,
|
|
40
40
|
): CancelablePromise<{
|
|
41
|
-
views: Array<
|
|
41
|
+
views: Array<ViewResponse>;
|
|
42
42
|
}> {
|
|
43
43
|
return __request(OpenAPI, {
|
|
44
44
|
method: 'POST',
|