@ricsam/r5d-api 0.0.57 → 0.0.58

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.
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@ricsam/r5d-api",
3
- "version": "0.0.57",
3
+ "version": "0.0.58",
4
4
  "type": "commonjs"
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@ricsam/r5d-api",
3
- "version": "0.0.57",
3
+ "version": "0.0.58",
4
4
  "type": "module"
5
5
  }
@@ -217,7 +217,7 @@ export type R5dctlWorkspaceSyncResult = {
217
217
  branchName?: string;
218
218
  detail?: string;
219
219
  };
220
- outcome: "no_change" | "published" | "updated" | "conflict_reset" | "large_diff_blocked" | "reset" | "failed";
220
+ outcome: "no_change" | "published" | "updated" | "conflict_reset" | "large_diff_blocked" | "conflict_blocked" | "reset" | "failed";
221
221
  startingHead: string | null;
222
222
  candidateHead?: string;
223
223
  publishedHead?: string;
@@ -228,6 +228,17 @@ export type R5dctlWorkspaceSyncResult = {
228
228
  affectedPaths: string[];
229
229
  discardedPaths: string[];
230
230
  localChangesDiscarded: boolean;
231
+ telemetry?: {
232
+ totalMs: number;
233
+ queueMs: number;
234
+ prepareMs: number;
235
+ synchronizeMs: number;
236
+ fastPath: {
237
+ hit: boolean;
238
+ reason: string;
239
+ proofAgeMs?: number;
240
+ };
241
+ };
231
242
  error?: string;
232
243
  };
233
244
  export type R5dctlWorkspaceStatus = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ricsam/r5d-api",
3
- "version": "0.0.57",
3
+ "version": "0.0.58",
4
4
  "type": "module",
5
5
  "main": "./dist/cjs/index.cjs",
6
6
  "module": "./dist/mjs/index.mjs",