We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 159eadb + cef3bbf commit d7a682aCopy full SHA for d7a682a
src/lib/seam/connect/seam-http-multi-workspace.ts
@@ -74,7 +74,7 @@ export class SeamHttpMultiWorkspace {
74
return new SeamHttpMultiWorkspace(constructorOptions)
75
}
76
77
- get workspaces(): SeamHttpWorkspaces {
+ get workspaces(): Pick<SeamHttpWorkspaces, 'create' | 'list'> {
78
return SeamHttpWorkspaces.fromClient(this.client, this.defaults)
79
80
src/lib/seam/connect/seam-http.ts
@@ -186,7 +186,7 @@ export class SeamHttp {
186
return SeamHttpWebhooks.fromClient(this.client, this.defaults)
187
188
189
+ get workspaces(): Omit<SeamHttpWorkspaces, 'create'> {
190
191
192
0 commit comments