@arcadeai/design-system 3.5.4 → 3.5.6

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.
@@ -1,4 +1,4 @@
1
- import { Arcade } from '@arcadeai/arcadejs';
1
+ import { Arcade, ClientOptions } from '@arcadeai/arcadejs';
2
2
  import { ToolDefinition } from '@arcadeai/arcadejs/resources/index.mjs';
3
3
  import { Toolkit as ToolkitMetadata } from '../../metadata/types';
4
4
  export type Toolkit = ToolDefinition.Toolkit & {
@@ -57,14 +57,13 @@ type ArcadeConfig = {
57
57
  * The access token for the Arcade API.
58
58
  */
59
59
  accessToken?: string;
60
- };
60
+ } & ClientOptions;
61
61
  export type GetToolsProps = {
62
62
  limit?: number;
63
63
  offset?: number;
64
64
  toolkit?: string;
65
65
  };
66
- export declare class ArcadeClient {
67
- #private;
66
+ export declare class ArcadeClient extends Arcade {
68
67
  constructor(config: ArcadeConfig);
69
68
  static create(config: ArcadeConfig): Arcade;
70
69
  getAllTools(props?: GetToolsProps): Promise<ToolDefinition[]>;