Skip to content

Commit

Permalink
Version suffix should not be added by user in the configuration params (
Browse files Browse the repository at this point in the history
  • Loading branch information
SarantopoulosKon authored Jan 31, 2022
1 parent 31ee3a8 commit 4d26454
Show file tree
Hide file tree
Showing 6 changed files with 109 additions and 32 deletions.
5 changes: 2 additions & 3 deletions lib/TileDBClient/TileDBClient.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { NotebookApi } from "./../v1/api";
import { ArrayApi, ArrayInfoUpdate, ArraySharing, OrganizationApi, TasksApi, UserApi } from "../v1";
import { ArrayApi, ArrayInfoUpdate, ArraySharing, OrganizationApi, NotebookApi, TasksApi, UserApi } from "../v1";
import UDF from "../UDF";
import Sql from "../Sql";
import { ConfigurationParameters, Configuration } from "../v2";
Expand All @@ -15,7 +14,7 @@ declare class TileDBClient {
udf: UDF;
sql: Sql;
query: TileDBQuery;
constructor(params: ConfigurationParameters);
constructor(params?: ConfigurationParameters);
info(namespace: string, array: string, options?: any): Promise<import("axios").AxiosResponse<import("../v1").ArrayInfo>>;
arrayActivity(namespace: string, array: string, start?: number, end?: number, eventTypes?: string, taskId?: string, hasTaskId?: boolean, options?: any): Promise<import("axios").AxiosResponse<import("../v1").ArrayActivityLog[]>>;
deregisterArray(namespace: string, array: string, options?: any): Promise<import("axios").AxiosResponse<void>>;
Expand Down
29 changes: 16 additions & 13 deletions lib/TileDBClient/TileDBClient.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/TileDBClient/TileDBClient.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tiledb-inc/tiledb-cloud",
"version": "1.0.2",
"version": "1.0.4",
"description": "JavaScript client for the TileDB Cloud Service.",
"main": "lib/index.js",
"files": [
Expand Down
Loading

0 comments on commit 4d26454

Please sign in to comment.