@grafana/sigil-sdk-js 0.3.1 → 0.3.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/sigil-sdk-js",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -54,9 +54,10 @@
54
54
  "sideEffects": false,
55
55
  "scripts": {
56
56
  "clean": "find dist -type f -delete 2>/dev/null || true && find dist -type d -empty -delete 2>/dev/null || true",
57
- "build": "pnpm run clean && tsc --project tsconfig.build.json",
57
+ "sync-proto": "node scripts/sync-proto.mjs",
58
+ "build": "pnpm run sync-proto && pnpm run clean && tsc --project tsconfig.build.json",
58
59
  "typecheck": "tsc --project tsconfig.json --noEmit",
59
- "test:build": "rm -rf .test-dist && tsc --project tsconfig.test.json",
60
+ "test:build": "pnpm run sync-proto && rm -rf .test-dist && tsc --project tsconfig.test.json",
60
61
  "test": "pnpm run test:build && node --import ./test/_setup.mjs --test test/**/*.test.mjs",
61
62
  "test:ci": "pnpm run test",
62
63
  "lint": "biome check .",
@@ -142,4 +142,6 @@ message Generation {
142
142
  optional double top_p = 26;
143
143
  optional string tool_choice = 27;
144
144
  optional bool thinking_enabled = 28;
145
+ repeated string parent_generation_ids = 29;
146
+ optional string effective_version = 30;
145
147
  }