Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -835,7 +835,7 @@ You can also import previously exported snapshots into the same project or a dif

```typescript
const validateReq = {
files: exportRes.files,
files: exportRes.data.files,
};

// Validate that an exported snapshot can be imported into the current project
Expand All @@ -846,7 +846,7 @@ if (!validateRes.ok) {

// Import the previously exported snapshot into the current project
const importReq = {
files: exportRes.files,
files: exportRes.data.files,
};

await descopeClient.management.project.importSnapshot(files);
Expand Down