@vibexp/api-client 0.12.0 → 0.13.0
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/axios/types.gen.d.ts +42 -36
- package/dist/schema.d.ts +39 -41
- package/package.json +1 -1
|
@@ -2476,35 +2476,45 @@ export type InvitationDetailsResponse = {
|
|
|
2476
2476
|
invitation: InvitationResponse;
|
|
2477
2477
|
};
|
|
2478
2478
|
/**
|
|
2479
|
-
* A2A (Agent-to-Agent) protocol agent card
|
|
2479
|
+
* A2A (Agent-to-Agent) protocol agent card (protocol v1.0), mirroring the official a2a-go SDK's a2a.AgentCard type.
|
|
2480
2480
|
*/
|
|
2481
2481
|
export type AgentCard = {
|
|
2482
2482
|
name?: string;
|
|
2483
2483
|
description?: string;
|
|
2484
2484
|
version?: string;
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
|
|
2485
|
+
/**
|
|
2486
|
+
* Supported transport/protocol/URL combinations for interacting with the agent.
|
|
2487
|
+
*/
|
|
2488
|
+
supportedInterfaces?: Array<{
|
|
2489
|
+
url?: string;
|
|
2490
|
+
/**
|
|
2491
|
+
* Transport protocol available at this URL (e.g. JSONRPC, GRPC, HTTP+JSON).
|
|
2492
|
+
*/
|
|
2493
|
+
protocolBinding?: string;
|
|
2494
|
+
protocolVersion?: string;
|
|
2495
|
+
tenant?: string | null;
|
|
2496
|
+
}> | null;
|
|
2488
2497
|
defaultInputModes?: Array<string> | null;
|
|
2489
2498
|
defaultOutputModes?: Array<string> | null;
|
|
2490
2499
|
iconUrl?: string | null;
|
|
2491
2500
|
documentationUrl?: string | null;
|
|
2492
2501
|
provider?: {
|
|
2493
|
-
|
|
2502
|
+
organization?: string;
|
|
2494
2503
|
url?: string;
|
|
2495
2504
|
} | null;
|
|
2496
2505
|
capabilities?: {
|
|
2497
2506
|
streaming?: boolean;
|
|
2498
|
-
pushNotifications?:
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2507
|
+
pushNotifications?: boolean;
|
|
2508
|
+
extendedAgentCard?: boolean;
|
|
2509
|
+
extensions?: Array<{
|
|
2510
|
+
uri?: string;
|
|
2511
|
+
description?: string;
|
|
2512
|
+
required?: boolean;
|
|
2513
|
+
params?: {
|
|
2514
|
+
[key: string]: unknown;
|
|
2515
|
+
} | null;
|
|
2516
|
+
}> | null;
|
|
2517
|
+
};
|
|
2508
2518
|
skills?: Array<{
|
|
2509
2519
|
id?: string;
|
|
2510
2520
|
name?: string;
|
|
@@ -2513,35 +2523,31 @@ export type AgentCard = {
|
|
|
2513
2523
|
examples?: Array<string> | null;
|
|
2514
2524
|
inputModes?: Array<string> | null;
|
|
2515
2525
|
outputModes?: Array<string> | null;
|
|
2516
|
-
|
|
2526
|
+
securityRequirements?: Array<{
|
|
2527
|
+
[key: string]: unknown;
|
|
2528
|
+
}> | null;
|
|
2517
2529
|
}> | null;
|
|
2518
|
-
|
|
2530
|
+
/**
|
|
2531
|
+
* Security requirement options (OR of ANDs) applying to all agent interactions.
|
|
2532
|
+
*/
|
|
2533
|
+
securityRequirements?: Array<{
|
|
2519
2534
|
[key: string]: unknown;
|
|
2520
2535
|
}> | null;
|
|
2536
|
+
/**
|
|
2537
|
+
* Security schemes available to authorize requests, keyed by scheme name.
|
|
2538
|
+
*/
|
|
2521
2539
|
securitySchemes?: {
|
|
2522
2540
|
[key: string]: {
|
|
2523
|
-
|
|
2524
|
-
description?: string;
|
|
2525
|
-
name?: string;
|
|
2526
|
-
in?: string;
|
|
2527
|
-
flows?: string;
|
|
2541
|
+
[key: string]: unknown;
|
|
2528
2542
|
};
|
|
2529
2543
|
} | null;
|
|
2530
|
-
|
|
2531
|
-
|
|
2532
|
-
|
|
2544
|
+
signatures?: Array<{
|
|
2545
|
+
protected?: string;
|
|
2546
|
+
signature?: string;
|
|
2547
|
+
header?: {
|
|
2548
|
+
[key: string]: unknown;
|
|
2533
2549
|
} | null;
|
|
2534
|
-
|
|
2535
|
-
url?: string;
|
|
2536
|
-
} | null;
|
|
2537
|
-
} | null;
|
|
2538
|
-
supportsAuthenticatedExtendedCard?: boolean | null;
|
|
2539
|
-
signatures?: {
|
|
2540
|
-
card?: {
|
|
2541
|
-
algorithm?: string;
|
|
2542
|
-
value?: string;
|
|
2543
|
-
} | null;
|
|
2544
|
-
} | null;
|
|
2550
|
+
}> | null;
|
|
2545
2551
|
};
|
|
2546
2552
|
export type UpdateAgentCredentialsRequest = {
|
|
2547
2553
|
credentials: {
|
package/dist/schema.d.ts
CHANGED
|
@@ -6703,28 +6703,35 @@ export interface components {
|
|
|
6703
6703
|
InvitationDetailsResponse: {
|
|
6704
6704
|
invitation: components["schemas"]["InvitationResponse"];
|
|
6705
6705
|
};
|
|
6706
|
-
/** @description A2A (Agent-to-Agent) protocol agent card */
|
|
6706
|
+
/** @description A2A (Agent-to-Agent) protocol agent card (protocol v1.0), mirroring the official a2a-go SDK's a2a.AgentCard type. */
|
|
6707
6707
|
AgentCard: {
|
|
6708
6708
|
/** @example Code Reviewer Agent */
|
|
6709
6709
|
name?: string;
|
|
6710
6710
|
description?: string;
|
|
6711
6711
|
/** @example 1.0.0 */
|
|
6712
6712
|
version?: string;
|
|
6713
|
-
/** @
|
|
6714
|
-
|
|
6715
|
-
|
|
6716
|
-
|
|
6717
|
-
|
|
6718
|
-
|
|
6713
|
+
/** @description Supported transport/protocol/URL combinations for interacting with the agent. */
|
|
6714
|
+
supportedInterfaces?: {
|
|
6715
|
+
/** Format: uri */
|
|
6716
|
+
url?: string;
|
|
6717
|
+
/**
|
|
6718
|
+
* @description Transport protocol available at this URL (e.g. JSONRPC, GRPC, HTTP+JSON).
|
|
6719
|
+
* @example JSONRPC
|
|
6720
|
+
*/
|
|
6721
|
+
protocolBinding?: string;
|
|
6722
|
+
/** @example 1.0 */
|
|
6723
|
+
protocolVersion?: string;
|
|
6724
|
+
tenant?: string | null;
|
|
6725
|
+
}[] | null;
|
|
6719
6726
|
/**
|
|
6720
6727
|
* @example [
|
|
6721
|
-
* "text"
|
|
6728
|
+
* "text/plain"
|
|
6722
6729
|
* ]
|
|
6723
6730
|
*/
|
|
6724
6731
|
defaultInputModes?: string[] | null;
|
|
6725
6732
|
/**
|
|
6726
6733
|
* @example [
|
|
6727
|
-
* "text"
|
|
6734
|
+
* "text/plain"
|
|
6728
6735
|
* ]
|
|
6729
6736
|
*/
|
|
6730
6737
|
defaultOutputModes?: string[] | null;
|
|
@@ -6733,22 +6740,23 @@ export interface components {
|
|
|
6733
6740
|
/** Format: uri */
|
|
6734
6741
|
documentationUrl?: string | null;
|
|
6735
6742
|
provider?: {
|
|
6736
|
-
|
|
6743
|
+
organization?: string;
|
|
6737
6744
|
/** Format: uri */
|
|
6738
6745
|
url?: string;
|
|
6739
6746
|
} | null;
|
|
6740
6747
|
capabilities?: {
|
|
6741
6748
|
streaming?: boolean;
|
|
6742
|
-
pushNotifications?:
|
|
6743
|
-
|
|
6744
|
-
} | null;
|
|
6745
|
-
stateTransitionHistory?: {
|
|
6746
|
-
enabled?: boolean;
|
|
6747
|
-
} | null;
|
|
6749
|
+
pushNotifications?: boolean;
|
|
6750
|
+
extendedAgentCard?: boolean;
|
|
6748
6751
|
extensions?: {
|
|
6749
|
-
|
|
6750
|
-
|
|
6751
|
-
|
|
6752
|
+
uri?: string;
|
|
6753
|
+
description?: string;
|
|
6754
|
+
required?: boolean;
|
|
6755
|
+
params?: {
|
|
6756
|
+
[key: string]: unknown;
|
|
6757
|
+
} | null;
|
|
6758
|
+
}[] | null;
|
|
6759
|
+
};
|
|
6752
6760
|
skills?: {
|
|
6753
6761
|
id?: string;
|
|
6754
6762
|
name?: string;
|
|
@@ -6757,37 +6765,27 @@ export interface components {
|
|
|
6757
6765
|
examples?: string[] | null;
|
|
6758
6766
|
inputModes?: string[] | null;
|
|
6759
6767
|
outputModes?: string[] | null;
|
|
6760
|
-
|
|
6768
|
+
securityRequirements?: {
|
|
6769
|
+
[key: string]: unknown;
|
|
6770
|
+
}[] | null;
|
|
6761
6771
|
}[] | null;
|
|
6762
|
-
|
|
6772
|
+
/** @description Security requirement options (OR of ANDs) applying to all agent interactions. */
|
|
6773
|
+
securityRequirements?: {
|
|
6763
6774
|
[key: string]: unknown;
|
|
6764
6775
|
}[] | null;
|
|
6776
|
+
/** @description Security schemes available to authorize requests, keyed by scheme name. */
|
|
6765
6777
|
securitySchemes?: {
|
|
6766
6778
|
[key: string]: {
|
|
6767
|
-
|
|
6768
|
-
description?: string;
|
|
6769
|
-
name?: string;
|
|
6770
|
-
in?: string;
|
|
6771
|
-
flows?: string;
|
|
6779
|
+
[key: string]: unknown;
|
|
6772
6780
|
};
|
|
6773
6781
|
} | null;
|
|
6774
|
-
additionalInterfaces?: {
|
|
6775
|
-
webSocket?: {
|
|
6776
|
-
/** Format: uri */
|
|
6777
|
-
url?: string;
|
|
6778
|
-
} | null;
|
|
6779
|
-
http?: {
|
|
6780
|
-
/** Format: uri */
|
|
6781
|
-
url?: string;
|
|
6782
|
-
} | null;
|
|
6783
|
-
} | null;
|
|
6784
|
-
supportsAuthenticatedExtendedCard?: boolean | null;
|
|
6785
6782
|
signatures?: {
|
|
6786
|
-
|
|
6787
|
-
|
|
6788
|
-
|
|
6783
|
+
protected?: string;
|
|
6784
|
+
signature?: string;
|
|
6785
|
+
header?: {
|
|
6786
|
+
[key: string]: unknown;
|
|
6789
6787
|
} | null;
|
|
6790
|
-
} | null;
|
|
6788
|
+
}[] | null;
|
|
6791
6789
|
};
|
|
6792
6790
|
UpdateAgentCredentialsRequest: {
|
|
6793
6791
|
/**
|
package/package.json
CHANGED