@thisispamela/cli 1.0.4 → 1.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/README.md ADDED
@@ -0,0 +1,152 @@
1
+ # @thisispamela/cli
2
+
3
+ Command-line interface for the Pamela Enterprise Voice API. Make calls, check status, and manage your API from the terminal.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install -g @thisispamela/cli
9
+ ```
10
+
11
+ Or use with `npx`:
12
+
13
+ ```bash
14
+ npx @thisispamela/cli <command>
15
+ ```
16
+
17
+ ## Setup
18
+
19
+ Set your API key as an environment variable:
20
+
21
+ ```bash
22
+ export PAMELA_API_KEY=pk_live_your_api_key_here
23
+ ```
24
+
25
+ Or pass it with the `--api-key` flag on each command.
26
+
27
+ ## Commands
28
+
29
+ ### Create a Call
30
+
31
+ ```bash
32
+ thisispamela create-call \
33
+ --to "+15551234567" \
34
+ --task "Schedule a demo for tomorrow at 2pm" \
35
+ --voice "auto" \
36
+ --agent-name "Pamela" \
37
+ --caller-name "Acme Corp"
38
+ ```
39
+
40
+ **Options:**
41
+ - `--to` (required): Phone number in E.164 format
42
+ - `--task` (required): Task description for the call
43
+ - `--country`: ISO country code (optional)
44
+ - `--locale`: Locale string (optional, e.g., "en-US")
45
+ - `--voice`: Voice preference `"male" | "female" | "auto"` (optional)
46
+ - `--agent-name`: Agent name override (optional)
47
+ - `--caller-name`: Name of who the agent is calling on behalf of (optional)
48
+ - `--max-duration-seconds`: Maximum call duration (optional, default: 299)
49
+
50
+ ### Get Call Status
51
+
52
+ ```bash
53
+ thisispamela get-call --call-id call_abc123def456
54
+ ```
55
+
56
+ ### List Calls
57
+
58
+ ```bash
59
+ thisispamela list-calls \
60
+ --limit 10 \
61
+ --status completed \
62
+ --start-date 2024-01-01 \
63
+ --end-date 2024-01-31
64
+ ```
65
+
66
+ **Options:**
67
+ - `--limit`: Maximum number of calls to return (default: 50)
68
+ - `--offset`: Pagination offset (default: 0)
69
+ - `--status`: Filter by status (`queued`, `ringing`, `in_progress`, `completed`, `failed`, `cancelled`)
70
+ - `--start-date`: Filter calls from this date (YYYY-MM-DD)
71
+ - `--end-date`: Filter calls until this date (YYYY-MM-DD)
72
+
73
+ ### Cancel a Call
74
+
75
+ ```bash
76
+ thisispamela cancel-call --call-id call_abc123def456
77
+ ```
78
+
79
+ ### Hangup a Call
80
+
81
+ ```bash
82
+ thisispamela hangup-call --call-id call_abc123def456
83
+ ```
84
+
85
+ ## Global Options
86
+
87
+ All commands support:
88
+
89
+ - `--api-key <key>`: Pamela API key (falls back to `PAMELA_API_KEY` env var)
90
+ - `--base-url <url>`: Custom API base URL (default: `https://api.thisispamela.com`)
91
+
92
+ ## Examples
93
+
94
+ ### Quick Call
95
+
96
+ ```bash
97
+ export PAMELA_API_KEY=pk_live_xxx
98
+ thisispamela create-call --to "+15551234567" --task "Remind about meeting"
99
+ ```
100
+
101
+ ### Check Call Status
102
+
103
+ ```bash
104
+ thisispamela get-call --call-id call_abc123
105
+ ```
106
+
107
+ ### List Today's Calls
108
+
109
+ ```bash
110
+ thisispamela list-calls --start-date $(date +%Y-%m-%d) --status completed
111
+ ```
112
+
113
+ ### Cancel In-Progress Call
114
+
115
+ ```bash
116
+ thisispamela cancel-call --call-id call_xyz789
117
+ ```
118
+
119
+ ## Output Format
120
+
121
+ All commands output JSON for easy parsing and integration with scripts:
122
+
123
+ ```bash
124
+ # Create call
125
+ thisispamela create-call --to "+15551234567" --task "Test"
126
+ # Output: {"id": "call_abc123", "status": "queued", ...}
127
+
128
+ # Get call
129
+ thisispamela get-call --call-id call_abc123
130
+ # Output: {"id": "call_abc123", "status": "completed", "transcript": [...], ...}
131
+ ```
132
+
133
+ ## Error Handling
134
+
135
+ Errors are output as JSON to stderr:
136
+
137
+ ```json
138
+ {
139
+ "error": {
140
+ "name": "AuthenticationError",
141
+ "message": "Invalid API key"
142
+ }
143
+ }
144
+ ```
145
+
146
+ ## Getting API Keys
147
+
148
+ See the [JavaScript SDK README](../javascript/README.md#getting-api-keys) for instructions on obtaining and managing API keys.
149
+
150
+ ## License
151
+
152
+ MIT
package/dist/index.d.ts CHANGED
@@ -1,2 +1 @@
1
1
  #!/usr/bin/env node
2
- export {};
package/dist/index.js CHANGED
@@ -1,140 +1,113 @@
1
1
  #!/usr/bin/env node
2
- "use strict";
3
- Object.defineProperty(exports, "__esModule", { value: true });
4
- const commander_1 = require("commander");
5
- const sdk_1 = require("@thisispamela/sdk");
6
- const outputJson = (data) => {
7
- process.stdout.write(`${JSON.stringify(data, null, 2)}\n`);
2
+
3
+ // src/index.ts
4
+ import { Command } from "commander";
5
+ import { PamelaClient } from "@thisispamela/sdk";
6
+ var outputJson = (data) => {
7
+ process.stdout.write(`${JSON.stringify(data, null, 2)}
8
+ `);
8
9
  };
9
- const outputError = (error) => {
10
- const message = error instanceof Error ? error.message : String(error);
11
- const name = error instanceof Error ? error.name : 'Error';
12
- process.stderr.write(`${JSON.stringify({ error: { name, message } }, null, 2)}\n`);
10
+ var outputError = (error) => {
11
+ const message = error instanceof Error ? error.message : String(error);
12
+ const name = error instanceof Error ? error.name : "Error";
13
+ process.stderr.write(
14
+ `${JSON.stringify({ error: { name, message } }, null, 2)}
15
+ `
16
+ );
13
17
  };
14
- const parseNumber = (value, label) => {
15
- const parsed = Number(value);
16
- if (!Number.isFinite(parsed)) {
17
- throw new Error(`${label} must be a valid number`);
18
- }
19
- return parsed;
18
+ var parseNumber = (value, label) => {
19
+ const parsed = Number(value);
20
+ if (!Number.isFinite(parsed)) {
21
+ throw new Error(`${label} must be a valid number`);
22
+ }
23
+ return parsed;
20
24
  };
21
- const getClient = (options) => {
22
- const apiKey = options.apiKey || process.env.PAMELA_API_KEY;
23
- if (!apiKey) {
24
- throw new Error('Missing API key. Provide --api-key or set PAMELA_API_KEY.');
25
- }
26
- return new sdk_1.PamelaClient({
27
- apiKey,
28
- baseUrl: options.baseUrl,
29
- });
25
+ var getClient = (options) => {
26
+ const apiKey = options.apiKey || process.env.PAMELA_API_KEY;
27
+ if (!apiKey) {
28
+ throw new Error("Missing API key. Provide --api-key or set PAMELA_API_KEY.");
29
+ }
30
+ return new PamelaClient({
31
+ apiKey,
32
+ baseUrl: options.baseUrl
33
+ });
30
34
  };
31
- const program = new commander_1.Command();
32
- program
33
- .name('thisispamela')
34
- .description('Pamela Voice API CLI')
35
- .option('--api-key <key>', 'Pamela API key (falls back to PAMELA_API_KEY)')
36
- .option('--base-url <url>', 'Pamela API base URL', 'https://api.thisispamela.com');
37
- program
38
- .command('create-call')
39
- .description('Create a new call')
40
- .requiredOption('--to <e164>', 'Destination phone number (E.164)')
41
- .requiredOption('--task <text>', 'Task for the agent to perform')
42
- .option('--voice <voice>', 'Voice selection (male, female, auto)')
43
- .option('--agent-name <name>', 'Agent display name')
44
- .option('--locale <locale>', 'Locale, e.g. en-US')
45
- .option('--max-duration-seconds <number>', 'Maximum call duration in seconds', (value) => parseNumber(value, 'max-duration-seconds'))
46
- .option('--caller-name <name>', 'Caller display name')
47
- .action(async (options) => {
48
- try {
49
- const client = getClient(program.opts());
50
- const payload = {
51
- to: options.to,
52
- task: options.task,
53
- };
54
- if (options.voice)
55
- payload.voice = options.voice;
56
- if (options.agentName)
57
- payload.agent_name = options.agentName;
58
- if (options.locale)
59
- payload.locale = options.locale;
60
- if (options.maxDurationSeconds !== undefined) {
61
- payload.max_duration_seconds = options.maxDurationSeconds;
62
- }
63
- if (options.callerName)
64
- payload.caller_name = options.callerName;
65
- const response = await client.createCall(payload);
66
- outputJson(response);
67
- }
68
- catch (error) {
69
- outputError(error);
70
- process.exitCode = 1;
35
+ var program = new Command();
36
+ program.name("thisispamela").description("Pamela Voice API CLI").option("--api-key <key>", "Pamela API key (falls back to PAMELA_API_KEY)").option("--base-url <url>", "Pamela API base URL", "https://api.thisispamela.com");
37
+ program.command("create-call").description("Create a new call").requiredOption("--to <e164>", "Destination phone number (E.164)").requiredOption("--task <text>", "Task for the agent to perform").option("--voice <voice>", "Voice selection (male, female, auto)").option("--agent-name <name>", "Agent display name").option("--locale <locale>", "Locale, e.g. en-US").option(
38
+ "--max-duration-seconds <number>",
39
+ "Maximum call duration in seconds",
40
+ (value) => parseNumber(value, "max-duration-seconds")
41
+ ).option("--caller-name <name>", "Caller display name").action(async (options) => {
42
+ try {
43
+ const client = getClient(program.opts());
44
+ const payload = {
45
+ to: options.to,
46
+ task: options.task
47
+ };
48
+ if (options.voice) payload.voice = options.voice;
49
+ if (options.agentName) payload.agent_name = options.agentName;
50
+ if (options.locale) payload.locale = options.locale;
51
+ if (options.maxDurationSeconds !== void 0) {
52
+ payload.max_duration_seconds = options.maxDurationSeconds;
71
53
  }
54
+ if (options.callerName) payload.caller_name = options.callerName;
55
+ const response = await client.createCall(payload);
56
+ outputJson(response);
57
+ } catch (error) {
58
+ outputError(error);
59
+ process.exitCode = 1;
60
+ }
72
61
  });
73
- program
74
- .command('get-call')
75
- .description('Get call status and details')
76
- .argument('<callId>', 'Call ID')
77
- .action(async (callId) => {
78
- try {
79
- const client = getClient(program.opts());
80
- const response = await client.getCall(callId);
81
- outputJson(response);
82
- }
83
- catch (error) {
84
- outputError(error);
85
- process.exitCode = 1;
86
- }
62
+ program.command("get-call").description("Get call status and details").argument("<callId>", "Call ID").action(async (callId) => {
63
+ try {
64
+ const client = getClient(program.opts());
65
+ const response = await client.getCall(callId);
66
+ outputJson(response);
67
+ } catch (error) {
68
+ outputError(error);
69
+ process.exitCode = 1;
70
+ }
87
71
  });
88
- program
89
- .command('list-calls')
90
- .description('List calls')
91
- .option('--status <status>', 'Filter by status')
92
- .option('--limit <number>', 'Limit number of results', (value) => parseNumber(value, 'limit'))
93
- .action(async (options) => {
94
- try {
95
- const client = getClient(program.opts());
96
- const response = await client.listCalls({
97
- status: options.status,
98
- limit: options.limit,
99
- });
100
- outputJson(response);
101
- }
102
- catch (error) {
103
- outputError(error);
104
- process.exitCode = 1;
105
- }
72
+ program.command("list-calls").description("List calls").option("--status <status>", "Filter by status").option(
73
+ "--limit <number>",
74
+ "Limit number of results",
75
+ (value) => parseNumber(value, "limit")
76
+ ).action(async (options) => {
77
+ try {
78
+ const client = getClient(program.opts());
79
+ const response = await client.listCalls({
80
+ status: options.status,
81
+ limit: options.limit
82
+ });
83
+ outputJson(response);
84
+ } catch (error) {
85
+ outputError(error);
86
+ process.exitCode = 1;
87
+ }
106
88
  });
107
- program
108
- .command('cancel-call')
109
- .description('Cancel an in-progress call')
110
- .argument('<callId>', 'Call ID')
111
- .action(async (callId) => {
112
- try {
113
- const client = getClient(program.opts());
114
- const response = await client.cancelCall(callId);
115
- outputJson(response);
116
- }
117
- catch (error) {
118
- outputError(error);
119
- process.exitCode = 1;
120
- }
89
+ program.command("cancel-call").description("Cancel an in-progress call").argument("<callId>", "Call ID").action(async (callId) => {
90
+ try {
91
+ const client = getClient(program.opts());
92
+ const response = await client.cancelCall(callId);
93
+ outputJson(response);
94
+ } catch (error) {
95
+ outputError(error);
96
+ process.exitCode = 1;
97
+ }
121
98
  });
122
- program
123
- .command('hangup-call')
124
- .description('Force hangup an in-progress call')
125
- .argument('<callId>', 'Call ID')
126
- .action(async (callId) => {
127
- try {
128
- const client = getClient(program.opts());
129
- const response = await client.hangupCall(callId);
130
- outputJson(response);
131
- }
132
- catch (error) {
133
- outputError(error);
134
- process.exitCode = 1;
135
- }
99
+ program.command("hangup-call").description("Force hangup an in-progress call").argument("<callId>", "Call ID").action(async (callId) => {
100
+ try {
101
+ const client = getClient(program.opts());
102
+ const response = await client.hangupCall(callId);
103
+ outputJson(response);
104
+ } catch (error) {
105
+ outputError(error);
106
+ process.exitCode = 1;
107
+ }
136
108
  });
137
109
  program.parseAsync(process.argv).catch((error) => {
138
- outputError(error);
139
- process.exit(1);
110
+ outputError(error);
111
+ process.exit(1);
140
112
  });
113
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["#!/usr/bin/env node\nimport { Command } from 'commander';\nimport { PamelaClient } from '@thisispamela/sdk';\n\ntype GlobalOptions = {\n apiKey?: string;\n baseUrl?: string;\n};\n\nconst outputJson = (data: unknown) => {\n process.stdout.write(`${JSON.stringify(data, null, 2)}\\n`);\n};\n\nconst outputError = (error: unknown) => {\n const message = error instanceof Error ? error.message : String(error);\n const name = error instanceof Error ? error.name : 'Error';\n process.stderr.write(\n `${JSON.stringify({ error: { name, message } }, null, 2)}\\n`\n );\n};\n\nconst parseNumber = (value: string, label: string) => {\n const parsed = Number(value);\n if (!Number.isFinite(parsed)) {\n throw new Error(`${label} must be a valid number`);\n }\n return parsed;\n};\n\nconst getClient = (options: GlobalOptions) => {\n const apiKey = options.apiKey || process.env.PAMELA_API_KEY;\n if (!apiKey) {\n throw new Error('Missing API key. Provide --api-key or set PAMELA_API_KEY.');\n }\n return new PamelaClient({\n apiKey,\n baseUrl: options.baseUrl,\n });\n};\n\nconst program = new Command();\n\nprogram\n .name('thisispamela')\n .description('Pamela Voice API CLI')\n .option('--api-key <key>', 'Pamela API key (falls back to PAMELA_API_KEY)')\n .option('--base-url <url>', 'Pamela API base URL', 'https://api.thisispamela.com');\n\nprogram\n .command('create-call')\n .description('Create a new call')\n .requiredOption('--to <e164>', 'Destination phone number (E.164)')\n .requiredOption('--task <text>', 'Task for the agent to perform')\n .option('--voice <voice>', 'Voice selection (male, female, auto)')\n .option('--agent-name <name>', 'Agent display name')\n .option('--locale <locale>', 'Locale, e.g. en-US')\n .option(\n '--max-duration-seconds <number>',\n 'Maximum call duration in seconds',\n (value) => parseNumber(value, 'max-duration-seconds')\n )\n .option('--caller-name <name>', 'Caller display name')\n .action(async (options) => {\n try {\n const client = getClient(program.opts<GlobalOptions>());\n const payload: Record<string, unknown> = {\n to: options.to,\n task: options.task,\n };\n\n if (options.voice) payload.voice = options.voice;\n if (options.agentName) payload.agent_name = options.agentName;\n if (options.locale) payload.locale = options.locale;\n if (options.maxDurationSeconds !== undefined) {\n payload.max_duration_seconds = options.maxDurationSeconds;\n }\n if (options.callerName) payload.caller_name = options.callerName;\n\n const response = await client.createCall(payload as any);\n outputJson(response);\n } catch (error) {\n outputError(error);\n process.exitCode = 1;\n }\n });\n\nprogram\n .command('get-call')\n .description('Get call status and details')\n .argument('<callId>', 'Call ID')\n .action(async (callId: string) => {\n try {\n const client = getClient(program.opts<GlobalOptions>());\n const response = await client.getCall(callId);\n outputJson(response);\n } catch (error) {\n outputError(error);\n process.exitCode = 1;\n }\n });\n\nprogram\n .command('list-calls')\n .description('List calls')\n .option('--status <status>', 'Filter by status')\n .option('--limit <number>', 'Limit number of results', (value) =>\n parseNumber(value, 'limit')\n )\n .action(async (options) => {\n try {\n const client = getClient(program.opts<GlobalOptions>());\n const response = await client.listCalls({\n status: options.status,\n limit: options.limit,\n });\n outputJson(response);\n } catch (error) {\n outputError(error);\n process.exitCode = 1;\n }\n });\n\nprogram\n .command('cancel-call')\n .description('Cancel an in-progress call')\n .argument('<callId>', 'Call ID')\n .action(async (callId: string) => {\n try {\n const client = getClient(program.opts<GlobalOptions>());\n const response = await client.cancelCall(callId);\n outputJson(response);\n } catch (error) {\n outputError(error);\n process.exitCode = 1;\n }\n });\n\nprogram\n .command('hangup-call')\n .description('Force hangup an in-progress call')\n .argument('<callId>', 'Call ID')\n .action(async (callId: string) => {\n try {\n const client = getClient(program.opts<GlobalOptions>());\n const response = await client.hangupCall(callId);\n outputJson(response);\n } catch (error) {\n outputError(error);\n process.exitCode = 1;\n }\n });\n\nprogram.parseAsync(process.argv).catch((error) => {\n outputError(error);\n process.exit(1);\n});\n"],"mappings":";;;AACA,SAAS,eAAe;AACxB,SAAS,oBAAoB;AAO7B,IAAM,aAAa,CAAC,SAAkB;AACpC,UAAQ,OAAO,MAAM,GAAG,KAAK,UAAU,MAAM,MAAM,CAAC,CAAC;AAAA,CAAI;AAC3D;AAEA,IAAM,cAAc,CAAC,UAAmB;AACtC,QAAM,UAAU,iBAAiB,QAAQ,MAAM,UAAU,OAAO,KAAK;AACrE,QAAM,OAAO,iBAAiB,QAAQ,MAAM,OAAO;AACnD,UAAQ,OAAO;AAAA,IACb,GAAG,KAAK,UAAU,EAAE,OAAO,EAAE,MAAM,QAAQ,EAAE,GAAG,MAAM,CAAC,CAAC;AAAA;AAAA,EAC1D;AACF;AAEA,IAAM,cAAc,CAAC,OAAe,UAAkB;AACpD,QAAM,SAAS,OAAO,KAAK;AAC3B,MAAI,CAAC,OAAO,SAAS,MAAM,GAAG;AAC5B,UAAM,IAAI,MAAM,GAAG,KAAK,yBAAyB;AAAA,EACnD;AACA,SAAO;AACT;AAEA,IAAM,YAAY,CAAC,YAA2B;AAC5C,QAAM,SAAS,QAAQ,UAAU,QAAQ,IAAI;AAC7C,MAAI,CAAC,QAAQ;AACX,UAAM,IAAI,MAAM,2DAA2D;AAAA,EAC7E;AACA,SAAO,IAAI,aAAa;AAAA,IACtB;AAAA,IACA,SAAS,QAAQ;AAAA,EACnB,CAAC;AACH;AAEA,IAAM,UAAU,IAAI,QAAQ;AAE5B,QACG,KAAK,cAAc,EACnB,YAAY,sBAAsB,EAClC,OAAO,mBAAmB,+CAA+C,EACzE,OAAO,oBAAoB,uBAAuB,8BAA8B;AAEnF,QACG,QAAQ,aAAa,EACrB,YAAY,mBAAmB,EAC/B,eAAe,eAAe,kCAAkC,EAChE,eAAe,iBAAiB,+BAA+B,EAC/D,OAAO,mBAAmB,sCAAsC,EAChE,OAAO,uBAAuB,oBAAoB,EAClD,OAAO,qBAAqB,oBAAoB,EAChD;AAAA,EACC;AAAA,EACA;AAAA,EACA,CAAC,UAAU,YAAY,OAAO,sBAAsB;AACtD,EACC,OAAO,wBAAwB,qBAAqB,EACpD,OAAO,OAAO,YAAY;AACzB,MAAI;AACF,UAAM,SAAS,UAAU,QAAQ,KAAoB,CAAC;AACtD,UAAM,UAAmC;AAAA,MACvC,IAAI,QAAQ;AAAA,MACZ,MAAM,QAAQ;AAAA,IAChB;AAEA,QAAI,QAAQ,MAAO,SAAQ,QAAQ,QAAQ;AAC3C,QAAI,QAAQ,UAAW,SAAQ,aAAa,QAAQ;AACpD,QAAI,QAAQ,OAAQ,SAAQ,SAAS,QAAQ;AAC7C,QAAI,QAAQ,uBAAuB,QAAW;AAC5C,cAAQ,uBAAuB,QAAQ;AAAA,IACzC;AACA,QAAI,QAAQ,WAAY,SAAQ,cAAc,QAAQ;AAEtD,UAAM,WAAW,MAAM,OAAO,WAAW,OAAc;AACvD,eAAW,QAAQ;AAAA,EACrB,SAAS,OAAO;AACd,gBAAY,KAAK;AACjB,YAAQ,WAAW;AAAA,EACrB;AACF,CAAC;AAEH,QACG,QAAQ,UAAU,EAClB,YAAY,6BAA6B,EACzC,SAAS,YAAY,SAAS,EAC9B,OAAO,OAAO,WAAmB;AAChC,MAAI;AACF,UAAM,SAAS,UAAU,QAAQ,KAAoB,CAAC;AACtD,UAAM,WAAW,MAAM,OAAO,QAAQ,MAAM;AAC5C,eAAW,QAAQ;AAAA,EACrB,SAAS,OAAO;AACd,gBAAY,KAAK;AACjB,YAAQ,WAAW;AAAA,EACrB;AACF,CAAC;AAEH,QACG,QAAQ,YAAY,EACpB,YAAY,YAAY,EACxB,OAAO,qBAAqB,kBAAkB,EAC9C;AAAA,EAAO;AAAA,EAAoB;AAAA,EAA2B,CAAC,UACtD,YAAY,OAAO,OAAO;AAC5B,EACC,OAAO,OAAO,YAAY;AACzB,MAAI;AACF,UAAM,SAAS,UAAU,QAAQ,KAAoB,CAAC;AACtD,UAAM,WAAW,MAAM,OAAO,UAAU;AAAA,MACtC,QAAQ,QAAQ;AAAA,MAChB,OAAO,QAAQ;AAAA,IACjB,CAAC;AACD,eAAW,QAAQ;AAAA,EACrB,SAAS,OAAO;AACd,gBAAY,KAAK;AACjB,YAAQ,WAAW;AAAA,EACrB;AACF,CAAC;AAEH,QACG,QAAQ,aAAa,EACrB,YAAY,4BAA4B,EACxC,SAAS,YAAY,SAAS,EAC9B,OAAO,OAAO,WAAmB;AAChC,MAAI;AACF,UAAM,SAAS,UAAU,QAAQ,KAAoB,CAAC;AACtD,UAAM,WAAW,MAAM,OAAO,WAAW,MAAM;AAC/C,eAAW,QAAQ;AAAA,EACrB,SAAS,OAAO;AACd,gBAAY,KAAK;AACjB,YAAQ,WAAW;AAAA,EACrB;AACF,CAAC;AAEH,QACG,QAAQ,aAAa,EACrB,YAAY,kCAAkC,EAC9C,SAAS,YAAY,SAAS,EAC9B,OAAO,OAAO,WAAmB;AAChC,MAAI;AACF,UAAM,SAAS,UAAU,QAAQ,KAAoB,CAAC;AACtD,UAAM,WAAW,MAAM,OAAO,WAAW,MAAM;AAC/C,eAAW,QAAQ;AAAA,EACrB,SAAS,OAAO;AACd,gBAAY,KAAK;AACjB,YAAQ,WAAW;AAAA,EACrB;AACF,CAAC;AAEH,QAAQ,WAAW,QAAQ,IAAI,EAAE,MAAM,CAAC,UAAU;AAChD,cAAY,KAAK;AACjB,UAAQ,KAAK,CAAC;AAChB,CAAC;","names":[]}
package/package.json CHANGED
@@ -1,14 +1,22 @@
1
1
  {
2
2
  "name": "@thisispamela/cli",
3
- "version": "1.0.4",
3
+ "version": "1.1.1",
4
4
  "description": "Pamela Enterprise Voice API CLI",
5
+ "type": "module",
5
6
  "main": "dist/index.js",
6
7
  "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js",
12
+ "default": "./dist/index.js"
13
+ }
14
+ },
7
15
  "bin": {
8
16
  "thisispamela": "dist/index.js"
9
17
  },
10
18
  "scripts": {
11
- "build": "tsc",
19
+ "build": "tsup",
12
20
  "prepublishOnly": "npm run build"
13
21
  },
14
22
  "keywords": [
@@ -23,11 +31,12 @@
23
31
  "author": "Pamela",
24
32
  "license": "MIT",
25
33
  "dependencies": {
26
- "@thisispamela/sdk": "^1.0.4",
34
+ "@thisispamela/sdk": "^1.1.1",
27
35
  "commander": "^14.0.3"
28
36
  },
29
37
  "devDependencies": {
30
38
  "@types/node": "^20.0.0",
39
+ "tsup": "^8.0.0",
31
40
  "typescript": "^5.0.0"
32
41
  }
33
42
  }
package/tsup.config.ts ADDED
@@ -0,0 +1,10 @@
1
+ import { defineConfig } from 'tsup';
2
+
3
+ export default defineConfig({
4
+ entry: ['src/index.ts'],
5
+ format: ['esm'],
6
+ dts: true,
7
+ clean: true,
8
+ sourcemap: true,
9
+ target: 'node18',
10
+ });