zuplo 7.4.1 → 7.4.3

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.
Files changed (58) hide show
  1. package/docs/api-management/introduction.md +1 -1
  2. package/docs/articles/api-key-api.mdx +3 -3
  3. package/docs/articles/custom-ci-cd-azure.mdx +1 -1
  4. package/docs/articles/custom-ci-cd-bitbucket.mdx +2 -2
  5. package/docs/articles/custom-code-patterns.md +1 -1
  6. package/docs/articles/custom-domains.mdx +2 -2
  7. package/docs/articles/development-options.mdx +4 -4
  8. package/docs/articles/fastly-zuplo-host-setup.mdx +5 -5
  9. package/docs/articles/feature-flags.mdx +442 -0
  10. package/docs/articles/gke-with-upstream-auth-policy.mdx +7 -7
  11. package/docs/articles/health-checks.mdx +4 -4
  12. package/docs/articles/hosting-options.mdx +2 -2
  13. package/docs/articles/local-development-env-variables.mdx +1 -1
  14. package/docs/articles/metrics-plugins.mdx +1 -1
  15. package/docs/articles/migration-overview.md +1 -1
  16. package/docs/articles/monorepo-deployment.mdx +10 -10
  17. package/docs/articles/performance-testing.mdx +10 -9
  18. package/docs/articles/plugin-azure-blob.mdx +1 -1
  19. package/docs/articles/plugin-azure-event-hubs.mdx +2 -2
  20. package/docs/articles/policies.mdx +2 -2
  21. package/docs/articles/securing-backend-mtls.mdx +3 -3
  22. package/docs/articles/securing-the-gateway-with-client-mtls.mdx +3 -3
  23. package/docs/articles/securing-your-backend.mdx +1 -1
  24. package/docs/articles/security.mdx +1 -1
  25. package/docs/articles/terraform.mdx +2 -2
  26. package/docs/articles/testing.mdx +6 -6
  27. package/docs/articles/troubleshooting-slow-responses.mdx +5 -6
  28. package/docs/articles/troubleshooting.md +1 -1
  29. package/docs/articles/use-openapi-extension-data.mdx +4 -4
  30. package/docs/articles/waf-ddos-akamai.md +13 -13
  31. package/docs/articles/waf-ddos-aws-waf-shield.mdx +14 -14
  32. package/docs/articles/waf-ddos-fastly.mdx +14 -14
  33. package/docs/articles/waf-ddos.mdx +7 -7
  34. package/docs/cli/authentication.mdx +1 -1
  35. package/docs/cli/lint.mdx +103 -0
  36. package/docs/concepts/how-zuplo-works.mdx +5 -4
  37. package/docs/concepts/upstream-credentials.mdx +1 -1
  38. package/docs/dedicated/akamai/architecture.mdx +23 -24
  39. package/docs/dedicated/akamai/cdn.mdx +20 -20
  40. package/docs/dedicated/architecture.mdx +28 -27
  41. package/docs/dedicated/custom-domains.mdx +3 -4
  42. package/docs/dedicated/federated-gateways.mdx +1 -1
  43. package/docs/dedicated/networking.mdx +10 -10
  44. package/docs/dedicated/overview.mdx +3 -3
  45. package/docs/dedicated/source-control.mdx +6 -5
  46. package/docs/handlers/custom-handler.mdx +4 -4
  47. package/docs/handlers/mcp-server.mdx +1 -1
  48. package/docs/handlers/url-forward.mdx +1 -2
  49. package/docs/mcp-server/introduction.mdx +4 -4
  50. package/docs/policies/ai-gateway-dlp-inbound/doc.md +79 -45
  51. package/docs/policies/ai-gateway-dlp-inbound/schema.json +5679 -3359
  52. package/docs/programmable-api/environment.mdx +1 -1
  53. package/docs/programmable-api/jwt-service-plugin.mdx +1 -1
  54. package/docs/programmable-api/logger.mdx +1 -1
  55. package/docs/programmable-api/runtime-errors.mdx +1 -1
  56. package/docs/programmable-api/zuplo-context.mdx +3 -3
  57. package/docs/self-hosted/overview.md +3 -3
  58. package/package.json +5 -5
