@zuplo/cli 6.71.27 → 6.72.1

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 (135) hide show
  1. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-json-stringify/.github/dependabot.yml +42 -2
  2. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-json-stringify/README.md +5 -5
  3. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-json-stringify/index.js +4 -7
  4. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-json-stringify/package.json +3 -3
  5. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-json-stringify/test/additionalProperties.test.js +47 -0
  6. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-json-stringify/test/const.test.js +20 -0
  7. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-json-stringify/test/patternProperties.test.js +24 -0
  8. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/.gitattributes +2 -0
  9. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/.github/dependabot.yml +53 -0
  10. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/.github/workflows/ci.yml +154 -0
  11. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/.github/workflows/lock-threads.yml +19 -0
  12. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/LICENSE +30 -0
  13. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/README.md +152 -0
  14. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/benchmark/benchmark.mjs +159 -0
  15. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/benchmark/encoder.mjs +54 -0
  16. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/benchmark/equal.mjs +51 -0
  17. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/benchmark/non-simple-domain.mjs +22 -0
  18. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/benchmark/package.json +17 -0
  19. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/benchmark/string-array-to-hex-stripped.mjs +24 -0
  20. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/benchmark/ws-is-secure.mjs +65 -0
  21. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/eslint.config.js +6 -0
  22. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/index.js +405 -0
  23. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/lib/schemes.js +267 -0
  24. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/lib/utils.js +585 -0
  25. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/package.json +68 -0
  26. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/test/ajv.test.js +43 -0
  27. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/test/equal.test.js +168 -0
  28. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/test/fixtures/uri-js-parse.json +501 -0
  29. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/test/fixtures/uri-js-serialize.json +120 -0
  30. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/test/parse.test.js +325 -0
  31. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/test/query-fragment-normalization.test.js +33 -0
  32. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/test/resolve.test.js +87 -0
  33. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/test/rfc-3986.test.js +90 -0
  34. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/test/scheme-normalization.test.js +16 -0
  35. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/test/security-normalization.test.js +39 -0
  36. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/test/security-utf8-encoding.test.js +0 -0
  37. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/test/security.test.js +161 -0
  38. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/test/serialize.test.js +151 -0
  39. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/test/uri-js-compatibility.test.js +33 -0
  40. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/test/uri-js.test.js +912 -0
  41. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/test/util.test.js +47 -0
  42. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/tsconfig.json +10 -0
  43. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/types/index.d.ts +51 -0
  44. package/node_modules/@fastify/fast-json-stringify-compiler/node_modules/fast-uri/types/index.tst.ts +15 -0
  45. package/node_modules/@posthog/core/dist/index.d.ts +3 -0
  46. package/node_modules/@posthog/core/dist/index.d.ts.map +1 -1
  47. package/node_modules/@posthog/core/dist/index.js +133 -93
  48. package/node_modules/@posthog/core/dist/index.mjs +2 -1
  49. package/node_modules/@posthog/core/dist/metrics/index.d.ts +61 -0
  50. package/node_modules/@posthog/core/dist/metrics/index.d.ts.map +1 -0
  51. package/node_modules/@posthog/core/dist/metrics/index.js +326 -0
  52. package/node_modules/@posthog/core/dist/metrics/index.mjs +283 -0
  53. package/node_modules/@posthog/core/dist/metrics/metrics-utils.d.ts +41 -0
  54. package/node_modules/@posthog/core/dist/metrics/metrics-utils.d.ts.map +1 -0
  55. package/node_modules/@posthog/core/dist/metrics/metrics-utils.js +117 -0
  56. package/node_modules/@posthog/core/dist/metrics/metrics-utils.mjs +68 -0
  57. package/node_modules/@posthog/core/dist/metrics/types.d.ts +69 -0
  58. package/node_modules/@posthog/core/dist/metrics/types.d.ts.map +1 -0
  59. package/node_modules/@posthog/core/dist/metrics/types.js +18 -0
  60. package/node_modules/@posthog/core/dist/metrics/types.mjs +0 -0
  61. package/node_modules/@posthog/core/dist/posthog-core-stateless.d.ts +2 -0
  62. package/node_modules/@posthog/core/dist/posthog-core-stateless.d.ts.map +1 -1
  63. package/node_modules/@posthog/core/dist/posthog-core-stateless.js +16 -1
  64. package/node_modules/@posthog/core/dist/posthog-core-stateless.mjs +16 -1
  65. package/node_modules/@posthog/core/package.json +2 -2
  66. package/node_modules/@posthog/core/src/index.ts +20 -0
  67. package/node_modules/@posthog/core/src/metrics/index.spec.ts +459 -0
  68. package/node_modules/@posthog/core/src/metrics/index.ts +414 -0
  69. package/node_modules/@posthog/core/src/metrics/metrics-utils.ts +100 -0
  70. package/node_modules/@posthog/core/src/metrics/types.ts +89 -0
  71. package/node_modules/@posthog/core/src/posthog-core-stateless.ts +26 -0
  72. package/node_modules/@posthog/types/dist/capture-metric.d.ts +122 -0
  73. package/node_modules/@posthog/types/dist/capture-metric.d.ts.map +1 -0
  74. package/node_modules/@posthog/types/dist/capture-metric.js +36 -0
  75. package/node_modules/@posthog/types/dist/capture-metric.mjs +2 -0
  76. package/node_modules/@posthog/types/dist/index.d.ts +3 -1
  77. package/node_modules/@posthog/types/dist/index.d.ts.map +1 -1
  78. package/node_modules/@posthog/types/dist/index.js +19 -1
  79. package/node_modules/@posthog/types/dist/index.mjs +2 -0
  80. package/node_modules/@posthog/types/dist/posthog-config.d.ts +60 -0
  81. package/node_modules/@posthog/types/dist/posthog-config.d.ts.map +1 -1
  82. package/node_modules/@posthog/types/package.json +1 -1
  83. package/node_modules/@posthog/types/src/capture-metric.ts +133 -0
  84. package/node_modules/@posthog/types/src/index.ts +17 -0
  85. package/node_modules/@posthog/types/src/posthog-config.ts +62 -0
  86. package/node_modules/@types/node/README.md +1 -1
  87. package/node_modules/@types/node/fs/promises.d.ts +16 -6
  88. package/node_modules/@types/node/package.json +2 -2
  89. package/node_modules/@zuplo/core/package.json +1 -1
  90. package/node_modules/@zuplo/graphql/package.json +1 -1
  91. package/node_modules/@zuplo/openapi-tools/package.json +1 -1
  92. package/node_modules/@zuplo/otel/package.json +1 -1
  93. package/node_modules/@zuplo/runtime/out/esm/{chunk-D3O7C43P.js → chunk-IC7XGD5C.js} +93 -93
  94. package/node_modules/@zuplo/runtime/out/esm/chunk-IC7XGD5C.js.map +1 -0
  95. package/node_modules/@zuplo/runtime/out/esm/index.js +1 -1
  96. package/node_modules/@zuplo/runtime/out/esm/index.js.map +1 -1
  97. package/node_modules/@zuplo/runtime/out/esm/mcp-gateway/index.js +9 -9
  98. package/node_modules/@zuplo/runtime/out/esm/mcp-gateway/index.js.map +1 -1
  99. package/node_modules/@zuplo/runtime/out/types/index.d.ts +830 -6
  100. package/node_modules/@zuplo/runtime/out/types/mcp-gateway/index.d.ts +30 -0
  101. package/node_modules/@zuplo/runtime/package.json +1 -1
  102. package/node_modules/lru-cache/dist/commonjs/browser/index.d.ts.map +1 -1
  103. package/node_modules/lru-cache/dist/commonjs/browser/index.js +11 -4
  104. package/node_modules/lru-cache/dist/commonjs/browser/index.js.map +1 -1
  105. package/node_modules/lru-cache/dist/commonjs/browser/index.min.js +1 -1
  106. package/node_modules/lru-cache/dist/commonjs/browser/index.min.js.map +3 -3
  107. package/node_modules/lru-cache/dist/commonjs/index.d.ts.map +1 -1
  108. package/node_modules/lru-cache/dist/commonjs/index.js +11 -4
  109. package/node_modules/lru-cache/dist/commonjs/index.js.map +1 -1
  110. package/node_modules/lru-cache/dist/commonjs/index.min.js +1 -1
  111. package/node_modules/lru-cache/dist/commonjs/index.min.js.map +3 -3
  112. package/node_modules/lru-cache/dist/commonjs/node/index.d.ts.map +1 -1
  113. package/node_modules/lru-cache/dist/commonjs/node/index.js +11 -4
  114. package/node_modules/lru-cache/dist/commonjs/node/index.js.map +1 -1
  115. package/node_modules/lru-cache/dist/commonjs/node/index.min.js +1 -1
  116. package/node_modules/lru-cache/dist/commonjs/node/index.min.js.map +3 -3
  117. package/node_modules/lru-cache/dist/esm/browser/index.d.ts.map +1 -1
  118. package/node_modules/lru-cache/dist/esm/browser/index.js +11 -4
  119. package/node_modules/lru-cache/dist/esm/browser/index.js.map +1 -1
  120. package/node_modules/lru-cache/dist/esm/browser/index.min.js +1 -1
  121. package/node_modules/lru-cache/dist/esm/browser/index.min.js.map +3 -3
  122. package/node_modules/lru-cache/dist/esm/index.d.ts.map +1 -1
  123. package/node_modules/lru-cache/dist/esm/index.js +11 -4
  124. package/node_modules/lru-cache/dist/esm/index.js.map +1 -1
  125. package/node_modules/lru-cache/dist/esm/index.min.js +1 -1
  126. package/node_modules/lru-cache/dist/esm/index.min.js.map +3 -3
  127. package/node_modules/lru-cache/dist/esm/node/index.d.ts.map +1 -1
  128. package/node_modules/lru-cache/dist/esm/node/index.js +11 -4
  129. package/node_modules/lru-cache/dist/esm/node/index.js.map +1 -1
  130. package/node_modules/lru-cache/dist/esm/node/index.min.js +1 -1
  131. package/node_modules/lru-cache/dist/esm/node/index.min.js.map +3 -3
  132. package/node_modules/lru-cache/package.json +1 -1
  133. package/package.json +6 -6
  134. package/node_modules/@zuplo/runtime/out/esm/chunk-D3O7C43P.js.map +0 -1
  135. /package/node_modules/@zuplo/runtime/out/esm/{chunk-D3O7C43P.js.LEGAL.txt → chunk-IC7XGD5C.js.LEGAL.txt} +0 -0
