@nangohq/types 0.59.12 → 0.59.13

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.
@@ -110,7 +110,7 @@ export type GetPublicConnection = Endpoint<{
110
110
  force_refresh?: boolean | undefined;
111
111
  };
112
112
  Path: '/connection/:connectionId';
113
- Error: ApiError<'unknown_provider_config'>;
113
+ Error: ApiError<'unknown_provider_config' | 'invalid_credentials'>;
114
114
  Success: ApiPublicConnectionFull;
115
115
  }>;
116
116
  export type PostConnectionRefresh = Endpoint<{
@@ -58,6 +58,7 @@ export interface BaseProvider {
58
58
  };
59
59
  authorization_url?: string;
60
60
  authorization_url_skip_encode?: string[];
61
+ authorization_url_skip_empty?: boolean;
61
62
  access_token_url?: string;
62
63
  authorization_params?: Record<string, string>;
63
64
  authorization_code_param_in_callback?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nangohq/types",
3
- "version": "0.59.12",
3
+ "version": "0.59.13",
4
4
  "description": "Types used in Nango applications",
5
5
  "type": "module",
6
6
  "typings": "dist/index.d.ts",