From b6e21ba655d2d719c4e9178a7d335fe165c79199 Mon Sep 17 00:00:00 2001
From: totesforlife
Date: Thu, 9 Oct 2025 20:09:25 -0700
Subject: [PATCH 1/7] Tooltip doesn't show Visible to my domain
---
.../main/webapp/site/public/locales/en.json | 2 ++
.../components/StoreVisibility.jsx | 18 ++++++++++++++++++
2 files changed, 20 insertions(+)
diff --git a/portals/publisher/src/main/webapp/site/public/locales/en.json b/portals/publisher/src/main/webapp/site/public/locales/en.json
index f298e8e1983..bd925b89545 100644
--- a/portals/publisher/src/main/webapp/site/public/locales/en.json
+++ b/portals/publisher/src/main/webapp/site/public/locales/en.json
@@ -641,6 +641,8 @@
"Apis.Details.Configuration.components.storeVisibility.tooltip.public.desc": "The {type} is accessible to everyone and can be advertised in multiple developer portals - a central developer portal and/or non-WSO2 developer portals.",
"Apis.Details.Configuration.components.storeVisibility.tooltip.restrict": "Restricted by roles(s) :",
"Apis.Details.Configuration.components.storeVisibility.tooltip.restrict.desc": "The {type} is visible only to specific user roles in the tenant developer portal that you specify.",
+ "Apis.Details.Configuration.components.storeVisibility.tooltip.private": "Visible to my domain :",
+ "Apis.Details.Configuration.components.storeVisibility.tooltip.private.desc": "The {type} is visible only to users in the current tenant domain.",
"Apis.Details.Configuration.components.transport.empty": "Please select at least one transport!",
"Apis.Details.Configuration.components.transport.sslHttps": "Please select Https as transport with mutual SSL!",
"Apis.Details.Configurations.api.categories": "Categories",
diff --git a/portals/publisher/src/main/webapp/source/src/app/components/Apis/Details/Configuration/components/StoreVisibility.jsx b/portals/publisher/src/main/webapp/source/src/app/components/Apis/Details/Configuration/components/StoreVisibility.jsx
index 76e68cc3ec6..79420ebd5ed 100644
--- a/portals/publisher/src/main/webapp/source/src/app/components/Apis/Details/Configuration/components/StoreVisibility.jsx
+++ b/portals/publisher/src/main/webapp/source/src/app/components/Apis/Details/Configuration/components/StoreVisibility.jsx
@@ -255,6 +255,24 @@ export default function StoreVisibility(props) {
type: getTypeToDisplay(api.apiType)
}}
/>
+
+
+
+
+
+ {' '}
+
>
)}
From 11a91502b9cda94e1f6fa1d78e8b451368d08185 Mon Sep 17 00:00:00 2001
From: totesforlife
Date: Fri, 10 Oct 2025 20:12:26 -0700
Subject: [PATCH 2/7] Addressing comments
---
.../main/webapp/site/public/locales/en.json | 2 +-
.../components/StoreVisibility.jsx | 41 +++++++++++--------
2 files changed, 24 insertions(+), 19 deletions(-)
diff --git a/portals/publisher/src/main/webapp/site/public/locales/en.json b/portals/publisher/src/main/webapp/site/public/locales/en.json
index bd925b89545..3cd6cd9ed78 100644
--- a/portals/publisher/src/main/webapp/site/public/locales/en.json
+++ b/portals/publisher/src/main/webapp/site/public/locales/en.json
@@ -642,7 +642,7 @@
"Apis.Details.Configuration.components.storeVisibility.tooltip.restrict": "Restricted by roles(s) :",
"Apis.Details.Configuration.components.storeVisibility.tooltip.restrict.desc": "The {type} is visible only to specific user roles in the tenant developer portal that you specify.",
"Apis.Details.Configuration.components.storeVisibility.tooltip.private": "Visible to my domain :",
- "Apis.Details.Configuration.components.storeVisibility.tooltip.private.desc": "The {type} is visible only to users in the current tenant domain.",
+ "Apis.Details.Configuration.components.storeVisibility.tooltip.private.desc": "The {type} is visible to all users who are registered to the {type2}'s tenant domain.",
"Apis.Details.Configuration.components.transport.empty": "Please select at least one transport!",
"Apis.Details.Configuration.components.transport.sslHttps": "Please select Https as transport with mutual SSL!",
"Apis.Details.Configurations.api.categories": "Categories",
diff --git a/portals/publisher/src/main/webapp/source/src/app/components/Apis/Details/Configuration/components/StoreVisibility.jsx b/portals/publisher/src/main/webapp/source/src/app/components/Apis/Details/Configuration/components/StoreVisibility.jsx
index 79420ebd5ed..b12321d8ae5 100644
--- a/portals/publisher/src/main/webapp/source/src/app/components/Apis/Details/Configuration/components/StoreVisibility.jsx
+++ b/portals/publisher/src/main/webapp/source/src/app/components/Apis/Details/Configuration/components/StoreVisibility.jsx
@@ -255,24 +255,29 @@ export default function StoreVisibility(props) {
type: getTypeToDisplay(api.apiType)
}}
/>
-
-
-
-
-
- {' '}
-
+ {tenants !== 0 && (
+ <>
+
+
+
+
+
+ {' '}
+
+ >
+ )}
>
)}
From 3bf14a9d50315b75c14d6ee5f4b6e0e3f48c9ea0 Mon Sep 17 00:00:00 2001
From: totesforlife
Date: Tue, 14 Oct 2025 09:20:01 -0700
Subject: [PATCH 3/7] Addressing comments
---
.../Details/Configuration/components/StoreVisibility.jsx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/portals/publisher/src/main/webapp/source/src/app/components/Apis/Details/Configuration/components/StoreVisibility.jsx b/portals/publisher/src/main/webapp/source/src/app/components/Apis/Details/Configuration/components/StoreVisibility.jsx
index b12321d8ae5..7d28c0b08b0 100644
--- a/portals/publisher/src/main/webapp/source/src/app/components/Apis/Details/Configuration/components/StoreVisibility.jsx
+++ b/portals/publisher/src/main/webapp/source/src/app/components/Apis/Details/Configuration/components/StoreVisibility.jsx
@@ -261,15 +261,15 @@ export default function StoreVisibility(props) {
{' '}
Date: Fri, 17 Oct 2025 15:10:48 -0700
Subject: [PATCH 4/7] addressing comments
---
.../Apis/Details/Configuration/components/StoreVisibility.jsx | 1 -
1 file changed, 1 deletion(-)
diff --git a/portals/publisher/src/main/webapp/source/src/app/components/Apis/Details/Configuration/components/StoreVisibility.jsx b/portals/publisher/src/main/webapp/source/src/app/components/Apis/Details/Configuration/components/StoreVisibility.jsx
index 7d28c0b08b0..c2bfd3c5e71 100644
--- a/portals/publisher/src/main/webapp/source/src/app/components/Apis/Details/Configuration/components/StoreVisibility.jsx
+++ b/portals/publisher/src/main/webapp/source/src/app/components/Apis/Details/Configuration/components/StoreVisibility.jsx
@@ -273,7 +273,6 @@ export default function StoreVisibility(props) {
}
values={{
type: getTypeToDisplay(api.apiType),
- type2: getTypeToDisplay(api.apiType)
}}
/>
>
From f3584d3c61e7f1e1c1e0bb0e1a0cbb39f2787684 Mon Sep 17 00:00:00 2001
From: totesforlife <4111230+sccalabr@users.noreply.github.com>
Date: Fri, 17 Oct 2025 15:11:21 -0700
Subject: [PATCH 5/7] fixing indent
---
.../Apis/Details/Configuration/components/StoreVisibility.jsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/portals/publisher/src/main/webapp/source/src/app/components/Apis/Details/Configuration/components/StoreVisibility.jsx b/portals/publisher/src/main/webapp/source/src/app/components/Apis/Details/Configuration/components/StoreVisibility.jsx
index c2bfd3c5e71..08f039eb57f 100644
--- a/portals/publisher/src/main/webapp/source/src/app/components/Apis/Details/Configuration/components/StoreVisibility.jsx
+++ b/portals/publisher/src/main/webapp/source/src/app/components/Apis/Details/Configuration/components/StoreVisibility.jsx
@@ -272,7 +272,7 @@ export default function StoreVisibility(props) {
'The {type} is visible to all users who are registered to the {type}\'s tenant domain.'
}
values={{
- type: getTypeToDisplay(api.apiType),
+ type: getTypeToDisplay(api.apiType)
}}
/>
>
From 51f3dbc02f5468f0cb662966b1f3f25301957a92 Mon Sep 17 00:00:00 2001
From: totesforlife <4111230+sccalabr@users.noreply.github.com>
Date: Fri, 24 Oct 2025 15:23:37 -0700
Subject: [PATCH 6/7] running build
---
.../src/main/webapp/package-lock.json | 143 ++++++++++--------
.../main/webapp/site/public/locales/en.json | 68 ++++-----
2 files changed, 113 insertions(+), 98 deletions(-)
diff --git a/portals/publisher/src/main/webapp/package-lock.json b/portals/publisher/src/main/webapp/package-lock.json
index 55d10f35ed4..42dad795145 100644
--- a/portals/publisher/src/main/webapp/package-lock.json
+++ b/portals/publisher/src/main/webapp/package-lock.json
@@ -409,6 +409,7 @@
"integrity": "sha512-UlLAnTPrFdNGoFtbSXwcGFQBtQZJCNjaN6hQNP3UPvuNXT1i82N26KL3dZeIpNalWywr9IuQuncaAfUaS1g6sQ==",
"devOptional": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"@ampproject/remapping": "^2.2.0",
"@babel/code-frame": "^7.27.1",
@@ -2414,6 +2415,7 @@
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz",
"integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"@babel/code-frame": "^7.27.1",
"@babel/parser": "^7.27.2",
@@ -2545,6 +2547,7 @@
}
],
"license": "MIT",
+ "peer": true,
"engines": {
"node": ">=18"
},
@@ -2567,6 +2570,7 @@
}
],
"license": "MIT",
+ "peer": true,
"engines": {
"node": ">=18"
}
@@ -2598,6 +2602,7 @@
"resolved": "https://registry.npmjs.org/@dnd-kit/core/-/core-6.3.1.tgz",
"integrity": "sha512-xkGBRQQab4RLwgXxoqETICr6S5JlogafbhNsidmrkVv2YRs5MLwpjoF2qpiGjQt8S9AoxtIV603s0GIUpY5eYQ==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"@dnd-kit/accessibility": "^3.1.1",
"@dnd-kit/utilities": "^3.2.2",
@@ -2708,6 +2713,7 @@
"resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.14.0.tgz",
"integrity": "sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"@babel/runtime": "^7.18.3",
"@emotion/babel-plugin": "^11.13.5",
@@ -2763,6 +2769,7 @@
"resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.14.1.tgz",
"integrity": "sha512-qEEJt42DuToa3gurlH4Qqc1kVpNq8wO8cJtDzU46TjlzWjDlsVyevtYCRijVq3SrHsROS+gVQ8Fnea108GnKzw==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"@babel/runtime": "^7.18.3",
"@emotion/babel-plugin": "^11.13.5",
@@ -3253,6 +3260,7 @@
"resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.7.2.tgz",
"integrity": "sha512-yxtOBWDrdi5DD5o1pmVdq3WMCvnobT0LU6R8RyyVXPvFRd2o79/0NCuQoCjNTeZz9EzA9xS3JxNWfv54RIHFEA==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"@fortawesome/fontawesome-common-types": "6.7.2"
},
@@ -3655,6 +3663,7 @@
"integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"@jest/environment": "^29.7.0",
"@jest/expect": "^29.7.0",
@@ -4514,6 +4523,7 @@
"resolved": "https://registry.npmjs.org/@mui/icons-material/-/icons-material-5.18.0.tgz",
"integrity": "sha512-1s0vEZj5XFXDMmz3Arl/R7IncFqJ+WQ95LDp1roHWGDE2oCO3IS4/hmiOv1/8SD9r6B7tv9GLiqVZYHo+6PkTg==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"@babel/runtime": "^7.23.9"
},
@@ -4681,6 +4691,7 @@
"resolved": "https://registry.npmjs.org/@mui/material/-/material-5.18.0.tgz",
"integrity": "sha512-bbH/HaJZpFtXGvWg3TsBWG4eyt3gah3E7nCNU8GLyRjVoWcA91Vm/T+sjHfUcwgJSw9iLtucfHBoq+qW/T30aA==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"@babel/runtime": "^7.23.9",
"@mui/core-downloads-tracker": "^5.18.0",
@@ -4826,7 +4837,6 @@
"resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-7.3.1.tgz",
"integrity": "sha512-WU3YLkKXii/x8ZEKnrLKsPwplCVE11yZxUvlaaZSIzCcI3x2OdFC8eMlNy74hVeUsYQvzzX1Es/k4ARPlFvpPQ==",
"license": "MIT",
- "peer": true,
"dependencies": {
"@babel/runtime": "^7.28.2",
"@mui/utils": "^7.3.1",
@@ -4854,7 +4864,6 @@
"resolved": "https://registry.npmjs.org/@mui/types/-/types-7.4.5.tgz",
"integrity": "sha512-ZPwlAOE3e8C0piCKbaabwrqZbW4QvWz0uapVPWya7fYj6PeDkl5sSJmomT7wjOcZGPB48G/a6Ubidqreptxz4g==",
"license": "MIT",
- "peer": true,
"dependencies": {
"@babel/runtime": "^7.28.2"
},
@@ -4872,7 +4881,6 @@
"resolved": "https://registry.npmjs.org/@mui/utils/-/utils-7.3.1.tgz",
"integrity": "sha512-/31y4wZqVWa0jzMnzo6JPjxwP6xXy4P3+iLbosFg/mJQowL1KIou0LC+lquWW60FKVbKz5ZUWBg2H3jausa0pw==",
"license": "MIT",
- "peer": true,
"dependencies": {
"@babel/runtime": "^7.28.2",
"@mui/types": "^7.4.5",
@@ -4903,7 +4911,6 @@
"resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-7.3.1.tgz",
"integrity": "sha512-Nqo6OHjvJpXJ1+9TekTE//+8RybgPQUKwns2Lh0sq+8rJOUSUKS3KALv4InSOdHhIM9Mdi8/L7LTF1/Ky6D6TQ==",
"license": "MIT",
- "peer": true,
"dependencies": {
"@babel/runtime": "^7.28.2",
"@emotion/cache": "^11.14.0",
@@ -5006,7 +5013,6 @@
"resolved": "https://registry.npmjs.org/@mui/system/-/system-7.3.1.tgz",
"integrity": "sha512-mIidecvcNVpNJMdPDmCeoSL5zshKBbYPcphjuh6ZMjhybhqhZ4mX6k9zmIWh6XOXcqRQMg5KrcjnO0QstrNj3w==",
"license": "MIT",
- "peer": true,
"dependencies": {
"@babel/runtime": "^7.28.2",
"@mui/private-theming": "^7.3.1",
@@ -5047,7 +5053,6 @@
"resolved": "https://registry.npmjs.org/@mui/types/-/types-7.4.5.tgz",
"integrity": "sha512-ZPwlAOE3e8C0piCKbaabwrqZbW4QvWz0uapVPWya7fYj6PeDkl5sSJmomT7wjOcZGPB48G/a6Ubidqreptxz4g==",
"license": "MIT",
- "peer": true,
"dependencies": {
"@babel/runtime": "^7.28.2"
},
@@ -5065,7 +5070,6 @@
"resolved": "https://registry.npmjs.org/@mui/utils/-/utils-7.3.1.tgz",
"integrity": "sha512-/31y4wZqVWa0jzMnzo6JPjxwP6xXy4P3+iLbosFg/mJQowL1KIou0LC+lquWW60FKVbKz5ZUWBg2H3jausa0pw==",
"license": "MIT",
- "peer": true,
"dependencies": {
"@babel/runtime": "^7.28.2",
"@mui/types": "^7.4.5",
@@ -6354,6 +6358,7 @@
"resolved": "https://registry.npmjs.org/@stoplight/markdown-viewer/-/markdown-viewer-5.7.1.tgz",
"integrity": "sha512-EiJC0w/l+Juc49fVCBOEOOg/NdCWDC8o1lS7d6P5skHS5G+hw1c3GNlCZ2BSqs8z8kkmSzSDWo5XY1S16NVJbQ==",
"license": "Apache-2.0",
+ "peer": true,
"dependencies": {
"@rehooks/component-size": "^1.0.3",
"@stoplight/markdown": "^3.1.3",
@@ -6694,6 +6699,7 @@
"resolved": "https://registry.npmjs.org/@stoplight/mosaic/-/mosaic-1.53.4.tgz",
"integrity": "sha512-k3D9B2bM/Ko7ibKKWxJuhomHCOAxooPNPZNX0aY+3kTmQf7tJL+70iwcwD7TbrMyOj7L8SzJPRpJ9fcM8LaDNA==",
"license": "Apache-2.0",
+ "peer": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.2.0",
@@ -6807,6 +6813,7 @@
"resolved": "https://registry.npmjs.org/@stoplight/mosaic-code-viewer/-/mosaic-code-viewer-1.53.4.tgz",
"integrity": "sha512-RZEZ7+UodFQtuuVHyCONg/8wNDlFCuDz0knneGrDaQ1vDa3ddePPjBQnpqVFY0ndXqoaxZTuQu4GvcC8wKdk0Q==",
"license": "Apache-2.0",
+ "peer": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.2.0",
@@ -7831,18 +7838,6 @@
}
}
},
- "node_modules/@swagger-api/apidom-parser-adapter-yaml-1-2/node_modules/tree-sitter": {
- "version": "0.22.4",
- "resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.22.4.tgz",
- "integrity": "sha512-usbHZP9/oxNsUY65MQUsduGRqDHQOou1cagUSwjhoSYAmSahjQDAVsh9s+SlZkn8X8+O1FULRGwHu7AFP3kjzg==",
- "hasInstallScript": true,
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "node-addon-api": "^8.3.0",
- "node-gyp-build": "^4.8.4"
- }
- },
"node_modules/@swagger-api/apidom-reference": {
"version": "1.0.0-beta.45",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-reference/-/apidom-reference-1.0.0-beta.45.tgz",
@@ -7936,6 +7931,7 @@
"integrity": "sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"@babel/code-frame": "^7.10.4",
"@babel/runtime": "^7.12.5",
@@ -8388,6 +8384,7 @@
"resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.7.tgz",
"integrity": "sha512-PQTyIulDkIDro8P+IHbKCsw7U2xxBYflVzW/FgWdCAePD9xGSidgA76/GeJ6lBKoblyhf9pBY763gbrN+1dI8g==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"hoist-non-react-statics": "^3.3.0"
},
@@ -8463,6 +8460,7 @@
"integrity": "sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"expect": "^29.0.0",
"pretty-format": "^29.0.0"
@@ -8727,6 +8725,7 @@
"resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.87.tgz",
"integrity": "sha512-wpg9AbtJ6agjA+BKYmhG6dRWEU/2DHYwMzCaBzsz137ft6IyuqZ5fI4ic1DWL4DrI03Zy78IyVE6ucrXl0mu4g==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"@types/prop-types": "*",
"@types/scheduler": "^0.16",
@@ -8859,8 +8858,7 @@
"resolved": "https://registry.npmjs.org/@types/stylis/-/stylis-4.2.5.tgz",
"integrity": "sha512-1Xve+NMN7FWjY14vLoY5tL3BVEQ/n42YLwaqJIPYhotZ9uBHt87VceMwWQpzmdEt2TNXIorIFG+YeCUUW7RInw==",
"dev": true,
- "license": "MIT",
- "peer": true
+ "license": "MIT"
},
"node_modules/@types/swagger-schema-official": {
"version": "2.0.25",
@@ -9465,6 +9463,7 @@
"integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
"dev": true,
"license": "MIT",
+ "peer": true,
"bin": {
"acorn": "bin/acorn"
},
@@ -9550,6 +9549,7 @@
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"fast-deep-equal": "^3.1.3",
"fast-uri": "^3.0.1",
@@ -10333,6 +10333,7 @@
"resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz",
"integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"@babel/runtime": "^7.12.5",
"cosmiconfig": "^7.0.0",
@@ -10811,6 +10812,7 @@
}
],
"license": "MIT",
+ "peer": true,
"dependencies": {
"caniuse-lite": "^1.0.30001726",
"electron-to-chromium": "^1.5.173",
@@ -10998,7 +11000,6 @@
"integrity": "sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==",
"dev": true,
"license": "MIT",
- "peer": true,
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
@@ -11938,7 +11939,6 @@
"integrity": "sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==",
"dev": true,
"license": "ISC",
- "peer": true,
"engines": {
"node": ">=4"
}
@@ -12086,7 +12086,6 @@
"integrity": "sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==",
"dev": true,
"license": "MIT",
- "peer": true,
"dependencies": {
"camelize": "^1.0.0",
"css-color-keywords": "^1.0.0",
@@ -12181,7 +12180,8 @@
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
"integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
- "license": "MIT"
+ "license": "MIT",
+ "peer": true
},
"node_modules/d3-array": {
"version": "3.2.4",
@@ -12978,6 +12978,7 @@
"resolved": "https://registry.npmjs.org/draft-js/-/draft-js-0.11.7.tgz",
"integrity": "sha512-ne7yFfN4sEL82QPQEn80xnADR8/Q6ALVworbC5UOSzOvjffmYfFsr3xSZtxbIirti14R7Y33EZC5rivpLgIbsg==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"fbjs": "^2.0.0",
"immutable": "~3.7.4",
@@ -13510,6 +13511,7 @@
"deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"@babel/code-frame": "7.12.11",
"@eslint/eslintrc": "^0.4.3",
@@ -13672,6 +13674,7 @@
"integrity": "sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"@rtsao/scc": "^1.1.0",
"array-includes": "^3.1.9",
@@ -13754,6 +13757,7 @@
"integrity": "sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"aria-query": "^5.3.2",
"array-includes": "^3.1.8",
@@ -13816,6 +13820,7 @@
"integrity": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"array-includes": "^3.1.8",
"array.prototype.findlast": "^1.2.5",
@@ -13849,6 +13854,7 @@
"integrity": "sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==",
"dev": true,
"license": "MIT",
+ "peer": true,
"engines": {
"node": ">=10"
},
@@ -13994,6 +14000,7 @@
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"fast-deep-equal": "^3.1.1",
"fast-json-stable-stringify": "^2.0.0",
@@ -14291,6 +14298,7 @@
"resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz",
"integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"accepts": "~1.3.8",
"array-flatten": "1.1.1",
@@ -14694,6 +14702,7 @@
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"fast-deep-equal": "^3.1.1",
"fast-json-stable-stringify": "^2.0.0",
@@ -15072,6 +15081,21 @@
"integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
"license": "ISC"
},
+ "node_modules/fsevents": {
+ "version": "2.3.3",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
+ "dev": true,
+ "hasInstallScript": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
+ }
+ },
"node_modules/function-bind": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
@@ -16124,6 +16148,7 @@
"resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz",
"integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==",
"license": "MIT",
+ "peer": true,
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/immer"
@@ -17291,6 +17316,7 @@
"integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"@jest/core": "^29.7.0",
"@jest/types": "^29.6.3",
@@ -18752,6 +18778,7 @@
"resolved": "https://registry.npmjs.org/jsep/-/jsep-1.4.0.tgz",
"integrity": "sha512-B7qPcEVE3NVkmSJbaYxvv4cHkVW7DQsZz13pUMrfS8z8Q/BuShN+gcTXrUlPiGqM2/t/EEaI030bpxMqY8gMlw==",
"license": "MIT",
+ "peer": true,
"engines": {
"node": ">= 10.16.0"
}
@@ -21637,7 +21664,8 @@
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/openapi-types/-/openapi-types-10.0.0.tgz",
"integrity": "sha512-Y8xOCT2eiKGYDzMW9R4x5cmfc3vGaaI4EL2pwhDmodWw1HlK18YcZ4uJxc7Rdp7/gGzAygzH9SXr6GKYIXbRcQ==",
- "license": "MIT"
+ "license": "MIT",
+ "peer": true
},
"node_modules/openapi3-ts": {
"version": "2.0.2",
@@ -22320,6 +22348,7 @@
}
],
"license": "MIT",
+ "peer": true,
"dependencies": {
"nanoid": "^3.3.11",
"picocolors": "^1.1.1",
@@ -22494,6 +22523,7 @@
"integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==",
"dev": true,
"license": "MIT",
+ "peer": true,
"bin": {
"prettier": "bin-prettier.js"
},
@@ -22874,6 +22904,7 @@
"resolved": "https://registry.npmjs.org/ramda/-/ramda-0.30.1.tgz",
"integrity": "sha512-tEF5I22zJnuclswcZMc8bDIrwRHRzf+NqVEmqg50ShAZMP7MWeR/RGDthfM/p+BlqvF2fXAzpn8i+SJcYD3alw==",
"license": "MIT",
+ "peer": true,
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/ramda"
@@ -23026,6 +23057,7 @@
"resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
"integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"loose-envify": "^1.1.0"
},
@@ -23196,6 +23228,7 @@
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz",
"integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"loose-envify": "^1.1.0",
"scheduler": "^0.23.2"
@@ -23637,6 +23670,7 @@
"resolved": "https://registry.npmjs.org/react-query/-/react-query-3.39.3.tgz",
"integrity": "sha512-nLfLz7GiohKTJDuT4us4X3h/8unOh+00MLb2yJoGTPjxKs2bc1iDhkNx2bd5MKklXnOD3NrVZ+J2UXujA5In4g==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"@babel/runtime": "^7.5.5",
"broadcast-channel": "^3.4.1",
@@ -23683,6 +23717,7 @@
"resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.3.4.tgz",
"integrity": "sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"@babel/runtime": "^7.12.13",
"history": "^4.9.0",
@@ -23776,6 +23811,7 @@
"integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"loose-envify": "^1.1.0",
"object-assign": "^4.1.1"
@@ -23790,6 +23826,7 @@
"integrity": "sha512-8rtzzT8iwHgdSC89VktwhqdKKtfXaAyC4wiqp0SywpHG12TTLvfOoL6xNEIUWXwIEWu+CFfDn4GZJyynCEuHIQ==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"@react-dnd/shallowequal": "^2.0.0",
"@types/hoist-non-react-statics": "^3.3.1",
@@ -23837,6 +23874,7 @@
"integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"loose-envify": "^1.1.0",
"object-assign": "^4.1.1",
@@ -25640,8 +25678,7 @@
"resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz",
"integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==",
"dev": true,
- "license": "MIT",
- "peer": true
+ "license": "MIT"
},
"node_modules/shebang-command": {
"version": "2.0.0",
@@ -26482,7 +26519,6 @@
"integrity": "sha512-1v/e3Dl1BknC37cXMhwGomhO8AkYmN41CqyX9xhUDxry1ns3BFQy2lLDRQXJRdVVWB9OHemv/53xaStimvWyuA==",
"dev": true,
"license": "MIT",
- "peer": true,
"dependencies": {
"@emotion/is-prop-valid": "1.2.2",
"@emotion/unitless": "0.8.1",
@@ -26512,7 +26548,6 @@
"integrity": "sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==",
"dev": true,
"license": "MIT",
- "peer": true,
"dependencies": {
"@emotion/memoize": "^0.8.1"
}
@@ -26522,16 +26557,14 @@
"resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz",
"integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==",
"dev": true,
- "license": "MIT",
- "peer": true
+ "license": "MIT"
},
"node_modules/styled-components/node_modules/@emotion/unitless": {
"version": "0.8.1",
"resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz",
"integrity": "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==",
"dev": true,
- "license": "MIT",
- "peer": true
+ "license": "MIT"
},
"node_modules/styled-components/node_modules/postcss": {
"version": "8.4.49",
@@ -26553,7 +26586,6 @@
}
],
"license": "MIT",
- "peer": true,
"dependencies": {
"nanoid": "^3.3.7",
"picocolors": "^1.1.1",
@@ -26568,16 +26600,14 @@
"resolved": "https://registry.npmjs.org/stylis/-/stylis-4.3.2.tgz",
"integrity": "sha512-bhtUjWd/z6ltJiQwg0dUfxEJ+W+jdqQd8TbWLWyeIJHlnsqmGLRFFd8e5mA0AZi/zx90smXRlN66YMTcaSFifg==",
"dev": true,
- "license": "MIT",
- "peer": true
+ "license": "MIT"
},
"node_modules/styled-components/node_modules/tslib": {
"version": "2.6.2",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz",
"integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==",
"dev": true,
- "license": "0BSD",
- "peer": true
+ "license": "0BSD"
},
"node_modules/stylis": {
"version": "4.2.0",
@@ -26700,17 +26730,6 @@
"react-dom": ">=16.8.0 <20"
}
},
- "node_modules/swagger-ui-react/node_modules/@types/react": {
- "version": "19.1.9",
- "resolved": "https://registry.npmjs.org/@types/react/-/react-19.1.9.tgz",
- "integrity": "sha512-WmdoynAX8Stew/36uTSVMcLJJ1KRh6L3IZRx1PZ7qJtBqT3dYTgyDTx8H1qoRghErydW7xw9mSJ3wS//tCRpFA==",
- "license": "MIT",
- "optional": true,
- "peer": true,
- "dependencies": {
- "csstype": "^3.0.2"
- }
- },
"node_modules/swagger-ui-react/node_modules/argparse": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
@@ -26798,7 +26817,8 @@
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/redux/-/redux-5.0.1.tgz",
"integrity": "sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==",
- "license": "MIT"
+ "license": "MIT",
+ "peer": true
},
"node_modules/symbol-tree": {
"version": "3.2.4",
@@ -27127,18 +27147,6 @@
"tree-kill": "cli.js"
}
},
- "node_modules/tree-sitter": {
- "version": "0.21.1",
- "resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.21.1.tgz",
- "integrity": "sha512-7dxoA6kYvtgWw80265MyqJlkRl4yawIjO7S5MigytjELkX43fV2WsAXzsNfO7sBpPPCF5Gp0+XzHk0DwLCq3xQ==",
- "hasInstallScript": true,
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "node-addon-api": "^8.0.0",
- "node-gyp-build": "^4.8.0"
- }
- },
"node_modules/tree-sitter-json": {
"version": "0.24.8",
"resolved": "https://registry.npmjs.org/tree-sitter-json/-/tree-sitter-json-0.24.8.tgz",
@@ -27277,7 +27285,8 @@
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
- "license": "0BSD"
+ "license": "0BSD",
+ "peer": true
},
"node_modules/tss-react": {
"version": "3.7.1",
@@ -27461,6 +27470,7 @@
"integrity": "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==",
"devOptional": true,
"license": "Apache-2.0",
+ "peer": true,
"bin": {
"tsc": "bin/tsc",
"tsserver": "bin/tsserver"
@@ -27851,6 +27861,7 @@
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"fast-deep-equal": "^3.1.1",
"fast-json-stable-stringify": "^2.0.0",
@@ -28324,6 +28335,7 @@
"resolved": "https://registry.npmjs.org/webpack/-/webpack-5.101.0.tgz",
"integrity": "sha512-B4t+nJqytPeuZlHuIKTbalhljIFXeNRqrUGAQgTGlfOl2lXXKXw+yZu6bicycP+PUlM44CxBjCFD6aciKFT3LQ==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"@types/eslint-scope": "^3.7.7",
"@types/estree": "^1.0.8",
@@ -28445,6 +28457,7 @@
"integrity": "sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"@discoveryjs/json-ext": "^0.5.0",
"@webpack-cli/configtest": "^2.1.1",
@@ -28643,6 +28656,7 @@
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
"integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
"license": "MIT",
+ "peer": true,
"bin": {
"acorn": "bin/acorn"
},
@@ -29115,6 +29129,7 @@
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
"license": "MIT",
+ "peer": true,
"funding": {
"url": "https://github.com/sponsors/colinhacks"
}
diff --git a/portals/publisher/src/main/webapp/site/public/locales/en.json b/portals/publisher/src/main/webapp/site/public/locales/en.json
index 3cd6cd9ed78..3bfe09d39e1 100644
--- a/portals/publisher/src/main/webapp/site/public/locales/en.json
+++ b/portals/publisher/src/main/webapp/site/public/locales/en.json
@@ -216,8 +216,8 @@
"Apis.Create.streaming.Components.SelectPolicies.business.plans": "Protocol",
"Apis.Create.streaming.Components.create.and.publish.btn": "Create & Publish",
"Apis.Create.streaming.Components.create.btn": "Create",
- "Apis.Details.\n Environments.Environments.\n pending.chip": "Pending",
- "Apis.Details.\n Environments.deploy.vhost": "VHost",
+ "Apis.Details.\r\n Environments.Environments.\r\n pending.chip": "Pending",
+ "Apis.Details.\r\n Environments.deploy.vhost": "VHost",
"Apis.Details.APIDefinition.APIDefinition.api.definition": "API Definition",
"Apis.Details.APIDefinition.APIDefinition.api.definition.oas.updated.successfully": "API Definition Updated Successfully",
"Apis.Details.APIDefinition.APIDefinition.api.definition.save.confirmation": "Are you sure you want to save the API Definition? This might affect the existing resources.",
@@ -445,8 +445,8 @@
"Apis.Details.Configuration.AuthHeader.helper.text": "Authorization header name cannot contain spaces or special characters",
"Apis.Details.Configuration.Components.AI.BE.Rate.Limiting.prod": "Backend Rate Limiting",
"Apis.Details.Configuration.Components.AI.BE.Rate.Limiting.tooltip": "This option determines the type of Backend Rate Limiting that is applied to the API.",
- "Apis.Details.Configuration.Components.APISecurity.Components.\n ApplicationLevel.Client.Websocket": "Client Websocket",
- "Apis.Details.Configuration.Components.APISecurity.Components.\n ApplicationLevel.Websocket": "Application Level Security",
+ "Apis.Details.Configuration.Components.APISecurity.Components.\r\n ApplicationLevel.Client.Websocket": "Client Websocket",
+ "Apis.Details.Configuration.Components.APISecurity.Components.\r\n ApplicationLevel.Websocket": "Application Level Security",
"Apis.Details.Configuration.Components.APISecurity.Components.ApplicationLevel.http": "Application Level Security",
"Apis.Details.Configuration.Components.APISecurity.Components.ApplicationLevel.security.scheme.api.key": "Api Key",
"Apis.Details.Configuration.Components.APISecurity.Components.ApplicationLevel.security.scheme.basic": "Basic",
@@ -613,6 +613,8 @@
"Apis.Details.Configuration.components.Social.slack": "Slack URL",
"Apis.Details.Configuration.components.Social.slack_url.help": "This Slack Channel URL will be available in the {type} overview page in developer portal",
"Apis.Details.Configuration.components.StoreVisibility.dropdown.public": "Public",
+ "Apis.Details.Configuration.components.StoreVisibility.tooltip.private": "Visible to my domain :",
+ "Apis.Details.Configuration.components.StoreVisibility.tooltip.private.desc": "The {type} is visible to all users who are registered to the {type}'s tenant domain.",
"Apis.Details.Configuration.components.Subscription.algorithm.helper.text": "Select an algorithm to sign the message",
"Apis.Details.Configuration.components.Subscription.configuration": "Subscription Configuration",
"Apis.Details.Configuration.components.Subscription.enable.switch": "Enable",
@@ -641,8 +643,6 @@
"Apis.Details.Configuration.components.storeVisibility.tooltip.public.desc": "The {type} is accessible to everyone and can be advertised in multiple developer portals - a central developer portal and/or non-WSO2 developer portals.",
"Apis.Details.Configuration.components.storeVisibility.tooltip.restrict": "Restricted by roles(s) :",
"Apis.Details.Configuration.components.storeVisibility.tooltip.restrict.desc": "The {type} is visible only to specific user roles in the tenant developer portal that you specify.",
- "Apis.Details.Configuration.components.storeVisibility.tooltip.private": "Visible to my domain :",
- "Apis.Details.Configuration.components.storeVisibility.tooltip.private.desc": "The {type} is visible to all users who are registered to the {type2}'s tenant domain.",
"Apis.Details.Configuration.components.transport.empty": "Please select at least one transport!",
"Apis.Details.Configuration.components.transport.sslHttps": "Please select Https as transport with mutual SSL!",
"Apis.Details.Configurations.api.categories": "Categories",
@@ -758,8 +758,8 @@
"Apis.Details.Documents.View.meta.summary": "Summary",
"Apis.Details.Documents.ViewDocument.view.document": "View Document",
"Apis.Details.EditScopes.Roles.Invalid": "Role is invalid",
- "Apis.Details.Endpoints.\n GenericEndpoint.config.endpoint": "Endpoint configurations",
- "Apis.Details.Endpoints.\n GenericEndpoint.security.endpoint": "Endpoint security",
+ "Apis.Details.Endpoints.\r\n GenericEndpoint.config.endpoint": "Endpoint configurations",
+ "Apis.Details.Endpoints.\r\n GenericEndpoint.security.endpoint": "Endpoint security",
"Apis.Details.Endpoints..EndpointOverview.change.type.proceed": "Proceed",
"Apis.Details.Endpoints.AIEndpoints.AIEndpoints.delete.primary.error": "Cannot delete primary endpoint. Please remove primary status first.",
"Apis.Details.Endpoints.AIEndpoints.AIEndpoints.deploy.redirect.btn": "Go to Deployments",
@@ -863,7 +863,7 @@
"Apis.Details.Endpoints.EndpointOverview.awslambda.endpoint.tooltip": "You can and should use an IAM role to manage temporary credentials for applications that run on an AWS instance",
"Apis.Details.Endpoints.EndpointOverview.change.type.cancel": "Cancel",
"Apis.Details.Endpoints.EndpointOverview.endpoint.security.configuration": "Endpoint Security Configurations",
- "Apis.Details.Endpoints.EndpointOverview.endpoint.type\n .change.confirmation.message": "Your current endpoint configuration will be lost.",
+ "Apis.Details.Endpoints.EndpointOverview.endpoint.type\r\n .change.confirmation.message": "Your current endpoint configuration will be lost.",
"Apis.Details.Endpoints.EndpointOverview.endpoint.type.change.confirmation": "Change Endpoint Type",
"Apis.Details.Endpoints.EndpointOverview.general.config.header": "General Endpoint Configurations",
"Apis.Details.Endpoints.EndpointOverview.lb.failover.endpoints.header": "Load balance and Failover Configurations",
@@ -912,22 +912,22 @@
"Apis.Details.Endpoints.GeneralConfiguration.CustomBackend.sandbox.backend": "Sandbox",
"Apis.Details.Endpoints.GeneralConfiguration.EditableParameterRow.Parameter.Name": "Parameter Name",
"Apis.Details.Endpoints.GeneralConfiguration.EditableParameterRow.Parameter.Value": "Parameter Value",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .connection.request.timeout.duration": "Connection Request Timeout Duration (ms)",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .connection.timeout.duration": "Connection Timeout Duration (ms)",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .proxyHost.input": "Proxy Hostname",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .proxyPassword.input": "Proxy Password",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .proxyPort.input": "Proxy Port",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .proxyProtocol.input": "Proxy Protocol",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .proxyUsername.input": "Proxy Username",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .socket.timeout.duration": "Socket Timeout Duration (ms)",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .token.endpoint.connection.configurations.endpoint.specific": "Endpoint Specific",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .token.endpoint.connection.configurations.global": "Global",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .token.endpoint.connection.configurations.none": "None",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .token.endpoint.proxy.configurations.endpoint.specific": "Endpoint Specific",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .token.endpoint.proxy.configurations.global": "Global",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .token.endpoint.proxy.configurations.none": "None",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .connection.request.timeout.duration": "Connection Request Timeout Duration (ms)",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .connection.timeout.duration": "Connection Timeout Duration (ms)",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .proxyHost.input": "Proxy Hostname",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .proxyPassword.input": "Proxy Password",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .proxyPort.input": "Proxy Port",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .proxyProtocol.input": "Proxy Protocol",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .proxyUsername.input": "Proxy Username",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .socket.timeout.duration": "Socket Timeout Duration (ms)",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .token.endpoint.connection.configurations.endpoint.specific": "Endpoint Specific",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .token.endpoint.connection.configurations.global": "Global",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .token.endpoint.connection.configurations.none": "None",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .token.endpoint.proxy.configurations.endpoint.specific": "Endpoint Specific",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .token.endpoint.proxy.configurations.global": "Global",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .token.endpoint.proxy.configurations.none": "None",
"Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.add.new.parameter": "Add New Parameter",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.add.new.parameter.\n info": "You can add any additional payload parameters required for the endpoint below",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.add.new.parameter.\r\n info": "You can add any additional payload parameters required for the endpoint below",
"Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.basic": "Basic Auth",
"Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.clientId.input": "Client ID",
"Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.clientId.message": "Enter Client ID",
@@ -951,9 +951,9 @@
"Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.oauth.grant.type.password": "Resource Owner Password",
"Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.password.input": "Password",
"Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.password.message": "Enter Password",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.token.endpoint\n .connection.configurations.proxy.configurations": "Proxy Configurations",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.token.endpoint.\n connection.configurations": "Token Endpoint Connection Configurations",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.token.endpoint.\n connection.configurations.timeout.configurations": "Timeout Configurations",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.token.endpoint\r\n .connection.configurations.proxy.configurations": "Proxy Configurations",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.token.endpoint.\r\n connection.configurations": "Token Endpoint Connection Configurations",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.token.endpoint.\r\n connection.configurations.timeout.configurations": "Timeout Configurations",
"Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.token.url.input": "Token URL",
"Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.tokenUrl.message": "Enter Token URL",
"Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.user.name.input": "Username",
@@ -1043,7 +1043,7 @@
"Apis.Details.Endpoints.UploadCustomBackend.config.save.button": "Save",
"Apis.Details.Endpoints.UploadCustomBackend.invalid.file": "Invalid file type",
"Apis.Details.Endpoints.add.new.endpoint": "Add Sandbox Endpoint",
- "Apis.Details.Environments.Environments\n .select.vhost": "Select Access URL",
+ "Apis.Details.Environments.Environments\r\n .select.vhost": "Select Access URL",
"Apis.Details.Environments.Environments.APIGateways": "Gateways",
"Apis.Details.Environments.Environments.Create.Revision.Deploy": "Create new revision and deploy",
"Apis.Details.Environments.Environments.Deployments": "Revisions",
@@ -1064,7 +1064,7 @@
"Apis.Details.Environments.Environments.deployments.sub.heading": "Create revisions and deploy in Gateway Environments",
"Apis.Details.Environments.Environments.display.devportal": "Display Gateway Access URLs in developer portal.",
"Apis.Details.Environments.Environments.external.gateways.heading": "Gateways",
- "Apis.Details.Environments.Environments.gateway\n .deployment.current.revision": "Current Revision",
+ "Apis.Details.Environments.Environments.gateway\r\n .deployment.current.revision": "Current Revision",
"Apis.Details.Environments.Environments.gateway.accessUrl": "Gateway Access URL",
"Apis.Details.Environments.Environments.gateway.action": "Action",
"Apis.Details.Environments.Environments.gateway.deployment.failed": "Failed",
@@ -1077,7 +1077,7 @@
"Apis.Details.Environments.Environments.gateway.deployment.total": "Total Gateways",
"Apis.Details.Environments.Environments.no.env.heading": "No Gateway Environments Configured for the selected gateway type",
"Apis.Details.Environments.Environments.pending.chip": "Pending",
- "Apis.Details.Environments.Environments.revision\n .description.deploy": "Add a description to the revision",
+ "Apis.Details.Environments.Environments.revision\r\n .description.deploy": "Add a description to the revision",
"Apis.Details.Environments.Environments.revision.create.error": "Something went wrong while creating the revision",
"Apis.Details.Environments.Environments.revision.create.error.governance": "Revision Creation failed. Governance policy violations found",
"Apis.Details.Environments.Environments.revision.create.error.governance.download": "Download Violations",
@@ -1317,8 +1317,8 @@
"Apis.Details.NewVersion.NewVersion.success": "Successfully created new version",
"Apis.Details.NewVersion.NewVersion.tooltip": "Indicates if this is the default version of the API. If an API is invoked without specifying a version, the API Gateway will route the request to the default version of the API.",
"Apis.Details.NewVersion.loading.services.error": "Error while loading services version",
- "Apis.Details.Operations\n .Operation.operation.no.sharedpi.scope.available": "No shared scopes available",
- "Apis.Details.Operations.Operation\n .throttling.policy": "Rate Limiting",
+ "Apis.Details.Operations\r\n .Operation.operation.no.sharedpi.scope.available": "No shared scopes available",
+ "Apis.Details.Operations.Operation\r\n .throttling.policy": "Rate Limiting",
"Apis.Details.Operations.Operation.OperationType": "Operation Type",
"Apis.Details.Operations.Operation.authType": "Security Enabled",
"Apis.Details.Operations.Operation.cancel": "Cancel",
@@ -2324,8 +2324,8 @@
"Scopes.Create.Scope.displayName.is.empty": "Scope display name cannot be empty",
"Scopes.Create.Scope.displayName.length.exceeded": "Exceeds maximum length limit of 255 characters",
"Scopes.Create.Scope.field.has.special.characters": "Field contains special characters",
- "Scopes.Create.Scope.name.already.exist": "Scope name already exist",
- "Scopes.Create.Scope.name.already.used": "Scope name is already used by another API",
+ "Scopes.Create.Scope.name.already.exist": "Scope name already exists",
+ "Scopes.Create.Scope.name.already.used": "Scope name is already exist",
"Scopes.Create.Scope.name.empty": "Scope name cannot be empty",
"Scopes.Create.Scope.name.exists": "Scope name already exists",
"Scopes.Create.Scope.name.has.spaces": "Scope name cannot have spaces",
From 752a285047605ba0a45e1d4ffb87de2b55255c79 Mon Sep 17 00:00:00 2001
From: totesforlife <4111230+sccalabr@users.noreply.github.com>
Date: Sat, 1 Nov 2025 18:38:03 -0700
Subject: [PATCH 7/7] addressing comments
---
.../src/main/webapp/package-lock.json | 143 ++++++++----------
.../main/webapp/site/public/locales/en.json | 110 ++++++++------
2 files changed, 129 insertions(+), 124 deletions(-)
diff --git a/portals/publisher/src/main/webapp/package-lock.json b/portals/publisher/src/main/webapp/package-lock.json
index 42dad795145..55d10f35ed4 100644
--- a/portals/publisher/src/main/webapp/package-lock.json
+++ b/portals/publisher/src/main/webapp/package-lock.json
@@ -409,7 +409,6 @@
"integrity": "sha512-UlLAnTPrFdNGoFtbSXwcGFQBtQZJCNjaN6hQNP3UPvuNXT1i82N26KL3dZeIpNalWywr9IuQuncaAfUaS1g6sQ==",
"devOptional": true,
"license": "MIT",
- "peer": true,
"dependencies": {
"@ampproject/remapping": "^2.2.0",
"@babel/code-frame": "^7.27.1",
@@ -2415,7 +2414,6 @@
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz",
"integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==",
"license": "MIT",
- "peer": true,
"dependencies": {
"@babel/code-frame": "^7.27.1",
"@babel/parser": "^7.27.2",
@@ -2547,7 +2545,6 @@
}
],
"license": "MIT",
- "peer": true,
"engines": {
"node": ">=18"
},
@@ -2570,7 +2567,6 @@
}
],
"license": "MIT",
- "peer": true,
"engines": {
"node": ">=18"
}
@@ -2602,7 +2598,6 @@
"resolved": "https://registry.npmjs.org/@dnd-kit/core/-/core-6.3.1.tgz",
"integrity": "sha512-xkGBRQQab4RLwgXxoqETICr6S5JlogafbhNsidmrkVv2YRs5MLwpjoF2qpiGjQt8S9AoxtIV603s0GIUpY5eYQ==",
"license": "MIT",
- "peer": true,
"dependencies": {
"@dnd-kit/accessibility": "^3.1.1",
"@dnd-kit/utilities": "^3.2.2",
@@ -2713,7 +2708,6 @@
"resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.14.0.tgz",
"integrity": "sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA==",
"license": "MIT",
- "peer": true,
"dependencies": {
"@babel/runtime": "^7.18.3",
"@emotion/babel-plugin": "^11.13.5",
@@ -2769,7 +2763,6 @@
"resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.14.1.tgz",
"integrity": "sha512-qEEJt42DuToa3gurlH4Qqc1kVpNq8wO8cJtDzU46TjlzWjDlsVyevtYCRijVq3SrHsROS+gVQ8Fnea108GnKzw==",
"license": "MIT",
- "peer": true,
"dependencies": {
"@babel/runtime": "^7.18.3",
"@emotion/babel-plugin": "^11.13.5",
@@ -3260,7 +3253,6 @@
"resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.7.2.tgz",
"integrity": "sha512-yxtOBWDrdi5DD5o1pmVdq3WMCvnobT0LU6R8RyyVXPvFRd2o79/0NCuQoCjNTeZz9EzA9xS3JxNWfv54RIHFEA==",
"license": "MIT",
- "peer": true,
"dependencies": {
"@fortawesome/fontawesome-common-types": "6.7.2"
},
@@ -3663,7 +3655,6 @@
"integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==",
"dev": true,
"license": "MIT",
- "peer": true,
"dependencies": {
"@jest/environment": "^29.7.0",
"@jest/expect": "^29.7.0",
@@ -4523,7 +4514,6 @@
"resolved": "https://registry.npmjs.org/@mui/icons-material/-/icons-material-5.18.0.tgz",
"integrity": "sha512-1s0vEZj5XFXDMmz3Arl/R7IncFqJ+WQ95LDp1roHWGDE2oCO3IS4/hmiOv1/8SD9r6B7tv9GLiqVZYHo+6PkTg==",
"license": "MIT",
- "peer": true,
"dependencies": {
"@babel/runtime": "^7.23.9"
},
@@ -4691,7 +4681,6 @@
"resolved": "https://registry.npmjs.org/@mui/material/-/material-5.18.0.tgz",
"integrity": "sha512-bbH/HaJZpFtXGvWg3TsBWG4eyt3gah3E7nCNU8GLyRjVoWcA91Vm/T+sjHfUcwgJSw9iLtucfHBoq+qW/T30aA==",
"license": "MIT",
- "peer": true,
"dependencies": {
"@babel/runtime": "^7.23.9",
"@mui/core-downloads-tracker": "^5.18.0",
@@ -4837,6 +4826,7 @@
"resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-7.3.1.tgz",
"integrity": "sha512-WU3YLkKXii/x8ZEKnrLKsPwplCVE11yZxUvlaaZSIzCcI3x2OdFC8eMlNy74hVeUsYQvzzX1Es/k4ARPlFvpPQ==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"@babel/runtime": "^7.28.2",
"@mui/utils": "^7.3.1",
@@ -4864,6 +4854,7 @@
"resolved": "https://registry.npmjs.org/@mui/types/-/types-7.4.5.tgz",
"integrity": "sha512-ZPwlAOE3e8C0piCKbaabwrqZbW4QvWz0uapVPWya7fYj6PeDkl5sSJmomT7wjOcZGPB48G/a6Ubidqreptxz4g==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"@babel/runtime": "^7.28.2"
},
@@ -4881,6 +4872,7 @@
"resolved": "https://registry.npmjs.org/@mui/utils/-/utils-7.3.1.tgz",
"integrity": "sha512-/31y4wZqVWa0jzMnzo6JPjxwP6xXy4P3+iLbosFg/mJQowL1KIou0LC+lquWW60FKVbKz5ZUWBg2H3jausa0pw==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"@babel/runtime": "^7.28.2",
"@mui/types": "^7.4.5",
@@ -4911,6 +4903,7 @@
"resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-7.3.1.tgz",
"integrity": "sha512-Nqo6OHjvJpXJ1+9TekTE//+8RybgPQUKwns2Lh0sq+8rJOUSUKS3KALv4InSOdHhIM9Mdi8/L7LTF1/Ky6D6TQ==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"@babel/runtime": "^7.28.2",
"@emotion/cache": "^11.14.0",
@@ -5013,6 +5006,7 @@
"resolved": "https://registry.npmjs.org/@mui/system/-/system-7.3.1.tgz",
"integrity": "sha512-mIidecvcNVpNJMdPDmCeoSL5zshKBbYPcphjuh6ZMjhybhqhZ4mX6k9zmIWh6XOXcqRQMg5KrcjnO0QstrNj3w==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"@babel/runtime": "^7.28.2",
"@mui/private-theming": "^7.3.1",
@@ -5053,6 +5047,7 @@
"resolved": "https://registry.npmjs.org/@mui/types/-/types-7.4.5.tgz",
"integrity": "sha512-ZPwlAOE3e8C0piCKbaabwrqZbW4QvWz0uapVPWya7fYj6PeDkl5sSJmomT7wjOcZGPB48G/a6Ubidqreptxz4g==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"@babel/runtime": "^7.28.2"
},
@@ -5070,6 +5065,7 @@
"resolved": "https://registry.npmjs.org/@mui/utils/-/utils-7.3.1.tgz",
"integrity": "sha512-/31y4wZqVWa0jzMnzo6JPjxwP6xXy4P3+iLbosFg/mJQowL1KIou0LC+lquWW60FKVbKz5ZUWBg2H3jausa0pw==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"@babel/runtime": "^7.28.2",
"@mui/types": "^7.4.5",
@@ -6358,7 +6354,6 @@
"resolved": "https://registry.npmjs.org/@stoplight/markdown-viewer/-/markdown-viewer-5.7.1.tgz",
"integrity": "sha512-EiJC0w/l+Juc49fVCBOEOOg/NdCWDC8o1lS7d6P5skHS5G+hw1c3GNlCZ2BSqs8z8kkmSzSDWo5XY1S16NVJbQ==",
"license": "Apache-2.0",
- "peer": true,
"dependencies": {
"@rehooks/component-size": "^1.0.3",
"@stoplight/markdown": "^3.1.3",
@@ -6699,7 +6694,6 @@
"resolved": "https://registry.npmjs.org/@stoplight/mosaic/-/mosaic-1.53.4.tgz",
"integrity": "sha512-k3D9B2bM/Ko7ibKKWxJuhomHCOAxooPNPZNX0aY+3kTmQf7tJL+70iwcwD7TbrMyOj7L8SzJPRpJ9fcM8LaDNA==",
"license": "Apache-2.0",
- "peer": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.2.0",
@@ -6813,7 +6807,6 @@
"resolved": "https://registry.npmjs.org/@stoplight/mosaic-code-viewer/-/mosaic-code-viewer-1.53.4.tgz",
"integrity": "sha512-RZEZ7+UodFQtuuVHyCONg/8wNDlFCuDz0knneGrDaQ1vDa3ddePPjBQnpqVFY0ndXqoaxZTuQu4GvcC8wKdk0Q==",
"license": "Apache-2.0",
- "peer": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.2.0",
@@ -7838,6 +7831,18 @@
}
}
},
+ "node_modules/@swagger-api/apidom-parser-adapter-yaml-1-2/node_modules/tree-sitter": {
+ "version": "0.22.4",
+ "resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.22.4.tgz",
+ "integrity": "sha512-usbHZP9/oxNsUY65MQUsduGRqDHQOou1cagUSwjhoSYAmSahjQDAVsh9s+SlZkn8X8+O1FULRGwHu7AFP3kjzg==",
+ "hasInstallScript": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "node-addon-api": "^8.3.0",
+ "node-gyp-build": "^4.8.4"
+ }
+ },
"node_modules/@swagger-api/apidom-reference": {
"version": "1.0.0-beta.45",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-reference/-/apidom-reference-1.0.0-beta.45.tgz",
@@ -7931,7 +7936,6 @@
"integrity": "sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==",
"dev": true,
"license": "MIT",
- "peer": true,
"dependencies": {
"@babel/code-frame": "^7.10.4",
"@babel/runtime": "^7.12.5",
@@ -8384,7 +8388,6 @@
"resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.7.tgz",
"integrity": "sha512-PQTyIulDkIDro8P+IHbKCsw7U2xxBYflVzW/FgWdCAePD9xGSidgA76/GeJ6lBKoblyhf9pBY763gbrN+1dI8g==",
"license": "MIT",
- "peer": true,
"dependencies": {
"hoist-non-react-statics": "^3.3.0"
},
@@ -8460,7 +8463,6 @@
"integrity": "sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==",
"dev": true,
"license": "MIT",
- "peer": true,
"dependencies": {
"expect": "^29.0.0",
"pretty-format": "^29.0.0"
@@ -8725,7 +8727,6 @@
"resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.87.tgz",
"integrity": "sha512-wpg9AbtJ6agjA+BKYmhG6dRWEU/2DHYwMzCaBzsz137ft6IyuqZ5fI4ic1DWL4DrI03Zy78IyVE6ucrXl0mu4g==",
"license": "MIT",
- "peer": true,
"dependencies": {
"@types/prop-types": "*",
"@types/scheduler": "^0.16",
@@ -8858,7 +8859,8 @@
"resolved": "https://registry.npmjs.org/@types/stylis/-/stylis-4.2.5.tgz",
"integrity": "sha512-1Xve+NMN7FWjY14vLoY5tL3BVEQ/n42YLwaqJIPYhotZ9uBHt87VceMwWQpzmdEt2TNXIorIFG+YeCUUW7RInw==",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "peer": true
},
"node_modules/@types/swagger-schema-official": {
"version": "2.0.25",
@@ -9463,7 +9465,6 @@
"integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
"dev": true,
"license": "MIT",
- "peer": true,
"bin": {
"acorn": "bin/acorn"
},
@@ -9549,7 +9550,6 @@
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"license": "MIT",
- "peer": true,
"dependencies": {
"fast-deep-equal": "^3.1.3",
"fast-uri": "^3.0.1",
@@ -10333,7 +10333,6 @@
"resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz",
"integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==",
"license": "MIT",
- "peer": true,
"dependencies": {
"@babel/runtime": "^7.12.5",
"cosmiconfig": "^7.0.0",
@@ -10812,7 +10811,6 @@
}
],
"license": "MIT",
- "peer": true,
"dependencies": {
"caniuse-lite": "^1.0.30001726",
"electron-to-chromium": "^1.5.173",
@@ -11000,6 +10998,7 @@
"integrity": "sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==",
"dev": true,
"license": "MIT",
+ "peer": true,
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
@@ -11939,6 +11938,7 @@
"integrity": "sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==",
"dev": true,
"license": "ISC",
+ "peer": true,
"engines": {
"node": ">=4"
}
@@ -12086,6 +12086,7 @@
"integrity": "sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"camelize": "^1.0.0",
"css-color-keywords": "^1.0.0",
@@ -12180,8 +12181,7 @@
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
"integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
- "license": "MIT",
- "peer": true
+ "license": "MIT"
},
"node_modules/d3-array": {
"version": "3.2.4",
@@ -12978,7 +12978,6 @@
"resolved": "https://registry.npmjs.org/draft-js/-/draft-js-0.11.7.tgz",
"integrity": "sha512-ne7yFfN4sEL82QPQEn80xnADR8/Q6ALVworbC5UOSzOvjffmYfFsr3xSZtxbIirti14R7Y33EZC5rivpLgIbsg==",
"license": "MIT",
- "peer": true,
"dependencies": {
"fbjs": "^2.0.0",
"immutable": "~3.7.4",
@@ -13511,7 +13510,6 @@
"deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.",
"dev": true,
"license": "MIT",
- "peer": true,
"dependencies": {
"@babel/code-frame": "7.12.11",
"@eslint/eslintrc": "^0.4.3",
@@ -13674,7 +13672,6 @@
"integrity": "sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==",
"dev": true,
"license": "MIT",
- "peer": true,
"dependencies": {
"@rtsao/scc": "^1.1.0",
"array-includes": "^3.1.9",
@@ -13757,7 +13754,6 @@
"integrity": "sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==",
"dev": true,
"license": "MIT",
- "peer": true,
"dependencies": {
"aria-query": "^5.3.2",
"array-includes": "^3.1.8",
@@ -13820,7 +13816,6 @@
"integrity": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==",
"dev": true,
"license": "MIT",
- "peer": true,
"dependencies": {
"array-includes": "^3.1.8",
"array.prototype.findlast": "^1.2.5",
@@ -13854,7 +13849,6 @@
"integrity": "sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==",
"dev": true,
"license": "MIT",
- "peer": true,
"engines": {
"node": ">=10"
},
@@ -14000,7 +13994,6 @@
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"dev": true,
"license": "MIT",
- "peer": true,
"dependencies": {
"fast-deep-equal": "^3.1.1",
"fast-json-stable-stringify": "^2.0.0",
@@ -14298,7 +14291,6 @@
"resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz",
"integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==",
"license": "MIT",
- "peer": true,
"dependencies": {
"accepts": "~1.3.8",
"array-flatten": "1.1.1",
@@ -14702,7 +14694,6 @@
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"license": "MIT",
- "peer": true,
"dependencies": {
"fast-deep-equal": "^3.1.1",
"fast-json-stable-stringify": "^2.0.0",
@@ -15081,21 +15072,6 @@
"integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
"license": "ISC"
},
- "node_modules/fsevents": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
- "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
- "dev": true,
- "hasInstallScript": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
- }
- },
"node_modules/function-bind": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
@@ -16148,7 +16124,6 @@
"resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz",
"integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==",
"license": "MIT",
- "peer": true,
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/immer"
@@ -17316,7 +17291,6 @@
"integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==",
"dev": true,
"license": "MIT",
- "peer": true,
"dependencies": {
"@jest/core": "^29.7.0",
"@jest/types": "^29.6.3",
@@ -18778,7 +18752,6 @@
"resolved": "https://registry.npmjs.org/jsep/-/jsep-1.4.0.tgz",
"integrity": "sha512-B7qPcEVE3NVkmSJbaYxvv4cHkVW7DQsZz13pUMrfS8z8Q/BuShN+gcTXrUlPiGqM2/t/EEaI030bpxMqY8gMlw==",
"license": "MIT",
- "peer": true,
"engines": {
"node": ">= 10.16.0"
}
@@ -21664,8 +21637,7 @@
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/openapi-types/-/openapi-types-10.0.0.tgz",
"integrity": "sha512-Y8xOCT2eiKGYDzMW9R4x5cmfc3vGaaI4EL2pwhDmodWw1HlK18YcZ4uJxc7Rdp7/gGzAygzH9SXr6GKYIXbRcQ==",
- "license": "MIT",
- "peer": true
+ "license": "MIT"
},
"node_modules/openapi3-ts": {
"version": "2.0.2",
@@ -22348,7 +22320,6 @@
}
],
"license": "MIT",
- "peer": true,
"dependencies": {
"nanoid": "^3.3.11",
"picocolors": "^1.1.1",
@@ -22523,7 +22494,6 @@
"integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==",
"dev": true,
"license": "MIT",
- "peer": true,
"bin": {
"prettier": "bin-prettier.js"
},
@@ -22904,7 +22874,6 @@
"resolved": "https://registry.npmjs.org/ramda/-/ramda-0.30.1.tgz",
"integrity": "sha512-tEF5I22zJnuclswcZMc8bDIrwRHRzf+NqVEmqg50ShAZMP7MWeR/RGDthfM/p+BlqvF2fXAzpn8i+SJcYD3alw==",
"license": "MIT",
- "peer": true,
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/ramda"
@@ -23057,7 +23026,6 @@
"resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
"integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==",
"license": "MIT",
- "peer": true,
"dependencies": {
"loose-envify": "^1.1.0"
},
@@ -23228,7 +23196,6 @@
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz",
"integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==",
"license": "MIT",
- "peer": true,
"dependencies": {
"loose-envify": "^1.1.0",
"scheduler": "^0.23.2"
@@ -23670,7 +23637,6 @@
"resolved": "https://registry.npmjs.org/react-query/-/react-query-3.39.3.tgz",
"integrity": "sha512-nLfLz7GiohKTJDuT4us4X3h/8unOh+00MLb2yJoGTPjxKs2bc1iDhkNx2bd5MKklXnOD3NrVZ+J2UXujA5In4g==",
"license": "MIT",
- "peer": true,
"dependencies": {
"@babel/runtime": "^7.5.5",
"broadcast-channel": "^3.4.1",
@@ -23717,7 +23683,6 @@
"resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.3.4.tgz",
"integrity": "sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ==",
"license": "MIT",
- "peer": true,
"dependencies": {
"@babel/runtime": "^7.12.13",
"history": "^4.9.0",
@@ -23811,7 +23776,6 @@
"integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==",
"dev": true,
"license": "MIT",
- "peer": true,
"dependencies": {
"loose-envify": "^1.1.0",
"object-assign": "^4.1.1"
@@ -23826,7 +23790,6 @@
"integrity": "sha512-8rtzzT8iwHgdSC89VktwhqdKKtfXaAyC4wiqp0SywpHG12TTLvfOoL6xNEIUWXwIEWu+CFfDn4GZJyynCEuHIQ==",
"dev": true,
"license": "MIT",
- "peer": true,
"dependencies": {
"@react-dnd/shallowequal": "^2.0.0",
"@types/hoist-non-react-statics": "^3.3.1",
@@ -23874,7 +23837,6 @@
"integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==",
"dev": true,
"license": "MIT",
- "peer": true,
"dependencies": {
"loose-envify": "^1.1.0",
"object-assign": "^4.1.1",
@@ -25678,7 +25640,8 @@
"resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz",
"integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "peer": true
},
"node_modules/shebang-command": {
"version": "2.0.0",
@@ -26519,6 +26482,7 @@
"integrity": "sha512-1v/e3Dl1BknC37cXMhwGomhO8AkYmN41CqyX9xhUDxry1ns3BFQy2lLDRQXJRdVVWB9OHemv/53xaStimvWyuA==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"@emotion/is-prop-valid": "1.2.2",
"@emotion/unitless": "0.8.1",
@@ -26548,6 +26512,7 @@
"integrity": "sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"@emotion/memoize": "^0.8.1"
}
@@ -26557,14 +26522,16 @@
"resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz",
"integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "peer": true
},
"node_modules/styled-components/node_modules/@emotion/unitless": {
"version": "0.8.1",
"resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz",
"integrity": "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "peer": true
},
"node_modules/styled-components/node_modules/postcss": {
"version": "8.4.49",
@@ -26586,6 +26553,7 @@
}
],
"license": "MIT",
+ "peer": true,
"dependencies": {
"nanoid": "^3.3.7",
"picocolors": "^1.1.1",
@@ -26600,14 +26568,16 @@
"resolved": "https://registry.npmjs.org/stylis/-/stylis-4.3.2.tgz",
"integrity": "sha512-bhtUjWd/z6ltJiQwg0dUfxEJ+W+jdqQd8TbWLWyeIJHlnsqmGLRFFd8e5mA0AZi/zx90smXRlN66YMTcaSFifg==",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "peer": true
},
"node_modules/styled-components/node_modules/tslib": {
"version": "2.6.2",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz",
"integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==",
"dev": true,
- "license": "0BSD"
+ "license": "0BSD",
+ "peer": true
},
"node_modules/stylis": {
"version": "4.2.0",
@@ -26730,6 +26700,17 @@
"react-dom": ">=16.8.0 <20"
}
},
+ "node_modules/swagger-ui-react/node_modules/@types/react": {
+ "version": "19.1.9",
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-19.1.9.tgz",
+ "integrity": "sha512-WmdoynAX8Stew/36uTSVMcLJJ1KRh6L3IZRx1PZ7qJtBqT3dYTgyDTx8H1qoRghErydW7xw9mSJ3wS//tCRpFA==",
+ "license": "MIT",
+ "optional": true,
+ "peer": true,
+ "dependencies": {
+ "csstype": "^3.0.2"
+ }
+ },
"node_modules/swagger-ui-react/node_modules/argparse": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
@@ -26817,8 +26798,7 @@
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/redux/-/redux-5.0.1.tgz",
"integrity": "sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==",
- "license": "MIT",
- "peer": true
+ "license": "MIT"
},
"node_modules/symbol-tree": {
"version": "3.2.4",
@@ -27147,6 +27127,18 @@
"tree-kill": "cli.js"
}
},
+ "node_modules/tree-sitter": {
+ "version": "0.21.1",
+ "resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.21.1.tgz",
+ "integrity": "sha512-7dxoA6kYvtgWw80265MyqJlkRl4yawIjO7S5MigytjELkX43fV2WsAXzsNfO7sBpPPCF5Gp0+XzHk0DwLCq3xQ==",
+ "hasInstallScript": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "node-addon-api": "^8.0.0",
+ "node-gyp-build": "^4.8.0"
+ }
+ },
"node_modules/tree-sitter-json": {
"version": "0.24.8",
"resolved": "https://registry.npmjs.org/tree-sitter-json/-/tree-sitter-json-0.24.8.tgz",
@@ -27285,8 +27277,7 @@
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
- "license": "0BSD",
- "peer": true
+ "license": "0BSD"
},
"node_modules/tss-react": {
"version": "3.7.1",
@@ -27470,7 +27461,6 @@
"integrity": "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==",
"devOptional": true,
"license": "Apache-2.0",
- "peer": true,
"bin": {
"tsc": "bin/tsc",
"tsserver": "bin/tsserver"
@@ -27861,7 +27851,6 @@
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"license": "MIT",
- "peer": true,
"dependencies": {
"fast-deep-equal": "^3.1.1",
"fast-json-stable-stringify": "^2.0.0",
@@ -28335,7 +28324,6 @@
"resolved": "https://registry.npmjs.org/webpack/-/webpack-5.101.0.tgz",
"integrity": "sha512-B4t+nJqytPeuZlHuIKTbalhljIFXeNRqrUGAQgTGlfOl2lXXKXw+yZu6bicycP+PUlM44CxBjCFD6aciKFT3LQ==",
"license": "MIT",
- "peer": true,
"dependencies": {
"@types/eslint-scope": "^3.7.7",
"@types/estree": "^1.0.8",
@@ -28457,7 +28445,6 @@
"integrity": "sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==",
"dev": true,
"license": "MIT",
- "peer": true,
"dependencies": {
"@discoveryjs/json-ext": "^0.5.0",
"@webpack-cli/configtest": "^2.1.1",
@@ -28656,7 +28643,6 @@
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
"integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
"license": "MIT",
- "peer": true,
"bin": {
"acorn": "bin/acorn"
},
@@ -29129,7 +29115,6 @@
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
"license": "MIT",
- "peer": true,
"funding": {
"url": "https://github.com/sponsors/colinhacks"
}
diff --git a/portals/publisher/src/main/webapp/site/public/locales/en.json b/portals/publisher/src/main/webapp/site/public/locales/en.json
index 3bfe09d39e1..b6808b4dcfd 100644
--- a/portals/publisher/src/main/webapp/site/public/locales/en.json
+++ b/portals/publisher/src/main/webapp/site/public/locales/en.json
@@ -88,9 +88,9 @@
"Apis.Create.Components.DefaultAPIForm.api.product.context": "Context",
"Apis.Create.Components.DefaultAPIForm.api.product.version": "Version",
"Apis.Create.Components.DefaultAPIForm.display.name": "Display Name",
- "Apis.Create.Components.DefaultAPIForm.display.name.helper.text.api": "Display name for the API (optional)",
- "Apis.Create.Components.DefaultAPIForm.display.name.helper.text.mcp": "Display name for the MCP Server (optional)",
- "Apis.Create.Components.DefaultAPIForm.display.name.helper.text.product": "Display name for the API Product (optional)",
+ "Apis.Create.Components.DefaultAPIForm.display.name.helper.text.api": "Display name for the API",
+ "Apis.Create.Components.DefaultAPIForm.display.name.helper.text.mcp": "Display name for the MCP Server",
+ "Apis.Create.Components.DefaultAPIForm.display.name.helper.text.product": "Display name for the API Product",
"Apis.Create.Components.DefaultAPIForm.mandatory.fields": "Mandatory fields",
"Apis.Create.Components.DefaultAPIForm.name": "Name",
"Apis.Create.Components.DefaultAPIForm.select.gateway.type": "Gateway type",
@@ -216,8 +216,8 @@
"Apis.Create.streaming.Components.SelectPolicies.business.plans": "Protocol",
"Apis.Create.streaming.Components.create.and.publish.btn": "Create & Publish",
"Apis.Create.streaming.Components.create.btn": "Create",
- "Apis.Details.\r\n Environments.Environments.\r\n pending.chip": "Pending",
- "Apis.Details.\r\n Environments.deploy.vhost": "VHost",
+ "Apis.Details.\n Environments.Environments.\n pending.chip": "Pending",
+ "Apis.Details.\n Environments.deploy.vhost": "VHost",
"Apis.Details.APIDefinition.APIDefinition.api.definition": "API Definition",
"Apis.Details.APIDefinition.APIDefinition.api.definition.oas.updated.successfully": "API Definition Updated Successfully",
"Apis.Details.APIDefinition.APIDefinition.api.definition.save.confirmation": "Are you sure you want to save the API Definition? This might affect the existing resources.",
@@ -445,8 +445,8 @@
"Apis.Details.Configuration.AuthHeader.helper.text": "Authorization header name cannot contain spaces or special characters",
"Apis.Details.Configuration.Components.AI.BE.Rate.Limiting.prod": "Backend Rate Limiting",
"Apis.Details.Configuration.Components.AI.BE.Rate.Limiting.tooltip": "This option determines the type of Backend Rate Limiting that is applied to the API.",
- "Apis.Details.Configuration.Components.APISecurity.Components.\r\n ApplicationLevel.Client.Websocket": "Client Websocket",
- "Apis.Details.Configuration.Components.APISecurity.Components.\r\n ApplicationLevel.Websocket": "Application Level Security",
+ "Apis.Details.Configuration.Components.APISecurity.Components.\n ApplicationLevel.Client.Websocket": "Client Websocket",
+ "Apis.Details.Configuration.Components.APISecurity.Components.\n ApplicationLevel.Websocket": "Application Level Security",
"Apis.Details.Configuration.Components.APISecurity.Components.ApplicationLevel.http": "Application Level Security",
"Apis.Details.Configuration.Components.APISecurity.Components.ApplicationLevel.security.scheme.api.key": "Api Key",
"Apis.Details.Configuration.Components.APISecurity.Components.ApplicationLevel.security.scheme.basic": "Basic",
@@ -613,8 +613,6 @@
"Apis.Details.Configuration.components.Social.slack": "Slack URL",
"Apis.Details.Configuration.components.Social.slack_url.help": "This Slack Channel URL will be available in the {type} overview page in developer portal",
"Apis.Details.Configuration.components.StoreVisibility.dropdown.public": "Public",
- "Apis.Details.Configuration.components.StoreVisibility.tooltip.private": "Visible to my domain :",
- "Apis.Details.Configuration.components.StoreVisibility.tooltip.private.desc": "The {type} is visible to all users who are registered to the {type}'s tenant domain.",
"Apis.Details.Configuration.components.Subscription.algorithm.helper.text": "Select an algorithm to sign the message",
"Apis.Details.Configuration.components.Subscription.configuration": "Subscription Configuration",
"Apis.Details.Configuration.components.Subscription.enable.switch": "Enable",
@@ -749,18 +747,32 @@
"Apis.Details.Documents.TextEditor.update.content.button": "Update Content",
"Apis.Details.Documents.TextEditor.update.error.message": "update failed.",
"Apis.Details.Documents.TextEditor.update.success.message": "updated successfully.",
- "Apis.Details.Documents.View.btn.download": "Download",
"Apis.Details.Documents.View.error.downloading": "Error downloading the file",
"Apis.Details.Documents.View.heading": "Documents",
"Apis.Details.Documents.View.meta.catogery": "Categorized as",
+ "Apis.Details.Documents.View.meta.download": "Download",
+ "Apis.Details.Documents.View.meta.download.file": "Download File",
+ "Apis.Details.Documents.View.meta.link": "Link",
"Apis.Details.Documents.View.meta.name": "Name",
"Apis.Details.Documents.View.meta.source": "Source Type",
"Apis.Details.Documents.View.meta.summary": "Summary",
"Apis.Details.Documents.ViewDocument.view.document": "View Document",
"Apis.Details.EditScopes.Roles.Invalid": "Role is invalid",
- "Apis.Details.Endpoints.\r\n GenericEndpoint.config.endpoint": "Endpoint configurations",
- "Apis.Details.Endpoints.\r\n GenericEndpoint.security.endpoint": "Endpoint security",
+ "Apis.Details.Endpoints.\n GenericEndpoint.config.endpoint": "Endpoint configurations",
+ "Apis.Details.Endpoints.\n GenericEndpoint.security.endpoint": "Endpoint security",
"Apis.Details.Endpoints..EndpointOverview.change.type.proceed": "Proceed",
+ "Apis.Details.Endpoints.AIEndpoints.AIEndpoints.confirm.delete.cancel": "Cancel",
+ "Apis.Details.Endpoints.AIEndpoints.AIEndpoints.confirm.delete.message": "Are you sure you want to delete the endpoint {name}?",
+ "Apis.Details.Endpoints.AIEndpoints.AIEndpoints.confirm.delete.ok": "Yes",
+ "Apis.Details.Endpoints.AIEndpoints.AIEndpoints.confirm.delete.title": "Confirm Delete",
+ "Apis.Details.Endpoints.AIEndpoints.AIEndpoints.confirm.removeprimary.cancel": "Cancel",
+ "Apis.Details.Endpoints.AIEndpoints.AIEndpoints.confirm.removeprimary.message": "Remove primary {stage} endpoint {name}?",
+ "Apis.Details.Endpoints.AIEndpoints.AIEndpoints.confirm.removeprimary.ok": "Yes",
+ "Apis.Details.Endpoints.AIEndpoints.AIEndpoints.confirm.removeprimary.title": "Confirm Primary Endpoint Removal",
+ "Apis.Details.Endpoints.AIEndpoints.AIEndpoints.confirm.setprimary.cancel": "Cancel",
+ "Apis.Details.Endpoints.AIEndpoints.AIEndpoints.confirm.setprimary.message": "Set {name} as the primary {stage} endpoint ?",
+ "Apis.Details.Endpoints.AIEndpoints.AIEndpoints.confirm.setprimary.ok": "Yes",
+ "Apis.Details.Endpoints.AIEndpoints.AIEndpoints.confirm.setprimary.title": "Confirm Primary Endpoint Change",
"Apis.Details.Endpoints.AIEndpoints.AIEndpoints.delete.primary.error": "Cannot delete primary endpoint. Please remove primary status first.",
"Apis.Details.Endpoints.AIEndpoints.AIEndpoints.deploy.redirect.btn": "Go to Deployments",
"Apis.Details.Endpoints.AIEndpoints.AIEndpoints.endpoint.delete.error": "Error deleting endpoint",
@@ -863,7 +875,7 @@
"Apis.Details.Endpoints.EndpointOverview.awslambda.endpoint.tooltip": "You can and should use an IAM role to manage temporary credentials for applications that run on an AWS instance",
"Apis.Details.Endpoints.EndpointOverview.change.type.cancel": "Cancel",
"Apis.Details.Endpoints.EndpointOverview.endpoint.security.configuration": "Endpoint Security Configurations",
- "Apis.Details.Endpoints.EndpointOverview.endpoint.type\r\n .change.confirmation.message": "Your current endpoint configuration will be lost.",
+ "Apis.Details.Endpoints.EndpointOverview.endpoint.type\n .change.confirmation.message": "Your current endpoint configuration will be lost.",
"Apis.Details.Endpoints.EndpointOverview.endpoint.type.change.confirmation": "Change Endpoint Type",
"Apis.Details.Endpoints.EndpointOverview.general.config.header": "General Endpoint Configurations",
"Apis.Details.Endpoints.EndpointOverview.lb.failover.endpoints.header": "Load balance and Failover Configurations",
@@ -912,22 +924,22 @@
"Apis.Details.Endpoints.GeneralConfiguration.CustomBackend.sandbox.backend": "Sandbox",
"Apis.Details.Endpoints.GeneralConfiguration.EditableParameterRow.Parameter.Name": "Parameter Name",
"Apis.Details.Endpoints.GeneralConfiguration.EditableParameterRow.Parameter.Value": "Parameter Value",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .connection.request.timeout.duration": "Connection Request Timeout Duration (ms)",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .connection.timeout.duration": "Connection Timeout Duration (ms)",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .proxyHost.input": "Proxy Hostname",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .proxyPassword.input": "Proxy Password",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .proxyPort.input": "Proxy Port",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .proxyProtocol.input": "Proxy Protocol",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .proxyUsername.input": "Proxy Username",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .socket.timeout.duration": "Socket Timeout Duration (ms)",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .token.endpoint.connection.configurations.endpoint.specific": "Endpoint Specific",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .token.endpoint.connection.configurations.global": "Global",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .token.endpoint.connection.configurations.none": "None",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .token.endpoint.proxy.configurations.endpoint.specific": "Endpoint Specific",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .token.endpoint.proxy.configurations.global": "Global",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\r\n .token.endpoint.proxy.configurations.none": "None",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .connection.request.timeout.duration": "Connection Request Timeout Duration (ms)",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .connection.timeout.duration": "Connection Timeout Duration (ms)",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .proxyHost.input": "Proxy Hostname",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .proxyPassword.input": "Proxy Password",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .proxyPort.input": "Proxy Port",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .proxyProtocol.input": "Proxy Protocol",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .proxyUsername.input": "Proxy Username",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .socket.timeout.duration": "Socket Timeout Duration (ms)",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .token.endpoint.connection.configurations.endpoint.specific": "Endpoint Specific",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .token.endpoint.connection.configurations.global": "Global",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .token.endpoint.connection.configurations.none": "None",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .token.endpoint.proxy.configurations.endpoint.specific": "Endpoint Specific",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .token.endpoint.proxy.configurations.global": "Global",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity\n .token.endpoint.proxy.configurations.none": "None",
"Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.add.new.parameter": "Add New Parameter",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.add.new.parameter.\r\n info": "You can add any additional payload parameters required for the endpoint below",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.add.new.parameter.\n info": "You can add any additional payload parameters required for the endpoint below",
"Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.basic": "Basic Auth",
"Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.clientId.input": "Client ID",
"Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.clientId.message": "Enter Client ID",
@@ -951,9 +963,9 @@
"Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.oauth.grant.type.password": "Resource Owner Password",
"Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.password.input": "Password",
"Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.password.message": "Enter Password",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.token.endpoint\r\n .connection.configurations.proxy.configurations": "Proxy Configurations",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.token.endpoint.\r\n connection.configurations": "Token Endpoint Connection Configurations",
- "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.token.endpoint.\r\n connection.configurations.timeout.configurations": "Timeout Configurations",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.token.endpoint\n .connection.configurations.proxy.configurations": "Proxy Configurations",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.token.endpoint.\n connection.configurations": "Token Endpoint Connection Configurations",
+ "Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.token.endpoint.\n connection.configurations.timeout.configurations": "Timeout Configurations",
"Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.token.url.input": "Token URL",
"Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.tokenUrl.message": "Enter Token URL",
"Apis.Details.Endpoints.GeneralConfiguration.EndpointSecurity.user.name.input": "Username",
@@ -1036,14 +1048,14 @@
"Apis.Details.Endpoints.SequenceBackend.AddCertificat": "Add Sequence Backend",
"Apis.Details.Endpoints.SequenceBackend.AddSequence": "Add Sequence Backend",
"Apis.Details.Endpoints.SequenceBackend.delete.cancel.button": "Cancel",
- "Apis.Details.Endpoints.SequenceBackend.delete.ok.button": "OK",
- "Apis.Details.Endpoints.SequenceBackend.deleteCustomBackend": "Delete with caution!",
+ "Apis.Details.Endpoints.SequenceBackend.delete.ok.button": "Yes",
+ "Apis.Details.Endpoints.SequenceBackend.deleteCustomBackend": "Confirm Delete",
"Apis.Details.Endpoints.UploadCustomBackend.cancel.button": "Close",
"Apis.Details.Endpoints.UploadCustomBackend.click.or.drop.to.upload.file": "Click or drag the sequence backend file to upload.",
"Apis.Details.Endpoints.UploadCustomBackend.config.save.button": "Save",
"Apis.Details.Endpoints.UploadCustomBackend.invalid.file": "Invalid file type",
"Apis.Details.Endpoints.add.new.endpoint": "Add Sandbox Endpoint",
- "Apis.Details.Environments.Environments\r\n .select.vhost": "Select Access URL",
+ "Apis.Details.Environments.Environments\n .select.vhost": "Select Access URL",
"Apis.Details.Environments.Environments.APIGateways": "Gateways",
"Apis.Details.Environments.Environments.Create.Revision.Deploy": "Create new revision and deploy",
"Apis.Details.Environments.Environments.Deployments": "Revisions",
@@ -1064,7 +1076,7 @@
"Apis.Details.Environments.Environments.deployments.sub.heading": "Create revisions and deploy in Gateway Environments",
"Apis.Details.Environments.Environments.display.devportal": "Display Gateway Access URLs in developer portal.",
"Apis.Details.Environments.Environments.external.gateways.heading": "Gateways",
- "Apis.Details.Environments.Environments.gateway\r\n .deployment.current.revision": "Current Revision",
+ "Apis.Details.Environments.Environments.gateway\n .deployment.current.revision": "Current Revision",
"Apis.Details.Environments.Environments.gateway.accessUrl": "Gateway Access URL",
"Apis.Details.Environments.Environments.gateway.action": "Action",
"Apis.Details.Environments.Environments.gateway.deployment.failed": "Failed",
@@ -1077,7 +1089,7 @@
"Apis.Details.Environments.Environments.gateway.deployment.total": "Total Gateways",
"Apis.Details.Environments.Environments.no.env.heading": "No Gateway Environments Configured for the selected gateway type",
"Apis.Details.Environments.Environments.pending.chip": "Pending",
- "Apis.Details.Environments.Environments.revision\r\n .description.deploy": "Add a description to the revision",
+ "Apis.Details.Environments.Environments.revision\n .description.deploy": "Add a description to the revision",
"Apis.Details.Environments.Environments.revision.create.error": "Something went wrong while creating the revision",
"Apis.Details.Environments.Environments.revision.create.error.governance": "Revision Creation failed. Governance policy violations found",
"Apis.Details.Environments.Environments.revision.create.error.governance.download": "Download Violations",
@@ -1163,7 +1175,7 @@
"Apis.Details.LifeCycle.CheckboxLabels.cert.provided": "Certificate provided",
"Apis.Details.LifeCycle.CheckboxLabels.endpoints.provided": "Endpoint provided",
"Apis.Details.LifeCycle.CheckboxLabels.mandatory.properties.provided": "Mandatory Properties provided",
- "Apis.Details.LifeCycle.LifeCycle.change.not.allowed": "* You are not authorized to change the life cycle state of the API due to insufficient permissions",
+ "Apis.Details.LifeCycle.LifeCycle.change.not.allowed": "* You are not authorized to change the life cycle state of the {type} due to insufficient permissions",
"Apis.Details.LifeCycle.LifeCycle.history": "History",
"Apis.Details.LifeCycle.LifeCycle.lifecycle": "Lifecycle",
"Apis.Details.LifeCycle.LifeCycleHistory.action": "Action",
@@ -1317,8 +1329,8 @@
"Apis.Details.NewVersion.NewVersion.success": "Successfully created new version",
"Apis.Details.NewVersion.NewVersion.tooltip": "Indicates if this is the default version of the API. If an API is invoked without specifying a version, the API Gateway will route the request to the default version of the API.",
"Apis.Details.NewVersion.loading.services.error": "Error while loading services version",
- "Apis.Details.Operations\r\n .Operation.operation.no.sharedpi.scope.available": "No shared scopes available",
- "Apis.Details.Operations.Operation\r\n .throttling.policy": "Rate Limiting",
+ "Apis.Details.Operations\n .Operation.operation.no.sharedpi.scope.available": "No shared scopes available",
+ "Apis.Details.Operations.Operation\n .throttling.policy": "Rate Limiting",
"Apis.Details.Operations.Operation.OperationType": "Operation Type",
"Apis.Details.Operations.Operation.authType": "Security Enabled",
"Apis.Details.Operations.Operation.cancel": "Cancel",
@@ -1520,7 +1532,7 @@
"Apis.Details.Properties.Properties.show.add.property.custom.property.name": "{message}",
"Apis.Details.Properties.Properties.show.add.property.invalid.error": "Invalid property name",
"Apis.Details.Properties.Properties.show.add.property.property.name": "Name",
- "Apis.Details.Properties.Properties.update.not.allowed": "*You are not authorized to update properties of the API due to insufficient permissions",
+ "Apis.Details.Properties.Properties.update.not.allowed": "*You are not authorized to update properties of the {type} due to insufficient permissions",
"Apis.Details.QueryAnalysis.UpdateComplexity.fieldcomplexity": "Fields",
"Apis.Details.QueryAnalysis.UpdateComplexity.fieldcomplexitysum": "Sum of the Complexity",
"Apis.Details.QueryAnalysis.UpdateComplexity.table.complexity.value": "ComplexityValue",
@@ -1698,6 +1710,7 @@
"Apis.Details.Scopes.Roles.User.Invalid": "At least one role must be associated with the API creator",
"Apis.Details.Scopes.Scopes.create.scopes.button": "Create Scope",
"Apis.Details.Scopes.Scopes.create.scopes.title": "Create Local Scopes",
+ "Apis.Details.Scopes.Scopes.edit.disabled.tooltip": "You do not have permission to edit scopes",
"Apis.Details.Scopes.Scopes.heading.edit.scope.heading": "Scopes",
"Apis.Details.Scopes.Scopes.heading.scope.add_new": "Add New Local Scope",
"Apis.Details.Scopes.Scopes.heading.scope.heading": "Scopes",
@@ -1709,7 +1722,7 @@
"Apis.Details.Scopes.Scopes.table.header.name": "Name",
"Apis.Details.Scopes.Scopes.table.header.roles": "Roles",
"Apis.Details.Scopes.Scopes.table.header.usages": "Used In",
- "Apis.Details.Scopes.Scopes.update.not.allowed": "*You are not authorized to update scopes of the API due to insufficient permissions",
+ "Apis.Details.Scopes.Scopes.update.not.allowed": "*You are not authorized to update scopes of the {type} due to insufficient permissions",
"Apis.Details.Scopes.visibility.CreateScope.roles.help": "Enter valid role and press enter",
"Apis.Details.Scopes.visibility.CreateScope.roles.placeholder": "Enter roles and press Enter",
"Apis.Details.Security.AddPolicy.add.policy.to.api": "Add Policy to API",
@@ -1893,6 +1906,7 @@
"Apis.Listing.ApiTableView.items.per.page": "Items per page",
"Apis.Listing.ApiTableView.name": "Display Name",
"Apis.Listing.ApiTableView.provider": "Provider",
+ "Apis.Listing.ApiTableView.type": "Type",
"Apis.Listing.ApiTableView.vendor": "Gateway Vendor",
"Apis.Listing.ApiTableView.version": "Version",
"Apis.Listing.ApiThumb.by": "By",
@@ -1949,9 +1963,14 @@
"Apis.Listing.SampleAPI.popup.update.inprogress": "Updating sample API ...",
"Apis.Listing.SampleAPIProduct.description": "Combine multiple API resources in to a single API",
"Apis.Listing.SampleAPIProduct.onboarding.menu.card.name": "API Product",
+ "Apis.Listing.TableView.TableView.ai.api": "AI API",
+ "Apis.Listing.TableView.TableView.api.product": "API Product",
"Apis.Listing.TableView.TableView.def.flag": "[Def]",
+ "Apis.Listing.TableView.TableView.definition": "Definition",
"Apis.Listing.TableView.TableView.doc.flag": "[Doc]",
+ "Apis.Listing.TableView.TableView.document": "Document",
"Apis.Listing.TableView.TableView.error.loading": "Error While Loading APIs",
+ "Apis.Listing.TableView.TableView.mcp.server": "MCP Server",
"Apis.Listing.TaskState.generic.error.prefix": "Error while",
"Apis.Listing.TaskState.governance.violation": "One or more governance polices have been violated. Please check the configurations.",
"Apis.Listing.components.ImageGenerator.DefThumb.apiName": "API Name",
@@ -2032,6 +2051,7 @@
"Base.Header.headersearch.HeaderSearch.tooltip.option4": "Context [ Syntax - context:xxxx ]",
"Base.Header.headersearch.HeaderSearch.tooltip.option5": "Status [ Syntax - status:xxxx ]",
"Base.Header.headersearch.HeaderSearch.tooltip.option6": "Description [ Syntax - description:xxxx ]",
+ "Base.Header.headersearch.HeaderSearch.tooltip.option7": "Display Name [ Syntax - display-name:xxxx ]",
"Base.Header.headersearch.HeaderSearch.tooltip.title": "Search Options for APIs, MCP Servers and APIProducts",
"Base.Header.navbar.GlobalNavBar.Service.Catalog": "Services",
"Base.Header.navbar.GlobalNavBar.Tasks": "Tasks",
@@ -2467,10 +2487,10 @@
"Workflow.SubscriptionCreation.List.empty.content.subscriptioncreations": "There are no pending workflow requests for subscription creation.",
"Workflow.SubscriptionCreation.List.empty.title.subscriptioncreations": "Subscription Creation",
"Workflow.SubscriptionCreation.ListBase.nodata.message": "No items yet",
- "Workflow.SubscriptionCreation.Reject.Title": "Reject",
+ "Workflow.SubscriptionCreation.Reject.Title": "Reject Subscription",
"Workflow.SubscriptionCreation.Reject.button.cancel": "Cancel",
"Workflow.SubscriptionCreation.Reject.button.delete": "Reject",
- "Workflow.SubscriptionCreation.Reject.text.description": "Are you sure, you want to reject this subscription ?",
+ "Workflow.SubscriptionCreation.Reject.text.description": "Are you sure you want to reject this subscription?",
"Workflow.SubscriptionCreation.apicall.has.errors": "Unable to get workflow pending requests for Subscription Creation",
"Workflow.SubscriptionCreation.help.link.one": "Create a subscription creation request",
"Workflow.SubscriptionCreation.permission.denied.content": "You dont have enough permission to view Subscription Creation - Approval Tasks. Please contact the site administrator.",
@@ -2488,10 +2508,10 @@
"Workflow.SubscriptionCreation.update.success": "Workflow status is updated successfully",
"Workflow.SubscriptionUpdate.List.empty.content.subscriptionupdate": "There are no pending workflow requests for subscription update.",
"Workflow.SubscriptionUpdate.List.empty.title.subscriptionupdate": "Subscription Update",
- "Workflow.SubscriptionUpdate.Reject.Title": "Reject",
+ "Workflow.SubscriptionUpdate.Reject.Title": "Reject Subscription Update",
"Workflow.SubscriptionUpdate.Reject.button.cancel": "Cancel",
"Workflow.SubscriptionUpdate.Reject.button.delete": "Reject",
- "Workflow.SubscriptionUpdate.Reject.text.description": "Are you sure, you want to reject this subscription update?",
+ "Workflow.SubscriptionUpdate.Reject.text.description": "Are you sure you want to reject this subscription update?",
"Workflow.SubscriptionUpdate.apicall.has.errors": "Unable to get workflow pending requests for Subscription Update",
"Workflow.SubscriptionUpdate.help.link.one": "Create a subscription update request",
"Workflow.SubscriptionUpdate.permission.denied.content": "You dont have enough permission to view Subscription Update - Approval Tasks. Please contact the site administrator.",