@zapier/zapier-sdk-cli 0.18.3 → 0.19.0
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/CHANGELOG.md +12 -0
- package/README.md +31 -28
- package/dist/cli.cjs +2 -2
- package/dist/cli.mjs +2 -2
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/dist/package.json +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @zapier/zapier-sdk-cli
|
|
2
2
|
|
|
3
|
+
## 0.19.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 4dd27eb: Add isExpired parameter to listAuthentications for filtering authentications by expiration status.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [4dd27eb]
|
|
12
|
+
- @zapier/zapier-sdk@1.1.0
|
|
13
|
+
- @zapier/zapier-sdk-mcp@0.4.15
|
|
14
|
+
|
|
3
15
|
## 0.18.3
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -287,18 +287,19 @@ Find the first authentication matching the criteria
|
|
|
287
287
|
|
|
288
288
|
**Options:**
|
|
289
289
|
|
|
290
|
-
| Option | Type
|
|
291
|
-
| -------------- |
|
|
292
|
-
| `--app-key` | `string`
|
|
293
|
-
| `--search` | `string`
|
|
294
|
-
| `--title` | `string`
|
|
295
|
-
| `--account-id` | `string`
|
|
296
|
-
| `--owner` | `string`
|
|
290
|
+
| Option | Type | Required | Default | Possible Values | Description |
|
|
291
|
+
| -------------- | --------- | -------- | ------- | --------------- | ---------------------------------------------------------------------------------- |
|
|
292
|
+
| `--app-key` | `string` | ❌ | — | — | App key of authentications to list (e.g., 'SlackCLIAPI' or slug like 'github') |
|
|
293
|
+
| `--search` | `string` | ❌ | — | — | Search term to filter authentications by title |
|
|
294
|
+
| `--title` | `string` | ❌ | — | — | Filter authentications by exact title match (searches first, then filters locally) |
|
|
295
|
+
| `--account-id` | `string` | ❌ | — | — | Filter authentications by account ID |
|
|
296
|
+
| `--owner` | `string` | ❌ | — | — | Filter by owner, 'me' for your own authentications or a specific user ID |
|
|
297
|
+
| `--is-expired` | `boolean` | ❌ | — | — | Filter by expired status (true = expired only, false = non-expired only) |
|
|
297
298
|
|
|
298
299
|
**Usage:**
|
|
299
300
|
|
|
300
301
|
```bash
|
|
301
|
-
npx zapier-sdk find-first-authentication [--app-key] [--search] [--title] [--account-id] [--owner]
|
|
302
|
+
npx zapier-sdk find-first-authentication [--app-key] [--search] [--title] [--account-id] [--owner] [--is-expired]
|
|
302
303
|
```
|
|
303
304
|
|
|
304
305
|
#### `find-unique-authentication`
|
|
@@ -307,18 +308,19 @@ Find a unique authentication matching the criteria
|
|
|
307
308
|
|
|
308
309
|
**Options:**
|
|
309
310
|
|
|
310
|
-
| Option | Type
|
|
311
|
-
| -------------- |
|
|
312
|
-
| `--app-key` | `string`
|
|
313
|
-
| `--search` | `string`
|
|
314
|
-
| `--title` | `string`
|
|
315
|
-
| `--account-id` | `string`
|
|
316
|
-
| `--owner` | `string`
|
|
311
|
+
| Option | Type | Required | Default | Possible Values | Description |
|
|
312
|
+
| -------------- | --------- | -------- | ------- | --------------- | ---------------------------------------------------------------------------------- |
|
|
313
|
+
| `--app-key` | `string` | ❌ | — | — | App key of authentications to list (e.g., 'SlackCLIAPI' or slug like 'github') |
|
|
314
|
+
| `--search` | `string` | ❌ | — | — | Search term to filter authentications by title |
|
|
315
|
+
| `--title` | `string` | ❌ | — | — | Filter authentications by exact title match (searches first, then filters locally) |
|
|
316
|
+
| `--account-id` | `string` | ❌ | — | — | Filter authentications by account ID |
|
|
317
|
+
| `--owner` | `string` | ❌ | — | — | Filter by owner, 'me' for your own authentications or a specific user ID |
|
|
318
|
+
| `--is-expired` | `boolean` | ❌ | — | — | Filter by expired status (true = expired only, false = non-expired only) |
|
|
317
319
|
|
|
318
320
|
**Usage:**
|
|
319
321
|
|
|
320
322
|
```bash
|
|
321
|
-
npx zapier-sdk find-unique-authentication [--app-key] [--search] [--title] [--account-id] [--owner]
|
|
323
|
+
npx zapier-sdk find-unique-authentication [--app-key] [--search] [--title] [--account-id] [--owner] [--is-expired]
|
|
322
324
|
```
|
|
323
325
|
|
|
324
326
|
#### `get-authentication`
|
|
@@ -343,22 +345,23 @@ List available authentications with optional filtering
|
|
|
343
345
|
|
|
344
346
|
**Options:**
|
|
345
347
|
|
|
346
|
-
| Option | Type
|
|
347
|
-
| ---------------------- |
|
|
348
|
-
| `--app-key` | `string`
|
|
349
|
-
| `--authentication-ids` | `array`
|
|
350
|
-
| `--search` | `string`
|
|
351
|
-
| `--title` | `string`
|
|
352
|
-
| `--account-id` | `string`
|
|
353
|
-
| `--owner` | `string`
|
|
354
|
-
| `--
|
|
355
|
-
| `--
|
|
356
|
-
| `--
|
|
348
|
+
| Option | Type | Required | Default | Possible Values | Description |
|
|
349
|
+
| ---------------------- | --------- | -------- | ------- | --------------- | ---------------------------------------------------------------------------------- |
|
|
350
|
+
| `--app-key` | `string` | ❌ | — | — | App key of authentications to list (e.g., 'SlackCLIAPI' or slug like 'github') |
|
|
351
|
+
| `--authentication-ids` | `array` | ❌ | — | — | List of authentication IDs to filter by |
|
|
352
|
+
| `--search` | `string` | ❌ | — | — | Search term to filter authentications by title |
|
|
353
|
+
| `--title` | `string` | ❌ | — | — | Filter authentications by exact title match (searches first, then filters locally) |
|
|
354
|
+
| `--account-id` | `string` | ❌ | — | — | Filter authentications by account ID |
|
|
355
|
+
| `--owner` | `string` | ❌ | — | — | Filter by owner, 'me' for your own authentications or a specific user ID |
|
|
356
|
+
| `--is-expired` | `boolean` | ❌ | — | — | Filter by expired status (true = expired only, false = non-expired only) |
|
|
357
|
+
| `--page-size` | `number` | ❌ | — | — | Number of authentications per page |
|
|
358
|
+
| `--max-items` | `number` | ❌ | — | — | Maximum total items to return across all pages |
|
|
359
|
+
| `--cursor` | `string` | ❌ | — | — | Cursor to start from |
|
|
357
360
|
|
|
358
361
|
**Usage:**
|
|
359
362
|
|
|
360
363
|
```bash
|
|
361
|
-
npx zapier-sdk list-authentications [--app-key] [--authentication-ids] [--search] [--title] [--account-id] [--owner] [--page-size] [--max-items] [--cursor]
|
|
364
|
+
npx zapier-sdk list-authentications [--app-key] [--authentication-ids] [--search] [--title] [--account-id] [--owner] [--is-expired] [--page-size] [--max-items] [--cursor]
|
|
362
365
|
```
|
|
363
366
|
|
|
364
367
|
### HTTP Requests
|
package/dist/cli.cjs
CHANGED
|
@@ -1656,7 +1656,7 @@ var LoginSchema = zod.z.object({
|
|
|
1656
1656
|
|
|
1657
1657
|
// package.json
|
|
1658
1658
|
var package_default = {
|
|
1659
|
-
version: "0.
|
|
1659
|
+
version: "0.19.0"};
|
|
1660
1660
|
|
|
1661
1661
|
// src/telemetry/builders.ts
|
|
1662
1662
|
function createCliBaseEvent(context = {}) {
|
|
@@ -2937,7 +2937,7 @@ function createZapierCliSdk(options = {}) {
|
|
|
2937
2937
|
// package.json with { type: 'json' }
|
|
2938
2938
|
var package_default2 = {
|
|
2939
2939
|
name: "@zapier/zapier-sdk-cli",
|
|
2940
|
-
version: "0.
|
|
2940
|
+
version: "0.19.0"};
|
|
2941
2941
|
function detectPackageManager(cwd = process.cwd()) {
|
|
2942
2942
|
const ua = process.env.npm_config_user_agent;
|
|
2943
2943
|
if (ua) {
|
package/dist/cli.mjs
CHANGED
|
@@ -1620,7 +1620,7 @@ var LoginSchema = z.object({
|
|
|
1620
1620
|
|
|
1621
1621
|
// package.json
|
|
1622
1622
|
var package_default = {
|
|
1623
|
-
version: "0.
|
|
1623
|
+
version: "0.19.0"};
|
|
1624
1624
|
|
|
1625
1625
|
// src/telemetry/builders.ts
|
|
1626
1626
|
function createCliBaseEvent(context = {}) {
|
|
@@ -2901,7 +2901,7 @@ function createZapierCliSdk(options = {}) {
|
|
|
2901
2901
|
// package.json with { type: 'json' }
|
|
2902
2902
|
var package_default2 = {
|
|
2903
2903
|
name: "@zapier/zapier-sdk-cli",
|
|
2904
|
-
version: "0.
|
|
2904
|
+
version: "0.19.0"};
|
|
2905
2905
|
function detectPackageManager(cwd = process.cwd()) {
|
|
2906
2906
|
const ua = process.env.npm_config_user_agent;
|
|
2907
2907
|
if (ua) {
|
package/dist/index.cjs
CHANGED
package/dist/index.mjs
CHANGED