@arbidocs/react 0.3.58 → 0.3.60
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 +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +6 -6
package/dist/index.d.cts
CHANGED
|
@@ -153,6 +153,7 @@ declare function useWorkspaces(options?: {
|
|
|
153
153
|
created_at: string;
|
|
154
154
|
updated_at: string;
|
|
155
155
|
wrapped_key?: string | null | undefined;
|
|
156
|
+
is_member: boolean;
|
|
156
157
|
shared_conversation_count: number;
|
|
157
158
|
private_conversation_count: number;
|
|
158
159
|
shared_document_count: number;
|
|
@@ -167,6 +168,7 @@ declare function useWorkspaces(options?: {
|
|
|
167
168
|
family_name?: string | null | undefined;
|
|
168
169
|
picture?: string | null | undefined;
|
|
169
170
|
encryption_public_key: string;
|
|
171
|
+
is_sso: boolean;
|
|
170
172
|
};
|
|
171
173
|
role: _arbidocs_client.components["schemas"]["WorkspaceRole"];
|
|
172
174
|
joined_at: string;
|
|
@@ -189,6 +191,7 @@ declare function useDocuments(workspaceId: string | undefined, options?: {
|
|
|
189
191
|
file_name?: string | null | undefined;
|
|
190
192
|
status?: string | null | undefined;
|
|
191
193
|
error_message?: string | null | undefined;
|
|
194
|
+
failed_stage?: string | null | undefined;
|
|
192
195
|
n_pages?: number | null | undefined;
|
|
193
196
|
n_chunks?: number | null | undefined;
|
|
194
197
|
tokens?: number | null | undefined;
|
|
@@ -290,6 +293,7 @@ declare function useAgents(options?: {
|
|
|
290
293
|
family_name?: string | null;
|
|
291
294
|
picture?: string | null;
|
|
292
295
|
encryption_public_key: string;
|
|
296
|
+
is_sso: boolean;
|
|
293
297
|
}[], Error>;
|
|
294
298
|
/** Delete agents. Returns a mutation. */
|
|
295
299
|
declare function useDeleteAgents(): _tanstack_react_query.UseMutationResult<unknown, Error, {
|
package/dist/index.d.ts
CHANGED
|
@@ -153,6 +153,7 @@ declare function useWorkspaces(options?: {
|
|
|
153
153
|
created_at: string;
|
|
154
154
|
updated_at: string;
|
|
155
155
|
wrapped_key?: string | null | undefined;
|
|
156
|
+
is_member: boolean;
|
|
156
157
|
shared_conversation_count: number;
|
|
157
158
|
private_conversation_count: number;
|
|
158
159
|
shared_document_count: number;
|
|
@@ -167,6 +168,7 @@ declare function useWorkspaces(options?: {
|
|
|
167
168
|
family_name?: string | null | undefined;
|
|
168
169
|
picture?: string | null | undefined;
|
|
169
170
|
encryption_public_key: string;
|
|
171
|
+
is_sso: boolean;
|
|
170
172
|
};
|
|
171
173
|
role: _arbidocs_client.components["schemas"]["WorkspaceRole"];
|
|
172
174
|
joined_at: string;
|
|
@@ -189,6 +191,7 @@ declare function useDocuments(workspaceId: string | undefined, options?: {
|
|
|
189
191
|
file_name?: string | null | undefined;
|
|
190
192
|
status?: string | null | undefined;
|
|
191
193
|
error_message?: string | null | undefined;
|
|
194
|
+
failed_stage?: string | null | undefined;
|
|
192
195
|
n_pages?: number | null | undefined;
|
|
193
196
|
n_chunks?: number | null | undefined;
|
|
194
197
|
tokens?: number | null | undefined;
|
|
@@ -290,6 +293,7 @@ declare function useAgents(options?: {
|
|
|
290
293
|
family_name?: string | null;
|
|
291
294
|
picture?: string | null;
|
|
292
295
|
encryption_public_key: string;
|
|
296
|
+
is_sso: boolean;
|
|
293
297
|
}[], Error>;
|
|
294
298
|
/** Delete agents. Returns a mutation. */
|
|
295
299
|
declare function useDeleteAgents(): _tanstack_react_query.UseMutationResult<unknown, Error, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arbidocs/react",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.60",
|
|
4
4
|
"description": "React hooks and provider for the ARBI SDK",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -22,23 +22,23 @@
|
|
|
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.60",
|
|
26
|
+
"@arbidocs/client": "0.3.60",
|
|
27
27
|
"@tanstack/react-query": ">=5"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"react": ">=18"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@tanstack/react-query": "^5.
|
|
33
|
+
"@tanstack/react-query": "^5.100.11",
|
|
34
34
|
"@testing-library/react": "^16.3.0",
|
|
35
35
|
"@types/react": "^19.2.2",
|
|
36
36
|
"@types/react-dom": "^19.2.2",
|
|
37
|
-
"jsdom": "^
|
|
37
|
+
"jsdom": "^29.1.1",
|
|
38
38
|
"react": "^19.2.0",
|
|
39
39
|
"react-dom": "^19.2.0",
|
|
40
40
|
"tsup": "^8.5.1",
|
|
41
|
-
"typescript": "^
|
|
41
|
+
"typescript": "^6.0.3",
|
|
42
42
|
"vitest": "^4.0.18"
|
|
43
43
|
},
|
|
44
44
|
"license": "MIT",
|