├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── api-bugs.md │ ├── cli-bugs.md │ ├── device-bugs.md │ ├── feature-request.md │ └── question.md ├── dependabot.yml └── workflows │ ├── pull_requests.yml │ ├── pushes.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── auth ├── api │ └── auth.api ├── build.gradle.kts └── src │ ├── commonMain │ └── kotlin │ │ └── inkapplications │ │ └── shade │ │ └── auth │ │ ├── AuthModule.kt │ │ ├── BridgeAuth.kt │ │ ├── ShadeBridgeAuth.kt │ │ └── structures │ │ ├── AppId.kt │ │ └── AuthRequest.kt │ └── jvmTest │ └── kotlin │ └── inkapplications │ └── shade │ └── auth │ ├── ShadeBridgeAuthTest.kt │ └── structures │ └── AppIdSerializerTest.kt ├── cli ├── build.gradle.kts └── src │ └── main │ └── kotlin │ └── inkapplications │ └── shade │ └── cli │ ├── Arguments.kt │ ├── AuthorizedShadeCommand.kt │ ├── Main.kt │ ├── ShadeCommand.kt │ ├── connection │ ├── AuthorizeCommand.kt │ └── DiscoverCommand.kt │ ├── devices │ ├── DeleteDeviceCommand.kt │ ├── DeviceOutput.kt │ ├── GetDeviceCommand.kt │ ├── IdentifyDeviceCommand.kt │ ├── ListDevicesCommand.kt │ └── UpdateDeviceCommand.kt │ ├── events │ └── EventsCommand.kt │ ├── groupedlights │ ├── GetGroupedLightCommand.kt │ ├── GroupedLightsOutput.kt │ ├── ListGroupedLightsCommand.kt │ └── UpdateGroupedLightCommand.kt │ ├── lights │ ├── GetLightCommand.kt │ ├── LightOutput.kt │ ├── ListLightsCommand.kt │ └── UpdateLightCommand.kt │ ├── resources │ └── ListResourcesCommand.kt │ ├── rooms │ ├── CreateRoomCommand.kt │ ├── DeleteRoomCommand.kt │ ├── GetRoomCommand.kt │ ├── ListRoomsCommand.kt │ ├── RoomOutput.kt │ └── UpdateRoomCommand.kt │ ├── scenes │ ├── Assertions.kt │ ├── CreateSceneCommand.kt │ ├── DeleteSceneCommand.kt │ ├── GetSceneCommand.kt │ ├── ListScenesCommand.kt │ ├── SceneOutput.kt │ └── UpdateSceneCommand.kt │ └── zones │ ├── CreateZoneCommand.kt │ ├── DeleteRoomCommand.kt │ ├── GetZoneCommand.kt │ ├── ListZonesCommand.kt │ ├── UpdateRoomCommand.kt │ └── ZoneOutput.kt ├── core ├── api │ └── core.api ├── build.gradle.kts └── src │ ├── commonMain │ └── kotlin │ │ └── inkapplications │ │ └── shade │ │ └── core │ │ └── Shade.kt │ └── jvmMain │ └── kotlin │ └── inkapplications │ └── shade │ └── core │ └── JvmExtensions.kt ├── devices ├── api │ └── devices.api ├── build.gradle.kts └── src │ ├── commonMain │ └── kotlin │ │ └── inkapplications │ │ └── shade │ │ └── devices │ │ ├── DeviceControls.kt │ │ ├── ShadeDevices.kt │ │ ├── ShadeDevicesModule.kt │ │ ├── parameters │ │ ├── DeviceMetadataParameters.kt │ │ ├── IdentifyParameters.kt │ │ └── UpdateDeviceParameters.kt │ │ └── structures │ │ ├── Device.kt │ │ ├── HardwarePlatformType.kt │ │ ├── ModelId.kt │ │ ├── ProductArchetype.kt │ │ ├── ProductData.kt │ │ └── ProductMetadata.kt │ └── jvmTest │ └── kotlin │ └── inkapplications │ └── shade │ └── devices │ ├── DeviceSerializationTest.kt │ └── DeviceUpdateParametersSerializationTest.kt ├── discover ├── api │ └── discover.api ├── build.gradle.kts └── src │ ├── commonMain │ └── kotlin │ │ └── inkapplications │ │ └── shade │ │ └── discover │ │ ├── BridgeDiscovery.kt │ │ ├── DiscoverModule.kt │ │ ├── KtorDiscovery.kt │ │ ├── PlatformModule.kt │ │ └── structures │ │ ├── Bridge.kt │ │ └── BridgeId.kt │ ├── iosMain │ └── kotlin │ │ └── inkapplications │ │ └── shade │ │ └── discover │ │ └── PlatformModule.kt │ ├── jsMain │ └── kotlin │ │ └── inkapplications │ │ └── shade │ │ └── discover │ │ └── PlatformModule.kt │ ├── jvmMain │ └── kotlin │ │ └── inkapplications │ │ └── shade │ │ └── discover │ │ └── PlatformModule.kt │ ├── nativeMain │ └── kotlin │ │ └── inkapplications │ │ └── shade │ │ └── discover │ │ └── PlatformModule.kt │ └── windowsMain │ └── kotlin │ └── inkapplications │ └── shade │ └── discover │ └── PlatformModule.kt ├── docs ├── CNAME ├── cli-overview.html ├── css │ ├── atom-one-dark.css │ ├── atom-one-light.css │ ├── dark-1.1.css │ ├── main-1.1.css │ ├── main-2.0.css │ └── reset.css ├── index.html ├── reference │ └── latest │ │ ├── auth │ │ ├── index.html │ │ ├── inkapplications.shade.auth.structures │ │ │ ├── -app-id │ │ │ │ ├── -app-id.html │ │ │ │ ├── app-name.html │ │ │ │ ├── index.html │ │ │ │ └── instance-name.html │ │ │ └── index.html │ │ ├── inkapplications.shade.auth │ │ │ ├── -auth-module │ │ │ │ ├── -auth-module.html │ │ │ │ ├── bridge-auth.html │ │ │ │ └── index.html │ │ │ ├── -bridge-auth │ │ │ │ ├── await-token.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ └── navigation.html │ │ ├── core │ │ ├── index.html │ │ ├── inkapplications.shade.core │ │ │ ├── -shade │ │ │ │ ├── -shade.html │ │ │ │ ├── auth.html │ │ │ │ ├── configuration.html │ │ │ │ ├── devices.html │ │ │ │ ├── grouped-lights.html │ │ │ │ ├── index.html │ │ │ │ ├── lights.html │ │ │ │ ├── online-discovery.html │ │ │ │ ├── resources.html │ │ │ │ ├── rooms.html │ │ │ │ ├── scenes.html │ │ │ │ └── zones.html │ │ │ ├── events.html │ │ │ └── index.html │ │ └── navigation.html │ │ ├── devices │ │ ├── index.html │ │ ├── inkapplications.shade.devices.parameters │ │ │ ├── -device-metadata-parameters │ │ │ │ ├── -device-metadata-parameters.html │ │ │ │ ├── archetype.html │ │ │ │ ├── index.html │ │ │ │ └── name.html │ │ │ ├── -update-device-parameters │ │ │ │ ├── -update-device-parameters.html │ │ │ │ ├── index.html │ │ │ │ └── metadata.html │ │ │ └── index.html │ │ ├── inkapplications.shade.devices.structures │ │ │ ├── -device │ │ │ │ ├── -device.html │ │ │ │ ├── id.html │ │ │ │ ├── index.html │ │ │ │ ├── metadata.html │ │ │ │ ├── product-data.html │ │ │ │ ├── services.html │ │ │ │ └── v1-id.html │ │ │ ├── -hardware-platform-type │ │ │ │ ├── -hardware-platform-type.html │ │ │ │ ├── index.html │ │ │ │ ├── to-string.html │ │ │ │ └── value.html │ │ │ ├── -model-id │ │ │ │ ├── -model-id.html │ │ │ │ ├── index.html │ │ │ │ ├── to-string.html │ │ │ │ └── value.html │ │ │ ├── -product-archetype │ │ │ │ ├── -companion │ │ │ │ │ ├── -bollard.html │ │ │ │ │ ├── -bridge-v2.html │ │ │ │ │ ├── -candle-bulb.html │ │ │ │ │ ├── -ceiling-horizontal.html │ │ │ │ │ ├── -ceiling-round.html │ │ │ │ │ ├── -ceiling-square.html │ │ │ │ │ ├── -ceiling-tube.html │ │ │ │ │ ├── -christmas-tree.html │ │ │ │ │ ├── -classic-bulb.html │ │ │ │ │ ├── -double-spot.html │ │ │ │ │ ├── -edison-bulb.html │ │ │ │ │ ├── -ellipse-bulb.html │ │ │ │ │ ├── -flexible-lamp.html │ │ │ │ │ ├── -flood-bulb.html │ │ │ │ │ ├── -floor-lantern.html │ │ │ │ │ ├── -floor-shade.html │ │ │ │ │ ├── -ground-spot.html │ │ │ │ │ ├── -hue-bloom.html │ │ │ │ │ ├── -hue-centris.html │ │ │ │ │ ├── -hue-go.html │ │ │ │ │ ├── -hue-iris.html │ │ │ │ │ ├── -hue-lightstrip-pc.html │ │ │ │ │ ├── -hue-lightstrip-tv.html │ │ │ │ │ ├── -hue-lightstrip.html │ │ │ │ │ ├── -hue-play.html │ │ │ │ │ ├── -hue-signe.html │ │ │ │ │ ├── -hue-tube.html │ │ │ │ │ ├── -large-globe-bulb.html │ │ │ │ │ ├── -luster-bulb.html │ │ │ │ │ ├── -pendant-long.html │ │ │ │ │ ├── -pendant-round.html │ │ │ │ │ ├── -pendant-spot.html │ │ │ │ │ ├── -plug.html │ │ │ │ │ ├── -recessed-ceiling.html │ │ │ │ │ ├── -recessed-floor.html │ │ │ │ │ ├── -single-spot.html │ │ │ │ │ ├── -small-globe-bulb.html │ │ │ │ │ ├── -spot-bulb.html │ │ │ │ │ ├── -string-light.html │ │ │ │ │ ├── -sultan-bulb.html │ │ │ │ │ ├── -table-shade.html │ │ │ │ │ ├── -table-wash.html │ │ │ │ │ ├── -triangle-bulb.html │ │ │ │ │ ├── -unknown-archetype.html │ │ │ │ │ ├── -vintage-bulb.html │ │ │ │ │ ├── -vintage-candle-bulb.html │ │ │ │ │ ├── -wall-lantern.html │ │ │ │ │ ├── -wall-shade.html │ │ │ │ │ ├── -wall-spot.html │ │ │ │ │ ├── -wall-washer.html │ │ │ │ │ └── index.html │ │ │ │ ├── -product-archetype.html │ │ │ │ ├── index.html │ │ │ │ ├── key.html │ │ │ │ └── to-string.html │ │ │ ├── -product-data │ │ │ │ ├── -product-data.html │ │ │ │ ├── certified.html │ │ │ │ ├── hardware-platform-type.html │ │ │ │ ├── index.html │ │ │ │ ├── manufacturer-name.html │ │ │ │ ├── model-id.html │ │ │ │ ├── product-archetype.html │ │ │ │ ├── product-name.html │ │ │ │ └── software-version.html │ │ │ ├── -product-metadata │ │ │ │ ├── -product-metadata.html │ │ │ │ ├── archetype.html │ │ │ │ ├── index.html │ │ │ │ └── name.html │ │ │ └── index.html │ │ ├── inkapplications.shade.devices │ │ │ ├── -device-controls │ │ │ │ ├── delete-device.html │ │ │ │ ├── get-device.html │ │ │ │ ├── identify-device.html │ │ │ │ ├── index.html │ │ │ │ ├── list-devices.html │ │ │ │ └── update-device.html │ │ │ ├── -shade-devices-module │ │ │ │ ├── -shade-devices-module.html │ │ │ │ ├── devices.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ └── navigation.html │ │ ├── discover │ │ ├── index.html │ │ ├── inkapplications.shade.discover.structures │ │ │ ├── -bridge-id │ │ │ │ ├── -bridge-id.html │ │ │ │ ├── index.html │ │ │ │ ├── to-string.html │ │ │ │ └── value.html │ │ │ ├── -bridge │ │ │ │ ├── -bridge.html │ │ │ │ ├── id.html │ │ │ │ ├── index.html │ │ │ │ ├── local-ip.html │ │ │ │ └── port.html │ │ │ └── index.html │ │ ├── inkapplications.shade.discover │ │ │ ├── -bridge-discovery │ │ │ │ ├── get-devices.html │ │ │ │ └── index.html │ │ │ ├── -discover-module │ │ │ │ ├── -discover-module.html │ │ │ │ ├── index.html │ │ │ │ └── online-discovery.html │ │ │ └── index.html │ │ └── navigation.html │ │ ├── events │ │ ├── index.html │ │ ├── inkapplications.shade.events │ │ │ ├── -event-serializer-container │ │ │ │ ├── index.html │ │ │ │ └── set-deserializer.html │ │ │ ├── -events-module │ │ │ │ ├── -events-module.html │ │ │ │ ├── event-serializer-container.html │ │ │ │ └── index.html │ │ │ ├── -events │ │ │ │ ├── bridge-events.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── navigation.html │ │ └── shade.events │ │ │ ├── events.html │ │ │ └── index.html │ │ ├── grouped-lights │ │ ├── index.html │ │ ├── inkapplications.shade.groupedlights.events │ │ │ ├── -grouped-light-event │ │ │ │ ├── -grouped-light-event.html │ │ │ │ ├── alert-info.html │ │ │ │ ├── dimming-info.html │ │ │ │ ├── id.html │ │ │ │ ├── index.html │ │ │ │ ├── owner.html │ │ │ │ └── power-info.html │ │ │ └── index.html │ │ ├── inkapplications.shade.groupedlights.parameters │ │ │ ├── -grouped-light-update-parameters │ │ │ │ ├── -grouped-light-update-parameters.html │ │ │ │ ├── alert.html │ │ │ │ ├── color-temperature-delta.html │ │ │ │ ├── color-temperature.html │ │ │ │ ├── color.html │ │ │ │ ├── dimming-delta.html │ │ │ │ ├── dimming.html │ │ │ │ ├── dynamics.html │ │ │ │ ├── index.html │ │ │ │ └── power.html │ │ │ └── index.html │ │ ├── inkapplications.shade.groupedlights.structures │ │ │ ├── -group-dimming-info │ │ │ │ ├── -group-dimming-info.html │ │ │ │ ├── brightness.html │ │ │ │ └── index.html │ │ │ ├── -grouped-light │ │ │ │ ├── -grouped-light.html │ │ │ │ ├── alert-info.html │ │ │ │ ├── dimming-info.html │ │ │ │ ├── id.html │ │ │ │ ├── index.html │ │ │ │ ├── owner.html │ │ │ │ └── power-info.html │ │ │ └── index.html │ │ ├── inkapplications.shade.groupedlights │ │ │ ├── -grouped-light-controls │ │ │ │ ├── get-group.html │ │ │ │ ├── index.html │ │ │ │ ├── list-groups.html │ │ │ │ └── update-group.html │ │ │ ├── -shade-grouped-lights-module │ │ │ │ ├── -shade-grouped-lights-module.html │ │ │ │ ├── grouped-lights.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ └── navigation.html │ │ ├── images │ │ ├── anchor-copy-button.svg │ │ ├── arrow_down.svg │ │ ├── burger.svg │ │ ├── copy-icon.svg │ │ ├── copy-successful-icon.svg │ │ ├── footer-go-to-link.svg │ │ ├── go-to-top-icon.svg │ │ ├── homepage.svg │ │ ├── logo-icon.svg │ │ ├── nav-icons │ │ │ ├── abstract-class-kotlin.svg │ │ │ ├── abstract-class.svg │ │ │ ├── annotation-kotlin.svg │ │ │ ├── annotation.svg │ │ │ ├── class-kotlin.svg │ │ │ ├── class.svg │ │ │ ├── enum-kotlin.svg │ │ │ ├── enum.svg │ │ │ ├── exception-class.svg │ │ │ ├── field-value.svg │ │ │ ├── field-variable.svg │ │ │ ├── function.svg │ │ │ ├── interface-kotlin.svg │ │ │ ├── interface.svg │ │ │ ├── object.svg │ │ │ └── typealias-kotlin.svg │ │ └── theme-toggle.svg │ │ ├── index.html │ │ ├── internals │ │ ├── index.html │ │ ├── inkapplications.shade.internals │ │ │ ├── -cached-property │ │ │ │ ├── -cached-property.html │ │ │ │ ├── factory.html │ │ │ │ ├── get-value.html │ │ │ │ ├── index.html │ │ │ │ └── key-property.html │ │ │ ├── -dummy-configuration-container │ │ │ │ ├── auth-token.html │ │ │ │ ├── hostname.html │ │ │ │ ├── index.html │ │ │ │ ├── security-strategy.html │ │ │ │ ├── set-auth-token.html │ │ │ │ ├── set-hostname.html │ │ │ │ └── set-security-strategy.html │ │ │ ├── -hue-http-client │ │ │ │ ├── index.html │ │ │ │ ├── send-request.html │ │ │ │ └── send-v1-request.html │ │ │ ├── -hue-stub-client │ │ │ │ ├── index.html │ │ │ │ ├── send-request.html │ │ │ │ └── send-v1-request.html │ │ │ ├── -internals-module │ │ │ │ ├── -internals-module.html │ │ │ │ ├── configuration-container.html │ │ │ │ ├── hue-http-client.html │ │ │ │ ├── index.html │ │ │ │ ├── json.html │ │ │ │ └── platform-module.html │ │ │ ├── -platform-module │ │ │ │ ├── -platform-module.html │ │ │ │ ├── apply-platform-configuration.html │ │ │ │ ├── create-engine.html │ │ │ │ ├── index.html │ │ │ │ └── sse-client.html │ │ │ ├── -sse-client │ │ │ │ ├── index.html │ │ │ │ └── open-sse.html │ │ │ ├── delete-data.html │ │ │ ├── get-data.html │ │ │ ├── index.html │ │ │ ├── post-data.html │ │ │ └── put-data.html │ │ └── navigation.html │ │ ├── lights │ │ ├── index.html │ │ ├── inkapplications.shade.lights.events │ │ │ ├── -color-info-event │ │ │ │ ├── -color-info-event.html │ │ │ │ ├── color.html │ │ │ │ └── index.html │ │ │ ├── -color-temperature-info-event │ │ │ │ ├── -color-temperature-info-event.html │ │ │ │ ├── index.html │ │ │ │ ├── temperature.html │ │ │ │ └── valid.html │ │ │ ├── -dimming-info-event │ │ │ │ ├── -dimming-info-event.html │ │ │ │ ├── brightness.html │ │ │ │ └── index.html │ │ │ ├── -light-event │ │ │ │ ├── -light-event.html │ │ │ │ ├── color-info.html │ │ │ │ ├── color-temperature-info.html │ │ │ │ ├── dimming-info.html │ │ │ │ ├── id.html │ │ │ │ ├── index.html │ │ │ │ ├── owner.html │ │ │ │ └── power-info.html │ │ │ └── index.html │ │ ├── inkapplications.shade.lights.parameters │ │ │ ├── -alert-parameters │ │ │ │ ├── -alert-parameters.html │ │ │ │ ├── action.html │ │ │ │ └── index.html │ │ │ ├── -color-parameters │ │ │ │ ├── -color-parameters.html │ │ │ │ ├── color.html │ │ │ │ └── index.html │ │ │ ├── -color-temperature-delta-parameters │ │ │ │ ├── -color-temperature-delta-parameters.html │ │ │ │ ├── action.html │ │ │ │ ├── index.html │ │ │ │ └── temperature-delta.html │ │ │ ├── -color-temperature-parameters │ │ │ │ ├── -color-temperature-parameters.html │ │ │ │ ├── index.html │ │ │ │ └── temperature.html │ │ │ ├── -delta-action │ │ │ │ ├── -companion │ │ │ │ │ ├── -down.html │ │ │ │ │ ├── -stop.html │ │ │ │ │ ├── -up.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── value-of.html │ │ │ │ │ └── values.html │ │ │ │ ├── -delta-action.html │ │ │ │ ├── index.html │ │ │ │ ├── key.html │ │ │ │ └── to-string.html │ │ │ ├── -dimming-delta-parameters │ │ │ │ ├── -dimming-delta-parameters.html │ │ │ │ ├── action.html │ │ │ │ ├── brightness-delta.html │ │ │ │ └── index.html │ │ │ ├── -dimming-parameters │ │ │ │ ├── -dimming-parameters.html │ │ │ │ ├── brightness.html │ │ │ │ └── index.html │ │ │ ├── -dynamics-parameters │ │ │ │ ├── -dynamics-parameters.html │ │ │ │ ├── duration.html │ │ │ │ ├── index.html │ │ │ │ └── speed.html │ │ │ ├── -effects-parameters │ │ │ │ ├── -effects-parameters.html │ │ │ │ ├── effect.html │ │ │ │ └── index.html │ │ │ ├── -gradient-parameters │ │ │ │ ├── -gradient-parameters.html │ │ │ │ ├── index.html │ │ │ │ └── points.html │ │ │ ├── -light-update-parameters │ │ │ │ ├── -light-update-parameters.html │ │ │ │ ├── alert.html │ │ │ │ ├── color-temperature-delta.html │ │ │ │ ├── color-temperature.html │ │ │ │ ├── color.html │ │ │ │ ├── dimming-delta.html │ │ │ │ ├── dimming.html │ │ │ │ ├── dynamics.html │ │ │ │ ├── effects.html │ │ │ │ ├── gradient.html │ │ │ │ ├── index.html │ │ │ │ ├── power.html │ │ │ │ └── timed-effects.html │ │ │ ├── -timed-effects-parameters │ │ │ │ ├── -timed-effects-parameters.html │ │ │ │ ├── duration.html │ │ │ │ ├── effect.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── inkapplications.shade.lights.structures │ │ │ ├── -alert-effect-type │ │ │ │ ├── -alert-effect-type.html │ │ │ │ ├── -companion │ │ │ │ │ ├── -breathe.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── value-of.html │ │ │ │ │ └── values.html │ │ │ │ ├── index.html │ │ │ │ ├── key.html │ │ │ │ └── to-string.html │ │ │ ├── -alert-info │ │ │ │ ├── -alert-info.html │ │ │ │ ├── action-values.html │ │ │ │ └── index.html │ │ │ ├── -color-info │ │ │ │ ├── -color-info.html │ │ │ │ ├── color.html │ │ │ │ ├── gamut-type.html │ │ │ │ ├── gamut.html │ │ │ │ └── index.html │ │ │ ├── -color-palette │ │ │ │ ├── -color-palette.html │ │ │ │ ├── color.html │ │ │ │ ├── dimming.html │ │ │ │ └── index.html │ │ │ ├── -color-temperature-info │ │ │ │ ├── -color-temperature-info.html │ │ │ │ ├── index.html │ │ │ │ ├── range.html │ │ │ │ ├── temperature.html │ │ │ │ └── valid.html │ │ │ ├── -color-temperature-palette │ │ │ │ ├── -color-temperature-palette.html │ │ │ │ ├── color-temperature.html │ │ │ │ ├── dimming.html │ │ │ │ └── index.html │ │ │ ├── -color-temperature-range │ │ │ │ ├── -color-temperature-range.html │ │ │ │ ├── contains.html │ │ │ │ ├── coolest.html │ │ │ │ ├── index.html │ │ │ │ ├── kelvin-range.html │ │ │ │ ├── mired-range.html │ │ │ │ ├── to-string.html │ │ │ │ └── warmest.html │ │ │ ├── -color-temperature-value │ │ │ │ ├── -color-temperature-value.html │ │ │ │ ├── index.html │ │ │ │ └── temperature.html │ │ │ ├── -color-value │ │ │ │ ├── -color-value.html │ │ │ │ ├── color.html │ │ │ │ └── index.html │ │ │ ├── -dimming-info │ │ │ │ ├── -dimming-info.html │ │ │ │ ├── brightness.html │ │ │ │ ├── index.html │ │ │ │ └── minimum.html │ │ │ ├── -dimming-value │ │ │ │ ├── -dimming-value.html │ │ │ │ ├── brightness.html │ │ │ │ └── index.html │ │ │ ├── -dynamics-status │ │ │ │ ├── -companion │ │ │ │ │ ├── -dynamic-palette.html │ │ │ │ │ ├── -none.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── value-of.html │ │ │ │ │ └── values.html │ │ │ │ ├── -dynamics-status.html │ │ │ │ ├── index.html │ │ │ │ ├── key.html │ │ │ │ └── to-string.html │ │ │ ├── -gamut-type │ │ │ │ ├── -companion │ │ │ │ │ ├── -a.html │ │ │ │ │ ├── -b.html │ │ │ │ │ ├── -c.html │ │ │ │ │ ├── -other.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── value-of.html │ │ │ │ │ └── values.html │ │ │ │ ├── -gamut-type.html │ │ │ │ ├── index.html │ │ │ │ ├── key.html │ │ │ │ └── to-string.html │ │ │ ├── -gamut │ │ │ │ ├── -gamut.html │ │ │ │ ├── blue.html │ │ │ │ ├── green.html │ │ │ │ ├── index.html │ │ │ │ ├── red.html │ │ │ │ └── to-color-space.html │ │ │ ├── -gradient-color-info │ │ │ │ ├── -gradient-color-info.html │ │ │ │ ├── color.html │ │ │ │ └── index.html │ │ │ ├── -gradient-mode │ │ │ │ ├── -companion │ │ │ │ │ ├── -interpolated-palette-mirrored.html │ │ │ │ │ ├── -interpolated-palette.html │ │ │ │ │ ├── -random-pixelated.html │ │ │ │ │ └── index.html │ │ │ │ ├── -gradient-mode.html │ │ │ │ ├── index.html │ │ │ │ └── key.html │ │ │ ├── -gradient-point │ │ │ │ ├── -gradient-point.html │ │ │ │ ├── color-info.html │ │ │ │ ├── color-value.html │ │ │ │ └── index.html │ │ │ ├── -gradient-value │ │ │ │ ├── -gradient-value.html │ │ │ │ ├── index.html │ │ │ │ ├── mode.html │ │ │ │ └── points.html │ │ │ ├── -gradient │ │ │ │ ├── -gradient.html │ │ │ │ ├── index.html │ │ │ │ ├── points-capable.html │ │ │ │ └── points.html │ │ │ ├── -light-dynamics │ │ │ │ ├── -light-dynamics.html │ │ │ │ ├── index.html │ │ │ │ ├── speed-valid.html │ │ │ │ ├── speed.html │ │ │ │ ├── status-values.html │ │ │ │ └── status.html │ │ │ ├── -light-effect │ │ │ │ ├── -companion │ │ │ │ │ ├── -candle.html │ │ │ │ │ ├── -fire.html │ │ │ │ │ ├── -none.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── value-of.html │ │ │ │ │ └── values.html │ │ │ │ ├── -light-effect.html │ │ │ │ ├── index.html │ │ │ │ ├── key.html │ │ │ │ └── to-string.html │ │ │ ├── -light-mode │ │ │ │ ├── -companion │ │ │ │ │ ├── -normal.html │ │ │ │ │ ├── -streaming.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── value-of.html │ │ │ │ │ └── values.html │ │ │ │ ├── -light-mode.html │ │ │ │ ├── index.html │ │ │ │ ├── key.html │ │ │ │ └── to-string.html │ │ │ ├── -light-powerup │ │ │ │ ├── -custom │ │ │ │ │ ├── -custom.html │ │ │ │ │ ├── color-state.html │ │ │ │ │ ├── configured.html │ │ │ │ │ ├── dimming-state.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── power-state.html │ │ │ │ ├── -last-on-state │ │ │ │ │ ├── -last-on-state.html │ │ │ │ │ ├── configured.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── power-state.html │ │ │ │ ├── -powerfail │ │ │ │ │ ├── -powerfail.html │ │ │ │ │ ├── configured.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── power-state.html │ │ │ │ ├── -safety │ │ │ │ │ ├── -safety.html │ │ │ │ │ ├── configured.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── power-state.html │ │ │ │ ├── configured.html │ │ │ │ ├── index.html │ │ │ │ └── power-state.html │ │ │ ├── -light-signal-status │ │ │ │ ├── -light-signal-status.html │ │ │ │ ├── estimated-end.html │ │ │ │ ├── index.html │ │ │ │ └── signal.html │ │ │ ├── -light-signal │ │ │ │ ├── -companion │ │ │ │ │ ├── -no-signal.html │ │ │ │ │ ├── -on-off.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── value-of.html │ │ │ │ │ └── values.html │ │ │ │ ├── -light-signal.html │ │ │ │ ├── index.html │ │ │ │ ├── key.html │ │ │ │ └── to-string.html │ │ │ ├── -light-signaling │ │ │ │ ├── -light-signaling.html │ │ │ │ ├── index.html │ │ │ │ └── status.html │ │ │ ├── -light │ │ │ │ ├── -light.html │ │ │ │ ├── alert-info.html │ │ │ │ ├── color-info.html │ │ │ │ ├── color-temperature-info.html │ │ │ │ ├── dimming-info.html │ │ │ │ ├── dynamics.html │ │ │ │ ├── effects.html │ │ │ │ ├── gradient.html │ │ │ │ ├── id.html │ │ │ │ ├── index.html │ │ │ │ ├── mode.html │ │ │ │ ├── owner.html │ │ │ │ ├── power-info.html │ │ │ │ ├── powerup.html │ │ │ │ ├── signaling.html │ │ │ │ ├── timed-effects.html │ │ │ │ └── v1-id.html │ │ │ ├── -lighting-effect-info │ │ │ │ ├── -lighting-effect-info.html │ │ │ │ ├── index.html │ │ │ │ ├── status.html │ │ │ │ └── values.html │ │ │ ├── -powerup-color-state │ │ │ │ ├── -color-temperature │ │ │ │ │ ├── -color-temperature.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── temperature-value.html │ │ │ │ ├── -color │ │ │ │ │ ├── -color.html │ │ │ │ │ ├── color-value.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── temperature-value.html │ │ │ │ ├── -previous │ │ │ │ │ ├── -previous.html │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ ├── -powerup-dimming-state │ │ │ │ ├── -previous │ │ │ │ │ ├── -previous.html │ │ │ │ │ └── index.html │ │ │ │ ├── -static-brightness │ │ │ │ │ ├── -static-brightness.html │ │ │ │ │ ├── dimming-value.html │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ ├── -powerup-power-state │ │ │ │ ├── -previous │ │ │ │ │ ├── -previous.html │ │ │ │ │ └── index.html │ │ │ │ ├── -static-power │ │ │ │ │ ├── -static-power.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── power-value.html │ │ │ │ ├── -toggle │ │ │ │ │ ├── -toggle.html │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ ├── -standard-temperatures │ │ │ │ ├── -a.html │ │ │ │ ├── -b.html │ │ │ │ ├── -c.html │ │ │ │ ├── -d50.html │ │ │ │ ├── -d55.html │ │ │ │ ├── -d65.html │ │ │ │ ├── -d75.html │ │ │ │ ├── -e.html │ │ │ │ ├── -f1.html │ │ │ │ ├── -f10.html │ │ │ │ ├── -f11.html │ │ │ │ ├── -f12.html │ │ │ │ ├── -f2.html │ │ │ │ ├── -f3.html │ │ │ │ ├── -f4.html │ │ │ │ ├── -f5.html │ │ │ │ ├── -f6.html │ │ │ │ ├── -f7.html │ │ │ │ ├── -f8.html │ │ │ │ ├── -f9.html │ │ │ │ └── index.html │ │ │ ├── -timed-light-effect │ │ │ │ ├── -companion │ │ │ │ │ ├── -none.html │ │ │ │ │ ├── -sunrise.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── value-of.html │ │ │ │ │ └── values.html │ │ │ │ ├── -timed-light-effect.html │ │ │ │ ├── index.html │ │ │ │ ├── key.html │ │ │ │ └── to-string.html │ │ │ ├── -timed-lighting-effect-info │ │ │ │ ├── -timed-lighting-effect-info.html │ │ │ │ ├── index.html │ │ │ │ ├── status.html │ │ │ │ └── values.html │ │ │ └── index.html │ │ ├── inkapplications.shade.lights │ │ │ ├── -light-controls │ │ │ │ ├── get-light.html │ │ │ │ ├── index.html │ │ │ │ ├── list-lights.html │ │ │ │ └── update-light.html │ │ │ ├── -shade-lights-module │ │ │ │ ├── -shade-lights-module.html │ │ │ │ ├── index.html │ │ │ │ └── lights.html │ │ │ └── index.html │ │ └── navigation.html │ │ ├── navigation.html │ │ ├── package-list │ │ ├── resources │ │ ├── index.html │ │ ├── inkapplications.shade.resources.structures │ │ │ ├── -resource │ │ │ │ ├── -resource.html │ │ │ │ ├── id.html │ │ │ │ ├── index.html │ │ │ │ ├── type.html │ │ │ │ └── v1-id.html │ │ │ └── index.html │ │ ├── inkapplications.shade.resources │ │ │ ├── -resource-controls │ │ │ │ ├── index.html │ │ │ │ └── list-resources.html │ │ │ ├── -shade-resources-module │ │ │ │ ├── -shade-resources-module.html │ │ │ │ ├── index.html │ │ │ │ └── resources.html │ │ │ └── index.html │ │ └── navigation.html │ │ ├── rooms │ │ ├── index.html │ │ ├── inkapplications.shade.rooms.parameters │ │ │ ├── -room-create-parameters │ │ │ │ ├── -room-create-parameters.html │ │ │ │ ├── children.html │ │ │ │ ├── index.html │ │ │ │ └── metadata.html │ │ │ ├── -room-update-parameters │ │ │ │ ├── -room-update-parameters.html │ │ │ │ ├── children.html │ │ │ │ ├── index.html │ │ │ │ └── metadata.html │ │ │ └── index.html │ │ ├── inkapplications.shade.rooms.structures │ │ │ ├── -room │ │ │ │ ├── -room.html │ │ │ │ ├── children.html │ │ │ │ ├── id.html │ │ │ │ ├── index.html │ │ │ │ ├── metadata.html │ │ │ │ └── services.html │ │ │ └── index.html │ │ ├── inkapplications.shade.rooms │ │ │ ├── -room-controls │ │ │ │ ├── create-room.html │ │ │ │ ├── delete-room.html │ │ │ │ ├── get-room.html │ │ │ │ ├── index.html │ │ │ │ ├── list-rooms.html │ │ │ │ └── update-room.html │ │ │ ├── -shade-rooms-module │ │ │ │ ├── -shade-rooms-module.html │ │ │ │ ├── index.html │ │ │ │ └── rooms.html │ │ │ └── index.html │ │ └── navigation.html │ │ ├── scenes │ │ ├── index.html │ │ ├── inkapplications.shade.scenes.parameters │ │ │ ├── -scene-create-parameters │ │ │ │ ├── -scene-create-parameters.html │ │ │ │ ├── actions.html │ │ │ │ ├── auto-dynamic.html │ │ │ │ ├── group.html │ │ │ │ ├── index.html │ │ │ │ ├── metadata.html │ │ │ │ ├── palette.html │ │ │ │ └── speed.html │ │ │ ├── -scene-update-parameters │ │ │ │ ├── -scene-update-parameters.html │ │ │ │ ├── actions.html │ │ │ │ ├── auto-dynamic.html │ │ │ │ ├── index.html │ │ │ │ ├── metadata.html │ │ │ │ ├── palette.html │ │ │ │ ├── recall.html │ │ │ │ └── speed.html │ │ │ └── index.html │ │ ├── inkapplications.shade.scenes.structures │ │ │ ├── -scene-action-reference │ │ │ │ ├── -scene-action-reference.html │ │ │ │ ├── action.html │ │ │ │ ├── index.html │ │ │ │ └── target.html │ │ │ ├── -scene-action │ │ │ │ ├── -scene-action.html │ │ │ │ ├── color-temperature-value.html │ │ │ │ ├── color-value.html │ │ │ │ ├── dimming-value.html │ │ │ │ ├── dynamics-duration.html │ │ │ │ ├── effect.html │ │ │ │ ├── gradient.html │ │ │ │ ├── index.html │ │ │ │ └── power-value.html │ │ │ ├── -scene-metadata │ │ │ │ ├── -scene-metadata.html │ │ │ │ ├── image.html │ │ │ │ ├── index.html │ │ │ │ └── name.html │ │ │ ├── -scene-palette │ │ │ │ ├── -scene-palette.html │ │ │ │ ├── color-temperature.html │ │ │ │ ├── color.html │ │ │ │ ├── dimming.html │ │ │ │ └── index.html │ │ │ ├── -scene-recall-action │ │ │ │ ├── -companion │ │ │ │ │ ├── -active.html │ │ │ │ │ ├── -dynamic-palette.html │ │ │ │ │ ├── -static.html │ │ │ │ │ └── index.html │ │ │ │ ├── -scene-recall-action.html │ │ │ │ ├── index.html │ │ │ │ ├── key.html │ │ │ │ └── to-string.html │ │ │ ├── -scene-recall-status │ │ │ │ ├── -companion │ │ │ │ │ ├── -active.html │ │ │ │ │ ├── -dynamic-palette.html │ │ │ │ │ └── index.html │ │ │ │ ├── -scene-recall-status.html │ │ │ │ ├── index.html │ │ │ │ ├── key.html │ │ │ │ └── to-string.html │ │ │ ├── -scene-recall │ │ │ │ ├── -scene-recall.html │ │ │ │ ├── action.html │ │ │ │ ├── dimming.html │ │ │ │ ├── duration.html │ │ │ │ ├── index.html │ │ │ │ └── status.html │ │ │ ├── -scene │ │ │ │ ├── -scene.html │ │ │ │ ├── actions.html │ │ │ │ ├── auto-dynamic.html │ │ │ │ ├── group.html │ │ │ │ ├── id.html │ │ │ │ ├── index.html │ │ │ │ ├── metadata.html │ │ │ │ ├── palette.html │ │ │ │ ├── speed.html │ │ │ │ └── v1-id.html │ │ │ └── index.html │ │ ├── inkapplications.shade.scenes │ │ │ ├── -scene-controls │ │ │ │ ├── create-scene.html │ │ │ │ ├── delete-scene.html │ │ │ │ ├── get-scene.html │ │ │ │ ├── index.html │ │ │ │ ├── list-scenes.html │ │ │ │ └── update-scene.html │ │ │ ├── -shade-scenes-module │ │ │ │ ├── -shade-scenes-module.html │ │ │ │ ├── index.html │ │ │ │ └── scenes.html │ │ │ └── index.html │ │ └── navigation.html │ │ ├── scripts │ │ ├── clipboard.js │ │ ├── main.js │ │ ├── navigation-loader.js │ │ ├── pages.json │ │ ├── platform-content-handler.js │ │ ├── prism.js │ │ ├── sourceset_dependencies.js │ │ └── symbol-parameters-wrapper_deferred.js │ │ ├── serialization │ │ ├── index.html │ │ ├── inkapplications.shade.serialization │ │ │ ├── -delegate-serializer │ │ │ │ ├── -delegate-serializer.html │ │ │ │ ├── descriptor.html │ │ │ │ ├── deserialize.html │ │ │ │ ├── index.html │ │ │ │ └── serialize.html │ │ │ ├── -explicit-mired-serializer │ │ │ │ └── index.html │ │ │ ├── -fractional-percentage-serializer │ │ │ │ └── index.html │ │ │ ├── -hue-error │ │ │ │ ├── -hue-error.html │ │ │ │ ├── description.html │ │ │ │ └── index.html │ │ │ ├── -hue-response │ │ │ │ ├── -error │ │ │ │ │ ├── -error.html │ │ │ │ │ ├── errors.html │ │ │ │ │ └── index.html │ │ │ │ ├── -success │ │ │ │ │ ├── -success.html │ │ │ │ │ ├── data.html │ │ │ │ │ ├── errors.html │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ ├── -millisecond-duration-serializer │ │ │ │ └── index.html │ │ │ ├── -mired-serializer │ │ │ │ └── index.html │ │ │ ├── -v1-hue-error │ │ │ │ ├── -error-codes │ │ │ │ │ ├── -b-a-c-k-u-p_-i-n-v-a-l-i-d_-s-t-a-t-e.html │ │ │ │ │ ├── -b-a-c-k-u-p_-s-o-u-r-c-e_-f-a-c-t-o-r-y_-n-e-w.html │ │ │ │ │ ├── -b-a-c-k-u-p_-s-o-u-r-c-e_-m-o-d-e-l_-i-n-v-a-l-i-d.html │ │ │ │ │ ├── -d-h-c-p_-d-i-s-a-b-l-e-d.html │ │ │ │ │ ├── -g-r-o-u-p_-l-i-g-h-t_-a-l-r-e-a-d-y_-i-n_-r-o-o-m.html │ │ │ │ │ ├── -g-r-o-u-p_-l-i-s-t_-f-u-l-l.html │ │ │ │ │ ├── -g-r-o-u-p_-u-p-d-a-t-e_-n-o-t_-a-l-l-o-w-e-d.html │ │ │ │ │ ├── -l-i-g-h-t_-p-a-r-a-m-e-t-e-r_-n-o-t_-m-o-d-i-f-i-a-b-l-e.html │ │ │ │ │ ├── -l-i-g-h-t_-r-a-d-i-o_-f-u-l-l.html │ │ │ │ │ ├── -l-i-n-k_-r-e-q-u-i-r-e-d.html │ │ │ │ │ ├── -r-u-l-e_-a-c-t-i-o-n_-e-r-r-o-r.html │ │ │ │ │ ├── -r-u-l-e_-c-o-n-d-i-t-i-o-n_-n-o-t_-a-l-l-o-w-e-d.html │ │ │ │ │ ├── -r-u-l-e_-l-i-s-t_-f-u-l-l.html │ │ │ │ │ ├── -r-u-l-e_-n-o-t_-a-c-t-i-v-a-t-e-d.html │ │ │ │ │ ├── -s-c-e-n-e_-g-r-o-u-p_-e-m-p-t-y.html │ │ │ │ │ ├── -s-c-e-n-e_-l-i-s-t_-f-u-l-l.html │ │ │ │ │ ├── -s-c-e-n-e_-l-o-c-k-e-d.html │ │ │ │ │ ├── -s-c-h-e-d-u-l-e_-c-o-m-m-a-n-d_-e-r-r-o-r.html │ │ │ │ │ ├── -s-c-h-e-d-u-l-e_-f-u-l-l.html │ │ │ │ │ ├── -s-c-h-e-d-u-l-e_-t-a-g_-i-n-v-a-l-i-d.html │ │ │ │ │ ├── -s-c-h-e-d-u-l-e_-t-i-m-e-z-o-n-e_-i-n-v-a-l-i-d.html │ │ │ │ │ ├── -s-c-h-e-d-u-l-e_-t-i-m-e_-a-m-b-i-g-u-o-u-s.html │ │ │ │ │ ├── -s-c-h-e-d-u-l-e_-t-i-m-e_-p-a-s-t.html │ │ │ │ │ ├── -s-e-n-s-o-r_-l-i-s-t_-f-u-l-l.html │ │ │ │ │ ├── -s-e-n-s-o-r_-n-o-t_-a-l-l-o-w-e-d.html │ │ │ │ │ ├── -s-e-n-s-o-r_-r-a-d-i-o_-f-u-l-l.html │ │ │ │ │ ├── -u-p-d-a-t-e_-i-n-v-a-l-i-d_-s-t-a-t-e.html │ │ │ │ │ └── index.html │ │ │ │ ├── -v1-hue-error.html │ │ │ │ ├── address.html │ │ │ │ ├── description.html │ │ │ │ ├── index.html │ │ │ │ └── type.html │ │ │ ├── -v1-hue-response │ │ │ │ ├── -error │ │ │ │ │ ├── -error.html │ │ │ │ │ ├── error.html │ │ │ │ │ └── index.html │ │ │ │ ├── -success │ │ │ │ │ ├── -success.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── success.html │ │ │ │ └── index.html │ │ │ ├── -whole-percentage-serializer │ │ │ │ └── index.html │ │ │ └── index.html │ │ └── navigation.html │ │ ├── structures │ │ ├── index.html │ │ ├── inkapplications.shade.structures.parameters │ │ │ ├── -power-parameters │ │ │ │ ├── -power-parameters.html │ │ │ │ ├── index.html │ │ │ │ └── on.html │ │ │ └── index.html │ │ ├── inkapplications.shade.structures │ │ │ ├── -api-error │ │ │ │ ├── -api-error.html │ │ │ │ └── index.html │ │ │ ├── -api-status-error │ │ │ │ ├── -api-status-error.html │ │ │ │ ├── code.html │ │ │ │ └── index.html │ │ │ ├── -auth-token │ │ │ │ ├── -auth-token.html │ │ │ │ ├── application-key.html │ │ │ │ ├── client-key.html │ │ │ │ ├── index.html │ │ │ │ └── to-string.html │ │ │ ├── -authorization-timeout-exception │ │ │ │ └── index.html │ │ │ ├── -hostname-not-set-exception │ │ │ │ └── index.html │ │ │ ├── -hue-configuration-container │ │ │ │ ├── auth-token.html │ │ │ │ ├── hostname.html │ │ │ │ ├── index.html │ │ │ │ ├── security-strategy.html │ │ │ │ ├── set-auth-token.html │ │ │ │ ├── set-hostname.html │ │ │ │ └── set-security-strategy.html │ │ │ ├── -in-memory-configuration-container │ │ │ │ ├── -in-memory-configuration-container.html │ │ │ │ ├── auth-token.html │ │ │ │ ├── hostname.html │ │ │ │ ├── index.html │ │ │ │ ├── security-strategy.html │ │ │ │ ├── set-auth-token.html │ │ │ │ ├── set-hostname.html │ │ │ │ └── set-security-strategy.html │ │ │ ├── -internal-error-exception │ │ │ │ └── index.html │ │ │ ├── -invalid-configuration-exception │ │ │ │ ├── -invalid-configuration-exception.html │ │ │ │ └── index.html │ │ │ ├── -network-exception │ │ │ │ ├── -network-exception.html │ │ │ │ └── index.html │ │ │ ├── -power-info │ │ │ │ ├── -power-info.html │ │ │ │ ├── index.html │ │ │ │ └── on.html │ │ │ ├── -power-value │ │ │ │ ├── -power-value.html │ │ │ │ ├── index.html │ │ │ │ └── on.html │ │ │ ├── -properties-file-configuration │ │ │ │ ├── -properties-file-configuration.html │ │ │ │ ├── auth-token.html │ │ │ │ ├── hostname.html │ │ │ │ ├── index.html │ │ │ │ ├── security-strategy.html │ │ │ │ ├── set-auth-token.html │ │ │ │ ├── set-hostname.html │ │ │ │ └── set-security-strategy.html │ │ │ ├── -resource-id │ │ │ │ ├── -resource-id.html │ │ │ │ ├── index.html │ │ │ │ ├── to-string.html │ │ │ │ └── value.html │ │ │ ├── -resource-reference │ │ │ │ ├── -resource-reference.html │ │ │ │ ├── id.html │ │ │ │ ├── index.html │ │ │ │ ├── to-string.html │ │ │ │ └── type.html │ │ │ ├── -resource-type │ │ │ │ ├── -companion │ │ │ │ │ ├── -auth-v1.html │ │ │ │ │ ├── -behavior-instance.html │ │ │ │ │ ├── -behavior-script.html │ │ │ │ │ ├── -bridge-home.html │ │ │ │ │ ├── -bridge.html │ │ │ │ │ ├── -button.html │ │ │ │ │ ├── -device-power.html │ │ │ │ │ ├── -device.html │ │ │ │ │ ├── -entertainment-configuration.html │ │ │ │ │ ├── -entertainment.html │ │ │ │ │ ├── -geofence-client.html │ │ │ │ │ ├── -geofence.html │ │ │ │ │ ├── -geolocation.html │ │ │ │ │ ├── -grouped-light.html │ │ │ │ │ ├── -homekit.html │ │ │ │ │ ├── -light-level.html │ │ │ │ │ ├── -light.html │ │ │ │ │ ├── -motion.html │ │ │ │ │ ├── -public-image.html │ │ │ │ │ ├── -room.html │ │ │ │ │ ├── -scene.html │ │ │ │ │ ├── -temperature.html │ │ │ │ │ ├── -zgp-connectivity.html │ │ │ │ │ ├── -zigbee-bridge-connectivity.html │ │ │ │ │ ├── -zigbee-connectivity.html │ │ │ │ │ ├── -zone.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── value-of.html │ │ │ │ │ └── values.html │ │ │ │ ├── -resource-type.html │ │ │ │ ├── index.html │ │ │ │ ├── key.html │ │ │ │ └── to-string.html │ │ │ ├── -security-strategy │ │ │ │ ├── -custom-ca │ │ │ │ │ ├── -custom-ca.html │ │ │ │ │ ├── certificate-pem.html │ │ │ │ │ ├── hostname.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── ip.html │ │ │ │ ├── -hue-ca │ │ │ │ │ ├── -hue-ca.html │ │ │ │ │ └── index.html │ │ │ │ ├── -insecure │ │ │ │ │ ├── -insecure.html │ │ │ │ │ ├── hostname.html │ │ │ │ │ └── index.html │ │ │ │ ├── -platform-trust │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ ├── -segment-archetype │ │ │ │ ├── -companion │ │ │ │ │ ├── -attic.html │ │ │ │ │ ├── -balcony.html │ │ │ │ │ ├── -barbecue.html │ │ │ │ │ ├── -bathroom.html │ │ │ │ │ ├── -bedroom.html │ │ │ │ │ ├── -carport.html │ │ │ │ │ ├── -closet.html │ │ │ │ │ ├── -computer.html │ │ │ │ │ ├── -dining.html │ │ │ │ │ ├── -downstairs.html │ │ │ │ │ ├── -driveway.html │ │ │ │ │ ├── -front-door.html │ │ │ │ │ ├── -garage.html │ │ │ │ │ ├── -garden.html │ │ │ │ │ ├── -guest-room.html │ │ │ │ │ ├── -gym.html │ │ │ │ │ ├── -hallway.html │ │ │ │ │ ├── -home.html │ │ │ │ │ ├── -kids-bedroom.html │ │ │ │ │ ├── -kitchen.html │ │ │ │ │ ├── -laundry-room.html │ │ │ │ │ ├── -living-room.html │ │ │ │ │ ├── -lounge.html │ │ │ │ │ ├── -man-cave.html │ │ │ │ │ ├── -music.html │ │ │ │ │ ├── -nursery.html │ │ │ │ │ ├── -office.html │ │ │ │ │ ├── -other.html │ │ │ │ │ ├── -pool.html │ │ │ │ │ ├── -porch.html │ │ │ │ │ ├── -reading.html │ │ │ │ │ ├── -recreation.html │ │ │ │ │ ├── -staircase.html │ │ │ │ │ ├── -storage.html │ │ │ │ │ ├── -studio.html │ │ │ │ │ ├── -terrace.html │ │ │ │ │ ├── -toilet.html │ │ │ │ │ ├── -top-floor.html │ │ │ │ │ ├── -tv.html │ │ │ │ │ ├── -upstairs.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── value-of.html │ │ │ │ │ └── values.html │ │ │ │ ├── -segment-archetype.html │ │ │ │ ├── index.html │ │ │ │ ├── key.html │ │ │ │ └── to-string.html │ │ │ ├── -segment-metadata-update │ │ │ │ ├── -segment-metadata-update.html │ │ │ │ ├── archetype.html │ │ │ │ ├── index.html │ │ │ │ └── name.html │ │ │ ├── -segment-metadata │ │ │ │ ├── -segment-metadata.html │ │ │ │ ├── archetype.html │ │ │ │ ├── index.html │ │ │ │ └── name.html │ │ │ ├── -serialization-error │ │ │ │ ├── -serialization-error.html │ │ │ │ └── index.html │ │ │ ├── -shade-exception │ │ │ │ └── index.html │ │ │ ├── -unauthorized-exception │ │ │ │ ├── -unauthorized-exception.html │ │ │ │ └── index.html │ │ │ ├── -undocumented-api │ │ │ │ └── index.html │ │ │ ├── -unexpected-state-exception │ │ │ │ ├── -unexpected-state-exception.html │ │ │ │ └── index.html │ │ │ ├── -unknown-event │ │ │ │ ├── -unknown-event.html │ │ │ │ ├── index.html │ │ │ │ ├── json.html │ │ │ │ └── type.html │ │ │ ├── -user-error │ │ │ │ └── index.html │ │ │ ├── -version-string │ │ │ │ ├── -version-string.html │ │ │ │ ├── full.html │ │ │ │ ├── index.html │ │ │ │ ├── major.html │ │ │ │ ├── minor.html │ │ │ │ ├── patch.html │ │ │ │ └── to-string.html │ │ │ └── index.html │ │ └── navigation.html │ │ ├── styles │ │ ├── font-jb-sans-auto.css │ │ ├── jetbrains-mono.css │ │ ├── logo-styles.css │ │ ├── main.css │ │ ├── prism.css │ │ └── style.css │ │ ├── ui-kit │ │ ├── assets │ │ │ ├── abstract-class-kotlin.svg │ │ │ ├── abstract-class.svg │ │ │ ├── annotation-kotlin.svg │ │ │ ├── annotation.svg │ │ │ ├── arrow-down.svg │ │ │ ├── burger.svg │ │ │ ├── checkbox-off.svg │ │ │ ├── checkbox-on.svg │ │ │ ├── class-kotlin.svg │ │ │ ├── class.svg │ │ │ ├── cross.svg │ │ │ ├── enum-kotlin.svg │ │ │ ├── enum.svg │ │ │ ├── exception-class.svg │ │ │ ├── field-value.svg │ │ │ ├── field-variable.svg │ │ │ ├── filter.svg │ │ │ ├── function.svg │ │ │ ├── homepage.svg │ │ │ ├── interface-kotlin.svg │ │ │ ├── interface.svg │ │ │ ├── object.svg │ │ │ ├── placeholder.svg │ │ │ ├── theme-toggle.svg │ │ │ └── typealias-kotlin.svg │ │ ├── ui-kit.min.css │ │ └── ui-kit.min.js │ │ └── zones │ │ ├── index.html │ │ ├── inkapplications.shade.zones.parameters │ │ ├── -zone-create-parameters │ │ │ ├── -zone-create-parameters.html │ │ │ ├── children.html │ │ │ ├── index.html │ │ │ └── metadata.html │ │ ├── -zone-update-parameters │ │ │ ├── -zone-update-parameters.html │ │ │ ├── children.html │ │ │ ├── index.html │ │ │ └── metadata.html │ │ └── index.html │ │ ├── inkapplications.shade.zones.structures │ │ ├── -zone │ │ │ ├── -zone.html │ │ │ ├── children.html │ │ │ ├── id.html │ │ │ ├── index.html │ │ │ ├── metadata.html │ │ │ └── services.html │ │ └── index.html │ │ ├── inkapplications.shade.zones │ │ ├── -shade-zones-module │ │ │ ├── -shade-zones-module.html │ │ │ ├── index.html │ │ │ └── zones.html │ │ ├── -zone-controls │ │ │ ├── create-zone.html │ │ │ ├── delete-zone.html │ │ │ ├── get-zone.html │ │ │ ├── index.html │ │ │ ├── list-zones.html │ │ │ └── update-zone.html │ │ └── index.html │ │ └── navigation.html ├── sdk-initialization.html ├── sdk-overview.html └── svg │ ├── logo-full-dark.svg │ └── logo-full.svg ├── events ├── api │ └── events.api ├── build.gradle.kts └── src │ ├── commonMain │ └── kotlin │ │ └── inkapplications │ │ └── shade │ │ └── events │ │ ├── CompositeEventDeserializer.kt │ │ ├── EventSerializerContainer.kt │ │ ├── Events.kt │ │ └── EventsModule.kt │ └── jvmMain │ └── kotlin │ └── shade │ └── events │ ├── EventsModule.kt │ └── ShadeEvents.kt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── grouped-lights ├── api │ └── grouped-lights.api ├── build.gradle.kts └── src │ ├── commonMain │ └── kotlin │ │ └── inkapplications │ │ └── shade │ │ └── groupedlights │ │ ├── GroupedLightControls.kt │ │ ├── ShadeGroupedLights.kt │ │ ├── ShadeGroupedLightsModule.kt │ │ ├── events │ │ └── GroupedLightEvent.kt │ │ ├── parameters │ │ └── GroupedLightUpdateParameters.kt │ │ └── structures │ │ ├── GroupDimmingInfo.kt │ │ └── GroupedLight.kt │ └── jvmTest │ └── kotlin │ └── inkapplications │ └── shade │ └── groupedlights │ ├── GroupedLightSerializationTest.kt │ └── GroupedLightUpdateParametersSerializationTest.kt ├── internals ├── api │ └── internals.api ├── build.gradle.kts └── src │ ├── commonMain │ └── kotlin │ │ └── inkapplications │ │ └── shade │ │ └── internals │ │ ├── BaseUrl.kt │ │ ├── CachedProperty.kt │ │ ├── ConfigurableHttpClient.kt │ │ ├── DummyConfigurationContainer.kt │ │ ├── HueHttpClient.kt │ │ ├── HueStubClient.kt │ │ ├── InternalsModule.kt │ │ ├── PlatformModule.kt │ │ └── SseClient.kt │ ├── commonTest │ └── kotlin │ │ └── inkapplications │ │ └── shade │ │ └── internals │ │ └── CachedPropertyTest.kt │ ├── iosMain │ └── kotlin │ │ └── inkapplications │ │ └── shade │ │ └── internals │ │ └── PlatformModule.kt │ ├── jsMain │ └── kotlin │ │ └── inkapplications │ │ └── shade │ │ └── internals │ │ └── PlatformModule.kt │ ├── jvmMain │ └── kotlin │ │ └── inkapplications │ │ └── shade │ │ └── internals │ │ ├── OkHttpSseClient.kt │ │ └── PlatformModule.kt │ ├── nativeMain │ └── kotlin │ │ └── inkapplications │ │ └── shade │ │ └── internals │ │ └── PlatformModule.kt │ └── windowsMain │ └── kotlin │ └── inkapplications │ └── shade │ └── internals │ └── PlatformModule.kt ├── kotlin-js-store └── yarn.lock ├── lights ├── api │ └── lights.api ├── build.gradle.kts └── src │ ├── commonMain │ └── kotlin │ │ └── inkapplications │ │ └── shade │ │ └── lights │ │ ├── LightControls.kt │ │ ├── ShadeLights.kt │ │ ├── ShadeLightsModule.kt │ │ ├── events │ │ ├── ColorInfoEvent.kt │ │ ├── ColorTemperatureInfoEvent.kt │ │ ├── DimmingInfoEvent.kt │ │ └── LightEvent.kt │ │ ├── parameters │ │ ├── AlertParameters.kt │ │ ├── ColorParameters.kt │ │ ├── ColorTemperatureDeltaParameters.kt │ │ ├── ColorTemperatureParameters.kt │ │ ├── DeltaAction.kt │ │ ├── DimmingDeltaParameters.kt │ │ ├── DimmingParameters.kt │ │ ├── DynamicsParameters.kt │ │ ├── EffectsParameters.kt │ │ ├── GradientParameters.kt │ │ ├── LightUpdateParameters.kt │ │ └── TimedEffectsParameters.kt │ │ └── structures │ │ ├── AlertEffectType.kt │ │ ├── AlertInfo.kt │ │ ├── Chromaticity.kt │ │ ├── ColorInfo.kt │ │ ├── ColorPalette.kt │ │ ├── ColorTemperatureInfo.kt │ │ ├── ColorTemperaturePalette.kt │ │ ├── ColorTemperatureRange.kt │ │ ├── ColorTemperatureValue.kt │ │ ├── ColorValue.kt │ │ ├── DimmingInfo.kt │ │ ├── DimmingValue.kt │ │ ├── DynamicsStatus.kt │ │ ├── Gamut.kt │ │ ├── GamutType.kt │ │ ├── Gradient.kt │ │ ├── GradientMode.kt │ │ ├── GradientPoint.kt │ │ ├── GradientValue.kt │ │ ├── Light.kt │ │ ├── LightDynamics.kt │ │ ├── LightEffect.kt │ │ ├── LightMode.kt │ │ ├── LightPowerup.kt │ │ ├── LightSignal.kt │ │ ├── LightSignalStatus.kt │ │ ├── LightSignaling.kt │ │ ├── LightingEffectInfo.kt │ │ ├── PowerupColorState.kt │ │ ├── PowerupDimmingState.kt │ │ ├── PowerupPowerState.kt │ │ ├── StandardTemperatures.kt │ │ ├── TimedLightEffect.kt │ │ └── TimedLightingEffectInfo.kt │ └── jvmTest │ └── kotlin │ └── inkapplications │ └── shade │ └── lights │ ├── LightSerializationTest.kt │ └── LightUpdateParametersSerializationTest.kt ├── resources ├── api │ └── resources.api ├── build.gradle.kts └── src │ └── commonMain │ └── kotlin │ └── inkapplications │ └── shade │ └── resources │ ├── ResourceControls.kt │ ├── ShadeResources.kt │ ├── ShadeResourcesModule.kt │ └── structures │ └── Resource.kt ├── rooms ├── api │ └── rooms.api ├── build.gradle.kts └── src │ ├── commonMain │ └── kotlin │ │ └── inkapplications │ │ └── shade │ │ └── rooms │ │ ├── RoomControls.kt │ │ ├── ShadeRooms.kt │ │ ├── ShadeRoomsModule.kt │ │ ├── parameters │ │ ├── RoomCreateParameters.kt │ │ └── RoomUpdateParameters.kt │ │ └── structures │ │ └── Room.kt │ └── jvmTest │ └── kotlin │ └── inkapplications │ └── shade │ └── rooms │ ├── RoomCreateParametersSerializationTest.kt │ ├── RoomSerializationTest.kt │ └── RoomUpdateParametersSerializationTest.kt ├── scenes ├── api │ └── scenes.api ├── build.gradle.kts └── src │ ├── commonMain │ └── kotlin │ │ └── inkapplications │ │ └── shade │ │ └── scenes │ │ ├── SceneControls.kt │ │ ├── ShadeScenes.kt │ │ ├── ShadeScenesModule.kt │ │ ├── parameters │ │ ├── SceneCreateParameters.kt │ │ └── SceneUpdateParameters.kt │ │ └── structures │ │ ├── Scene.kt │ │ ├── SceneAction.kt │ │ ├── SceneActionReference.kt │ │ ├── SceneMetadata.kt │ │ ├── ScenePalette.kt │ │ ├── SceneRecall.kt │ │ ├── SceneRecallAction.kt │ │ └── SceneRecallStatus.kt │ └── jvmTest │ └── kotlin │ └── inkapplications │ └── shade │ └── scenes │ ├── parameters │ ├── SceneCreateSerializerTest.kt │ └── SceneUpdateSerializerTest.kt │ └── structures │ └── SceneSerializerTest.kt ├── serialization ├── api │ └── serialization.api ├── build.gradle.kts └── src │ └── commonMain │ └── kotlin │ └── inkapplications │ └── shade │ └── serialization │ ├── DelegateSerializer.kt │ ├── ExplicitMiredSerializer.kt │ ├── FractionalPercentageSerializer.kt │ ├── HueError.kt │ ├── HueResponse.kt │ ├── MillisecondDurationSerializer.kt │ ├── MiredSerializer.kt │ ├── V1HueError.kt │ ├── V1Response.kt │ └── WholePercentageSerializer.kt ├── settings.gradle.kts ├── shade-cli ├── structures ├── api │ └── structures.api ├── build.gradle.kts └── src │ ├── commonMain │ └── kotlin │ │ └── inkapplications │ │ └── shade │ │ └── structures │ │ ├── AuthToken.kt │ │ ├── HueConfigurationContainer.kt │ │ ├── InMemoryConfigurationContainer.kt │ │ ├── PowerInfo.kt │ │ ├── PowerValue.kt │ │ ├── ResourceId.kt │ │ ├── ResourceReference.kt │ │ ├── ResourceType.kt │ │ ├── SecurityStrategy.kt │ │ ├── SegmentArchetype.kt │ │ ├── SegmentMetadata.kt │ │ ├── SegmentMetadataUpdate.kt │ │ ├── ShadeExceptions.kt │ │ ├── UndocumentedApi.kt │ │ ├── UnknownEvent.kt │ │ ├── VersionString.kt │ │ └── parameters │ │ └── PowerParameters.kt │ ├── jvmMain │ └── kotlin │ │ └── inkapplications │ │ └── shade │ │ └── structures │ │ └── PropertiesFileConfiguration.kt │ └── jvmTest │ └── kotlin │ └── inkapplications │ └── shade │ └── structures │ └── VersionStringTest.kt └── zones ├── api └── zones.api ├── build.gradle.kts └── src ├── commonMain └── kotlin │ └── inkapplications │ └── shade │ └── zones │ ├── ShadeZones.kt │ ├── ShadeZonesModule.kt │ ├── ZoneControls.kt │ ├── parameters │ ├── ZoneCreateParameters.kt │ └── ZoneUpdateParameters.kt │ └── structures │ └── Zone.kt └── jvmTest └── kotlin └── inkapplications └── shade └── zones ├── ZoneCreateParametersSerializationTest.kt ├── ZoneSerializationTest.kt └── ZoneUpdateParametersSerializationTest.kt /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: ReneeVandervelde 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/api-bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/.github/ISSUE_TEMPLATE/api-bugs.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/cli-bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/.github/ISSUE_TEMPLATE/cli-bugs.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/device-bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/.github/ISSUE_TEMPLATE/device-bugs.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/pull_requests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/.github/workflows/pull_requests.yml -------------------------------------------------------------------------------- /.github/workflows/pushes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/.github/workflows/pushes.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/README.md -------------------------------------------------------------------------------- /auth/api/auth.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/auth/api/auth.api -------------------------------------------------------------------------------- /auth/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/auth/build.gradle.kts -------------------------------------------------------------------------------- /auth/src/commonMain/kotlin/inkapplications/shade/auth/AuthModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/auth/src/commonMain/kotlin/inkapplications/shade/auth/AuthModule.kt -------------------------------------------------------------------------------- /auth/src/commonMain/kotlin/inkapplications/shade/auth/BridgeAuth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/auth/src/commonMain/kotlin/inkapplications/shade/auth/BridgeAuth.kt -------------------------------------------------------------------------------- /auth/src/commonMain/kotlin/inkapplications/shade/auth/ShadeBridgeAuth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/auth/src/commonMain/kotlin/inkapplications/shade/auth/ShadeBridgeAuth.kt -------------------------------------------------------------------------------- /auth/src/commonMain/kotlin/inkapplications/shade/auth/structures/AppId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/auth/src/commonMain/kotlin/inkapplications/shade/auth/structures/AppId.kt -------------------------------------------------------------------------------- /auth/src/commonMain/kotlin/inkapplications/shade/auth/structures/AuthRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/auth/src/commonMain/kotlin/inkapplications/shade/auth/structures/AuthRequest.kt -------------------------------------------------------------------------------- /auth/src/jvmTest/kotlin/inkapplications/shade/auth/ShadeBridgeAuthTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/auth/src/jvmTest/kotlin/inkapplications/shade/auth/ShadeBridgeAuthTest.kt -------------------------------------------------------------------------------- /auth/src/jvmTest/kotlin/inkapplications/shade/auth/structures/AppIdSerializerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/auth/src/jvmTest/kotlin/inkapplications/shade/auth/structures/AppIdSerializerTest.kt -------------------------------------------------------------------------------- /cli/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/build.gradle.kts -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/Arguments.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/Arguments.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/AuthorizedShadeCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/AuthorizedShadeCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/Main.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/ShadeCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/ShadeCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/connection/AuthorizeCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/connection/AuthorizeCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/connection/DiscoverCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/connection/DiscoverCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/devices/DeleteDeviceCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/devices/DeleteDeviceCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/devices/DeviceOutput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/devices/DeviceOutput.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/devices/GetDeviceCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/devices/GetDeviceCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/devices/IdentifyDeviceCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/devices/IdentifyDeviceCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/devices/ListDevicesCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/devices/ListDevicesCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/devices/UpdateDeviceCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/devices/UpdateDeviceCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/events/EventsCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/events/EventsCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/groupedlights/GetGroupedLightCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/groupedlights/GetGroupedLightCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/groupedlights/GroupedLightsOutput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/groupedlights/GroupedLightsOutput.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/groupedlights/ListGroupedLightsCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/groupedlights/ListGroupedLightsCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/groupedlights/UpdateGroupedLightCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/groupedlights/UpdateGroupedLightCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/lights/GetLightCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/lights/GetLightCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/lights/LightOutput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/lights/LightOutput.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/lights/ListLightsCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/lights/ListLightsCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/lights/UpdateLightCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/lights/UpdateLightCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/resources/ListResourcesCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/resources/ListResourcesCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/rooms/CreateRoomCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/rooms/CreateRoomCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/rooms/DeleteRoomCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/rooms/DeleteRoomCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/rooms/GetRoomCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/rooms/GetRoomCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/rooms/ListRoomsCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/rooms/ListRoomsCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/rooms/RoomOutput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/rooms/RoomOutput.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/rooms/UpdateRoomCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/rooms/UpdateRoomCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/scenes/Assertions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/scenes/Assertions.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/scenes/CreateSceneCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/scenes/CreateSceneCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/scenes/DeleteSceneCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/scenes/DeleteSceneCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/scenes/GetSceneCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/scenes/GetSceneCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/scenes/ListScenesCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/scenes/ListScenesCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/scenes/SceneOutput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/scenes/SceneOutput.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/scenes/UpdateSceneCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/scenes/UpdateSceneCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/zones/CreateZoneCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/zones/CreateZoneCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/zones/DeleteRoomCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/zones/DeleteRoomCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/zones/GetZoneCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/zones/GetZoneCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/zones/ListZonesCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/zones/ListZonesCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/zones/UpdateRoomCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/zones/UpdateRoomCommand.kt -------------------------------------------------------------------------------- /cli/src/main/kotlin/inkapplications/shade/cli/zones/ZoneOutput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/cli/src/main/kotlin/inkapplications/shade/cli/zones/ZoneOutput.kt -------------------------------------------------------------------------------- /core/api/core.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/core/api/core.api -------------------------------------------------------------------------------- /core/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/core/build.gradle.kts -------------------------------------------------------------------------------- /core/src/commonMain/kotlin/inkapplications/shade/core/Shade.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/core/src/commonMain/kotlin/inkapplications/shade/core/Shade.kt -------------------------------------------------------------------------------- /core/src/jvmMain/kotlin/inkapplications/shade/core/JvmExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/core/src/jvmMain/kotlin/inkapplications/shade/core/JvmExtensions.kt -------------------------------------------------------------------------------- /devices/api/devices.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/devices/api/devices.api -------------------------------------------------------------------------------- /devices/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/devices/build.gradle.kts -------------------------------------------------------------------------------- /devices/src/commonMain/kotlin/inkapplications/shade/devices/DeviceControls.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/devices/src/commonMain/kotlin/inkapplications/shade/devices/DeviceControls.kt -------------------------------------------------------------------------------- /devices/src/commonMain/kotlin/inkapplications/shade/devices/ShadeDevices.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/devices/src/commonMain/kotlin/inkapplications/shade/devices/ShadeDevices.kt -------------------------------------------------------------------------------- /devices/src/commonMain/kotlin/inkapplications/shade/devices/ShadeDevicesModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/devices/src/commonMain/kotlin/inkapplications/shade/devices/ShadeDevicesModule.kt -------------------------------------------------------------------------------- /devices/src/commonMain/kotlin/inkapplications/shade/devices/parameters/DeviceMetadataParameters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/devices/src/commonMain/kotlin/inkapplications/shade/devices/parameters/DeviceMetadataParameters.kt -------------------------------------------------------------------------------- /devices/src/commonMain/kotlin/inkapplications/shade/devices/parameters/IdentifyParameters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/devices/src/commonMain/kotlin/inkapplications/shade/devices/parameters/IdentifyParameters.kt -------------------------------------------------------------------------------- /devices/src/commonMain/kotlin/inkapplications/shade/devices/parameters/UpdateDeviceParameters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/devices/src/commonMain/kotlin/inkapplications/shade/devices/parameters/UpdateDeviceParameters.kt -------------------------------------------------------------------------------- /devices/src/commonMain/kotlin/inkapplications/shade/devices/structures/Device.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/devices/src/commonMain/kotlin/inkapplications/shade/devices/structures/Device.kt -------------------------------------------------------------------------------- /devices/src/commonMain/kotlin/inkapplications/shade/devices/structures/HardwarePlatformType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/devices/src/commonMain/kotlin/inkapplications/shade/devices/structures/HardwarePlatformType.kt -------------------------------------------------------------------------------- /devices/src/commonMain/kotlin/inkapplications/shade/devices/structures/ModelId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/devices/src/commonMain/kotlin/inkapplications/shade/devices/structures/ModelId.kt -------------------------------------------------------------------------------- /devices/src/commonMain/kotlin/inkapplications/shade/devices/structures/ProductArchetype.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/devices/src/commonMain/kotlin/inkapplications/shade/devices/structures/ProductArchetype.kt -------------------------------------------------------------------------------- /devices/src/commonMain/kotlin/inkapplications/shade/devices/structures/ProductData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/devices/src/commonMain/kotlin/inkapplications/shade/devices/structures/ProductData.kt -------------------------------------------------------------------------------- /devices/src/commonMain/kotlin/inkapplications/shade/devices/structures/ProductMetadata.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/devices/src/commonMain/kotlin/inkapplications/shade/devices/structures/ProductMetadata.kt -------------------------------------------------------------------------------- /devices/src/jvmTest/kotlin/inkapplications/shade/devices/DeviceSerializationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/devices/src/jvmTest/kotlin/inkapplications/shade/devices/DeviceSerializationTest.kt -------------------------------------------------------------------------------- /discover/api/discover.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/discover/api/discover.api -------------------------------------------------------------------------------- /discover/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/discover/build.gradle.kts -------------------------------------------------------------------------------- /discover/src/commonMain/kotlin/inkapplications/shade/discover/BridgeDiscovery.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/discover/src/commonMain/kotlin/inkapplications/shade/discover/BridgeDiscovery.kt -------------------------------------------------------------------------------- /discover/src/commonMain/kotlin/inkapplications/shade/discover/DiscoverModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/discover/src/commonMain/kotlin/inkapplications/shade/discover/DiscoverModule.kt -------------------------------------------------------------------------------- /discover/src/commonMain/kotlin/inkapplications/shade/discover/KtorDiscovery.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/discover/src/commonMain/kotlin/inkapplications/shade/discover/KtorDiscovery.kt -------------------------------------------------------------------------------- /discover/src/commonMain/kotlin/inkapplications/shade/discover/PlatformModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/discover/src/commonMain/kotlin/inkapplications/shade/discover/PlatformModule.kt -------------------------------------------------------------------------------- /discover/src/commonMain/kotlin/inkapplications/shade/discover/structures/Bridge.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/discover/src/commonMain/kotlin/inkapplications/shade/discover/structures/Bridge.kt -------------------------------------------------------------------------------- /discover/src/commonMain/kotlin/inkapplications/shade/discover/structures/BridgeId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/discover/src/commonMain/kotlin/inkapplications/shade/discover/structures/BridgeId.kt -------------------------------------------------------------------------------- /discover/src/iosMain/kotlin/inkapplications/shade/discover/PlatformModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/discover/src/iosMain/kotlin/inkapplications/shade/discover/PlatformModule.kt -------------------------------------------------------------------------------- /discover/src/jsMain/kotlin/inkapplications/shade/discover/PlatformModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/discover/src/jsMain/kotlin/inkapplications/shade/discover/PlatformModule.kt -------------------------------------------------------------------------------- /discover/src/jvmMain/kotlin/inkapplications/shade/discover/PlatformModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/discover/src/jvmMain/kotlin/inkapplications/shade/discover/PlatformModule.kt -------------------------------------------------------------------------------- /discover/src/nativeMain/kotlin/inkapplications/shade/discover/PlatformModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/discover/src/nativeMain/kotlin/inkapplications/shade/discover/PlatformModule.kt -------------------------------------------------------------------------------- /discover/src/windowsMain/kotlin/inkapplications/shade/discover/PlatformModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/discover/src/windowsMain/kotlin/inkapplications/shade/discover/PlatformModule.kt -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | shade.lighting -------------------------------------------------------------------------------- /docs/cli-overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/cli-overview.html -------------------------------------------------------------------------------- /docs/css/atom-one-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/css/atom-one-dark.css -------------------------------------------------------------------------------- /docs/css/atom-one-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/css/atom-one-light.css -------------------------------------------------------------------------------- /docs/css/dark-1.1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/css/dark-1.1.css -------------------------------------------------------------------------------- /docs/css/main-1.1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/css/main-1.1.css -------------------------------------------------------------------------------- /docs/css/main-2.0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/css/main-2.0.css -------------------------------------------------------------------------------- /docs/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/css/reset.css -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/reference/latest/auth/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/auth/index.html -------------------------------------------------------------------------------- /docs/reference/latest/auth/inkapplications.shade.auth.structures/-app-id/-app-id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/auth/inkapplications.shade.auth.structures/-app-id/-app-id.html -------------------------------------------------------------------------------- /docs/reference/latest/auth/inkapplications.shade.auth.structures/-app-id/app-name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/auth/inkapplications.shade.auth.structures/-app-id/app-name.html -------------------------------------------------------------------------------- /docs/reference/latest/auth/inkapplications.shade.auth.structures/-app-id/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/auth/inkapplications.shade.auth.structures/-app-id/index.html -------------------------------------------------------------------------------- /docs/reference/latest/auth/inkapplications.shade.auth.structures/-app-id/instance-name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/auth/inkapplications.shade.auth.structures/-app-id/instance-name.html -------------------------------------------------------------------------------- /docs/reference/latest/auth/inkapplications.shade.auth.structures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/auth/inkapplications.shade.auth.structures/index.html -------------------------------------------------------------------------------- /docs/reference/latest/auth/inkapplications.shade.auth/-auth-module/-auth-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/auth/inkapplications.shade.auth/-auth-module/-auth-module.html -------------------------------------------------------------------------------- /docs/reference/latest/auth/inkapplications.shade.auth/-auth-module/bridge-auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/auth/inkapplications.shade.auth/-auth-module/bridge-auth.html -------------------------------------------------------------------------------- /docs/reference/latest/auth/inkapplications.shade.auth/-auth-module/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/auth/inkapplications.shade.auth/-auth-module/index.html -------------------------------------------------------------------------------- /docs/reference/latest/auth/inkapplications.shade.auth/-bridge-auth/await-token.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/auth/inkapplications.shade.auth/-bridge-auth/await-token.html -------------------------------------------------------------------------------- /docs/reference/latest/auth/inkapplications.shade.auth/-bridge-auth/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/auth/inkapplications.shade.auth/-bridge-auth/index.html -------------------------------------------------------------------------------- /docs/reference/latest/auth/inkapplications.shade.auth/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/auth/inkapplications.shade.auth/index.html -------------------------------------------------------------------------------- /docs/reference/latest/auth/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/auth/navigation.html -------------------------------------------------------------------------------- /docs/reference/latest/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/core/index.html -------------------------------------------------------------------------------- /docs/reference/latest/core/inkapplications.shade.core/-shade/-shade.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/core/inkapplications.shade.core/-shade/-shade.html -------------------------------------------------------------------------------- /docs/reference/latest/core/inkapplications.shade.core/-shade/auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/core/inkapplications.shade.core/-shade/auth.html -------------------------------------------------------------------------------- /docs/reference/latest/core/inkapplications.shade.core/-shade/configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/core/inkapplications.shade.core/-shade/configuration.html -------------------------------------------------------------------------------- /docs/reference/latest/core/inkapplications.shade.core/-shade/devices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/core/inkapplications.shade.core/-shade/devices.html -------------------------------------------------------------------------------- /docs/reference/latest/core/inkapplications.shade.core/-shade/grouped-lights.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/core/inkapplications.shade.core/-shade/grouped-lights.html -------------------------------------------------------------------------------- /docs/reference/latest/core/inkapplications.shade.core/-shade/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/core/inkapplications.shade.core/-shade/index.html -------------------------------------------------------------------------------- /docs/reference/latest/core/inkapplications.shade.core/-shade/lights.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/core/inkapplications.shade.core/-shade/lights.html -------------------------------------------------------------------------------- /docs/reference/latest/core/inkapplications.shade.core/-shade/online-discovery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/core/inkapplications.shade.core/-shade/online-discovery.html -------------------------------------------------------------------------------- /docs/reference/latest/core/inkapplications.shade.core/-shade/resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/core/inkapplications.shade.core/-shade/resources.html -------------------------------------------------------------------------------- /docs/reference/latest/core/inkapplications.shade.core/-shade/rooms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/core/inkapplications.shade.core/-shade/rooms.html -------------------------------------------------------------------------------- /docs/reference/latest/core/inkapplications.shade.core/-shade/scenes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/core/inkapplications.shade.core/-shade/scenes.html -------------------------------------------------------------------------------- /docs/reference/latest/core/inkapplications.shade.core/-shade/zones.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/core/inkapplications.shade.core/-shade/zones.html -------------------------------------------------------------------------------- /docs/reference/latest/core/inkapplications.shade.core/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/core/inkapplications.shade.core/events.html -------------------------------------------------------------------------------- /docs/reference/latest/core/inkapplications.shade.core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/core/inkapplications.shade.core/index.html -------------------------------------------------------------------------------- /docs/reference/latest/core/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/core/navigation.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/index.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/inkapplications.shade.devices.parameters/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/inkapplications.shade.devices.parameters/index.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/inkapplications.shade.devices.structures/-device/-device.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/inkapplications.shade.devices.structures/-device/-device.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/inkapplications.shade.devices.structures/-device/id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/inkapplications.shade.devices.structures/-device/id.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/inkapplications.shade.devices.structures/-device/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/inkapplications.shade.devices.structures/-device/index.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/inkapplications.shade.devices.structures/-device/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/inkapplications.shade.devices.structures/-device/metadata.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/inkapplications.shade.devices.structures/-device/product-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/inkapplications.shade.devices.structures/-device/product-data.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/inkapplications.shade.devices.structures/-device/services.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/inkapplications.shade.devices.structures/-device/services.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/inkapplications.shade.devices.structures/-device/v1-id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/inkapplications.shade.devices.structures/-device/v1-id.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/inkapplications.shade.devices.structures/-model-id/-model-id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/inkapplications.shade.devices.structures/-model-id/-model-id.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/inkapplications.shade.devices.structures/-model-id/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/inkapplications.shade.devices.structures/-model-id/index.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/inkapplications.shade.devices.structures/-model-id/to-string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/inkapplications.shade.devices.structures/-model-id/to-string.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/inkapplications.shade.devices.structures/-model-id/value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/inkapplications.shade.devices.structures/-model-id/value.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/inkapplications.shade.devices.structures/-product-archetype/key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/inkapplications.shade.devices.structures/-product-archetype/key.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/inkapplications.shade.devices.structures/-product-data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/inkapplications.shade.devices.structures/-product-data/index.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/inkapplications.shade.devices.structures/-product-data/model-id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/inkapplications.shade.devices.structures/-product-data/model-id.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/inkapplications.shade.devices.structures/-product-metadata/name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/inkapplications.shade.devices.structures/-product-metadata/name.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/inkapplications.shade.devices.structures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/inkapplications.shade.devices.structures/index.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/inkapplications.shade.devices/-device-controls/delete-device.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/inkapplications.shade.devices/-device-controls/delete-device.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/inkapplications.shade.devices/-device-controls/get-device.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/inkapplications.shade.devices/-device-controls/get-device.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/inkapplications.shade.devices/-device-controls/identify-device.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/inkapplications.shade.devices/-device-controls/identify-device.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/inkapplications.shade.devices/-device-controls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/inkapplications.shade.devices/-device-controls/index.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/inkapplications.shade.devices/-device-controls/list-devices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/inkapplications.shade.devices/-device-controls/list-devices.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/inkapplications.shade.devices/-device-controls/update-device.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/inkapplications.shade.devices/-device-controls/update-device.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/inkapplications.shade.devices/-shade-devices-module/devices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/inkapplications.shade.devices/-shade-devices-module/devices.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/inkapplications.shade.devices/-shade-devices-module/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/inkapplications.shade.devices/-shade-devices-module/index.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/inkapplications.shade.devices/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/inkapplications.shade.devices/index.html -------------------------------------------------------------------------------- /docs/reference/latest/devices/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/devices/navigation.html -------------------------------------------------------------------------------- /docs/reference/latest/discover/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/discover/index.html -------------------------------------------------------------------------------- /docs/reference/latest/discover/inkapplications.shade.discover.structures/-bridge-id/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/discover/inkapplications.shade.discover.structures/-bridge-id/index.html -------------------------------------------------------------------------------- /docs/reference/latest/discover/inkapplications.shade.discover.structures/-bridge-id/to-string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/discover/inkapplications.shade.discover.structures/-bridge-id/to-string.html -------------------------------------------------------------------------------- /docs/reference/latest/discover/inkapplications.shade.discover.structures/-bridge-id/value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/discover/inkapplications.shade.discover.structures/-bridge-id/value.html -------------------------------------------------------------------------------- /docs/reference/latest/discover/inkapplications.shade.discover.structures/-bridge/-bridge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/discover/inkapplications.shade.discover.structures/-bridge/-bridge.html -------------------------------------------------------------------------------- /docs/reference/latest/discover/inkapplications.shade.discover.structures/-bridge/id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/discover/inkapplications.shade.discover.structures/-bridge/id.html -------------------------------------------------------------------------------- /docs/reference/latest/discover/inkapplications.shade.discover.structures/-bridge/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/discover/inkapplications.shade.discover.structures/-bridge/index.html -------------------------------------------------------------------------------- /docs/reference/latest/discover/inkapplications.shade.discover.structures/-bridge/local-ip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/discover/inkapplications.shade.discover.structures/-bridge/local-ip.html -------------------------------------------------------------------------------- /docs/reference/latest/discover/inkapplications.shade.discover.structures/-bridge/port.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/discover/inkapplications.shade.discover.structures/-bridge/port.html -------------------------------------------------------------------------------- /docs/reference/latest/discover/inkapplications.shade.discover.structures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/discover/inkapplications.shade.discover.structures/index.html -------------------------------------------------------------------------------- /docs/reference/latest/discover/inkapplications.shade.discover/-bridge-discovery/get-devices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/discover/inkapplications.shade.discover/-bridge-discovery/get-devices.html -------------------------------------------------------------------------------- /docs/reference/latest/discover/inkapplications.shade.discover/-bridge-discovery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/discover/inkapplications.shade.discover/-bridge-discovery/index.html -------------------------------------------------------------------------------- /docs/reference/latest/discover/inkapplications.shade.discover/-discover-module/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/discover/inkapplications.shade.discover/-discover-module/index.html -------------------------------------------------------------------------------- /docs/reference/latest/discover/inkapplications.shade.discover/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/discover/inkapplications.shade.discover/index.html -------------------------------------------------------------------------------- /docs/reference/latest/discover/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/discover/navigation.html -------------------------------------------------------------------------------- /docs/reference/latest/events/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/events/index.html -------------------------------------------------------------------------------- /docs/reference/latest/events/inkapplications.shade.events/-event-serializer-container/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/events/inkapplications.shade.events/-event-serializer-container/index.html -------------------------------------------------------------------------------- /docs/reference/latest/events/inkapplications.shade.events/-events-module/-events-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/events/inkapplications.shade.events/-events-module/-events-module.html -------------------------------------------------------------------------------- /docs/reference/latest/events/inkapplications.shade.events/-events-module/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/events/inkapplications.shade.events/-events-module/index.html -------------------------------------------------------------------------------- /docs/reference/latest/events/inkapplications.shade.events/-events/bridge-events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/events/inkapplications.shade.events/-events/bridge-events.html -------------------------------------------------------------------------------- /docs/reference/latest/events/inkapplications.shade.events/-events/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/events/inkapplications.shade.events/-events/index.html -------------------------------------------------------------------------------- /docs/reference/latest/events/inkapplications.shade.events/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/events/inkapplications.shade.events/index.html -------------------------------------------------------------------------------- /docs/reference/latest/events/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/events/navigation.html -------------------------------------------------------------------------------- /docs/reference/latest/events/shade.events/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/events/shade.events/events.html -------------------------------------------------------------------------------- /docs/reference/latest/events/shade.events/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/events/shade.events/index.html -------------------------------------------------------------------------------- /docs/reference/latest/grouped-lights/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/grouped-lights/index.html -------------------------------------------------------------------------------- /docs/reference/latest/grouped-lights/inkapplications.shade.groupedlights.events/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/grouped-lights/inkapplications.shade.groupedlights.events/index.html -------------------------------------------------------------------------------- /docs/reference/latest/grouped-lights/inkapplications.shade.groupedlights.parameters/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/grouped-lights/inkapplications.shade.groupedlights.parameters/index.html -------------------------------------------------------------------------------- /docs/reference/latest/grouped-lights/inkapplications.shade.groupedlights.structures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/grouped-lights/inkapplications.shade.groupedlights.structures/index.html -------------------------------------------------------------------------------- /docs/reference/latest/grouped-lights/inkapplications.shade.groupedlights/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/grouped-lights/inkapplications.shade.groupedlights/index.html -------------------------------------------------------------------------------- /docs/reference/latest/grouped-lights/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/grouped-lights/navigation.html -------------------------------------------------------------------------------- /docs/reference/latest/images/anchor-copy-button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/images/anchor-copy-button.svg -------------------------------------------------------------------------------- /docs/reference/latest/images/arrow_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/images/arrow_down.svg -------------------------------------------------------------------------------- /docs/reference/latest/images/burger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/images/burger.svg -------------------------------------------------------------------------------- /docs/reference/latest/images/copy-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/images/copy-icon.svg -------------------------------------------------------------------------------- /docs/reference/latest/images/copy-successful-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/images/copy-successful-icon.svg -------------------------------------------------------------------------------- /docs/reference/latest/images/footer-go-to-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/images/footer-go-to-link.svg -------------------------------------------------------------------------------- /docs/reference/latest/images/go-to-top-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/images/go-to-top-icon.svg -------------------------------------------------------------------------------- /docs/reference/latest/images/homepage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/images/homepage.svg -------------------------------------------------------------------------------- /docs/reference/latest/images/logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/images/logo-icon.svg -------------------------------------------------------------------------------- /docs/reference/latest/images/nav-icons/abstract-class-kotlin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/images/nav-icons/abstract-class-kotlin.svg -------------------------------------------------------------------------------- /docs/reference/latest/images/nav-icons/abstract-class.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/images/nav-icons/abstract-class.svg -------------------------------------------------------------------------------- /docs/reference/latest/images/nav-icons/annotation-kotlin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/images/nav-icons/annotation-kotlin.svg -------------------------------------------------------------------------------- /docs/reference/latest/images/nav-icons/annotation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/images/nav-icons/annotation.svg -------------------------------------------------------------------------------- /docs/reference/latest/images/nav-icons/class-kotlin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/images/nav-icons/class-kotlin.svg -------------------------------------------------------------------------------- /docs/reference/latest/images/nav-icons/class.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/images/nav-icons/class.svg -------------------------------------------------------------------------------- /docs/reference/latest/images/nav-icons/enum-kotlin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/images/nav-icons/enum-kotlin.svg -------------------------------------------------------------------------------- /docs/reference/latest/images/nav-icons/enum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/images/nav-icons/enum.svg -------------------------------------------------------------------------------- /docs/reference/latest/images/nav-icons/exception-class.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/images/nav-icons/exception-class.svg -------------------------------------------------------------------------------- /docs/reference/latest/images/nav-icons/field-value.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/images/nav-icons/field-value.svg -------------------------------------------------------------------------------- /docs/reference/latest/images/nav-icons/field-variable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/images/nav-icons/field-variable.svg -------------------------------------------------------------------------------- /docs/reference/latest/images/nav-icons/function.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/images/nav-icons/function.svg -------------------------------------------------------------------------------- /docs/reference/latest/images/nav-icons/interface-kotlin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/images/nav-icons/interface-kotlin.svg -------------------------------------------------------------------------------- /docs/reference/latest/images/nav-icons/interface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/images/nav-icons/interface.svg -------------------------------------------------------------------------------- /docs/reference/latest/images/nav-icons/object.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/images/nav-icons/object.svg -------------------------------------------------------------------------------- /docs/reference/latest/images/nav-icons/typealias-kotlin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/images/nav-icons/typealias-kotlin.svg -------------------------------------------------------------------------------- /docs/reference/latest/images/theme-toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/images/theme-toggle.svg -------------------------------------------------------------------------------- /docs/reference/latest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/index.html -------------------------------------------------------------------------------- /docs/reference/latest/internals/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/internals/index.html -------------------------------------------------------------------------------- /docs/reference/latest/internals/inkapplications.shade.internals/-cached-property/factory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/internals/inkapplications.shade.internals/-cached-property/factory.html -------------------------------------------------------------------------------- /docs/reference/latest/internals/inkapplications.shade.internals/-cached-property/get-value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/internals/inkapplications.shade.internals/-cached-property/get-value.html -------------------------------------------------------------------------------- /docs/reference/latest/internals/inkapplications.shade.internals/-cached-property/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/internals/inkapplications.shade.internals/-cached-property/index.html -------------------------------------------------------------------------------- /docs/reference/latest/internals/inkapplications.shade.internals/-cached-property/key-property.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/internals/inkapplications.shade.internals/-cached-property/key-property.html -------------------------------------------------------------------------------- /docs/reference/latest/internals/inkapplications.shade.internals/-hue-http-client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/internals/inkapplications.shade.internals/-hue-http-client/index.html -------------------------------------------------------------------------------- /docs/reference/latest/internals/inkapplications.shade.internals/-hue-http-client/send-request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/internals/inkapplications.shade.internals/-hue-http-client/send-request.html -------------------------------------------------------------------------------- /docs/reference/latest/internals/inkapplications.shade.internals/-hue-stub-client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/internals/inkapplications.shade.internals/-hue-stub-client/index.html -------------------------------------------------------------------------------- /docs/reference/latest/internals/inkapplications.shade.internals/-hue-stub-client/send-request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/internals/inkapplications.shade.internals/-hue-stub-client/send-request.html -------------------------------------------------------------------------------- /docs/reference/latest/internals/inkapplications.shade.internals/-internals-module/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/internals/inkapplications.shade.internals/-internals-module/index.html -------------------------------------------------------------------------------- /docs/reference/latest/internals/inkapplications.shade.internals/-internals-module/json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/internals/inkapplications.shade.internals/-internals-module/json.html -------------------------------------------------------------------------------- /docs/reference/latest/internals/inkapplications.shade.internals/-platform-module/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/internals/inkapplications.shade.internals/-platform-module/index.html -------------------------------------------------------------------------------- /docs/reference/latest/internals/inkapplications.shade.internals/-platform-module/sse-client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/internals/inkapplications.shade.internals/-platform-module/sse-client.html -------------------------------------------------------------------------------- /docs/reference/latest/internals/inkapplications.shade.internals/-sse-client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/internals/inkapplications.shade.internals/-sse-client/index.html -------------------------------------------------------------------------------- /docs/reference/latest/internals/inkapplications.shade.internals/-sse-client/open-sse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/internals/inkapplications.shade.internals/-sse-client/open-sse.html -------------------------------------------------------------------------------- /docs/reference/latest/internals/inkapplications.shade.internals/delete-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/internals/inkapplications.shade.internals/delete-data.html -------------------------------------------------------------------------------- /docs/reference/latest/internals/inkapplications.shade.internals/get-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/internals/inkapplications.shade.internals/get-data.html -------------------------------------------------------------------------------- /docs/reference/latest/internals/inkapplications.shade.internals/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/internals/inkapplications.shade.internals/index.html -------------------------------------------------------------------------------- /docs/reference/latest/internals/inkapplications.shade.internals/post-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/internals/inkapplications.shade.internals/post-data.html -------------------------------------------------------------------------------- /docs/reference/latest/internals/inkapplications.shade.internals/put-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/internals/inkapplications.shade.internals/put-data.html -------------------------------------------------------------------------------- /docs/reference/latest/internals/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/internals/navigation.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.events/-color-info-event/color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.events/-color-info-event/color.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.events/-color-info-event/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.events/-color-info-event/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.events/-dimming-info-event/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.events/-dimming-info-event/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.events/-light-event/-light-event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.events/-light-event/-light-event.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.events/-light-event/color-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.events/-light-event/color-info.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.events/-light-event/dimming-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.events/-light-event/dimming-info.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.events/-light-event/id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.events/-light-event/id.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.events/-light-event/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.events/-light-event/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.events/-light-event/owner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.events/-light-event/owner.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.events/-light-event/power-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.events/-light-event/power-info.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.events/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.events/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.parameters/-delta-action/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.parameters/-delta-action/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.parameters/-delta-action/key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.parameters/-delta-action/key.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.parameters/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.parameters/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-alert-info/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-alert-info/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-color-info/color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-color-info/color.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-color-info/gamut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-color-info/gamut.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-color-info/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-color-info/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-color-palette/color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-color-palette/color.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-color-palette/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-color-palette/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-color-value/color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-color-value/color.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-color-value/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-color-value/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-dimming-info/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-dimming-info/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-dimming-info/minimum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-dimming-info/minimum.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-dimming-value/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-dimming-value/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-dynamics-status/key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-dynamics-status/key.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-gamut-type/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-gamut-type/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-gamut-type/key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-gamut-type/key.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-gamut-type/to-string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-gamut-type/to-string.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-gamut/-gamut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-gamut/-gamut.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-gamut/blue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-gamut/blue.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-gamut/green.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-gamut/green.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-gamut/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-gamut/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-gamut/red.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-gamut/red.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-gamut/to-color-space.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-gamut/to-color-space.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-gradient-mode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-gradient-mode/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-gradient-mode/key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-gradient-mode/key.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-gradient-point/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-gradient-point/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-gradient-value/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-gradient-value/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-gradient-value/mode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-gradient-value/mode.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-gradient/-gradient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-gradient/-gradient.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-gradient/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-gradient/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-gradient/points.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-gradient/points.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-light-dynamics/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-light-dynamics/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-light-dynamics/speed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-light-dynamics/speed.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-light-effect/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-light-effect/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-light-effect/key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-light-effect/key.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-light-mode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-light-mode/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-light-mode/key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-light-mode/key.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-light-mode/to-string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-light-mode/to-string.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-light-powerup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-light-powerup/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-light-signal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-light-signal/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-light-signal/key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-light-signal/key.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/-light.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/-light.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/alert-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/alert-info.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/color-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/color-info.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/dimming-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/dimming-info.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/dynamics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/dynamics.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/effects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/effects.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/gradient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/gradient.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/id.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/mode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/mode.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/owner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/owner.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/power-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/power-info.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/powerup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/powerup.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/signaling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/signaling.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/timed-effects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/timed-effects.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/v1-id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/-light/v1-id.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights.structures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights.structures/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights/-light-controls/get-light.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights/-light-controls/get-light.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights/-light-controls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights/-light-controls/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights/-light-controls/list-lights.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights/-light-controls/list-lights.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights/-light-controls/update-light.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights/-light-controls/update-light.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights/-shade-lights-module/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights/-shade-lights-module/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights/-shade-lights-module/lights.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights/-shade-lights-module/lights.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/inkapplications.shade.lights/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/inkapplications.shade.lights/index.html -------------------------------------------------------------------------------- /docs/reference/latest/lights/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/lights/navigation.html -------------------------------------------------------------------------------- /docs/reference/latest/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/navigation.html -------------------------------------------------------------------------------- /docs/reference/latest/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/package-list -------------------------------------------------------------------------------- /docs/reference/latest/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/resources/index.html -------------------------------------------------------------------------------- /docs/reference/latest/resources/inkapplications.shade.resources.structures/-resource/id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/resources/inkapplications.shade.resources.structures/-resource/id.html -------------------------------------------------------------------------------- /docs/reference/latest/resources/inkapplications.shade.resources.structures/-resource/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/resources/inkapplications.shade.resources.structures/-resource/index.html -------------------------------------------------------------------------------- /docs/reference/latest/resources/inkapplications.shade.resources.structures/-resource/type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/resources/inkapplications.shade.resources.structures/-resource/type.html -------------------------------------------------------------------------------- /docs/reference/latest/resources/inkapplications.shade.resources.structures/-resource/v1-id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/resources/inkapplications.shade.resources.structures/-resource/v1-id.html -------------------------------------------------------------------------------- /docs/reference/latest/resources/inkapplications.shade.resources.structures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/resources/inkapplications.shade.resources.structures/index.html -------------------------------------------------------------------------------- /docs/reference/latest/resources/inkapplications.shade.resources/-resource-controls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/resources/inkapplications.shade.resources/-resource-controls/index.html -------------------------------------------------------------------------------- /docs/reference/latest/resources/inkapplications.shade.resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/resources/inkapplications.shade.resources/index.html -------------------------------------------------------------------------------- /docs/reference/latest/resources/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/resources/navigation.html -------------------------------------------------------------------------------- /docs/reference/latest/rooms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/rooms/index.html -------------------------------------------------------------------------------- /docs/reference/latest/rooms/inkapplications.shade.rooms.parameters/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/rooms/inkapplications.shade.rooms.parameters/index.html -------------------------------------------------------------------------------- /docs/reference/latest/rooms/inkapplications.shade.rooms.structures/-room/-room.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/rooms/inkapplications.shade.rooms.structures/-room/-room.html -------------------------------------------------------------------------------- /docs/reference/latest/rooms/inkapplications.shade.rooms.structures/-room/children.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/rooms/inkapplications.shade.rooms.structures/-room/children.html -------------------------------------------------------------------------------- /docs/reference/latest/rooms/inkapplications.shade.rooms.structures/-room/id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/rooms/inkapplications.shade.rooms.structures/-room/id.html -------------------------------------------------------------------------------- /docs/reference/latest/rooms/inkapplications.shade.rooms.structures/-room/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/rooms/inkapplications.shade.rooms.structures/-room/index.html -------------------------------------------------------------------------------- /docs/reference/latest/rooms/inkapplications.shade.rooms.structures/-room/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/rooms/inkapplications.shade.rooms.structures/-room/metadata.html -------------------------------------------------------------------------------- /docs/reference/latest/rooms/inkapplications.shade.rooms.structures/-room/services.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/rooms/inkapplications.shade.rooms.structures/-room/services.html -------------------------------------------------------------------------------- /docs/reference/latest/rooms/inkapplications.shade.rooms.structures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/rooms/inkapplications.shade.rooms.structures/index.html -------------------------------------------------------------------------------- /docs/reference/latest/rooms/inkapplications.shade.rooms/-room-controls/create-room.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/rooms/inkapplications.shade.rooms/-room-controls/create-room.html -------------------------------------------------------------------------------- /docs/reference/latest/rooms/inkapplications.shade.rooms/-room-controls/delete-room.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/rooms/inkapplications.shade.rooms/-room-controls/delete-room.html -------------------------------------------------------------------------------- /docs/reference/latest/rooms/inkapplications.shade.rooms/-room-controls/get-room.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/rooms/inkapplications.shade.rooms/-room-controls/get-room.html -------------------------------------------------------------------------------- /docs/reference/latest/rooms/inkapplications.shade.rooms/-room-controls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/rooms/inkapplications.shade.rooms/-room-controls/index.html -------------------------------------------------------------------------------- /docs/reference/latest/rooms/inkapplications.shade.rooms/-room-controls/list-rooms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/rooms/inkapplications.shade.rooms/-room-controls/list-rooms.html -------------------------------------------------------------------------------- /docs/reference/latest/rooms/inkapplications.shade.rooms/-room-controls/update-room.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/rooms/inkapplications.shade.rooms/-room-controls/update-room.html -------------------------------------------------------------------------------- /docs/reference/latest/rooms/inkapplications.shade.rooms/-shade-rooms-module/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/rooms/inkapplications.shade.rooms/-shade-rooms-module/index.html -------------------------------------------------------------------------------- /docs/reference/latest/rooms/inkapplications.shade.rooms/-shade-rooms-module/rooms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/rooms/inkapplications.shade.rooms/-shade-rooms-module/rooms.html -------------------------------------------------------------------------------- /docs/reference/latest/rooms/inkapplications.shade.rooms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/rooms/inkapplications.shade.rooms/index.html -------------------------------------------------------------------------------- /docs/reference/latest/rooms/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/rooms/navigation.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/index.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes.parameters/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes.parameters/index.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene-action/effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene-action/effect.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene-action/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene-action/index.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene-metadata/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene-metadata/image.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene-metadata/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene-metadata/index.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene-metadata/name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene-metadata/name.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene-palette/color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene-palette/color.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene-palette/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene-palette/index.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene-recall/action.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene-recall/action.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene-recall/dimming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene-recall/dimming.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene-recall/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene-recall/index.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene-recall/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene-recall/status.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene/-scene.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene/-scene.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene/actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene/actions.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene/auto-dynamic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene/auto-dynamic.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene/group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene/group.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene/id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene/id.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene/index.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene/metadata.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene/palette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene/palette.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene/speed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene/speed.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene/v1-id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes.structures/-scene/v1-id.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes.structures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes.structures/index.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes/-scene-controls/create-scene.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes/-scene-controls/create-scene.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes/-scene-controls/delete-scene.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes/-scene-controls/delete-scene.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes/-scene-controls/get-scene.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes/-scene-controls/get-scene.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes/-scene-controls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes/-scene-controls/index.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes/-scene-controls/list-scenes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes/-scene-controls/list-scenes.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes/-scene-controls/update-scene.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes/-scene-controls/update-scene.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes/-shade-scenes-module/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes/-shade-scenes-module/index.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes/-shade-scenes-module/scenes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes/-shade-scenes-module/scenes.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/inkapplications.shade.scenes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/inkapplications.shade.scenes/index.html -------------------------------------------------------------------------------- /docs/reference/latest/scenes/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scenes/navigation.html -------------------------------------------------------------------------------- /docs/reference/latest/scripts/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scripts/clipboard.js -------------------------------------------------------------------------------- /docs/reference/latest/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scripts/main.js -------------------------------------------------------------------------------- /docs/reference/latest/scripts/navigation-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scripts/navigation-loader.js -------------------------------------------------------------------------------- /docs/reference/latest/scripts/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scripts/pages.json -------------------------------------------------------------------------------- /docs/reference/latest/scripts/platform-content-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scripts/platform-content-handler.js -------------------------------------------------------------------------------- /docs/reference/latest/scripts/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scripts/prism.js -------------------------------------------------------------------------------- /docs/reference/latest/scripts/sourceset_dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scripts/sourceset_dependencies.js -------------------------------------------------------------------------------- /docs/reference/latest/scripts/symbol-parameters-wrapper_deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/scripts/symbol-parameters-wrapper_deferred.js -------------------------------------------------------------------------------- /docs/reference/latest/serialization/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/serialization/index.html -------------------------------------------------------------------------------- /docs/reference/latest/serialization/inkapplications.shade.serialization/-hue-error/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/serialization/inkapplications.shade.serialization/-hue-error/index.html -------------------------------------------------------------------------------- /docs/reference/latest/serialization/inkapplications.shade.serialization/-v1-hue-error/type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/serialization/inkapplications.shade.serialization/-v1-hue-error/type.html -------------------------------------------------------------------------------- /docs/reference/latest/serialization/inkapplications.shade.serialization/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/serialization/inkapplications.shade.serialization/index.html -------------------------------------------------------------------------------- /docs/reference/latest/serialization/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/serialization/navigation.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/index.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures.parameters/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures.parameters/index.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-api-error/-api-error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-api-error/-api-error.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-api-error/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-api-error/index.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-api-status-error/code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-api-status-error/code.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-api-status-error/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-api-status-error/index.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-auth-token/-auth-token.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-auth-token/-auth-token.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-auth-token/client-key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-auth-token/client-key.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-auth-token/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-auth-token/index.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-auth-token/to-string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-auth-token/to-string.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-network-exception/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-network-exception/index.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-power-info/-power-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-power-info/-power-info.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-power-info/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-power-info/index.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-power-info/on.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-power-info/on.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-power-value/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-power-value/index.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-power-value/on.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-power-value/on.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-resource-id/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-resource-id/index.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-resource-id/to-string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-resource-id/to-string.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-resource-id/value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-resource-id/value.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-resource-reference/id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-resource-reference/id.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-resource-reference/type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-resource-reference/type.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-resource-type/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-resource-type/index.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-resource-type/key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-resource-type/key.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-resource-type/to-string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-resource-type/to-string.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-security-strategy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-security-strategy/index.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-segment-archetype/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-segment-archetype/index.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-segment-archetype/key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-segment-archetype/key.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-segment-metadata/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-segment-metadata/index.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-segment-metadata/name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-segment-metadata/name.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-shade-exception/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-shade-exception/index.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-undocumented-api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-undocumented-api/index.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-unknown-event/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-unknown-event/index.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-unknown-event/json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-unknown-event/json.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-unknown-event/type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-unknown-event/type.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-user-error/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-user-error/index.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-version-string/full.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-version-string/full.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-version-string/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-version-string/index.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-version-string/major.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-version-string/major.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-version-string/minor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-version-string/minor.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/-version-string/patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/-version-string/patch.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/inkapplications.shade.structures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/inkapplications.shade.structures/index.html -------------------------------------------------------------------------------- /docs/reference/latest/structures/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/structures/navigation.html -------------------------------------------------------------------------------- /docs/reference/latest/styles/font-jb-sans-auto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/styles/font-jb-sans-auto.css -------------------------------------------------------------------------------- /docs/reference/latest/styles/jetbrains-mono.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/styles/jetbrains-mono.css -------------------------------------------------------------------------------- /docs/reference/latest/styles/logo-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/styles/logo-styles.css -------------------------------------------------------------------------------- /docs/reference/latest/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/styles/main.css -------------------------------------------------------------------------------- /docs/reference/latest/styles/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/styles/prism.css -------------------------------------------------------------------------------- /docs/reference/latest/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/styles/style.css -------------------------------------------------------------------------------- /docs/reference/latest/ui-kit/assets/abstract-class-kotlin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/ui-kit/assets/abstract-class-kotlin.svg -------------------------------------------------------------------------------- /docs/reference/latest/ui-kit/assets/abstract-class.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/ui-kit/assets/abstract-class.svg -------------------------------------------------------------------------------- /docs/reference/latest/ui-kit/assets/annotation-kotlin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/ui-kit/assets/annotation-kotlin.svg -------------------------------------------------------------------------------- /docs/reference/latest/ui-kit/assets/annotation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/ui-kit/assets/annotation.svg -------------------------------------------------------------------------------- /docs/reference/latest/ui-kit/assets/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/ui-kit/assets/arrow-down.svg -------------------------------------------------------------------------------- /docs/reference/latest/ui-kit/assets/burger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/ui-kit/assets/burger.svg -------------------------------------------------------------------------------- /docs/reference/latest/ui-kit/assets/checkbox-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/ui-kit/assets/checkbox-off.svg -------------------------------------------------------------------------------- /docs/reference/latest/ui-kit/assets/checkbox-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/ui-kit/assets/checkbox-on.svg -------------------------------------------------------------------------------- /docs/reference/latest/ui-kit/assets/class-kotlin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/ui-kit/assets/class-kotlin.svg -------------------------------------------------------------------------------- /docs/reference/latest/ui-kit/assets/class.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/ui-kit/assets/class.svg -------------------------------------------------------------------------------- /docs/reference/latest/ui-kit/assets/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/ui-kit/assets/cross.svg -------------------------------------------------------------------------------- /docs/reference/latest/ui-kit/assets/enum-kotlin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/ui-kit/assets/enum-kotlin.svg -------------------------------------------------------------------------------- /docs/reference/latest/ui-kit/assets/enum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/ui-kit/assets/enum.svg -------------------------------------------------------------------------------- /docs/reference/latest/ui-kit/assets/exception-class.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/ui-kit/assets/exception-class.svg -------------------------------------------------------------------------------- /docs/reference/latest/ui-kit/assets/field-value.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/ui-kit/assets/field-value.svg -------------------------------------------------------------------------------- /docs/reference/latest/ui-kit/assets/field-variable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/ui-kit/assets/field-variable.svg -------------------------------------------------------------------------------- /docs/reference/latest/ui-kit/assets/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/ui-kit/assets/filter.svg -------------------------------------------------------------------------------- /docs/reference/latest/ui-kit/assets/function.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/ui-kit/assets/function.svg -------------------------------------------------------------------------------- /docs/reference/latest/ui-kit/assets/homepage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/ui-kit/assets/homepage.svg -------------------------------------------------------------------------------- /docs/reference/latest/ui-kit/assets/interface-kotlin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/ui-kit/assets/interface-kotlin.svg -------------------------------------------------------------------------------- /docs/reference/latest/ui-kit/assets/interface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/ui-kit/assets/interface.svg -------------------------------------------------------------------------------- /docs/reference/latest/ui-kit/assets/object.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/ui-kit/assets/object.svg -------------------------------------------------------------------------------- /docs/reference/latest/ui-kit/assets/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/ui-kit/assets/placeholder.svg -------------------------------------------------------------------------------- /docs/reference/latest/ui-kit/assets/theme-toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/ui-kit/assets/theme-toggle.svg -------------------------------------------------------------------------------- /docs/reference/latest/ui-kit/assets/typealias-kotlin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/ui-kit/assets/typealias-kotlin.svg -------------------------------------------------------------------------------- /docs/reference/latest/ui-kit/ui-kit.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/ui-kit/ui-kit.min.css -------------------------------------------------------------------------------- /docs/reference/latest/ui-kit/ui-kit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/ui-kit/ui-kit.min.js -------------------------------------------------------------------------------- /docs/reference/latest/zones/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/zones/index.html -------------------------------------------------------------------------------- /docs/reference/latest/zones/inkapplications.shade.zones.parameters/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/zones/inkapplications.shade.zones.parameters/index.html -------------------------------------------------------------------------------- /docs/reference/latest/zones/inkapplications.shade.zones.structures/-zone/-zone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/zones/inkapplications.shade.zones.structures/-zone/-zone.html -------------------------------------------------------------------------------- /docs/reference/latest/zones/inkapplications.shade.zones.structures/-zone/children.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/zones/inkapplications.shade.zones.structures/-zone/children.html -------------------------------------------------------------------------------- /docs/reference/latest/zones/inkapplications.shade.zones.structures/-zone/id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/zones/inkapplications.shade.zones.structures/-zone/id.html -------------------------------------------------------------------------------- /docs/reference/latest/zones/inkapplications.shade.zones.structures/-zone/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/zones/inkapplications.shade.zones.structures/-zone/index.html -------------------------------------------------------------------------------- /docs/reference/latest/zones/inkapplications.shade.zones.structures/-zone/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/zones/inkapplications.shade.zones.structures/-zone/metadata.html -------------------------------------------------------------------------------- /docs/reference/latest/zones/inkapplications.shade.zones.structures/-zone/services.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/zones/inkapplications.shade.zones.structures/-zone/services.html -------------------------------------------------------------------------------- /docs/reference/latest/zones/inkapplications.shade.zones.structures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/zones/inkapplications.shade.zones.structures/index.html -------------------------------------------------------------------------------- /docs/reference/latest/zones/inkapplications.shade.zones/-shade-zones-module/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/zones/inkapplications.shade.zones/-shade-zones-module/index.html -------------------------------------------------------------------------------- /docs/reference/latest/zones/inkapplications.shade.zones/-shade-zones-module/zones.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/zones/inkapplications.shade.zones/-shade-zones-module/zones.html -------------------------------------------------------------------------------- /docs/reference/latest/zones/inkapplications.shade.zones/-zone-controls/create-zone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/zones/inkapplications.shade.zones/-zone-controls/create-zone.html -------------------------------------------------------------------------------- /docs/reference/latest/zones/inkapplications.shade.zones/-zone-controls/delete-zone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/zones/inkapplications.shade.zones/-zone-controls/delete-zone.html -------------------------------------------------------------------------------- /docs/reference/latest/zones/inkapplications.shade.zones/-zone-controls/get-zone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/zones/inkapplications.shade.zones/-zone-controls/get-zone.html -------------------------------------------------------------------------------- /docs/reference/latest/zones/inkapplications.shade.zones/-zone-controls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/zones/inkapplications.shade.zones/-zone-controls/index.html -------------------------------------------------------------------------------- /docs/reference/latest/zones/inkapplications.shade.zones/-zone-controls/list-zones.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/zones/inkapplications.shade.zones/-zone-controls/list-zones.html -------------------------------------------------------------------------------- /docs/reference/latest/zones/inkapplications.shade.zones/-zone-controls/update-zone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/zones/inkapplications.shade.zones/-zone-controls/update-zone.html -------------------------------------------------------------------------------- /docs/reference/latest/zones/inkapplications.shade.zones/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/zones/inkapplications.shade.zones/index.html -------------------------------------------------------------------------------- /docs/reference/latest/zones/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/reference/latest/zones/navigation.html -------------------------------------------------------------------------------- /docs/sdk-initialization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/sdk-initialization.html -------------------------------------------------------------------------------- /docs/sdk-overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/sdk-overview.html -------------------------------------------------------------------------------- /docs/svg/logo-full-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/svg/logo-full-dark.svg -------------------------------------------------------------------------------- /docs/svg/logo-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/docs/svg/logo-full.svg -------------------------------------------------------------------------------- /events/api/events.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/events/api/events.api -------------------------------------------------------------------------------- /events/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/events/build.gradle.kts -------------------------------------------------------------------------------- /events/src/commonMain/kotlin/inkapplications/shade/events/CompositeEventDeserializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/events/src/commonMain/kotlin/inkapplications/shade/events/CompositeEventDeserializer.kt -------------------------------------------------------------------------------- /events/src/commonMain/kotlin/inkapplications/shade/events/EventSerializerContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/events/src/commonMain/kotlin/inkapplications/shade/events/EventSerializerContainer.kt -------------------------------------------------------------------------------- /events/src/commonMain/kotlin/inkapplications/shade/events/Events.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/events/src/commonMain/kotlin/inkapplications/shade/events/Events.kt -------------------------------------------------------------------------------- /events/src/commonMain/kotlin/inkapplications/shade/events/EventsModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/events/src/commonMain/kotlin/inkapplications/shade/events/EventsModule.kt -------------------------------------------------------------------------------- /events/src/jvmMain/kotlin/shade/events/EventsModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/events/src/jvmMain/kotlin/shade/events/EventsModule.kt -------------------------------------------------------------------------------- /events/src/jvmMain/kotlin/shade/events/ShadeEvents.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/events/src/jvmMain/kotlin/shade/events/ShadeEvents.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | version=2.0-SNAPSHOT 2 | group=com.inkapplications.shade 3 | org.gradle.jvmargs=-Xmx4g 4 | -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/gradlew.bat -------------------------------------------------------------------------------- /grouped-lights/api/grouped-lights.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/grouped-lights/api/grouped-lights.api -------------------------------------------------------------------------------- /grouped-lights/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/grouped-lights/build.gradle.kts -------------------------------------------------------------------------------- /grouped-lights/src/commonMain/kotlin/inkapplications/shade/groupedlights/ShadeGroupedLights.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/grouped-lights/src/commonMain/kotlin/inkapplications/shade/groupedlights/ShadeGroupedLights.kt -------------------------------------------------------------------------------- /internals/api/internals.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/internals/api/internals.api -------------------------------------------------------------------------------- /internals/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/internals/build.gradle.kts -------------------------------------------------------------------------------- /internals/src/commonMain/kotlin/inkapplications/shade/internals/BaseUrl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/internals/src/commonMain/kotlin/inkapplications/shade/internals/BaseUrl.kt -------------------------------------------------------------------------------- /internals/src/commonMain/kotlin/inkapplications/shade/internals/CachedProperty.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/internals/src/commonMain/kotlin/inkapplications/shade/internals/CachedProperty.kt -------------------------------------------------------------------------------- /internals/src/commonMain/kotlin/inkapplications/shade/internals/ConfigurableHttpClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/internals/src/commonMain/kotlin/inkapplications/shade/internals/ConfigurableHttpClient.kt -------------------------------------------------------------------------------- /internals/src/commonMain/kotlin/inkapplications/shade/internals/DummyConfigurationContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/internals/src/commonMain/kotlin/inkapplications/shade/internals/DummyConfigurationContainer.kt -------------------------------------------------------------------------------- /internals/src/commonMain/kotlin/inkapplications/shade/internals/HueHttpClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/internals/src/commonMain/kotlin/inkapplications/shade/internals/HueHttpClient.kt -------------------------------------------------------------------------------- /internals/src/commonMain/kotlin/inkapplications/shade/internals/HueStubClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/internals/src/commonMain/kotlin/inkapplications/shade/internals/HueStubClient.kt -------------------------------------------------------------------------------- /internals/src/commonMain/kotlin/inkapplications/shade/internals/InternalsModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/internals/src/commonMain/kotlin/inkapplications/shade/internals/InternalsModule.kt -------------------------------------------------------------------------------- /internals/src/commonMain/kotlin/inkapplications/shade/internals/PlatformModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/internals/src/commonMain/kotlin/inkapplications/shade/internals/PlatformModule.kt -------------------------------------------------------------------------------- /internals/src/commonMain/kotlin/inkapplications/shade/internals/SseClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/internals/src/commonMain/kotlin/inkapplications/shade/internals/SseClient.kt -------------------------------------------------------------------------------- /internals/src/commonTest/kotlin/inkapplications/shade/internals/CachedPropertyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/internals/src/commonTest/kotlin/inkapplications/shade/internals/CachedPropertyTest.kt -------------------------------------------------------------------------------- /internals/src/iosMain/kotlin/inkapplications/shade/internals/PlatformModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/internals/src/iosMain/kotlin/inkapplications/shade/internals/PlatformModule.kt -------------------------------------------------------------------------------- /internals/src/jsMain/kotlin/inkapplications/shade/internals/PlatformModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/internals/src/jsMain/kotlin/inkapplications/shade/internals/PlatformModule.kt -------------------------------------------------------------------------------- /internals/src/jvmMain/kotlin/inkapplications/shade/internals/OkHttpSseClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/internals/src/jvmMain/kotlin/inkapplications/shade/internals/OkHttpSseClient.kt -------------------------------------------------------------------------------- /internals/src/jvmMain/kotlin/inkapplications/shade/internals/PlatformModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/internals/src/jvmMain/kotlin/inkapplications/shade/internals/PlatformModule.kt -------------------------------------------------------------------------------- /internals/src/nativeMain/kotlin/inkapplications/shade/internals/PlatformModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/internals/src/nativeMain/kotlin/inkapplications/shade/internals/PlatformModule.kt -------------------------------------------------------------------------------- /internals/src/windowsMain/kotlin/inkapplications/shade/internals/PlatformModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/internals/src/windowsMain/kotlin/inkapplications/shade/internals/PlatformModule.kt -------------------------------------------------------------------------------- /kotlin-js-store/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/kotlin-js-store/yarn.lock -------------------------------------------------------------------------------- /lights/api/lights.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/api/lights.api -------------------------------------------------------------------------------- /lights/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/build.gradle.kts -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/LightControls.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/LightControls.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/ShadeLights.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/ShadeLights.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/ShadeLightsModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/ShadeLightsModule.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/events/ColorInfoEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/events/ColorInfoEvent.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/events/ColorTemperatureInfoEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/events/ColorTemperatureInfoEvent.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/events/DimmingInfoEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/events/DimmingInfoEvent.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/events/LightEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/events/LightEvent.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/parameters/AlertParameters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/parameters/AlertParameters.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/parameters/ColorParameters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/parameters/ColorParameters.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/parameters/DeltaAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/parameters/DeltaAction.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/parameters/DimmingDeltaParameters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/parameters/DimmingDeltaParameters.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/parameters/DimmingParameters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/parameters/DimmingParameters.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/parameters/DynamicsParameters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/parameters/DynamicsParameters.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/parameters/EffectsParameters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/parameters/EffectsParameters.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/parameters/GradientParameters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/parameters/GradientParameters.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/parameters/LightUpdateParameters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/parameters/LightUpdateParameters.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/parameters/TimedEffectsParameters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/parameters/TimedEffectsParameters.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/AlertEffectType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/AlertEffectType.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/AlertInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/AlertInfo.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/Chromaticity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/Chromaticity.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/ColorInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/ColorInfo.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/ColorPalette.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/ColorPalette.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/ColorTemperatureInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/ColorTemperatureInfo.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/ColorTemperaturePalette.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/ColorTemperaturePalette.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/ColorTemperatureRange.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/ColorTemperatureRange.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/ColorTemperatureValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/ColorTemperatureValue.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/ColorValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/ColorValue.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/DimmingInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/DimmingInfo.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/DimmingValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/DimmingValue.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/DynamicsStatus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/DynamicsStatus.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/Gamut.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/Gamut.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/GamutType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/GamutType.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/Gradient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/Gradient.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/GradientMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/GradientMode.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/GradientPoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/GradientPoint.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/GradientValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/GradientValue.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/Light.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/Light.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/LightDynamics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/LightDynamics.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/LightEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/LightEffect.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/LightMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/LightMode.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/LightPowerup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/LightPowerup.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/LightSignal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/LightSignal.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/LightSignalStatus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/LightSignalStatus.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/LightSignaling.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/LightSignaling.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/LightingEffectInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/LightingEffectInfo.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/PowerupColorState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/PowerupColorState.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/PowerupDimmingState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/PowerupDimmingState.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/PowerupPowerState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/PowerupPowerState.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/StandardTemperatures.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/StandardTemperatures.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/TimedLightEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/TimedLightEffect.kt -------------------------------------------------------------------------------- /lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/TimedLightingEffectInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/commonMain/kotlin/inkapplications/shade/lights/structures/TimedLightingEffectInfo.kt -------------------------------------------------------------------------------- /lights/src/jvmTest/kotlin/inkapplications/shade/lights/LightSerializationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/lights/src/jvmTest/kotlin/inkapplications/shade/lights/LightSerializationTest.kt -------------------------------------------------------------------------------- /resources/api/resources.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/resources/api/resources.api -------------------------------------------------------------------------------- /resources/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/resources/build.gradle.kts -------------------------------------------------------------------------------- /resources/src/commonMain/kotlin/inkapplications/shade/resources/ResourceControls.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/resources/src/commonMain/kotlin/inkapplications/shade/resources/ResourceControls.kt -------------------------------------------------------------------------------- /resources/src/commonMain/kotlin/inkapplications/shade/resources/ShadeResources.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/resources/src/commonMain/kotlin/inkapplications/shade/resources/ShadeResources.kt -------------------------------------------------------------------------------- /resources/src/commonMain/kotlin/inkapplications/shade/resources/ShadeResourcesModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/resources/src/commonMain/kotlin/inkapplications/shade/resources/ShadeResourcesModule.kt -------------------------------------------------------------------------------- /resources/src/commonMain/kotlin/inkapplications/shade/resources/structures/Resource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/resources/src/commonMain/kotlin/inkapplications/shade/resources/structures/Resource.kt -------------------------------------------------------------------------------- /rooms/api/rooms.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/rooms/api/rooms.api -------------------------------------------------------------------------------- /rooms/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/rooms/build.gradle.kts -------------------------------------------------------------------------------- /rooms/src/commonMain/kotlin/inkapplications/shade/rooms/RoomControls.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/rooms/src/commonMain/kotlin/inkapplications/shade/rooms/RoomControls.kt -------------------------------------------------------------------------------- /rooms/src/commonMain/kotlin/inkapplications/shade/rooms/ShadeRooms.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/rooms/src/commonMain/kotlin/inkapplications/shade/rooms/ShadeRooms.kt -------------------------------------------------------------------------------- /rooms/src/commonMain/kotlin/inkapplications/shade/rooms/ShadeRoomsModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/rooms/src/commonMain/kotlin/inkapplications/shade/rooms/ShadeRoomsModule.kt -------------------------------------------------------------------------------- /rooms/src/commonMain/kotlin/inkapplications/shade/rooms/parameters/RoomCreateParameters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/rooms/src/commonMain/kotlin/inkapplications/shade/rooms/parameters/RoomCreateParameters.kt -------------------------------------------------------------------------------- /rooms/src/commonMain/kotlin/inkapplications/shade/rooms/parameters/RoomUpdateParameters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/rooms/src/commonMain/kotlin/inkapplications/shade/rooms/parameters/RoomUpdateParameters.kt -------------------------------------------------------------------------------- /rooms/src/commonMain/kotlin/inkapplications/shade/rooms/structures/Room.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/rooms/src/commonMain/kotlin/inkapplications/shade/rooms/structures/Room.kt -------------------------------------------------------------------------------- /rooms/src/jvmTest/kotlin/inkapplications/shade/rooms/RoomCreateParametersSerializationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/rooms/src/jvmTest/kotlin/inkapplications/shade/rooms/RoomCreateParametersSerializationTest.kt -------------------------------------------------------------------------------- /rooms/src/jvmTest/kotlin/inkapplications/shade/rooms/RoomSerializationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/rooms/src/jvmTest/kotlin/inkapplications/shade/rooms/RoomSerializationTest.kt -------------------------------------------------------------------------------- /rooms/src/jvmTest/kotlin/inkapplications/shade/rooms/RoomUpdateParametersSerializationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/rooms/src/jvmTest/kotlin/inkapplications/shade/rooms/RoomUpdateParametersSerializationTest.kt -------------------------------------------------------------------------------- /scenes/api/scenes.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/scenes/api/scenes.api -------------------------------------------------------------------------------- /scenes/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/scenes/build.gradle.kts -------------------------------------------------------------------------------- /scenes/src/commonMain/kotlin/inkapplications/shade/scenes/SceneControls.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/scenes/src/commonMain/kotlin/inkapplications/shade/scenes/SceneControls.kt -------------------------------------------------------------------------------- /scenes/src/commonMain/kotlin/inkapplications/shade/scenes/ShadeScenes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/scenes/src/commonMain/kotlin/inkapplications/shade/scenes/ShadeScenes.kt -------------------------------------------------------------------------------- /scenes/src/commonMain/kotlin/inkapplications/shade/scenes/ShadeScenesModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/scenes/src/commonMain/kotlin/inkapplications/shade/scenes/ShadeScenesModule.kt -------------------------------------------------------------------------------- /scenes/src/commonMain/kotlin/inkapplications/shade/scenes/parameters/SceneCreateParameters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/scenes/src/commonMain/kotlin/inkapplications/shade/scenes/parameters/SceneCreateParameters.kt -------------------------------------------------------------------------------- /scenes/src/commonMain/kotlin/inkapplications/shade/scenes/parameters/SceneUpdateParameters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/scenes/src/commonMain/kotlin/inkapplications/shade/scenes/parameters/SceneUpdateParameters.kt -------------------------------------------------------------------------------- /scenes/src/commonMain/kotlin/inkapplications/shade/scenes/structures/Scene.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/scenes/src/commonMain/kotlin/inkapplications/shade/scenes/structures/Scene.kt -------------------------------------------------------------------------------- /scenes/src/commonMain/kotlin/inkapplications/shade/scenes/structures/SceneAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/scenes/src/commonMain/kotlin/inkapplications/shade/scenes/structures/SceneAction.kt -------------------------------------------------------------------------------- /scenes/src/commonMain/kotlin/inkapplications/shade/scenes/structures/SceneActionReference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/scenes/src/commonMain/kotlin/inkapplications/shade/scenes/structures/SceneActionReference.kt -------------------------------------------------------------------------------- /scenes/src/commonMain/kotlin/inkapplications/shade/scenes/structures/SceneMetadata.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/scenes/src/commonMain/kotlin/inkapplications/shade/scenes/structures/SceneMetadata.kt -------------------------------------------------------------------------------- /scenes/src/commonMain/kotlin/inkapplications/shade/scenes/structures/ScenePalette.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/scenes/src/commonMain/kotlin/inkapplications/shade/scenes/structures/ScenePalette.kt -------------------------------------------------------------------------------- /scenes/src/commonMain/kotlin/inkapplications/shade/scenes/structures/SceneRecall.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/scenes/src/commonMain/kotlin/inkapplications/shade/scenes/structures/SceneRecall.kt -------------------------------------------------------------------------------- /scenes/src/commonMain/kotlin/inkapplications/shade/scenes/structures/SceneRecallAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/scenes/src/commonMain/kotlin/inkapplications/shade/scenes/structures/SceneRecallAction.kt -------------------------------------------------------------------------------- /scenes/src/commonMain/kotlin/inkapplications/shade/scenes/structures/SceneRecallStatus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/scenes/src/commonMain/kotlin/inkapplications/shade/scenes/structures/SceneRecallStatus.kt -------------------------------------------------------------------------------- /scenes/src/jvmTest/kotlin/inkapplications/shade/scenes/parameters/SceneCreateSerializerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/scenes/src/jvmTest/kotlin/inkapplications/shade/scenes/parameters/SceneCreateSerializerTest.kt -------------------------------------------------------------------------------- /scenes/src/jvmTest/kotlin/inkapplications/shade/scenes/parameters/SceneUpdateSerializerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/scenes/src/jvmTest/kotlin/inkapplications/shade/scenes/parameters/SceneUpdateSerializerTest.kt -------------------------------------------------------------------------------- /scenes/src/jvmTest/kotlin/inkapplications/shade/scenes/structures/SceneSerializerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/scenes/src/jvmTest/kotlin/inkapplications/shade/scenes/structures/SceneSerializerTest.kt -------------------------------------------------------------------------------- /serialization/api/serialization.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/serialization/api/serialization.api -------------------------------------------------------------------------------- /serialization/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/serialization/build.gradle.kts -------------------------------------------------------------------------------- /serialization/src/commonMain/kotlin/inkapplications/shade/serialization/DelegateSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/serialization/src/commonMain/kotlin/inkapplications/shade/serialization/DelegateSerializer.kt -------------------------------------------------------------------------------- /serialization/src/commonMain/kotlin/inkapplications/shade/serialization/HueError.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/serialization/src/commonMain/kotlin/inkapplications/shade/serialization/HueError.kt -------------------------------------------------------------------------------- /serialization/src/commonMain/kotlin/inkapplications/shade/serialization/HueResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/serialization/src/commonMain/kotlin/inkapplications/shade/serialization/HueResponse.kt -------------------------------------------------------------------------------- /serialization/src/commonMain/kotlin/inkapplications/shade/serialization/MiredSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/serialization/src/commonMain/kotlin/inkapplications/shade/serialization/MiredSerializer.kt -------------------------------------------------------------------------------- /serialization/src/commonMain/kotlin/inkapplications/shade/serialization/V1HueError.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/serialization/src/commonMain/kotlin/inkapplications/shade/serialization/V1HueError.kt -------------------------------------------------------------------------------- /serialization/src/commonMain/kotlin/inkapplications/shade/serialization/V1Response.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/serialization/src/commonMain/kotlin/inkapplications/shade/serialization/V1Response.kt -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /shade-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/shade-cli -------------------------------------------------------------------------------- /structures/api/structures.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/structures/api/structures.api -------------------------------------------------------------------------------- /structures/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/structures/build.gradle.kts -------------------------------------------------------------------------------- /structures/src/commonMain/kotlin/inkapplications/shade/structures/AuthToken.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/structures/src/commonMain/kotlin/inkapplications/shade/structures/AuthToken.kt -------------------------------------------------------------------------------- /structures/src/commonMain/kotlin/inkapplications/shade/structures/HueConfigurationContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/structures/src/commonMain/kotlin/inkapplications/shade/structures/HueConfigurationContainer.kt -------------------------------------------------------------------------------- /structures/src/commonMain/kotlin/inkapplications/shade/structures/PowerInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/structures/src/commonMain/kotlin/inkapplications/shade/structures/PowerInfo.kt -------------------------------------------------------------------------------- /structures/src/commonMain/kotlin/inkapplications/shade/structures/PowerValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/structures/src/commonMain/kotlin/inkapplications/shade/structures/PowerValue.kt -------------------------------------------------------------------------------- /structures/src/commonMain/kotlin/inkapplications/shade/structures/ResourceId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/structures/src/commonMain/kotlin/inkapplications/shade/structures/ResourceId.kt -------------------------------------------------------------------------------- /structures/src/commonMain/kotlin/inkapplications/shade/structures/ResourceReference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/structures/src/commonMain/kotlin/inkapplications/shade/structures/ResourceReference.kt -------------------------------------------------------------------------------- /structures/src/commonMain/kotlin/inkapplications/shade/structures/ResourceType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/structures/src/commonMain/kotlin/inkapplications/shade/structures/ResourceType.kt -------------------------------------------------------------------------------- /structures/src/commonMain/kotlin/inkapplications/shade/structures/SecurityStrategy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/structures/src/commonMain/kotlin/inkapplications/shade/structures/SecurityStrategy.kt -------------------------------------------------------------------------------- /structures/src/commonMain/kotlin/inkapplications/shade/structures/SegmentArchetype.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/structures/src/commonMain/kotlin/inkapplications/shade/structures/SegmentArchetype.kt -------------------------------------------------------------------------------- /structures/src/commonMain/kotlin/inkapplications/shade/structures/SegmentMetadata.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/structures/src/commonMain/kotlin/inkapplications/shade/structures/SegmentMetadata.kt -------------------------------------------------------------------------------- /structures/src/commonMain/kotlin/inkapplications/shade/structures/SegmentMetadataUpdate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/structures/src/commonMain/kotlin/inkapplications/shade/structures/SegmentMetadataUpdate.kt -------------------------------------------------------------------------------- /structures/src/commonMain/kotlin/inkapplications/shade/structures/ShadeExceptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/structures/src/commonMain/kotlin/inkapplications/shade/structures/ShadeExceptions.kt -------------------------------------------------------------------------------- /structures/src/commonMain/kotlin/inkapplications/shade/structures/UndocumentedApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/structures/src/commonMain/kotlin/inkapplications/shade/structures/UndocumentedApi.kt -------------------------------------------------------------------------------- /structures/src/commonMain/kotlin/inkapplications/shade/structures/UnknownEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/structures/src/commonMain/kotlin/inkapplications/shade/structures/UnknownEvent.kt -------------------------------------------------------------------------------- /structures/src/commonMain/kotlin/inkapplications/shade/structures/VersionString.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/structures/src/commonMain/kotlin/inkapplications/shade/structures/VersionString.kt -------------------------------------------------------------------------------- /structures/src/commonMain/kotlin/inkapplications/shade/structures/parameters/PowerParameters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/structures/src/commonMain/kotlin/inkapplications/shade/structures/parameters/PowerParameters.kt -------------------------------------------------------------------------------- /structures/src/jvmMain/kotlin/inkapplications/shade/structures/PropertiesFileConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/structures/src/jvmMain/kotlin/inkapplications/shade/structures/PropertiesFileConfiguration.kt -------------------------------------------------------------------------------- /structures/src/jvmTest/kotlin/inkapplications/shade/structures/VersionStringTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/structures/src/jvmTest/kotlin/inkapplications/shade/structures/VersionStringTest.kt -------------------------------------------------------------------------------- /zones/api/zones.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/zones/api/zones.api -------------------------------------------------------------------------------- /zones/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/zones/build.gradle.kts -------------------------------------------------------------------------------- /zones/src/commonMain/kotlin/inkapplications/shade/zones/ShadeZones.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/zones/src/commonMain/kotlin/inkapplications/shade/zones/ShadeZones.kt -------------------------------------------------------------------------------- /zones/src/commonMain/kotlin/inkapplications/shade/zones/ShadeZonesModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/zones/src/commonMain/kotlin/inkapplications/shade/zones/ShadeZonesModule.kt -------------------------------------------------------------------------------- /zones/src/commonMain/kotlin/inkapplications/shade/zones/ZoneControls.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/zones/src/commonMain/kotlin/inkapplications/shade/zones/ZoneControls.kt -------------------------------------------------------------------------------- /zones/src/commonMain/kotlin/inkapplications/shade/zones/parameters/ZoneCreateParameters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/zones/src/commonMain/kotlin/inkapplications/shade/zones/parameters/ZoneCreateParameters.kt -------------------------------------------------------------------------------- /zones/src/commonMain/kotlin/inkapplications/shade/zones/parameters/ZoneUpdateParameters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/zones/src/commonMain/kotlin/inkapplications/shade/zones/parameters/ZoneUpdateParameters.kt -------------------------------------------------------------------------------- /zones/src/commonMain/kotlin/inkapplications/shade/zones/structures/Zone.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/zones/src/commonMain/kotlin/inkapplications/shade/zones/structures/Zone.kt -------------------------------------------------------------------------------- /zones/src/jvmTest/kotlin/inkapplications/shade/zones/ZoneCreateParametersSerializationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/zones/src/jvmTest/kotlin/inkapplications/shade/zones/ZoneCreateParametersSerializationTest.kt -------------------------------------------------------------------------------- /zones/src/jvmTest/kotlin/inkapplications/shade/zones/ZoneSerializationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/zones/src/jvmTest/kotlin/inkapplications/shade/zones/ZoneSerializationTest.kt -------------------------------------------------------------------------------- /zones/src/jvmTest/kotlin/inkapplications/shade/zones/ZoneUpdateParametersSerializationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InkApplications/Shade/HEAD/zones/src/jvmTest/kotlin/inkapplications/shade/zones/ZoneUpdateParametersSerializationTest.kt --------------------------------------------------------------------------------