@zapier/zapier-sdk-cli 0.39.9 → 0.39.11
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 +17 -0
- package/README.md +1 -1
- package/dist/cli.cjs +3 -3
- package/dist/cli.mjs +3 -3
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/dist/package.json +1 -1
- package/dist/src/utils/parameter-resolver.d.ts +1 -1
- package/dist/src/utils/parameter-resolver.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @zapier/zapier-sdk-cli
|
|
2
2
|
|
|
3
|
+
## 0.39.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 3cf1a98: Fix connection resolution for no-auth apps
|
|
8
|
+
- Updated dependencies [3cf1a98]
|
|
9
|
+
- @zapier/zapier-sdk@0.41.2
|
|
10
|
+
- @zapier/zapier-sdk-mcp@0.10.13
|
|
11
|
+
|
|
12
|
+
## 0.39.10
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [53c165a]
|
|
17
|
+
- @zapier/zapier-sdk@0.41.1
|
|
18
|
+
- @zapier/zapier-sdk-mcp@0.10.12
|
|
19
|
+
|
|
3
20
|
## 0.39.9
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -706,7 +706,7 @@ List records in a table with optional filtering and sorting
|
|
|
706
706
|
**Usage:**
|
|
707
707
|
|
|
708
708
|
```bash
|
|
709
|
-
npx zapier-sdk list-table-records <table> [--filters] [--sort] [--
|
|
709
|
+
npx zapier-sdk list-table-records <table> [--filters] [--sort] [--page-size] [--max-items] [--cursor] [--key-mode]
|
|
710
710
|
```
|
|
711
711
|
|
|
712
712
|
#### `list-tables`
|
package/dist/cli.cjs
CHANGED
|
@@ -332,7 +332,7 @@ var SchemaParameterResolver = class {
|
|
|
332
332
|
/**
|
|
333
333
|
* Calls `tryResolveWithoutPrompt` on a dynamic resolver.
|
|
334
334
|
* Returns the resolution result object, or null if unresolvable / throws.
|
|
335
|
-
* Note: { resolvedValue:
|
|
335
|
+
* Note: { resolvedValue: undefined } is a valid result (e.g. connection when app has no auth);
|
|
336
336
|
* only a null return from the resolver itself means "could not auto-resolve".
|
|
337
337
|
*/
|
|
338
338
|
async tryAutoResolve(dynamicResolver, context) {
|
|
@@ -1103,7 +1103,7 @@ var SHARED_COMMAND_CLI_OPTIONS = [
|
|
|
1103
1103
|
|
|
1104
1104
|
// package.json
|
|
1105
1105
|
var package_default = {
|
|
1106
|
-
version: "0.39.
|
|
1106
|
+
version: "0.39.11"};
|
|
1107
1107
|
|
|
1108
1108
|
// src/telemetry/builders.ts
|
|
1109
1109
|
function createCliBaseEvent(context = {}) {
|
|
@@ -4696,7 +4696,7 @@ function createZapierCliSdk(options = {}) {
|
|
|
4696
4696
|
// package.json with { type: 'json' }
|
|
4697
4697
|
var package_default2 = {
|
|
4698
4698
|
name: "@zapier/zapier-sdk-cli",
|
|
4699
|
-
version: "0.39.
|
|
4699
|
+
version: "0.39.11"};
|
|
4700
4700
|
var ONE_DAY_MS = 24 * 60 * 60 * 1e3;
|
|
4701
4701
|
var CACHE_RESET_INTERVAL_MS = (() => {
|
|
4702
4702
|
const { ZAPIER_SDK_UPDATE_CHECK_INTERVAL_MS = `${ONE_DAY_MS}` } = process.env;
|
package/dist/cli.mjs
CHANGED
|
@@ -294,7 +294,7 @@ var SchemaParameterResolver = class {
|
|
|
294
294
|
/**
|
|
295
295
|
* Calls `tryResolveWithoutPrompt` on a dynamic resolver.
|
|
296
296
|
* Returns the resolution result object, or null if unresolvable / throws.
|
|
297
|
-
* Note: { resolvedValue:
|
|
297
|
+
* Note: { resolvedValue: undefined } is a valid result (e.g. connection when app has no auth);
|
|
298
298
|
* only a null return from the resolver itself means "could not auto-resolve".
|
|
299
299
|
*/
|
|
300
300
|
async tryAutoResolve(dynamicResolver, context) {
|
|
@@ -1065,7 +1065,7 @@ var SHARED_COMMAND_CLI_OPTIONS = [
|
|
|
1065
1065
|
|
|
1066
1066
|
// package.json
|
|
1067
1067
|
var package_default = {
|
|
1068
|
-
version: "0.39.
|
|
1068
|
+
version: "0.39.11"};
|
|
1069
1069
|
|
|
1070
1070
|
// src/telemetry/builders.ts
|
|
1071
1071
|
function createCliBaseEvent(context = {}) {
|
|
@@ -4658,7 +4658,7 @@ function createZapierCliSdk(options = {}) {
|
|
|
4658
4658
|
// package.json with { type: 'json' }
|
|
4659
4659
|
var package_default2 = {
|
|
4660
4660
|
name: "@zapier/zapier-sdk-cli",
|
|
4661
|
-
version: "0.39.
|
|
4661
|
+
version: "0.39.11"};
|
|
4662
4662
|
var ONE_DAY_MS = 24 * 60 * 60 * 1e3;
|
|
4663
4663
|
var CACHE_RESET_INTERVAL_MS = (() => {
|
|
4664
4664
|
const { ZAPIER_SDK_UPDATE_CHECK_INTERVAL_MS = `${ONE_DAY_MS}` } = process.env;
|
package/dist/index.cjs
CHANGED
package/dist/index.mjs
CHANGED
package/dist/package.json
CHANGED
|
@@ -16,7 +16,7 @@ export declare class SchemaParameterResolver {
|
|
|
16
16
|
/**
|
|
17
17
|
* Calls `tryResolveWithoutPrompt` on a dynamic resolver.
|
|
18
18
|
* Returns the resolution result object, or null if unresolvable / throws.
|
|
19
|
-
* Note: { resolvedValue:
|
|
19
|
+
* Note: { resolvedValue: undefined } is a valid result (e.g. connection when app has no auth);
|
|
20
20
|
* only a null return from the resolver itself means "could not auto-resolve".
|
|
21
21
|
*/
|
|
22
22
|
private tryAutoResolve;
|
|
@@ -241,7 +241,7 @@ export class SchemaParameterResolver {
|
|
|
241
241
|
/**
|
|
242
242
|
* Calls `tryResolveWithoutPrompt` on a dynamic resolver.
|
|
243
243
|
* Returns the resolution result object, or null if unresolvable / throws.
|
|
244
|
-
* Note: { resolvedValue:
|
|
244
|
+
* Note: { resolvedValue: undefined } is a valid result (e.g. connection when app has no auth);
|
|
245
245
|
* only a null return from the resolver itself means "could not auto-resolve".
|
|
246
246
|
*/
|
|
247
247
|
async tryAutoResolve(dynamicResolver, context) {
|