@wso2/am-core-ui 0.0.18 → 0.0.19

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 (45) hide show
  1. package/dist/APIKeysManager-C0phJriD.js +241 -0
  2. package/dist/CatalogKindListing-DtFI2YMG.js +118 -0
  3. package/dist/CodeBlock-mB_Loq7I.js +21736 -0
  4. package/dist/EnvironmentCard-09h1XRxx.js +310 -0
  5. package/dist/EnvironmentSelector-B7Bl93s2.js +48 -0
  6. package/dist/MCPLogo-D9IJzzl7.js +30 -0
  7. package/dist/PolicyListSection-o4k9e8XO.js +2475 -0
  8. package/dist/ResourceListShell-Cx6mdeqv.js +463 -0
  9. package/dist/SwaggerSpecViewer-BvkhoKsi.js +106 -0
  10. package/dist/clipboard-YAzStmkw.js +23 -0
  11. package/dist/debounce-BV83M53b.js +208 -0
  12. package/dist/format-BEZZRyE2.js +29 -0
  13. package/dist/formatDistanceToNow-TErllcH8.js +100 -0
  14. package/dist/gatewayScripts-D8O45W8u.js +72 -0
  15. package/dist/highlight-BsUzxSR3.js +454 -0
  16. package/dist/index-B52h3RHg.js +1290 -0
  17. package/dist/index-BP5drcF2.js +1265 -0
  18. package/dist/index-BZ4vxviI.js +7981 -0
  19. package/dist/index-B_Z0MwXk.js +25012 -0
  20. package/dist/index-BfjzUWDa.js +1397 -0
  21. package/dist/{index-DYV1jEai.js → index-BnV-PkwM.js} +22 -20
  22. package/dist/index-CGDYgUCH.js +711 -0
  23. package/dist/index-COt7nJIf.js +2286 -0
  24. package/dist/index-CWZjOy1h.js +2247 -0
  25. package/dist/index-CezvogTQ.js +116 -0
  26. package/dist/index-CgCWbWzN.js +2342 -0
  27. package/dist/index-CjCkcuuI.js +322 -0
  28. package/dist/index-CjXvuf9m.js +1354 -0
  29. package/dist/index-DD4qF7gq.js +2340 -0
  30. package/dist/index-DeQ-9KTC.js +737 -0
  31. package/dist/index-Df6OBy4E.js +3041 -0
  32. package/dist/index-KRsV2L4V.js +1564 -0
  33. package/dist/index-PUuASE1F.js +2507 -0
  34. package/dist/index-PWsNvJB-.js +546 -0
  35. package/dist/index-UqDmyMSA.js +119 -0
  36. package/dist/index-_0Pj_ZtW.js +459 -0
  37. package/dist/{index-CnXsN5I3.js → index-sr-mWz4T.js} +31 -30
  38. package/dist/index.d.ts +496 -200
  39. package/dist/index.js +462 -439
  40. package/dist/llmProviderPayload-CzihkdNa.js +332 -0
  41. package/dist/schemas-DFScWdSL.js +2969 -0
  42. package/package.json +1 -1
  43. package/dist/index-B47EJCom.js +0 -236
  44. package/dist/index-Bl1Y7Sro.js +0 -3037
  45. package/dist/index-DlS9Lybj.js +0 -80691
package/dist/index.d.ts CHANGED
@@ -1,12 +1,13 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import { AsgardeoProviderProps } from '@asgardeo/react';
3
- import React$1, { ReactNode, ComponentType } from 'react';
3
+ import * as React$1 from 'react';
4
+ import React__default, { ReactNode, ComponentType } from 'react';
4
5
  import { BoxProps, TextFieldProps, DrawerProps, SnackbarProps } from '@wso2/oxygen-ui';
5
6
  import { LucideProps } from '@wso2/oxygen-ui-icons-react';
6
7
  import { z } from 'zod';
7
8
 
8
9
  interface MainActionPanelProps extends Omit<BoxProps, 'children'> {
9
- children: React$1.ReactNode;
10
+ children: React__default.ReactNode;
10
11
  className?: string;
11
12
  variant?: 'elevated' | 'outlined' | 'filled';
12
13
  elevation?: number;
@@ -36,7 +37,7 @@ interface NoDataFoundProps {
36
37
  message?: string;
37
38
  action?: ReactNode;
38
39
  icon?: ReactNode;
39
- iconElement?: React$1.ForwardRefExoticComponent<Omit<LucideProps, 'ref'> & React$1.RefAttributes<SVGSVGElement>>;
40
+ iconElement?: React__default.ForwardRefExoticComponent<Omit<LucideProps, 'ref'> & React__default.RefAttributes<SVGSVGElement>>;
40
41
  subtitle?: string;
41
42
  disableBackground?: boolean;
42
43
  }
@@ -494,7 +495,28 @@ interface AppConfig {
494
495
  /** Path to the AMP instrumentation version mapping section. */
495
496
  versionMapping?: string;
496
497
  };
498
+ /** Feature flags. All default to false (disabled) unless explicitly enabled. */
499
+ featureFlags?: FeatureFlags;
497
500
  }
