@squidcloud/backend 1.0.435 → 1.0.436
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.
|
@@ -24,11 +24,11 @@ export interface AiFunctionParam {
|
|
|
24
24
|
enum?: Array<Omit<AiFunctionParamType, 'date'>>;
|
|
25
25
|
}
|
|
26
26
|
/** Represents an AI function response that also includes files. */
|
|
27
|
-
export interface AiFunctionResponseWithFiles {
|
|
27
|
+
export interface AiFunctionResponseWithFiles<ResponseType = unknown> {
|
|
28
28
|
/** Indicates that this is an AI function response with files. */
|
|
29
29
|
__isAiFunctionResponseWithFiles: true;
|
|
30
30
|
/** The response from the AI function. */
|
|
31
|
-
response:
|
|
31
|
+
response: ResponseType;
|
|
32
32
|
/** Optional list of files associated with the response. */
|
|
33
33
|
files: Array<AiFileUrl>;
|
|
34
34
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@squidcloud/backend",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.436",
|
|
4
4
|
"description": "Squid Cloud's backend SDK",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"typedoc-plugin-markdown": "^4.8.1"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
|
-
"@squidcloud/client": "^1.0.
|
|
37
|
+
"@squidcloud/client": "^1.0.436"
|
|
38
38
|
},
|
|
39
39
|
"engines": {
|
|
40
40
|
"node": ">=20.0.0"
|