@canton-network/core-token-standard 0.11.0 → 0.12.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/dist/index.d.ts CHANGED
@@ -733,11 +733,11 @@ declare class TokenStandardClient {
733
733
  constructor(baseUrl: string, logger: Logger, isAdmin: boolean, accessToken?: string, accessTokenProvider?: AccessTokenProvider);
734
734
  post<Path extends PostEndpoint>(path: Path, body: PostRequest<Path>, params?: {
735
735
  path?: Record<string, string>;
736
- query?: Record<string, string>;
736
+ query?: Record<string, string | number>;
737
737
  }): Promise<PostResponse<Path>>;
738
738
  get<Path extends GetEndpoint>(path: Path, params?: {
739
739
  path?: Record<string, string>;
740
- query?: Record<string, string>;
740
+ query?: Record<string, string | number>;
741
741
  }): Promise<GetResponse<Path>>;
742
742
  private valueOrError;
743
743
  }