@nangohq/types 0.50.0 → 0.52.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.
@@ -104,6 +104,7 @@ export interface MessageRow {
104
104
  url: string;
105
105
  method: string;
106
106
  headers: Record<string, string>;
107
+ body?: unknown;
107
108
  } | null;
108
109
  response: {
109
110
  code: number;
@@ -1,4 +1,3 @@
1
- import type { ParamsSerializerOptions } from 'axios';
2
1
  import type { EndpointMethod } from '../api.js';
3
2
  import type { BasicApiCredentials, ApiKeyCredentials, AppCredentials } from '../auth/api.js';
4
3
  import type { Connection } from '../connection/db.js';
@@ -11,7 +10,6 @@ export interface BaseProxyConfiguration {
11
10
  data?: unknown;
12
11
  headers?: Record<string, string>;
13
12
  params?: string | Record<string, string | number>;
14
- paramsSerializer?: ParamsSerializerOptions;
15
13
  baseUrlOverride?: string;
16
14
  responseType?: ResponseType;
17
15
  retryHeader?: RetryHeaderConfig;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nangohq/types",
3
- "version": "0.50.0",
3
+ "version": "0.52.0",
4
4
  "description": "Types used in Nango applications",
5
5
  "type": "module",
6
6
  "typings": "dist/index.d.ts",