@wacht/jsx 1.0.0-beta.25 → 1.0.0-beta.26
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/README.md +1 -1
- package/dist/index.cjs.js +2476 -1557
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +4 -25
- package/dist/index.es.js +14906 -14364
- package/dist/index.es.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Actor } from '@wacht/types';
|
|
2
|
+
import { ActorMcpServerSummary } from '@wacht/types';
|
|
2
3
|
import { ActorProject } from '@wacht/types';
|
|
3
4
|
import { Agent } from '@wacht/types';
|
|
4
5
|
import { AgentThread } from '@wacht/types';
|
|
@@ -31,6 +32,7 @@ import { DeploymentUISettings } from '@wacht/types';
|
|
|
31
32
|
import { DetailedHTMLProps } from 'react';
|
|
32
33
|
import { EndpointWithSubscriptions } from '@wacht/types';
|
|
33
34
|
import { EnterpriseConnection } from '@wacht/types';
|
|
35
|
+
import { ExternalAgentConnection } from '@wacht/types';
|
|
34
36
|
import { FastOmit } from 'styled-components';
|
|
35
37
|
import { FC } from 'react';
|
|
36
38
|
import { FileData } from '@wacht/types';
|
|
@@ -148,17 +150,6 @@ declare interface ActorMcpServerConnectResponse {
|
|
|
148
150
|
auth_url: string;
|
|
149
151
|
}
|
|
150
152
|
|
|
151
|
-
export declare interface ActorMcpServerSummary {
|
|
152
|
-
id: string;
|
|
153
|
-
name: string;
|
|
154
|
-
endpoint: string;
|
|
155
|
-
auth_type: string;
|
|
156
|
-
requires_user_connection: boolean;
|
|
157
|
-
connection_status: "ready" | "connected" | "not_connected" | "expired";
|
|
158
|
-
connected_at?: string;
|
|
159
|
-
expires_at?: string;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
153
|
declare type AgentSearchOptions = {
|
|
163
154
|
enabled?: boolean;
|
|
164
155
|
query?: string;
|
|
@@ -260,13 +251,13 @@ export declare interface DeploymentInvitationData {
|
|
|
260
251
|
error_code?: string;
|
|
261
252
|
}
|
|
262
253
|
|
|
263
|
-
export declare function DeploymentProvider({ children, publicKey, adapter,
|
|
254
|
+
export declare function DeploymentProvider({ children, publicKey, adapter, uiOverrides, }: DeploymentProviderProps): JSX.Element;
|
|
264
255
|
|
|
265
256
|
declare interface DeploymentProviderProps {
|
|
266
257
|
children: ReactNode;
|
|
267
258
|
publicKey: string;
|
|
268
259
|
adapter: PlatformAdapter;
|
|
269
|
-
|
|
260
|
+
uiOverrides?: Partial<DeploymentUISettings>;
|
|
270
261
|
}
|
|
271
262
|
|
|
272
263
|
export declare const Dialog: FC<DialogProps> & {
|
|
@@ -358,18 +349,6 @@ declare type EmailSignInParams = {
|
|
|
358
349
|
password: string;
|
|
359
350
|
};
|
|
360
351
|
|
|
361
|
-
export declare interface ExternalAgentConnection {
|
|
362
|
-
provider: string;
|
|
363
|
-
slug: string;
|
|
364
|
-
display_name: string;
|
|
365
|
-
logo_url?: string;
|
|
366
|
-
status: ExternalAgentConnectionStatus;
|
|
367
|
-
external_account_id?: string;
|
|
368
|
-
connected_at?: string;
|
|
369
|
-
}
|
|
370
|
-
|
|
371
|
-
export declare type ExternalAgentConnectionStatus = "disconnected" | "pending" | "active" | "expired" | "failed";
|
|
372
|
-
|
|
373
352
|
export declare const Form: IStyledComponentBase<"web", FastOmit<DetailedHTMLProps<FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>, never> & Partial<Pick<DetailedHTMLProps<FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>, never>>> & string;
|
|
374
353
|
|
|
375
354
|
export declare const FormGroup: IStyledComponentBase<"web", FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
|