501
+ type FeatureFlags = {
502
+ /** Shows the private Git repository option when building agents from source. */
503
+ enablePrivateRepoSupport?: boolean;
504
+ /**
505
+ * When true, identity provider management calls the REST API directly instead of
506
+ * rendering the self-hosted manage-identity-provider.sh script snippet.
507
+ */
508
+ enableIdentityProviderManagedMode?: boolean;
509
+ /**
510
+ * When false, the Profile Settings text fields and Save Changes button are
511
+ * hidden/disabled, and the Change Password tab is disabled.
512
+ */
513
+ enableProfileManagement?: boolean;
514
+ /**
515
+ * When false, the Add User, Invite User, Create Role, and Create Group
516
+ * buttons on the Settings page are disabled.
517
+ */
518
+ enableUserManagement?: boolean;
519
+ };
498
520
  type GuardrailCapabilities = {
499
521
  /** Unlocks: aws-bedrock-guardrail */
500
522
  awsBedrock?: boolean;
@@ -583,6 +605,22 @@ declare const generatedRouteMap: {
583
605
  path: string;
584
606
  wildPath: string;
585
607
  children: {
608
+ profile: {
609
+ path: string;
610
+ wildPath: string;
611
+ children: {};
612
+ };
613
+ thunderInstances: {
614
+ path: string;
615
+ wildPath: string;
616
+ children: {
617
+ view: {
618
+ path: string;
619
+ wildPath: string;
620
+ children: {};
621
+ };
622
+ };
623
+ };
586
624
  gateways: {
587
625
  path: string;
588
626
  wildPath: string;
@@ -626,37 +664,54 @@ declare const generatedRouteMap: {
626
664
  };
627
665
  };
628
666
  };
629
- identities: {
667
+ settings: {
630
668
  path: string;
631
669
  wildPath: string;
632
670
  children: {
633
- users: {
671
+ identities: {
634
672
  path: string;
635
673
  wildPath: string;
636
674
  children: {
637
- detail: {
675
+ users: {
638
676
  path: string;
639
677
  wildPath: string;
640
- children: {};
678
+ children: {
679
+ detail: {
680
+ path: string;
681
+ wildPath: string;
682
+ children: {};
683
+ };
684
+ };
641
685
  };
642
- };
643
- };
644
- roles: {
645
- path: string;
646
- wildPath: string;
647
- children: {
648
- detail: {
686
+ roles: {
649
687
  path: string;
650
688
  wildPath: string;
651
- children: {};
689
+ children: {
690
+ detail: {
691
+ path: string;
692
+ wildPath: string;
693
+ children: {};
694
+ };
695
+ };
696
+ };
697
+ groups: {
698
+ path: string;
699
+ wildPath: string;
700
+ children: {
701
+ detail: {
702
+ path: string;
703
+ wildPath: string;
704
+ children: {};
705
+ };
706
+ };
652
707
  };
653
708
  };
654
709
  };
655
- groups: {
710
+ appearance: {
656
711
  path: string;
657
712
  wildPath: string;
658
713
  children: {
659
- detail: {
714
+ theme: {
660
715
  path: string;
661
716
  wildPath: string;
662
717
  children: {};
@@ -710,7 +765,13 @@ declare const generatedRouteMap: {
710
765
  environments: {
711
766
  path: string;
712
767
  wildPath: string;
713
- children: {};
768
+ children: {
769
+ view: {
770
+ path: string;
771
+ wildPath: string;
772
+ children: {};
773
+ };
774
+ };
714
775
  };
715
776
  catalog: {
716
777
  path: string;
@@ -1063,6 +1124,17 @@ interface ErrorResponse {
1063
1124
  description?: string;
1064
1125
  additionalData?: Record<string, unknown>;
1065
1126
  }
1127
+ interface APIKeyInfo {
1128
+ name: string;
1129
+ displayName?: string;
1130
+ maskedApiKey: string;
1131
+ status: string;
1132
+ createdAt: string;
1133
+ expiresAt?: string;
1134
+ }
1135
+ interface ListAPIKeysResponse {
1136
+ keys: APIKeyInfo[];
1137
+ }
1066
1138
  interface OrgPathParams {
1067
1139
  orgName: string | undefined;
1068
1140
  }
@@ -1231,10 +1303,21 @@ interface UpstreamEndpoint {
1231
1303
  url?: string;
1232
1304
  ref?: string;
1233
1305
  auth?: UpstreamAuth;
1306
+ /**
1307
+ * Environment UUIDs this endpoint serves. UUIDs (not names) are stored so the
1308
+ * mapping survives environment renames. Used by MCP proxies that configure a
1309
+ * separate upstream per environment; empty for the classic main/sandbox shape.
1310
+ */
1311
+ environments?: string[];
1234
1312
  }
1235
1313
  interface UpstreamConfig {
1236
1314
  main?: UpstreamEndpoint;
1237
1315
  sandbox?: UpstreamEndpoint;
1316
+ /**
1317
+ * Per-environment upstream endpoints. When present, `main` is derived from these
1318
+ * server-side for backwards compatibility.
1319
+ */
1320
+ endpoints?: UpstreamEndpoint[];
1238
1321
  }
1239
1322
  type AccessControlMode = "allow_all" | "deny_all";
1240
1323
  interface RouteException {
@@ -1295,7 +1378,7 @@ interface LLMRateLimitingConfig {
1295
1378
  providerLevel?: RateLimitingScopeConfig;
1296
1379
  consumerLevel?: RateLimitingScopeConfig;
1297
1380
  }
1298
- type APIKeyLocation = "header" | "query" | "cookie";
1381
+ type APIKeyLocation = "header" | "query";
1299
1382
  interface APIKeySecurity {
1300
1383
  enabled?: boolean;
1301
1384
  key?: string;
@@ -1517,12 +1600,14 @@ interface LLMProviderAPIKeyPathParams extends LLMProviderPathParams {
1517
1600
  type CreateLLMProviderAPIKeyPathParams = LLMProviderPathParams;
1518
1601
  type RotateLLMProviderAPIKeyPathParams = LLMProviderAPIKeyPathParams;
1519
1602
  type RevokeLLMProviderAPIKeyPathParams = LLMProviderAPIKeyPathParams;
1603
+ type ListLLMProviderAPIKeysPathParams = LLMProviderPathParams;
1520
1604
  interface LLMProxyAPIKeyPathParams extends LLMProxyPathParams {
1521
1605
  keyName: string | undefined;
1522
1606
  }
1523
1607
  type CreateLLMProxyAPIKeyPathParams = LLMProxyPathParams;
1524
1608
  type RotateLLMProxyAPIKeyPathParams = LLMProxyAPIKeyPathParams;
1525
1609
  type RevokeLLMProxyAPIKeyPathParams = LLMProxyAPIKeyPathParams;
1610
+ type ListLLMProxyAPIKeysPathParams = LLMProxyPathParams;
1526
1611
  type LLMProviderConsumerType = "agent" | "monitor";
1527
1612
  interface LLMProviderConsumerItem {
1528
1613
  proxyId: string;
@@ -1655,6 +1740,21 @@ type GetAgentModelConfigPathParams = AgentModelConfigRequiredPathParams;
1655
1740
  type UpdateAgentModelConfigPathParams = AgentModelConfigRequiredPathParams;
1656
1741
  type DeleteAgentModelConfigPathParams = AgentModelConfigRequiredPathParams;
1657
1742
  type ListAgentModelConfigsQuery = ListQuery;
1743
+ interface LLMConfigAPIKeysPathParams extends AgentPathParams {
1744
+ configId: string | undefined;
1745
+ envName: string | undefined;
1746
+ }
1747
+ interface LLMConfigAPIKeyPathParams extends LLMConfigAPIKeysPathParams {
1748
+ keyName: string | undefined;
1749
+ }
1750
+ type ListLLMConfigAPIKeysPathParams = LLMConfigAPIKeysPathParams;
1751
+ type CreateLLMConfigAPIKeyPathParams = LLMConfigAPIKeysPathParams;
1752
+ type RotateLLMConfigAPIKeyPathParams = LLMConfigAPIKeyPathParams;
1753
+ type RevokeLLMConfigAPIKeyPathParams = LLMConfigAPIKeyPathParams;
1754
+ type CreateLLMConfigAPIKeyRequest = CreateLLMAPIKeyRequest;
1755
+ type CreateLLMConfigAPIKeyResponse = CreateLLMAPIKeyResponse;
1756
+ type RotateLLMConfigAPIKeyRequest = RotateLLMAPIKeyRequest;
1757
+ type RotateLLMConfigAPIKeyResponse = RotateLLMAPIKeyResponse;
1658
1758
 
1659
1759
  /**
1660
1760
  * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
@@ -1698,6 +1798,21 @@ type GetAgentMCPConfigPathParams = AgentMCPConfigRequiredPathParams;
1698
1798
  type UpdateAgentMCPConfigPathParams = UpdateAgentModelConfigPathParams;
1699
1799
  type DeleteAgentMCPConfigPathParams = DeleteAgentModelConfigPathParams;
1700
1800
  type ListAgentMCPConfigsQuery = ListAgentModelConfigsQuery;
1801
+ interface MCPConfigAPIKeysPathParams extends AgentPathParams {
1802
+ configId: string | undefined;
1803
+ envName: string | undefined;
1804
+ }
1805
+ interface MCPConfigAPIKeyPathParams extends MCPConfigAPIKeysPathParams {
1806
+ keyName: string | undefined;
1807
+ }
1808
+ type ListMCPConfigAPIKeysPathParams = MCPConfigAPIKeysPathParams;
1809
+ type CreateMCPConfigAPIKeyPathParams = MCPConfigAPIKeysPathParams;
1810
+ type RotateMCPConfigAPIKeyPathParams = MCPConfigAPIKeyPathParams;
1811
+ type RevokeMCPConfigAPIKeyPathParams = MCPConfigAPIKeyPathParams;
1812
+ type CreateMCPConfigAPIKeyRequest = CreateLLMAPIKeyRequest;
1813
+ type CreateMCPConfigAPIKeyResponse = CreateLLMAPIKeyResponse;
1814
+ type RotateMCPConfigAPIKeyRequest = RotateLLMAPIKeyRequest;
1815
+ type RotateMCPConfigAPIKeyResponse = RotateLLMAPIKeyResponse;
1701
1816
 
1702
1817
  /**
1703
1818
  * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
@@ -1727,6 +1842,9 @@ interface CreateAgentAPIKeyResponse {
1727
1842
  message: string;
1728
1843
  keyId?: string;
1729
1844
  apiKey?: string;
1845
+ /** False when the environment's gateway had no live websocket connection
1846
+ * at creation time; the key only activates once the gateway reconnects. */
1847
+ gatewayConnected?: boolean;
1730
1848
  }
1731
1849
  interface RotateAgentAPIKeyRequest {
1732
1850
  displayName?: string;
@@ -1737,6 +1855,9 @@ interface RotateAgentAPIKeyResponse {
1737
1855
  message: string;
1738
1856
  keyId?: string;
1739
1857
  apiKey?: string;
1858
+ /** False when the environment's gateway had no live websocket connection
1859
+ * at rotation time; the new key only activates once the gateway reconnects. */
1860
+ gatewayConnected?: boolean;
1740
1861
  }
1741
1862
  interface AgentAPIKeyListItem {
1742
1863
  uuid: string;
@@ -1765,6 +1886,9 @@ interface IssueTestAgentAPIKeyResponse {
1765
1886
  keyId?: string;
1766
1887
  apiKey?: string;
1767
1888
  expiresAt: string;
1889
+ /** False when the environment's gateway had no live websocket connection
1890
+ * at issuance time; the key only activates once the gateway reconnects. */
1891
+ gatewayConnected?: boolean;
1768
1892
  }
1769
1893
 
1770
1894
  /**
@@ -2074,6 +2198,171 @@ type GetAgentBuildsPathParams = AgentPathParams;
2074
2198
  type GetBuildPathParams = BuildPathParams;
2075
2199
  type GetAgentBuildsQuery = ListQuery;
2076
2200
 
2201
+ /**
2202
+ * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
2203
+ *
2204
+ * WSO2 LLC. licenses this file to you under the Apache License,
2205
+ * Version 2.0 (the "License"); you may not use this file except
2206
+ * in compliance with the License.
2207
+ * You may obtain a copy of the License at
2208
+ *
2209
+ * http://www.apache.org/licenses/LICENSE-2.0
2210
+ *
2211
+ * Unless required by applicable law or agreed to in writing,
2212
+ * software distributed under the License is distributed on an
2213
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
2214
+ * KIND, either express or implied. See the License for the
2215
+ * specific language governing permissions and limitations
2216
+ * under the License.
2217
+ */
2218
+
2219
+ type GatewayType = "AI" | "REGULAR";
2220
+ type GatewayStatus = "ACTIVE" | "INACTIVE" | "PROVISIONING" | "ERROR";
2221
+ interface GatewayListenerSpec {
2222
+ port?: number;
2223
+ host?: string;
2224
+ }
2225
+ interface GatewayEndpointSpec {
2226
+ http?: GatewayListenerSpec;
2227
+ https?: GatewayListenerSpec;
2228
+ tls?: GatewayListenerSpec;
2229
+ }
2230
+ interface GatewayNetworkSpec {
2231
+ external?: GatewayEndpointSpec;
2232
+ internal?: GatewayEndpointSpec;
2233
+ }
2234
+ /**
2235
+ * Gateway configuration with ingress and egress network specs, sourced from
2236
+ * the underlying OpenChoreo environment.
2237
+ */
2238
+ interface GatewaySpec {
2239
+ ingress?: GatewayNetworkSpec;
2240
+ egress?: GatewayNetworkSpec;
2241
+ }
2242
+ interface GatewayEnvironmentResponse {
2243
+ id: string;
2244
+ organizationName: string;
2245
+ name: string;
2246
+ displayName: string;
2247
+ description?: string;
2248
+ dataplaneRef: string;
2249
+ dnsPrefix: string;
2250
+ isProduction: boolean;
2251
+ gateway?: GatewaySpec;
2252
+ createdAt: string;
2253
+ updatedAt: string;
2254
+ }
2255
+ interface GatewayResponse {
2256
+ uuid: string;
2257
+ organizationName: string;
2258
+ name: string;
2259
+ displayName: string;
2260
+ gatewayType: GatewayType;
2261
+ vhost: string;
2262
+ region?: string;
2263
+ isCritical: boolean;
2264
+ status: GatewayStatus;
2265
+ createdAt: string;
2266
+ updatedAt: string;
2267
+ environments?: GatewayEnvironmentResponse[];
2268
+ }
2269
+ interface GatewayListResponse extends PaginationMeta {
2270
+ gateways: GatewayResponse[];
2271
+ }
2272
+ interface CreateGatewayRequest {
2273
+ name: string;
2274
+ displayName: string;
2275
+ gatewayType: GatewayType;
2276
+ vhost: string;
2277
+ region?: string;
2278
+ isCritical?: boolean;
2279
+ environmentIds?: string[];
2280
+ }
2281
+ interface UpdateGatewayRequest {
2282
+ displayName?: string;
2283
+ isCritical?: boolean;
2284
+ status?: GatewayStatus;
2285
+ }
2286
+ interface ListGatewaysQuery extends ListQuery {
2287
+ type?: GatewayType;
2288
+ status?: GatewayStatus;
2289
+ environment?: string;
2290
+ }
2291
+ type ListGatewaysPathParams = OrgPathParams;
2292
+ type CreateGatewayPathParams = OrgPathParams;
2293
+ interface GatewayPathParams extends OrgPathParams {
2294
+ gatewayId: string | undefined;
2295
+ }
2296
+ type GetGatewayPathParams = GatewayPathParams;
2297
+ type UpdateGatewayPathParams = GatewayPathParams;
2298
+ type DeleteGatewayPathParams = GatewayPathParams;
2299
+ type IdentityProviderType = "system" | "custom";
2300
+ interface IdentityProvider {
2301
+ name: string;
2302
+ issuer?: string;
2303
+ jwksUri?: string;
2304
+ skipTlsVerify?: boolean;
2305
+ description?: string;
2306
+ /** "system" providers (e.g. ThunderKeyManager) cannot be deleted. */
2307
+ type?: IdentityProviderType;
2308
+ /** Set on org-wide listing: the environment this provider's gateway is mapped to. */
2309
+ environmentName?: string;
2310
+ /** Set on org-wide listing: the gateway this provider is registered to. */
2311
+ gatewayId?: string;
2312
+ gatewayName?: string;
2313
+ }
2314
+ interface IdentityProviderListResponse {
2315
+ count: number;
2316
+ list: IdentityProvider[];
2317
+ }
2318
+ type ListIdentityProvidersPathParams = OrgPathParams;
2319
+ interface UpsertIdentityProviderPathParams extends OrgPathParams {
2320
+ gatewayId: string;
2321
+ /** Identity provider name (taken from the path; not part of the request body). */
2322
+ name: string;
2323
+ }
2324
+ /** Request body for creating or updating a gateway identity provider. */
2325
+ interface UpsertIdentityProviderRequest {
2326
+ issuer: string;
2327
+ jwksUri: string;
2328
+ skipTlsVerify?: boolean;
2329
+ description?: string;
2330
+ }
2331
+ interface DeleteIdentityProviderPathParams extends OrgPathParams {
2332
+ gatewayId: string;
2333
+ name: string;
2334
+ }
2335
+ /** Issuer metadata resolved from an OpenID Connect discovery document. */
2336
+ interface OidcDiscoveryResponse {
2337
+ issuer: string;
2338
+ jwksUri: string;
2339
+ }
2340
+ type DiscoverOidcPathParams = OrgPathParams;
2341
+ interface DiscoverOidcQuery {
2342
+ /** Issuer base URL or full .well-known/openid-configuration URL. */
2343
+ url: string;
2344
+ }
2345
+ interface ListEnvironmentIdentityProvidersPathParams extends OrgPathParams {
2346
+ environmentId: string | undefined;
2347
+ }
2348
+ interface GatewayTokenInfo {
2349
+ id: string;
2350
+ status: "active" | "revoked";
2351
+ createdAt: string;
2352
+ revokedAt?: string | null;
2353
+ }
2354
+ interface GatewayTokenListResponse {
2355
+ count: number;
2356
+ list: GatewayTokenInfo[];
2357
+ }
2358
+ interface GatewayTokenResponse {
2359
+ gatewayId: string;
2360
+ token: string;
2361
+ tokenId: string;
2362
+ createdAt: string;
2363
+ expiresAt?: string;
2364
+ }
2365
+
2077
2366
  /**
2078
2367
  * Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
2079
2368
  *
@@ -2106,6 +2395,11 @@ interface DeployAgentRequest {
2106
2395
  interface UpdateAgentDeploySettingsRequest {
2107
2396
  environmentName: string;
2108
2397
  enableAutoInstrumentation?: boolean;
2398
+ /**
2399
+ * AMP instrumentation version to pin for this Python buildpack agent in this
2400
+ * environment. Omit to keep the currently-pinned version.
2401
+ */
2402
+ instrumentationVersion?: string;
2109
2403
  enableApiKeySecurity?: boolean;
2110
2404
  enableOAuthSecurity?: boolean;
2111
2405
  corsConfig?: CorsConfig;
@@ -2177,6 +2471,7 @@ interface Environment {
2177
2471
  displayName?: string;
2178
2472
  isProduction: boolean;
2179
2473
  dnsPrefix?: string;
2474
+ gateway?: GatewaySpec;
2180
2475
  createdAt: string;
2181
2476
  id?: string;
2182
2477
  }
@@ -2243,6 +2538,11 @@ interface PromoteAgentRequest {
2243
2538
  env?: EnvironmentVariable[];
2244
2539
  files?: FileMount[];
2245
2540
  enableAutoInstrumentation?: boolean;
2541
+ /**
2542
+ * AMP instrumentation version to pin for this Python buildpack agent in the
2543
+ * target environment. Omit to inherit the currently-pinned version.
2544
+ */
2545
+ instrumentationVersion?: string;
2246
2546
  enableApiKeySecurity?: boolean;
2247
2547
  enableOAuthSecurity?: boolean;
2248
2548
  corsConfig?: CorsConfig;
@@ -2286,6 +2586,10 @@ interface UpdateEnvironmentPathParams {
2286
2586
  orgName: string | undefined;
2287
2587
  envName: string | undefined;
2288
2588
  }
2589
+ type GetEnvironmentPathParams = {
2590
+ orgName: string | undefined;
2591
+ envName: string | undefined;
2592
+ };
2289
2593
  interface CreateEnvironmentRequest {
2290
2594
  name: string;
2291
2595
  displayName: string;
@@ -2944,21 +3248,38 @@ interface MCPPolicyAvailabilityResponse {
2944
3248
  count: number;
2945
3249
  list: MCPPolicyAvailableItem[];
2946
3250
  }
3251
+ /**
3252
+ * MCPEnvironmentConfig is one per-environment blueprint block on an org-level MCP proxy,
3253
+ * stored in MCPProxy.environments keyed by environment UUID. upstream holds the single
3254
+ * backend endpoint (URL + auth) for that environment.
3255
+ */
3256
+ interface MCPEnvironmentConfig {
3257
+ upstream?: UpstreamEndpoint;
3258
+ policies?: MCPProxyPolicy[];
3259
+ capabilities?: MCPProxyCapabilities;
3260
+ security?: SecurityConfig;
3261
+ /**
3262
+ * Response-only indicator of whether this environment's single gateway artifact is
3263
+ * currently deployed ("Deployed") or not ("Undeployed"). Computed on read; never sent.
3264
+ */
3265
+ deploymentStatus?: string;
3266
+ }
3267
+ /**
3268
+ * MCPProxy is an org-level blueprint. Name/version/context/vhost/mcpSpecVersion are shared
3269
+ * across environments; per-environment upstream, policies, capabilities and security live in
3270
+ * environments, keyed by environment UUID. The blueprint deploys nothing to any gateway.
3271
+ */
2947
3272
  interface MCPProxy {
2948
3273
  id: string;
2949
3274
  inCatalog?: boolean;
2950
3275
  name: string;
2951
3276
  version: string;
2952
- upstream: UpstreamConfig;
2953
3277
  description?: string;
2954
3278
  createdBy?: string;
2955
3279
  context?: string;
2956
3280
  vhost?: string;
2957
- gateways?: string[];
2958
3281
  mcpSpecVersion?: string;
2959
- policies?: MCPProxyPolicy[];
2960
- capabilities?: MCPProxyCapabilities;
2961
- security?: SecurityConfig;
3282
+ environments: Record<string, MCPEnvironmentConfig>;
2962
3283
  createdAt?: string;
2963
3284
  updatedAt?: string;
2964
3285
  }
@@ -3009,16 +3330,6 @@ type ListMCPProxiesPathParams = OrgPathParams;
3009
3330
  type ListAvailableMCPPoliciesPathParams = OrgPathParams;
3010
3331
  type ListMCPProxiesQuery = ListQuery;
3011
3332
  type FetchMCPProxyServerInfoPathParams = OrgPathParams;
3012
- interface MCPProxyAPIKeyPathParams extends GetMCPProxyPathParams {
3013
- keyName: string;
3014
- }
3015
- type CreateMCPProxyAPIKeyPathParams = GetMCPProxyPathParams;
3016
- type RotateMCPProxyAPIKeyPathParams = MCPProxyAPIKeyPathParams;
3017
- type RevokeMCPProxyAPIKeyPathParams = MCPProxyAPIKeyPathParams;
3018
- type CreateMCPProxyAPIKeyRequest = CreateLLMAPIKeyRequest;
3019
- type CreateMCPProxyAPIKeyResponse = CreateLLMAPIKeyResponse;
3020
- type RotateMCPProxyAPIKeyRequest = RotateLLMAPIKeyRequest;
3021
- type RotateMCPProxyAPIKeyResponse = RotateLLMAPIKeyResponse;
3022
3333
 
3023
3334
  /**
3024
3335
  * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
@@ -3062,149 +3373,6 @@ interface AddAgentMCPProxyRequest {
3062
3373
  type ListAgentMCPProxiesPathParams = AgentPathParams;
3063
3374
  type AddAgentMCPProxyPathParams = AgentPathParams;
3064
3375
 
3065
- /**
3066
- * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
3067
- *
3068
- * WSO2 LLC. licenses this file to you under the Apache License,
3069
- * Version 2.0 (the "License"); you may not use this file except
3070
- * in compliance with the License.
3071
- * You may obtain a copy of the License at
3072
- *
3073
- * http://www.apache.org/licenses/LICENSE-2.0
3074
- *
3075
- * Unless required by applicable law or agreed to in writing,
3076
- * software distributed under the License is distributed on an
3077
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
3078
- * KIND, either express or implied. See the License for the
3079
- * specific language governing permissions and limitations
3080
- * under the License.
3081
- */
3082
-
3083
- type GatewayType = "AI" | "REGULAR";
3084
- type GatewayStatus = "ACTIVE" | "INACTIVE" | "PROVISIONING" | "ERROR";
3085
- interface GatewayEnvironmentResponse {
3086
- id: string;
3087
- organizationName: string;
3088
- name: string;
3089
- displayName: string;
3090
- description?: string;
3091
- dataplaneRef: string;
3092
- dnsPrefix: string;
3093
- isProduction: boolean;
3094
- createdAt: string;
3095
- updatedAt: string;
3096
- }
3097
- interface GatewayResponse {
3098
- uuid: string;
3099
- organizationName: string;
3100
- name: string;
3101
- displayName: string;
3102
- gatewayType: GatewayType;
3103
- vhost: string;
3104
- region?: string;
3105
- isCritical: boolean;
3106
- status: GatewayStatus;
3107
- createdAt: string;
3108
- updatedAt: string;
3109
- environments?: GatewayEnvironmentResponse[];
3110
- }
3111
- interface GatewayListResponse extends PaginationMeta {
3112
- gateways: GatewayResponse[];
3113
- }
3114
- interface CreateGatewayRequest {
3115
- name: string;
3116
- displayName: string;
3117
- gatewayType: GatewayType;
3118
- vhost: string;
3119
- region?: string;
3120
- isCritical?: boolean;
3121
- environmentIds?: string[];
3122
- }
3123
- interface UpdateGatewayRequest {
3124
- displayName?: string;
3125
- isCritical?: boolean;
3126
- status?: GatewayStatus;
3127
- }
3128
- interface ListGatewaysQuery extends ListQuery {
3129
- type?: GatewayType;
3130
- status?: GatewayStatus;
3131
- environment?: string;
3132
- }
3133
- type ListGatewaysPathParams = OrgPathParams;
3134
- type CreateGatewayPathParams = OrgPathParams;
3135
- interface GatewayPathParams extends OrgPathParams {
3136
- gatewayId: string | undefined;
3137
- }
3138
- type GetGatewayPathParams = GatewayPathParams;
3139
- type UpdateGatewayPathParams = GatewayPathParams;
3140
- type DeleteGatewayPathParams = GatewayPathParams;
3141
- type IdentityProviderType = "system" | "custom";
3142
- interface IdentityProvider {
3143
- name: string;
3144
- issuer?: string;
3145
- jwksUri?: string;
3146
- skipTlsVerify?: boolean;
3147
- description?: string;
3148
- /** "system" providers (e.g. ThunderKeyManager) cannot be deleted. */
3149
- type?: IdentityProviderType;
3150
- /** Set on org-wide listing: the environment this provider's gateway is mapped to. */
3151
- environmentName?: string;
3152
- /** Set on org-wide listing: the gateway this provider is registered to. */
3153
- gatewayId?: string;
3154
- gatewayName?: string;
3155
- }
3156
- interface IdentityProviderListResponse {
3157
- count: number;
3158
- list: IdentityProvider[];
3159
- }
3160
- type ListIdentityProvidersPathParams = OrgPathParams;
3161
- interface UpsertIdentityProviderPathParams extends OrgPathParams {
3162
- gatewayId: string;
3163
- /** Identity provider name (taken from the path; not part of the request body). */
3164
- name: string;
3165
- }
3166
- /** Request body for creating or updating a gateway identity provider. */
3167
- interface UpsertIdentityProviderRequest {
3168
- issuer: string;
3169
- jwksUri: string;
3170
- skipTlsVerify?: boolean;
3171
- description?: string;
3172
- }
3173
- interface DeleteIdentityProviderPathParams extends OrgPathParams {
3174
- gatewayId: string;
3175
- name: string;
3176
- }
3177
- /** Issuer metadata resolved from an OpenID Connect discovery document. */
3178
- interface OidcDiscoveryResponse {
3179
- issuer: string;
3180
- jwksUri: string;
3181
- }
3182
- type DiscoverOidcPathParams = OrgPathParams;
3183
- interface DiscoverOidcQuery {
3184
- /** Issuer base URL or full .well-known/openid-configuration URL. */
3185
- url: string;
3186
- }
3187
- interface ListEnvironmentIdentityProvidersPathParams extends OrgPathParams {
3188
- environmentId: string | undefined;
3189
- }
3190
- interface GatewayTokenInfo {
3191
- id: string;
3192
- status: "active" | "revoked";
3193
- createdAt: string;
3194
- revokedAt?: string | null;
3195
- }
3196
- interface GatewayTokenListResponse {
3197
- count: number;
3198
- list: GatewayTokenInfo[];
3199
- }
3200
- interface GatewayTokenResponse {
3201
- gatewayId: string;
3202
- token: string;
3203
- tokenId: string;
3204
- createdAt: string;
3205
- expiresAt?: string;
3206
- }
3207
-
3208
3376
  /**
3209
3377
  * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
3210
3378
  *
@@ -3480,6 +3648,38 @@ type ListKindAgentsPathParams = OrgPathParams & {
3480
3648
  };
3481
3649
  type ListAgentKindsQuery = ListQuery;
3482
3650
 
3651
+ /**
3652
+ * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
3653
+ *
3654
+ * WSO2 LLC. licenses this file to you under the Apache License,
3655
+ * Version 2.0 (the "License"); you may not use this file except
3656
+ * in compliance with the License.
3657
+ * You may obtain a copy of the License at
3658
+ *
3659
+ * http://www.apache.org/licenses/LICENSE-2.0
3660
+ *
3661
+ * Unless required by applicable law or agreed to in writing,
3662
+ * software distributed under the License is distributed on an
3663
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
3664
+ * KIND, either express or implied. See the License for the
3665
+ * specific language governing permissions and limitations
3666
+ * under the License.
3667
+ */
3668
+
3669
+ interface ThunderInstanceResponse {
3670
+ envName: string;
3671
+ displayName: string;
3672
+ isProduction: boolean;
3673
+ issuerUrl: string;
3674
+ tokenUrl: string;
3675
+ jwksUrl: string;
3676
+ namespace: string;
3677
+ }
3678
+ interface ThunderInstanceListResponse {
3679
+ thunderInstances: ThunderInstanceResponse[];
3680
+ }
3681
+ type ListThunderInstancesPathParams = OrgPathParams;
3682
+
3483
3683
  /**
3484
3684
  * Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
3485
3685
  *
@@ -3702,7 +3902,7 @@ interface MarkdownViewProps {
3702
3902
  }
3703
3903
  declare function MarkdownView({ content }: MarkdownViewProps): react_jsx_runtime.JSX.Element;
3704
3904
 
3705
- type LogoProps = React$1.SVGProps<SVGSVGElement>;
3905
+ type LogoProps = React__default.SVGProps<SVGSVGElement>;
3706
3906
  declare function Logo(props: LogoProps): react_jsx_runtime.JSX.Element;
3707
3907
 
3708
3908
  interface LogsPanelProps {
@@ -3757,8 +3957,8 @@ interface SnackBarMessage extends Omit<SnackbarProps, 'open' | 'message' | 'chil
3757
3957
  interface SnackBarContextType {
3758
3958
  pushSnackBar: (message: Omit<SnackBarMessage, 'id'>) => void;
3759
3959
  }
3760
- declare const SnackBarProvider: React$1.FC<{
3761
- children: React$1.ReactNode;
3960
+ declare const SnackBarProvider: React__default.FC<{
3961
+ children: React__default.ReactNode;
3762
3962
  }>;
3763
3963
  declare const useSnackBar: () => SnackBarContextType;
3764
3964
 
@@ -3793,10 +3993,6 @@ interface ExternalComponentModule extends ExternalModuleCore {
3793
3993
  component: React.ComponentType<Record<string, unknown>>;
3794
3994
  kind: 'component';
3795
3995
  }
3796
- interface ExternalConfigModule extends ExternalModuleCore {
3797
- value: object;
3798
- kind: 'config';
3799
- }
3800
3996
  interface ExternalNavItem extends ExternalModuleCore {
3801
3997
  icon: React.ReactNode;
3802
3998
  title: string;
@@ -3805,7 +4001,7 @@ interface ExternalNavItem extends ExternalModuleCore {
3805
4001
  level: 'project' | 'org' | 'component';
3806
4002
  kind: 'nav-item';
3807
4003
  }
3808
- type ExternalModule = ExternalPageModule | ExternalComponentModule | ExternalNavItem | ExternalConfigModule;
4004
+ type ExternalModule = ExternalPageModule | ExternalComponentModule | ExternalNavItem;
3809
4005
  interface ModuleContextValue {
3810
4006
  externalPageModules: ExternalModule[];
3811
4007
  }
@@ -3816,7 +4012,6 @@ interface ModuleProviderProps {
3816
4012
  declare function ExternalModuleProvider({ children, externalPageModules, }: ModuleProviderProps): react_jsx_runtime.JSX.Element;
3817
4013
  declare function useAllModuleContext(): ModuleContextValue;
3818
4014
  declare function useExternalPageModules(): ExternalPageModule[];
3819
- declare function useExternalConfigModules(mountPoint?: string): ExternalConfigModule[];
3820
4015
  declare function useExternalComponentModules(id?: string): ExternalComponentModule[];
3821
4016
  declare function useExternalNavItems(): ExternalNavItem[];
3822
4017
  declare function useExternalPageModuleByMountPoint(mountPoint: string): ExternalModule | undefined;
@@ -3851,15 +4046,25 @@ interface TimeRangeSelectorProps {
3851
4046
  onPresetChange: (value: string) => void;
3852
4047
  onCustomRangeApply: (startISO: string, endISO: string) => void;
3853
4048
  }
3854
- declare const TimeRangeSelector: React$1.FC<TimeRangeSelectorProps>;
4049
+ declare const TimeRangeSelector: React__default.FC<TimeRangeSelectorProps>;
3855
4050
 
3856
- type ExternalAgentIconProps = React$1.SVGProps<SVGSVGElement>;
4051
+ interface PageHeaderContextValue {
4052
+ header?: ReactNode;
4053
+ setHeader: (header?: ReactNode) => void;
4054
+ }
4055
+ declare const PageHeaderContext: React$1.Context<PageHeaderContextValue>;
4056
+ declare function PageHeaderProvider({ children }: {
4057
+ children: ReactNode;
4058
+ }): react_jsx_runtime.JSX.Element;
4059
+ declare function usePageHeader(header?: ReactNode): void;
4060
+
4061
+ type ExternalAgentIconProps = React__default.SVGProps<SVGSVGElement>;
3857
4062
  declare function ExternalAgentIcon(props: ExternalAgentIconProps): react_jsx_runtime.JSX.Element;
3858
4063
 
3859
- type InternalAgentIconProps = React$1.SVGProps<SVGSVGElement>;
4064
+ type InternalAgentIconProps = React__default.SVGProps<SVGSVGElement>;
3860
4065
  declare function InternalAgentIcon(props: InternalAgentIconProps): react_jsx_runtime.JSX.Element;
3861
4066
 
3862
- interface BuildpackIconProps extends React$1.SVGProps<SVGSVGElement> {
4067
+ interface BuildpackIconProps extends React__default.SVGProps<SVGSVGElement> {
3863
4068
  language?: string;
3864
4069
  }
3865
4070
  declare function BuildpackIcon(props: BuildpackIconProps): react_jsx_runtime.JSX.Element;
@@ -3959,6 +4164,42 @@ declare const useTimeRangeParams: (searchParams: URLSearchParams, setSearchParam
3959
4164
  handleCustomRangeClear: () => void;
3960
4165
  };
3961
4166
 
4167
+ /**
4168
+ * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
4169
+ *
4170
+ * WSO2 LLC. licenses this file to you under the Apache License,
4171
+ * Version 2.0 (the "License"); you may not use this file except
4172
+ * in compliance with the License. You may obtain a copy of the License at
4173
+ *
4174
+ * http://www.apache.org/licenses/LICENSE-2.0
4175
+ *
4176
+ * Unless required by applicable law or agreed to in writing,
4177
+ * software distributed under the License is distributed on an
4178
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
4179
+ * KIND, either express or implied. See the License for the
4180
+ * specific language governing permissions and limitations
4181
+ * under the License.
4182
+ */
4183
+
4184
+ type AppThemeKey = "acrylic-orange" | "acrylic-purple" | "pale-gray" | "high-contrast";
4185
+ interface AppThemeOption {
4186
+ key: AppThemeKey;
4187
+ label: string;
4188
+ /** Representative primary color for the preview swatch. */
4189
+ color: string;
4190
+ description: string;
4191
+ }
4192
+ declare const APP_THEME_OPTIONS: AppThemeOption[];
4193
+ interface AppThemeContextValue {
4194
+ themeKey: AppThemeKey;
4195
+ themeObject: any;
4196
+ setThemeKey: (key: AppThemeKey) => void;
4197
+ }
4198
+ declare const AppThemeProvider: React__default.FC<{
4199
+ children: ReactNode;
4200
+ }>;
4201
+ declare const useAppTheme: () => AppThemeContextValue;
4202
+
3962
4203
  /**
3963
4204
  * Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
3964
4205
  *
@@ -4139,12 +4380,17 @@ declare function createAgentModelConfig(params: CreateAgentModelConfigPathParams
4139
4380
  declare function getAgentModelConfig(params: GetAgentModelConfigPathParams, getToken?: () => Promise<string>): Promise<AgentModelConfigResponse>;
4140
4381
  declare function updateAgentModelConfig(params: UpdateAgentModelConfigPathParams, body: UpdateAgentModelConfigRequest, getToken?: () => Promise<string>): Promise<AgentModelConfigResponse>;
4141
4382
  declare function deleteAgentModelConfig(params: DeleteAgentModelConfigPathParams, getToken?: () => Promise<string>): Promise<void>;
4383
+ declare function listLLMConfigAPIKeys(params: ListLLMConfigAPIKeysPathParams, getToken?: () => Promise<string>): Promise<ListAPIKeysResponse>;
4384
+ declare function createLLMConfigAPIKey(params: CreateLLMConfigAPIKeyPathParams, body: CreateLLMConfigAPIKeyRequest, getToken?: () => Promise<string>): Promise<CreateLLMConfigAPIKeyResponse>;
4385
+ declare function rotateLLMConfigAPIKey(params: RotateLLMConfigAPIKeyPathParams, body: RotateLLMConfigAPIKeyRequest, getToken?: () => Promise<string>): Promise<RotateLLMConfigAPIKeyResponse>;
4386
+ declare function revokeLLMConfigAPIKey(params: RevokeLLMConfigAPIKeyPathParams, getToken?: () => Promise<string>): Promise<void>;
4142
4387
  declare function normalizeAgentModelConfigResponse(raw: AgentModelConfigResponse & {
4143
4388
  envModelConfig?: Record<string, {
4144
4389
  environmentName: string;
4145
4390
  llmProxy?: {
4146
4391
  proxyUrl?: string;
4147
4392
  proxyUuid?: string;
4393
+ proxyName?: string;
4148
4394
  providerName?: string;
4149
4395
  policies?: unknown[];
4150
4396
  apiKey?: string;
@@ -4176,6 +4422,10 @@ declare function createAgentMCPConfig(params: CreateAgentMCPConfigPathParams, bo
4176
4422
  declare function getAgentMCPConfig(params: GetAgentMCPConfigPathParams, getToken?: () => Promise<string>): Promise<AgentMCPConfigResponse>;
4177
4423
  declare function updateAgentMCPConfig(params: UpdateAgentMCPConfigPathParams, body: UpdateAgentMCPConfigRequest, getToken?: () => Promise<string>): Promise<AgentMCPConfigResponse>;
4178
4424
  declare function deleteAgentMCPConfig(params: DeleteAgentMCPConfigPathParams, getToken?: () => Promise<string>): Promise<void>;
4425
+ declare function listMCPConfigAPIKeys(params: ListMCPConfigAPIKeysPathParams, getToken?: () => Promise<string>): Promise<ListAPIKeysResponse>;
4426
+ declare function createMCPConfigAPIKey(params: CreateMCPConfigAPIKeyPathParams, body: CreateMCPConfigAPIKeyRequest, getToken?: () => Promise<string>): Promise<CreateMCPConfigAPIKeyResponse>;
4427
+ declare function rotateMCPConfigAPIKey(params: RotateMCPConfigAPIKeyPathParams, body: RotateMCPConfigAPIKeyRequest, getToken?: () => Promise<string>): Promise<RotateMCPConfigAPIKeyResponse>;
4428
+ declare function revokeMCPConfigAPIKey(params: RevokeMCPConfigAPIKeyPathParams, getToken?: () => Promise<string>): Promise<void>;
4179
4429
 
4180
4430
  /**
4181
4431
  * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
@@ -4303,6 +4553,7 @@ declare function promoteAgent(params: PromoteAgentPathParams, body: PromoteAgent
4303
4553
  declare function createDeploymentPipeline(params: CreateDeploymentPipelinePathParams, body: CreateDeploymentPipelineRequest, getToken?: () => Promise<string>): Promise<DeploymentPipelineResponse>;
4304
4554
  declare function updateOrgDeploymentPipeline(params: UpdateOrgDeploymentPipelinePathParams, body: UpdateDeploymentPipelineRequest, getToken?: () => Promise<string>): Promise<DeploymentPipelineResponse>;
4305
4555
  declare function deleteDeploymentPipeline(params: DeleteDeploymentPipelinePathParams, getToken?: () => Promise<string>): Promise<void>;
4556
+ declare function getEnvironment(params: GetEnvironmentPathParams, getToken?: () => Promise<string>): Promise<Environment>;
4306
4557
  declare function updateEnvironment(params: UpdateEnvironmentPathParams, body: UpdateEnvironmentRequest, getToken?: () => Promise<string>): Promise<Environment>;
4307
4558
  declare function createEnvironment(params: CreateEnvironmentPathParams, body: CreateEnvironmentRequest, getToken?: () => Promise<string>): Promise<Environment>;
4308
4559
  declare function deleteEnvironment(params: DeleteEnvironmentPathParams, getToken?: () => Promise<string>): Promise<void>;
@@ -4592,9 +4843,11 @@ declare function undeployLLMProvider(params: UndeployLLMProviderPathParams, quer
4592
4843
  declare function restoreLLMDeployment(params: RestoreLLMDeploymentPathParams, query: RestoreLLMDeploymentQuery, getToken?: () => Promise<string>): Promise<LLMDeploymentResponse>;
4593
4844
  declare function getLLMDeployment(params: GetLLMDeploymentPathParams, getToken?: () => Promise<string>): Promise<LLMDeploymentResponse>;
4594
4845
  declare function deleteLLMDeployment(params: DeleteLLMDeploymentPathParams, getToken?: () => Promise<string>): Promise<void>;
4846
+ declare function listLLMProviderAPIKeys(params: ListLLMProviderAPIKeysPathParams, getToken?: () => Promise<string>): Promise<ListAPIKeysResponse>;
4595
4847
  declare function createLLMProviderAPIKey(params: CreateLLMProviderAPIKeyPathParams, body: CreateLLMAPIKeyRequest, getToken?: () => Promise<string>): Promise<CreateLLMAPIKeyResponse>;
4596
4848
  declare function rotateLLMProviderAPIKey(params: RotateLLMProviderAPIKeyPathParams, body: RotateLLMAPIKeyRequest, getToken?: () => Promise<string>): Promise<RotateLLMAPIKeyResponse>;
4597
4849
  declare function revokeLLMProviderAPIKey(params: RevokeLLMProviderAPIKeyPathParams, getToken?: () => Promise<string>): Promise<void>;
4850
+ declare function listLLMProxyAPIKeys(params: ListLLMProxyAPIKeysPathParams, getToken?: () => Promise<string>): Promise<ListAPIKeysResponse>;
4598
4851
  declare function createLLMProxyAPIKey(params: CreateLLMProxyAPIKeyPathParams, body: CreateLLMAPIKeyRequest, getToken?: () => Promise<string>): Promise<CreateLLMAPIKeyResponse>;
4599
4852
  declare function rotateLLMProxyAPIKey(params: RotateLLMProxyAPIKeyPathParams, body: RotateLLMAPIKeyRequest, getToken?: () => Promise<string>): Promise<RotateLLMAPIKeyResponse>;
4600
4853
  declare function revokeLLMProxyAPIKey(params: RevokeLLMProxyAPIKeyPathParams, getToken?: () => Promise<string>): Promise<void>;
@@ -4624,9 +4877,6 @@ declare function getMCPProxy(params: GetMCPProxyPathParams, getToken?: () => Pro
4624
4877
  declare function updateMCPProxy(params: UpdateMCPProxyPathParams, body: MCPProxy, getToken?: () => Promise<string>): Promise<MCPProxy>;
4625
4878
  declare function deleteMCPProxy(params: DeleteMCPProxyPathParams, getToken?: () => Promise<string>): Promise<void>;
4626
4879
  declare function fetchMCPProxyServerInfo(params: FetchMCPProxyServerInfoPathParams, body: MCPServerInfoFetchRequest, getToken?: () => Promise<string>): Promise<MCPServerInfoFetchResponse>;
4627
- declare function createMCPProxyAPIKey(params: CreateMCPProxyAPIKeyPathParams, body: CreateMCPProxyAPIKeyRequest, getToken?: () => Promise<string>): Promise<CreateMCPProxyAPIKeyResponse>;
4628
- declare function rotateMCPProxyAPIKey(params: RotateMCPProxyAPIKeyPathParams, body: RotateMCPProxyAPIKeyRequest, getToken?: () => Promise<string>): Promise<RotateMCPProxyAPIKeyResponse>;
4629
- declare function revokeMCPProxyAPIKey(params: RevokeMCPProxyAPIKeyPathParams, getToken?: () => Promise<string>): Promise<void>;
4630
4880
 
4631
4881
  /**
4632
4882
  * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
@@ -4807,6 +5057,26 @@ declare function removeRoleAssignees(params: RolePathParams, body: RoleUserGroup
4807
5057
  declare function updateUserProfile(params: UserPathParams, body: UpdateUserRequest, getToken?: () => Promise<string>): Promise<ThunderUser>;
4808
5058
  declare function listAMPPermissions(params: IdentityOrgPathParams, getToken?: () => Promise<string>): Promise<AMPPermissionsResponse>;
4809
5059
 
5060
+ /**
5061
+ * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
5062
+ *
5063
+ * WSO2 LLC. licenses this file to you under the Apache License,
5064
+ * Version 2.0 (the "License"); you may not use this file except
5065
+ * in compliance with the License.
5066
+ * You may obtain a copy of the License at
5067
+ *
5068
+ * http://www.apache.org/licenses/LICENSE-2.0
5069
+ *
5070
+ * Unless required by applicable law or agreed to in writing,
5071
+ * software distributed under the License is distributed on an
5072
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
5073
+ * KIND, either express or implied. See the License for the
5074
+ * specific language governing permissions and limitations
5075
+ * under the License.
5076
+ */
5077
+
5078
+ declare function listThunderInstances(params: ListThunderInstancesPathParams, getToken?: () => Promise<string>): Promise<ThunderInstanceListResponse>;
5079
+
4810
5080
  /**
4811
5081
  * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
4812
5082
  *
@@ -4912,6 +5182,10 @@ declare function useGetAgentModelConfig(params: AgentModelConfigPathParams): Que
4912
5182
  declare function useCreateAgentModelConfig(): any;
4913
5183
  declare function useUpdateAgentModelConfig(): any;
4914
5184
  declare function useDeleteAgentModelConfig(): any;
5185
+ declare function useListLLMConfigAPIKeys(params: ListLLMConfigAPIKeysPathParams): QueryObserverResult<TData, TError>;
5186
+ declare function useCreateLLMConfigAPIKey(): any;
5187
+ declare function useRotateLLMConfigAPIKey(): any;
5188
+ declare function useRevokeLLMConfigAPIKey(): any;
4915
5189
 
4916
5190
  /**
4917
5191
  * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
@@ -4936,6 +5210,10 @@ declare function useGetAgentMCPConfig(params: AgentMCPConfigPathParams): QueryOb
4936
5210
  declare function useCreateAgentMCPConfig(): any;
4937
5211
  declare function useUpdateAgentMCPConfig(): any;
4938
5212
  declare function useDeleteAgentMCPConfig(): any;
5213
+ declare function useListMCPConfigAPIKeys(params: ListMCPConfigAPIKeysPathParams): QueryObserverResult<TData, TError>;
5214
+ declare function useCreateMCPConfigAPIKey(): any;
5215
+ declare function useRotateMCPConfigAPIKey(): any;
5216
+ declare function useRevokeMCPConfigAPIKey(): any;
4939
5217
 
4940
5218
  /**
4941
5219
  * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
@@ -5059,6 +5337,7 @@ declare function useListAgentDeployments(params: ListAgentDeploymentsPathParams,
5059
5337
  declare function useGetAgentEndpoints(params: GetAgentEndpointsPathParams, query: EnvironmentQuery): QueryObserverResult<TData, TError>;
5060
5338
  declare function useGetAgentConfigurations(params: GetAgentConfigurationsPathParams, query: EnvironmentQuery): QueryObserverResult<TData, TError>;
5061
5339
  declare function useListEnvironments(params: ListEnvironmentsPathParams): QueryObserverResult<TData, TError>;
5340
+ declare function useGetEnvironment(params: GetEnvironmentPathParams): QueryObserverResult<TData, TError>;
5062
5341
  declare function useGetDeploymentPipeline(params: GetDeploymentPipelinePathParams): QueryObserverResult<TData, TError>;
5063
5342
  declare function useListDeploymentPipelines(params: ListDeploymentPipelinesPathParams, query?: ListDeploymentPipelinesQuery, options?: {
5064
5343
  enabled?: boolean;
@@ -5392,9 +5671,11 @@ declare function useUndeployLLMProvider(): any;
5392
5671
  declare function useRestoreLLMDeployment(): any;
5393
5672
  declare function useDeleteLLMDeployment(): any;
5394
5673
  declare function useListLLMProviderConsumers(params: ListLLMProviderConsumersPathParams): QueryObserverResult<TData, TError>;
5674
+ declare function useListLLMProviderAPIKeys(params: ListLLMProviderAPIKeysPathParams): QueryObserverResult<TData, TError>;
5395
5675
  declare function useCreateLLMProviderAPIKey(): any;
5396
5676
  declare function useRotateLLMProviderAPIKey(): any;
5397
5677
  declare function useRevokeLLMProviderAPIKey(): any;
5678
+ declare function useListLLMProxyAPIKeys(params: ListLLMProxyAPIKeysPathParams): QueryObserverResult<TData, TError>;
5398
5679
  declare function useCreateLLMProxyAPIKey(): any;
5399
5680
  declare function useRotateLLMProxyAPIKey(): any;
5400
5681
  declare function useRevokeLLMProxyAPIKey(): any;
@@ -5422,9 +5703,6 @@ declare function useGetMCPProxy(params: GetMCPProxyPathParams): QueryObserverRes
5422
5703
  declare function useUpdateMCPProxy(): any;
5423
5704
  declare function useDeleteMCPProxy(): any;
5424
5705
  declare function useFetchMCPProxyServerInfo(): any;
5425
- declare function useCreateMCPProxyAPIKey(): any;
5426
- declare function useRotateMCPProxyAPIKey(): any;
5427
- declare function useRevokeMCPProxyAPIKey(): any;
5428
5706
 
5429
5707
  /**
5430
5708
  * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
@@ -5730,6 +6008,26 @@ declare function useListKindAgents(params: ListKindAgentsPathParams): QueryObser
5730
6008
 
5731
6009
  declare function useAgentBuildOptions(params: AgentBuildOptionsPathParams): QueryObserverResult<TData, TError>;
5732
6010
 
6011
+ /**
6012
+ * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
6013
+ *
6014
+ * WSO2 LLC. licenses this file to you under the Apache License,
6015
+ * Version 2.0 (the "License"); you may not use this file except
6016
+ * in compliance with the License.
6017
+ * You may obtain a copy of the License at
6018
+ *
6019
+ * http://www.apache.org/licenses/LICENSE-2.0
6020
+ *
6021
+ * Unless required by applicable law or agreed to in writing,
6022
+ * software distributed under the License is distributed on an
6023
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
6024
+ * KIND, either express or implied. See the License for the
6025
+ * specific language governing permissions and limitations
6026
+ * under the License.
6027
+ */
6028
+
6029
+ declare function useListThunderInstances(params: ListThunderInstancesPathParams): QueryObserverResult<TData, TError>;
6030
+
5733
6031
  /**
5734
6032
  * Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
5735
6033
  *
@@ -5792,11 +6090,9 @@ declare enum MountPoints {
5792
6090
  BottomLeftPanel = "bottom-left-panel",
5793
6091
  BottomRightPanel = "bottom-right-panel",
5794
6092
  LeftNavItem = "left-nav-item",
5795
- PrivateRepoSupport = "private-repo-support",
5796
- IdentityProviderMode = "identity-provider-mode",
5797
6093
  EnvironmentCreateDrawer = "environment-create-drawer",
5798
6094
  EnvironmentDeleteDrawer = "environment-delete-drawer"
5799
6095
  }
5800
6096
 
5801
- export { AuthProvider, BUILD_STATUS_COLOR_MAP, BackgoundLoader, BuildpackIcon, ClientProvider, CoreUI, DrawerContent, DrawerHeader, DrawerWrapper, EnvVariableEditor, ExternalAgentIcon, ExternalModuleProvider, FadeIn, FileMountEditor, FullPageLoader, InternalAgentIcon, JSONView, Logo, LogsPanel, MainActionPanel, MarkdownView, MountPoints, NoDataFound, PageLayout, SelectionDrawer, SelectionIndicator, SnackBarProvider, SpanIcon, TextInput, TimeRangeSelector, TraceExplorer, TraceListTimeRange, generatedRouteMap as absoluteRouteMap, addAgentKindVersion, addAgentMCPProxy, addGroupMembers, addRoleAssignees, addRolePermissions, agentKindKeys, assignGatewayToEnvironment, buildAgent, createAgent, createAgentAPIKey, createAgentMCPConfig, createAgentModelConfig, createCustomEvaluator, createDeploymentPipeline, createEnvironment, createGateway, createGitSecret, createGroup, createLLMDeployment, createLLMProvider, createLLMProviderAPIKey, createLLMProviderTemplate, createLLMProxy, createLLMProxyAPIKey, createMCPProxy, createMCPProxyAPIKey, createMonitor, createOrganization, createProject, createRole, createUser, deleteAgent, deleteAgentKind, deleteAgentKindVersion, deleteAgentMCPConfig, deleteAgentModelConfig, deleteCustomEvaluator, deleteDeploymentPipeline, deleteEnvironment, deleteGateway, deleteGitSecret, deleteGroup, deleteIdentityProvider, deleteLLMDeployment, deleteLLMProvider, deleteLLMProviderTemplate, deleteLLMProxy, deleteMCPProxy, deleteMonitor, deleteProject, deleteRole, deleteUser, deployAgent, discoverOidc, displayProvisionTypes, exportTraces, fetchMCPProxyServerInfo, filterAgentRuntimeLogs, filterGuardrailPolicies, formatTraceWindow, generateAgentToken, generateResourceName, getAgent, getAgentBuildOptions, getAgentBuilds, getAgentConfigurations, getAgentEndpoints, getAgentKind, getAgentKindVersion, getAgentMCPConfig, getAgentMetrics, getAgentModelConfig, getAgentResourceConfigs, getAgentTraceScores, getBuild, getBuildLogs, getCustomEvaluator, getDeploymentPipeline, getEvaluator, getGateway, getGitSecret, getGroup, getGroupMembers, getGroupRoles, getGroupedScores, getLLMDeployment, getLLMProvider, getLLMProviderTemplate, getLLMProxy, getMCPProxy, getMonitor, getMonitorRunLogs, getMonitorRunScores, getMonitorScores, getMonitorScoresTimeSeries, getOrganization, getProject, getRole, getRoleAssignments, getSpanDetail, getTimeRange, getTraceList, getTraceScores, getUser, getUserGroups, getUserProfile, getUserRoles, globalConfig, inviteUser, issueTestAgentAPIKey, listAMPPermissions, listAgentAPIKeys, listAgentDeployments, listAgentKindVersions, listAgentKinds, listAgentMCPConfigs, listAgentMCPProxies, listAgentModelConfigs, listAgents, listAvailableMCPPolicies, listBranches, listCatalogLLMProviders, listCommits, listDataPlanes, listDeploymentPipelines, listEnvironmentIdentityProviders, listEnvironments, listEvaluators, listGatewayTokens, listGateways, listGitSecrets, listGroups, listIdentityProviders, listKindAgents, listLLMDeployments, listLLMProviderConsumers, listLLMProviderProxies, listLLMProviderTemplates, listLLMProviders, listLLMProxies, listMCPProxies, listMonitorRuns, listMonitors, listOrganizations, listProjects, listRoles, listTraceSpans, listUsers, normalizeAgentModelConfigResponse, normalizePolicyVersionToPolicyHubMinor, promoteAgent, publishAgentKind, rootRouteMap as relativeRouteMap, removeGatewayFromEnvironment, removeGroupMembers, removeRoleAssignees, removeRolePermissions, rerunMonitor, restoreLLMDeployment, revokeAgentAPIKey, revokeGatewayToken, revokeLLMProviderAPIKey, revokeLLMProxyAPIKey, revokeMCPProxyAPIKey, rotateAgentAPIKey, rotateGatewayToken, rotateLLMProviderAPIKey, rotateLLMProxyAPIKey, rotateMCPProxyAPIKey, scoreColor, startMonitor, stopMonitor, undeployLLMProvider, updateAgent, updateAgentBuildParameters, updateAgentConfigurations, updateAgentDeploySettings, updateAgentKind, updateAgentMCPConfig, updateAgentModelConfig, updateAgentResourceConfigs, updateCustomEvaluator, updateDeploymentState, updateEnvironment, updateGateway, updateGroup, updateLLMProvider, updateLLMProviderCatalog, updateLLMProviderTemplate, updateLLMProxy, updateMCPProxy, updateMonitor, updateOrgDeploymentPipeline, updateProject, updateRole, updateUser, updateUserProfile, upsertIdentityProvider, useAddAgentKindVersion, useAddAgentMCPProxy, useAddGroupMembers, useAddRoleAssignees, useAddRolePermissions, useAgentBuildOptions, useAgentRuntimeLogs, useAgentTraceScores, useAllGroupMemberIds, useAllGroups, useAllModuleContext, useAllUsers, useAssignGatewayToEnvironment, useAuthHooks, useBuildAgent, useConfirmationDialog, useCreateAgent, useCreateAgentAPIKey, useCreateAgentMCPConfig, useCreateAgentModelConfig, useCreateCustomEvaluator, useCreateDeploymentPipeline, useCreateEnvironment, useCreateGateway, useCreateGitSecret, useCreateGroup, useCreateLLMDeployment, useCreateLLMProvider, useCreateLLMProviderAPIKey, useCreateLLMProviderTemplate, useCreateLLMProxy, useCreateLLMProxyAPIKey, useCreateMCPProxy, useCreateMCPProxyAPIKey, useCreateMonitor, useCreateOrganization, useCreateProject, useCreateRole, useCreateUser, useDeleteAgent, useDeleteAgentKind, useDeleteAgentKindVersion, useDeleteAgentMCPConfig, useDeleteAgentModelConfig, useDeleteCustomEvaluator, useDeleteDeploymentPipeline, useDeleteEnvironment, useDeleteGateway, useDeleteGitSecret, useDeleteGroup, useDeleteIdentityProvider, useDeleteLLMDeployment, useDeleteLLMProvider, useDeleteLLMProviderTemplate, useDeleteLLMProxy, useDeleteMCPProxy, useDeleteMonitor, useDeleteProject, useDeleteRole, useDeleteUser, useDeployAgent, useDirtyState, useDiscoverOidc, useDocumentTitle, useExportTraces, useExternalComponentModules, useExternalComponentModulesByMountPoint, useExternalConfigModules, useExternalNavItems, useExternalPageModuleByMountPoint, useExternalPageModules, useFetchMCPProxyServerInfo, useFormValidation, useGenerateAgentToken, useGenerateResourceName, useGetAgent, useGetAgentBuilds, useGetAgentConfigurations, useGetAgentEndpoints, useGetAgentKind, useGetAgentKindVersion, useGetAgentMCPConfig, useGetAgentMetrics, useGetAgentModelConfig, useGetAgentResourceConfigs, useGetBuild, useGetBuildLogs, useGetCustomEvaluator, useGetDeploymentPipeline, useGetEvaluator, useGetGateway, useGetGitSecret, useGetGroup, useGetGroupMembers, useGetGroupRoles, useGetLLMDeployment, useGetLLMProvider, useGetLLMProviderTemplate, useGetLLMProxy, useGetMCPProxy, useGetMonitor, useGetOrganization, useGetProject, useGetRole, useGetRoleAssignments, useGetUser, useGetUserGroups, useGetUserProfile, useGetUserRoles, useGroupedScores, useGuardrailPolicyDefinition, useGuardrailsCatalog, useInviteUser, useListAMPPermissions, useListAgentAPIKeys, useListAgentDeployments, useListAgentKindVersions, useListAgentKinds, useListAgentMCPConfigs, useListAgentMCPProxies, useListAgentModelConfigs, useListAgents, useListBranches, useListCatalogLLMProviders, useListCommits, useListDataPlanes, useListDeploymentPipelines, useListEnvironmentIdentityProviders, useListEnvironments, useListEvaluators, useListGatewayTokens, useListGateways, useListGitSecrets, useListGroups, useListIdentityProviders, useListKindAgents, useListLLMDeployments, useListLLMProviderConsumers, useListLLMProviderProxies, useListLLMProviderTemplates, useListLLMProviders, useListLLMProxies, useListMCPProxies, useListMonitorRuns, useListMonitors, useListOrganizations, useListProjects, useListRoles, useListUsers, useMCPPoliciesCatalog, useMCPPolicyDefinition, useMonitorRunLogs, useMonitorRunScores, useMonitorScores, useMonitorScoresTimeSeriesForEvaluators, usePromoteAgent, usePublishAgentKind, useRemoveGatewayFromEnvironment, useRemoveGroupMembers, useRemoveRoleAssignees, useRemoveRolePermissions, useRerunMonitor, useRestoreLLMDeployment, useRevokeAgentAPIKey, useRevokeGatewayToken, useRevokeLLMProviderAPIKey, useRevokeLLMProxyAPIKey, useRevokeMCPProxyAPIKey, useRotateAgentAPIKey, useRotateGatewayToken, useRotateLLMProviderAPIKey, useRotateLLMProxyAPIKey, useRotateMCPProxyAPIKey, useSnackBar, useSpanDetail, useStartMonitor, useStopMonitor, useTestAgentAPIKey, useTimeRangeParams, useTrace, useTraceList, useTraceScores, useUndeployLLMProvider, useUpdateAgent, useUpdateAgentBuildParameters, useUpdateAgentConfigurations, useUpdateAgentDeploySettings, useUpdateAgentKind, useUpdateAgentMCPConfig, useUpdateAgentModelConfig, useUpdateAgentResourceConfigs, useUpdateCustomEvaluator, useUpdateDeploymentState, useUpdateEnvironment, useUpdateGateway, useUpdateGroup, useUpdateLLMProvider, useUpdateLLMProviderCatalog, useUpdateLLMProviderTemplate, useUpdateLLMProxy, useUpdateMCPProxy, useUpdateMonitor, useUpdateOrgDeploymentPipeline, useUpdateProject, useUpdateRole, useUpdateUser, useUpdateUserProfile, useUpsertIdentityProvider };
5802
- export type { AMPPermissionsResponse, APIKeyLocation, APIKeySecurity, AccessControlMode, AddAgentKindVersionPathParams, AddAgentKindVersionRequest, AddAgentMCPProxyPathParams, AddAgentMCPProxyRequest, AgentAPIKeyListItem, AgentAPIKeyListResponse, AgentBuildOptions, AgentBuildOptionsPathParams, AgentData, AgentEnvAPIKeyPathParams, AgentEnvAPIKeyWithKeyPathParams, AgentKindConfigSchemaItem, AgentKindListResponse, AgentKindResponse, AgentKindVersionResponse, AgentListResponse, AgentMCPConfigListResponse, AgentMCPConfigPathParams, AgentMCPConfigRequiredPathParams, AgentMCPConfigResponse, AgentMCPProxyListItem, AgentMCPProxyListResponse, AgentModelConfigListItem, AgentModelConfigListResponse, AgentModelConfigPathParams, AgentModelConfigRequiredPathParams, AgentModelConfigResponse, AgentModelConfigType, AgentPathParams, AgentResourceConfigsResponse, AgentResponse, AgentTraceScoresParams, AgentTraceScoresResponse, AgentType, AmpAttributes, AnyPageMetadata, AppConfig, AppRoute, AssignGatewayToEnvironmentParams, AuthInfo, AutoScalingConfig, BatchTimeSeriesEvaluatorSeries, BatchTimeSeriesResponse, Branch, Build, BuildAgentPathParams, BuildAgentQuery, BuildDetailsResponse, BuildLogEntry, BuildLogsResponse, BuildParameters, BuildPathParams, BuildResponse, BuildStatus, BuildStatusColor, BuildStep, BuildStepStatus, BuildpackBuild, BuildpackConfig, BuildpackIconProps, BuildsListResponse, CatalogDeploymentSummary, CatalogLLMProviderEntry, CatalogRateLimitingScope, CatalogRateLimitingSummary, CatalogSecuritySummary, Commit, CommitAuthor, ConfigurationData, ConfigurationItem, ConfigurationResponse, Configurations, CorsConfig, CostRateLimit, CreateAgentAPIKeyPathParams, CreateAgentAPIKeyRequest, CreateAgentAPIKeyResponse, CreateAgentMCPConfigPathParams, CreateAgentMCPConfigRequest, CreateAgentModelConfigPathParams, CreateAgentModelConfigRequest, CreateAgentPathParams, CreateAgentRequest, CreateCustomEvaluatorRequest, CreateDeploymentPipelinePathParams, CreateDeploymentPipelineRequest, CreateEnvironmentPathParams, CreateEnvironmentRequest, CreateGatewayPathParams, CreateGatewayRequest, CreateGitSecretPathParams, CreateGitSecretRequest, CreateGroupRequest, CreateLLMAPIKeyRequest, CreateLLMAPIKeyResponse, CreateLLMDeploymentPathParams, CreateLLMDeploymentRequest, CreateLLMProviderAPIKeyPathParams, CreateLLMProviderPathParams, CreateLLMProviderRequest, CreateLLMProviderTemplatePathParams, CreateLLMProviderTemplateRequest, CreateLLMProxyAPIKeyPathParams, CreateLLMProxyPathParams, CreateLLMProxyRequest, CreateMCPProxyAPIKeyPathParams, CreateMCPProxyAPIKeyRequest, CreateMCPProxyAPIKeyResponse, CreateMCPProxyPathParams, CreateMonitorPathParams, CreateMonitorRequest, CreateOrganizationRequest, CreateProjectPathParams, CreateProjectRequest, CreateRoleRequest, CreateUserRequest, CrewAITaskData, CustomEvaluatorPathParams, CustomEvaluatorType, DataPlane, DataPlaneListResponse, DeleteAgentKindPathParams, DeleteAgentKindVersionPathParams, DeleteAgentMCPConfigPathParams, DeleteAgentModelConfigPathParams, DeleteAgentPathParams, DeleteDeploymentPipelinePathParams, DeleteEnvironmentPathParams, DeleteGatewayPathParams, DeleteGitSecretPathParams, DeleteIdentityProviderPathParams, DeleteLLMDeploymentPathParams, DeleteLLMProviderPathParams, DeleteLLMProviderTemplatePathParams, DeleteLLMProxyPathParams, DeleteMCPProxyPathParams, DeleteMonitorPathParams, DeleteProjectPathParams, DeployAgentPathParams, DeployAgentRequest, DeployLLMProviderRequest, DeploymentDetailsResponse, DeploymentEndpoint, DeploymentListResponse, DeploymentPipelineListResponse, DeploymentPipelineResponse, DeploymentResponse, DeploymentState, DeploymentVisibility, DiscoverOidcPathParams, DiscoverOidcQuery, DockerBuild, DockerConfig, DrawerContentProps, DrawerHeaderProps, DrawerWrapperProps, EmbeddingData, EndpointConfiguration, EndpointSchema, EndpointSpec, EndpointsResponse, EnvMCPProxyConfigRequest, EnvModelConfigRequest, EnvProviderConfigMappings, EnvProviderConfiguration, EnvVariableEditorProps, Environment, EnvironmentListResponse, EnvironmentObject, EnvironmentQuery, EnvironmentVariable, EnvironmentVariableConfig, ErrorResponse, EvalPageEntry, EvalPageMetadata, EvaluationLevel, EvaluatorConfigParam, EvaluatorLevel, EvaluatorListQuery, EvaluatorListResponse, EvaluatorResponse, EvaluatorScoreSummary, EvaluatorScoreWithMonitor, ExportTracesParams, ExportTracesPathParams, ExternalAgentIconProps, ExternalComponentModule, ExternalConfigModule, ExternalModule, ExternalModuleCore, ExternalNavItem, ExternalPageModule, ExtractionIdentifier, ExtractionIdentifierLocation, FetchMCPProxyServerInfoPathParams, FileMount, FileMountEditorProps, FilterAgentRuntimeLogsPathParams, FullTrace, GatewayEnvironmentResponse, GatewayListResponse, GatewayPathParams, GatewayResponse, GatewayStatus, GatewayTokenInfo, GatewayTokenListResponse, GatewayTokenResponse, GatewayType, GenerateAgentTokenPathParams, GenerateAgentTokenQuery, GenerateResourceNamePathParams, GeneratedRoute, GetAgentBuildsPathParams, GetAgentBuildsQuery, GetAgentConfigurationsPathParams, GetAgentEndpointsPathParams, GetAgentKindPathParams, GetAgentKindVersionPathParams, GetAgentMCPConfigPathParams, GetAgentMetricsPathParams, GetAgentModelConfigPathParams, GetAgentPathParams, GetAgentResourceConfigsPathParams, GetAgentResourceConfigsQuery, GetBuildLogsPathParams, GetBuildPathParams, GetDeploymentPipelinePathParams, GetEvaluatorPathParams, GetGatewayPathParams, GetGitSecretPathParams, GetLLMDeploymentPathParams, GetLLMProviderPathParams, GetLLMProviderTemplatePathParams, GetLLMProxyPathParams, GetMCPProxyPathParams, GetMonitorPathParams, GetOrganizationPathParams, GetProjectPathParams, GetTraceListPathParams, GetTracePathParams, GitCredentials, GitSecretListResponse, GitSecretResponse, GitSecretType, GroupPathParams, GroupedScoresPathParams, GroupedScoresQueryParams, GroupedScoresResponse, GuardrailCapabilities, GuardrailDefinition, GuardrailsCatalogResponse, IconType, IdentityOrgPathParams, IdentityProvider, IdentityProviderListResponse, IdentityProviderType, InputInterface, InputInterfaceType, InstrumentationVersionEntry, InternalAgentIconProps, InviteUserRequest, InviteUserResponse, IssueTestAgentAPIKeyPathParams, IssueTestAgentAPIKeyResponse, LLMAccessControl, LLMData, LLMDeploymentListResponse, LLMDeploymentPathParams, LLMDeploymentResponse, LLMModel, LLMModelProvider, LLMPolicy, LLMPolicyPath, LLMProviderAPIKeyPathParams, LLMProviderConfig, LLMProviderConsumerItem, LLMProviderConsumerListResponse, LLMProviderConsumerType, LLMProviderListItem, LLMProviderListResponse, LLMProviderPathParams, LLMProviderResponse, LLMProviderTemplateAuth, LLMProviderTemplateListResponse, LLMProviderTemplateMetadata, LLMProviderTemplatePathParams, LLMProviderTemplateResponse, LLMProxyAPIKeyPathParams, LLMProxyConfig, LLMProxyListResponse, LLMProxyPathParams, LLMProxyResponse, LLMRateLimitingConfig, LLMTokenUsage, LabelEvaluatorSummary, ListAgentAPIKeysPathParams, ListAgentDeploymentsPathParams, ListAgentKindVersionsPathParams, ListAgentKindsPathParams, ListAgentKindsQuery, ListAgentMCPConfigsPathParams, ListAgentMCPConfigsQuery, ListAgentMCPProxiesPathParams, ListAgentModelConfigsPathParams, ListAgentModelConfigsQuery, ListAgentsPathParams, ListAgentsQuery, ListAvailableMCPPoliciesPathParams, ListBranchesQuery, ListBranchesRequest, ListBranchesResponse, ListCatalogLLMProvidersParams, ListCatalogLLMProvidersQuery, ListCatalogLLMProvidersResponse, ListCommitsQuery, ListCommitsRequest, ListCommitsResponse, ListDataPlanesPathParams, ListDeploymentPipelinesPathParams, ListDeploymentPipelinesQuery, ListEnvironmentIdentityProvidersPathParams, ListEnvironmentsPathParams, ListEvaluatorsPathParams, ListGatewayTokensParams, ListGatewaysPathParams, ListGatewaysQuery, ListGitSecretsPathParams, ListGitSecretsQuery, ListIdentityProvidersPathParams, ListKindAgentsPathParams, ListLLMDeploymentsPathParams, ListLLMProviderConsumersPathParams, ListLLMProviderProxiesPathParams, ListLLMProviderTemplatesPathParams, ListLLMProvidersPathParams, ListLLMProxiesPathParams, ListMCPProxiesPathParams, ListMCPProxiesQuery, ListMonitorRunsPathParams, ListMonitorRunsQueryParams, ListMonitorsPathParams, ListMonitorsQueryParams, ListOrganizationsQuery, ListProjectsPathParams, ListProjectsQuery, ListQuery, LogEntry, LogFilterRequest, LogFilterRequestWithTimeRange, LogLevel, LogoProps, LogsPanelProps, LogsResponse, MCPConfigRequest, MCPPoliciesCatalogResponse, MCPPolicyAvailabilityResponse, MCPPolicyAvailableItem, MCPPolicyDefinition, MCPProxy, MCPProxyAPIKeyPathParams, MCPProxyCapabilities, MCPProxyListItem, MCPProxyListResponse, MCPProxyPagination, MCPProxyPolicy, MCPServerInfoFetchRequest, MCPServerInfoFetchResponse, MainActionPanelProps, MetricDataPoint, MetricsFilterRequest, MetricsResponse, ModelConfigRequest, ModuleContextValue, ModuleProviderProps, MonitorEvaluator, MonitorLLMProviderInfo, MonitorLLMProviderRef, MonitorListResponse, MonitorPathParams, MonitorResponse, MonitorRunListResponse, MonitorRunLogsPathParams, MonitorRunPathParams, MonitorRunResponse, MonitorRunScoresResponse, MonitorRunStatus, MonitorScoreGranularity, MonitorScoresPathParams, MonitorScoresQueryParams, MonitorScoresResponse, MonitorScoresTimeSeriesPathParams, MonitorScoresTimeSeriesQueryParams, MonitorStatus, MonitorType, OAuthConfig, OidcDiscoveryResponse, OrgPathParams, OrgProjPathParams, OrganizationListItem, OrganizationListResponse, OrganizationResponse, PageLayoutProps, PageMetadata, PageMetadataBase, PaginationInfo, PaginationMeta, ProjectListItem, ProjectListResponse, ProjectResponse, PromoteAgentPathParams, PromoteAgentRequest, PromoteAgentResponse, PromotionPath, PromotionTargetEnvironment, PromptMessage, ProviderConfig, Provisioning, ProvisioningAgentKind, ProvisioningType, PublishAgentKindPathParams, PublishAgentKindRequest, RateLimitEntry, RateLimitResetWindow, RateLimitingLimitConfig, RateLimitingResourceLimit, RateLimitingScopeConfig, RemoveGatewayFromEnvironmentParams, RepositoryConfig, RequestRateLimit, RerunMonitorPathParams, ResourceConfig, ResourceLimits, ResourceNameRequest, ResourceNameResponse, ResourceRequests, ResourceType, ResourceWiseRateLimitingConfig, RestoreLLMDeploymentPathParams, RestoreLLMDeploymentQuery, RetrieverData, RevokeAgentAPIKeyPathParams, RevokeGatewayTokenParams, RevokeLLMProviderAPIKeyPathParams, RevokeLLMProxyAPIKeyPathParams, RevokeMCPProxyAPIKeyPathParams, RolePathParams, RolePermissionRequest, RoleUserGroupRequest, RotateAgentAPIKeyPathParams, RotateAgentAPIKeyRequest, RotateAgentAPIKeyResponse, RotateLLMAPIKeyRequest, RotateLLMAPIKeyResponse, RotateLLMProviderAPIKeyPathParams, RotateLLMProxyAPIKeyPathParams, RotateMCPProxyAPIKeyPathParams, RotateMCPProxyAPIKeyRequest, RotateMCPProxyAPIKeyResponse, RouteException, RuntimeConfiguration, RuntimeConfigurationWithoutEnv, SchemaPath, ScoreLabelGroup, SecurityConfig, SelectionDrawerEmptyState, SelectionDrawerProps, SelectionIndicatorProps, SnackBarMessage, Span, SpanStatus, StartMonitorPathParams, StopMonitorPathParams, TargetEnvironmentRef, TextInputProps, ThunderClaim, ThunderGroup, ThunderGroupListResponse, ThunderPermission, ThunderRole, ThunderRoleAssignments, ThunderRoleListResponse, ThunderUser, ThunderUserListResponse, TimeRange, TimeRangeSelectorProps, TimeSeriesPoint, TimeSeriesResponse, TokenRateLimit, TokenRequest, TokenResponse, TokenUsage, ToolCall, ToolData, ToolDefinition, Trace, TraceEvaluatorScore, TraceExportResponse, TraceListResponse, TraceListWithRange, TraceMonitorGroup, TraceObserverListParams, TraceObserverSpanDetailParams, TraceObserverSpanListParams, TraceOverview, TraceScore, TraceScoreSummary, TraceScoresPathParams, TraceScoresResponse, TraceSpanGroup, TraceSpanSummary, TraceSpanSummaryListResponse, TraceStatus, UndeployLLMProviderPathParams, UndeployLLMProviderQuery, UpdateAgentBasicInfoPathParams, UpdateAgentBasicInfoRequest, UpdateAgentBuildParametersPathParams, UpdateAgentBuildParametersRequest, UpdateAgentConfigurationsPathParams, UpdateAgentConfigurationsRequest, UpdateAgentDeploySettingsPathParams, UpdateAgentDeploySettingsRequest, UpdateAgentKindPathParams, UpdateAgentKindRequest, UpdateAgentMCPConfigPathParams, UpdateAgentMCPConfigRequest, UpdateAgentModelConfigPathParams, UpdateAgentModelConfigRequest, UpdateAgentPathParams, UpdateAgentRequest, UpdateAgentResourceConfigsPathParams, UpdateAgentResourceConfigsQuery, UpdateAgentResourceConfigsRequest, UpdateCustomEvaluatorRequest, UpdateDeploymentPipelineRequest, UpdateDeploymentStatePathParams, UpdateDeploymentStateRequest, UpdateDeploymentStateResponse, UpdateEnvironmentPathParams, UpdateEnvironmentRequest, UpdateGatewayPathParams, UpdateGatewayRequest, UpdateGroupRequest, UpdateLLMProviderCatalogPathParams, UpdateLLMProviderCatalogRequest, UpdateLLMProviderPathParams, UpdateLLMProviderRequest, UpdateLLMProviderTemplatePathParams, UpdateLLMProviderTemplateRequest, UpdateLLMProxyPathParams, UpdateLLMProxyRequest, UpdateMCPProxyPathParams, UpdateMonitorPathParams, UpdateMonitorRequest, UpdateOrgDeploymentPipelinePathParams, UpdateProjectPathParams, UpdateProjectRequest, UpdateRoleRequest, UpdateUserRequest, UpsertIdentityProviderPathParams, UpsertIdentityProviderRequest, UpstreamAuth, UpstreamAuthType, UpstreamConfig, UpstreamEndpoint, UserPathParams };
6097
+ export { APP_THEME_OPTIONS, AppThemeProvider, AuthProvider, BUILD_STATUS_COLOR_MAP, BackgoundLoader, BuildpackIcon, ClientProvider, CoreUI, DrawerContent, DrawerHeader, DrawerWrapper, EnvVariableEditor, ExternalAgentIcon, ExternalModuleProvider, FadeIn, FileMountEditor, FullPageLoader, InternalAgentIcon, JSONView, Logo, LogsPanel, MainActionPanel, MarkdownView, MountPoints, NoDataFound, PageHeaderContext, PageHeaderProvider, PageLayout, SelectionDrawer, SelectionIndicator, SnackBarProvider, SpanIcon, TextInput, TimeRangeSelector, TraceExplorer, TraceListTimeRange, generatedRouteMap as absoluteRouteMap, addAgentKindVersion, addAgentMCPProxy, addGroupMembers, addRoleAssignees, addRolePermissions, agentKindKeys, assignGatewayToEnvironment, buildAgent, createAgent, createAgentAPIKey, createAgentMCPConfig, createAgentModelConfig, createCustomEvaluator, createDeploymentPipeline, createEnvironment, createGateway, createGitSecret, createGroup, createLLMConfigAPIKey, createLLMDeployment, createLLMProvider, createLLMProviderAPIKey, createLLMProviderTemplate, createLLMProxy, createLLMProxyAPIKey, createMCPConfigAPIKey, createMCPProxy, createMonitor, createOrganization, createProject, createRole, createUser, deleteAgent, deleteAgentKind, deleteAgentKindVersion, deleteAgentMCPConfig, deleteAgentModelConfig, deleteCustomEvaluator, deleteDeploymentPipeline, deleteEnvironment, deleteGateway, deleteGitSecret, deleteGroup, deleteIdentityProvider, deleteLLMDeployment, deleteLLMProvider, deleteLLMProviderTemplate, deleteLLMProxy, deleteMCPProxy, deleteMonitor, deleteProject, deleteRole, deleteUser, deployAgent, discoverOidc, displayProvisionTypes, exportTraces, fetchMCPProxyServerInfo, filterAgentRuntimeLogs, filterGuardrailPolicies, formatTraceWindow, generateAgentToken, generateResourceName, getAgent, getAgentBuildOptions, getAgentBuilds, getAgentConfigurations, getAgentEndpoints, getAgentKind, getAgentKindVersion, getAgentMCPConfig, getAgentMetrics, getAgentModelConfig, getAgentResourceConfigs, getAgentTraceScores, getBuild, getBuildLogs, getCustomEvaluator, getDeploymentPipeline, getEnvironment, getEvaluator, getGateway, getGitSecret, getGroup, getGroupMembers, getGroupRoles, getGroupedScores, getLLMDeployment, getLLMProvider, getLLMProviderTemplate, getLLMProxy, getMCPProxy, getMonitor, getMonitorRunLogs, getMonitorRunScores, getMonitorScores, getMonitorScoresTimeSeries, getOrganization, getProject, getRole, getRoleAssignments, getSpanDetail, getTimeRange, getTraceList, getTraceScores, getUser, getUserGroups, getUserProfile, getUserRoles, globalConfig, inviteUser, issueTestAgentAPIKey, listAMPPermissions, listAgentAPIKeys, listAgentDeployments, listAgentKindVersions, listAgentKinds, listAgentMCPConfigs, listAgentMCPProxies, listAgentModelConfigs, listAgents, listAvailableMCPPolicies, listBranches, listCatalogLLMProviders, listCommits, listDataPlanes, listDeploymentPipelines, listEnvironmentIdentityProviders, listEnvironments, listEvaluators, listGatewayTokens, listGateways, listGitSecrets, listGroups, listIdentityProviders, listKindAgents, listLLMConfigAPIKeys, listLLMDeployments, listLLMProviderAPIKeys, listLLMProviderConsumers, listLLMProviderProxies, listLLMProviderTemplates, listLLMProviders, listLLMProxies, listLLMProxyAPIKeys, listMCPConfigAPIKeys, listMCPProxies, listMonitorRuns, listMonitors, listOrganizations, listProjects, listRoles, listThunderInstances, listTraceSpans, listUsers, normalizeAgentModelConfigResponse, normalizePolicyVersionToPolicyHubMinor, promoteAgent, publishAgentKind, rootRouteMap as relativeRouteMap, removeGatewayFromEnvironment, removeGroupMembers, removeRoleAssignees, removeRolePermissions, rerunMonitor, restoreLLMDeployment, revokeAgentAPIKey, revokeGatewayToken, revokeLLMConfigAPIKey, revokeLLMProviderAPIKey, revokeLLMProxyAPIKey, revokeMCPConfigAPIKey, rotateAgentAPIKey, rotateGatewayToken, rotateLLMConfigAPIKey, rotateLLMProviderAPIKey, rotateLLMProxyAPIKey, rotateMCPConfigAPIKey, scoreColor, startMonitor, stopMonitor, undeployLLMProvider, updateAgent, updateAgentBuildParameters, updateAgentConfigurations, updateAgentDeploySettings, updateAgentKind, updateAgentMCPConfig, updateAgentModelConfig, updateAgentResourceConfigs, updateCustomEvaluator, updateDeploymentState, updateEnvironment, updateGateway, updateGroup, updateLLMProvider, updateLLMProviderCatalog, updateLLMProviderTemplate, updateLLMProxy, updateMCPProxy, updateMonitor, updateOrgDeploymentPipeline, updateProject, updateRole, updateUser, updateUserProfile, upsertIdentityProvider, useAddAgentKindVersion, useAddAgentMCPProxy, useAddGroupMembers, useAddRoleAssignees, useAddRolePermissions, useAgentBuildOptions, useAgentRuntimeLogs, useAgentTraceScores, useAllGroupMemberIds, useAllGroups, useAllModuleContext, useAllUsers, useAppTheme, useAssignGatewayToEnvironment, useAuthHooks, useBuildAgent, useConfirmationDialog, useCreateAgent, useCreateAgentAPIKey, useCreateAgentMCPConfig, useCreateAgentModelConfig, useCreateCustomEvaluator, useCreateDeploymentPipeline, useCreateEnvironment, useCreateGateway, useCreateGitSecret, useCreateGroup, useCreateLLMConfigAPIKey, useCreateLLMDeployment, useCreateLLMProvider, useCreateLLMProviderAPIKey, useCreateLLMProviderTemplate, useCreateLLMProxy, useCreateLLMProxyAPIKey, useCreateMCPConfigAPIKey, useCreateMCPProxy, useCreateMonitor, useCreateOrganization, useCreateProject, useCreateRole, useCreateUser, useDeleteAgent, useDeleteAgentKind, useDeleteAgentKindVersion, useDeleteAgentMCPConfig, useDeleteAgentModelConfig, useDeleteCustomEvaluator, useDeleteDeploymentPipeline, useDeleteEnvironment, useDeleteGateway, useDeleteGitSecret, useDeleteGroup, useDeleteIdentityProvider, useDeleteLLMDeployment, useDeleteLLMProvider, useDeleteLLMProviderTemplate, useDeleteLLMProxy, useDeleteMCPProxy, useDeleteMonitor, useDeleteProject, useDeleteRole, useDeleteUser, useDeployAgent, useDirtyState, useDiscoverOidc, useDocumentTitle, useExportTraces, useExternalComponentModules, useExternalComponentModulesByMountPoint, useExternalNavItems, useExternalPageModuleByMountPoint, useExternalPageModules, useFetchMCPProxyServerInfo, useFormValidation, useGenerateAgentToken, useGenerateResourceName, useGetAgent, useGetAgentBuilds, useGetAgentConfigurations, useGetAgentEndpoints, useGetAgentKind, useGetAgentKindVersion, useGetAgentMCPConfig, useGetAgentMetrics, useGetAgentModelConfig, useGetAgentResourceConfigs, useGetBuild, useGetBuildLogs, useGetCustomEvaluator, useGetDeploymentPipeline, useGetEnvironment, useGetEvaluator, useGetGateway, useGetGitSecret, useGetGroup, useGetGroupMembers, useGetGroupRoles, useGetLLMDeployment, useGetLLMProvider, useGetLLMProviderTemplate, useGetLLMProxy, useGetMCPProxy, useGetMonitor, useGetOrganization, useGetProject, useGetRole, useGetRoleAssignments, useGetUser, useGetUserGroups, useGetUserProfile, useGetUserRoles, useGroupedScores, useGuardrailPolicyDefinition, useGuardrailsCatalog, useInviteUser, useListAMPPermissions, useListAgentAPIKeys, useListAgentDeployments, useListAgentKindVersions, useListAgentKinds, useListAgentMCPConfigs, useListAgentMCPProxies, useListAgentModelConfigs, useListAgents, useListBranches, useListCatalogLLMProviders, useListCommits, useListDataPlanes, useListDeploymentPipelines, useListEnvironmentIdentityProviders, useListEnvironments, useListEvaluators, useListGatewayTokens, useListGateways, useListGitSecrets, useListGroups, useListIdentityProviders, useListKindAgents, useListLLMConfigAPIKeys, useListLLMDeployments, useListLLMProviderAPIKeys, useListLLMProviderConsumers, useListLLMProviderProxies, useListLLMProviderTemplates, useListLLMProviders, useListLLMProxies, useListLLMProxyAPIKeys, useListMCPConfigAPIKeys, useListMCPProxies, useListMonitorRuns, useListMonitors, useListOrganizations, useListProjects, useListRoles, useListThunderInstances, useListUsers, useMCPPoliciesCatalog, useMCPPolicyDefinition, useMonitorRunLogs, useMonitorRunScores, useMonitorScores, useMonitorScoresTimeSeriesForEvaluators, usePageHeader, usePromoteAgent, usePublishAgentKind, useRemoveGatewayFromEnvironment, useRemoveGroupMembers, useRemoveRoleAssignees, useRemoveRolePermissions, useRerunMonitor, useRestoreLLMDeployment, useRevokeAgentAPIKey, useRevokeGatewayToken, useRevokeLLMConfigAPIKey, useRevokeLLMProviderAPIKey, useRevokeLLMProxyAPIKey, useRevokeMCPConfigAPIKey, useRotateAgentAPIKey, useRotateGatewayToken, useRotateLLMConfigAPIKey, useRotateLLMProviderAPIKey, useRotateLLMProxyAPIKey, useRotateMCPConfigAPIKey, useSnackBar, useSpanDetail, useStartMonitor, useStopMonitor, useTestAgentAPIKey, useTimeRangeParams, useTrace, useTraceList, useTraceScores, useUndeployLLMProvider, useUpdateAgent, useUpdateAgentBuildParameters, useUpdateAgentConfigurations, useUpdateAgentDeploySettings, useUpdateAgentKind, useUpdateAgentMCPConfig, useUpdateAgentModelConfig, useUpdateAgentResourceConfigs, useUpdateCustomEvaluator, useUpdateDeploymentState, useUpdateEnvironment, useUpdateGateway, useUpdateGroup, useUpdateLLMProvider, useUpdateLLMProviderCatalog, useUpdateLLMProviderTemplate, useUpdateLLMProxy, useUpdateMCPProxy, useUpdateMonitor, useUpdateOrgDeploymentPipeline, useUpdateProject, useUpdateRole, useUpdateUser, useUpdateUserProfile, useUpsertIdentityProvider };
6098
+ export type { AMPPermissionsResponse, APIKeyInfo, APIKeyLocation, APIKeySecurity, AccessControlMode, AddAgentKindVersionPathParams, AddAgentKindVersionRequest, AddAgentMCPProxyPathParams, AddAgentMCPProxyRequest, AgentAPIKeyListItem, AgentAPIKeyListResponse, AgentBuildOptions, AgentBuildOptionsPathParams, AgentData, AgentEnvAPIKeyPathParams, AgentEnvAPIKeyWithKeyPathParams, AgentKindConfigSchemaItem, AgentKindListResponse, AgentKindResponse, AgentKindVersionResponse, AgentListResponse, AgentMCPConfigListResponse, AgentMCPConfigPathParams, AgentMCPConfigRequiredPathParams, AgentMCPConfigResponse, AgentMCPProxyListItem, AgentMCPProxyListResponse, AgentModelConfigListItem, AgentModelConfigListResponse, AgentModelConfigPathParams, AgentModelConfigRequiredPathParams, AgentModelConfigResponse, AgentModelConfigType, AgentPathParams, AgentResourceConfigsResponse, AgentResponse, AgentTraceScoresParams, AgentTraceScoresResponse, AgentType, AmpAttributes, AnyPageMetadata, AppConfig, AppRoute, AppThemeKey, AppThemeOption, AssignGatewayToEnvironmentParams, AuthInfo, AutoScalingConfig, BatchTimeSeriesEvaluatorSeries, BatchTimeSeriesResponse, Branch, Build, BuildAgentPathParams, BuildAgentQuery, BuildDetailsResponse, BuildLogEntry, BuildLogsResponse, BuildParameters, BuildPathParams, BuildResponse, BuildStatus, BuildStatusColor, BuildStep, BuildStepStatus, BuildpackBuild, BuildpackConfig, BuildpackIconProps, BuildsListResponse, CatalogDeploymentSummary, CatalogLLMProviderEntry, CatalogRateLimitingScope, CatalogRateLimitingSummary, CatalogSecuritySummary, Commit, CommitAuthor, ConfigurationData, ConfigurationItem, ConfigurationResponse, Configurations, CorsConfig, CostRateLimit, CreateAgentAPIKeyPathParams, CreateAgentAPIKeyRequest, CreateAgentAPIKeyResponse, CreateAgentMCPConfigPathParams, CreateAgentMCPConfigRequest, CreateAgentModelConfigPathParams, CreateAgentModelConfigRequest, CreateAgentPathParams, CreateAgentRequest, CreateCustomEvaluatorRequest, CreateDeploymentPipelinePathParams, CreateDeploymentPipelineRequest, CreateEnvironmentPathParams, CreateEnvironmentRequest, CreateGatewayPathParams, CreateGatewayRequest, CreateGitSecretPathParams, CreateGitSecretRequest, CreateGroupRequest, CreateLLMAPIKeyRequest, CreateLLMAPIKeyResponse, CreateLLMConfigAPIKeyPathParams, CreateLLMConfigAPIKeyRequest, CreateLLMConfigAPIKeyResponse, CreateLLMDeploymentPathParams, CreateLLMDeploymentRequest, CreateLLMProviderAPIKeyPathParams, CreateLLMProviderPathParams, CreateLLMProviderRequest, CreateLLMProviderTemplatePathParams, CreateLLMProviderTemplateRequest, CreateLLMProxyAPIKeyPathParams, CreateLLMProxyPathParams, CreateLLMProxyRequest, CreateMCPConfigAPIKeyPathParams, CreateMCPConfigAPIKeyRequest, CreateMCPConfigAPIKeyResponse, CreateMCPProxyPathParams, CreateMonitorPathParams, CreateMonitorRequest, CreateOrganizationRequest, CreateProjectPathParams, CreateProjectRequest, CreateRoleRequest, CreateUserRequest, CrewAITaskData, CustomEvaluatorPathParams, CustomEvaluatorType, DataPlane, DataPlaneListResponse, DeleteAgentKindPathParams, DeleteAgentKindVersionPathParams, DeleteAgentMCPConfigPathParams, DeleteAgentModelConfigPathParams, DeleteAgentPathParams, DeleteDeploymentPipelinePathParams, DeleteEnvironmentPathParams, DeleteGatewayPathParams, DeleteGitSecretPathParams, DeleteIdentityProviderPathParams, DeleteLLMDeploymentPathParams, DeleteLLMProviderPathParams, DeleteLLMProviderTemplatePathParams, DeleteLLMProxyPathParams, DeleteMCPProxyPathParams, DeleteMonitorPathParams, DeleteProjectPathParams, DeployAgentPathParams, DeployAgentRequest, DeployLLMProviderRequest, DeploymentDetailsResponse, DeploymentEndpoint, DeploymentListResponse, DeploymentPipelineListResponse, DeploymentPipelineResponse, DeploymentResponse, DeploymentState, DeploymentVisibility, DiscoverOidcPathParams, DiscoverOidcQuery, DockerBuild, DockerConfig, DrawerContentProps, DrawerHeaderProps, DrawerWrapperProps, EmbeddingData, EndpointConfiguration, EndpointSchema, EndpointSpec, EndpointsResponse, EnvMCPProxyConfigRequest, EnvModelConfigRequest, EnvProviderConfigMappings, EnvProviderConfiguration, EnvVariableEditorProps, Environment, EnvironmentListResponse, EnvironmentObject, EnvironmentQuery, EnvironmentVariable, EnvironmentVariableConfig, ErrorResponse, EvalPageEntry, EvalPageMetadata, EvaluationLevel, EvaluatorConfigParam, EvaluatorLevel, EvaluatorListQuery, EvaluatorListResponse, EvaluatorResponse, EvaluatorScoreSummary, EvaluatorScoreWithMonitor, ExportTracesParams, ExportTracesPathParams, ExternalAgentIconProps, ExternalComponentModule, ExternalModule, ExternalModuleCore, ExternalNavItem, ExternalPageModule, ExtractionIdentifier, ExtractionIdentifierLocation, FeatureFlags, FetchMCPProxyServerInfoPathParams, FileMount, FileMountEditorProps, FilterAgentRuntimeLogsPathParams, FullTrace, GatewayEndpointSpec, GatewayEnvironmentResponse, GatewayListResponse, GatewayListenerSpec, GatewayNetworkSpec, GatewayPathParams, GatewayResponse, GatewaySpec, GatewayStatus, GatewayTokenInfo, GatewayTokenListResponse, GatewayTokenResponse, GatewayType, GenerateAgentTokenPathParams, GenerateAgentTokenQuery, GenerateResourceNamePathParams, GeneratedRoute, GetAgentBuildsPathParams, GetAgentBuildsQuery, GetAgentConfigurationsPathParams, GetAgentEndpointsPathParams, GetAgentKindPathParams, GetAgentKindVersionPathParams, GetAgentMCPConfigPathParams, GetAgentMetricsPathParams, GetAgentModelConfigPathParams, GetAgentPathParams, GetAgentResourceConfigsPathParams, GetAgentResourceConfigsQuery, GetBuildLogsPathParams, GetBuildPathParams, GetDeploymentPipelinePathParams, GetEnvironmentPathParams, GetEvaluatorPathParams, GetGatewayPathParams, GetGitSecretPathParams, GetLLMDeploymentPathParams, GetLLMProviderPathParams, GetLLMProviderTemplatePathParams, GetLLMProxyPathParams, GetMCPProxyPathParams, GetMonitorPathParams, GetOrganizationPathParams, GetProjectPathParams, GetTraceListPathParams, GetTracePathParams, GitCredentials, GitSecretListResponse, GitSecretResponse, GitSecretType, GroupPathParams, GroupedScoresPathParams, GroupedScoresQueryParams, GroupedScoresResponse, GuardrailCapabilities, GuardrailDefinition, GuardrailsCatalogResponse, IconType, IdentityOrgPathParams, IdentityProvider, IdentityProviderListResponse, IdentityProviderType, InputInterface, InputInterfaceType, InstrumentationVersionEntry, InternalAgentIconProps, InviteUserRequest, InviteUserResponse, IssueTestAgentAPIKeyPathParams, IssueTestAgentAPIKeyResponse, LLMAccessControl, LLMConfigAPIKeyPathParams, LLMConfigAPIKeysPathParams, LLMData, LLMDeploymentListResponse, LLMDeploymentPathParams, LLMDeploymentResponse, LLMModel, LLMModelProvider, LLMPolicy, LLMPolicyPath, LLMProviderAPIKeyPathParams, LLMProviderConfig, LLMProviderConsumerItem, LLMProviderConsumerListResponse, LLMProviderConsumerType, LLMProviderListItem, LLMProviderListResponse, LLMProviderPathParams, LLMProviderResponse, LLMProviderTemplateAuth, LLMProviderTemplateListResponse, LLMProviderTemplateMetadata, LLMProviderTemplatePathParams, LLMProviderTemplateResponse, LLMProxyAPIKeyPathParams, LLMProxyConfig, LLMProxyListResponse, LLMProxyPathParams, LLMProxyResponse, LLMRateLimitingConfig, LLMTokenUsage, LabelEvaluatorSummary, ListAPIKeysResponse, ListAgentAPIKeysPathParams, ListAgentDeploymentsPathParams, ListAgentKindVersionsPathParams, ListAgentKindsPathParams, ListAgentKindsQuery, ListAgentMCPConfigsPathParams, ListAgentMCPConfigsQuery, ListAgentMCPProxiesPathParams, ListAgentModelConfigsPathParams, ListAgentModelConfigsQuery, ListAgentsPathParams, ListAgentsQuery, ListAvailableMCPPoliciesPathParams, ListBranchesQuery, ListBranchesRequest, ListBranchesResponse, ListCatalogLLMProvidersParams, ListCatalogLLMProvidersQuery, ListCatalogLLMProvidersResponse, ListCommitsQuery, ListCommitsRequest, ListCommitsResponse, ListDataPlanesPathParams, ListDeploymentPipelinesPathParams, ListDeploymentPipelinesQuery, ListEnvironmentIdentityProvidersPathParams, ListEnvironmentsPathParams, ListEvaluatorsPathParams, ListGatewayTokensParams, ListGatewaysPathParams, ListGatewaysQuery, ListGitSecretsPathParams, ListGitSecretsQuery, ListIdentityProvidersPathParams, ListKindAgentsPathParams, ListLLMConfigAPIKeysPathParams, ListLLMDeploymentsPathParams, ListLLMProviderAPIKeysPathParams, ListLLMProviderConsumersPathParams, ListLLMProviderProxiesPathParams, ListLLMProviderTemplatesPathParams, ListLLMProvidersPathParams, ListLLMProxiesPathParams, ListLLMProxyAPIKeysPathParams, ListMCPConfigAPIKeysPathParams, ListMCPProxiesPathParams, ListMCPProxiesQuery, ListMonitorRunsPathParams, ListMonitorRunsQueryParams, ListMonitorsPathParams, ListMonitorsQueryParams, ListOrganizationsQuery, ListProjectsPathParams, ListProjectsQuery, ListQuery, ListThunderInstancesPathParams, LogEntry, LogFilterRequest, LogFilterRequestWithTimeRange, LogLevel, LogoProps, LogsPanelProps, LogsResponse, MCPConfigAPIKeyPathParams, MCPConfigAPIKeysPathParams, MCPConfigRequest, MCPEnvironmentConfig, MCPPoliciesCatalogResponse, MCPPolicyAvailabilityResponse, MCPPolicyAvailableItem, MCPPolicyDefinition, MCPProxy, MCPProxyCapabilities, MCPProxyListItem, MCPProxyListResponse, MCPProxyPagination, MCPProxyPolicy, MCPServerInfoFetchRequest, MCPServerInfoFetchResponse, MainActionPanelProps, MetricDataPoint, MetricsFilterRequest, MetricsResponse, ModelConfigRequest, ModuleContextValue, ModuleProviderProps, MonitorEvaluator, MonitorLLMProviderInfo, MonitorLLMProviderRef, MonitorListResponse, MonitorPathParams, MonitorResponse, MonitorRunListResponse, MonitorRunLogsPathParams, MonitorRunPathParams, MonitorRunResponse, MonitorRunScoresResponse, MonitorRunStatus, MonitorScoreGranularity, MonitorScoresPathParams, MonitorScoresQueryParams, MonitorScoresResponse, MonitorScoresTimeSeriesPathParams, MonitorScoresTimeSeriesQueryParams, MonitorStatus, MonitorType, OAuthConfig, OidcDiscoveryResponse, OrgPathParams, OrgProjPathParams, OrganizationListItem, OrganizationListResponse, OrganizationResponse, PageLayoutProps, PageMetadata, PageMetadataBase, PaginationInfo, PaginationMeta, ProjectListItem, ProjectListResponse, ProjectResponse, PromoteAgentPathParams, PromoteAgentRequest, PromoteAgentResponse, PromotionPath, PromotionTargetEnvironment, PromptMessage, ProviderConfig, Provisioning, ProvisioningAgentKind, ProvisioningType, PublishAgentKindPathParams, PublishAgentKindRequest, RateLimitEntry, RateLimitResetWindow, RateLimitingLimitConfig, RateLimitingResourceLimit, RateLimitingScopeConfig, RemoveGatewayFromEnvironmentParams, RepositoryConfig, RequestRateLimit, RerunMonitorPathParams, ResourceConfig, ResourceLimits, ResourceNameRequest, ResourceNameResponse, ResourceRequests, ResourceType, ResourceWiseRateLimitingConfig, RestoreLLMDeploymentPathParams, RestoreLLMDeploymentQuery, RetrieverData, RevokeAgentAPIKeyPathParams, RevokeGatewayTokenParams, RevokeLLMConfigAPIKeyPathParams, RevokeLLMProviderAPIKeyPathParams, RevokeLLMProxyAPIKeyPathParams, RevokeMCPConfigAPIKeyPathParams, RolePathParams, RolePermissionRequest, RoleUserGroupRequest, RotateAgentAPIKeyPathParams, RotateAgentAPIKeyRequest, RotateAgentAPIKeyResponse, RotateLLMAPIKeyRequest, RotateLLMAPIKeyResponse, RotateLLMConfigAPIKeyPathParams, RotateLLMConfigAPIKeyRequest, RotateLLMConfigAPIKeyResponse, RotateLLMProviderAPIKeyPathParams, RotateLLMProxyAPIKeyPathParams, RotateMCPConfigAPIKeyPathParams, RotateMCPConfigAPIKeyRequest, RotateMCPConfigAPIKeyResponse, RouteException, RuntimeConfiguration, RuntimeConfigurationWithoutEnv, SchemaPath, ScoreLabelGroup, SecurityConfig, SelectionDrawerEmptyState, SelectionDrawerProps, SelectionIndicatorProps, SnackBarMessage, Span, SpanStatus, StartMonitorPathParams, StopMonitorPathParams, TargetEnvironmentRef, TextInputProps, ThunderClaim, ThunderGroup, ThunderGroupListResponse, ThunderInstanceListResponse, ThunderInstanceResponse, ThunderPermission, ThunderRole, ThunderRoleAssignments, ThunderRoleListResponse, ThunderUser, ThunderUserListResponse, TimeRange, TimeRangeSelectorProps, TimeSeriesPoint, TimeSeriesResponse, TokenRateLimit, TokenRequest, TokenResponse, TokenUsage, ToolCall, ToolData, ToolDefinition, Trace, TraceEvaluatorScore, TraceExportResponse, TraceListResponse, TraceListWithRange, TraceMonitorGroup, TraceObserverListParams, TraceObserverSpanDetailParams, TraceObserverSpanListParams, TraceOverview, TraceScore, TraceScoreSummary, TraceScoresPathParams, TraceScoresResponse, TraceSpanGroup, TraceSpanSummary, TraceSpanSummaryListResponse, TraceStatus, UndeployLLMProviderPathParams, UndeployLLMProviderQuery, UpdateAgentBasicInfoPathParams, UpdateAgentBasicInfoRequest, UpdateAgentBuildParametersPathParams, UpdateAgentBuildParametersRequest, UpdateAgentConfigurationsPathParams, UpdateAgentConfigurationsRequest, UpdateAgentDeploySettingsPathParams, UpdateAgentDeploySettingsRequest, UpdateAgentKindPathParams, UpdateAgentKindRequest, UpdateAgentMCPConfigPathParams, UpdateAgentMCPConfigRequest, UpdateAgentModelConfigPathParams, UpdateAgentModelConfigRequest, UpdateAgentPathParams, UpdateAgentRequest, UpdateAgentResourceConfigsPathParams, UpdateAgentResourceConfigsQuery, UpdateAgentResourceConfigsRequest, UpdateCustomEvaluatorRequest, UpdateDeploymentPipelineRequest, UpdateDeploymentStatePathParams, UpdateDeploymentStateRequest, UpdateDeploymentStateResponse, UpdateEnvironmentPathParams, UpdateEnvironmentRequest, UpdateGatewayPathParams, UpdateGatewayRequest, UpdateGroupRequest, UpdateLLMProviderCatalogPathParams, UpdateLLMProviderCatalogRequest, UpdateLLMProviderPathParams, UpdateLLMProviderRequest, UpdateLLMProviderTemplatePathParams, UpdateLLMProviderTemplateRequest, UpdateLLMProxyPathParams, UpdateLLMProxyRequest, UpdateMCPProxyPathParams, UpdateMonitorPathParams, UpdateMonitorRequest, UpdateOrgDeploymentPipelinePathParams, UpdateProjectPathParams, UpdateProjectRequest, UpdateRoleRequest, UpdateUserRequest, UpsertIdentityProviderPathParams, UpsertIdentityProviderRequest, UpstreamAuth, UpstreamAuthType, UpstreamConfig, UpstreamEndpoint, UserPathParams };