Files
integrations/ts/integrations/seventeentrack/seventeentrack.classes.integration.ts
T

27 lines
678 B
TypeScript
Raw Normal View History

2026-05-05 12:01:30 +00:00
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"
]
},
});
}
}