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

25 lines
641 B
TypeScript

import { DescriptorOnlyIntegration } from '../../core/classes.descriptoronlyintegration.js';
export class HomeAssistantAftershipIntegration extends DescriptorOnlyIntegration {
constructor() {
super({
domain: "aftership",
displayName: "AfterShip",
status: 'descriptor-only',
metadata: {
"source": "home-assistant/core",
"upstreamPath": "homeassistant/components/aftership",
"upstreamDomain": "aftership",
"integrationType": "service",
"iotClass": "cloud_polling",
"requirements": [
"pyaftership==21.11.0"
],
"dependencies": [],
"afterDependencies": [],
"codeowners": []
},
});
}
}