@vizzly/api-client 0.0.44 → 0.0.46
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/README.md +24 -0
- package/dist/models/Authentication.d.ts +3 -1
- package/dist/models/Authentication.js +14 -1
- package/dist/models/VizzlyApi.d.ts +23 -18
- package/dist/models/VizzlyQueryEngineApi.d.ts +14 -1
- package/dist/models/VizzlyQueryEngineApi.js +26 -6
- package/dist/types.d.ts +9 -0
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -1 +1,25 @@
|
|
|
1
1
|
# Vizzly API client
|
|
2
|
+
|
|
3
|
+
## Create a parent dashboard
|
|
4
|
+
|
|
5
|
+
```ts
|
|
6
|
+
import { VizzlyApi, Authentication } from '@vizzly/api-client';
|
|
7
|
+
|
|
8
|
+
export const createParentDashboard = async () => {
|
|
9
|
+
const auth = new Authentication({projectApiKey: process.env['VIZZLY_PROJECT_API_KEY']});
|
|
10
|
+
const vizzlyApi = new VizzlyApi(auth);
|
|
11
|
+
|
|
12
|
+
const response = await vizzlyApi.createParentDashboard({
|
|
13
|
+
name: 'My new parent dashboard'
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
if(response.status === 200) {
|
|
17
|
+
const { dashboard } = response.body;
|
|
18
|
+
// dashboard.id
|
|
19
|
+
// dashboard.name
|
|
20
|
+
} else {
|
|
21
|
+
throw "Failed to create a parent dashboard.";
|
|
22
|
+
}
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
```
|
|
@@ -4,11 +4,13 @@ export declare class Authentication {
|
|
|
4
4
|
constructor(authParams: AuthParams);
|
|
5
5
|
updateAuthParams(authParams: Partial<AuthParams>): void;
|
|
6
6
|
clearAuthParams(): void;
|
|
7
|
+
getQueryEngineApiKey(): string;
|
|
7
8
|
getQueryEngineAccessToken(): string;
|
|
8
9
|
getProjectAdminOverrideToken(): string | undefined;
|
|
9
10
|
getDashboardAccessToken(): string;
|
|
10
11
|
getAppSessionToken(): string | undefined;
|
|
11
|
-
|
|
12
|
+
hasDataAccessToken(): boolean;
|
|
13
|
+
getDataAccessToken(): string | undefined;
|
|
12
14
|
getProjectApiKey(): string;
|
|
13
15
|
getProjectAccessToken(): string;
|
|
14
16
|
buildAuthHeaders(acceptedAuthParams: Request<{}>['acceptedAuthParams']): {
|
|
@@ -13,6 +13,11 @@ class Authentication {
|
|
|
13
13
|
clearAuthParams() {
|
|
14
14
|
this.authParams = {};
|
|
15
15
|
}
|
|
16
|
+
getQueryEngineApiKey() {
|
|
17
|
+
if (!this.authParams.queryEngineApiKey)
|
|
18
|
+
throw new MissingAuthParameter_1.MissingAuthParameter('queryEngineApiKey');
|
|
19
|
+
return this.authParams.queryEngineApiKey;
|
|
20
|
+
}
|
|
16
21
|
getQueryEngineAccessToken() {
|
|
17
22
|
if (!this.authParams.queryEngineAccessToken)
|
|
18
23
|
throw new MissingAuthParameter_1.MissingAuthParameter('queryEngineAccessToken');
|
|
@@ -29,8 +34,11 @@ class Authentication {
|
|
|
29
34
|
getAppSessionToken() {
|
|
30
35
|
return this.authParams.appSessionToken;
|
|
31
36
|
}
|
|
37
|
+
hasDataAccessToken() {
|
|
38
|
+
return !!this.authParams.dataAccessToken;
|
|
39
|
+
}
|
|
32
40
|
getDataAccessToken() {
|
|
33
|
-
if (!this.
|
|
41
|
+
if (!this.hasDataAccessToken())
|
|
34
42
|
throw new MissingAuthParameter_1.MissingAuthParameter('dataAccessToken');
|
|
35
43
|
return this.authParams.dataAccessToken;
|
|
36
44
|
}
|
|
@@ -51,6 +59,11 @@ class Authentication {
|
|
|
51
59
|
auth: `Bearer ${usableAuthParams.dashboardAccessToken}`,
|
|
52
60
|
};
|
|
53
61
|
}
|
|
62
|
+
if (usableAuthParams.queryEngineApiKey) {
|
|
63
|
+
return {
|
|
64
|
+
'Config-Api-Key': usableAuthParams.queryEngineApiKey,
|
|
65
|
+
};
|
|
66
|
+
}
|
|
54
67
|
// If a project access token has been set on the config, use that instead
|
|
55
68
|
// of fetching one. This is most likely used on the managed query-engine where we
|
|
56
69
|
// pass the project access token through in a request header.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Api } from './Api';
|
|
2
2
|
import { Authentication } from './Authentication';
|
|
3
|
-
import { CreateDashboardParams, CreateGlobalLibraryParams, GlobalLibrary, GlobalLibraryPermissionFromAPI, PersistedReport, QueryEngineUserFromAPI, Request, RequestParams, TeamMemberFromAPI, UpdateDashboardParams, UpdateDashboardResponseBody, UpdateGlobalLibraryParams } from '../types';
|
|
3
|
+
import { CreateDashboardParams, CreateGlobalLibraryParams, GlobalLibrary, GlobalLibraryPermissionFromAPI, PersistedReport, QueryEngineUserFromAPI, Request, RequestParams, Response, TeamMemberFromAPI, UpdateDashboardParams, UpdateDashboardResponseBody, UpdateGlobalLibraryParams } from '../types';
|
|
4
4
|
import { nVizzlyApi } from '../types';
|
|
5
5
|
import { ProjectFromAPI } from '../types/project';
|
|
6
6
|
export declare class VizzlyApi extends Api {
|
|
@@ -11,7 +11,7 @@ export declare class VizzlyApi extends Api {
|
|
|
11
11
|
}>;
|
|
12
12
|
fetchGlobalLibraries(params: RequestParams<{
|
|
13
13
|
globalLibraryAccessTokens: string[];
|
|
14
|
-
}>): Promise<
|
|
14
|
+
}>): Promise<Response<{
|
|
15
15
|
found: GlobalLibrary[];
|
|
16
16
|
not_found: string[];
|
|
17
17
|
}>>;
|
|
@@ -20,7 +20,7 @@ export declare class VizzlyApi extends Api {
|
|
|
20
20
|
}>): Request<{
|
|
21
21
|
globalLibraryAccessTokens: string[];
|
|
22
22
|
}>;
|
|
23
|
-
fetchGlobalLibraryAccessTokens(params?: RequestParams): Promise<
|
|
23
|
+
fetchGlobalLibraryAccessTokens(params?: RequestParams): Promise<Response<{
|
|
24
24
|
global_libraries: GlobalLibrary[];
|
|
25
25
|
permissions: Array<GlobalLibraryPermissionFromAPI>;
|
|
26
26
|
}>>;
|
|
@@ -34,9 +34,14 @@ export declare class VizzlyApi extends Api {
|
|
|
34
34
|
buildFetchDashboardsRequest(params: RequestParams<{
|
|
35
35
|
dashboardSessionAccessTokens: string[];
|
|
36
36
|
}>): Request<{}>;
|
|
37
|
-
createParentDashboard(params: RequestParams<nVizzlyApi.CreateParentDashboardParams>): Promise<
|
|
37
|
+
createParentDashboard(params: RequestParams<nVizzlyApi.CreateParentDashboardParams>): Promise<Response<{
|
|
38
|
+
dashboard: {
|
|
39
|
+
id: string;
|
|
40
|
+
name: string | null;
|
|
41
|
+
};
|
|
42
|
+
}>>;
|
|
38
43
|
buildCreateParentDashboardRequest(params: RequestParams<nVizzlyApi.CreateParentDashboardParams>): Request<{}>;
|
|
39
|
-
createParentGlobalLibrary(params: RequestParams<nVizzlyApi.CreateParentGlobalLibraryParams>): Promise<
|
|
44
|
+
createParentGlobalLibrary(params: RequestParams<nVizzlyApi.CreateParentGlobalLibraryParams>): Promise<Response<unknown>>;
|
|
40
45
|
buildCreateParentGlobalLibraryRequest(params: RequestParams<nVizzlyApi.CreateParentGlobalLibraryParams>): Request<{}>;
|
|
41
46
|
createGlobalLibrary(params: RequestParams<CreateGlobalLibraryParams>): Promise<{
|
|
42
47
|
global_library: GlobalLibrary;
|
|
@@ -47,7 +52,7 @@ export declare class VizzlyApi extends Api {
|
|
|
47
52
|
projects: Array<ProjectFromAPI>;
|
|
48
53
|
}>;
|
|
49
54
|
buildGetProjectsRequest(params?: RequestParams): Request<{}>;
|
|
50
|
-
createProjectApiKey(params: RequestParams<nVizzlyApi.CreateProjectApiKeyParams>): Promise<
|
|
55
|
+
createProjectApiKey(params: RequestParams<nVizzlyApi.CreateProjectApiKeyParams>): Promise<Response<{
|
|
51
56
|
api_key: string;
|
|
52
57
|
}>>;
|
|
53
58
|
buildCreateProjectApiKeyRequest(params: RequestParams<nVizzlyApi.CreateProjectApiKeyParams>): Request<{}>;
|
|
@@ -56,23 +61,23 @@ export declare class VizzlyApi extends Api {
|
|
|
56
61
|
buildCreateSelfHostedDynamicQueryEngineProjectRequest(params?: RequestParams): Request<{}>;
|
|
57
62
|
buildCreateSelfHostedInBrowserProjectRequest(params?: RequestParams): Request<{}>;
|
|
58
63
|
buildCreateSelfHostedProjectRequest(params?: RequestParams): Request<{}>;
|
|
59
|
-
createManagedQueryEngineProject(params?: RequestParams): Promise<
|
|
64
|
+
createManagedQueryEngineProject(params?: RequestParams): Promise<Response<unknown>>;
|
|
60
65
|
buildCreateManagedQueryEngineProjectRequest(params?: RequestParams): Request<{}>;
|
|
61
|
-
createVizzlyConfigVersion(params: RequestParams<nVizzlyApi.CreateVizzlyConfigVersionParams>): Promise<
|
|
66
|
+
createVizzlyConfigVersion(params: RequestParams<nVizzlyApi.CreateVizzlyConfigVersionParams>): Promise<Response<unknown>>;
|
|
62
67
|
buildCreateVizzlyConfigVersionRequest(params: RequestParams<nVizzlyApi.CreateVizzlyConfigVersionParams>): Request<{}>;
|
|
63
|
-
duplicateParentDashboard(params: RequestParams<nVizzlyApi.DuplicateParentDashboardParams>): Promise<
|
|
68
|
+
duplicateParentDashboard(params: RequestParams<nVizzlyApi.DuplicateParentDashboardParams>): Promise<Response<unknown>>;
|
|
64
69
|
buildDuplicateParentDashboardRequest(params: RequestParams<nVizzlyApi.DuplicateParentDashboardParams>): Request<{}>;
|
|
65
70
|
getConnection(params: RequestParams<nVizzlyApi.GetConnectionParams>): Promise<{
|
|
66
71
|
encryptedCredentials: string | null;
|
|
67
72
|
}>;
|
|
68
73
|
buildGetConnectionRequest(params: RequestParams<nVizzlyApi.GetConnectionParams>): Request<{}>;
|
|
69
|
-
getManagedQueryEngineKeyPair(params: RequestParams<nVizzlyApi.GetManagedQueryEngineKeyPairParams>): Promise<
|
|
74
|
+
getManagedQueryEngineKeyPair(params: RequestParams<nVizzlyApi.GetManagedQueryEngineKeyPairParams>): Promise<Response<unknown>>;
|
|
70
75
|
buildGetManagedQueryEngineKeyPairRequest(params: RequestParams<nVizzlyApi.GetManagedQueryEngineKeyPairParams>): Request<{}>;
|
|
71
76
|
getProject(params: RequestParams<nVizzlyApi.GetProjectParams>): Promise<{
|
|
72
77
|
project: ProjectFromAPI;
|
|
73
78
|
}>;
|
|
74
79
|
buildGetProjectRequest(params: RequestParams<nVizzlyApi.GetProjectParams>): Request<{}>;
|
|
75
|
-
getProjectAccessToken(params: RequestParams<nVizzlyApi.GetProjectAccessTokenParams>): Promise<
|
|
80
|
+
getProjectAccessToken(params: RequestParams<nVizzlyApi.GetProjectAccessTokenParams>): Promise<Response<{
|
|
76
81
|
token: {
|
|
77
82
|
max_age: number;
|
|
78
83
|
token: string;
|
|
@@ -89,27 +94,27 @@ export declare class VizzlyApi extends Api {
|
|
|
89
94
|
encryptedConfig: string | null;
|
|
90
95
|
}>;
|
|
91
96
|
buildGetVizzlyConfigRequest(params: RequestParams<nVizzlyApi.GetVizzlyConfigParams>): Request<{}>;
|
|
92
|
-
saveConnection(params: RequestParams<nVizzlyApi.SaveConnectionParams>): Promise<
|
|
97
|
+
saveConnection(params: RequestParams<nVizzlyApi.SaveConnectionParams>): Promise<Response<unknown>>;
|
|
93
98
|
buildSaveConnectionRequest(params: RequestParams<nVizzlyApi.SaveConnectionParams>): Request<{}>;
|
|
94
99
|
saveEncryptedProjectEncryptionSecret(params: RequestParams<nVizzlyApi.SaveEncryptedProjectEncryptionSecretParams>): Promise<boolean>;
|
|
95
100
|
buildSaveEncryptedProjectEncryptionSecretRequest(params: RequestParams<nVizzlyApi.SaveEncryptedProjectEncryptionSecretParams>): Request<{}>;
|
|
96
|
-
getScheduledReports(params: RequestParams<nVizzlyApi.GetScheduledReportParams>): Promise<
|
|
101
|
+
getScheduledReports(params: RequestParams<nVizzlyApi.GetScheduledReportParams>): Promise<Response<{
|
|
97
102
|
reports: Array<PersistedReport>;
|
|
98
103
|
}>>;
|
|
99
104
|
buildGetScheduledReports(params: RequestParams<nVizzlyApi.GetScheduledReportParams>): Request<{}>;
|
|
100
|
-
saveScheduledReport(params: RequestParams<nVizzlyApi.SaveScheduledReportParams>): Promise<
|
|
105
|
+
saveScheduledReport(params: RequestParams<nVizzlyApi.SaveScheduledReportParams>): Promise<Response<{
|
|
101
106
|
report: PersistedReport;
|
|
102
107
|
}>>;
|
|
103
108
|
buildSaveScheduledReportRequest(params: RequestParams<nVizzlyApi.SaveScheduledReportParams>): Request<{}>;
|
|
104
|
-
updateDashboard(params: RequestParams<UpdateDashboardParams>): Promise<
|
|
109
|
+
updateDashboard(params: RequestParams<UpdateDashboardParams>): Promise<Response<UpdateDashboardResponseBody>>;
|
|
105
110
|
buildUpdateDashboardRequest(params: RequestParams<UpdateDashboardParams>): Request<{}>;
|
|
106
|
-
updateParentGlobalLibrary(params: RequestParams<nVizzlyApi.UpdateParentGlobalLibraryParams>): Promise<
|
|
111
|
+
updateParentGlobalLibrary(params: RequestParams<nVizzlyApi.UpdateParentGlobalLibraryParams>): Promise<Response<unknown>>;
|
|
107
112
|
buildUpdateParentGlobalLibraryRequest(params: RequestParams<nVizzlyApi.UpdateParentGlobalLibraryParams>): Request<{}>;
|
|
108
|
-
updateGlobalLibrary(params: UpdateGlobalLibraryParams): Promise<
|
|
113
|
+
updateGlobalLibrary(params: UpdateGlobalLibraryParams): Promise<Response<{
|
|
109
114
|
global_library: GlobalLibrary;
|
|
110
115
|
}>>;
|
|
111
116
|
buildUpdateGlobalLibraryRequest(params: RequestParams<UpdateGlobalLibraryParams>): Request<{}>;
|
|
112
|
-
updateProjectApiKey(params: RequestParams<nVizzlyApi.UpdateProjectApiKeyParams>): Promise<
|
|
117
|
+
updateProjectApiKey(params: RequestParams<nVizzlyApi.UpdateProjectApiKeyParams>): Promise<Response<unknown>>;
|
|
113
118
|
buildUpdateProjectApiKeyRequest(params: RequestParams<nVizzlyApi.UpdateProjectApiKeyParams>): Request<{}>;
|
|
114
119
|
updateQueryEngineUser(params: RequestParams<nVizzlyApi.UpdateQueryEngineUserParams>): Promise<boolean>;
|
|
115
120
|
buildUpdateQueryEngineUserRequest(params: RequestParams<nVizzlyApi.UpdateQueryEngineUserParams>): Request<{}>;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { Api } from './Api';
|
|
2
2
|
import { Authentication } from './Authentication';
|
|
3
3
|
import { nVizzlyQueryEngine, Request, extraHeaders, CreateDashboardParams, UpdateDashboardParams, UpdateGlobalLibraryParams, GlobalLibrary, CreateGlobalLibraryParams, GlobalLibraryPermissionFromAPI, RequestParams } from '../types';
|
|
4
|
+
import { nSemanticLayer } from '@vizzly/semantic-layer-public';
|
|
5
|
+
import { SQLSchema } from '@vizzly/sqlbuilder-public';
|
|
4
6
|
export declare class VizzlyQueryEngineApi extends Api {
|
|
5
7
|
constructor(auth: Authentication, host: string, extraHeaders?: extraHeaders);
|
|
6
8
|
buildCreateDashboardRequest(params: RequestParams<CreateDashboardParams>): Request<CreateDashboardParams & {
|
|
@@ -23,8 +25,19 @@ export declare class VizzlyQueryEngineApi extends Api {
|
|
|
23
25
|
}>): Request<{}>;
|
|
24
26
|
createConfigFromUpload(createConfigFromUploadParams: RequestParams<nVizzlyQueryEngine.CreateConfigFromUploadParams>): Promise<import("../types").Response<unknown>>;
|
|
25
27
|
private buildCreateConfigFromUploadRequest;
|
|
26
|
-
createResults(params: RequestParams<nVizzlyQueryEngine.CreateResultsParams
|
|
28
|
+
createResults(params: RequestParams<nVizzlyQueryEngine.CreateResultsParams>, versionOverride?: 'v1' | 'v2'): Promise<import("../types").Response<{
|
|
29
|
+
results: Array<nSemanticLayer.Result>;
|
|
30
|
+
}>>;
|
|
27
31
|
private buildCreateResultsRequest;
|
|
32
|
+
collectSchema(params: RequestParams<nVizzlyQueryEngine.CollectSchemaParams>): Promise<import("../types").Response<{
|
|
33
|
+
schemaByConnection: {
|
|
34
|
+
[connectionId: string]: {
|
|
35
|
+
/** ID of the connection */
|
|
36
|
+
id: string;
|
|
37
|
+
} & SQLSchema;
|
|
38
|
+
};
|
|
39
|
+
}>>;
|
|
40
|
+
private buildCollectSchemaRequest;
|
|
28
41
|
createSqlPreview(params: RequestParams<nVizzlyQueryEngine.CreateSqlPreviewParams>): Promise<import("../types").Response<{
|
|
29
42
|
message: string;
|
|
30
43
|
}>>;
|
|
@@ -88,21 +88,41 @@ class VizzlyQueryEngineApi extends Api_1.Api {
|
|
|
88
88
|
},
|
|
89
89
|
};
|
|
90
90
|
}
|
|
91
|
-
createResults(
|
|
92
|
-
return __awaiter(this,
|
|
93
|
-
return yield this.execute(this.buildCreateResultsRequest(params));
|
|
91
|
+
createResults(params_1) {
|
|
92
|
+
return __awaiter(this, arguments, void 0, function* (params, versionOverride = 'v2') {
|
|
93
|
+
return yield this.execute(this.buildCreateResultsRequest(params, versionOverride));
|
|
94
94
|
});
|
|
95
95
|
}
|
|
96
|
-
buildCreateResultsRequest(params) {
|
|
96
|
+
buildCreateResultsRequest(params, versionOverride) {
|
|
97
97
|
return {
|
|
98
|
-
path: `/api/
|
|
98
|
+
path: `/api/${versionOverride}/create-results`,
|
|
99
99
|
method: 'post',
|
|
100
100
|
abortSignal: params.abortSignal,
|
|
101
101
|
body: {
|
|
102
102
|
queries: params.queries,
|
|
103
|
+
dynamicConfig: params.dynamicConfig,
|
|
104
|
+
identityConfigIntegritySignature: this.auth.hasDataAccessToken() ? this.auth.getDataAccessToken() : undefined,
|
|
105
|
+
secureFilters: params.secureFilters,
|
|
103
106
|
virtualFields: {},
|
|
104
|
-
identityConfigIntegritySignature: this.auth.getDataAccessToken(),
|
|
105
107
|
},
|
|
108
|
+
acceptedAuthParams: ['queryEngineApiKey', 'dashboardAccessToken'],
|
|
109
|
+
};
|
|
110
|
+
}
|
|
111
|
+
collectSchema(params) {
|
|
112
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
113
|
+
return yield this.execute(this.buildCollectSchemaRequest(params));
|
|
114
|
+
});
|
|
115
|
+
}
|
|
116
|
+
buildCollectSchemaRequest(params) {
|
|
117
|
+
return {
|
|
118
|
+
path: `/api/v1/schema`,
|
|
119
|
+
method: 'post',
|
|
120
|
+
abortSignal: params.abortSignal,
|
|
121
|
+
body: {
|
|
122
|
+
allowedConfigOrigins: params.allowedConfigOrigins,
|
|
123
|
+
dynamicConfig: params.dynamicConfig,
|
|
124
|
+
},
|
|
125
|
+
acceptedAuthParams: ['queryEngineApiKey'],
|
|
106
126
|
};
|
|
107
127
|
}
|
|
108
128
|
createSqlPreview(params) {
|
package/dist/types.d.ts
CHANGED
|
@@ -7,6 +7,8 @@ export * from './types/dashboard';
|
|
|
7
7
|
export * from './types/project';
|
|
8
8
|
export * from './types/team';
|
|
9
9
|
export * from './types/user';
|
|
10
|
+
import { DataAccessConfig } from '@vizzly/auth';
|
|
11
|
+
import { nSemanticLayer, OriginId } from '@vizzly/semantic-layer-public';
|
|
10
12
|
export type PartialBy<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;
|
|
11
13
|
export type UpdateDashboardResponseBody = {
|
|
12
14
|
dashboard: DashboardFromAPI;
|
|
@@ -86,6 +88,7 @@ export type AuthParams = {
|
|
|
86
88
|
dataAccessToken?: string;
|
|
87
89
|
projectApiKey?: string;
|
|
88
90
|
appSessionToken?: string;
|
|
91
|
+
queryEngineApiKey?: string;
|
|
89
92
|
};
|
|
90
93
|
export declare namespace nVizzlyQueryEngine {
|
|
91
94
|
type CreateConfigFromUploadParams = {
|
|
@@ -94,6 +97,12 @@ export declare namespace nVizzlyQueryEngine {
|
|
|
94
97
|
};
|
|
95
98
|
type CreateResultsParams = {
|
|
96
99
|
queries: any;
|
|
100
|
+
dynamicConfig?: nSemanticLayer.Config;
|
|
101
|
+
secureFilters?: DataAccessConfig['secureFilters'];
|
|
102
|
+
};
|
|
103
|
+
type CollectSchemaParams = {
|
|
104
|
+
allowedConfigOrigins: OriginId[];
|
|
105
|
+
dynamicConfig?: nSemanticLayer.Config;
|
|
97
106
|
};
|
|
98
107
|
type CreateSqlPreviewParams = {
|
|
99
108
|
sql: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vizzly/api-client",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.46",
|
|
4
4
|
"private": false,
|
|
5
5
|
"license": "NONE",
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"@types/jest": "^29.5.12",
|
|
15
15
|
"@types/lodash": "^4.17.0",
|
|
16
16
|
"@types/uuid": "^9.0.8",
|
|
17
|
-
"@vizzly/auth": "^0.2.
|
|
17
|
+
"@vizzly/auth": "^0.2.16",
|
|
18
18
|
"jest": "^29.6.0",
|
|
19
19
|
"lodash": "^4.17.21",
|
|
20
20
|
"nock": "^13.5.4",
|
|
@@ -33,6 +33,8 @@
|
|
|
33
33
|
"prepublish": "yarn build"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
+
"@vizzly/semantic-layer-public": "^0.0.228",
|
|
37
|
+
"@vizzly/sqlbuilder-public": "^0.1.33",
|
|
36
38
|
"cross-fetch": "^4.0.0"
|
|
37
39
|
}
|
|
38
40
|
}
|