@ziggs-ai/contracts 0.11.0 → 0.12.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/chat.d.ts +0 -2
- package/dist/generated/artifacts.d.ts +5 -0
- package/package.json +1 -1
package/dist/chat.d.ts
CHANGED
|
@@ -86,8 +86,6 @@ export interface ChatMemberView {
|
|
|
86
86
|
* are then the exposed ones, not the underlying principal.
|
|
87
87
|
*/
|
|
88
88
|
presentation?: PrincipalPresentation;
|
|
89
|
-
/** The viewer cannot tell which of several representations is speaking. */
|
|
90
|
-
representationAmbiguous?: boolean;
|
|
91
89
|
}
|
|
92
90
|
/** Max characters of a last-message snippet. */
|
|
93
91
|
export declare const CHAT_SNIPPET_CAP = 280;
|
|
@@ -21,6 +21,10 @@ export type ArtifactLinks = {
|
|
|
21
21
|
agreementIds: Array<string>;
|
|
22
22
|
taskIds: Array<string>;
|
|
23
23
|
};
|
|
24
|
+
export type ArtifactExternalRef = {
|
|
25
|
+
provider: string;
|
|
26
|
+
url: string;
|
|
27
|
+
};
|
|
24
28
|
export type ReachableArtifactEntry = {
|
|
25
29
|
canManage?: boolean;
|
|
26
30
|
artifactId: string;
|
|
@@ -43,6 +47,7 @@ export type ReachableArtifactEntry = {
|
|
|
43
47
|
extractionError?: string | null;
|
|
44
48
|
truncated?: boolean | null;
|
|
45
49
|
extractedArtifactId?: string | null;
|
|
50
|
+
externalRef?: ArtifactExternalRef;
|
|
46
51
|
};
|
|
47
52
|
export type ListReachableArtifactsResult = {
|
|
48
53
|
artifacts: Array<ReachableArtifactEntry>;
|
package/package.json
CHANGED