MCPcopy Create free account
hub / github.com/anomalyco/models.dev / SyncResult

Interface SyncResult

packages/core/src/sync/index.ts:73–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

71}
72
73export 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
85export const providers: {
86 baseten: SyncProvider<any>;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected