├── .eslintrc.js ├── .gitattributes ├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── feature_request.yaml │ └── need_help.yaml ├── release.yml └── workflows │ ├── codeql-analysis.yml │ ├── publish-dev.yml │ ├── publish.yml │ └── tests.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierrc.js ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── docs ├── HAP-Specification-Non-Commercial-Version.pdf └── README.md ├── examples ├── demo │ ├── 01 - ALL Demos single import.json │ ├── 02 - Air Purifier.json │ ├── 03 - Air Quality sensor with Battery.json │ ├── 04 - Dimmable Bulb.json │ ├── 05 - Color Bulb (HSV).json │ ├── 06 - Fan (simple, 3 speeds).json │ ├── 07 - Fan (with speed, oscillate, rotation direction).json │ ├── 08 - CO2 detector.json │ ├── 09 - CO (carbon monoxide) example.json │ └── 10 - Door window contact sensor.json ├── demos (advanced) │ └── 01 - Television with inputs and speaker.json └── switch │ └── 01 - Plain Switch.json ├── package.json ├── src ├── lib │ ├── HAPHostNode.ts │ ├── HAPServiceNode.ts │ ├── HAPServiceNode2.ts │ ├── NRCHKBError.ts │ ├── Storage.ts │ ├── api.ts │ ├── cameraSource │ │ └── index.js │ ├── hap │ │ ├── HAPCharacteristic.ts │ │ ├── HAPService.ts │ │ └── eve-app │ │ │ ├── EveCharacteristics.ts │ │ │ └── EveServices.ts │ ├── types │ │ ├── AccessoryInformationType.ts │ │ ├── CameraConfigType.ts │ │ ├── CustomCharacteristicType.ts │ │ ├── HAPHostConfigType.ts │ │ ├── HAPHostNodeType.ts │ │ ├── HAPService2ConfigType.ts │ │ ├── HAPService2NodeType.ts │ │ ├── HAPServiceConfigType.ts │ │ ├── HAPServiceNodeType.ts │ │ ├── HAPStatusConfigType.ts │ │ ├── HAPStatusNodeType.ts │ │ ├── HostType.ts │ │ ├── NodeType.ts │ │ ├── PublishTimersType.ts │ │ ├── hap-nodejs │ │ │ ├── BonjourMulticastOptions.ts │ │ │ ├── HapAdaptiveLightingControllerMode.ts │ │ │ └── HapCategories.ts │ │ └── storage │ │ │ ├── SerializedHostType.ts │ │ │ └── StorageType.ts │ └── utils │ │ ├── AccessoryUtils.ts │ │ ├── BridgeUtils.ts │ │ ├── CharacteristicUtils.ts │ │ ├── CharacteristicUtils2.ts │ │ ├── MdnsUtils.ts │ │ ├── NodeStatusUtils.ts │ │ ├── ServiceUtils.ts │ │ ├── ServiceUtils2.ts │ │ └── index.ts ├── nodes │ ├── bridge.ts │ ├── nrchkb.ts │ ├── service.ts │ ├── service2.ts │ ├── standalone.ts │ └── status.ts └── test │ ├── lib │ ├── HAPBridgeNode.test.ts │ ├── NodeStatusUtils.test.ts │ └── api.test.ts │ ├── nodes │ ├── service.test.ts │ └── service2.test.ts │ └── test-utils │ └── data │ ├── api.accessory.categories.response.ts │ ├── api.service.types.response.ts │ ├── index.ts │ ├── switch.service.bridge.flow.ts │ └── switch.service2.bridge.flow.ts └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: Shaquu 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/need_help.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/.github/ISSUE_TEMPLATE/need_help.yaml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/publish-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/.github/workflows/publish-dev.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docs/HAP-Specification-Non-Commercial-Version.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/docs/HAP-Specification-Non-Commercial-Version.pdf -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/docs/README.md -------------------------------------------------------------------------------- /examples/demo/01 - ALL Demos single import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/examples/demo/01 - ALL Demos single import.json -------------------------------------------------------------------------------- /examples/demo/02 - Air Purifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/examples/demo/02 - Air Purifier.json -------------------------------------------------------------------------------- /examples/demo/03 - Air Quality sensor with Battery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/examples/demo/03 - Air Quality sensor with Battery.json -------------------------------------------------------------------------------- /examples/demo/04 - Dimmable Bulb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/examples/demo/04 - Dimmable Bulb.json -------------------------------------------------------------------------------- /examples/demo/05 - Color Bulb (HSV).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/examples/demo/05 - Color Bulb (HSV).json -------------------------------------------------------------------------------- /examples/demo/06 - Fan (simple, 3 speeds).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/examples/demo/06 - Fan (simple, 3 speeds).json -------------------------------------------------------------------------------- /examples/demo/07 - Fan (with speed, oscillate, rotation direction).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/examples/demo/07 - Fan (with speed, oscillate, rotation direction).json -------------------------------------------------------------------------------- /examples/demo/08 - CO2 detector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/examples/demo/08 - CO2 detector.json -------------------------------------------------------------------------------- /examples/demo/09 - CO (carbon monoxide) example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/examples/demo/09 - CO (carbon monoxide) example.json -------------------------------------------------------------------------------- /examples/demo/10 - Door window contact sensor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/examples/demo/10 - Door window contact sensor.json -------------------------------------------------------------------------------- /examples/demos (advanced)/01 - Television with inputs and speaker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/examples/demos (advanced)/01 - Television with inputs and speaker.json -------------------------------------------------------------------------------- /examples/switch/01 - Plain Switch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/examples/switch/01 - Plain Switch.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/package.json -------------------------------------------------------------------------------- /src/lib/HAPHostNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/HAPHostNode.ts -------------------------------------------------------------------------------- /src/lib/HAPServiceNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/HAPServiceNode.ts -------------------------------------------------------------------------------- /src/lib/HAPServiceNode2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/HAPServiceNode2.ts -------------------------------------------------------------------------------- /src/lib/NRCHKBError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/NRCHKBError.ts -------------------------------------------------------------------------------- /src/lib/Storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/Storage.ts -------------------------------------------------------------------------------- /src/lib/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/api.ts -------------------------------------------------------------------------------- /src/lib/cameraSource/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/cameraSource/index.js -------------------------------------------------------------------------------- /src/lib/hap/HAPCharacteristic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/hap/HAPCharacteristic.ts -------------------------------------------------------------------------------- /src/lib/hap/HAPService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/hap/HAPService.ts -------------------------------------------------------------------------------- /src/lib/hap/eve-app/EveCharacteristics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/hap/eve-app/EveCharacteristics.ts -------------------------------------------------------------------------------- /src/lib/hap/eve-app/EveServices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/hap/eve-app/EveServices.ts -------------------------------------------------------------------------------- /src/lib/types/AccessoryInformationType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/types/AccessoryInformationType.ts -------------------------------------------------------------------------------- /src/lib/types/CameraConfigType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/types/CameraConfigType.ts -------------------------------------------------------------------------------- /src/lib/types/CustomCharacteristicType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/types/CustomCharacteristicType.ts -------------------------------------------------------------------------------- /src/lib/types/HAPHostConfigType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/types/HAPHostConfigType.ts -------------------------------------------------------------------------------- /src/lib/types/HAPHostNodeType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/types/HAPHostNodeType.ts -------------------------------------------------------------------------------- /src/lib/types/HAPService2ConfigType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/types/HAPService2ConfigType.ts -------------------------------------------------------------------------------- /src/lib/types/HAPService2NodeType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/types/HAPService2NodeType.ts -------------------------------------------------------------------------------- /src/lib/types/HAPServiceConfigType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/types/HAPServiceConfigType.ts -------------------------------------------------------------------------------- /src/lib/types/HAPServiceNodeType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/types/HAPServiceNodeType.ts -------------------------------------------------------------------------------- /src/lib/types/HAPStatusConfigType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/types/HAPStatusConfigType.ts -------------------------------------------------------------------------------- /src/lib/types/HAPStatusNodeType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/types/HAPStatusNodeType.ts -------------------------------------------------------------------------------- /src/lib/types/HostType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/types/HostType.ts -------------------------------------------------------------------------------- /src/lib/types/NodeType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/types/NodeType.ts -------------------------------------------------------------------------------- /src/lib/types/PublishTimersType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/types/PublishTimersType.ts -------------------------------------------------------------------------------- /src/lib/types/hap-nodejs/BonjourMulticastOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/types/hap-nodejs/BonjourMulticastOptions.ts -------------------------------------------------------------------------------- /src/lib/types/hap-nodejs/HapAdaptiveLightingControllerMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/types/hap-nodejs/HapAdaptiveLightingControllerMode.ts -------------------------------------------------------------------------------- /src/lib/types/hap-nodejs/HapCategories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/types/hap-nodejs/HapCategories.ts -------------------------------------------------------------------------------- /src/lib/types/storage/SerializedHostType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/types/storage/SerializedHostType.ts -------------------------------------------------------------------------------- /src/lib/types/storage/StorageType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/types/storage/StorageType.ts -------------------------------------------------------------------------------- /src/lib/utils/AccessoryUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/utils/AccessoryUtils.ts -------------------------------------------------------------------------------- /src/lib/utils/BridgeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/utils/BridgeUtils.ts -------------------------------------------------------------------------------- /src/lib/utils/CharacteristicUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/utils/CharacteristicUtils.ts -------------------------------------------------------------------------------- /src/lib/utils/CharacteristicUtils2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/utils/CharacteristicUtils2.ts -------------------------------------------------------------------------------- /src/lib/utils/MdnsUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/utils/MdnsUtils.ts -------------------------------------------------------------------------------- /src/lib/utils/NodeStatusUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/utils/NodeStatusUtils.ts -------------------------------------------------------------------------------- /src/lib/utils/ServiceUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/utils/ServiceUtils.ts -------------------------------------------------------------------------------- /src/lib/utils/ServiceUtils2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/utils/ServiceUtils2.ts -------------------------------------------------------------------------------- /src/lib/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/lib/utils/index.ts -------------------------------------------------------------------------------- /src/nodes/bridge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/nodes/bridge.ts -------------------------------------------------------------------------------- /src/nodes/nrchkb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/nodes/nrchkb.ts -------------------------------------------------------------------------------- /src/nodes/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/nodes/service.ts -------------------------------------------------------------------------------- /src/nodes/service2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/nodes/service2.ts -------------------------------------------------------------------------------- /src/nodes/standalone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/nodes/standalone.ts -------------------------------------------------------------------------------- /src/nodes/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/nodes/status.ts -------------------------------------------------------------------------------- /src/test/lib/HAPBridgeNode.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/test/lib/HAPBridgeNode.test.ts -------------------------------------------------------------------------------- /src/test/lib/NodeStatusUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/test/lib/NodeStatusUtils.test.ts -------------------------------------------------------------------------------- /src/test/lib/api.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/test/lib/api.test.ts -------------------------------------------------------------------------------- /src/test/nodes/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/test/nodes/service.test.ts -------------------------------------------------------------------------------- /src/test/nodes/service2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/test/nodes/service2.test.ts -------------------------------------------------------------------------------- /src/test/test-utils/data/api.accessory.categories.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/test/test-utils/data/api.accessory.categories.response.ts -------------------------------------------------------------------------------- /src/test/test-utils/data/api.service.types.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/test/test-utils/data/api.service.types.response.ts -------------------------------------------------------------------------------- /src/test/test-utils/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/test/test-utils/data/index.ts -------------------------------------------------------------------------------- /src/test/test-utils/data/switch.service.bridge.flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/test/test-utils/data/switch.service.bridge.flow.ts -------------------------------------------------------------------------------- /src/test/test-utils/data/switch.service2.bridge.flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/src/test/test-utils/data/switch.service2.bridge.flow.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NRCHKB/node-red-contrib-homekit-bridged/HEAD/tsconfig.json --------------------------------------------------------------------------------