diff --git a/.changeset/snapshot-client-initial-release.md b/.changeset/snapshot-client-initial-release.md deleted file mode 100644 index e5694652..00000000 --- a/.changeset/snapshot-client-initial-release.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -"@epilot/snapshot-client": minor ---- - -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. diff --git a/.changeset/snapshot-client-schedule-endpoints.md b/.changeset/snapshot-client-schedule-endpoints.md deleted file mode 100644 index 62bb8148..00000000 --- a/.changeset/snapshot-client-schedule-endpoints.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -"@epilot/snapshot-client": minor ---- - -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. diff --git a/clients/snapshot-client/CHANGELOG.md b/clients/snapshot-client/CHANGELOG.md new file mode 100644 index 00000000..1cb21c40 --- /dev/null +++ b/clients/snapshot-client/CHANGELOG.md @@ -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. diff --git a/clients/snapshot-client/package.json b/clients/snapshot-client/package.json index 01b47da7..7bd37513 100644 --- a/clients/snapshot-client/package.json +++ b/clients/snapshot-client/package.json @@ -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",