@arcadeai/arcadejs 1.8.1 → 1.9.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/CHANGELOG.md +28 -0
- package/core.d.ts +2 -2
- package/core.d.ts.map +1 -1
- package/core.js +5 -3
- package/core.js.map +1 -1
- package/core.mjs +5 -3
- package/core.mjs.map +1 -1
- package/index.d.mts +4 -2
- package/index.d.ts +4 -2
- package/index.d.ts.map +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/admin/auth-providers.d.ts +138 -46
- package/resources/admin/auth-providers.d.ts.map +1 -1
- package/resources/auth.d.ts +17 -1
- package/resources/auth.d.ts.map +1 -1
- package/resources/auth.js +6 -0
- package/resources/auth.js.map +1 -1
- package/resources/auth.mjs +6 -0
- package/resources/auth.mjs.map +1 -1
- package/resources/chat/chat.d.ts +3 -1
- package/resources/chat/chat.d.ts.map +1 -1
- package/resources/chat/completions.d.ts +3 -1
- package/resources/chat/completions.d.ts.map +1 -1
- package/resources/index.d.ts +1 -1
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs +1 -1
- package/resources/index.mjs.map +1 -1
- package/resources/shared.d.ts +3 -1
- package/resources/shared.d.ts.map +1 -1
- package/resources/tools/scheduled.d.ts +3 -1
- package/resources/tools/scheduled.d.ts.map +1 -1
- package/resources/tools/tools.d.ts +9 -3
- package/resources/tools/tools.d.ts.map +1 -1
- package/src/core.ts +6 -4
- package/src/index.ts +14 -1
- package/src/resources/admin/auth-providers.ts +46 -46
- package/src/resources/auth.ts +31 -0
- package/src/resources/chat/chat.ts +1 -1
- package/src/resources/chat/completions.ts +1 -1
- package/src/resources/index.ts +9 -1
- package/src/resources/shared.ts +1 -1
- package/src/resources/tools/scheduled.ts +1 -1
- package/src/resources/tools/tools.ts +3 -3
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -105,7 +105,7 @@ export interface ExecuteToolRequest {
|
|
|
105
105
|
/**
|
|
106
106
|
* JSON input to the tool, if any
|
|
107
107
|
*/
|
|
108
|
-
input?:
|
|
108
|
+
input?: { [key: string]: unknown };
|
|
109
109
|
|
|
110
110
|
/**
|
|
111
111
|
* The time at which the tool should be run (optional). If not provided, the tool
|
|
@@ -193,7 +193,7 @@ export interface ToolDefinition {
|
|
|
193
193
|
|
|
194
194
|
description?: string;
|
|
195
195
|
|
|
196
|
-
formatted_schema?:
|
|
196
|
+
formatted_schema?: { [key: string]: unknown };
|
|
197
197
|
|
|
198
198
|
output?: ToolDefinition.Output;
|
|
199
199
|
|
|
@@ -401,7 +401,7 @@ export interface ToolExecuteParams {
|
|
|
401
401
|
/**
|
|
402
402
|
* JSON input to the tool, if any
|
|
403
403
|
*/
|
|
404
|
-
input?:
|
|
404
|
+
input?: { [key: string]: unknown };
|
|
405
405
|
|
|
406
406
|
/**
|
|
407
407
|
* The time at which the tool should be run (optional). If not provided, the tool
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '1.
|
|
1
|
+
export const VERSION = '1.9.0'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "1.
|
|
1
|
+
export declare const VERSION = "1.9.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '1.
|
|
1
|
+
export const VERSION = '1.9.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|