@nangohq/node 0.35.23 → 0.35.25

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/types.d.ts +5 -1
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -101,13 +101,17 @@ export interface Sync extends Timestamps {
101
101
  connection_id: string;
102
102
  last_sync_date: string;
103
103
  }
104
+ export interface SyncConfig extends Timestamps {
105
+ name: string;
106
+ description?: string;
107
+ }
104
108
  export interface Action extends Timestamps {
105
109
  name: string;
106
110
  }
107
111
  export interface Integration {
108
112
  unique_key: string;
109
113
  provider: string;
110
- syncs: Sync[];
114
+ syncs: SyncConfig[];
111
115
  actions: Action[];
112
116
  }
113
117
  export interface SyncStatus {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nangohq/node",
3
- "version": "0.35.23",
3
+ "version": "0.35.25",
4
4
  "description": "Nango's Node client.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",