@zapier/zapier-sdk-cli 0.23.2 → 0.24.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/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @zapier/zapier-sdk-cli
2
2
 
3
+ ## 0.24.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [8ebde4b]
8
+ - @zapier/zapier-sdk@0.22.1
9
+ - @zapier/zapier-sdk-mcp@0.7.3
10
+
11
+ ## 0.24.0
12
+
13
+ ### Minor Changes
14
+
15
+ - f54f895: Fix allowed_scopes parameter to be allowedScopes.
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies [f54f895]
20
+ - @zapier/zapier-sdk@0.22.0
21
+ - @zapier/zapier-sdk-mcp@0.7.2
22
+
3
23
  ## 0.23.2
4
24
 
5
25
  ### Patch Changes
package/README.md CHANGED
@@ -379,12 +379,12 @@ Create new client credentials for the authenticated user
379
379
  | Option | Type | Required | Default | Possible Values | Description |
380
380
  | ------------------ | -------- | -------- | -------------- | --------------- | ---------------------------------------------- |
381
381
  | `<name>` | `string` | ✅ | — | — | Human-readable name for the client credentials |
382
- | `--allowed_scopes` | `array` | ❌ | `["external"]` | — | Scopes to allow for these credentials |
382
+ | `--allowed-scopes` | `array` | ❌ | `["external"]` | — | Scopes to allow for these credentials |
383
383
 
384
384
  **Usage:**
385
385
 
386
386
  ```bash
387
- npx zapier-sdk create-client-credentials <name> [--allowed_scopes]
387
+ npx zapier-sdk create-client-credentials <name> [--allowed-scopes]
388
388
  ```
389
389
 
390
390
  #### `delete-client-credentials`
package/dist/cli.cjs CHANGED
@@ -1698,7 +1698,7 @@ var LoginSchema = zod.z.object({
1698
1698
 
1699
1699
  // package.json
1700
1700
  var package_default = {
1701
- version: "0.23.2"};
1701
+ version: "0.24.1"};
1702
1702
 
1703
1703
  // src/telemetry/builders.ts
1704
1704
  function createCliBaseEvent(context = {}) {
@@ -2979,7 +2979,7 @@ function createZapierCliSdk(options = {}) {
2979
2979
  // package.json with { type: 'json' }
2980
2980
  var package_default2 = {
2981
2981
  name: "@zapier/zapier-sdk-cli",
2982
- version: "0.23.2"};
2982
+ version: "0.24.1"};
2983
2983
  function detectPackageManager(cwd = process.cwd()) {
2984
2984
  const ua = process.env.npm_config_user_agent;
2985
2985
  if (ua) {
package/dist/cli.mjs CHANGED
@@ -1662,7 +1662,7 @@ var LoginSchema = z.object({
1662
1662
 
1663
1663
  // package.json
1664
1664
  var package_default = {
1665
- version: "0.23.2"};
1665
+ version: "0.24.1"};
1666
1666
 
1667
1667
  // src/telemetry/builders.ts
1668
1668
  function createCliBaseEvent(context = {}) {
@@ -2943,7 +2943,7 @@ function createZapierCliSdk(options = {}) {
2943
2943
  // package.json with { type: 'json' }
2944
2944
  var package_default2 = {
2945
2945
  name: "@zapier/zapier-sdk-cli",
2946
- version: "0.23.2"};
2946
+ version: "0.24.1"};
2947
2947
  function detectPackageManager(cwd = process.cwd()) {
2948
2948
  const ua = process.env.npm_config_user_agent;
2949
2949
  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.23.2"};
305
+ version: "0.24.1"};
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.23.2"};
274
+ version: "0.24.1"};
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.23.2",
3
+ "version": "0.24.1",
4
4
  "description": "Command line interface for Zapier SDK",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",