@eigenpal/sdk 0.10.1 → 0.10.3
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/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +0 -2
- package/src/telemetry.ts +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -267,7 +267,6 @@ export type RunReviewRequest = {
|
|
|
267
267
|
originalValue?: unknown;
|
|
268
268
|
correctedValue?: unknown;
|
|
269
269
|
note?: string | null;
|
|
270
|
-
fileVerdict?: 'correct' | 'wrong' | 'replaced' | null;
|
|
271
270
|
correctedArtifactPath?: string | null;
|
|
272
271
|
}>;
|
|
273
272
|
};
|
|
@@ -1271,7 +1270,6 @@ export type RunReviewCorrection = {
|
|
|
1271
1270
|
originalValue?: unknown | null;
|
|
1272
1271
|
correctedValue?: unknown | null;
|
|
1273
1272
|
note: string;
|
|
1274
|
-
fileVerdict?: 'correct' | 'wrong' | 'replaced' | null;
|
|
1275
1273
|
correctedArtifactPath?: string | null;
|
|
1276
1274
|
createdAt: string;
|
|
1277
1275
|
updatedAt: string;
|
package/src/telemetry.ts
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
export const SDK_LANGUAGE = 'typescript';
|
|
20
20
|
// Rewritten at publish time by scripts/render-sdk-versions.sh.
|
|
21
21
|
// Keep this string literal exactly stable — sed matches on it.
|
|
22
|
-
export const SDK_VERSION = '0.10.
|
|
22
|
+
export const SDK_VERSION = '0.10.3';
|
|
23
23
|
|
|
24
24
|
function detectRuntime(): string {
|
|
25
25
|
const g = globalThis as unknown as {
|