diff --git a/changelogs/v0.0.27.md b/changelogs/v0.0.27.md new file mode 100644 index 0000000..fbe6f38 --- /dev/null +++ b/changelogs/v0.0.27.md @@ -0,0 +1,6 @@ +# CHANGELOG + +## v0.0.27 + +### Fixes +- Add `dbId` to `MakeFilePublicRequest` and update the logic to allow making shared files public. diff --git a/etc/sdk.api.md b/etc/sdk.api.md index 0cfef34..1228627 100644 --- a/etc/sdk.api.md +++ b/etc/sdk.api.md @@ -317,6 +317,7 @@ export interface MakeFilePublicRequest { allowAccess: boolean; // (undocumented) bucket: string; + dbId?: string; // (undocumented) path: string; } diff --git a/lerna.json b/lerna.json index e0e8eb1..7bb7323 100644 --- a/lerna.json +++ b/lerna.json @@ -2,7 +2,7 @@ "packages": [ "packages/*" ], - "version": "0.0.26", + "version": "0.0.27", "npmClient": "yarn", "useWorkspaces": true, "command": { diff --git a/packages/mailbox/package.json b/packages/mailbox/package.json index d8a2437..a3a7480 100644 --- a/packages/mailbox/package.json +++ b/packages/mailbox/package.json @@ -1,6 +1,6 @@ { "name": "@spacehq/mailbox", - "version": "0.0.26", + "version": "0.0.27", "description": "Space Mailbox implementation", "main": "dist/index", "types": "dist/index", @@ -37,7 +37,7 @@ "dependencies": { "@improbable-eng/grpc-web": "^0.14.0", "@spacehq/users": "^0.0.13", - "@spacehq/utils": "^0.0.26", + "@spacehq/utils": "^0.0.27", "@textile/crypto": "^2.0.0", "@types/lodash": "^4.14.165", "axios": "^0.21.1", diff --git a/packages/sdk/package.json b/packages/sdk/package.json index 8f1024a..a8aeade 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@spacehq/sdk", - "version": "0.0.26", + "version": "0.0.27", "description": "Space SDK Library", "main": "dist/index", "types": "dist/index", @@ -33,9 +33,9 @@ "typescript": "^3.9.3" }, "dependencies": { - "@spacehq/mailbox": "^0.0.26", - "@spacehq/storage": "^0.0.26", - "@spacehq/users": "^0.0.26", - "@spacehq/utils": "^0.0.26" + "@spacehq/mailbox": "^0.0.27", + "@spacehq/storage": "^0.0.27", + "@spacehq/users": "^0.0.27", + "@spacehq/utils": "^0.0.27" } } diff --git a/packages/storage/package.json b/packages/storage/package.json index c068a01..f8dda07 100644 --- a/packages/storage/package.json +++ b/packages/storage/package.json @@ -1,6 +1,6 @@ { "name": "@spacehq/storage", - "version": "0.0.26", + "version": "0.0.27", "description": "Space storage implementation", "main": "dist/index", "types": "dist/index", @@ -42,9 +42,9 @@ }, "dependencies": { "@improbable-eng/grpc-web": "^0.13.0", - "@spacehq/mailbox": "^0.0.26", - "@spacehq/users": "^0.0.26", - "@spacehq/utils": "^0.0.26", + "@spacehq/mailbox": "^0.0.27", + "@spacehq/users": "^0.0.27", + "@spacehq/utils": "^0.0.27", "@textile/crypto": "^2.0.0", "@textile/hub": "^4.1.0", "@textile/threads-id": "^0.4.0", diff --git a/packages/users/package.json b/packages/users/package.json index 72dc0eb..fa4f2c8 100644 --- a/packages/users/package.json +++ b/packages/users/package.json @@ -1,6 +1,6 @@ { "name": "@spacehq/users", - "version": "0.0.26", + "version": "0.0.27", "description": "Space users implementation", "main": "dist/index", "types": "dist/index", @@ -35,7 +35,7 @@ "websocket-polyfill": "^0.0.3" }, "dependencies": { - "@spacehq/utils": "^0.0.26", + "@spacehq/utils": "^0.0.27", "@textile/crypto": "^2.0.0", "@types/lodash": "^4.14.165", "axios": "^0.21.1", diff --git a/packages/utils/package.json b/packages/utils/package.json index 26850d2..e98fa40 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@spacehq/utils", - "version": "0.0.26", + "version": "0.0.27", "description": "Space Common Utils", "main": "dist/index", "types": "dist/index",