@mindstudio-ai/remy 0.1.205 → 0.1.207

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/headless.js CHANGED
@@ -6894,7 +6894,11 @@ async function runTurn(params) {
6894
6894
  });
6895
6895
  break;
6896
6896
  case "error":
6897
- onEvent({ type: "error", error: friendlyError(event.error) });
6897
+ onEvent({
6898
+ type: "error",
6899
+ error: friendlyError(event.error),
6900
+ ...event.code ? { code: event.code } : {}
6901
+ });
6898
6902
  return;
6899
6903
  }
6900
6904
  }
@@ -7873,7 +7877,11 @@ var HeadlessSession = class {
7873
7877
  );
7874
7878
  return;
7875
7879
  case "error":
7876
- this.emit("error", { error: e.error }, rid);
7880
+ this.emit(
7881
+ "error",
7882
+ { error: e.error, ...e.code ? { code: e.code } : {} },
7883
+ rid
7884
+ );
7877
7885
  return;
7878
7886
  }
7879
7887
  };
package/dist/index.js CHANGED
@@ -7569,7 +7569,11 @@ async function runTurn(params) {
7569
7569
  });
7570
7570
  break;
7571
7571
  case "error":
7572
- onEvent({ type: "error", error: friendlyError(event.error) });
7572
+ onEvent({
7573
+ type: "error",
7574
+ error: friendlyError(event.error),
7575
+ ...event.code ? { code: event.code } : {}
7576
+ });
7573
7577
  return;
7574
7578
  }
7575
7579
  }
@@ -8699,7 +8703,11 @@ var init_headless = __esm({
8699
8703
  );
8700
8704
  return;
8701
8705
  case "error":
8702
- this.emit("error", { error: e.error }, rid);
8706
+ this.emit(
8707
+ "error",
8708
+ { error: e.error, ...e.code ? { code: e.code } : {} },
8709
+ rid
8710
+ );
8703
8711
  return;
8704
8712
  }
8705
8713
  };
@@ -95,23 +95,6 @@
95
95
  "source": "fontshare",
96
96
  "description": "This serif typeface exhibits moderate stroke contrast with a vertical stress and features sturdy, bracketed serifs with a slight wedge quality. The apertures are moderately open in letters like 'e' and 'a', while the x-height is relatively generous in proportion to the cap height, contributing to strong readability. The construction shows rational, contemporary proportions with a single-story 'g' and regular width, combining traditional serif elements with modern refinement in details like the ball terminals visible in characters such as 'a' and 'c'."
97
97
  },
98
- {
99
- "name": "Boska",
100
- "slug": "boska",
101
- "category": "Serif, Display",
102
- "variable": true,
103
- "weights": [
104
- 200,
105
- 300,
106
- 400,
107
- 500,
108
- 700,
109
- 900
110
- ],
111
- "italics": true,
112
- "source": "fontshare",
113
- "description": "This serif typeface exhibits high stroke contrast with a vertical stress axis and features unbracketed, wedge-shaped serifs that are sharply cut and geometric in construction. The letterforms show moderate apertures in characters like 'e' and 'a', with a medium x-height relative to the cap height and regular width proportions. Notable details include a single-story 'a', ball terminals on some curved strokes, and distinctively sharp, angular serifs that create a modern, rationalist appearance rather than a traditional calligraphic one."
114
- },
115
98
  {
116
99
  "name": "Switzer",
117
100
  "slug": "switzer",
@@ -1878,18 +1861,6 @@
1878
1861
  "weight": 300
1879
1862
  }
1880
1863
  },
1881
- {
1882
- "heading": {
1883
- "font": "Boska",
1884
- "slug": "boska",
1885
- "weight": 300
1886
- },
1887
- "body": {
1888
- "font": "General Sans",
1889
- "slug": "general-sans",
1890
- "weight": 300
1891
- }
1892
- },
1893
1864
  {
1894
1865
  "heading": {
1895
1866
  "font": "Sharpie",
@@ -2130,18 +2101,6 @@
2130
2101
  "weight": 300
2131
2102
  }
2132
2103
  },
2133
- {
2134
- "heading": {
2135
- "font": "Boska",
2136
- "slug": "boska",
2137
- "weight": 500
2138
- },
2139
- "body": {
2140
- "font": "Switzer",
2141
- "slug": "switzer",
2142
- "weight": 400
2143
- }
2144
- },
2145
2104
  {
2146
2105
  "heading": {
2147
2106
  "font": "Bevellier",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindstudio-ai/remy",
3
- "version": "0.1.205",
3
+ "version": "0.1.207",
4
4
  "description": "Remy coding agent",
5
5
  "repository": {
6
6
  "type": "git",