@wso2/am-core-ui 0.0.18 → 0.0.20

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 (48) hide show
  1. package/dist/APIKeysManager-C0phJriD.js +241 -0
  2. package/dist/CatalogKindListing-DvUuZEpc.js +137 -0
  3. package/dist/CodeBlock-B2Ecl916.js +21736 -0
  4. package/dist/EnvironmentCard-CIXhDhlZ.js +319 -0
  5. package/dist/EnvironmentSelector-D8S6nO9u.js +48 -0
  6. package/dist/IsolationTierIndicator-cf90kgjL.js +81 -0
  7. package/dist/LabelChips-7rA7_yre.js +139 -0
  8. package/dist/MCPLogo-D9IJzzl7.js +30 -0
  9. package/dist/PolicyListSection-D6aVSKwP.js +1143 -0
  10. package/dist/ResourceListShell-DFisKftq.js +463 -0
  11. package/dist/SwaggerSpecViewer-DzjR6U6W.js +106 -0
  12. package/dist/clipboard-YAzStmkw.js +23 -0
  13. package/dist/debounce-D17ObVdG.js +208 -0
  14. package/dist/format-wlHhWjGo.js +29 -0
  15. package/dist/formatDistanceToNow-DyjnT7l9.js +100 -0
  16. package/dist/gatewayScripts-D4ZDEDPS.js +72 -0
  17. package/dist/highlight-BsUzxSR3.js +454 -0
  18. package/dist/{index-CnXsN5I3.js → index-3K-zqdp-.js} +34 -33
  19. package/dist/index-6liAPSDn.js +1564 -0
  20. package/dist/index-B3ASENUJ.js +1290 -0
  21. package/dist/index-B7Pf4oPq.js +3069 -0
  22. package/dist/index-BNO3FhZK.js +2304 -0
  23. package/dist/index-BUZSfCl5.js +335 -0
  24. package/dist/index-BXiG1r_o.js +1409 -0
  25. package/dist/index-BYy7Iaam.js +459 -0
  26. package/dist/index-BbB_yx4V.js +1397 -0
  27. package/dist/index-BjWJ95lH.js +2728 -0
  28. package/dist/index-ByEInFlf.js +26408 -0
  29. package/dist/index-C8WIhzyz.js +123 -0
  30. package/dist/index-CnzvaT6b.js +2368 -0
  31. package/dist/index-CrnCf-hJ.js +763 -0
  32. package/dist/index-Cvsho9xg.js +2346 -0
  33. package/dist/index-CxnAo1_c.js +119 -0
  34. package/dist/{index-DYV1jEai.js → index-Cz7-AZwE.js} +22 -20
  35. package/dist/index-DBdRFjxm.js +1264 -0
  36. package/dist/index-DFsSvmMZ.js +7981 -0
  37. package/dist/index-DslzOSGN.js +2549 -0
  38. package/dist/index-DvpYvchM.js +2341 -0
  39. package/dist/index-PWsNvJB-.js +546 -0
  40. package/dist/index.d.ts +1398 -481
  41. package/dist/index.js +539 -438
  42. package/dist/js-yaml-CvhD-clg.js +1335 -0
  43. package/dist/llmProviderPayload-BPzWDy7n.js +332 -0
  44. package/dist/schemas-DFScWdSL.js +2969 -0
  45. package/package.json +1 -1
  46. package/dist/index-B47EJCom.js +0 -236
  47. package/dist/index-Bl1Y7Sro.js +0 -3037
  48. 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
  }
