@arbidocs/react 0.3.28 → 0.3.30
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.
- package/dist/index.d.cts +5 -0
- package/dist/index.d.ts +5 -0
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -175,6 +175,10 @@ declare function useWorkspaces(options?: {
|
|
|
175
175
|
agent_ext_id?: string | null | undefined;
|
|
176
176
|
is_temporary: boolean;
|
|
177
177
|
}[];
|
|
178
|
+
project_ext_id?: string | null | undefined;
|
|
179
|
+
project_name?: string | null | undefined;
|
|
180
|
+
project_subscription?: string | null | undefined;
|
|
181
|
+
project_owner_ext_id?: string | null | undefined;
|
|
178
182
|
}[], Error>;
|
|
179
183
|
/** List documents in a workspace. */
|
|
180
184
|
declare function useDocuments(workspaceId: string | undefined, options?: {
|
|
@@ -184,6 +188,7 @@ declare function useDocuments(workspaceId: string | undefined, options?: {
|
|
|
184
188
|
workspace_ext_id: string;
|
|
185
189
|
file_name?: string | null | undefined;
|
|
186
190
|
status?: string | null | undefined;
|
|
191
|
+
error_message?: string | null | undefined;
|
|
187
192
|
n_pages?: number | null | undefined;
|
|
188
193
|
n_chunks?: number | null | undefined;
|
|
189
194
|
tokens?: number | null | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -175,6 +175,10 @@ declare function useWorkspaces(options?: {
|
|
|
175
175
|
agent_ext_id?: string | null | undefined;
|
|
176
176
|
is_temporary: boolean;
|
|
177
177
|
}[];
|
|
178
|
+
project_ext_id?: string | null | undefined;
|
|
179
|
+
project_name?: string | null | undefined;
|
|
180
|
+
project_subscription?: string | null | undefined;
|
|
181
|
+
project_owner_ext_id?: string | null | undefined;
|
|
178
182
|
}[], Error>;
|
|
179
183
|
/** List documents in a workspace. */
|
|
180
184
|
declare function useDocuments(workspaceId: string | undefined, options?: {
|
|
@@ -184,6 +188,7 @@ declare function useDocuments(workspaceId: string | undefined, options?: {
|
|
|
184
188
|
workspace_ext_id: string;
|
|
185
189
|
file_name?: string | null | undefined;
|
|
186
190
|
status?: string | null | undefined;
|
|
191
|
+
error_message?: string | null | undefined;
|
|
187
192
|
n_pages?: number | null | undefined;
|
|
188
193
|
n_chunks?: number | null | undefined;
|
|
189
194
|
tokens?: number | null | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arbidocs/react",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.30",
|
|
4
4
|
"description": "React hooks and provider for the ARBI SDK",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"typecheck": "tsc --noEmit"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@arbidocs/sdk": "0.3.
|
|
26
|
-
"@arbidocs/client": "0.3.
|
|
25
|
+
"@arbidocs/sdk": "0.3.30",
|
|
26
|
+
"@arbidocs/client": "0.3.30",
|
|
27
27
|
"@tanstack/react-query": ">=5"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|