@zapier/zapier-sdk-cli 0.17.2 → 0.17.4

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,23 @@
1
1
  # @zapier/zapier-sdk-cli
2
2
 
3
+ ## 0.17.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 3bc3cad: - Migrated `listApps` to call sdkapi endpoints directly, removing the temporary handler infrastructure. - Schemas now imported from `@zapier/zapier-sdk-core` for shared type definitions
8
+ - Updated dependencies [3bc3cad]
9
+ - @zapier/zapier-sdk@0.18.4
10
+ - @zapier/zapier-sdk-mcp@0.4.10
11
+
12
+ ## 0.17.3
13
+
14
+ ### Patch Changes
15
+
16
+ - 7c59b01: - `listAuthentications` now routes through the proxy. It also imports and overrides a shared schema from `zapier-sdk-core`
17
+ - Updated dependencies [7c59b01]
18
+ - @zapier/zapier-sdk@0.18.3
19
+ - @zapier/zapier-sdk-mcp@0.4.9
20
+
3
21
  ## 0.17.2
4
22
 
5
23
  ### Patch Changes
package/README.md CHANGED
@@ -268,7 +268,7 @@ List all available apps with optional filtering
268
268
  | Option | Type | Required | Default | Possible Values | Description |
269
269
  | ------------- | -------- | -------- | ------- | --------------- | ------------------------------------------------------------------- |
270
270
  | `--app-keys` | `array` | ❌ | — | — | Filter apps by app keys (e.g., 'SlackCLIAPI' or slug like 'github') |
271
- | `--search` | `string` | ❌ | — | — | Search for apps by name |
271
+ | `--search` | `string` | ❌ | — | — | Search term to filter apps by name |
272
272
  | `--page-size` | `number` | ❌ | — | — | Number of apps per page |
273
273
  | `--max-items` | `number` | ❌ | — | — | Maximum total items to return across all pages |
274
274
  | `--cursor` | `string` | ❌ | — | — | Cursor to start from |
@@ -343,17 +343,17 @@ List available authentications with optional filtering
343
343
 
344
344
  **Options:**
345
345
 
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 |
352
- | `--account-id` | `string` | ❌ | — | — | Filter by account ID |
353
- | `--owner` | `string, literal` | ❌ | — | — | 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 |
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 |
357
357
 
358
358
  **Usage:**
359
359
 
package/dist/cli.cjs CHANGED
@@ -1649,7 +1649,7 @@ var LoginSchema = zod.z.object({
1649
1649
 
1650
1650
  // package.json
1651
1651
  var package_default = {
1652
- version: "0.17.2"};
1652
+ version: "0.17.4"};
1653
1653
 
1654
1654
  // src/telemetry/builders.ts
1655
1655
  function createCliBaseEvent(context = {}) {
@@ -2931,7 +2931,7 @@ function createZapierCliSdk(options = {}) {
2931
2931
  // package.json with { type: 'json' }
2932
2932
  var package_default2 = {
2933
2933
  name: "@zapier/zapier-sdk-cli",
2934
- version: "0.17.2"};
2934
+ version: "0.17.4"};
2935
2935
  function detectPackageManager(cwd = process.cwd()) {
2936
2936
  const ua = process.env.npm_config_user_agent;
2937
2937
  if (ua) {
package/dist/cli.mjs CHANGED
@@ -1613,7 +1613,7 @@ var LoginSchema = z.object({
1613
1613
 
1614
1614
  // package.json
1615
1615
  var package_default = {
1616
- version: "0.17.2"};
1616
+ version: "0.17.4"};
1617
1617
 
1618
1618
  // src/telemetry/builders.ts
1619
1619
  function createCliBaseEvent(context = {}) {
@@ -2895,7 +2895,7 @@ function createZapierCliSdk(options = {}) {
2895
2895
  // package.json with { type: 'json' }
2896
2896
  var package_default2 = {
2897
2897
  name: "@zapier/zapier-sdk-cli",
2898
- version: "0.17.2"};
2898
+ version: "0.17.4"};
2899
2899
  function detectPackageManager(cwd = process.cwd()) {
2900
2900
  const ua = process.env.npm_config_user_agent;
2901
2901
  if (ua) {
package/dist/index.cjs CHANGED
@@ -295,7 +295,7 @@ var LoginSchema = zod.z.object({
295
295
 
296
296
  // package.json
297
297
  var package_default = {
298
- version: "0.17.2"};
298
+ version: "0.17.4"};
299
299
 
300
300
  // src/telemetry/builders.ts
301
301
  function createCliBaseEvent(context = {}) {
package/dist/index.mjs CHANGED
@@ -264,7 +264,7 @@ var LoginSchema = z.object({
264
264
 
265
265
  // package.json
266
266
  var package_default = {
267
- version: "0.17.2"};
267
+ version: "0.17.4"};
268
268
 
269
269
  // src/telemetry/builders.ts
270
270
  function createCliBaseEvent(context = {}) {
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zapier/zapier-sdk-cli",
3
- "version": "0.17.2",
3
+ "version": "0.17.4",
4
4
  "description": "Command line interface for Zapier SDK",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",