@@ -445,8 +446,6 @@ type ExportTracesPathParams = {
445
446
  interface AppConfig {
446
447
  authConfig: AsgardeoProviderProps;
447
448
  apiBaseUrl: string;
448
- /** Base URL for the traces-observer-service (default: http://localhost:9098). */
449
- obsApiBaseUrl?: string;
450
449
  /** Gateway control plane URL (default: http://localhost:9243). Used for gateway setup commands. */
451
450
  gatewayControlPlaneUrl?: string;
452
451
  /** Gateway version used in setup commands (default: v0.9.0). */
@@ -494,7 +493,28 @@ interface AppConfig {
494
493
  /** Path to the AMP instrumentation version mapping section. */
495
494
  versionMapping?: string;
496
495
  };
496
+ /** Feature flags. All default to false (disabled) unless explicitly enabled. */
497
+ featureFlags?: FeatureFlags;
497
498
  }
499
+ type FeatureFlags = {
500
+ /** Shows the private Git repository option when building agents from source. */
501
+ enablePrivateRepoSupport?: boolean;
502
+ /**
503
+ * When true, identity provider management calls the REST API directly instead of
504
+ * rendering the self-hosted manage-identity-provider.sh script snippet.
505
+ */
506
+ enableIdentityProviderManagedMode?: boolean;
507
+ /**
508
+ * When false, the Profile Settings text fields and Save Changes button are
509
+ * hidden/disabled, and the Change Password tab is disabled.
510
+ */
511
+ enableProfileManagement?: boolean;
512
+ /**
513
+ * When false, the Add User, Invite User, Create Role, and Create Group
514
+ * buttons on the Settings page are disabled.
515
+ */
516
+ enableUserManagement?: boolean;
517
+ };
498
518
  type GuardrailCapabilities = {
499
519
  /** Unlocks: aws-bedrock-guardrail */
500
520
  awsBedrock?: boolean;
@@ -583,6 +603,66 @@ declare const generatedRouteMap: {
583
603
  path: string;
584
604
  wildPath: string;
585
605
  children: {
606
+ profile: {
607
+ path: string;
608
+ wildPath: string;
609
+ children: {};
610
+ };
611
+ thunderInstances: {
612
+ path: string;
613
+ wildPath: string;
614
+ children: {
615
+ view: {
616
+ path: string;
617
+ wildPath: string;
618
+ children: {
619
+ agents: {
620
+ path: string;
621
+ wildPath: string;
622
+ children: {
623
+ detail: {
624
+ path: string;
625
+ wildPath: string;
626
+ children: {};
627
+ };
628
+ };
629
+ };
630
+ groups: {
631
+ path: string;
632
+ wildPath: string;
633
+ children: {
634
+ create: {
635
+ path: string;
636
+ wildPath: string;
637
+ children: {};
638
+ };
639
+ detail: {
640
+ path: string;
641
+ wildPath: string;
642
+ children: {};
643
+ };
644
+ };
645
+ };
646
+ roles: {
647
+ path: string;
648
+ wildPath: string;
649
+ children: {
650
+ create: {
651
+ path: string;
652
+ wildPath: string;
653
+ children: {};
654
+ };
655
+ detail: {
656
+ path: string;
657
+ wildPath: string;
658
+ children: {};
659
+ };
660
+ };
661
+ };
662
+ };
663
+ };
664
+ };
665
+ };
586
666
  gateways: {
587
667
  path: string;
588
668
  wildPath: string;
@@ -626,37 +706,54 @@ declare const generatedRouteMap: {
626
706
  };
627
707
  };
628
708
  };
629
- identities: {
709
+ settings: {
630
710
  path: string;
631
711
  wildPath: string;
632
712
  children: {
633
- users: {
713
+ identities: {
634
714
  path: string;
635
715
  wildPath: string;
636
716
  children: {
637
- detail: {
717
+ users: {
638
718
  path: string;
639
719
  wildPath: string;
640
- children: {};
720
+ children: {
721
+ detail: {
722
+ path: string;
723
+ wildPath: string;
724
+ children: {};
725
+ };
726
+ };
641
727
  };
642
- };
643
- };
644
- roles: {
645
- path: string;
646
- wildPath: string;
647
- children: {
648
- detail: {
728
+ roles: {
649
729
  path: string;
650
730
  wildPath: string;
651
- children: {};
731
+ children: {
732
+ detail: {
733
+ path: string;
734
+ wildPath: string;
735
+ children: {};
736
+ };
737
+ };
738
+ };
739
+ groups: {
740
+ path: string;
741
+ wildPath: string;
742
+ children: {
743
+ detail: {
744
+ path: string;
745
+ wildPath: string;
746
+ children: {};
747
+ };
748
+ };
652
749
  };
653
750
  };
654
751
  };
655
- groups: {
752
+ appearance: {
656
753
  path: string;
657
754
  wildPath: string;
658
755
  children: {
659
- detail: {
756
+ theme: {
660
757
  path: string;
661
758
  wildPath: string;
662
759
  children: {};
@@ -710,7 +807,13 @@ declare const generatedRouteMap: {
710
807
  environments: {
711
808
  path: string;
712
809
  wildPath: string;
713
- children: {};
810
+ children: {
811
+ view: {
812
+ path: string;
813
+ wildPath: string;
814
+ children: {};
815
+ };
816
+ };
714
817
  };
715
818
  catalog: {
716
819
  path: string;
@@ -1063,6 +1166,17 @@ interface ErrorResponse {
1063
1166
  description?: string;
1064
1167
  additionalData?: Record<string, unknown>;
1065
1168
  }
1169
+ interface APIKeyInfo {
1170
+ name: string;
1171
+ displayName?: string;
1172
+ maskedApiKey: string;
1173
+ status: string;
1174
+ createdAt: string;
1175
+ expiresAt?: string;
1176
+ }
1177
+ interface ListAPIKeysResponse {
1178
+ keys: APIKeyInfo[];
1179
+ }
1066
1180
  interface OrgPathParams {
1067
1181
  orgName: string | undefined;
1068
1182
  }
@@ -1090,6 +1204,27 @@ interface GenerateResourceNamePathParams {
1090
1204
  orgName: string | undefined;
1091
1205
  }
1092
1206
 
1207
+ /**
1208
+ * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
1209
+ *
1210
+ * WSO2 LLC. licenses this file to you under the Apache License,
1211
+ * Version 2.0 (the "License"); you may not use this file except
1212
+ * in compliance with the License.
1213
+ * You may obtain a copy of the License at
1214
+ *
1215
+ * http://www.apache.org/licenses/LICENSE-2.0
1216
+ *
1217
+ * Unless required by applicable law or agreed to in writing,
1218
+ * software distributed under the License is distributed on an
1219
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1220
+ * KIND, either express or implied. See the License for the
1221
+ * specific language governing permissions and limitations
1222
+ * under the License.
1223
+ */
1224
+ interface ConfigResponse {
1225
+ observerBaseUrl: string;
1226
+ }
1227
+
1093
1228
  /**
1094
1229
  * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
1095
1230
  *
@@ -1231,10 +1366,21 @@ interface UpstreamEndpoint {
1231
1366
  url?: string;
1232
1367
  ref?: string;
1233
1368
  auth?: UpstreamAuth;
1369
+ /**
1370
+ * Environment UUIDs this endpoint serves. UUIDs (not names) are stored so the
1371
+ * mapping survives environment renames. Used by MCP proxies that configure a
1372
+ * separate upstream per environment; empty for the classic main/sandbox shape.
1373
+ */
1374
+ environments?: string[];
1234
1375
  }
1235
1376
  interface UpstreamConfig {
1236
1377
  main?: UpstreamEndpoint;
1237
1378
  sandbox?: UpstreamEndpoint;
1379
+ /**
1380
+ * Per-environment upstream endpoints. When present, `main` is derived from these
1381
+ * server-side for backwards compatibility.
1382
+ */
1383
+ endpoints?: UpstreamEndpoint[];
1238
1384
  }
1239
1385
  type AccessControlMode = "allow_all" | "deny_all";
1240
1386
  interface RouteException {
@@ -1295,15 +1441,27 @@ interface LLMRateLimitingConfig {
1295
1441
  providerLevel?: RateLimitingScopeConfig;
1296
1442
  consumerLevel?: RateLimitingScopeConfig;
1297
1443
  }
1298
- type APIKeyLocation = "header" | "query" | "cookie";
1444
+ type APIKeyLocation = "header" | "query";
1299
1445
  interface APIKeySecurity {
1300
1446
  enabled?: boolean;
1301
1447
  key?: string;
1302
1448
  in?: APIKeyLocation;
1303
1449
  }
1450
+ /**
1451
+ * Agent Identity security — callers present a JWT issued by the environment's
1452
+ * IdP. v1 pins the issuer to the ThunderKeyManager key manager.
1453
+ */
1454
+ interface IdentitySecurity {
1455
+ enabled?: boolean;
1456
+ }
1457
+ /**
1458
+ * Exactly one variant is active: apiKey or identity (both omitted /
1459
+ * enabled=false means no security).
1460
+ */
1304
1461
  interface SecurityConfig {
1305
1462
  enabled?: boolean;
1306
1463
  apiKey?: APIKeySecurity;
1464
+ identity?: IdentitySecurity;
1307
1465
  }
1308
1466
  /**
1309
1467
  * @deprecated Use the flat fields on CreateLLMProviderRequest / LLMProviderResponse instead.
@@ -1517,12 +1675,14 @@ interface LLMProviderAPIKeyPathParams extends LLMProviderPathParams {
1517
1675
  type CreateLLMProviderAPIKeyPathParams = LLMProviderPathParams;
1518
1676
  type RotateLLMProviderAPIKeyPathParams = LLMProviderAPIKeyPathParams;
1519
1677
  type RevokeLLMProviderAPIKeyPathParams = LLMProviderAPIKeyPathParams;
1678
+ type ListLLMProviderAPIKeysPathParams = LLMProviderPathParams;
1520
1679
  interface LLMProxyAPIKeyPathParams extends LLMProxyPathParams {
1521
1680
  keyName: string | undefined;
1522
1681
  }
1523
1682
  type CreateLLMProxyAPIKeyPathParams = LLMProxyPathParams;
1524
1683
  type RotateLLMProxyAPIKeyPathParams = LLMProxyAPIKeyPathParams;
1525
1684
  type RevokeLLMProxyAPIKeyPathParams = LLMProxyAPIKeyPathParams;
1685
+ type ListLLMProxyAPIKeysPathParams = LLMProxyPathParams;
1526
1686
  type LLMProviderConsumerType = "agent" | "monitor";
1527
1687
  interface LLMProviderConsumerItem {
1528
1688
  proxyId: string;
@@ -1655,6 +1815,21 @@ type GetAgentModelConfigPathParams = AgentModelConfigRequiredPathParams;
1655
1815
  type UpdateAgentModelConfigPathParams = AgentModelConfigRequiredPathParams;
1656
1816
  type DeleteAgentModelConfigPathParams = AgentModelConfigRequiredPathParams;
1657
1817
  type ListAgentModelConfigsQuery = ListQuery;
1818
+ interface LLMConfigAPIKeysPathParams extends AgentPathParams {
1819
+ configId: string | undefined;
1820
+ envName: string | undefined;
1821
+ }
1822
+ interface LLMConfigAPIKeyPathParams extends LLMConfigAPIKeysPathParams {
1823
+ keyName: string | undefined;
1824
+ }
1825
+ type ListLLMConfigAPIKeysPathParams = LLMConfigAPIKeysPathParams;
1826
+ type CreateLLMConfigAPIKeyPathParams = LLMConfigAPIKeysPathParams;
1827
+ type RotateLLMConfigAPIKeyPathParams = LLMConfigAPIKeyPathParams;
1828
+ type RevokeLLMConfigAPIKeyPathParams = LLMConfigAPIKeyPathParams;
1829
+ type CreateLLMConfigAPIKeyRequest = CreateLLMAPIKeyRequest;
1830
+ type CreateLLMConfigAPIKeyResponse = CreateLLMAPIKeyResponse;
1831
+ type RotateLLMConfigAPIKeyRequest = RotateLLMAPIKeyRequest;
1832
+ type RotateLLMConfigAPIKeyResponse = RotateLLMAPIKeyResponse;
1658
1833
 
1659
1834
  /**
1660
1835
  * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
@@ -1698,6 +1873,21 @@ type GetAgentMCPConfigPathParams = AgentMCPConfigRequiredPathParams;
1698
1873
  type UpdateAgentMCPConfigPathParams = UpdateAgentModelConfigPathParams;
1699
1874
  type DeleteAgentMCPConfigPathParams = DeleteAgentModelConfigPathParams;
1700
1875
  type ListAgentMCPConfigsQuery = ListAgentModelConfigsQuery;
1876
+ interface MCPConfigAPIKeysPathParams extends AgentPathParams {
1877
+ configId: string | undefined;
1878
+ envName: string | undefined;
1879
+ }
1880
+ interface MCPConfigAPIKeyPathParams extends MCPConfigAPIKeysPathParams {
1881
+ keyName: string | undefined;
1882
+ }
1883
+ type ListMCPConfigAPIKeysPathParams = MCPConfigAPIKeysPathParams;
1884
+ type CreateMCPConfigAPIKeyPathParams = MCPConfigAPIKeysPathParams;
1885
+ type RotateMCPConfigAPIKeyPathParams = MCPConfigAPIKeyPathParams;
1886
+ type RevokeMCPConfigAPIKeyPathParams = MCPConfigAPIKeyPathParams;
1887
+ type CreateMCPConfigAPIKeyRequest = CreateLLMAPIKeyRequest;
1888
+ type CreateMCPConfigAPIKeyResponse = CreateLLMAPIKeyResponse;
1889
+ type RotateMCPConfigAPIKeyRequest = RotateLLMAPIKeyRequest;
1890
+ type RotateMCPConfigAPIKeyResponse = RotateLLMAPIKeyResponse;
1701
1891
 
1702
1892
  /**
1703
1893
  * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
@@ -1727,6 +1917,9 @@ interface CreateAgentAPIKeyResponse {
1727
1917
  message: string;
1728
1918
  keyId?: string;
1729
1919
  apiKey?: string;
1920
+ /** False when the environment's gateway had no live websocket connection
1921
+ * at creation time; the key only activates once the gateway reconnects. */
1922
+ gatewayConnected?: boolean;
1730
1923
  }
1731
1924
  interface RotateAgentAPIKeyRequest {
1732
1925
  displayName?: string;
@@ -1737,6 +1930,9 @@ interface RotateAgentAPIKeyResponse {
1737
1930
  message: string;
1738
1931
  keyId?: string;
1739
1932
  apiKey?: string;
1933
+ /** False when the environment's gateway had no live websocket connection
1934
+ * at rotation time; the new key only activates once the gateway reconnects. */
1935
+ gatewayConnected?: boolean;
1740
1936
  }
1741
1937
  interface AgentAPIKeyListItem {
1742
1938
  uuid: string;
@@ -1765,6 +1961,9 @@ interface IssueTestAgentAPIKeyResponse {
1765
1961
  keyId?: string;
1766
1962
  apiKey?: string;
1767
1963
  expiresAt: string;
1964
+ /** False when the environment's gateway had no live websocket connection
1965
+ * at issuance time; the key only activates once the gateway reconnects. */
1966
+ gatewayConnected?: boolean;
1768
1967
  }
1769
1968
 
1770
1969
  /**
@@ -1861,103 +2060,309 @@ interface ListCatalogLLMProvidersQuery {
1861
2060
  * under the License.
1862
2061
  */
1863
2062
 
1864
- interface ModelConfigRequest {
1865
- providerName: string;
1866
- configuration?: EnvProviderConfiguration;
1867
- environmentVariables?: EnvironmentVariableConfig[];
2063
+ interface ThunderClaim {
2064
+ type: string;
2065
+ value: string;
1868
2066
  }
1869
- interface MCPConfigRequest {
1870
- proxyName: string;
1871
- environmentVariables?: EnvironmentVariableConfig[];
2067
+ interface ThunderUser {
2068
+ id: string;
2069
+ type?: string;
2070
+ ouId?: string;
2071
+ attributes?: Record<string, unknown>;
2072
+ groups?: Array<{
2073
+ id: string;
2074
+ name: string;
2075
+ }>;
2076
+ createdAt?: string;
2077
+ updatedAt?: string;
1872
2078
  }
1873
- interface AgentRequestBase {
1874
- name: string;
1875
- displayName: string;
1876
- description?: string;
1877
- provisioning: Provisioning;
1878
- agentType?: AgentType;
1879
- build?: Build;
1880
- configurations?: Configurations;
1881
- inputInterface?: InputInterface;
1882
- modelConfig?: ModelConfigRequest[];
1883
- mcpConfig?: MCPConfigRequest[];
2079
+ interface ThunderUserListResponse extends PaginationMeta {
2080
+ users: ThunderUser[];
1884
2081
  }
1885
- interface UpdateAgentBasicInfoRequest {
1886
- displayName: string;
1887
- description?: string;
2082
+ interface CreateUserRequest {
2083
+ type: string;
2084
+ attributes: Record<string, string>;
2085
+ ouId?: string;
1888
2086
  }
1889
- interface UpdateAgentBuildParametersRequest {
1890
- provisioning: Provisioning;
1891
- agentType?: AgentType;
1892
- build?: Build;
1893
- configurations?: Configurations;
1894
- inputInterface?: InputInterface;
2087
+ interface UpdateUserRequest {
2088
+ attributes?: Record<string, string>;
1895
2089
  }
1896
- type CreateAgentRequest = AgentRequestBase;
1897
- type UpdateAgentRequest = UpdateAgentBasicInfoRequest;
1898
-
1899
- type InputInterfaceType = 'DEFAULT' | 'CUSTOM';
1900
- interface InputInterface {
1901
- type: string;
1902
- port?: number;
1903
- schema?: {
1904
- path: string;
1905
- };
1906
- basePath?: string;
2090
+ interface InviteUserRequest {
2091
+ email: string;
1907
2092
  }
1908
- interface AgentType {
1909
- type: string;
1910
- subType: string;
2093
+ interface InviteUserResponse {
2094
+ inviteLink: string;
1911
2095
  }
1912
- type ProvisioningType = 'internal' | 'external';
1913
- interface ProvisioningAgentKind {
2096
+ interface ThunderGroup {
2097
+ id: string;
2098
+ ouId?: string;
1914
2099
  name: string;
1915
- version: string;
2100
+ description?: string;
2101
+ createdAt?: string;
2102
+ updatedAt?: string;
1916
2103
  }
1917
- interface Provisioning {
1918
- type: ProvisioningType;
1919
- repository?: RepositoryConfig;
1920
- agentKind?: ProvisioningAgentKind;
2104
+ interface ThunderGroupListResponse extends PaginationMeta {
2105
+ groups: ThunderGroup[];
1921
2106
  }
1922
- interface AgentResponse {
2107
+ interface CreateGroupRequest {
1923
2108
  name: string;
1924
- displayName: string;
1925
- description: string;
1926
- createdAt: string;
1927
- projectName: string;
1928
- status?: string;
1929
- provisioning: Provisioning;
1930
- agentType?: AgentType;
1931
- build?: Build;
1932
- configurations?: Configurations;
1933
- inputInterface?: InputInterface;
1934
- uuid?: string;
1935
- kindName?: string;
1936
- }
1937
- interface AgentListResponse extends PaginationMeta {
1938
- agents: AgentResponse[];
2109
+ description?: string;
1939
2110
  }
1940
- type ListAgentsPathParams = OrgProjPathParams;
1941
- type CreateAgentPathParams = OrgProjPathParams;
1942
- type GetAgentPathParams = AgentPathParams;
1943
- type DeleteAgentPathParams = AgentPathParams;
1944
- type UpdateAgentPathParams = AgentPathParams;
1945
- type UpdateAgentBasicInfoPathParams = AgentPathParams;
1946
- type UpdateAgentBuildParametersPathParams = AgentPathParams;
1947
- type ListAgentsQuery = ListQuery;
1948
- interface TokenRequest {
1949
- expires_in?: string;
2111
+ interface UpdateGroupRequest {
2112
+ name: string;
2113
+ description?: string;
1950
2114
  }
1951
- interface TokenResponse {
1952
- token: string;
1953
- expires_at: number;
1954
- issued_at: number;
2115
+ interface ThunderRole {
2116
+ id: string;
2117
+ ouId?: string;
2118
+ name: string;
2119
+ description?: string;
2120
+ permissions?: RolePermissionRequest[];
2121
+ isReadOnly?: boolean;
2122
+ createdAt?: string;
2123
+ updatedAt?: string;
2124
+ }
2125
+ interface ThunderRoleListResponse extends PaginationMeta {
2126
+ roles: ThunderRole[];
2127
+ }
2128
+ interface ThunderRoleAssignments {
2129
+ permissions?: string[];
2130
+ users?: ThunderUser[];
2131
+ groups?: ThunderGroup[];
2132
+ }
2133
+ interface CreateRoleRequest {
2134
+ name: string;
2135
+ description?: string;
2136
+ }
2137
+ interface UpdateRoleRequest {
2138
+ name: string;
2139
+ description?: string;
2140
+ }
2141
+ interface RolePermissionRequest {
2142
+ resourceServerId: string;
2143
+ permissions: string[];
2144
+ }
2145
+ interface RoleUserGroupRequest {
2146
+ userIds?: string[];
2147
+ groupIds?: string[];
2148
+ }
2149
+ interface ThunderPermission {
2150
+ name: string;
2151
+ resourceServerId: string;
2152
+ actionName: string;
2153
+ resourceName: string;
2154
+ }
2155
+ interface AMPPermissionsResponse {
2156
+ permissions: ThunderPermission[];
2157
+ resourceServerId: string;
2158
+ }
2159
+ type IdentityOrgPathParams = OrgPathParams;
2160
+ type UserPathParams = OrgPathParams & {
2161
+ userId: string;
2162
+ };
2163
+ type GroupPathParams = OrgPathParams & {
2164
+ groupId: string;
2165
+ };
2166
+ type RolePathParams = OrgPathParams & {
2167
+ roleId: string;
2168
+ };
2169
+
2170
+ /**
2171
+ * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
2172
+ *
2173
+ * WSO2 LLC. licenses this file to you under the Apache License,
2174
+ * Version 2.0 (the "License"); you may not use this file except
2175
+ * in compliance with the License.
2176
+ * You may obtain a copy of the License at
2177
+ *
2178
+ * http://www.apache.org/licenses/LICENSE-2.0
2179
+ *
2180
+ * Unless required by applicable law or agreed to in writing,
2181
+ * software distributed under the License is distributed on an
2182
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
2183
+ * KIND, either express or implied. See the License for the
2184
+ * specific language governing permissions and limitations
2185
+ * under the License.
2186
+ */
2187
+
2188
+ interface ModelConfigRequest {
2189
+ providerName: string;
2190
+ configuration?: EnvProviderConfiguration;
2191
+ environmentVariables?: EnvironmentVariableConfig[];
2192
+ }
2193
+ interface MCPConfigRequest {
2194
+ proxyName: string;
2195
+ environmentVariables?: EnvironmentVariableConfig[];
2196
+ }
2197
+ interface AgentRequestBase {
2198
+ name: string;
2199
+ displayName: string;
2200
+ description?: string;
2201
+ provisioning: Provisioning;
2202
+ agentType?: AgentType;
2203
+ build?: Build;
2204
+ configurations?: Configurations;
2205
+ inputInterface?: InputInterface;
2206
+ modelConfig?: ModelConfigRequest[];
2207
+ mcpConfig?: MCPConfigRequest[];
2208
+ labels?: Record<string, string>;
2209
+ }
2210
+ interface UpdateAgentBasicInfoRequest {
2211
+ displayName: string;
2212
+ description?: string;
2213
+ /** Omit to leave labels unchanged; send {} to clear all labels. */
2214
+ labels?: Record<string, string>;
2215
+ }
2216
+ interface UpdateAgentBuildParametersRequest {
2217
+ provisioning: Provisioning;
2218
+ agentType?: AgentType;
2219
+ build?: Build;
2220
+ configurations?: Configurations;
2221
+ inputInterface?: InputInterface;
2222
+ }
2223
+ type CreateAgentRequest = AgentRequestBase;
2224
+ type UpdateAgentRequest = UpdateAgentBasicInfoRequest;
2225
+
2226
+ type InputInterfaceType = 'DEFAULT' | 'CUSTOM';
2227
+ interface InputInterface {
2228
+ type: string;
2229
+ port?: number;
2230
+ schema?: {
2231
+ path: string;
2232
+ };
2233
+ basePath?: string;
2234
+ }
2235
+ interface AgentType {
2236
+ type: string;
2237
+ subType: string;
2238
+ }
2239
+ type ProvisioningType = 'internal' | 'external';
2240
+ interface ProvisioningAgentKind {
2241
+ name: string;
2242
+ version: string;
2243
+ }
2244
+ interface Provisioning {
2245
+ type: ProvisioningType;
2246
+ repository?: RepositoryConfig;
2247
+ agentKind?: ProvisioningAgentKind;
2248
+ }
2249
+ interface AgentResponse {
2250
+ name: string;
2251
+ displayName: string;
2252
+ description: string;
2253
+ createdAt: string;
2254
+ projectName: string;
2255
+ status?: string;
2256
+ provisioning: Provisioning;
2257
+ agentType?: AgentType;
2258
+ build?: Build;
2259
+ configurations?: Configurations;
2260
+ inputInterface?: InputInterface;
2261
+ uuid?: string;
2262
+ kindName?: string;
2263
+ labels?: Record<string, string>;
2264
+ }
2265
+ interface AgentListResponse extends PaginationMeta {
2266
+ agents: AgentResponse[];
2267
+ }
2268
+ type ListAgentsPathParams = OrgProjPathParams;
2269
+ type CreateAgentPathParams = OrgProjPathParams;
2270
+ type GetAgentPathParams = AgentPathParams;
2271
+ type DeleteAgentPathParams = AgentPathParams;
2272
+ type UpdateAgentPathParams = AgentPathParams;
2273
+ type UpdateAgentBasicInfoPathParams = AgentPathParams;
2274
+ type UpdateAgentBuildParametersPathParams = AgentPathParams;
2275
+ /** `label` entries are `key:value` selectors; repeat for AND semantics. */
2276
+ type ListAgentsQuery = ListQuery & {
2277
+ label?: string[];
2278
+ };
2279
+ interface TokenRequest {
2280
+ expires_in?: string;
2281
+ }
2282
+ interface TokenResponse {
2283
+ token: string;
2284
+ expires_at: number;
2285
+ issued_at: number;
1955
2286
  token_type: string;
1956
2287
  }
1957
2288
  type GenerateAgentTokenPathParams = AgentPathParams;
1958
2289
  interface GenerateAgentTokenQuery {
1959
2290
  environment?: string;
1960
2291
  }
2292
+ type GetAgentRolesPathParams = AgentPathParams;
2293
+ type GetAgentGroupsPathParams = AgentPathParams;
2294
+ interface GetAgentRolesQuery {
2295
+ environment: string;
2296
+ }
2297
+ interface GetAgentGroupsQuery {
2298
+ environment: string;
2299
+ }
2300
+ interface AgentRolesResponse {
2301
+ roles: ThunderRole[];
2302
+ }
2303
+ interface AgentGroupsResponse {
2304
+ groups: ThunderGroup[];
2305
+ }
2306
+ type AgentThunderStatus = 'pending' | 'in_progress' | 'completed' | 'failed';
2307
+ interface AgentIdentityEnvironmentView {
2308
+ environmentName: string;
2309
+ provisioningType: ProvisioningType;
2310
+ status: AgentThunderStatus;
2311
+ agentId?: string;
2312
+ clientId?: string;
2313
+ lastError?: string;
2314
+ hasUnclaimedSecret: boolean;
2315
+ requestedBy?: string;
2316
+ }
2317
+ interface AgentIdentityActionRequest {
2318
+ environment: string;
2319
+ }
2320
+ interface AgentClaimSecretResponse {
2321
+ environmentName: string;
2322
+ agentId: string;
2323
+ clientId: string;
2324
+ clientSecret: string;
2325
+ status: string;
2326
+ }
2327
+ interface AgentRegenerateSecretResponse {
2328
+ environmentName: string;
2329
+ provisioningType: ProvisioningType;
2330
+ clientId: string;
2331
+ clientSecret: string;
2332
+ status: string;
2333
+ }
2334
+ interface AgentRevokeSecretResponse {
2335
+ environmentName: string;
2336
+ clientId: string;
2337
+ status: string;
2338
+ }
2339
+ interface AgentCredentialsResponse {
2340
+ environmentName: string;
2341
+ agentId: string;
2342
+ clientId: string;
2343
+ clientSecret: string;
2344
+ }
2345
+ type GetAgentIdentityPathParams = AgentPathParams;
2346
+ interface GetAgentIdentityQuery {
2347
+ environment?: string;
2348
+ }
2349
+ type ProvisionAgentIdentityPathParams = AgentPathParams;
2350
+ interface ProvisionAgentIdentityQuery {
2351
+ environment: string;
2352
+ }
2353
+ type RegenerateAgentIdentitySecretPathParams = AgentPathParams;
2354
+ type RevokeAgentIdentitySecretPathParams = AgentPathParams;
2355
+ interface RevokeAgentIdentitySecretQuery {
2356
+ environment: string;
2357
+ }
2358
+ type GetAgentCredentialsPathParams = AgentPathParams;
2359
+ interface GetAgentCredentialsQuery {
2360
+ environment: string;
2361
+ }
2362
+ type ClaimAgentIdentitySecretPathParams = AgentPathParams;
2363
+ interface ClaimAgentIdentitySecretQuery {
2364
+ environment: string;
2365
+ }
1961
2366
 
1962
2367
  /**
1963
2368
  * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
@@ -2030,49 +2435,226 @@ type FilterAgentRuntimeLogsPathParams = AgentPathParams;
2030
2435
  interface BuildAgentQuery {
2031
2436
  commitId?: string;
2032
2437
  }
2033
- type BuildStatus = "Completed" | "Succeeded" | "Running" | "Pending" | "Failed";
2034
- type BuildStatusColor = 'success' | 'warning' | 'error' | 'default';
2035
- declare const BUILD_STATUS_COLOR_MAP: Record<BuildStatus, BuildStatusColor>;
2036
- interface BuildParameters {
2037
- repoUrl: string;
2038
- appPath: string;
2039
- branch: string;
2040
- commitId: string;
2041
- language: string;
2042
- languageVersion: string;
2043
- runCommand: string;
2438
+ type BuildStatus = "Completed" | "Succeeded" | "Running" | "Pending" | "Failed";
2439
+ type BuildStatusColor = 'success' | 'warning' | 'error' | 'default';
2440
+ declare const BUILD_STATUS_COLOR_MAP: Record<BuildStatus, BuildStatusColor>;
2441
+ interface BuildParameters {
2442
+ repoUrl: string;
2443
+ appPath: string;
2444
+ branch: string;
2445
+ commitId: string;
2446
+ language: string;
2447
+ languageVersion: string;
2448
+ runCommand: string;
2449
+ }
2450
+ interface BuildResponse {
2451
+ buildId?: string;
2452
+ buildName: string;
2453
+ projectName: string;
2454
+ agentName: string;
2455
+ startedAt: string;
2456
+ endedAt?: string;
2457
+ imageId?: string;
2458
+ status?: BuildStatus;
2459
+ buildParameters: BuildParameters;
2460
+ }
2461
+ interface BuildsListResponse extends PaginationMeta {
2462
+ builds: BuildResponse[];
2463
+ }
2464
+ type BuildStepStatus = "Succeeded" | "Failed" | "Running" | "Pending";
2465
+ interface BuildStep {
2466
+ type: BuildStatus;
2467
+ status: BuildStepStatus;
2468
+ message: string;
2469
+ startedAt?: string;
2470
+ finishedAt?: string;
2471
+ }
2472
+ interface BuildInputInterfaceSchema {
2473
+ path?: string;
2474
+ content?: string;
2475
+ }
2476
+ interface BuildInputInterface {
2477
+ type: string;
2478
+ port?: number;
2479
+ basePath?: string;
2480
+ visibility?: string[];
2481
+ schema?: BuildInputInterfaceSchema;
2482
+ }
2483
+ interface BuildDetailsResponse extends BuildResponse {
2484
+ percent?: number;
2485
+ steps?: BuildStep[];
2486
+ durationSeconds?: number;
2487
+ inputInterface?: BuildInputInterface;
2488
+ }
2489
+ type BuildAgentPathParams = AgentPathParams;
2490
+ type GetAgentBuildsPathParams = AgentPathParams;
2491
+ type GetBuildPathParams = BuildPathParams;
2492
+ type GetAgentBuildsQuery = ListQuery;
2493
+
2494
+ /**
2495
+ * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
2496
+ *
2497
+ * WSO2 LLC. licenses this file to you under the Apache License,
2498
+ * Version 2.0 (the "License"); you may not use this file except
2499
+ * in compliance with the License.
2500
+ * You may obtain a copy of the License at
2501
+ *
2502
+ * http://www.apache.org/licenses/LICENSE-2.0
2503
+ *
2504
+ * Unless required by applicable law or agreed to in writing,
2505
+ * software distributed under the License is distributed on an
2506
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
2507
+ * KIND, either express or implied. See the License for the
2508
+ * specific language governing permissions and limitations
2509
+ * under the License.
2510
+ */
2511
+
2512
+ type GatewayType = "AI" | "REGULAR";
2513
+ type GatewayStatus = "ACTIVE" | "INACTIVE" | "PROVISIONING" | "ERROR";
2514
+ interface GatewayListenerSpec {
2515
+ port?: number;
2516
+ host?: string;
2517
+ }
2518
+ interface GatewayEndpointSpec {
2519
+ http?: GatewayListenerSpec;
2520
+ https?: GatewayListenerSpec;
2521
+ tls?: GatewayListenerSpec;
2522
+ }
2523
+ interface GatewayNetworkSpec {
2524
+ external?: GatewayEndpointSpec;
2525
+ internal?: GatewayEndpointSpec;
2526
+ }
2527
+ /**
2528
+ * Gateway configuration with ingress and egress network specs, sourced from
2529
+ * the underlying OpenChoreo environment.
2530
+ */
2531
+ interface GatewaySpec {
2532
+ ingress?: GatewayNetworkSpec;
2533
+ egress?: GatewayNetworkSpec;
2534
+ }
2535
+ interface GatewayEnvironmentResponse {
2536
+ id: string;
2537
+ organizationName: string;
2538
+ name: string;
2539
+ displayName: string;
2540
+ description?: string;
2541
+ dataplaneRef: string;
2542
+ dnsPrefix: string;
2543
+ isProduction: boolean;
2544
+ gateway?: GatewaySpec;
2545
+ createdAt: string;
2546
+ updatedAt: string;
2547
+ }
2548
+ interface GatewayResponse {
2549
+ uuid: string;
2550
+ organizationName: string;
2551
+ name: string;
2552
+ displayName: string;
2553
+ gatewayType: GatewayType;
2554
+ vhost: string;
2555
+ region?: string;
2556
+ isCritical: boolean;
2557
+ status: GatewayStatus;
2558
+ createdAt: string;
2559
+ updatedAt: string;
2560
+ environments?: GatewayEnvironmentResponse[];
2561
+ }
2562
+ interface GatewayListResponse extends PaginationMeta {
2563
+ gateways: GatewayResponse[];
2564
+ }
2565
+ interface CreateGatewayRequest {
2566
+ name: string;
2567
+ displayName: string;
2568
+ gatewayType: GatewayType;
2569
+ vhost: string;
2570
+ region?: string;
2571
+ isCritical?: boolean;
2572
+ environmentIds?: string[];
2573
+ }
2574
+ interface UpdateGatewayRequest {
2575
+ displayName?: string;
2576
+ isCritical?: boolean;
2577
+ status?: GatewayStatus;
2578
+ }
2579
+ interface ListGatewaysQuery extends ListQuery {
2580
+ type?: GatewayType;
2581
+ status?: GatewayStatus;
2582
+ environment?: string;
2583
+ }
2584
+ type ListGatewaysPathParams = OrgPathParams;
2585
+ type CreateGatewayPathParams = OrgPathParams;
2586
+ interface GatewayPathParams extends OrgPathParams {
2587
+ gatewayId: string | undefined;
2588
+ }
2589
+ type GetGatewayPathParams = GatewayPathParams;
2590
+ type UpdateGatewayPathParams = GatewayPathParams;
2591
+ type DeleteGatewayPathParams = GatewayPathParams;
2592
+ type IdentityProviderType = "system" | "custom";
2593
+ interface IdentityProvider {
2594
+ name: string;
2595
+ issuer?: string;
2596
+ jwksUri?: string;
2597
+ skipTlsVerify?: boolean;
2598
+ description?: string;
2599
+ /** "system" providers (e.g. ThunderKeyManager) cannot be deleted. */
2600
+ type?: IdentityProviderType;
2601
+ /** Set on org-wide listing: the environment this provider's gateway is mapped to. */
2602
+ environmentName?: string;
2603
+ /** Set on org-wide listing: the gateway this provider is registered to. */
2604
+ gatewayId?: string;
2605
+ gatewayName?: string;
2606
+ }
2607
+ interface IdentityProviderListResponse {
2608
+ count: number;
2609
+ list: IdentityProvider[];
2610
+ }
2611
+ type ListIdentityProvidersPathParams = OrgPathParams;
2612
+ interface UpsertIdentityProviderPathParams extends OrgPathParams {
2613
+ gatewayId: string;
2614
+ /** Identity provider name (taken from the path; not part of the request body). */
2615
+ name: string;
2616
+ }
2617
+ /** Request body for creating or updating a gateway identity provider. */
2618
+ interface UpsertIdentityProviderRequest {
2619
+ issuer: string;
2620
+ jwksUri: string;
2621
+ skipTlsVerify?: boolean;
2622
+ description?: string;
2623
+ }
2624
+ interface DeleteIdentityProviderPathParams extends OrgPathParams {
2625
+ gatewayId: string;
2626
+ name: string;
2044
2627
  }
2045
- interface BuildResponse {
2046
- buildId?: string;
2047
- buildName: string;
2048
- projectName: string;
2049
- agentName: string;
2050
- startedAt: string;
2051
- endedAt?: string;
2052
- imageId?: string;
2053
- status?: BuildStatus;
2054
- buildParameters: BuildParameters;
2628
+ /** Issuer metadata resolved from an OpenID Connect discovery document. */
2629
+ interface OidcDiscoveryResponse {
2630
+ issuer: string;
2631
+ jwksUri: string;
2055
2632
  }
2056
- interface BuildsListResponse extends PaginationMeta {
2057
- builds: BuildResponse[];
2633
+ type DiscoverOidcPathParams = OrgPathParams;
2634
+ interface DiscoverOidcQuery {
2635
+ /** Issuer base URL or full .well-known/openid-configuration URL. */
2636
+ url: string;
2058
2637
  }
2059
- type BuildStepStatus = "Succeeded" | "Failed" | "Running" | "Pending";
2060
- interface BuildStep {
2061
- type: BuildStatus;
2062
- status: BuildStepStatus;
2063
- message: string;
2064
- startedAt?: string;
2065
- finishedAt?: string;
2638
+ interface ListEnvironmentIdentityProvidersPathParams extends OrgPathParams {
2639
+ environmentId: string | undefined;
2066
2640
  }
2067
- interface BuildDetailsResponse extends BuildResponse {
2068
- percent?: number;
2069
- steps?: BuildStep[];
2070
- durationSeconds?: number;
2641
+ interface GatewayTokenInfo {
2642
+ id: string;
2643
+ status: "active" | "revoked";
2644
+ createdAt: string;
2645
+ revokedAt?: string | null;
2646
+ }
2647
+ interface GatewayTokenListResponse {
2648
+ count: number;
2649
+ list: GatewayTokenInfo[];
2650
+ }
2651
+ interface GatewayTokenResponse {
2652
+ gatewayId: string;
2653
+ token: string;
2654
+ tokenId: string;
2655
+ createdAt: string;
2656
+ expiresAt?: string;
2071
2657
  }
2072
- type BuildAgentPathParams = AgentPathParams;
2073
- type GetAgentBuildsPathParams = AgentPathParams;
2074
- type GetBuildPathParams = BuildPathParams;
2075
- type GetAgentBuildsQuery = ListQuery;
2076
2658
 
2077
2659
  /**
2078
2660
  * Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
@@ -2106,6 +2688,11 @@ interface DeployAgentRequest {
2106
2688
  interface UpdateAgentDeploySettingsRequest {
2107
2689
  environmentName: string;
2108
2690
  enableAutoInstrumentation?: boolean;
2691
+ /**
2692
+ * AMP instrumentation version to pin for this Python buildpack agent in this
2693
+ * environment. Omit to keep the currently-pinned version.
2694
+ */
2695
+ instrumentationVersion?: string;
2109
2696
  enableApiKeySecurity?: boolean;
2110
2697
  enableOAuthSecurity?: boolean;
2111
2698
  corsConfig?: CorsConfig;
@@ -2177,8 +2764,10 @@ interface Environment {
2177
2764
  displayName?: string;
2178
2765
  isProduction: boolean;
2179
2766
  dnsPrefix?: string;
2767
+ gateway?: GatewaySpec;
2180
2768
  createdAt: string;
2181
2769
  id?: string;
2770
+ isolationTier?: string;
2182
2771
  }
2183
2772
  type EnvironmentListResponse = Environment[];
2184
2773
  interface DataPlane {
@@ -2243,6 +2832,11 @@ interface PromoteAgentRequest {
2243
2832
  env?: EnvironmentVariable[];
2244
2833
  files?: FileMount[];
2245
2834
  enableAutoInstrumentation?: boolean;
2835
+ /**
2836
+ * AMP instrumentation version to pin for this Python buildpack agent in the
2837
+ * target environment. Omit to inherit the currently-pinned version.
2838
+ */
2839
+ instrumentationVersion?: string;
2246
2840
  enableApiKeySecurity?: boolean;
2247
2841
  enableOAuthSecurity?: boolean;
2248
2842
  corsConfig?: CorsConfig;
@@ -2286,6 +2880,10 @@ interface UpdateEnvironmentPathParams {
2286
2880
  orgName: string | undefined;
2287
2881
  envName: string | undefined;
2288
2882
  }
2883
+ type GetEnvironmentPathParams = {
2884
+ orgName: string | undefined;
2885
+ envName: string | undefined;
2886
+ };
2289
2887
  interface CreateEnvironmentRequest {
2290
2888
  name: string;
2291
2889
  displayName: string;
@@ -2944,21 +3542,55 @@ interface MCPPolicyAvailabilityResponse {
2944
3542
  count: number;
2945
3543
  list: MCPPolicyAvailableItem[];
2946
3544
  }
3545
+ /**
3546
+ * MCPEndpointConfig is the deployable configuration of a single MCP proxy endpoint:
3547
+ * upstream (URL + auth), policies, capabilities and security. It is the flat config
3548
+ * carried on each MCPProxyEndpoint. Environment binding and per-environment deployment
3549
+ * status live on MCPEndpointEnvironment, not here. Scopes gating individual tools are
3550
+ * managed separately, at the proxy level (see MCPProxyScopeResponse).
3551
+ */
3552
+ interface MCPEndpointConfig {
3553
+ upstream?: UpstreamConfig;
3554
+ policies?: MCPProxyPolicy[];
3555
+ capabilities?: MCPProxyCapabilities;
3556
+ security?: SecurityConfig;
3557
+ }
3558
+ /**
3559
+ * MCPEndpointEnvironment is one endpoint→environment binding. deploymentStatus is
3560
+ * response-only: it reports whether this environment's gateway artifact is currently
3561
+ * deployed ("Deployed") or not ("Undeployed"). Computed on read; never sent.
3562
+ */
3563
+ interface MCPEndpointEnvironment {
3564
+ environmentUuid: string;
3565
+ deploymentStatus?: "Deployed" | "Undeployed";
3566
+ }
3567
+ /**
3568
+ * MCPProxyEndpoint is one deployable endpoint of an MCP proxy. Its id is unique within the
3569
+ * parent proxy. The endpoint's flat config (upstream/policies/capabilities/security) applies
3570
+ * to every environment it is bound to via environments; within a proxy an environment maps to
3571
+ * at most one endpoint.
3572
+ */
3573
+ interface MCPProxyEndpoint extends MCPEndpointConfig {
3574
+ id: string;
3575
+ name?: string;
3576
+ environments: MCPEndpointEnvironment[];
3577
+ }
3578
+ /**
3579
+ * MCPProxy is an org-level grouping. Name/version/context/vhost/mcpSpecVersion are shared
3580
+ * metadata; the deployable config lives on each endpoint in endpoints. The proxy itself
3581
+ * deploys nothing to any gateway.
3582
+ */
2947
3583
  interface MCPProxy {
2948
3584
  id: string;
2949
3585
  inCatalog?: boolean;
2950
3586
  name: string;
2951
3587
  version: string;
2952
- upstream: UpstreamConfig;
2953
3588
  description?: string;
2954
3589
  createdBy?: string;
2955
3590
  context?: string;
2956
3591
  vhost?: string;
2957
- gateways?: string[];
2958
3592
  mcpSpecVersion?: string;
2959
- policies?: MCPProxyPolicy[];
2960
- capabilities?: MCPProxyCapabilities;
2961
- security?: SecurityConfig;
3593
+ endpoints: MCPProxyEndpoint[];
2962
3594
  createdAt?: string;
2963
3595
  updatedAt?: string;
2964
3596
  }
@@ -3009,16 +3641,6 @@ type ListMCPProxiesPathParams = OrgPathParams;
3009
3641
  type ListAvailableMCPPoliciesPathParams = OrgPathParams;
3010
3642
  type ListMCPProxiesQuery = ListQuery;
3011
3643
  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
3644
 
3023
3645
  /**
3024
3646
  * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
@@ -3037,173 +3659,30 @@ type RotateMCPProxyAPIKeyResponse = RotateLLMAPIKeyResponse;
3037
3659
  * under the License.
3038
3660
  */
3039
3661
 
3040
- interface AgentMCPProxyListItem {
3041
- id: string;
3042
- name: string;
3043
- description?: string;
3044
- context?: string;
3045
- version?: string;
3046
- status?: string;
3047
- proxyId?: string;
3048
- proxyName?: string;
3049
- proxyUrl?: string;
3050
- envMappings?: Record<string, EnvProviderConfigMappings>;
3051
- environmentVariables?: EnvironmentVariableConfig[];
3052
- createdAt?: string;
3053
- }
3054
- interface AgentMCPProxyListResponse {
3055
- count: number;
3056
- list: AgentMCPProxyListItem[];
3057
- }
3058
- interface AddAgentMCPProxyRequest {
3059
- proxyId: string;
3060
- environmentVariables?: EnvironmentVariableConfig[];
3061
- }
3062
- type ListAgentMCPProxiesPathParams = AgentPathParams;
3063
- type AddAgentMCPProxyPathParams = AgentPathParams;
3064
-
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;
3662
+ interface AgentMCPProxyListItem {
3663
+ id: string;
3664
+ name: string;
3665
+ description?: string;
3666
+ context?: string;
3667
+ version?: string;
3668
+ status?: string;
3669
+ proxyId?: string;
3670
+ proxyName?: string;
3671
+ proxyUrl?: string;
3672
+ envMappings?: Record<string, EnvProviderConfigMappings>;
3673
+ environmentVariables?: EnvironmentVariableConfig[];
3674
+ createdAt?: string;
3195
3675
  }
3196
- interface GatewayTokenListResponse {
3676
+ interface AgentMCPProxyListResponse {
3197
3677
  count: number;
3198
- list: GatewayTokenInfo[];
3678
+ list: AgentMCPProxyListItem[];
3199
3679
  }
3200
- interface GatewayTokenResponse {
3201
- gatewayId: string;
3202
- token: string;
3203
- tokenId: string;
3204
- createdAt: string;
3205
- expiresAt?: string;
3680
+ interface AddAgentMCPProxyRequest {
3681
+ proxyId: string;
3682
+ environmentVariables?: EnvironmentVariableConfig[];
3206
3683
  }
3684
+ type ListAgentMCPProxiesPathParams = AgentPathParams;
3685
+ type AddAgentMCPProxyPathParams = AgentPathParams;
3207
3686
 
3208
3687
  /**
3209
3688
  * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
@@ -3250,131 +3729,6 @@ type DeleteGitSecretPathParams = OrgPathParams & {
3250
3729
  };
3251
3730
  type ListGitSecretsQuery = ListQuery;
3252
3731
 
3253
- /**
3254
- * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
3255
- *
3256
- * WSO2 LLC. licenses this file to you under the Apache License,
3257
- * Version 2.0 (the "License"); you may not use this file except
3258
- * in compliance with the License.
3259
- * You may obtain a copy of the License at
3260
- *
3261
- * http://www.apache.org/licenses/LICENSE-2.0
3262
- *
3263
- * Unless required by applicable law or agreed to in writing,
3264
- * software distributed under the License is distributed on an
3265
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
3266
- * KIND, either express or implied. See the License for the
3267
- * specific language governing permissions and limitations
3268
- * under the License.
3269
- */
3270
-
3271
- interface ThunderClaim {
3272
- type: string;
3273
- value: string;
3274
- }
3275
- interface ThunderUser {
3276
- id: string;
3277
- type?: string;
3278
- ouId?: string;
3279
- attributes?: Record<string, unknown>;
3280
- groups?: Array<{
3281
- id: string;
3282
- name: string;
3283
- }>;
3284
- createdAt?: string;
3285
- updatedAt?: string;
3286
- }
3287
- interface ThunderUserListResponse extends PaginationMeta {
3288
- users: ThunderUser[];
3289
- }
3290
- interface CreateUserRequest {
3291
- type: string;
3292
- attributes: Record<string, string>;
3293
- ouId?: string;
3294
- }
3295
- interface UpdateUserRequest {
3296
- attributes?: Record<string, string>;
3297
- }
3298
- interface InviteUserRequest {
3299
- email: string;
3300
- }
3301
- interface InviteUserResponse {
3302
- inviteLink: string;
3303
- }
3304
- interface ThunderGroup {
3305
- id: string;
3306
- ouId?: string;
3307
- name: string;
3308
- description?: string;
3309
- createdAt?: string;
3310
- updatedAt?: string;
3311
- }
3312
- interface ThunderGroupListResponse extends PaginationMeta {
3313
- groups: ThunderGroup[];
3314
- }
3315
- interface CreateGroupRequest {
3316
- name: string;
3317
- description?: string;
3318
- }
3319
- interface UpdateGroupRequest {
3320
- name: string;
3321
- description?: string;
3322
- }
3323
- interface ThunderRole {
3324
- id: string;
3325
- ouId?: string;
3326
- name: string;
3327
- description?: string;
3328
- permissions?: RolePermissionRequest[];
3329
- isReadOnly?: boolean;
3330
- createdAt?: string;
3331
- updatedAt?: string;
3332
- }
3333
- interface ThunderRoleListResponse extends PaginationMeta {
3334
- roles: ThunderRole[];
3335
- }
3336
- interface ThunderRoleAssignments {
3337
- permissions?: string[];
3338
- users?: ThunderUser[];
3339
- groups?: ThunderGroup[];
3340
- }
3341
- interface CreateRoleRequest {
3342
- name: string;
3343
- description?: string;
3344
- }
3345
- interface UpdateRoleRequest {
3346
- name: string;
3347
- description?: string;
3348
- }
3349
- interface RolePermissionRequest {
3350
- resourceServerId: string;
3351
- permissions: string[];
3352
- }
3353
- interface RoleUserGroupRequest {
3354
- userIds?: string[];
3355
- groupIds?: string[];
3356
- }
3357
- interface ThunderPermission {
3358
- name: string;
3359
- resourceServerId: string;
3360
- actionName: string;
3361
- resourceName: string;
3362
- }
3363
- interface AMPPermissionsResponse {
3364
- permissions: ThunderPermission[];
3365
- resourceServerId: string;
3366
- }
3367
- type IdentityOrgPathParams = OrgPathParams;
3368
- type UserPathParams = OrgPathParams & {
3369
- userId: string;
3370
- };
3371
- type GroupPathParams = OrgPathParams & {
3372
- groupId: string;
3373
- };
3374
- type RolePathParams = OrgPathParams & {
3375
- roleId: string;
3376
- };
3377
-
3378
3732
  /**
3379
3733
  * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
3380
3734
  *
@@ -3419,6 +3773,7 @@ interface AgentKindResponse {
3419
3773
  organizationName: string;
3420
3774
  kind: 'AgentKind';
3421
3775
  latestVersion?: string;
3776
+ labels?: Record<string, string>;
3422
3777
  versions: AgentKindVersionResponse[];
3423
3778
  createdAt: string;
3424
3779
  updatedAt?: string;
@@ -3432,6 +3787,8 @@ interface AgentKindListResponse {
3432
3787
  interface UpdateAgentKindRequest {
3433
3788
  displayName: string;
3434
3789
  description?: string;
3790
+ /** Omit to leave labels unchanged; send {} to clear all labels. */
3791
+ labels?: Record<string, string>;
3435
3792
  }
3436
3793
  interface AddAgentKindVersionRequest {
3437
3794
  version: string;
@@ -3445,6 +3802,8 @@ interface PublishAgentKindRequest {
3445
3802
  kindName: string;
3446
3803
  kindDisplayName?: string;
3447
3804
  kindDescription?: string;
3805
+ /** Labels for the kind — used only when creating a new kind, ignored otherwise. */
3806
+ kindLabels?: Record<string, string>;
3448
3807
  version: string;
3449
3808
  buildName: string;
3450
3809
  configSchema: AgentKindConfigSchemaItem[];
@@ -3470,15 +3829,182 @@ type GetAgentKindVersionPathParams = OrgPathParams & {
3470
3829
  kindName: string;
3471
3830
  versionTag: string;
3472
3831
  };
3473
- type DeleteAgentKindVersionPathParams = OrgPathParams & {
3474
- kindName: string;
3475
- versionTag: string;
3832
+ type DeleteAgentKindVersionPathParams = OrgPathParams & {
3833
+ kindName: string;
3834
+ versionTag: string;
3835
+ };
3836
+ type PublishAgentKindPathParams = AgentPathParams;
3837
+ type ListKindAgentsPathParams = OrgPathParams & {
3838
+ kindName: string;
3839
+ };
3840
+ /** `label` entries are `key:value` selectors; repeat for AND semantics. */
3841
+ type ListAgentKindsQuery = ListQuery & {
3842
+ label?: string[];
3843
+ };
3844
+
3845
+ /**
3846
+ * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
3847
+ *
3848
+ * WSO2 LLC. licenses this file to you under the Apache License,
3849
+ * Version 2.0 (the "License"); you may not use this file except
3850
+ * in compliance with the License.
3851
+ * You may obtain a copy of the License at
3852
+ *
3853
+ * http://www.apache.org/licenses/LICENSE-2.0
3854
+ *
3855
+ * Unless required by applicable law or agreed to in writing,
3856
+ * software distributed under the License is distributed on an
3857
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
3858
+ * KIND, either express or implied. See the License for the
3859
+ * specific language governing permissions and limitations
3860
+ * under the License.
3861
+ */
3862
+
3863
+ interface ThunderInstanceResponse {
3864
+ envName: string;
3865
+ displayName: string;
3866
+ isProduction: boolean;
3867
+ issuerUrl: string;
3868
+ tokenUrl: string;
3869
+ jwksUrl: string;
3870
+ namespace: string;
3871
+ }
3872
+ interface ThunderInstanceListResponse {
3873
+ thunderInstances: ThunderInstanceResponse[];
3874
+ }
3875
+ type ListThunderInstancesPathParams = OrgPathParams;
3876
+
3877
+ /**
3878
+ * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
3879
+ *
3880
+ * WSO2 LLC. licenses this file to you under the Apache License,
3881
+ * Version 2.0 (the "License"); you may not use this file except
3882
+ * in compliance with the License.
3883
+ * You may obtain a copy of the License at
3884
+ *
3885
+ * http://www.apache.org/licenses/LICENSE-2.0
3886
+ *
3887
+ * Unless required by applicable law or agreed to in writing,
3888
+ * software distributed under the License is distributed on an
3889
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
3890
+ * KIND, either express or implied. See the License for the
3891
+ * specific language governing permissions and limitations
3892
+ * under the License.
3893
+ */
3894
+
3895
+ interface MCPProxyScopeRequest {
3896
+ action: string;
3897
+ description?: string;
3898
+ tools: string[];
3899
+ }
3900
+ interface MCPProxyScopeUpdateRequest {
3901
+ description?: string;
3902
+ tools?: string[];
3903
+ }
3904
+ interface MCPProxyScopeResponse {
3905
+ action: string;
3906
+ scope: string;
3907
+ description?: string;
3908
+ tools: string[];
3909
+ createdAt?: string;
3910
+ updatedAt?: string;
3911
+ }
3912
+ interface MCPProxyScopeListResponse {
3913
+ scopes: MCPProxyScopeResponse[];
3914
+ }
3915
+ type MCPProxyScopesPathParams = OrgPathParams & {
3916
+ proxyId: string;
3917
+ };
3918
+ type MCPProxyScopePathParams = MCPProxyScopesPathParams & {
3919
+ scopeAction: string;
3920
+ };
3921
+
3922
+ /**
3923
+ * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
3924
+ *
3925
+ * WSO2 LLC. licenses this file to you under the Apache License,
3926
+ * Version 2.0 (the "License"); you may not use this file except
3927
+ * in compliance with the License.
3928
+ * You may obtain a copy of the License at
3929
+ *
3930
+ * http://www.apache.org/licenses/LICENSE-2.0
3931
+ *
3932
+ * Unless required by applicable law or agreed to in writing,
3933
+ * software distributed under the License is distributed on an
3934
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
3935
+ * KIND, either express or implied. See the License for the
3936
+ * specific language governing permissions and limitations
3937
+ * under the License.
3938
+ */
3939
+
3940
+ interface AgentIdentityGroupListResponse extends PaginationMeta {
3941
+ groups: ThunderGroup[];
3942
+ }
3943
+ interface AgentIdentityGroupRequest {
3944
+ name: string;
3945
+ description?: string;
3946
+ }
3947
+ interface AgentIdentityMemberEntry {
3948
+ id: string;
3949
+ type: string;
3950
+ }
3951
+ interface AgentIdentityGroupMembersResponse extends PaginationMeta {
3952
+ members: AgentIdentityMemberEntry[];
3953
+ }
3954
+ interface AgentIdentityMembersRequest {
3955
+ agentIds: string[];
3956
+ }
3957
+ interface AgentIdentityGroupRolesResponse {
3958
+ roles: ThunderRole[];
3959
+ }
3960
+ interface AgentIdentityRoleListResponse extends PaginationMeta {
3961
+ roles: ThunderRole[];
3962
+ }
3963
+ interface AgentIdentityRoleRequest {
3964
+ name: string;
3965
+ description?: string;
3966
+ scopes?: string[];
3967
+ }
3968
+ type AgentIdentityAssigneeType = 'agent' | 'group';
3969
+ interface AgentIdentityAssignmentEntry {
3970
+ id: string;
3971
+ type: AgentIdentityAssigneeType;
3972
+ }
3973
+ interface AgentIdentityAssignmentsRequest {
3974
+ assignments: AgentIdentityAssignmentEntry[];
3975
+ }
3976
+ interface AgentIdentityRoleAssignmentsResponse {
3977
+ agents?: AgentIdentityAssignmentEntry[];
3978
+ groups?: ThunderGroup[];
3979
+ }
3980
+ interface AgentIdentityAgentResponse {
3981
+ agentName: string;
3982
+ projectName: string;
3983
+ status: string;
3984
+ thunderAgentId?: string;
3985
+ }
3986
+ interface AgentIdentityAgentListResponse {
3987
+ agents: AgentIdentityAgentResponse[];
3988
+ }
3989
+ interface AgentIdentityScopeEntry {
3990
+ scope: string;
3991
+ description?: string;
3992
+ mcpProxyId: string;
3993
+ mcpProxyName?: string;
3994
+ }
3995
+ interface AgentIdentityScopeListResponse {
3996
+ scopes: AgentIdentityScopeEntry[];
3997
+ }
3998
+ type AgentIdentityEnvPathParams = OrgPathParams & {
3999
+ envName: string;
4000
+ };
4001
+ type AgentIdentityGroupPathParams = AgentIdentityEnvPathParams & {
4002
+ groupId: string;
3476
4003
  };
3477
- type PublishAgentKindPathParams = AgentPathParams;
3478
- type ListKindAgentsPathParams = OrgPathParams & {
3479
- kindName: string;
4004
+ type AgentIdentityRolePathParams = AgentIdentityEnvPathParams & {
4005
+ roleId: string;
3480
4006
  };
3481
- type ListAgentKindsQuery = ListQuery;
4007
+ type AgentIdentityListQuery = ListQuery;
3482
4008
 
3483
4009
  /**
3484
4010
  * Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
@@ -3702,7 +4228,7 @@ interface MarkdownViewProps {
3702
4228
  }
3703
4229
  declare function MarkdownView({ content }: MarkdownViewProps): react_jsx_runtime.JSX.Element;
3704
4230
 
3705
- type LogoProps = React$1.SVGProps<SVGSVGElement>;
4231
+ type LogoProps = React__default.SVGProps<SVGSVGElement>;
3706
4232
  declare function Logo(props: LogoProps): react_jsx_runtime.JSX.Element;
3707
4233
 
3708
4234
  interface LogsPanelProps {
@@ -3757,8 +4283,8 @@ interface SnackBarMessage extends Omit<SnackbarProps, 'open' | 'message' | 'chil
3757
4283
  interface SnackBarContextType {
3758
4284
  pushSnackBar: (message: Omit<SnackBarMessage, 'id'>) => void;
3759
4285
  }
3760
- declare const SnackBarProvider: React$1.FC<{
3761
- children: React$1.ReactNode;
4286
+ declare const SnackBarProvider: React__default.FC<{
4287
+ children: React__default.ReactNode;
3762
4288
  }>;
3763
4289
  declare const useSnackBar: () => SnackBarContextType;
3764
4290
 
@@ -3793,10 +4319,6 @@ interface ExternalComponentModule extends ExternalModuleCore {
3793
4319
  component: React.ComponentType<Record<string, unknown>>;
3794
4320
  kind: 'component';
3795
4321
  }
3796
- interface ExternalConfigModule extends ExternalModuleCore {
3797
- value: object;
3798
- kind: 'config';
3799
- }
3800
4322
  interface ExternalNavItem extends ExternalModuleCore {
3801
4323
  icon: React.ReactNode;
3802
4324
  title: string;
@@ -3805,7 +4327,7 @@ interface ExternalNavItem extends ExternalModuleCore {
3805
4327
  level: 'project' | 'org' | 'component';
3806
4328
  kind: 'nav-item';
3807
4329
  }
3808
- type ExternalModule = ExternalPageModule | ExternalComponentModule | ExternalNavItem | ExternalConfigModule;
4330
+ type ExternalModule = ExternalPageModule | ExternalComponentModule | ExternalNavItem;
3809
4331
  interface ModuleContextValue {
3810
4332
  externalPageModules: ExternalModule[];
3811
4333
  }
@@ -3816,7 +4338,6 @@ interface ModuleProviderProps {
3816
4338
  declare function ExternalModuleProvider({ children, externalPageModules, }: ModuleProviderProps): react_jsx_runtime.JSX.Element;
3817
4339
  declare function useAllModuleContext(): ModuleContextValue;
3818
4340
  declare function useExternalPageModules(): ExternalPageModule[];
3819
- declare function useExternalConfigModules(mountPoint?: string): ExternalConfigModule[];
3820
4341
  declare function useExternalComponentModules(id?: string): ExternalComponentModule[];
3821
4342
  declare function useExternalNavItems(): ExternalNavItem[];
3822
4343
  declare function useExternalPageModuleByMountPoint(mountPoint: string): ExternalModule | undefined;
@@ -3851,15 +4372,25 @@ interface TimeRangeSelectorProps {
3851
4372
  onPresetChange: (value: string) => void;
3852
4373
  onCustomRangeApply: (startISO: string, endISO: string) => void;
3853
4374
  }
3854
- declare const TimeRangeSelector: React$1.FC<TimeRangeSelectorProps>;
4375
+ declare const TimeRangeSelector: React__default.FC<TimeRangeSelectorProps>;
4376
+
4377
+ interface PageHeaderContextValue {
4378
+ header?: ReactNode;
4379
+ setHeader: (header?: ReactNode) => void;
4380
+ }
4381
+ declare const PageHeaderContext: React$1.Context<PageHeaderContextValue>;
4382
+ declare function PageHeaderProvider({ children }: {
4383
+ children: ReactNode;
4384
+ }): react_jsx_runtime.JSX.Element;
4385
+ declare function usePageHeader(header?: ReactNode): void;
3855
4386
 
3856
- type ExternalAgentIconProps = React$1.SVGProps<SVGSVGElement>;
4387
+ type ExternalAgentIconProps = React__default.SVGProps<SVGSVGElement>;
3857
4388
  declare function ExternalAgentIcon(props: ExternalAgentIconProps): react_jsx_runtime.JSX.Element;
3858
4389
 
3859
- type InternalAgentIconProps = React$1.SVGProps<SVGSVGElement>;
4390
+ type InternalAgentIconProps = React__default.SVGProps<SVGSVGElement>;
3860
4391
  declare function InternalAgentIcon(props: InternalAgentIconProps): react_jsx_runtime.JSX.Element;
3861
4392
 
3862
- interface BuildpackIconProps extends React$1.SVGProps<SVGSVGElement> {
4393
+ interface BuildpackIconProps extends React__default.SVGProps<SVGSVGElement> {
3863
4394
  language?: string;
3864
4395
  }
3865
4396
  declare function BuildpackIcon(props: BuildpackIconProps): react_jsx_runtime.JSX.Element;
@@ -3959,6 +4490,42 @@ declare const useTimeRangeParams: (searchParams: URLSearchParams, setSearchParam
3959
4490
  handleCustomRangeClear: () => void;
3960
4491
  };
3961
4492
 
4493
+ /**
4494
+ * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
4495
+ *
4496
+ * WSO2 LLC. licenses this file to you under the Apache License,
4497
+ * Version 2.0 (the "License"); you may not use this file except
4498
+ * in compliance with the License. You may obtain a copy of the License at
4499
+ *
4500
+ * http://www.apache.org/licenses/LICENSE-2.0
4501
+ *
4502
+ * Unless required by applicable law or agreed to in writing,
4503
+ * software distributed under the License is distributed on an
4504
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
4505
+ * KIND, either express or implied. See the License for the
4506
+ * specific language governing permissions and limitations
4507
+ * under the License.
4508
+ */
4509
+
4510
+ type AppThemeKey = "acrylic-orange" | "acrylic-purple" | "pale-gray" | "high-contrast";
4511
+ interface AppThemeOption {
4512
+ key: AppThemeKey;
4513
+ label: string;
4514
+ /** Representative primary color for the preview swatch. */
4515
+ color: string;
4516
+ description: string;
4517
+ }
4518
+ declare const APP_THEME_OPTIONS: AppThemeOption[];
4519
+ interface AppThemeContextValue {
4520
+ themeKey: AppThemeKey;
4521
+ themeObject: any;
4522
+ setThemeKey: (key: AppThemeKey) => void;
4523
+ }
4524
+ declare const AppThemeProvider: React__default.FC<{
4525
+ children: ReactNode;
4526
+ }>;
4527
+ declare const useAppTheme: () => AppThemeContextValue;
4528
+
3962
4529
  /**
3963
4530
  * Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
3964
4531
  *
@@ -4139,12 +4706,17 @@ declare function createAgentModelConfig(params: CreateAgentModelConfigPathParams
4139
4706
  declare function getAgentModelConfig(params: GetAgentModelConfigPathParams, getToken?: () => Promise<string>): Promise<AgentModelConfigResponse>;
4140
4707
  declare function updateAgentModelConfig(params: UpdateAgentModelConfigPathParams, body: UpdateAgentModelConfigRequest, getToken?: () => Promise<string>): Promise<AgentModelConfigResponse>;
4141
4708
  declare function deleteAgentModelConfig(params: DeleteAgentModelConfigPathParams, getToken?: () => Promise<string>): Promise<void>;
4709
+ declare function listLLMConfigAPIKeys(params: ListLLMConfigAPIKeysPathParams, getToken?: () => Promise<string>): Promise<ListAPIKeysResponse>;
4710
+ declare function createLLMConfigAPIKey(params: CreateLLMConfigAPIKeyPathParams, body: CreateLLMConfigAPIKeyRequest, getToken?: () => Promise<string>): Promise<CreateLLMConfigAPIKeyResponse>;
4711
+ declare function rotateLLMConfigAPIKey(params: RotateLLMConfigAPIKeyPathParams, body: RotateLLMConfigAPIKeyRequest, getToken?: () => Promise<string>): Promise<RotateLLMConfigAPIKeyResponse>;
4712
+ declare function revokeLLMConfigAPIKey(params: RevokeLLMConfigAPIKeyPathParams, getToken?: () => Promise<string>): Promise<void>;
4142
4713
  declare function normalizeAgentModelConfigResponse(raw: AgentModelConfigResponse & {
4143
4714
  envModelConfig?: Record<string, {
4144
4715
  environmentName: string;
4145
4716
  llmProxy?: {
4146
4717
  proxyUrl?: string;
4147
4718
  proxyUuid?: string;
4719
+ proxyName?: string;
4148
4720
  providerName?: string;
4149
4721
  policies?: unknown[];
4150
4722
  apiKey?: string;
@@ -4176,6 +4748,10 @@ declare function createAgentMCPConfig(params: CreateAgentMCPConfigPathParams, bo
4176
4748
  declare function getAgentMCPConfig(params: GetAgentMCPConfigPathParams, getToken?: () => Promise<string>): Promise<AgentMCPConfigResponse>;
4177
4749
  declare function updateAgentMCPConfig(params: UpdateAgentMCPConfigPathParams, body: UpdateAgentMCPConfigRequest, getToken?: () => Promise<string>): Promise<AgentMCPConfigResponse>;
4178
4750
  declare function deleteAgentMCPConfig(params: DeleteAgentMCPConfigPathParams, getToken?: () => Promise<string>): Promise<void>;
4751
+ declare function listMCPConfigAPIKeys(params: ListMCPConfigAPIKeysPathParams, getToken?: () => Promise<string>): Promise<ListAPIKeysResponse>;
4752
+ declare function createMCPConfigAPIKey(params: CreateMCPConfigAPIKeyPathParams, body: CreateMCPConfigAPIKeyRequest, getToken?: () => Promise<string>): Promise<CreateMCPConfigAPIKeyResponse>;
4753
+ declare function rotateMCPConfigAPIKey(params: RotateMCPConfigAPIKeyPathParams, body: RotateMCPConfigAPIKeyRequest, getToken?: () => Promise<string>): Promise<RotateMCPConfigAPIKeyResponse>;
4754
+ declare function revokeMCPConfigAPIKey(params: RevokeMCPConfigAPIKeyPathParams, getToken?: () => Promise<string>): Promise<void>;
4179
4755
 
4180
4756
  /**
4181
4757
  * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
@@ -4246,6 +4822,14 @@ declare function deleteAgent(params: DeleteAgentPathParams, getToken?: () => Pro
4246
4822
  declare function updateAgent(params: UpdateAgentPathParams, body: UpdateAgentRequest, getToken?: () => Promise<string>): Promise<AgentResponse>;
4247
4823
  declare function updateAgentBuildParameters(params: UpdateAgentBuildParametersPathParams, body: UpdateAgentBuildParametersRequest, getToken?: () => Promise<string>): Promise<AgentResponse>;
4248
4824
  declare function generateAgentToken(params: GenerateAgentTokenPathParams, body?: TokenRequest, query?: GenerateAgentTokenQuery, getToken?: () => Promise<string>): Promise<TokenResponse>;
4825
+ declare function getAgentRoles(params: GetAgentRolesPathParams, query: GetAgentRolesQuery, getToken?: () => Promise<string>): Promise<AgentRolesResponse>;
4826
+ declare function getAgentGroups(params: GetAgentGroupsPathParams, query: GetAgentGroupsQuery, getToken?: () => Promise<string>): Promise<AgentGroupsResponse>;
4827
+ declare function getAgentIdentity(params: GetAgentIdentityPathParams, query?: GetAgentIdentityQuery, getToken?: () => Promise<string>): Promise<AgentIdentityEnvironmentView[]>;
4828
+ declare function provisionAgentIdentity(params: ProvisionAgentIdentityPathParams, query: ProvisionAgentIdentityQuery, getToken?: () => Promise<string>): Promise<AgentIdentityEnvironmentView>;
4829
+ declare function regenerateAgentIdentitySecret(params: RegenerateAgentIdentitySecretPathParams, body: AgentIdentityActionRequest, getToken?: () => Promise<string>): Promise<AgentRegenerateSecretResponse>;
4830
+ declare function revokeAgentIdentitySecret(params: RevokeAgentIdentitySecretPathParams, query: RevokeAgentIdentitySecretQuery, getToken?: () => Promise<string>): Promise<AgentRevokeSecretResponse>;
4831
+ declare function getAgentCredentials(params: GetAgentCredentialsPathParams, query: GetAgentCredentialsQuery, getToken?: () => Promise<string>): Promise<AgentCredentialsResponse>;
4832
+ declare function claimAgentIdentitySecret(params: ClaimAgentIdentitySecretPathParams, query: ClaimAgentIdentitySecretQuery, getToken?: () => Promise<string>): Promise<AgentClaimSecretResponse>;
4249
4833
 
4250
4834
  /**
4251
4835
  * Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
@@ -4303,6 +4887,7 @@ declare function promoteAgent(params: PromoteAgentPathParams, body: PromoteAgent
4303
4887
  declare function createDeploymentPipeline(params: CreateDeploymentPipelinePathParams, body: CreateDeploymentPipelineRequest, getToken?: () => Promise<string>): Promise<DeploymentPipelineResponse>;
4304
4888
  declare function updateOrgDeploymentPipeline(params: UpdateOrgDeploymentPipelinePathParams, body: UpdateDeploymentPipelineRequest, getToken?: () => Promise<string>): Promise<DeploymentPipelineResponse>;
4305
4889
  declare function deleteDeploymentPipeline(params: DeleteDeploymentPipelinePathParams, getToken?: () => Promise<string>): Promise<void>;
4890
+ declare function getEnvironment(params: GetEnvironmentPathParams, getToken?: () => Promise<string>): Promise<Environment>;
4306
4891
  declare function updateEnvironment(params: UpdateEnvironmentPathParams, body: UpdateEnvironmentRequest, getToken?: () => Promise<string>): Promise<Environment>;
4307
4892
  declare function createEnvironment(params: CreateEnvironmentPathParams, body: CreateEnvironmentRequest, getToken?: () => Promise<string>): Promise<Environment>;
4308
4893
  declare function deleteEnvironment(params: DeleteEnvironmentPathParams, getToken?: () => Promise<string>): Promise<void>;
@@ -4350,7 +4935,7 @@ declare function deleteCustomEvaluator(params: CustomEvaluatorPathParams, getTok
4350
4935
  * under the License.
4351
4936
  */
4352
4937
 
4353
- interface TraceObserverListParams {
4938
+ interface ObserverTraceListParams {
4354
4939
  organization: string;
4355
4940
  project: string;
4356
4941
  component: string;
@@ -4360,7 +4945,7 @@ interface TraceObserverListParams {
4360
4945
  limit?: number;
4361
4946
  sortOrder?: 'asc' | 'desc';
4362
4947
  }
4363
- interface TraceObserverSpanListParams {
4948
+ interface ObserverTraceSpanListParams {
4364
4949
  traceId: string;
4365
4950
  organization: string;
4366
4951
  project?: string;
@@ -4371,14 +4956,14 @@ interface TraceObserverSpanListParams {
4371
4956
  limit?: number;
4372
4957
  sortOrder?: "asc" | "desc";
4373
4958
  }
4374
- interface TraceObserverSpanDetailParams {
4959
+ interface ObserverTraceSpanDetailParams {
4375
4960
  traceId: string;
4376
4961
  spanId: string;
4377
4962
  }
4378
- declare function getTraceList(params: TraceObserverListParams, getToken?: () => Promise<string>): Promise<TraceListResponse>;
4379
- declare function exportTraces(params: TraceObserverListParams, getToken?: () => Promise<string>): Promise<TraceExportResponse>;
4380
- declare function listTraceSpans(params: TraceObserverSpanListParams, getToken?: () => Promise<string>): Promise<TraceSpanSummaryListResponse>;
4381
- declare function getSpanDetail(params: TraceObserverSpanDetailParams, getToken?: () => Promise<string>): Promise<Span>;
4963
+ declare function getTraceList(params: ObserverTraceListParams, getToken?: () => Promise<string>): Promise<TraceListResponse>;
4964
+ declare function exportTraces(params: ObserverTraceListParams, getToken?: () => Promise<string>): Promise<TraceExportResponse>;
4965
+ declare function listTraceSpans(params: ObserverTraceSpanListParams, getToken?: () => Promise<string>): Promise<TraceSpanSummaryListResponse>;
4966
+ declare function getSpanDetail(params: ObserverTraceSpanDetailParams, getToken?: () => Promise<string>): Promise<Span>;
4382
4967
 
4383
4968
  /**
4384
4969
  * Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
@@ -4445,7 +5030,15 @@ declare function updateProject(params: UpdateProjectPathParams, body: UpdateProj
4445
5030
  * under the License.
4446
5031
  */
4447
5032
 
4448
- declare function getAgentMetrics(params: GetAgentMetricsPathParams, body: MetricsFilterRequest, getToken?: () => Promise<string>): Promise<MetricsResponse>;
5033
+ interface ObserverMetricsParams {
5034
+ organization: string;
5035
+ project: string;
5036
+ agent: string;
5037
+ environment: string;
5038
+ startTime?: string;
5039
+ endTime?: string;
5040
+ }
5041
+ declare function getAgentMetrics(params: ObserverMetricsParams, getToken?: () => Promise<string>): Promise<MetricsResponse>;
4449
5042
 
4450
5043
  /**
4451
5044
  * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
@@ -4500,7 +5093,40 @@ declare function getAgentTraceScores(params: AgentTraceScoresParams, getToken?:
4500
5093
  * under the License.
4501
5094
  */
4502
5095
 
4503
- declare function filterAgentRuntimeLogs(params: FilterAgentRuntimeLogsPathParams, body: LogFilterRequest, getToken?: () => Promise<string>): Promise<LogsResponse>;
5096
+ /** Unauthenticated discovery endpoint served by agent-manager. */
5097
+ declare function getRuntimeConfig(): Promise<ConfigResponse>;
5098
+
5099
+ /**
5100
+ * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
5101
+ *
5102
+ * WSO2 LLC. licenses this file to you under the Apache License,
5103
+ * Version 2.0 (the "License"); you may not use this file except
5104
+ * in compliance with the License.
5105
+ * You may obtain a copy of the License at
5106
+ *
5107
+ * http://www.apache.org/licenses/LICENSE-2.0
5108
+ *
5109
+ * Unless required by applicable law or agreed to in writing,
5110
+ * software distributed under the License is distributed on an
5111
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
5112
+ * KIND, either express or implied. See the License for the
5113
+ * specific language governing permissions and limitations
5114
+ * under the License.
5115
+ */
5116
+
5117
+ interface ObserverRuntimeLogsParams {
5118
+ organization: string;
5119
+ project: string;
5120
+ agent: string;
5121
+ environment: string;
5122
+ startTime: string;
5123
+ endTime: string;
5124
+ searchPhrase?: string;
5125
+ logLevels?: string[];
5126
+ limit?: number;
5127
+ sortOrder?: "asc" | "desc";
5128
+ }
5129
+ declare function getAgentRuntimeLogs(params: ObserverRuntimeLogsParams, getToken?: () => Promise<string>): Promise<LogsResponse>;
4504
5130
 
4505
5131
  /**
4506
5132
  * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
@@ -4592,9 +5218,11 @@ declare function undeployLLMProvider(params: UndeployLLMProviderPathParams, quer
4592
5218
  declare function restoreLLMDeployment(params: RestoreLLMDeploymentPathParams, query: RestoreLLMDeploymentQuery, getToken?: () => Promise<string>): Promise<LLMDeploymentResponse>;
4593
5219
  declare function getLLMDeployment(params: GetLLMDeploymentPathParams, getToken?: () => Promise<string>): Promise<LLMDeploymentResponse>;
4594
5220
  declare function deleteLLMDeployment(params: DeleteLLMDeploymentPathParams, getToken?: () => Promise<string>): Promise<void>;
5221
+ declare function listLLMProviderAPIKeys(params: ListLLMProviderAPIKeysPathParams, getToken?: () => Promise<string>): Promise<ListAPIKeysResponse>;
4595
5222
  declare function createLLMProviderAPIKey(params: CreateLLMProviderAPIKeyPathParams, body: CreateLLMAPIKeyRequest, getToken?: () => Promise<string>): Promise<CreateLLMAPIKeyResponse>;
4596
5223
  declare function rotateLLMProviderAPIKey(params: RotateLLMProviderAPIKeyPathParams, body: RotateLLMAPIKeyRequest, getToken?: () => Promise<string>): Promise<RotateLLMAPIKeyResponse>;
4597
5224
  declare function revokeLLMProviderAPIKey(params: RevokeLLMProviderAPIKeyPathParams, getToken?: () => Promise<string>): Promise<void>;
5225
+ declare function listLLMProxyAPIKeys(params: ListLLMProxyAPIKeysPathParams, getToken?: () => Promise<string>): Promise<ListAPIKeysResponse>;
4598
5226
  declare function createLLMProxyAPIKey(params: CreateLLMProxyAPIKeyPathParams, body: CreateLLMAPIKeyRequest, getToken?: () => Promise<string>): Promise<CreateLLMAPIKeyResponse>;
4599
5227
  declare function rotateLLMProxyAPIKey(params: RotateLLMProxyAPIKeyPathParams, body: RotateLLMAPIKeyRequest, getToken?: () => Promise<string>): Promise<RotateLLMAPIKeyResponse>;
4600
5228
  declare function revokeLLMProxyAPIKey(params: RevokeLLMProxyAPIKeyPathParams, getToken?: () => Promise<string>): Promise<void>;
@@ -4624,9 +5252,6 @@ declare function getMCPProxy(params: GetMCPProxyPathParams, getToken?: () => Pro
4624
5252
  declare function updateMCPProxy(params: UpdateMCPProxyPathParams, body: MCPProxy, getToken?: () => Promise<string>): Promise<MCPProxy>;
4625
5253
  declare function deleteMCPProxy(params: DeleteMCPProxyPathParams, getToken?: () => Promise<string>): Promise<void>;
4626
5254
  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
5255
 
4631
5256
  /**
4632
5257
  * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
@@ -4807,6 +5432,26 @@ declare function removeRoleAssignees(params: RolePathParams, body: RoleUserGroup
4807
5432
  declare function updateUserProfile(params: UserPathParams, body: UpdateUserRequest, getToken?: () => Promise<string>): Promise<ThunderUser>;
4808
5433
  declare function listAMPPermissions(params: IdentityOrgPathParams, getToken?: () => Promise<string>): Promise<AMPPermissionsResponse>;
4809
5434
 
5435
+ /**
5436
+ * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
5437
+ *
5438
+ * WSO2 LLC. licenses this file to you under the Apache License,
5439
+ * Version 2.0 (the "License"); you may not use this file except
5440
+ * in compliance with the License.
5441
+ * You may obtain a copy of the License at
5442
+ *
5443
+ * http://www.apache.org/licenses/LICENSE-2.0
5444
+ *
5445
+ * Unless required by applicable law or agreed to in writing,
5446
+ * software distributed under the License is distributed on an
5447
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
5448
+ * KIND, either express or implied. See the License for the
5449
+ * specific language governing permissions and limitations
5450
+ * under the License.
5451
+ */
5452
+
5453
+ declare function listThunderInstances(params: ListThunderInstancesPathParams, getToken?: () => Promise<string>): Promise<ThunderInstanceListResponse>;
5454
+
4810
5455
  /**
4811
5456
  * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
4812
5457
  *
@@ -4889,6 +5534,80 @@ type AgentBuildOptionsPathParams = {
4889
5534
  };
4890
5535
  declare function getAgentBuildOptions(params: AgentBuildOptionsPathParams, getToken?: () => Promise<string>): Promise<AgentBuildOptions>;
4891
5536
 
5537
+ /**
5538
+ * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
5539
+ *
5540
+ * WSO2 LLC. licenses this file to you under the Apache License,
5541
+ * Version 2.0 (the "License"); you may not use this file except
5542
+ * in compliance with the License.
5543
+ * You may obtain a copy of the License at
5544
+ *
5545
+ * http://www.apache.org/licenses/LICENSE-2.0
5546
+ *
5547
+ * Unless required by applicable law or agreed to in writing,
5548
+ * software distributed under the License is distributed on an
5549
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
5550
+ * KIND, either express or implied. See the License for the
5551
+ * specific language governing permissions and limitations
5552
+ * under the License.
5553
+ */
5554
+
5555
+ /**
5556
+ * List an MCP proxy's scopes
5557
+ */
5558
+ declare function listMCPProxyScopes(params: MCPProxyScopesPathParams, getToken?: () => Promise<string>): Promise<MCPProxyScopeListResponse>;
5559
+ /**
5560
+ * Create an MCP proxy scope
5561
+ */
5562
+ declare function createMCPProxyScope(params: MCPProxyScopesPathParams, body: MCPProxyScopeRequest, getToken?: () => Promise<string>): Promise<MCPProxyScopeResponse>;
5563
+ /**
5564
+ * Update an MCP proxy scope's description and/or tools. The action itself is
5565
+ * immutable (rename = delete + create).
5566
+ */
5567
+ declare function updateMCPProxyScope(params: MCPProxyScopePathParams, body: MCPProxyScopeUpdateRequest, getToken?: () => Promise<string>): Promise<MCPProxyScopeResponse>;
5568
+ /**
5569
+ * Delete an MCP proxy scope
5570
+ */
5571
+ declare function deleteMCPProxyScope(params: MCPProxyScopePathParams, getToken?: () => Promise<string>): Promise<void>;
5572
+
5573
+ /**
5574
+ * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
5575
+ *
5576
+ * WSO2 LLC. licenses this file to you under the Apache License,
5577
+ * Version 2.0 (the "License"); you may not use this file except
5578
+ * in compliance with the License.
5579
+ * You may obtain a copy of the License at
5580
+ *
5581
+ * http://www.apache.org/licenses/LICENSE-2.0
5582
+ *
5583
+ * Unless required by applicable law or agreed to in writing,
5584
+ * software distributed under the License is distributed on an
5585
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
5586
+ * KIND, either express or implied. See the License for the
5587
+ * specific language governing permissions and limitations
5588
+ * under the License.
5589
+ */
5590
+
5591
+ declare function listAgentIdentityGroups(params: AgentIdentityEnvPathParams, query?: AgentIdentityListQuery, getToken?: () => Promise<string>): Promise<AgentIdentityGroupListResponse>;
5592
+ declare function createAgentIdentityGroup(params: AgentIdentityEnvPathParams, body: AgentIdentityGroupRequest, getToken?: () => Promise<string>): Promise<ThunderGroup>;
5593
+ declare function getAgentIdentityGroup(params: AgentIdentityGroupPathParams, getToken?: () => Promise<string>): Promise<ThunderGroup>;
5594
+ declare function updateAgentIdentityGroup(params: AgentIdentityGroupPathParams, body: AgentIdentityGroupRequest, getToken?: () => Promise<string>): Promise<ThunderGroup>;
5595
+ declare function deleteAgentIdentityGroup(params: AgentIdentityGroupPathParams, getToken?: () => Promise<string>): Promise<void>;
5596
+ declare function getAgentIdentityGroupMembers(params: AgentIdentityGroupPathParams, query?: AgentIdentityListQuery, getToken?: () => Promise<string>): Promise<AgentIdentityGroupMembersResponse>;
5597
+ declare function addAgentIdentityGroupMembers(params: AgentIdentityGroupPathParams, body: AgentIdentityMembersRequest, getToken?: () => Promise<string>): Promise<void>;
5598
+ declare function removeAgentIdentityGroupMembers(params: AgentIdentityGroupPathParams, body: AgentIdentityMembersRequest, getToken?: () => Promise<string>): Promise<void>;
5599
+ declare function getAgentIdentityGroupRoles(params: AgentIdentityGroupPathParams, getToken?: () => Promise<string>): Promise<AgentIdentityGroupRolesResponse>;
5600
+ declare function listAgentIdentityRoles(params: AgentIdentityEnvPathParams, query?: AgentIdentityListQuery, getToken?: () => Promise<string>): Promise<AgentIdentityRoleListResponse>;
5601
+ declare function createAgentIdentityRole(params: AgentIdentityEnvPathParams, body: AgentIdentityRoleRequest, getToken?: () => Promise<string>): Promise<ThunderRole>;
5602
+ declare function getAgentIdentityRole(params: AgentIdentityRolePathParams, getToken?: () => Promise<string>): Promise<ThunderRole>;
5603
+ declare function updateAgentIdentityRole(params: AgentIdentityRolePathParams, body: AgentIdentityRoleRequest, getToken?: () => Promise<string>): Promise<ThunderRole>;
5604
+ declare function deleteAgentIdentityRole(params: AgentIdentityRolePathParams, getToken?: () => Promise<string>): Promise<void>;
5605
+ declare function getAgentIdentityRoleAssignments(params: AgentIdentityRolePathParams, getToken?: () => Promise<string>): Promise<AgentIdentityRoleAssignmentsResponse>;
5606
+ declare function addAgentIdentityRoleAssignees(params: AgentIdentityRolePathParams, body: AgentIdentityAssignmentsRequest, getToken?: () => Promise<string>): Promise<void>;
5607
+ declare function removeAgentIdentityRoleAssignees(params: AgentIdentityRolePathParams, body: AgentIdentityAssignmentsRequest, getToken?: () => Promise<string>): Promise<void>;
5608
+ declare function listAgentIdentityAgents(params: AgentIdentityEnvPathParams, getToken?: () => Promise<string>): Promise<AgentIdentityAgentListResponse>;
5609
+ declare function listAgentIdentityScopes(params: AgentIdentityEnvPathParams, getToken?: () => Promise<string>): Promise<AgentIdentityScopeListResponse>;
5610
+
4892
5611
  /**
4893
5612
  * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
4894
5613
  *
@@ -4912,6 +5631,10 @@ declare function useGetAgentModelConfig(params: AgentModelConfigPathParams): Que
4912
5631
  declare function useCreateAgentModelConfig(): any;
4913
5632
  declare function useUpdateAgentModelConfig(): any;
4914
5633
  declare function useDeleteAgentModelConfig(): any;
5634
+ declare function useListLLMConfigAPIKeys(params: ListLLMConfigAPIKeysPathParams): QueryObserverResult<TData, TError>;
5635
+ declare function useCreateLLMConfigAPIKey(): any;
5636
+ declare function useRotateLLMConfigAPIKey(): any;
5637
+ declare function useRevokeLLMConfigAPIKey(): any;
4915
5638
 
4916
5639
  /**
4917
5640
  * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
@@ -4936,6 +5659,10 @@ declare function useGetAgentMCPConfig(params: AgentMCPConfigPathParams): QueryOb
4936
5659
  declare function useCreateAgentMCPConfig(): any;
4937
5660
  declare function useUpdateAgentMCPConfig(): any;
4938
5661
  declare function useDeleteAgentMCPConfig(): any;
5662
+ declare function useListMCPConfigAPIKeys(params: ListMCPConfigAPIKeysPathParams): QueryObserverResult<TData, TError>;
5663
+ declare function useCreateMCPConfigAPIKey(): any;
5664
+ declare function useRotateMCPConfigAPIKey(): any;
5665
+ declare function useRevokeMCPConfigAPIKey(): any;
4939
5666
 
4940
5667
  /**
4941
5668
  * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
@@ -5008,6 +5735,18 @@ declare function useUpdateAgent(): any;
5008
5735
  declare function useUpdateAgentBuildParameters(): any;
5009
5736
  declare function useDeleteAgent(): any;
5010
5737
  declare function useGenerateAgentToken(params: GenerateAgentTokenPathParams, body?: TokenRequest, query?: GenerateAgentTokenQuery, enabled?: boolean): QueryObserverResult<TData, TError>;
5738
+ declare function useGetAgentRoles(params: GetAgentRolesPathParams, query: GetAgentRolesQuery, options?: {
5739
+ enabled?: boolean;
5740
+ }): QueryObserverResult<TData, TError>;
5741
+ declare function useGetAgentGroups(params: GetAgentGroupsPathParams, query: GetAgentGroupsQuery, options?: {
5742
+ enabled?: boolean;
5743
+ }): QueryObserverResult<TData, TError>;
5744
+ declare function useGetAgentIdentity(params: GetAgentIdentityPathParams, query?: GetAgentIdentityQuery): QueryObserverResult<TData, TError>;
5745
+ declare function useProvisionAgentIdentity(): any;
5746
+ declare function useRegenerateAgentIdentitySecret(): any;
5747
+ declare function useRevokeAgentIdentitySecret(): any;
5748
+ declare function useGetAgentCredentials(params: GetAgentCredentialsPathParams, query: GetAgentCredentialsQuery): QueryObserverResult<TData, TError>;
5749
+ declare function useClaimAgentIdentitySecret(): any;
5011
5750
 
5012
5751
  /**
5013
5752
  * Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
@@ -5059,6 +5798,7 @@ declare function useListAgentDeployments(params: ListAgentDeploymentsPathParams,
5059
5798
  declare function useGetAgentEndpoints(params: GetAgentEndpointsPathParams, query: EnvironmentQuery): QueryObserverResult<TData, TError>;
5060
5799
  declare function useGetAgentConfigurations(params: GetAgentConfigurationsPathParams, query: EnvironmentQuery): QueryObserverResult<TData, TError>;
5061
5800
  declare function useListEnvironments(params: ListEnvironmentsPathParams): QueryObserverResult<TData, TError>;
5801
+ declare function useGetEnvironment(params: GetEnvironmentPathParams): QueryObserverResult<TData, TError>;
5062
5802
  declare function useGetDeploymentPipeline(params: GetDeploymentPipelinePathParams): QueryObserverResult<TData, TError>;
5063
5803
  declare function useListDeploymentPipelines(params: ListDeploymentPipelinesPathParams, query?: ListDeploymentPipelinesQuery, options?: {
5064
5804
  enabled?: boolean;
@@ -5130,7 +5870,7 @@ declare function useTraceList(organization?: string, project?: string, component
5130
5870
  }): any;
5131
5871
  declare function useTrace(organization: string | undefined, project: string | undefined, component: string | undefined, environment: string | undefined, traceId: string, startTime: string | undefined, endTime: string | undefined): any;
5132
5872
  declare function useSpanDetail(traceId: string | undefined, spanId: string | null, enabled: boolean): QueryObserverResult<TData, TError>;
5133
- type ExportTracesParams = Pick<TraceObserverListParams, "startTime" | "endTime" | "limit" | "sortOrder"> & {
5873
+ type ExportTracesParams = Pick<ObserverTraceListParams, "startTime" | "endTime" | "limit" | "sortOrder"> & {
5134
5874
  organization: string;
5135
5875
  project: string;
5136
5876
  component: string;
@@ -5259,6 +5999,25 @@ declare function useGroupedScores(params: GroupedScoresPathParams, query: {
5259
5999
  declare function useTraceScores(params: TraceScoresPathParams): QueryObserverResult<TData, TError>;
5260
6000
  declare function useAgentTraceScores(params: AgentTraceScoresParams): QueryObserverResult<TData, TError>;
5261
6001
 
6002
+ /**
6003
+ * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
6004
+ *
6005
+ * WSO2 LLC. licenses this file to you under the Apache License,
6006
+ * Version 2.0 (the "License"); you may not use this file except
6007
+ * in compliance with the License.
6008
+ * You may obtain a copy of the License at
6009
+ *
6010
+ * http://www.apache.org/licenses/LICENSE-2.0
6011
+ *
6012
+ * Unless required by applicable law or agreed to in writing,
6013
+ * software distributed under the License is distributed on an
6014
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
6015
+ * KIND, either express or implied. See the License for the
6016
+ * specific language governing permissions and limitations
6017
+ * under the License.
6018
+ */
6019
+ declare function useRuntimeConfig(): QueryObserverResult<TData, TError>;
6020
+
5262
6021
  /**
5263
6022
  * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
5264
6023
  *
@@ -5392,9 +6151,11 @@ declare function useUndeployLLMProvider(): any;
5392
6151
  declare function useRestoreLLMDeployment(): any;
5393
6152
  declare function useDeleteLLMDeployment(): any;
5394
6153
  declare function useListLLMProviderConsumers(params: ListLLMProviderConsumersPathParams): QueryObserverResult<TData, TError>;
6154
+ declare function useListLLMProviderAPIKeys(params: ListLLMProviderAPIKeysPathParams): QueryObserverResult<TData, TError>;
5395
6155
  declare function useCreateLLMProviderAPIKey(): any;
5396
6156
  declare function useRotateLLMProviderAPIKey(): any;
5397
6157
  declare function useRevokeLLMProviderAPIKey(): any;
6158
+ declare function useListLLMProxyAPIKeys(params: ListLLMProxyAPIKeysPathParams): QueryObserverResult<TData, TError>;
5398
6159
  declare function useCreateLLMProxyAPIKey(): any;
5399
6160
  declare function useRotateLLMProxyAPIKey(): any;
5400
6161
  declare function useRevokeLLMProxyAPIKey(): any;
@@ -5422,9 +6183,6 @@ declare function useGetMCPProxy(params: GetMCPProxyPathParams): QueryObserverRes
5422
6183
  declare function useUpdateMCPProxy(): any;
5423
6184
  declare function useDeleteMCPProxy(): any;
5424
6185
  declare function useFetchMCPProxyServerInfo(): any;
5425
- declare function useCreateMCPProxyAPIKey(): any;
5426
- declare function useRotateMCPProxyAPIKey(): any;
5427
- declare function useRevokeMCPProxyAPIKey(): any;
5428
6186
 
5429
6187
  /**
5430
6188
  * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
@@ -5659,7 +6417,7 @@ declare function useListAMPPermissions(params: IdentityOrgPathParams): QueryObse
5659
6417
 
5660
6418
  declare const agentKindKeys: {
5661
6419
  lists: () => readonly ["agent-kinds"];
5662
- list: (params: ListAgentKindsPathParams, query?: ListAgentKindsQuery) => readonly ["agent-kinds", OrgPathParams, ListQuery | undefined];
6420
+ list: (params: ListAgentKindsPathParams, query?: ListAgentKindsQuery) => readonly ["agent-kinds", OrgPathParams, ListAgentKindsQuery | undefined];
5663
6421
  details: () => readonly ["agent-kind"];
5664
6422
  detail: (params: GetAgentKindPathParams) => readonly ["agent-kind", GetAgentKindPathParams];
5665
6423
  versionLists: () => readonly ["agent-kind-versions"];
@@ -5730,6 +6488,167 @@ declare function useListKindAgents(params: ListKindAgentsPathParams): QueryObser
5730
6488
 
5731
6489
  declare function useAgentBuildOptions(params: AgentBuildOptionsPathParams): QueryObserverResult<TData, TError>;
5732
6490
 
6491
+ /**
6492
+ * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
6493
+ *
6494
+ * WSO2 LLC. licenses this file to you under the Apache License,
6495
+ * Version 2.0 (the "License"); you may not use this file except
6496
+ * in compliance with the License.
6497
+ * You may obtain a copy of the License at
6498
+ *
6499
+ * http://www.apache.org/licenses/LICENSE-2.0
6500
+ *
6501
+ * Unless required by applicable law or agreed to in writing,
6502
+ * software distributed under the License is distributed on an
6503
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
6504
+ * KIND, either express or implied. See the License for the
6505
+ * specific language governing permissions and limitations
6506
+ * under the License.
6507
+ */
6508
+
6509
+ declare function useListThunderInstances(params: ListThunderInstancesPathParams): QueryObserverResult<TData, TError>;
6510
+
6511
+ /**
6512
+ * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
6513
+ *
6514
+ * WSO2 LLC. licenses this file to you under the Apache License,
6515
+ * Version 2.0 (the "License"); you may not use this file except
6516
+ * in compliance with the License.
6517
+ * You may obtain a copy of the License at
6518
+ *
6519
+ * http://www.apache.org/licenses/LICENSE-2.0
6520
+ *
6521
+ * Unless required by applicable law or agreed to in writing,
6522
+ * software distributed under the License is distributed on an
6523
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
6524
+ * KIND, either express or implied. See the License for the
6525
+ * specific language governing permissions and limitations
6526
+ * under the License.
6527
+ */
6528
+
6529
+ /**
6530
+ * Hook to list an MCP proxy's scopes
6531
+ */
6532
+ declare function useListMCPProxyScopes(params: MCPProxyScopesPathParams, options?: {
6533
+ enabled?: boolean;
6534
+ }): QueryObserverResult<TData, TError>;
6535
+ /**
6536
+ * Hook to create an MCP proxy scope
6537
+ */
6538
+ declare function useCreateMCPProxyScope(): any;
6539
+ /**
6540
+ * Hook to update an MCP proxy scope's description and/or tools
6541
+ */
6542
+ declare function useUpdateMCPProxyScope(): any;
6543
+ /**
6544
+ * Hook to delete an MCP proxy scope
6545
+ */
6546
+ declare function useDeleteMCPProxyScope(): any;
6547
+
6548
+ /**
6549
+ * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
6550
+ *
6551
+ * WSO2 LLC. licenses this file to you under the Apache License,
6552
+ * Version 2.0 (the "License"); you may not use this file except
6553
+ * in compliance with the License.
6554
+ * You may obtain a copy of the License at
6555
+ *
6556
+ * http://www.apache.org/licenses/LICENSE-2.0
6557
+ *
6558
+ * Unless required by applicable law or agreed to in writing,
6559
+ * software distributed under the License is distributed on an
6560
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
6561
+ * KIND, either express or implied. See the License for the
6562
+ * specific language governing permissions and limitations
6563
+ * under the License.
6564
+ */
6565
+
6566
+ declare function useListAgentIdentityGroups(params: AgentIdentityEnvPathParams, query?: AgentIdentityListQuery): QueryObserverResult<TData, TError>;
6567
+ declare function useCreateAgentIdentityGroup(): any;
6568
+ declare function useGetAgentIdentityGroup(params: AgentIdentityGroupPathParams): QueryObserverResult<TData, TError>;
6569
+ declare function useUpdateAgentIdentityGroup(): any;
6570
+ declare function useDeleteAgentIdentityGroup(): any;
6571
+ declare function useGetAgentIdentityGroupMembers(params: AgentIdentityGroupPathParams, query?: AgentIdentityListQuery): QueryObserverResult<TData, TError>;
6572
+ declare function useAddAgentIdentityGroupMembers(): any;
6573
+ declare function useRemoveAgentIdentityGroupMembers(): any;
6574
+ declare function useGetAgentIdentityGroupRoles(params: AgentIdentityGroupPathParams): QueryObserverResult<TData, TError>;
6575
+ declare function useListAgentIdentityRoles(params: AgentIdentityEnvPathParams, query?: AgentIdentityListQuery): QueryObserverResult<TData, TError>;
6576
+ declare function useCreateAgentIdentityRole(): any;
6577
+ declare function useGetAgentIdentityRole(params: AgentIdentityRolePathParams): QueryObserverResult<TData, TError>;
6578
+ declare function useUpdateAgentIdentityRole(): any;
6579
+ declare function useDeleteAgentIdentityRole(): any;
6580
+ declare function useGetAgentIdentityRoleAssignments(params: AgentIdentityRolePathParams): QueryObserverResult<TData, TError>;
6581
+ declare function useAddAgentIdentityRoleAssignees(): any;
6582
+ declare function useRemoveAgentIdentityRoleAssignees(): any;
6583
+ declare function useListAgentIdentityAgents(params: AgentIdentityEnvPathParams): QueryObserverResult<TData, TError>;
6584
+ declare function useListAgentIdentityScopes(params: AgentIdentityEnvPathParams): QueryObserverResult<TData, TError>;
6585
+
6586
+ /**
6587
+ * Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
6588
+ *
6589
+ * WSO2 LLC. licenses this file to you under the Apache License,
6590
+ * Version 2.0 (the "License"); you may not use this file except
6591
+ * in compliance with the License.
6592
+ * You may obtain a copy of the License at
6593
+ *
6594
+ * http://www.apache.org/licenses/LICENSE-2.0
6595
+ *
6596
+ * Unless required by applicable law or agreed to in writing,
6597
+ * software distributed under the License is distributed on an
6598
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
6599
+ * KIND, either express or implied. See the License for the
6600
+ * specific language governing permissions and limitations
6601
+ * under the License.
6602
+ */
6603
+ declare function sleep(ms: number): Promise<void>;
6604
+ declare const SERVICE_BASE = "/api/v1";
6605
+ declare function encodeRequired(value: string | undefined, label: string): string;
6606
+ declare const OBS_SERVICE_BASE = "/api";
6607
+ declare const POLL_INTERVAL = 5000;
6608
+ declare const SLOW_POLL_INTERVAL = 15000;
6609
+ interface HttpOptions {
6610
+ useObsPlaneHostApi?: boolean;
6611
+ }
6612
+ declare function httpGET(context: string, params: {
6613
+ searchParams?: Record<string, string> | string[][];
6614
+ token?: string;
6615
+ options?: HttpOptions;
6616
+ timeoutMs?: number;
6617
+ }): Promise<Response>;
6618
+ /** Set by the runtime-config bootstrap once GET /api/v1/config resolves. */
6619
+ declare function setObserverBaseUrl(url: string | undefined): void;
6620
+ declare function isObserverConfigured(): boolean;
6621
+ /**
6622
+ * Same as httpGET but calls the observer service directly using the
6623
+ * observer base URL discovered at runtime via GET /api/v1/config.
6624
+ * Throws if the observer is not configured — the agent-manager no longer
6625
+ * serves traces routes, so silently falling back would produce opaque 404s.
6626
+ */
6627
+ declare function httpGETObserver(context: string, params: {
6628
+ searchParams?: Record<string, string>;
6629
+ token?: string;
6630
+ }): Promise<Response>;
6631
+ declare function httpPOST(context: string, body: object, params: {
6632
+ searchParams?: Record<string, string>;
6633
+ token?: string;
6634
+ options?: HttpOptions;
6635
+ }): Promise<Response>;
6636
+ declare function httpPUT(context: string, body: object, params: {
6637
+ searchParams?: Record<string, string>;
6638
+ token?: string;
6639
+ options?: HttpOptions;
6640
+ }): Promise<Response>;
6641
+ declare function httpDELETE(context: string, params: {
6642
+ searchParams?: Record<string, string>;
6643
+ token?: string;
6644
+ options?: HttpOptions;
6645
+ }): Promise<Response>;
6646
+ declare function httpPATCH(context: string, body: object, params: {
6647
+ searchParams?: Record<string, string>;
6648
+ token?: string;
6649
+ options?: HttpOptions;
6650
+ }): Promise<Response>;
6651
+
5733
6652
  /**
5734
6653
  * Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
5735
6654
  *
@@ -5792,11 +6711,9 @@ declare enum MountPoints {
5792
6711
  BottomLeftPanel = "bottom-left-panel",
5793
6712
  BottomRightPanel = "bottom-right-panel",
5794
6713
  LeftNavItem = "left-nav-item",
5795
- PrivateRepoSupport = "private-repo-support",
5796
- IdentityProviderMode = "identity-provider-mode",
5797
6714
  EnvironmentCreateDrawer = "environment-create-drawer",
5798
6715
  EnvironmentDeleteDrawer = "environment-delete-drawer"
5799
6716
  }
5800
6717
 
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 };
6718
+ 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, OBS_SERVICE_BASE, POLL_INTERVAL, PageHeaderContext, PageHeaderProvider, PageLayout, SERVICE_BASE, SLOW_POLL_INTERVAL, SelectionDrawer, SelectionIndicator, SnackBarProvider, SpanIcon, TextInput, TimeRangeSelector, TraceExplorer, TraceListTimeRange, generatedRouteMap as absoluteRouteMap, addAgentIdentityGroupMembers, addAgentIdentityRoleAssignees, addAgentKindVersion, addAgentMCPProxy, addGroupMembers, addRoleAssignees, addRolePermissions, agentKindKeys, assignGatewayToEnvironment, buildAgent, claimAgentIdentitySecret, createAgent, createAgentAPIKey, createAgentIdentityGroup, createAgentIdentityRole, createAgentMCPConfig, createAgentModelConfig, createCustomEvaluator, createDeploymentPipeline, createEnvironment, createGateway, createGitSecret, createGroup, createLLMConfigAPIKey, createLLMDeployment, createLLMProvider, createLLMProviderAPIKey, createLLMProviderTemplate, createLLMProxy, createLLMProxyAPIKey, createMCPConfigAPIKey, createMCPProxy, createMCPProxyScope, createMonitor, createOrganization, createProject, createRole, createUser, deleteAgent, deleteAgentIdentityGroup, deleteAgentIdentityRole, deleteAgentKind, deleteAgentKindVersion, deleteAgentMCPConfig, deleteAgentModelConfig, deleteCustomEvaluator, deleteDeploymentPipeline, deleteEnvironment, deleteGateway, deleteGitSecret, deleteGroup, deleteIdentityProvider, deleteLLMDeployment, deleteLLMProvider, deleteLLMProviderTemplate, deleteLLMProxy, deleteMCPProxy, deleteMCPProxyScope, deleteMonitor, deleteProject, deleteRole, deleteUser, deployAgent, discoverOidc, displayProvisionTypes, encodeRequired, exportTraces, fetchMCPProxyServerInfo, filterGuardrailPolicies, formatTraceWindow, generateAgentToken, generateResourceName, getAgent, getAgentBuildOptions, getAgentBuilds, getAgentConfigurations, getAgentCredentials, getAgentEndpoints, getAgentGroups, getAgentIdentity, getAgentIdentityGroup, getAgentIdentityGroupMembers, getAgentIdentityGroupRoles, getAgentIdentityRole, getAgentIdentityRoleAssignments, getAgentKind, getAgentKindVersion, getAgentMCPConfig, getAgentMetrics, getAgentModelConfig, getAgentResourceConfigs, getAgentRoles, getAgentRuntimeLogs, 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, getRuntimeConfig, getSpanDetail, getTimeRange, getTraceList, getTraceScores, getUser, getUserGroups, getUserProfile, getUserRoles, globalConfig, httpDELETE, httpGET, httpGETObserver, httpPATCH, httpPOST, httpPUT, inviteUser, isObserverConfigured, issueTestAgentAPIKey, listAMPPermissions, listAgentAPIKeys, listAgentDeployments, listAgentIdentityAgents, listAgentIdentityGroups, listAgentIdentityRoles, listAgentIdentityScopes, 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, listMCPProxyScopes, listMonitorRuns, listMonitors, listOrganizations, listProjects, listRoles, listThunderInstances, listTraceSpans, listUsers, normalizeAgentModelConfigResponse, normalizePolicyVersionToPolicyHubMinor, promoteAgent, provisionAgentIdentity, publishAgentKind, regenerateAgentIdentitySecret, rootRouteMap as relativeRouteMap, removeAgentIdentityGroupMembers, removeAgentIdentityRoleAssignees, removeGatewayFromEnvironment, removeGroupMembers, removeRoleAssignees, removeRolePermissions, rerunMonitor, restoreLLMDeployment, revokeAgentAPIKey, revokeAgentIdentitySecret, revokeGatewayToken, revokeLLMConfigAPIKey, revokeLLMProviderAPIKey, revokeLLMProxyAPIKey, revokeMCPConfigAPIKey, rotateAgentAPIKey, rotateGatewayToken, rotateLLMConfigAPIKey, rotateLLMProviderAPIKey, rotateLLMProxyAPIKey, rotateMCPConfigAPIKey, scoreColor, setObserverBaseUrl, sleep, startMonitor, stopMonitor, undeployLLMProvider, updateAgent, updateAgentBuildParameters, updateAgentConfigurations, updateAgentDeploySettings, updateAgentIdentityGroup, updateAgentIdentityRole, updateAgentKind, updateAgentMCPConfig, updateAgentModelConfig, updateAgentResourceConfigs, updateCustomEvaluator, updateDeploymentState, updateEnvironment, updateGateway, updateGroup, updateLLMProvider, updateLLMProviderCatalog, updateLLMProviderTemplate, updateLLMProxy, updateMCPProxy, updateMCPProxyScope, updateMonitor, updateOrgDeploymentPipeline, updateProject, updateRole, updateUser, updateUserProfile, upsertIdentityProvider, useAddAgentIdentityGroupMembers, useAddAgentIdentityRoleAssignees, useAddAgentKindVersion, useAddAgentMCPProxy, useAddGroupMembers, useAddRoleAssignees, useAddRolePermissions, useAgentBuildOptions, useAgentRuntimeLogs, useAgentTraceScores, useAllGroupMemberIds, useAllGroups, useAllModuleContext, useAllUsers, useAppTheme, useAssignGatewayToEnvironment, useAuthHooks, useBuildAgent, useClaimAgentIdentitySecret, useConfirmationDialog, useCreateAgent, useCreateAgentAPIKey, useCreateAgentIdentityGroup, useCreateAgentIdentityRole, useCreateAgentMCPConfig, useCreateAgentModelConfig, useCreateCustomEvaluator, useCreateDeploymentPipeline, useCreateEnvironment, useCreateGateway, useCreateGitSecret, useCreateGroup, useCreateLLMConfigAPIKey, useCreateLLMDeployment, useCreateLLMProvider, useCreateLLMProviderAPIKey, useCreateLLMProviderTemplate, useCreateLLMProxy, useCreateLLMProxyAPIKey, useCreateMCPConfigAPIKey, useCreateMCPProxy, useCreateMCPProxyScope, useCreateMonitor, useCreateOrganization, useCreateProject, useCreateRole, useCreateUser, useDeleteAgent, useDeleteAgentIdentityGroup, useDeleteAgentIdentityRole, useDeleteAgentKind, useDeleteAgentKindVersion, useDeleteAgentMCPConfig, useDeleteAgentModelConfig, useDeleteCustomEvaluator, useDeleteDeploymentPipeline, useDeleteEnvironment, useDeleteGateway, useDeleteGitSecret, useDeleteGroup, useDeleteIdentityProvider, useDeleteLLMDeployment, useDeleteLLMProvider, useDeleteLLMProviderTemplate, useDeleteLLMProxy, useDeleteMCPProxy, useDeleteMCPProxyScope, useDeleteMonitor, useDeleteProject, useDeleteRole, useDeleteUser, useDeployAgent, useDirtyState, useDiscoverOidc, useDocumentTitle, useExportTraces, useExternalComponentModules, useExternalComponentModulesByMountPoint, useExternalNavItems, useExternalPageModuleByMountPoint, useExternalPageModules, useFetchMCPProxyServerInfo, useFormValidation, useGenerateAgentToken, useGenerateResourceName, useGetAgent, useGetAgentBuilds, useGetAgentConfigurations, useGetAgentCredentials, useGetAgentEndpoints, useGetAgentGroups, useGetAgentIdentity, useGetAgentIdentityGroup, useGetAgentIdentityGroupMembers, useGetAgentIdentityGroupRoles, useGetAgentIdentityRole, useGetAgentIdentityRoleAssignments, useGetAgentKind, useGetAgentKindVersion, useGetAgentMCPConfig, useGetAgentMetrics, useGetAgentModelConfig, useGetAgentResourceConfigs, useGetAgentRoles, 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, useListAgentIdentityAgents, useListAgentIdentityGroups, useListAgentIdentityRoles, useListAgentIdentityScopes, 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, useListMCPProxyScopes, useListMonitorRuns, useListMonitors, useListOrganizations, useListProjects, useListRoles, useListThunderInstances, useListUsers, useMCPPoliciesCatalog, useMCPPolicyDefinition, useMonitorRunLogs, useMonitorRunScores, useMonitorScores, useMonitorScoresTimeSeriesForEvaluators, usePageHeader, usePromoteAgent, useProvisionAgentIdentity, usePublishAgentKind, useRegenerateAgentIdentitySecret, useRemoveAgentIdentityGroupMembers, useRemoveAgentIdentityRoleAssignees, useRemoveGatewayFromEnvironment, useRemoveGroupMembers, useRemoveRoleAssignees, useRemoveRolePermissions, useRerunMonitor, useRestoreLLMDeployment, useRevokeAgentAPIKey, useRevokeAgentIdentitySecret, useRevokeGatewayToken, useRevokeLLMConfigAPIKey, useRevokeLLMProviderAPIKey, useRevokeLLMProxyAPIKey, useRevokeMCPConfigAPIKey, useRotateAgentAPIKey, useRotateGatewayToken, useRotateLLMConfigAPIKey, useRotateLLMProviderAPIKey, useRotateLLMProxyAPIKey, useRotateMCPConfigAPIKey, useRuntimeConfig, useSnackBar, useSpanDetail, useStartMonitor, useStopMonitor, useTestAgentAPIKey, useTimeRangeParams, useTrace, useTraceList, useTraceScores, useUndeployLLMProvider, useUpdateAgent, useUpdateAgentBuildParameters, useUpdateAgentConfigurations, useUpdateAgentDeploySettings, useUpdateAgentIdentityGroup, useUpdateAgentIdentityRole, useUpdateAgentKind, useUpdateAgentMCPConfig, useUpdateAgentModelConfig, useUpdateAgentResourceConfigs, useUpdateCustomEvaluator, useUpdateDeploymentState, useUpdateEnvironment, useUpdateGateway, useUpdateGroup, useUpdateLLMProvider, useUpdateLLMProviderCatalog, useUpdateLLMProviderTemplate, useUpdateLLMProxy, useUpdateMCPProxy, useUpdateMCPProxyScope, useUpdateMonitor, useUpdateOrgDeploymentPipeline, useUpdateProject, useUpdateRole, useUpdateUser, useUpdateUserProfile, useUpsertIdentityProvider };
6719
+ export type { AMPPermissionsResponse, APIKeyInfo, APIKeyLocation, APIKeySecurity, AccessControlMode, AddAgentKindVersionPathParams, AddAgentKindVersionRequest, AddAgentMCPProxyPathParams, AddAgentMCPProxyRequest, AgentAPIKeyListItem, AgentAPIKeyListResponse, AgentBuildOptions, AgentBuildOptionsPathParams, AgentClaimSecretResponse, AgentCredentialsResponse, AgentData, AgentEnvAPIKeyPathParams, AgentEnvAPIKeyWithKeyPathParams, AgentGroupsResponse, AgentIdentityActionRequest, AgentIdentityAgentListResponse, AgentIdentityAgentResponse, AgentIdentityAssigneeType, AgentIdentityAssignmentEntry, AgentIdentityAssignmentsRequest, AgentIdentityEnvPathParams, AgentIdentityEnvironmentView, AgentIdentityGroupListResponse, AgentIdentityGroupMembersResponse, AgentIdentityGroupPathParams, AgentIdentityGroupRequest, AgentIdentityGroupRolesResponse, AgentIdentityListQuery, AgentIdentityMemberEntry, AgentIdentityMembersRequest, AgentIdentityRoleAssignmentsResponse, AgentIdentityRoleListResponse, AgentIdentityRolePathParams, AgentIdentityRoleRequest, AgentIdentityScopeEntry, AgentIdentityScopeListResponse, AgentKindConfigSchemaItem, AgentKindListResponse, AgentKindResponse, AgentKindVersionResponse, AgentListResponse, AgentMCPConfigListResponse, AgentMCPConfigPathParams, AgentMCPConfigRequiredPathParams, AgentMCPConfigResponse, AgentMCPProxyListItem, AgentMCPProxyListResponse, AgentModelConfigListItem, AgentModelConfigListResponse, AgentModelConfigPathParams, AgentModelConfigRequiredPathParams, AgentModelConfigResponse, AgentModelConfigType, AgentPathParams, AgentRegenerateSecretResponse, AgentResourceConfigsResponse, AgentResponse, AgentRevokeSecretResponse, AgentRolesResponse, AgentThunderStatus, AgentTraceScoresParams, AgentTraceScoresResponse, AgentType, AmpAttributes, AnyPageMetadata, AppConfig, AppRoute, AppThemeKey, AppThemeOption, AssignGatewayToEnvironmentParams, AuthInfo, AutoScalingConfig, BatchTimeSeriesEvaluatorSeries, BatchTimeSeriesResponse, Branch, Build, BuildAgentPathParams, BuildAgentQuery, BuildDetailsResponse, BuildInputInterface, BuildInputInterfaceSchema, BuildLogEntry, BuildLogsResponse, BuildParameters, BuildPathParams, BuildResponse, BuildStatus, BuildStatusColor, BuildStep, BuildStepStatus, BuildpackBuild, BuildpackConfig, BuildpackIconProps, BuildsListResponse, CatalogDeploymentSummary, CatalogLLMProviderEntry, CatalogRateLimitingScope, CatalogRateLimitingSummary, CatalogSecuritySummary, ClaimAgentIdentitySecretPathParams, ClaimAgentIdentitySecretQuery, Commit, CommitAuthor, ConfigResponse, 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, GetAgentCredentialsPathParams, GetAgentCredentialsQuery, GetAgentEndpointsPathParams, GetAgentGroupsPathParams, GetAgentGroupsQuery, GetAgentIdentityPathParams, GetAgentIdentityQuery, GetAgentKindPathParams, GetAgentKindVersionPathParams, GetAgentMCPConfigPathParams, GetAgentMetricsPathParams, GetAgentModelConfigPathParams, GetAgentPathParams, GetAgentResourceConfigsPathParams, GetAgentResourceConfigsQuery, GetAgentRolesPathParams, GetAgentRolesQuery, 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, HttpOptions, IconType, IdentityOrgPathParams, IdentityProvider, IdentityProviderListResponse, IdentityProviderType, IdentitySecurity, 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, MCPEndpointConfig, MCPEndpointEnvironment, MCPPoliciesCatalogResponse, MCPPolicyAvailabilityResponse, MCPPolicyAvailableItem, MCPPolicyDefinition, MCPProxy, MCPProxyCapabilities, MCPProxyEndpoint, MCPProxyListItem, MCPProxyListResponse, MCPProxyPagination, MCPProxyPolicy, MCPProxyScopeListResponse, MCPProxyScopePathParams, MCPProxyScopeRequest, MCPProxyScopeResponse, MCPProxyScopeUpdateRequest, MCPProxyScopesPathParams, 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, ObserverMetricsParams, ObserverRuntimeLogsParams, ObserverTraceListParams, ObserverTraceSpanDetailParams, ObserverTraceSpanListParams, OidcDiscoveryResponse, OrgPathParams, OrgProjPathParams, OrganizationListItem, OrganizationListResponse, OrganizationResponse, PageLayoutProps, PageMetadata, PageMetadataBase, PaginationInfo, PaginationMeta, ProjectListItem, ProjectListResponse, ProjectResponse, PromoteAgentPathParams, PromoteAgentRequest, PromoteAgentResponse, PromotionPath, PromotionTargetEnvironment, PromptMessage, ProviderConfig, ProvisionAgentIdentityPathParams, ProvisionAgentIdentityQuery, Provisioning, ProvisioningAgentKind, ProvisioningType, PublishAgentKindPathParams, PublishAgentKindRequest, RateLimitEntry, RateLimitResetWindow, RateLimitingLimitConfig, RateLimitingResourceLimit, RateLimitingScopeConfig, RegenerateAgentIdentitySecretPathParams, RemoveGatewayFromEnvironmentParams, RepositoryConfig, RequestRateLimit, RerunMonitorPathParams, ResourceConfig, ResourceLimits, ResourceNameRequest, ResourceNameResponse, ResourceRequests, ResourceType, ResourceWiseRateLimitingConfig, RestoreLLMDeploymentPathParams, RestoreLLMDeploymentQuery, RetrieverData, RevokeAgentAPIKeyPathParams, RevokeAgentIdentitySecretPathParams, RevokeAgentIdentitySecretQuery, 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, 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 };