27 lines
678 B
TypeScript
27 lines
678 B
TypeScript
import { DescriptorOnlyIntegration } from '../../core/classes.descriptoronlyintegration.js';
|
|
|
|
export class HomeAssistantSeventeentrackIntegration extends DescriptorOnlyIntegration {
|
|
constructor() {
|
|
super({
|
|
domain: "seventeentrack",
|
|
displayName: "17TRACK",
|
|
status: 'descriptor-only',
|
|
metadata: {
|
|
"source": "home-assistant/core",
|
|
"upstreamPath": "homeassistant/components/seventeentrack",
|
|
"upstreamDomain": "seventeentrack",
|
|
"integrationType": "service",
|
|
"iotClass": "cloud_polling",
|
|
"requirements": [
|
|
"pyseventeentrack==1.1.3"
|
|
],
|
|
"dependencies": [],
|
|
"afterDependencies": [],
|
|
"codeowners": [
|
|
"@shaiu"
|
|
]
|
|
},
|
|
});
|
|
}
|
|
}
|