Skip to content

Commit 7463f27

Browse files
[skip ci] Release new versions
1 parent 06e2149 commit 7463f27

File tree

7 files changed

+995
-6
lines changed

7 files changed

+995
-6
lines changed

.changeset/metal-crabs-reflect.md

-5
This file was deleted.

js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@e2b/code-interpreter",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"packageManager": "pnpm@8.7.6",
55
"description": "E2B Code Interpreter - Stateful code execution",
66
"homepage": "https://e2b.dev",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,240 @@
1+
### ChartType
2+
3+
Chart types
4+
5+
#### Enumeration Members
6+
7+
| Enumeration Member | Value |
8+
| ------ | ------ |
9+
| `BAR` | `"bar"` |
10+
| `BOX_AND_WHISKER` | `"box_and_whisker"` |
11+
| `LINE` | `"line"` |
12+
| `PIE` | `"pie"` |
13+
| `SCATTER` | `"scatter"` |
14+
| `SUPERCHART` | `"superchart"` |
15+
| `UNKNOWN` | `"unknown"` |
16+
17+
***
18+
19+
### ScaleType
20+
21+
Ax scale types
22+
23+
#### Enumeration Members
24+
25+
| Enumeration Member | Value |
26+
| ------ | ------ |
27+
| `ASINH` | `"asinh"` |
28+
| `CATEGORICAL` | `"categorical"` |
29+
| `DATETIME` | `"datetime"` |
30+
| `FUNCTION` | `"function"` |
31+
| `FUNCTIONLOG` | `"functionlog"` |
32+
| `LINEAR` | `"linear"` |
33+
| `LOG` | `"log"` |
34+
| `LOGIT` | `"logit"` |
35+
| `SYMLOG` | `"symlog"` |
36+
37+
## Type Aliases
38+
39+
### BarChart
40+
41+
```ts
42+
type BarChart: Chart2D & object;
43+
```
44+
45+
#### Type declaration
46+
47+
| Name | Type |
48+
| ------ | ------ |
49+
| `elements` | `BarData`[] |
50+
| `type` | `ChartType.BAR` |
51+
52+
***
53+
54+
### BarData
55+
56+
```ts
57+
type BarData: object;
58+
```
59+
60+
#### Type declaration
61+
62+
| Name | Type |
63+
| ------ | ------ |
64+
| `group` | `string` |
65+
| `label` | `string` |
66+
| `value` | `string` |
67+
68+
***
69+
70+
### BoxAndWhiskerChart
71+
72+
```ts
73+
type BoxAndWhiskerChart: Chart2D & object;
74+
```
75+
76+
#### Type declaration
77+
78+
| Name | Type |
79+
| ------ | ------ |
80+
| `elements` | `BoxAndWhiskerData`[] |
81+
| `type` | `ChartType.BOX_AND_WHISKER` |
82+
83+
***
84+
85+
### BoxAndWhiskerData
86+
87+
```ts
88+
type BoxAndWhiskerData: object;
89+
```
90+
91+
#### Type declaration
92+
93+
| Name | Type |
94+
| ------ | ------ |
95+
| `first_quartile` | `number` |
96+
| `label` | `string` |
97+
| `max` | `number` |
98+
| `median` | `number` |
99+
| `min` | `number` |
100+
| `outliers` | `number`[] |
101+
| `third_quartile` | `number` |
102+
103+
***
104+
105+
### Chart
106+
107+
```ts
108+
type Chart: object;
109+
```
110+
111+
Represents a chart.
112+
113+
#### Type declaration
114+
115+
| Name | Type |
116+
| ------ | ------ |
117+
| `elements` | `any`[] |
118+
| `title` | `string` |
119+
| `type` | `ChartType` |
120+
121+
***
122+
123+
### ChartTypes
124+
125+
```ts
126+
type ChartTypes:
127+
| LineChart
128+
| ScatterChart
129+
| BarChart
130+
| PieChart
131+
| BoxAndWhiskerChart
132+
| SuperChart;
133+
```
134+
135+
***
136+
137+
### LineChart
138+
139+
```ts
140+
type LineChart: PointChart & object;
141+
```
142+
143+
#### Type declaration
144+
145+
| Name | Type |
146+
| ------ | ------ |
147+
| `type` | `ChartType.LINE` |
148+
149+
***
150+
151+
### PieChart
152+
153+
```ts
154+
type PieChart: Chart & object;
155+
```
156+
157+
#### Type declaration
158+
159+
| Name | Type |
160+
| ------ | ------ |
161+
| `elements` | `PieData`[] |
162+
| `type` | `ChartType.PIE` |
163+
164+
***
165+
166+
### PieData
167+
168+
```ts
169+
type PieData: object;
170+
```
171+
172+
#### Type declaration
173+
174+
| Name | Type |
175+
| ------ | ------ |
176+
| `angle` | `number` |
177+
| `label` | `string` |
178+
| `radius` | `number` |
179+
180+
***
181+
182+
### PointData
183+
184+
```ts
185+
type PointData: object;
186+
```
187+
188+
#### Type declaration
189+
190+
| Name | Type |
191+
| ------ | ------ |
192+
| `label` | `string` |
193+
| `points` | [`number` \| `string`, `number` \| `string`][] |
194+
195+
***
196+
197+
### ScatterChart
198+
199+
```ts
200+
type ScatterChart: PointChart & object;
201+
```
202+
203+
#### Type declaration
204+
205+
| Name | Type |
206+
| ------ | ------ |
207+
| `type` | `ChartType.SCATTER` |
208+
209+
***
210+
211+
### SuperChart
212+
213+
```ts
214+
type SuperChart: Chart & object;
215+
```
216+
217+
#### Type declaration
218+
219+
| Name | Type |
220+
| ------ | ------ |
221+
| `elements` | `Chart`[] |
222+
| `type` | `ChartType.SUPERCHART` |
223+
224+
## Functions
225+
226+
### deserializeChart()
227+
228+
```ts
229+
function deserializeChart(data: any): Chart
230+
```
231+
232+
#### Parameters
233+
234+
| Parameter | Type |
235+
| ------ | ------ |
236+
| `data` | `any` |
237+
238+
#### Returns
239+
240+
`Chart`
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
### DEFAULT\_TIMEOUT\_MS
2+
3+
```ts
4+
const DEFAULT_TIMEOUT_MS: 60000 = 60_000;
5+
```
6+
7+
***
8+
9+
### JUPYTER\_PORT
10+
11+
```ts
12+
const JUPYTER_PORT: 49999 = 49999;
13+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
### BarChart
2+
3+
Re-exports BarChart
4+
5+
### BarData
6+
7+
Re-exports BarData
8+
9+
### BoxAndWhiskerChart
10+
11+
Re-exports BoxAndWhiskerChart
12+
13+
### BoxAndWhiskerData
14+
15+
Re-exports BoxAndWhiskerData
16+
17+
### Chart
18+
19+
Re-exports Chart
20+
21+
### ChartType
22+
23+
Re-exports ChartType
24+
25+
### ChartTypes
26+
27+
Re-exports ChartTypes
28+
29+
### Context
30+
31+
Re-exports Context
32+
33+
### CreateCodeContextOpts
34+
35+
Re-exports CreateCodeContextOpts
36+
37+
### default
38+
39+
Renames and re-exports Sandbox
40+
41+
### Execution
42+
43+
Re-exports Execution
44+
45+
### ExecutionError
46+
47+
Re-exports ExecutionError
48+
49+
### LineChart
50+
51+
Re-exports LineChart
52+
53+
### Logs
54+
55+
Re-exports Logs
56+
57+
### MIMEType
58+
59+
Re-exports MIMEType
60+
61+
### OutputMessage
62+
63+
Re-exports OutputMessage
64+
65+
### PieChart
66+
67+
Re-exports PieChart
68+
69+
### PieData
70+
71+
Re-exports PieData
72+
73+
### PointData
74+
75+
Re-exports PointData
76+
77+
### RawData
78+
79+
Re-exports RawData
80+
81+
### Result
82+
83+
Re-exports Result
84+
85+
### RunCodeOpts
86+
87+
Re-exports RunCodeOpts
88+
89+
### Sandbox
90+
91+
Re-exports Sandbox
92+
93+
### ScaleType
94+
95+
Re-exports ScaleType
96+
97+
### ScatterChart
98+
99+
Re-exports ScatterChart
100+
101+
### SuperChart
102+
103+
Re-exports SuperChart

0 commit comments

Comments
 (0)