@@ -4,7 +4,7 @@ sidebar_label: Environment Variables
4
4
  ---
5
5
 
6
6
  The `environment` object provides access to environment variables in your Zuplo
7
- API gateway. It returns a record of environment variable names to their values.
7
+ Gateway. It returns a record of environment variable names to their values.
8
8
 
9
9
  :::info{title="Configuration Guide"}
10
10
 
@@ -30,7 +30,7 @@ Some of the common use cases for the JWT service plugin include:
30
30
 
31
31
  - Securing downstream APIs by issuing JWTs that can be used to verify that the
32
32
  request is coming from your Zuplo API
33
- - Securing requests to other Zuplo API gateways (for example, when using the
33
+ - Securing requests to other Zuplo Gateways (for example, when using the
34
34
  [Federated Gateway](../dedicated/federated-gateways.mdx) capability on Zuplo
35
35
  managed dedicated deployments.)
36
36
  - Calling third-party APIs that can be configured with federated identity such
@@ -3,7 +3,7 @@ title: Logger
3
3
  ---
4
4
 
5
5
  The `Logger` interface provides structured logging capabilities throughout your
6
- Zuplo API gateway. The logger is accessible via the `context.log` property and
6
+ Zuplo Gateway. The logger is accessible via the `context.log` property and
7
7
  supports multiple log levels.
8
8
 
9
9
  ## Interface
@@ -3,7 +3,7 @@ title: Runtime Errors
3
3
  ---
4
4
 
5
5
  Zuplo provides specialized error classes for handling runtime and configuration
6
- errors in your API gateway.
6
+ errors in your Zuplo Gateway.
7
7
 
8
8
  ## RuntimeError
9
9
 
@@ -266,9 +266,9 @@ export default async function (request: ZuploRequest, context: ZuploContext) {
266
266
 
267
267
  ### `invokeRoute`
268
268
 
269
- Invokes another route within the same API gateway. This enables internal routing
270
- and composition of multiple routes. The invoked route runs with a new context
271
- that has `parentContext` set to the current context.
269
+ Invokes another route within the same Zuplo Gateway. This enables internal
270
+ routing and composition of multiple routes. The invoked route runs with a new
271
+ context that has `parentContext` set to the current context.
272
272
 
273
273
  ```ts
274
274
  export default async function (request: ZuploRequest, context: ZuploContext) {
@@ -4,9 +4,9 @@ sidebar_label: Overview
4
4
  ---
5
5
 
6
6
  Zuplo Self-Hosted (also known as on-prem) is a deployment model where you run
7
- the Zuplo API Gateway on your own infrastructure — any cloud or private data
8
- center. Zuplo Self-Hosted runs exclusively on Kubernetes and is installed with a
9
- single Helm chart into your cluster.
7
+ the Zuplo Gateway on your own infrastructure — any cloud or private data center.
8
+ Zuplo Self-Hosted runs exclusively on Kubernetes and is installed with a single
9
+ Helm chart into your cluster.
10
10
 
11
11
  Self-hosted deployment might be the right choice for you if you need:
12
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zuplo",
3
- "version": "7.4.1",
3
+ "version": "7.4.3",
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": "7.4.1",
23
- "@zuplo/core": "7.4.1",
24
- "@zuplo/runtime": "7.4.1",
25
- "@zuplo/test": "7.4.1"
22
+ "@zuplo/cli": "7.4.3",
23
+ "@zuplo/core": "7.4.3",
24
+ "@zuplo/runtime": "7.4.3",
25
+ "@zuplo/test": "7.4.3"
26
26
  }
27
27
  }