@zapier/zapier-sdk-cli 0.18.2 → 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 CHANGED
@@ -1,5 +1,26 @@
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
+
15
+ ## 0.18.3
16
+
17
+ ### Patch Changes
18
+
19
+ - e393401: Adds CLAUDE.md documentation files to the zapier-sdk and zapier-sdk-cli packages to help users get up to speed faster when using AI assistants like Claude, Cursor, etc.
20
+ - Updated dependencies [e393401]
21
+ - @zapier/zapier-sdk@1.0.3
22
+ - @zapier/zapier-sdk-mcp@0.4.14
23
+
3
24
  ## 0.18.2
4
25
 
5
26
  ### 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 | Required | Default | Possible Values | Description |
291
- | -------------- | -------- | -------- | ------- | --------------- | ----------------------------------------------------------------------------- |
292
- | `--app-key` | `string` | ❌ | — | — | App key of authentication to find (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 |
295
- | `--account-id` | `string` | ❌ | — | — | Filter by account ID |
296
- | `--owner` | `string` | ❌ | — | — | Filter by owner |
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 | Required | Default | Possible Values | Description |
311
- | -------------- | -------- | -------- | ------- | --------------- | ----------------------------------------------------------------------------- |
312
- | `--app-key` | `string` | ❌ | — | — | App key of authentication to find (e.g., 'SlackCLIAPI' or slug like 'github') |
313
- | `--search` | `string` | ❌ | — | — | Search term to filter authentications by title |
314
- | `--title` | `string` | ❌ | — | — | Filter authentications by exact title match |
315
- | `--account-id` | `string` | ❌ | — | — | Filter by account ID |
316
- | `--owner` | `string` | ❌ | — | — | Filter by owner |
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 | Required | Default | Possible Values | Description |
347
- | ---------------------- | -------- | -------- | ------- | --------------- | ---------------------------------------------------------------------------------- |
348
- | `--app-key` | `string` | ❌ | — | — | App key of authentications to list (e.g., 'SlackCLIAPI' or slug like 'github') |
349
- | `--authentication-ids` | `array` | ❌ | — | — | List of authentication IDs to filter by |
350
- | `--search` | `string` | ❌ | — | — | Search term to filter authentications by title |
351
- | `--title` | `string` | ❌ | — | — | Filter authentications by exact title match (searches first, then filters locally) |
352
- | `--account-id` | `string` | ❌ | — | — | Filter authentications by account ID |
353
- | `--owner` | `string` | ❌ | — | — | Filter by owner - 'me' for your own authentications or a specific user ID |
354
- | `--page-size` | `number` | ❌ | — | — | Number of authentications per page |
355
- | `--max-items` | `number` | ❌ | — | — | Maximum total items to return across all pages |
356
- | `--cursor` | `string` | ❌ | — | — | Cursor to start from |
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.18.2"};
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.18.2"};
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.18.2"};
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.18.2"};
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
@@ -302,7 +302,7 @@ var LoginSchema = zod.z.object({
302
302
 
303
303
  // package.json
304
304
  var package_default = {
305
- version: "0.18.2"};
305
+ version: "0.19.0"};
306
306
 
307
307
  // src/telemetry/builders.ts
308
308
  function createCliBaseEvent(context = {}) {
package/dist/index.mjs CHANGED
@@ -271,7 +271,7 @@ var LoginSchema = z.object({
271
271
 
272
272
  // package.json
273
273
  var package_default = {
274
- version: "0.18.2"};
274
+ version: "0.19.0"};
275
275
 
276
276
  // src/telemetry/builders.ts
277
277
  function createCliBaseEvent(context = {}) {
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zapier/zapier-sdk-cli",
3
- "version": "0.18.2",
3
+ "version": "0.19.0",
4
4
  "description": "Command line interface for Zapier SDK",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",