@fusebase/fusebase-gate-sdk 2.2.11-sdk.5 → 2.2.11-sdk.6

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.
@@ -11,7 +11,7 @@ export declare class NotesApi {
11
11
  constructor(client: Client);
12
12
  /**
13
13
  * Add workspace note attachment
14
- * Attaches a stored-file UUID from the files upload flow to a workspace note, then appends an image blot for image attachments or a file blot for all other attachment types.
14
+ * Attaches a stored-file UUID from the files upload flow to a workspace note, then appends an image blot for image attachments or a file blot for all other attachment types. Prefer a real workspace id; when the path workspaceId is `default`, gate resolves it to the organization's default workspace before calling note-service and editor-server.
15
15
  */
16
16
  addWorkspaceNoteAttachment(params: {
17
17
  path: {
@@ -24,7 +24,7 @@ export declare class NotesApi {
24
24
  }): Promise<AddWorkspaceNoteAttachmentResponseContract>;
25
25
  /**
26
26
  * Create workspace note
27
- * Creates a note in the requested workspace. When parentId is omitted, gate uses `default`. Optional initial text or html can be appended after creation.
27
+ * Creates a note in the requested workspace. Prefer a real workspace id; when the path workspaceId is `default`, gate resolves it to the organization's default workspace before calling note-service and editor-server. When parentId is omitted, gate uses `default`. Optional initial text or html can be appended after creation.
28
28
  */
29
29
  createWorkspaceNote(params: {
30
30
  path: {
@@ -36,7 +36,7 @@ export declare class NotesApi {
36
36
  }): Promise<CreateWorkspaceNoteResponseContract>;
37
37
  /**
38
38
  * Create workspace note folder
39
- * Creates a folder in the requested workspace. When parentId is omitted, gate uses `default`.
39
+ * Creates a folder in the requested workspace. Prefer a real workspace id; when the path workspaceId is `default`, gate resolves it to the organization's default workspace before calling note-service. When parentId is omitted, gate uses `default`.
40
40
  */
41
41
  createWorkspaceNoteFolder(params: {
42
42
  path: {
@@ -48,7 +48,7 @@ export declare class NotesApi {
48
48
  }): Promise<CreateWorkspaceNoteFolderResponseContract>;
49
49
  /**
50
50
  * Read workspace note
51
- * Returns the note title, parent metadata, and md content for the requested workspace note.
51
+ * Returns the note title, parent metadata, and md content for the requested workspace note. Prefer a real workspace id; when the path workspaceId is `default`, gate resolves it to the organization's default workspace before calling note-service and editor-server.
52
52
  */
53
53
  getWorkspaceNote(params: {
54
54
  path: {
@@ -60,7 +60,7 @@ export declare class NotesApi {
60
60
  }): Promise<WorkspaceNoteContentResponseContract>;
61
61
  /**
62
62
  * List workspace note folders
63
- * Returns non-portal note folders for the requested workspace.
63
+ * Returns non-portal note folders for the requested workspace. Prefer a real workspace id; when the path workspaceId is `default`, gate resolves it to the organization's default workspace before calling note-service.
64
64
  */
65
65
  listWorkspaceNoteFolders(params: {
66
66
  path: {
@@ -71,7 +71,7 @@ export declare class NotesApi {
71
71
  }): Promise<WorkspaceNoteFolderListResponseContract>;
72
72
  /**
73
73
  * List workspace notes
74
- * Returns non-portal notes for the requested workspace and parent folder. When parentId is omitted, gate defaults to the workspace default folder id `default`.
74
+ * Returns non-portal notes for the requested workspace and parent folder. Prefer a real workspace id; when the path workspaceId is `default`, gate resolves it to the organization's default workspace before calling note-service. When parentId is omitted, gate defaults to the workspace default folder id `default`.
75
75
  */
76
76
  listWorkspaceNotes(params: {
77
77
  path: {
@@ -13,7 +13,7 @@ class NotesApi {
13
13
  }
14
14
  /**
15
15
  * Add workspace note attachment
16
- * Attaches a stored-file UUID from the files upload flow to a workspace note, then appends an image blot for image attachments or a file blot for all other attachment types.
16
+ * Attaches a stored-file UUID from the files upload flow to a workspace note, then appends an image blot for image attachments or a file blot for all other attachment types. Prefer a real workspace id; when the path workspaceId is `default`, gate resolves it to the organization's default workspace before calling note-service and editor-server.
17
17
  */
18
18
  async addWorkspaceNoteAttachment(params) {
19
19
  return this.client.request({
@@ -28,7 +28,7 @@ class NotesApi {
28
28
  }
29
29
  /**
30
30
  * Create workspace note
31
- * Creates a note in the requested workspace. When parentId is omitted, gate uses `default`. Optional initial text or html can be appended after creation.
31
+ * Creates a note in the requested workspace. Prefer a real workspace id; when the path workspaceId is `default`, gate resolves it to the organization's default workspace before calling note-service and editor-server. When parentId is omitted, gate uses `default`. Optional initial text or html can be appended after creation.
32
32
  */
33
33
  async createWorkspaceNote(params) {
34
34
  return this.client.request({
@@ -43,7 +43,7 @@ class NotesApi {
43
43
  }
44
44
  /**
45
45
  * Create workspace note folder
46
- * Creates a folder in the requested workspace. When parentId is omitted, gate uses `default`.
46
+ * Creates a folder in the requested workspace. Prefer a real workspace id; when the path workspaceId is `default`, gate resolves it to the organization's default workspace before calling note-service. When parentId is omitted, gate uses `default`.
47
47
  */
48
48
  async createWorkspaceNoteFolder(params) {
49
49
  return this.client.request({
@@ -58,7 +58,7 @@ class NotesApi {
58
58
  }
59
59
  /**
60
60
  * Read workspace note
61
- * Returns the note title, parent metadata, and md content for the requested workspace note.
61
+ * Returns the note title, parent metadata, and md content for the requested workspace note. Prefer a real workspace id; when the path workspaceId is `default`, gate resolves it to the organization's default workspace before calling note-service and editor-server.
62
62
  */
63
63
  async getWorkspaceNote(params) {
64
64
  return this.client.request({
@@ -72,7 +72,7 @@ class NotesApi {
72
72
  }
73
73
  /**
74
74
  * List workspace note folders
75
- * Returns non-portal note folders for the requested workspace.
75
+ * Returns non-portal note folders for the requested workspace. Prefer a real workspace id; when the path workspaceId is `default`, gate resolves it to the organization's default workspace before calling note-service.
76
76
  */
77
77
  async listWorkspaceNoteFolders(params) {
78
78
  return this.client.request({
@@ -86,7 +86,7 @@ class NotesApi {
86
86
  }
87
87
  /**
88
88
  * List workspace notes
89
- * Returns non-portal notes for the requested workspace and parent folder. When parentId is omitted, gate defaults to the workspace default folder id `default`.
89
+ * Returns non-portal notes for the requested workspace and parent folder. Prefer a real workspace id; when the path workspaceId is `default`, gate resolves it to the organization's default workspace before calling note-service. When parentId is omitted, gate defaults to the workspace default folder id `default`.
90
90
  */
91
91
  async listWorkspaceNotes(params) {
92
92
  return this.client.request({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fusebase/fusebase-gate-sdk",
3
- "version": "2.2.11-sdk.5",
3
+ "version": "2.2.11-sdk.6",
4
4
  "description": "TypeScript SDK for Fusebase Gate APIs - Generated from contract introspection",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -0,0 +1,9 @@
1
+ # Release Notes 2.2.11-sdk.6
2
+
3
+ - Current ref: `HEAD`
4
+ - Previous tag: `v2.2.11-sdk.6`
5
+ - Generated at: 2026-04-28T07:14:08.829Z
6
+
7
+ ## Included Drafts
8
+
9
+ - None
@@ -1,8 +1,8 @@
1
- # Release Notes 2.2.11-sdk.5
1
+ # Release Notes 2.2.11-sdk.6
2
2
 
3
3
  - Current ref: `HEAD`
4
- - Previous tag: `v2.2.11-sdk.5`
5
- - Generated at: 2026-04-27T10:47:08.478Z
4
+ - Previous tag: `v2.2.11-sdk.6`
5
+ - Generated at: 2026-04-28T07:14:08.829Z
6
6
 
7
7
  ## Included Drafts
8
8
 
@@ -1,9 +0,0 @@
1
- # Release Notes 2.2.11-sdk.5
2
-
3
- - Current ref: `HEAD`
4
- - Previous tag: `v2.2.11-sdk.5`
5
- - Generated at: 2026-04-27T10:47:08.478Z
6
-
7
- ## Included Drafts
8
-
9
- - None