@zuplo/cli 6.74.14 → 7.0.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/dist/cli.js +3 -3
- package/dist/cli.js.map +1 -1
- package/dist/common/outdated.d.ts +0 -1
- package/dist/common/outdated.d.ts.map +1 -1
- package/dist/common/outdated.js +3 -4
- package/dist/common/outdated.js.map +1 -1
- package/dist/test/invoke-test.d.ts.map +1 -1
- package/dist/test/invoke-test.js.map +1 -1
- package/dist/test/invoke-test.test.js.map +1 -1
- package/node_modules/@zuplo/core/package.json +1 -1
- package/node_modules/@zuplo/graphql/package.json +1 -1
- package/node_modules/@zuplo/openapi-tools/package.json +1 -1
- package/node_modules/@zuplo/otel/package.json +1 -1
- package/node_modules/@zuplo/runtime/out/esm/chunk-YR2FKQJM.js +372 -0
- package/node_modules/@zuplo/runtime/out/esm/{chunk-YFAVPQDX.js.map → chunk-YR2FKQJM.js.map} +1 -1
- package/node_modules/@zuplo/runtime/out/esm/index.js +1 -1
- package/node_modules/@zuplo/runtime/out/esm/mcp-gateway/index.js +1 -1
- package/node_modules/@zuplo/runtime/out/types/index.d.ts +4 -20
- package/node_modules/@zuplo/runtime/package.json +1 -1
- package/package.json +6 -6
- package/node_modules/@zuplo/runtime/out/esm/chunk-YFAVPQDX.js +0 -372
- /package/node_modules/@zuplo/runtime/out/esm/{chunk-YFAVPQDX.js.LEGAL.txt → chunk-YR2FKQJM.js.LEGAL.txt} +0 -0
|
@@ -1669,23 +1669,6 @@ export declare interface ApiKeyConsumerClientOptions {
|
|
|
1669
1669
|
*
|
|
1670
1670
|
* @example
|
|
1671
1671
|
* ```json
|
|
1672
|
-
* // policies.json - API key authentication using bucketName (legacy)
|
|
1673
|
-
* {
|
|
1674
|
-
* "name": "api-key-auth",
|
|
1675
|
-
* "policyType": "api-key-inbound",
|
|
1676
|
-
* "handler": {
|
|
1677
|
-
* "export": "ApiKeyInboundPolicy",
|
|
1678
|
-
* "module": "$import(@zuplo/runtime)",
|
|
1679
|
-
* "options": {
|
|
1680
|
-
* "bucketName": "$env(API_KEY_BUCKET)",
|
|
1681
|
-
* "cacheTtlSeconds": 300
|
|
1682
|
-
* }
|
|
1683
|
-
* }
|
|
1684
|
-
* }
|
|
1685
|
-
* ```
|
|
1686
|
-
*
|
|
1687
|
-
* @example
|
|
1688
|
-
* ```json
|
|
1689
1672
|
* // Custom header and auth scheme
|
|
1690
1673
|
* {
|
|
1691
1674
|
* "handler": {
|
|
@@ -1722,7 +1705,7 @@ export declare interface ApiKeyConsumerClientOptions {
|
|
|
1722
1705
|
export declare function ApiKeyInboundPolicy(
|
|
1723
1706
|
request: ZuploRequest,
|
|
1724
1707
|
context: ZuploContext,
|
|
1725
|
-
unparsedOptions: ApiKeyInboundPolicyOptions,
|
|
1708
|
+
unparsedOptions: ApiKeyInboundPolicyOptions | undefined,
|
|
1726
1709
|
policyName: string
|
|
1727
1710
|
): Promise<Response | ZuploRequest<RequestGeneric_2>>;
|
|
1728
1711
|
|
|
@@ -1744,11 +1727,12 @@ export declare interface ApiKeyInboundPolicyOptions {
|
|
|
1744
1727
|
*/
|
|
1745
1728
|
authScheme?: string;
|
|
1746
1729
|
/**
|
|
1747
|
-
* The ID of the API Key service bucket.
|
|
1730
|
+
* The ID of the API Key service bucket. Defaults to the autogenerated bucket ID for your project.
|
|
1748
1731
|
*/
|
|
1749
1732
|
bucketId?: string;
|
|
1750
1733
|
/**
|
|
1751
|
-
*
|
|
1734
|
+
* @deprecated
|
|
1735
|
+
* **Deprecated**: Use `bucketId` instead. The name of the API Key service bucket.
|
|
1752
1736
|
*/
|
|
1753
1737
|
bucketName?: string;
|
|
1754
1738
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zuplo/cli",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0",
|
|
4
4
|
"repository": "https://github.com/zuplo/zuplo",
|
|
5
5
|
"author": "Zuplo, Inc.",
|
|
6
6
|
"type": "module",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"@opentelemetry/api": "1.9.0",
|
|
28
28
|
"@opentelemetry/api-logs": "0.220.0",
|
|
29
29
|
"@swc/core": "1.10.18",
|
|
30
|
-
"@zuplo/core": "
|
|
30
|
+
"@zuplo/core": "7.0.0",
|
|
31
31
|
"@zuplo/editor": "1.0.30764218565",
|
|
32
|
-
"@zuplo/openapi-tools": "
|
|
33
|
-
"@zuplo/runtime": "
|
|
32
|
+
"@zuplo/openapi-tools": "7.0.0",
|
|
33
|
+
"@zuplo/runtime": "7.0.0",
|
|
34
34
|
"chalk": "5.4.1",
|
|
35
35
|
"chokidar": "3.5.3",
|
|
36
36
|
"cookie": "1.0.2",
|
|
@@ -61,8 +61,8 @@
|
|
|
61
61
|
"workerd": "1.20241230.0",
|
|
62
62
|
"yargs": "17.7.2",
|
|
63
63
|
"zod": "4.4.3",
|
|
64
|
-
"@zuplo/graphql": "
|
|
65
|
-
"@zuplo/otel": "
|
|
64
|
+
"@zuplo/graphql": "7.0.0",
|
|
65
|
+
"@zuplo/otel": "7.0.0"
|
|
66
66
|
},
|
|
67
67
|
"bundleDependencies": [
|
|
68
68
|
"@inquirer/prompts",
|