We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b525164 commit a405d52Copy full SHA for a405d52
packages/my-shared-docprovider/src/drive.ts
@@ -103,7 +103,11 @@ export class MySharedDrive extends Drive implements ICollaborativeDrive {
103
}
104
105
async listCheckpoints(path: string): Promise<Contents.ICheckpointModel[]> {
106
- return [];
+ return [{id: "checkpoint", last_modified: "2025-01-30T16:33:19.393756Z"}];
107
+ }
108
+
109
+ async createCheckpoint(path: string): Promise<Contents.ICheckpointModel> {
110
+ return {id: "checkpoint", last_modified: "2025-01-30T16:33:19.393756Z"};
111
112
113
/**
0 commit comments