@kitschpatrol/tldraw-cli 4.6.28 → 4.6.29

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/bin/cli.js CHANGED
@@ -23659,7 +23659,7 @@ import yargs from "yargs";
23659
23659
  import { hideBin } from "yargs/helpers";
23660
23660
 
23661
23661
  // package.json
23662
- var version = "4.6.28";
23662
+ var version = "4.6.29";
23663
23663
 
23664
23664
  // node_modules/.pnpm/nanoid@5.0.9/node_modules/nanoid/index.js
23665
23665
  import { webcrypto as crypto } from "node:crypto";
@@ -41538,7 +41538,7 @@ await yargsInstance.scriptName("tldraw").command("$0 <command>", "CLI tools for
41538
41538
  type: "string"
41539
41539
  }).option("format", {
41540
41540
  alias: "f",
41541
- choices: ["png", "svg", "json", "tldr"],
41541
+ choices: ["png", "svg", "tldr"],
41542
41542
  default: "svg",
41543
41543
  describe: "Output image format.",
41544
41544
  type: "string"
package/dist/.DS_Store ADDED
Binary file
@@ -5,7 +5,7 @@ declare global {
5
5
  getImage: (options: {
6
6
  background?: boolean;
7
7
  darkMode?: boolean;
8
- format: 'json' | 'png' | 'svg';
8
+ format: 'png' | 'svg';
9
9
  padding?: number;
10
10
  scale?: number;
11
11
  }) => Promise<string>;
@@ -1,4 +1,4 @@
1
- export type TldrawFormat = 'json' | 'png' | 'svg' | 'tldr';
1
+ export type TldrawFormat = 'png' | 'svg' | 'tldr';
2
2
  export type TldrawToImageOptions = {
3
3
  dark?: boolean;
4
4
  format?: TldrawFormat;