@shardworks/clerk-apparatus 0.1.163 → 0.1.164

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -91,7 +91,7 @@ const total = await clerk.count({ status: 'ready' });
91
91
 
92
92
  ### `edit(request): Promise<WritDoc>`
93
93
 
94
- Edit a draft writ (status: `new`). Only the provided fields are updated. Throws if the writ is not in `new` status.
94
+ Edit a writ, updating one or more fields. Only the provided fields are updated.
95
95
 
96
96
  ```typescript
97
97
  const edited = await clerk.edit({
@@ -266,7 +266,7 @@ interface PostCommissionRequest {
266
266
  }
267
267
 
268
268
  interface EditWritRequest {
269
- id: string; // writ to edit (must be in 'new' status)
269
+ id: string; // writ to edit
270
270
  title?: string; // new title
271
271
  body?: string; // new body text
272
272
  type?: string; // new type (must be valid)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shardworks/clerk-apparatus",
3
- "version": "0.1.163",
3
+ "version": "0.1.164",
4
4
  "license": "ISC",
5
5
  "repository": {
6
6
  "type": "git",
@@ -17,9 +17,9 @@
17
17
  },
18
18
  "dependencies": {
19
19
  "zod": "4.3.6",
20
- "@shardworks/nexus-core": "0.1.163",
21
- "@shardworks/tools-apparatus": "0.1.163",
22
- "@shardworks/stacks-apparatus": "0.1.163"
20
+ "@shardworks/nexus-core": "0.1.164",
21
+ "@shardworks/stacks-apparatus": "0.1.164",
22
+ "@shardworks/tools-apparatus": "0.1.164"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@types/node": "25.5.0"