@ricsam/r5d-api 0.0.56 → 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.
- package/dist/cjs/package.json +1 -1
- package/dist/mjs/package.json +1 -1
- package/dist/types/index.d.ts +12 -1
- package/package.json +1 -1
package/dist/cjs/package.json
CHANGED
package/dist/mjs/package.json
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -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 = {
|