@blinkdotnew/cli 0.1.5 → 0.1.6
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/dist/cli.js +1 -1
- package/package.json +1 -1
- package/src/commands/connector.ts +1 -1
package/dist/cli.js
CHANGED
|
@@ -947,7 +947,7 @@ Examples:
|
|
|
947
947
|
}
|
|
948
948
|
const result = await withSpinner(
|
|
949
949
|
`Executing ${provider}/${action}...`,
|
|
950
|
-
() => resourcesRequest(`/
|
|
950
|
+
() => resourcesRequest(`/v1/connectors/${provider}/execute`, {
|
|
951
951
|
body: {
|
|
952
952
|
method: action,
|
|
953
953
|
http_method: opts.method,
|
package/package.json
CHANGED
|
@@ -46,7 +46,7 @@ Examples:
|
|
|
46
46
|
try { params = JSON.parse(paramsArg) } catch { params = {} }
|
|
47
47
|
}
|
|
48
48
|
const result = await withSpinner(`Executing ${provider}/${action}...`, () =>
|
|
49
|
-
resourcesRequest(`/
|
|
49
|
+
resourcesRequest(`/v1/connectors/${provider}/execute`, {
|
|
50
50
|
body: {
|
|
51
51
|
method: action,
|
|
52
52
|
http_method: opts.method,
|