Skip to content
Merged
Show file tree
Hide file tree
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
12 changes: 0 additions & 12 deletions .changeset/snapshot-client-initial-release.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/snapshot-client-schedule-endpoints.md

This file was deleted.

24 changes: 24 additions & 0 deletions clients/snapshot-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# @epilot/snapshot-client

## 0.2.0

### Minor Changes

- e25d140: Initial release of `@epilot/snapshot-client` — TypeScript client for the
epilot Snapshot API. Generated from the same openapi spec as the service;
follows the standard `getClient()` pattern used by the other epilot
clients in this monorepo.

Covers: createSnapshot, listSnapshots, getSnapshot, deleteSnapshot,
restoreSnapshot, listSnapshotResources, getSnapshotResource,
listDependencies.

- 5c2d525: Add scheduled-snapshot endpoints, regenerated from the published Snapshot API
spec:

- `getOrgSnapshotSchedule`
- `putOrgSnapshotSchedule`
- `deleteOrgSnapshotSchedule`

Consumers can now call these as typed client methods instead of raw axios
requests. `captureOrgSnapshot` was already present.
2 changes: 1 addition & 1 deletion clients/snapshot-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@epilot/snapshot-client",
"version": "0.1.7",
"version": "0.2.0",
"description": "Client for epilot Snapshot API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
Loading