| 71 | } |
| 72 | |
| 73 | export interface SyncResult { |
| 74 | id: string; |
| 75 | name: string; |
| 76 | status: "changed" | "unchanged"; |
| 77 | created: number; |
| 78 | updated: number; |
| 79 | deleted: number; |
| 80 | unchanged: number; |
| 81 | notices: string[]; |
| 82 | files: Array<{ status: "created" | "updated" | "deleted"; path: string }>; |
| 83 | } |
| 84 | |
| 85 | export const providers: { |
| 86 | baseten: SyncProvider<any>; |
nothing calls this directly
no outgoing calls
no test coverage detected