@@ -22,5 +22,5 @@
22
22
  * DEALINGS IN THE SOFTWARE.
23
23
  *--------------------------------------------------------------------------------------------*/
24
24
 
25
- import{$a as tr,$b as Ur,$d as cs,A as G,Aa as Ht,Ae as Rs,B as I,Ba as Pt,Be as qs,C as J,Ca as St,D as K,Da as Tt,E as M,Ea as Ut,F as N,Fa as $t,Fd as Rr,G as O,Ga as kt,Gd as qr,H as Q,Ha as Ft,Hd as vr,I as W,Ia as Lt,Id as zr,J as X,Ja as Rt,Jd as Gr,K as Y,Ka as qt,Kd as Ir,L as Z,La as vt,Ld as Jr,M as _,Ma as zt,Md as Kr,N as tt,Na as Gt,Nd as Mr,O as rt,Oa as It,Od as Nr,Pa as Jt,Pd as Or,Qa as Kt,Qd as Qr,Ra as Mt,Rd as Vr,Sa as Nt,Sd as Wr,Ta as Ot,Td as Xr,Ua as Qt,Ud as Yr,Va as Vt,Vd as Zr,Wa as Wt,Wb as Er,Wd as _r,Xa as Xt,Xb as Hr,Xd as ts,Ya as Yt,Yb as Pr,Yd as rs,Za as Zt,Zb as Sr,Zd as ss,_a as _t,_b as Tr,_d as es,a as x,ab as rr,ac as $r,ae as hs,b as y,ba as st,bb as sr,bc as kr,be as ms,c as w,ca as et,cb as er,cc as Fr,ce as gs,d as A,da as ot,db as or,dc as Lr,de as ds,e as b,ea as at,eb as ar,ee as us,f as l,fa as nt,fb as nr,fe as fs,g as j,ga as it,gb as ir,ge as xs,h as B,ha as pt,hb as pr,he as ys,i as n,ia as ct,ib as cr,ie as ws,j as C,ja as ht,jb as hr,je as As,k as D,ka as mt,kb as mr,ke as bs,l as E,la as gt,lb as gr,le as ls,m as H,ma as dt,mb as dr,me as js,n as P,na as ut,nb as ur,ne as Bs,o as S,oa as ft,ob as fr,oe as Cs,p as T,pa as xt,pb as xr,pe as Ds,q as U,qa as yt,qb as yr,qe as Es,r as $,ra as wt,rb as wr,re as Hs,sa as At,sb as Ar,se as Ps,t as k,ta as bt,tb as br,te as Ss,u as F,ua as lt,ub as lr,ue as Ts,v as L,va as jt,vb as jr,ve as Us,w as R,wa as Bt,wb as Br,we as $s,x as q,xa as Ct,xb as Cr,xe as ks,ya as Dt,yb as Dr,ye as Fs,z,za as Et,ze as Ls}from"./chunk-D3O7C43P.js";import{a as v,d as V,e as os,f as as,g as ns,h as is,i as ps}from"./chunk-4MNJC7E2.js";import"./chunk-4QJJMELB.js";import{_ as u,a as t,aa as a,ba as f}from"./chunk-DSZS6PZJ.js";var e=["sha-1","sha-256","sha-384","sha-512"],r=class{static{t(this,"BaseCryptoBeta")}};var o=class extends r{static{t(this,"WorkerCryptoBeta")}async digest(s,p){if(n("runtime.crypto-beta"),!e.includes(s.toLowerCase()))throw new a(`Algorithm ${s} is not supported. Try using ${e.join(", ")}`);let c=new TextEncoder().encode(p),h=await crypto.subtle.digest(s,c);return Array.from(new Uint8Array(h)).map(m=>m.toString(16).padStart(2,"0")).join("")}};export{Ft as AIGatewayAnthropicToOpenAIInboundPolicy,Lt as AIGatewayAuthInboundPolicy,X as AIGatewayMeteringInboundPolicy,Rt as AIGatewayOpenAIToAnthropicOutboundPolicy,qt as AIGatewaySemanticCacheInboundPolicy,zt as AIGatewaySemanticCacheOutboundPolicy,vt as AIGatewaySemanticCacheV2InboundPolicy,Gt as AIGatewayUsageTrackerPolicy,ht as AWSLoggingPlugin,It as AkamaiAIFirewallInboundPolicy,Jt as AkamaiAIFirewallV2InboundPolicy,Ht as AkamaiApiSecurityPlugin,Kt as AkamaiFirewallForAiInboundPolicy,Mt as AkamaiFirewallForAiOutboundPolicy,Ot as AmberfloMeteringInboundPolicy,Nt as AmberfloMeteringPolicy,Vt as ApiAuthKeyInboundPolicy,Rs as ApiKeyConsumerClient,Qt as ApiKeyInboundPolicy,jt as AuditLogDataStaxProvider,Wt as AuditLogInboundPolicy,Bt as AuditLogPlugin,Yt as Auth0JwtInboundPolicy,Zt as AuthZenInboundPolicy,Z as AwsLambdaHandlerExtensions,_t as AxiomaticsAuthZInboundPolicy,St as AzureBlobPlugin,Tt as AzureEventHubsRequestLoggerPlugin,Pt as BackgroundDispatcher,qs as BackgroundLoader,tr as BasicAuthInboundPolicy,Yr as BasicRateLimitInboundPolicy,q as BatchDispatch,rr as BrownoutInboundPolicy,sr as CachingInboundPolicy,er as ChangeMethodInboundPolicy,or as ClearHeadersInboundPolicy,ar as ClearHeadersOutboundPolicy,nr as ClerkJwtInboundPolicy,ir as CognitoJwtInboundPolicy,pr as CometOpikTracingInboundPolicy,cr as CometOpikTracingV2InboundPolicy,hr as ComplexRateLimitInboundPolicy,mr as CompositeInboundPolicy,gr as CompositeOutboundPolicy,f as ConfigurationError,L as ContentTypes,Q as ContextData,o as CryptoBeta,dr as CurityPhantomTokenInboundPolicy,J as DataDogLoggingPlugin,wt as DataDogMetricsPlugin,ur as DataLossPreventionInboundPolicy,fr as DataLossPreventionOutboundPolicy,mt as DynaTraceLoggingPlugin,At as DynatraceMetricsPlugin,xr as FirebaseJwtInboundPolicy,yr as FormDataToJsonInboundPolicy,wr as GalileoTracingInboundPolicy,Ar as GalileoTracingV2InboundPolicy,br as GeoFilterInboundPolicy,I as GoogleCloudLoggingPlugin,Br as GraphqlAnalyticsOutboundPolicy,W as Handler,Cr as HttpDeprecationOutboundPolicy,$ as HttpProblems,S as HttpStatusCode,$t as HydrolixRequestLoggerPlugin,z as InboundPolicy,Dr as JWTScopeValidationInboundPolicy,Ct as JwtServicePlugin,gt as LokiLoggingPlugin,M as LookupResult,Jr as MTLSAuthInboundPolicy,Rr as McpAuth0OAuthInboundPolicy,Er as McpClerkOAuthInboundPolicy,Hr as McpCognitoOAuthInboundPolicy,Pr as McpEntraOAuthInboundPolicy,Dt as McpGatewayOAuthProtectedResourcePlugin,Sr as McpGoogleOAuthInboundPolicy,Tr as McpKeycloakOAuthInboundPolicy,Ur as McpLogtoOAuthInboundPolicy,qr as McpOAuthInboundPolicy,$r as McpOktaOAuthInboundPolicy,kr as McpOneLoginOAuthInboundPolicy,Fr as McpPingOAuthInboundPolicy,Lr as McpWorkosOAuthInboundPolicy,E as MemoryZoneReadThroughCache,vr as MockApiInboundPolicy,Gr as MoesifInboundPolicy,Ir as MonetizationInboundPolicy,dt as NewRelicLoggingPlugin,bt as NewRelicMetricsPlugin,Et as OAuthProtectedResourcePlugin,lt as OTelMetricsPlugin,Kr as OktaFGAAuthZInboundPolicy,Mr as OktaJwtInboundPolicy,Nr as OpenFGAAuthZInboundPolicy,Xt as OpenIdJwtInboundPolicy,Or as OpenMeterInboundPolicy,G as OutboundPolicy,U as ProblemResponseFormatter,Qr as PromptInjectionDetectionOutboundPolicy,Vr as PropelAuthJwtInboundPolicy,Wr as QueryParamToHeaderInboundPolicy,Xr as QuotaInboundPolicy,Yr as RateLimitInboundPolicy,Zr as ReadmeMetricsInboundPolicy,_r as RemoveHeadersInboundPolicy,ts as RemoveHeadersOutboundPolicy,rs as RemoveQueryParamsInboundPolicy,ss as ReplaceStringOutboundPolicy,kt as RequestLoggerPlugin,es as RequestSizeLimitInboundPolicy,cs as RequestValidationInboundPolicy,ms as RequireOriginInboundPolicy,N as ResponseSendingEvent,O as ResponseSentEvent,a as RuntimeError,u as SYSTEM_LOGGER,hs as SchemaBasedRequestValidation,gs as SecretMaskingOutboundPolicy,P as SemanticAttributes,ds as SemanticCacheInboundPolicy,Ls as ServiceProviderImpl,us as SetBodyInboundPolicy,fs as SetHeadersInboundPolicy,xs as SetHeadersOutboundPolicy,ys as SetQueryParamsInboundPolicy,ws as SetStatusOutboundPolicy,As as SetUpstreamApiKeyInboundPolicy,bs as SleepInboundPolicy,ut as SplunkLoggingPlugin,H as StreamingZoneCache,ls as StripeWebhookVerificationInboundPolicy,ft as SumoLogicLoggingPlugin,js as SupabaseJwtInboundPolicy,v as SystemRouteName,k as TelemetryPlugin,Bs as TrafficSplittingInboundPolicy,Cs as UpstreamAzureAdServiceAuthInboundPolicy,Ds as UpstreamFirebaseAdminAuthInboundPolicy,Es as UpstreamFirebaseUserAuthInboundPolicy,Ps as UpstreamGcpFederatedAuthInboundPolicy,Ss as UpstreamGcpJwtInboundPolicy,Ts as UpstreamGcpServiceAuthInboundPolicy,Us as UpstreamZuploJwtAuthInboundPolicy,xt as VMWareLogInsightLoggingPlugin,$s as ValidateJsonSchemaInbound,ks as WebBotAuthInboundPolicy,Fs as XmlToJsonOutboundPolicy,D as ZoneCache,yt as ZuploMcpSdk,F as ZuploRequest,Hs as ZuploServices,Y as aiGatewayHandler,C as apiServices,_ as awsLambdaHandler,Ut as defaultGenerateHydrolixEntry,V as environment,l as extractAllText,lr as extractGraphqlErrors,B as extractStreamTextDelta,b as flattenMessageContent,x as getFormat,as as getIdForParameterSchema,is as getIdForRefSchema,ns as getIdForRequestBodySchema,os as getRawOperationDataIdentifierName,y as getRequestBody,w as getResponseBody,j as getStreamEvents,A as getUsage,T as httpStatuses,tt as legacyDevPortalHandler,st as mcpServerHandler,et as openApiSpecHandler,K as recordGraphqlCacheState,ot as redirectHandler,rt as redirectLegacyDevPortal,jr as responseHasGraphqlErrors,ps as sanitizedIdentifierName,R as serialize,zr as setMoesifContext,n as trackFeature,nt as urlForwardHandler,it as urlRewriteHandler,pt as webSocketHandler,ct as webSocketPipelineHandler,at as zuploServiceProxy};
25
+ import{$a as tr,$b as Ur,$d as cs,A as G,Aa as Ht,Ae as Rs,B as I,Ba as Pt,Be as qs,C as J,Ca as St,Ce as vs,D as K,Da as Tt,E as M,Ea as Ut,F as N,Fa as $t,Fd as Rr,G as O,Ga as kt,Gd as qr,H as Q,Ha as Ft,Hd as vr,I as W,Ia as Lt,Id as zr,J as X,Ja as Rt,Jd as Gr,K as Y,Ka as qt,Kd as Ir,L as Z,La as vt,Ld as Jr,M as _,Ma as zt,Md as Kr,N as tt,Na as Gt,Nd as Mr,O as rt,Oa as It,Od as Nr,Pa as Jt,Pd as Or,Qa as Kt,Qd as Qr,Ra as Mt,Rd as Vr,Sa as Nt,Sd as Wr,Ta as Ot,Td as Xr,Ua as Qt,Ud as Yr,Va as Vt,Vd as Zr,Wa as Wt,Wb as Er,Wd as _r,Xa as Xt,Xb as Hr,Xd as ts,Ya as Yt,Yb as Pr,Yd as rs,Za as Zt,Zb as Sr,Zd as ss,_a as _t,_b as Tr,_d as es,a as x,ab as rr,ac as $r,ae as hs,b as y,ba as st,bb as sr,bc as kr,be as ms,c as w,ca as et,cb as er,cc as Fr,ce as gs,d as A,da as ot,db as or,dc as Lr,de as ds,e as b,ea as at,eb as ar,ee as us,f as l,fa as nt,fb as nr,fe as fs,g as j,ga as it,gb as ir,ge as xs,h as B,ha as pt,hb as pr,he as ys,i as n,ia as ct,ib as cr,ie as ws,j as C,ja as ht,jb as hr,je as As,k as D,ka as mt,kb as mr,ke as bs,l as E,la as gt,lb as gr,le as ls,m as H,ma as dt,mb as dr,me as js,n as P,na as ut,nb as ur,ne as Bs,o as S,oa as ft,ob as fr,oe as Cs,p as T,pa as xt,pb as xr,pe as Ds,q as U,qa as yt,qb as yr,qe as Es,r as $,ra as wt,rb as wr,re as Hs,sa as At,sb as Ar,se as Ps,t as k,ta as bt,tb as br,te as Ss,u as F,ua as lt,ub as lr,ue as Ts,v as L,va as jt,vb as jr,ve as Us,w as R,wa as Bt,wb as Br,we as $s,x as q,xa as Ct,xb as Cr,xe as ks,ya as Dt,yb as Dr,ye as Fs,z,za as Et,ze as Ls}from"./chunk-IC7XGD5C.js";import{a as v,d as V,e as os,f as as,g as ns,h as is,i as ps}from"./chunk-4MNJC7E2.js";import"./chunk-4QJJMELB.js";import{_ as u,a as t,aa as a,ba as f}from"./chunk-DSZS6PZJ.js";var e=["sha-1","sha-256","sha-384","sha-512"],r=class{static{t(this,"BaseCryptoBeta")}};var o=class extends r{static{t(this,"WorkerCryptoBeta")}async digest(s,p){if(n("runtime.crypto-beta"),!e.includes(s.toLowerCase()))throw new a(`Algorithm ${s} is not supported. Try using ${e.join(", ")}`);let c=new TextEncoder().encode(p),h=await crypto.subtle.digest(s,c);return Array.from(new Uint8Array(h)).map(m=>m.toString(16).padStart(2,"0")).join("")}};export{Ft as AIGatewayAnthropicToOpenAIInboundPolicy,Lt as AIGatewayAuthInboundPolicy,X as AIGatewayMeteringInboundPolicy,Rt as AIGatewayOpenAIToAnthropicOutboundPolicy,qt as AIGatewaySemanticCacheInboundPolicy,zt as AIGatewaySemanticCacheOutboundPolicy,vt as AIGatewaySemanticCacheV2InboundPolicy,Gt as AIGatewayUsageTrackerPolicy,ht as AWSLoggingPlugin,It as AkamaiAIFirewallInboundPolicy,Jt as AkamaiAIFirewallV2InboundPolicy,Ht as AkamaiApiSecurityPlugin,Kt as AkamaiFirewallForAiInboundPolicy,Mt as AkamaiFirewallForAiOutboundPolicy,Ot as AmberfloMeteringInboundPolicy,Nt as AmberfloMeteringPolicy,Vt as ApiAuthKeyInboundPolicy,qs as ApiKeyConsumerClient,Qt as ApiKeyInboundPolicy,jt as AuditLogDataStaxProvider,Wt as AuditLogInboundPolicy,Bt as AuditLogPlugin,Yt as Auth0JwtInboundPolicy,Zt as AuthZenInboundPolicy,Z as AwsLambdaHandlerExtensions,_t as AxiomaticsAuthZInboundPolicy,St as AzureBlobPlugin,Tt as AzureEventHubsRequestLoggerPlugin,Pt as BackgroundDispatcher,vs as BackgroundLoader,tr as BasicAuthInboundPolicy,Yr as BasicRateLimitInboundPolicy,q as BatchDispatch,rr as BrownoutInboundPolicy,sr as CachingInboundPolicy,er as ChangeMethodInboundPolicy,or as ClearHeadersInboundPolicy,ar as ClearHeadersOutboundPolicy,nr as ClerkJwtInboundPolicy,ir as CognitoJwtInboundPolicy,pr as CometOpikTracingInboundPolicy,cr as CometOpikTracingV2InboundPolicy,hr as ComplexRateLimitInboundPolicy,mr as CompositeInboundPolicy,gr as CompositeOutboundPolicy,f as ConfigurationError,L as ContentTypes,Q as ContextData,o as CryptoBeta,dr as CurityPhantomTokenInboundPolicy,J as DataDogLoggingPlugin,wt as DataDogMetricsPlugin,ur as DataLossPreventionInboundPolicy,fr as DataLossPreventionOutboundPolicy,mt as DynaTraceLoggingPlugin,At as DynatraceMetricsPlugin,xr as FirebaseJwtInboundPolicy,yr as FormDataToJsonInboundPolicy,wr as GalileoTracingInboundPolicy,Ar as GalileoTracingV2InboundPolicy,br as GeoFilterInboundPolicy,I as GoogleCloudLoggingPlugin,Br as GraphqlAnalyticsOutboundPolicy,W as Handler,Cr as HttpDeprecationOutboundPolicy,$ as HttpProblems,S as HttpStatusCode,$t as HydrolixRequestLoggerPlugin,z as InboundPolicy,Dr as JWTScopeValidationInboundPolicy,Ct as JwtServicePlugin,gt as LokiLoggingPlugin,M as LookupResult,Jr as MTLSAuthInboundPolicy,Rr as McpAuth0OAuthInboundPolicy,Er as McpClerkOAuthInboundPolicy,Hr as McpCognitoOAuthInboundPolicy,Pr as McpEntraOAuthInboundPolicy,Dt as McpGatewayOAuthProtectedResourcePlugin,Sr as McpGoogleOAuthInboundPolicy,Tr as McpKeycloakOAuthInboundPolicy,Ur as McpLogtoOAuthInboundPolicy,qr as McpOAuthInboundPolicy,$r as McpOktaOAuthInboundPolicy,kr as McpOneLoginOAuthInboundPolicy,Fr as McpPingOAuthInboundPolicy,Lr as McpWorkosOAuthInboundPolicy,E as MemoryZoneReadThroughCache,vr as MockApiInboundPolicy,Gr as MoesifInboundPolicy,Ir as MonetizationInboundPolicy,dt as NewRelicLoggingPlugin,bt as NewRelicMetricsPlugin,Et as OAuthProtectedResourcePlugin,lt as OTelMetricsPlugin,Kr as OktaFGAAuthZInboundPolicy,Mr as OktaJwtInboundPolicy,Nr as OpenFGAAuthZInboundPolicy,Xt as OpenIdJwtInboundPolicy,Or as OpenMeterInboundPolicy,G as OutboundPolicy,U as ProblemResponseFormatter,Qr as PromptInjectionDetectionOutboundPolicy,Vr as PropelAuthJwtInboundPolicy,Wr as QueryParamToHeaderInboundPolicy,Xr as QuotaInboundPolicy,Yr as RateLimitInboundPolicy,Zr as ReadmeMetricsInboundPolicy,_r as RemoveHeadersInboundPolicy,ts as RemoveHeadersOutboundPolicy,rs as RemoveQueryParamsInboundPolicy,ss as ReplaceStringOutboundPolicy,kt as RequestLoggerPlugin,es as RequestSizeLimitInboundPolicy,cs as RequestValidationInboundPolicy,ms as RequireOriginInboundPolicy,gs as RequireUserClaimsInboundPolicy,N as ResponseSendingEvent,O as ResponseSentEvent,a as RuntimeError,u as SYSTEM_LOGGER,hs as SchemaBasedRequestValidation,ds as SecretMaskingOutboundPolicy,P as SemanticAttributes,us as SemanticCacheInboundPolicy,Rs as ServiceProviderImpl,fs as SetBodyInboundPolicy,xs as SetHeadersInboundPolicy,ys as SetHeadersOutboundPolicy,ws as SetQueryParamsInboundPolicy,As as SetStatusOutboundPolicy,bs as SetUpstreamApiKeyInboundPolicy,ls as SleepInboundPolicy,ut as SplunkLoggingPlugin,H as StreamingZoneCache,js as StripeWebhookVerificationInboundPolicy,ft as SumoLogicLoggingPlugin,Bs as SupabaseJwtInboundPolicy,v as SystemRouteName,k as TelemetryPlugin,Cs as TrafficSplittingInboundPolicy,Ds as UpstreamAzureAdServiceAuthInboundPolicy,Es as UpstreamFirebaseAdminAuthInboundPolicy,Hs as UpstreamFirebaseUserAuthInboundPolicy,Ss as UpstreamGcpFederatedAuthInboundPolicy,Ts as UpstreamGcpJwtInboundPolicy,Us as UpstreamGcpServiceAuthInboundPolicy,$s as UpstreamZuploJwtAuthInboundPolicy,xt as VMWareLogInsightLoggingPlugin,ks as ValidateJsonSchemaInbound,Fs as WebBotAuthInboundPolicy,Ls as XmlToJsonOutboundPolicy,D as ZoneCache,yt as ZuploMcpSdk,F as ZuploRequest,Ps as ZuploServices,Y as aiGatewayHandler,C as apiServices,_ as awsLambdaHandler,Ut as defaultGenerateHydrolixEntry,V as environment,l as extractAllText,lr as extractGraphqlErrors,B as extractStreamTextDelta,b as flattenMessageContent,x as getFormat,as as getIdForParameterSchema,is as getIdForRefSchema,ns as getIdForRequestBodySchema,os as getRawOperationDataIdentifierName,y as getRequestBody,w as getResponseBody,j as getStreamEvents,A as getUsage,T as httpStatuses,tt as legacyDevPortalHandler,st as mcpServerHandler,et as openApiSpecHandler,K as recordGraphqlCacheState,ot as redirectHandler,rt as redirectLegacyDevPortal,jr as responseHasGraphqlErrors,ps as sanitizedIdentifierName,R as serialize,zr as setMoesifContext,n as trackFeature,nt as urlForwardHandler,it as urlRewriteHandler,pt as webSocketHandler,ct as webSocketPipelineHandler,at as zuploServiceProxy};
26
26
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["@zuplo/runtime/crypto-beta.ts","@zuplo/runtime/platforms/worker/crypto-beta.ts"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;osDAIO,IAAMA,EAAmB,CAAC,QAAS,UAAW,UAAW,SAAS,EAKnDC,EAAf,KAA8B,CATrC,MASqC,CAAAC,EAAA,uBAErC,ECHO,IAAMC,EAAN,cAA+BC,CAAe,CARrD,MAQqD,CAAAC,EAAA,yBACnD,MAAM,OAAOC,EAAmBC,EAA+B,CAE7D,GADAC,EAAa,qBAAqB,EAC9B,CAACC,EAAiB,SAASH,EAAU,YAAY,CAAC,EACpD,MAAM,IAAII,EACR,aAAaJ,CAAS,gCAAgCG,EAAiB,KACrE,IACF,CAAC,EACH,EAEF,IAAME,EAAW,IAAI,YAAY,EAAE,OAAOJ,CAAI,EACxCK,EAAa,MAAM,OAAO,OAAO,OAAON,EAAWK,CAAQ,EAKjE,OAJkB,MAAM,KAAK,IAAI,WAAWC,CAAU,CAAC,EAEpD,IAAKC,GAAMA,EAAE,SAAS,EAAE,EAAE,SAAS,EAAG,GAAG,CAAC,EAC1C,KAAK,EAAE,CAEZ,CACF","names":["supportedDigests","BaseCryptoBeta","__name","WorkerCryptoBeta","BaseCryptoBeta","__name","algorithm","data","trackFeature","supportedDigests","RuntimeError","msgUint8","hashBuffer","b"]}
1
+ {"version":3,"sources":["@zuplo/runtime/crypto-beta.ts","@zuplo/runtime/platforms/worker/crypto-beta.ts"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;6sDAIO,IAAMA,EAAmB,CAAC,QAAS,UAAW,UAAW,SAAS,EAKnDC,EAAf,KAA8B,CATrC,MASqC,CAAAC,EAAA,uBAErC,ECHO,IAAMC,EAAN,cAA+BC,CAAe,CARrD,MAQqD,CAAAC,EAAA,yBACnD,MAAM,OAAOC,EAAmBC,EAA+B,CAE7D,GADAC,EAAa,qBAAqB,EAC9B,CAACC,EAAiB,SAASH,EAAU,YAAY,CAAC,EACpD,MAAM,IAAII,EACR,aAAaJ,CAAS,gCAAgCG,EAAiB,KACrE,IACF,CAAC,EACH,EAEF,IAAME,EAAW,IAAI,YAAY,EAAE,OAAOJ,CAAI,EACxCK,EAAa,MAAM,OAAO,OAAO,OAAON,EAAWK,CAAQ,EAKjE,OAJkB,MAAM,KAAK,IAAI,WAAWC,CAAU,CAAC,EAEpD,IAAKC,GAAMA,EAAE,SAAS,EAAE,EAAE,SAAS,EAAG,GAAG,CAAC,EAC1C,KAAK,EAAE,CAEZ,CACF","names":["supportedDigests","BaseCryptoBeta","__name","WorkerCryptoBeta","BaseCryptoBeta","__name","algorithm","data","trackFeature","supportedDigests","RuntimeError","msgUint8","hashBuffer","b"]}