@squidcloud/backend 1.0.385 → 1.0.387
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.
|
@@ -19,6 +19,8 @@ export interface AiFunctionParam {
|
|
|
19
19
|
type: AiFunctionParamType;
|
|
20
20
|
/** Indicates if the parameter is mandatory. */
|
|
21
21
|
required: boolean;
|
|
22
|
+
/** List of possible values for the parameter, if applicable. */
|
|
23
|
+
enum?: Array<Omit<AiFunctionParamType, 'date'>>;
|
|
22
24
|
}
|
|
23
25
|
/** Additional optional readonly metadata for AI function. */
|
|
24
26
|
export interface AiFunctionAttributes {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { IntegrationId } from '@squidcloud/client';
|
|
2
2
|
/**
|
|
3
|
-
* Represents the type of native query request, either relational or MongoDB.
|
|
3
|
+
* Represents the type of native query request, either relational, elastic or MongoDB.
|
|
4
4
|
* @category Database
|
|
5
5
|
*/
|
|
6
|
-
export type NativeQueryRequestType = 'relational' | 'mongo';
|
|
6
|
+
export type NativeQueryRequestType = 'relational' | 'mongo' | 'elasticsearch';
|
|
7
7
|
interface BaseNativeQueryContext {
|
|
8
8
|
/** Type of the native query request. */
|
|
9
9
|
type: NativeQueryRequestType;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@squidcloud/backend",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.387",
|
|
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.5.2"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
|
-
"@squidcloud/client": "^1.0.
|
|
37
|
+
"@squidcloud/client": "^1.0.387"
|
|
38
38
|
},
|
|
39
39
|
"engines": {
|
|
40
40
|
"node": ">=20.0.0"
|