@agent-os-sdk/client 0.7.4 → 0.7.5
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.
|
@@ -1628,7 +1628,9 @@ export interface paths {
|
|
|
1628
1628
|
headers: {
|
|
1629
1629
|
[name: string]: unknown;
|
|
1630
1630
|
};
|
|
1631
|
-
content
|
|
1631
|
+
content: {
|
|
1632
|
+
"application/json": components["schemas"]["CredentialListResponse"];
|
|
1633
|
+
};
|
|
1632
1634
|
};
|
|
1633
1635
|
/** @description Authentication required. */
|
|
1634
1636
|
401: {
|
|
@@ -1668,7 +1670,9 @@ export interface paths {
|
|
|
1668
1670
|
headers: {
|
|
1669
1671
|
[name: string]: unknown;
|
|
1670
1672
|
};
|
|
1671
|
-
content
|
|
1673
|
+
content: {
|
|
1674
|
+
"application/json": components["schemas"]["CredentialCreatedResponse"];
|
|
1675
|
+
};
|
|
1672
1676
|
};
|
|
1673
1677
|
/** @description Invalid request (missing TypeId or WorkspaceId). */
|
|
1674
1678
|
400: {
|
|
@@ -1721,7 +1725,9 @@ export interface paths {
|
|
|
1721
1725
|
headers: {
|
|
1722
1726
|
[name: string]: unknown;
|
|
1723
1727
|
};
|
|
1724
|
-
content
|
|
1728
|
+
content: {
|
|
1729
|
+
"application/json": components["schemas"]["CredentialDetailResponse"];
|
|
1730
|
+
};
|
|
1725
1731
|
};
|
|
1726
1732
|
/** @description Credential not found. */
|
|
1727
1733
|
404: {
|
|
@@ -1764,7 +1770,9 @@ export interface paths {
|
|
|
1764
1770
|
headers: {
|
|
1765
1771
|
[name: string]: unknown;
|
|
1766
1772
|
};
|
|
1767
|
-
content
|
|
1773
|
+
content: {
|
|
1774
|
+
"application/json": components["schemas"]["CredentialUpdatedResponse"];
|
|
1775
|
+
};
|
|
1768
1776
|
};
|
|
1769
1777
|
/** @description Credential not found. */
|
|
1770
1778
|
404: {
|
|
@@ -1813,7 +1821,9 @@ export interface paths {
|
|
|
1813
1821
|
headers: {
|
|
1814
1822
|
[name: string]: unknown;
|
|
1815
1823
|
};
|
|
1816
|
-
content
|
|
1824
|
+
content: {
|
|
1825
|
+
"application/json": components["schemas"]["CredentialAccessGrantedResponse"];
|
|
1826
|
+
};
|
|
1817
1827
|
};
|
|
1818
1828
|
/** @description Credential not found. */
|
|
1819
1829
|
404: {
|
|
@@ -8493,6 +8503,73 @@ export interface components {
|
|
|
8493
8503
|
CreateWorkspaceRequest: {
|
|
8494
8504
|
name?: string | null;
|
|
8495
8505
|
};
|
|
8506
|
+
/** @description Response after granting access. */
|
|
8507
|
+
CredentialAccessGrantedResponse: {
|
|
8508
|
+
/** Format: uuid */
|
|
8509
|
+
id?: string;
|
|
8510
|
+
status?: string | null;
|
|
8511
|
+
};
|
|
8512
|
+
/** @description Response after creating a credential. */
|
|
8513
|
+
CredentialCreatedResponse: {
|
|
8514
|
+
/** Format: uuid */
|
|
8515
|
+
id?: string;
|
|
8516
|
+
name?: string | null;
|
|
8517
|
+
scope?: string | null;
|
|
8518
|
+
/** Format: uuid */
|
|
8519
|
+
tenant_id?: string;
|
|
8520
|
+
/** Format: uuid */
|
|
8521
|
+
workspace_id?: string | null;
|
|
8522
|
+
status?: string | null;
|
|
8523
|
+
/** Format: date-time */
|
|
8524
|
+
created_at?: string;
|
|
8525
|
+
};
|
|
8526
|
+
/** @description Detailed credential response including config. */
|
|
8527
|
+
CredentialDetailResponse: {
|
|
8528
|
+
/** Format: uuid */
|
|
8529
|
+
id?: string;
|
|
8530
|
+
name?: string | null;
|
|
8531
|
+
scope?: string | null;
|
|
8532
|
+
sharing_mode?: string | null;
|
|
8533
|
+
/** Format: uuid */
|
|
8534
|
+
tenant_id?: string;
|
|
8535
|
+
/** Format: uuid */
|
|
8536
|
+
workspace_id?: string | null;
|
|
8537
|
+
type_display_name?: string | null;
|
|
8538
|
+
type_key?: string | null;
|
|
8539
|
+
status?: string | null;
|
|
8540
|
+
/** Format: date-time */
|
|
8541
|
+
created_at?: string;
|
|
8542
|
+
public_config?: unknown;
|
|
8543
|
+
};
|
|
8544
|
+
/** @description Paginated list of credentials. */
|
|
8545
|
+
CredentialListResponse: {
|
|
8546
|
+
items?: components["schemas"]["CredentialResponse"][] | null;
|
|
8547
|
+
/** Format: int32 */
|
|
8548
|
+
total?: number;
|
|
8549
|
+
};
|
|
8550
|
+
/** @description Credential metadata (without encrypted values). */
|
|
8551
|
+
CredentialResponse: {
|
|
8552
|
+
/** Format: uuid */
|
|
8553
|
+
id?: string;
|
|
8554
|
+
name?: string | null;
|
|
8555
|
+
scope?: string | null;
|
|
8556
|
+
sharing_mode?: string | null;
|
|
8557
|
+
/** Format: uuid */
|
|
8558
|
+
tenant_id?: string;
|
|
8559
|
+
/** Format: uuid */
|
|
8560
|
+
workspace_id?: string | null;
|
|
8561
|
+
type?: string | null;
|
|
8562
|
+
status?: string | null;
|
|
8563
|
+
/** Format: date-time */
|
|
8564
|
+
created_at?: string;
|
|
8565
|
+
};
|
|
8566
|
+
/** @description Response after updating a credential. */
|
|
8567
|
+
CredentialUpdatedResponse: {
|
|
8568
|
+
/** Format: uuid */
|
|
8569
|
+
id?: string;
|
|
8570
|
+
status?: string | null;
|
|
8571
|
+
sharing_mode?: string | null;
|
|
8572
|
+
};
|
|
8496
8573
|
DatasetResponse: {
|
|
8497
8574
|
/** Format: uuid */
|
|
8498
8575
|
id?: string;
|