@zapier/zapier-sdk-cli 0.23.1 → 0.24.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 +21 -0
- package/README.md +2 -2
- 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 +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @zapier/zapier-sdk-cli
|
|
2
2
|
|
|
3
|
+
## 0.24.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- f54f895: Fix allowed_scopes parameter to be allowedScopes.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [f54f895]
|
|
12
|
+
- @zapier/zapier-sdk@0.22.0
|
|
13
|
+
- @zapier/zapier-sdk-mcp@0.7.2
|
|
14
|
+
|
|
15
|
+
## 0.23.2
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- dd54c22: `request` and `fetch` now require auth and provide a more helpful error message
|
|
20
|
+
- Updated dependencies [dd54c22]
|
|
21
|
+
- @zapier/zapier-sdk-mcp@0.7.1
|
|
22
|
+
- @zapier/zapier-sdk@0.21.1
|
|
23
|
+
|
|
3
24
|
## 0.23.1
|
|
4
25
|
|
|
5
26
|
### 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
|
-
| `--
|
|
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> [--
|
|
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.
|
|
1701
|
+
version: "0.24.0"};
|
|
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.
|
|
2982
|
+
version: "0.24.0"};
|
|
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.
|
|
1665
|
+
version: "0.24.0"};
|
|
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.
|
|
2946
|
+
version: "0.24.0"};
|
|
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
package/dist/index.mjs
CHANGED