poe-code 3.0.196 → 3.0.197

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": "poe-code",
3
- "version": "3.0.196",
3
+ "version": "3.0.197",
4
4
  "description": "CLI tool to configure Poe API for developer workflows.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -4348,6 +4348,7 @@ var ToolError = class extends Error {
4348
4348
  this.code = code;
4349
4349
  this.name = "ToolError";
4350
4350
  }
4351
+ code;
4351
4352
  };
4352
4353
 
4353
4354
  // packages/tiny-stdio-mcp-server/src/jsonrpc.ts
@@ -4497,6 +4498,8 @@ var Image = class _Image {
4497
4498
  this.base64Data = base64Data;
4498
4499
  this.mimeType = mimeType;
4499
4500
  }
4501
+ base64Data;
4502
+ mimeType;
4500
4503
  static async fromUrl(url) {
4501
4504
  const response = await fetch(url);
4502
4505
  if (!response.ok) {
@@ -4564,6 +4567,8 @@ var Audio = class _Audio {
4564
4567
  this.base64Data = base64Data;
4565
4568
  this.mimeType = mimeType;
4566
4569
  }
4570
+ base64Data;
4571
+ mimeType;
4567
4572
  static async fromUrl(url) {
4568
4573
  const response = await fetch(url);
4569
4574
  if (!response.ok) {
@@ -4627,6 +4632,10 @@ var File = class _File {
4627
4632
  this.isText = isText;
4628
4633
  this.name = name;
4629
4634
  }
4635
+ data;
4636
+ mimeType;
4637
+ isText;
4638
+ name;
4630
4639
  static async fromUrl(url) {
4631
4640
  const response = await fetch(url);
4632
4641
  if (!response.ok) {