@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.
- package/dist/types.d.ts +5 -1
- 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:
|
|
114
|
+
syncs: SyncConfig[];
|
|
111
115
|
actions: Action[];
|
|
112
116
|
}
|
|
113
117
|
export interface SyncStatus {
|