@nangohq/node 0.33.6 → 0.33.7

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 (2) hide show
  1. package/dist/index.d.ts +2 -2
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -94,9 +94,9 @@ export declare class Nango {
94
94
  post<T = any>(config: ProxyConfiguration): Promise<AxiosResponse<T>>;
95
95
  patch<T = any>(config: ProxyConfiguration): Promise<AxiosResponse<T>>;
96
96
  delete<T = any>(config: ProxyConfiguration): Promise<AxiosResponse<T>>;
97
- getRecords<T = any>(config: GetRecordsRequestConfig): Promise<T & {
97
+ getRecords<T = any>(config: GetRecordsRequestConfig): Promise<(T & {
98
98
  _nango_metadata: RecordMetadata;
99
- }[]>;
99
+ })[]>;
100
100
  private getConnectionDetails;
101
101
  /**
102
102
  * Get the list of Connections, which does not contain access credentials.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nangohq/node",
3
- "version": "0.33.6",
3
+ "version": "0.33.7",
4
4
  "description": "Nango's Node client.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",