30 lines
716 B
TypeScript
30 lines
716 B
TypeScript
import { DescriptorOnlyIntegration } from '../../core/classes.descriptoronlyintegration.js';
|
|
|
|
export class HomeAssistantGoogleAssistantIntegration extends DescriptorOnlyIntegration {
|
|
constructor() {
|
|
super({
|
|
domain: "google_assistant",
|
|
displayName: "Google Assistant",
|
|
status: 'descriptor-only',
|
|
metadata: {
|
|
"source": "home-assistant/core",
|
|
"upstreamPath": "homeassistant/components/google_assistant",
|
|
"upstreamDomain": "google_assistant",
|
|
"integrationType": "system",
|
|
"iotClass": "cloud_push",
|
|
"requirements": [],
|
|
"dependencies": [
|
|
"http"
|
|
],
|
|
"afterDependencies": [
|
|
"camera",
|
|
"matter"
|
|
],
|
|
"codeowners": [
|
|
"@home-assistant/cloud"
|
|
]
|
|
},
|
|
});
|
|
}
|
|
}
|