@slates/test 1.0.0-rc.14 → 1.0.0-rc.15
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.cjs +80 -80
- package/dist/index.d.cts +5 -2
- package/dist/index.d.ts +5 -2
- package/dist/index.module.js +80 -80
- package/package.json +4 -4
package/dist/index.d.cts
CHANGED
|
@@ -55,10 +55,15 @@ declare let expectToolCall: (d: {
|
|
|
55
55
|
content: {
|
|
56
56
|
type: "url";
|
|
57
57
|
url: string;
|
|
58
|
+
headers?: Record<string, string> | undefined;
|
|
59
|
+
query?: Record<string, string> | undefined;
|
|
58
60
|
} | {
|
|
59
61
|
type: "content";
|
|
60
62
|
encoding: "utf-8" | "base64";
|
|
61
63
|
content: string;
|
|
64
|
+
} | {
|
|
65
|
+
type: "upload_reference";
|
|
66
|
+
referenceId: string;
|
|
62
67
|
};
|
|
63
68
|
mimeType?: string | undefined;
|
|
64
69
|
attachmentHash?: string | undefined;
|
|
@@ -303,7 +308,6 @@ declare let getSlateContract: (client: SlatesTestClient) => Promise<{
|
|
|
303
308
|
id: string;
|
|
304
309
|
title: string;
|
|
305
310
|
description?: string | undefined;
|
|
306
|
-
defaultChecked?: boolean | undefined;
|
|
307
311
|
}[] | undefined;
|
|
308
312
|
}[];
|
|
309
313
|
configSchema: Record<string, any>;
|
|
@@ -526,7 +530,6 @@ declare let expectSlateContract: (d: {
|
|
|
526
530
|
id: string;
|
|
527
531
|
title: string;
|
|
528
532
|
description?: string | undefined;
|
|
529
|
-
defaultChecked?: boolean | undefined;
|
|
530
533
|
}[] | undefined;
|
|
531
534
|
}[];
|
|
532
535
|
configSchema: Record<string, any>;
|
package/dist/index.d.ts
CHANGED
|
@@ -55,10 +55,15 @@ declare let expectToolCall: (d: {
|
|
|
55
55
|
content: {
|
|
56
56
|
type: "url";
|
|
57
57
|
url: string;
|
|
58
|
+
headers?: Record<string, string> | undefined;
|
|
59
|
+
query?: Record<string, string> | undefined;
|
|
58
60
|
} | {
|
|
59
61
|
type: "content";
|
|
60
62
|
encoding: "utf-8" | "base64";
|
|
61
63
|
content: string;
|
|
64
|
+
} | {
|
|
65
|
+
type: "upload_reference";
|
|
66
|
+
referenceId: string;
|
|
62
67
|
};
|
|
63
68
|
mimeType?: string | undefined;
|
|
64
69
|
attachmentHash?: string | undefined;
|
|
@@ -303,7 +308,6 @@ declare let getSlateContract: (client: SlatesTestClient) => Promise<{
|
|
|
303
308
|
id: string;
|
|
304
309
|
title: string;
|
|
305
310
|
description?: string | undefined;
|
|
306
|
-
defaultChecked?: boolean | undefined;
|
|
307
311
|
}[] | undefined;
|
|
308
312
|
}[];
|
|
309
313
|
configSchema: Record<string, any>;
|
|
@@ -526,7 +530,6 @@ declare let expectSlateContract: (d: {
|
|
|
526
530
|
id: string;
|
|
527
531
|
title: string;
|
|
528
532
|
description?: string | undefined;
|
|
529
|
-
defaultChecked?: boolean | undefined;
|
|
530
533
|
}[] | undefined;
|
|
531
534
|
}[];
|
|
532
535
|
configSchema: Record<string, any>;
|