zuplo 6.69.9 → 6.69.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/docs/ai-gateway/apps.mdx +5 -5
- package/docs/ai-gateway/custom-providers.mdx +6 -5
- package/docs/ai-gateway/getting-started.mdx +2 -1
- package/docs/ai-gateway/guardrails.mdx +2 -2
- package/docs/ai-gateway/managing-apps.mdx +10 -8
- package/docs/ai-gateway/managing-providers.mdx +9 -7
- package/docs/ai-gateway/managing-teams.mdx +4 -4
- package/docs/ai-gateway/usage-limits.mdx +8 -5
- package/docs/articles/accounts/audit-logs.mdx +3 -5
- package/docs/articles/accounts/billing.mdx +9 -5
- package/docs/articles/accounts/default-api-key.mdx +4 -5
- package/docs/articles/accounts/delete-account.mdx +11 -11
- package/docs/articles/accounts/enterprise-sso.mdx +5 -3
- package/docs/articles/accounts/managing-account-members.mdx +3 -3
- package/docs/articles/accounts/zuplo-api-keys.mdx +8 -6
- package/docs/articles/api-key-administration.mdx +8 -5
- package/docs/articles/api-key-end-users.mdx +4 -3
- package/docs/articles/api-key-self-serve-integration.mdx +8 -4
- package/docs/articles/branch-based-deployments.mdx +7 -4
- package/docs/articles/custom-ci-cd-azure.mdx +3 -2
- package/docs/articles/custom-ci-cd-bitbucket.mdx +3 -2
- package/docs/articles/custom-ci-cd-circleci.mdx +4 -2
- package/docs/articles/custom-ci-cd-github.mdx +5 -3
- package/docs/articles/custom-ci-cd-gitlab.mdx +3 -2
- package/docs/articles/custom-ci-cd.mdx +6 -8
- package/docs/articles/custom-domains.mdx +8 -6
- package/docs/articles/environments.mdx +5 -2
- package/docs/articles/mcp-quickstart.mdx +2 -2
- package/docs/articles/migrate-from-kong.md +2 -2
- package/docs/articles/monetization/api-access.mdx +3 -2
- package/docs/articles/monetization/billing-models.md +137 -31
- package/docs/articles/monetization/developer-portal.md +7 -3
- package/docs/articles/monetization/features.mdx +0 -28
- package/docs/articles/monetization/meters.mdx +14 -7
- package/docs/articles/monetization/plans.mdx +1 -3
- package/docs/articles/monetization/pricing-models.mdx +21 -7
- package/docs/articles/monetization/private-plans.md +0 -1
- package/docs/articles/monetization/quickstart.md +4 -2
- package/docs/articles/monetization/rate-cards.mdx +40 -7
- package/docs/articles/monetization/stripe-integration.md +16 -12
- package/docs/articles/monetization/subscription-lifecycle.md +4 -4
- package/docs/articles/monorepo-deployment.mdx +2 -3
- package/docs/articles/source-control-setup-github.mdx +6 -4
- package/docs/articles/step-1-setup-basic-gateway.mdx +3 -3
- package/docs/articles/step-3-add-api-key-auth-local.mdx +4 -3
- package/docs/articles/step-3-add-api-key-auth.mdx +3 -2
- package/docs/articles/step-4-deploying-to-the-edge.mdx +6 -4
- package/docs/articles/testing.mdx +4 -3
- package/docs/articles/troubleshooting.md +7 -4
- package/docs/cli/authentication.mdx +4 -2
- package/docs/cli/bucket-list.mdx +71 -0
- package/docs/cli/deploy.mdx +2 -1
- package/docs/cli/deploy.partial.mdx +2 -1
- package/docs/cli/logout.mdx +25 -0
- package/docs/concepts/api-keys.md +9 -8
- package/docs/concepts/authentication.mdx +3 -2
- package/docs/concepts/source-control-and-deployment.mdx +3 -1
- package/docs/dev-portal/documenting-mcp-servers.mdx +223 -0
- package/docs/dev-portal/zudoku/openapi-extensions/x-mcp-server.md +1 -1
- package/docs/guides/canary-routing-for-employees.mdx +3 -1
- package/docs/guides/user-based-backend-routing.mdx +3 -2
- package/docs/policies/api-key-inbound/schema.json +5 -0
- package/docs/programmable-api/environment.mdx +6 -5
- package/docs/programmable-api/zuplo-context.mdx +3 -3
- package/package.json +4 -4
|
@@ -77,8 +77,9 @@ export default async function policy(
|
|
|
77
77
|
}
|
|
78
78
|
```
|
|
79
79
|
|
|
80
|
-
When creating API keys
|
|
81
|
-
|
|
80
|
+
When creating API keys under
|
|
81
|
+
[Services](https://portal.zuplo.com/+/account/project/services) in the Zuplo
|
|
82
|
+
Portal, set the metadata to include the environment:
|
|
82
83
|
|
|
83
84
|
```json
|
|
84
85
|
{
|
|
@@ -46,6 +46,11 @@
|
|
|
46
46
|
"x-show-example": false,
|
|
47
47
|
"description": "The scheme used on the header."
|
|
48
48
|
},
|
|
49
|
+
"bucketId": {
|
|
50
|
+
"type": "string",
|
|
51
|
+
"x-show-example": false,
|
|
52
|
+
"description": "The ID of the API Key service bucket. Preferred over bucketName. Defaults to the autogenerated bucket ID for your project."
|
|
53
|
+
},
|
|
49
54
|
"bucketName": {
|
|
50
55
|
"type": "string",
|
|
51
56
|
"x-show-example": false,
|
|
@@ -313,12 +313,13 @@ context.log.info("Config loaded", {
|
|
|
313
313
|
|
|
314
314
|
## Setting Environment Variables
|
|
315
315
|
|
|
316
|
-
|
|
316
|
+
Set environment variables in the Zuplo Portal:
|
|
317
317
|
|
|
318
|
-
1.
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
318
|
+
1. Open the
|
|
319
|
+
[**Environments**](https://portal.zuplo.com/+/account/project/environments)
|
|
320
|
+
tab of your project.
|
|
321
|
+
2. Select an environment and add variables under **Environment Variables**.
|
|
322
|
+
3. Zuplo encrypts variables at rest and in transit.
|
|
322
323
|
|
|
323
324
|
## See Also
|
|
324
325
|
|
|
@@ -89,9 +89,9 @@ context.log.info({
|
|
|
89
89
|
### `log`
|
|
90
90
|
|
|
91
91
|
A logger instance for debugging and monitoring. Logs appear in your log tail in
|
|
92
|
-
the portal and in your
|
|
93
|
-
|
|
94
|
-
production is set to **Error**.
|
|
92
|
+
the [Zuplo Portal](https://portal.zuplo.com/+/account/project/) and in your
|
|
93
|
+
integrated log solution (for example Datadog). Pre-production environments are
|
|
94
|
+
typically set to **Info** log level, while production is set to **Error**.
|
|
95
95
|
|
|
96
96
|
:::tip
|
|
97
97
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zuplo",
|
|
3
|
-
"version": "6.69.
|
|
3
|
+
"version": "6.69.11",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "The programmable API Gateway",
|
|
6
6
|
"author": "Zuplo, Inc.",
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"zuplo": "zuplo.js"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@zuplo/cli": "6.69.
|
|
23
|
-
"@zuplo/core": "6.69.
|
|
24
|
-
"@zuplo/runtime": "6.69.
|
|
22
|
+
"@zuplo/cli": "6.69.11",
|
|
23
|
+
"@zuplo/core": "6.69.11",
|
|
24
|
+
"@zuplo/runtime": "6.69.11",
|
|
25
25
|
"@zuplo/test": "1.4.0"
|
|
26
26
|
}
|
|
27
27
|
}
|