From 5f9bd1e7d96d0fb89f2788489faae4364f452dca Mon Sep 17 00:00:00 2001 From: Siddardh Padyala Date: Wed, 1 Jul 2026 09:55:02 +0530 Subject: [PATCH] chore(snapshot-client): version 0.2.0 Consumes the pending snapshot-client changesets (initial-release + schedule endpoints) and bumps 0.1.7 -> 0.2.0. Publish is manual: `pnpm --filter @epilot/snapshot-client publish`. Co-Authored-By: Claude Opus 4.8 (1M context) Co-authored-by: Claude --- .changeset/snapshot-client-initial-release.md | 12 ---------- .../snapshot-client-schedule-endpoints.md | 13 ---------- clients/snapshot-client/CHANGELOG.md | 24 +++++++++++++++++++ clients/snapshot-client/package.json | 2 +- 4 files changed, 25 insertions(+), 26 deletions(-) delete mode 100644 .changeset/snapshot-client-initial-release.md delete mode 100644 .changeset/snapshot-client-schedule-endpoints.md create mode 100644 clients/snapshot-client/CHANGELOG.md 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",