@zuplo/cli 7.1.6 → 7.1.7

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.
@@ -245,19 +245,21 @@ export declare type AIGatewayCapability =
245
245
  | "audio_transcriptions";
246
246
 
247
247
  /**
248
- * Loads the app configuration for the request (when auth has not already) and
249
- * runs the inbound policy chain from that configuration.
250
- *
251
- * Place this policy on AI Gateway v2 routes after optional authentication.
252
- * When `ai-gateway-auth-v2-inbound` already populated the app-configuration
253
- * channel, this policy reuses it. Otherwise it loads the configuration with
254
- * the route's `app_id` path parameter. Applications select from policies
255
- * pre-declared by the gateway. Applications without a `inboundPolicyChain`,
256
- * or with an empty chain, run no application-selected policies.
257
- * Entry options replace the declaration's options as a complete object; omit
258
- * them to inherit the declaration, including environment-backed credentials.
259
- * Each occurrence receives a private deep copy of its entry options, so a
260
- * policy mutating its options cannot corrupt the cached app configuration.
248
+ * Loads the app configuration for the request (when auth or the configuration
249
+ * loader has not already) and runs the inbound policy chain from that
250
+ * configuration.
251
+ *
252
+ * Place this policy on AI Gateway v2 routes after optional authentication and
253
+ * optional `ai-gateway-configuration-loader-v2-inbound`. When either of those
254
+ * already populated the app-configuration channel, this policy reuses it.
255
+ * Otherwise it loads the configuration with the route's `app_id` path
256
+ * parameter. Applications select from policies pre-declared by the gateway.
257
+ * Applications without a `inboundPolicyChain`, or with an empty chain, run no
258
+ * application-selected policies. Entry options replace the declaration's
259
+ * options as a complete object; omit them to inherit the declaration,
260
+ * including environment-backed credentials. Each occurrence receives a private
261
+ * deep copy of its entry options, so a policy mutating its options cannot
262
+ * corrupt the cached app configuration.
261
263
  *
262
264
  * @title AI Gateway Configuration Executor (v2)
263
265
  * @product ai-gateway
@@ -288,6 +290,48 @@ export declare interface AIGatewayConfigurationExecutorV2InboundPolicyOptions {
288
290
  cacheTtlSeconds?: number;
289
291
  }
290
292
 
293
+ /**
294
+ * Loads the AI Gateway app configuration for the request into the
295
+ * request-scoped channel and does nothing else.
296
+ *
297
+ * Place this policy on AI Gateway v2 routes before
298
+ * `ai-gateway-configuration-executor-v2-inbound` when you want configuration
299
+ * loading separated from chain execution. When `ai-gateway-auth-v2-inbound`
300
+ * already populated the channel, this policy reuses it. Otherwise it loads
301
+ * the configuration with the route's `app_id` path parameter.
302
+ *
303
+ * If this policy is omitted, the configuration executor still loads
304
+ * configuration itself before running the application chain.
305
+ *
306
+ * @title AI Gateway Configuration Loader (v2)
307
+ * @product ai-gateway
308
+ * @hidden
309
+ * @requiresAI
310
+ */
311
+ export declare class AIGatewayConfigurationLoaderV2InboundPolicy extends InboundPolicy<AIGatewayConfigurationLoaderV2InboundPolicyOptions> {
312
+ #private;
313
+ static readonly policyType = "ai-gateway-configuration-loader-v2";
314
+ constructor(
315
+ options: AIGatewayConfigurationLoaderV2InboundPolicyOptions,
316
+ policyName: string
317
+ );
318
+ handler(
319
+ request: ZuploRequest,
320
+ context: ZuploContext
321
+ ): Promise<ZuploRequest | Response>;
322
+ }
323
+
324
+ /**
325
+ * Options for loading each application's AI Gateway configuration into the request-scoped channel.
326
+ * @public
327
+ */
328
+ export declare interface AIGatewayConfigurationLoaderV2InboundPolicyOptions {
329
+ /**
330
+ * The time to cache app configurations loaded by app_id. Higher values decrease latency. Cached results remain valid until the cache expires even if the configuration changes in the portal. When ai-gateway-auth-v2-inbound already loaded the configuration for the request, this cache is not used.
331
+ */
332
+ cacheTtlSeconds?: number;
333
+ }
334
+
291
335
  /**
292
336
  * Adds failure and quota fallbacks to an existing AI Gateway model selection.
293
337
  *
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@zuplo/runtime",
3
3
  "type": "module",
4
- "version": "7.1.6",
4
+ "version": "7.1.7",
5
5
  "repository": "https://github.com/zuplo/zuplo",
6
6
  "author": "Zuplo, Inc.",
7
7
  "exports": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zuplo/cli",
3
- "version": "7.1.6",
3
+ "version": "7.1.7",
4
4
  "repository": "https://github.com/zuplo/zuplo",
5
5
  "author": "Zuplo, Inc.",
6
6
  "type": "module",
@@ -28,10 +28,10 @@
28
28
  "@opentelemetry/api": "1.9.0",
29
29
  "@opentelemetry/api-logs": "0.220.0",
30
30
  "@swc/core": "1.10.18",
31
- "@zuplo/core": "7.1.6",
31
+ "@zuplo/core": "7.1.7",
32
32
  "@zuplo/editor": "1.0.31094607111",
33
- "@zuplo/openapi-tools": "7.1.6",
34
- "@zuplo/runtime": "7.1.6",
33
+ "@zuplo/openapi-tools": "7.1.7",
34
+ "@zuplo/runtime": "7.1.7",
35
35
  "chalk": "5.4.1",
36
36
  "chokidar": "3.5.3",
37
37
  "cookie": "1.0.2",
@@ -62,8 +62,8 @@
62
62
  "workerd": "1.20241230.0",
63
63
  "yargs": "17.7.2",
64
64
  "zod": "4.4.3",
65
- "@zuplo/graphql": "7.1.6",
66
- "@zuplo/otel": "7.1.6"
65
+ "@zuplo/graphql": "7.1.7",
66
+ "@zuplo/otel": "7.1.7"
67
67
  },
68
68
  "bundleDependencies": [
69
69
  "@inquirer/prompts",