beatapi 0.1.0 → 0.1.1

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/cli.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { type BeatAPITask, type CreateWebhookInput, type EcommerceVideoTaskInput, type MusicVideoTaskInput, type UpdateWebhookInput } from "beatapi-client";
2
2
  import { type CredentialStore } from "./credentials.js";
3
- export declare const VERSION = "0.1.0";
3
+ export declare const VERSION = "0.1.1";
4
4
  type Writable = (text: string) => void;
5
5
  interface ClientLike {
6
6
  listWorkflows(): Promise<unknown>;
package/dist/cli.js CHANGED
@@ -4,7 +4,7 @@ import { BeatAPIClient, } from "beatapi-client";
4
4
  import { createCredentialStore, resolveApiKey, } from "./credentials.js";
5
5
  import { promptSecret as defaultPromptSecret } from "./prompt.js";
6
6
  import { persistWebhookSecret } from "./webhook-secrets.js";
7
- export const VERSION = "0.1.0";
7
+ export const VERSION = "0.1.1";
8
8
  const HELP = `BeatAPI CLI ${VERSION}
9
9
 
10
10
  Usage:
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "beatapi",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Command-line interface for BeatAPI AI music video and ecommerce video workflows.",
5
5
  "type": "module",
6
6
  "bin": {
7
- "beatapi": "./dist/bin.js"
7
+ "beatapi": "dist/bin.js"
8
8
  },
9
9
  "main": "./dist/index.js",
10
10
  "types": "./dist/index.d.ts",
@@ -19,7 +19,7 @@
19
19
  "test": "tsx --test test/*.test.ts"
20
20
  },
21
21
  "dependencies": {
22
- "beatapi-client": "0.1.0",
22
+ "beatapi-client": "0.1.1",
23
23
  "cross-keychain": "1.1.0"
24
24
  },
25
25
  "engines": {