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
1 change: 0 additions & 1 deletion dist/8531.9537d84ac30a9176.js

This file was deleted.

1 change: 1 addition & 0 deletions dist/8531.cab08afbcbf8445c.js

Large diffs are not rendered by default.

12 changes: 11 additions & 1 deletion dist/assets/img/databaseImages.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,5 +113,15 @@
"src": "assets/img/bigquery.png",
"alt": "bigquery",
"label": "bigquery"
},
{
"src": "assets/img/databricks.png",
"alt": "databricks",
"label": "databricks"
},
{
"src": "assets/img/dremio.svg",
"alt": "dremio",
"label": "dremio"
}
]
]
Binary file added dist/assets/img/databricks.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 31 additions & 0 deletions dist/assets/img/dremio.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
<body class="mat-typography">
<df-root></df-root>
<script type="text/javascript" src="https://assets.calendly.com/assets/external/widget.js"></script>
<script src="runtime.b9067587d1720887.js" type="module"></script><script src="polyfills.def0190516b19e6b.js" type="module"></script><script src="main.b9bef91cb9afc95d.js" type="module"></script></body>
<script src="runtime.87a8c0376be76f8f.js" type="module"></script><script src="polyfills.def0190516b19e6b.js" type="module"></script><script src="main.b9bef91cb9afc95d.js" type="module"></script></body>
</html>

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -1039,14 +1039,18 @@ export class DfServiceDetailsComponent implements OnInit {
)
.subscribe({
next: result => {
// Copy API key to clipboard
navigator.clipboard.writeText(result.apiKey);

// Show success message using DfSnackbarService
this.snackbarService.openSnackBar(
'API Created and API Key copied to clipboard',
'success'
);
// Attempt to copy API key to clipboard
if (navigator.clipboard) {
navigator.clipboard.writeText(result.apiKey)
.then(() => {
this.snackbarService.openSnackBar('API Created and API Key copied to clipboard', 'success');
})
.catch(() => {
this.snackbarService.openSnackBar('API Created, but failed to copy API Key', 'success');
});
} else {
this.snackbarService.openSnackBar('API Created, but failed to copy API Key', 'success');
}

// Navigate to API docs
this.router
Expand Down
23 changes: 16 additions & 7 deletions src/app/shared/constants/services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,13 +122,6 @@ export const SILVER_SERVICES: Array<ServiceType> = [
group: 'Notification',
configSchema: [],
},
{
name: 'mqtt',
label: 'MQTT Client',
description: 'MQTT Client based on Mosquitto.',
group: 'IoT',
configSchema: [],
},
{
name: 'mysql',
label: 'MySQL',
Expand Down Expand Up @@ -214,6 +207,22 @@ export const GOLD_SERVICES: Array<ServiceType> = [
group: 'Big Data',
configSchema: [],
},
{
name: 'databricks',
label: 'Databricks',
description:
'The Databricks data intelligence platform simplifies data engineering, analytics, and AI workloads by providing scalable compute and SQL-based access to large datasets in a unified environment.',
group: 'Big Data',
configSchema: [],
},
{
name: 'dremio',
label: 'Dremio',
description:
'The Dremio data lakehouse platform enables fast querying, data exploration, and analytics on large datasets across various storage systems using SQL.',
group: 'Big Data',
configSchema: [],
},
{
name: 'hadoop_hdfs',
label: 'Hadoop HDFS',
Expand Down
12 changes: 11 additions & 1 deletion src/assets/img/databaseImages.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,5 +113,15 @@
"src": "assets/img/bigquery.png",
"alt": "bigquery",
"label": "bigquery"
},
{
"src": "assets/img/databricks.png",
"alt": "databricks",
"label": "databricks"
},
{
"src": "assets/img/dremio.svg",
"alt": "dremio",
"label": "dremio"
}
]
]
Binary file added src/assets/img/databricks.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading