@zuplo/runtime 6.54.6 → 6.54.8
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/out/types/index.d.ts
CHANGED
|
@@ -312,6 +312,10 @@ export declare interface ApiKeyInboundPolicyOptions {
|
|
|
312
312
|
disableAutomaticallyAddingKeyHeaderToOpenApi?: boolean;
|
|
313
313
|
}
|
|
314
314
|
|
|
315
|
+
declare interface ApiRuntimeConfig {
|
|
316
|
+
urls: UrlConfig | undefined;
|
|
317
|
+
}
|
|
318
|
+
|
|
315
319
|
/**
|
|
316
320
|
* NOTE: This function is in beta and may change in the future.
|
|
317
321
|
* It is not recommended for use in production code.
|
|
@@ -8143,6 +8147,11 @@ export declare interface UpstreamGcpServiceAuthInboundPolicyOptions {
|
|
|
8143
8147
|
version?: 1 | 2;
|
|
8144
8148
|
}
|
|
8145
8149
|
|
|
8150
|
+
declare interface UrlConfig {
|
|
8151
|
+
defaultUrl: string;
|
|
8152
|
+
urls: string[];
|
|
8153
|
+
}
|
|
8154
|
+
|
|
8146
8155
|
/**
|
|
8147
8156
|
* Handler that forwards requests to a different base URL while preserving the path.
|
|
8148
8157
|
* Ideal for proxying requests to backend services or creating API gateways.
|