Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "harperdb-studio",
"version": "4.5.0",
"version": "4.5.1",
"description": "A UI for HarperDB",
"deploymentUrl": "studio.harperdb.io",
"private": true,
Expand All @@ -27,11 +27,11 @@
"deepmerge": "^4.2.2",
"pullstate": "^1.22.1",
"query-string": "^9.0.0",
"react": "18.2.0",
"react": "18.3.1",
"react-alert": "^7.0.3",
"react-apexcharts": "^1.3.9",
"react-country-region-selector": "^3.4.0",
"react-dom": "18.2.0",
"react-dom": "18.3.1",
"react-dropzone": "^14.2.2",
"react-error-boundary": "^4.0.9",
"react-ga4": "^2.1.0",
Expand Down
1 change: 0 additions & 1 deletion src/app.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// external resources
@import '~bootstrap-scss/bootstrap-reboot';
@import '~bootstrap-scss/bootstrap-grid';

@import 'assets/styles/core/vars';

@import '~bootstrap-scss/bootstrap-utilities';
Expand Down
70 changes: 70 additions & 0 deletions src/functions/api/lms/getAkamaiRegions.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ export default async () => {
label: 'Dallas, TX',
country: 'us',
},
{
value: 'us-ord',
label: 'Chicago, IL',
country: 'us',
},
{
value: 'us-west',
label: 'Fremont, CA',
Expand All @@ -43,6 +48,26 @@ export default async () => {
label: 'Newark, NJ',
country: 'us',
},
{
value: 'us-lax',
label: 'Los Angeles, CA',
country: 'us',
},
{
value: 'us-mia',
label: 'Miami, FL',
country: 'us',
},
{
value: 'us-sea',
label: 'Seattle, WA',
country: 'us',
},
{
value: 'us-iad',
label: 'Washington, DC',
country: 'us',
},
{
value: 'eu-west',
label: 'London, UK',
Expand All @@ -63,6 +88,51 @@ export default async () => {
label: 'Tokyo, JP',
country: 'jp',
},
{
value: 'se-sto',
label: 'Stockholm, SE',
country: 'se',
},
{
value: 'nl-ams',
label: 'Amsterdam, NL',
country: 'nl',
},
{
value: 'fr-par',
label: 'Paris, FR',
country: 'fr',
},
{
value: 'es-mad',
label: 'Madrid, ES',
country: 'es',
},
{
value: 'jp-osa',
label: 'Osaka, JP',
country: 'jp',
},
{
value: 'in-maa',
label: 'Chennai, IN',
country: 'in',
},
{
value: 'id-cgk',
label: 'Jakarta, ID',
country: 'id',
},
{
value: 'br-gru',
label: 'São Paulo, BR',
country: 'br',
},
{
value: 'br-gru',
label: 'São Paulo, BR',
country: 'br',
},
].sort((a, b) => (a.label < b.label ? -1 : 1));

let regions = [];
Expand Down
Loading