@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.
Files changed (51) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/core.d.ts +2 -2
  3. package/core.d.ts.map +1 -1
  4. package/core.js +5 -3
  5. package/core.js.map +1 -1
  6. package/core.mjs +5 -3
  7. package/core.mjs.map +1 -1
  8. package/index.d.mts +4 -2
  9. package/index.d.ts +4 -2
  10. package/index.d.ts.map +1 -1
  11. package/index.js.map +1 -1
  12. package/index.mjs +1 -1
  13. package/index.mjs.map +1 -1
  14. package/package.json +1 -1
  15. package/resources/admin/auth-providers.d.ts +138 -46
  16. package/resources/admin/auth-providers.d.ts.map +1 -1
  17. package/resources/auth.d.ts +17 -1
  18. package/resources/auth.d.ts.map +1 -1
  19. package/resources/auth.js +6 -0
  20. package/resources/auth.js.map +1 -1
  21. package/resources/auth.mjs +6 -0
  22. package/resources/auth.mjs.map +1 -1
  23. package/resources/chat/chat.d.ts +3 -1
  24. package/resources/chat/chat.d.ts.map +1 -1
  25. package/resources/chat/completions.d.ts +3 -1
  26. package/resources/chat/completions.d.ts.map +1 -1
  27. package/resources/index.d.ts +1 -1
  28. package/resources/index.d.ts.map +1 -1
  29. package/resources/index.js.map +1 -1
  30. package/resources/index.mjs +1 -1
  31. package/resources/index.mjs.map +1 -1
  32. package/resources/shared.d.ts +3 -1
  33. package/resources/shared.d.ts.map +1 -1
  34. package/resources/tools/scheduled.d.ts +3 -1
  35. package/resources/tools/scheduled.d.ts.map +1 -1
  36. package/resources/tools/tools.d.ts +9 -3
  37. package/resources/tools/tools.d.ts.map +1 -1
  38. package/src/core.ts +6 -4
  39. package/src/index.ts +14 -1
  40. package/src/resources/admin/auth-providers.ts +46 -46
  41. package/src/resources/auth.ts +31 -0
  42. package/src/resources/chat/chat.ts +1 -1
  43. package/src/resources/chat/completions.ts +1 -1
  44. package/src/resources/index.ts +9 -1
  45. package/src/resources/shared.ts +1 -1
  46. package/src/resources/tools/scheduled.ts +1 -1
  47. package/src/resources/tools/tools.ts +3 -3
  48. package/src/version.ts +1 -1
  49. package/version.d.ts +1 -1
  50. package/version.js +1 -1
  51. 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?: Record<string, unknown>;
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?: Record<string, unknown>;
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?: Record<string, unknown>;
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.8.1'; // x-release-please-version
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.8.1";
1
+ export declare const VERSION = "1.9.0";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '1.8.1'; // x-release-please-version
4
+ exports.VERSION = '1.9.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '1.8.1'; // x-release-please-version
1
+ export const VERSION = '1.9.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map