Add TypeScript integrations package

This commit is contained in:
2026-05-05 12:01:30 +00:00
commit e91176fb9b
5889 changed files with 53433 additions and 0 deletions
@@ -0,0 +1 @@
This folder is generated from Home Assistant component metadata. Replace it with a handwritten TypeScript port when implementing runtime support.
@@ -0,0 +1,2 @@
export * from './signal_messenger.classes.integration.js';
export * from './signal_messenger.types.js';
@@ -0,0 +1,26 @@
import { DescriptorOnlyIntegration } from '../../core/classes.descriptoronlyintegration.js';
export class HomeAssistantSignalMessengerIntegration extends DescriptorOnlyIntegration {
constructor() {
super({
domain: "signal_messenger",
displayName: "Signal Messenger",
status: 'descriptor-only',
metadata: {
"source": "home-assistant/core",
"upstreamPath": "homeassistant/components/signal_messenger",
"upstreamDomain": "signal_messenger",
"iotClass": "cloud_push",
"qualityScale": "legacy",
"requirements": [
"pysignalclirestapi==0.3.24"
],
"dependencies": [],
"afterDependencies": [],
"codeowners": [
"@bbernhard"
]
},
});
}
}
@@ -0,0 +1,4 @@
export interface IHomeAssistantSignalMessengerConfig {
// TODO: replace with the TypeScript-native config for signal_messenger.
[key: string]: unknown;
}