Skip to content

Commit 5e6c6ec

Browse files
committed
Fixes after merge
1 parent 9c19f27 commit 5e6c6ec

3 files changed

Lines changed: 13 additions & 7 deletions

File tree

package-lock.json

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"@analytics/google-analytics": "^1.0.5",
2323
"@analytics/google-tag-manager": "^0.5.3",
2424
"@appwrite.io/pink": "^0.0.4",
25-
"@aw-labs/appwrite-console": "^13.1.0",
25+
"@aw-labs/appwrite-console": "npm:matej-appwrite-console@7.1.63",
2626
"@popperjs/core": "^2.11.6",
2727
"@sentry/svelte": "^7.36.0",
2828
"@sentry/tracing": "^7.36.0",

src/lib/stores/sdk.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ import {
1111
Projects,
1212
Storage,
1313
Teams,
14-
Users
14+
Users,
15+
Proxy,
16+
Vcs
1517
} from '@aw-labs/appwrite-console';
1618

1719
const endpoint = VARS.APPWRITE_ENDPOINT ?? `${globalThis?.location?.origin}/v1`;
@@ -45,9 +47,12 @@ const sdkForProject = {
4547
health: new Health(clientProject),
4648
locale: new Locale(clientProject),
4749
project: new Project(clientProject),
50+
projects: new Projects(clientProject),
4851
storage: new Storage(clientProject),
4952
teams: new Teams(clientProject),
50-
users: new Users(clientProject)
53+
users: new Users(clientProject),
54+
proxy: new Proxy(clientProject),
55+
vcs: new Vcs(clientProject)
5156
};
5257

5358
export { sdkForConsole, sdkForProject, setProject };

0 commit comments

Comments
 (0)