├── .gitignore ├── .idea ├── .gitignore ├── misc.xml ├── modules.xml └── vcs.xml ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── LICENSE ├── Makefile ├── README.md ├── api ├── README.md ├── go │ └── vocab │ │ └── vocab.go ├── js │ └── vocab │ │ └── vocab.js ├── py │ └── vocab │ │ └── vocab.py └── src │ └── vocab │ ├── ht-action-classes.yaml │ ├── ht-property-classes.yaml │ ├── ht-thing-classes.yaml │ ├── ht-unit-classes.yaml │ └── wot-vocab.yaml ├── bindings ├── ipnet │ ├── IpNet_test.go │ ├── README.md │ ├── cmd │ │ └── main.go │ ├── config │ │ ├── IPNetConfig.go │ │ └── ipnet.yaml │ └── service │ │ ├── IPNetBinding.go │ │ ├── NmapAPI.go │ │ ├── NmapAPI_test.go │ │ ├── Poll.go │ │ ├── PubTD.go │ │ ├── PubValues.go │ │ └── arp.go ├── isy99x │ ├── Isy99x_test.go │ ├── README.md │ ├── cmd │ │ └── main.go │ ├── config │ │ ├── Isy99xConfig.go │ │ └── isy99x.yaml │ ├── docs │ │ ├── 2413S_QSG.pdf │ │ ├── INSTEON_Command_Tables_20070925a.pdf │ │ ├── INSTEON_Developers_Guide_20070816a.pdf │ │ ├── INSTEON_Modem_Developer's_Guide_20071012a.pdf │ │ ├── ISY Developers API REST Interface - Universal Devices, Inc. Wiki.pdf │ │ ├── ISY-JSDK-3.2.6.zip │ │ ├── ISY-WS-SDK-Manual-INSTEON-2.8.11.pdf │ │ ├── ISY-WSDK-3.3.10.zip │ │ ├── ISYEventViewer_src.zip │ │ ├── Product List.xlsx │ │ ├── The+ISY994+Developer+Cookbook.pdf │ │ ├── developer-product-list-012014.pdf │ │ └── product list.csv │ ├── service │ │ ├── HandleActionRequest.go │ │ ├── HandleConfigRequest.go │ │ ├── IsyBinding.go │ │ ├── IsyDimmerThing.go │ │ ├── IsyGatewayThing.go │ │ ├── IsySensorThing.go │ │ ├── IsySwitchThing.go │ │ ├── IsyThing.go │ │ ├── LoadProductMap.go │ │ ├── PublishTDs.go │ │ ├── PublishThingValues.go │ │ └── isy │ │ │ ├── IsyAPI.go │ │ │ └── IsyNode.go │ ├── tdd │ │ └── isy99xGateway.json │ └── test │ │ ├── isy99-identity.json │ │ ├── isy99-nodes.json │ │ ├── isy99.yaml │ │ ├── messenger.yaml │ │ └── rest │ │ ├── config.xml │ │ ├── network.xml │ │ ├── nodes.xml │ │ ├── status.xml │ │ ├── sys.xml │ │ └── time.xml ├── modbus │ ├── README.md │ └── docs │ │ └── Modbus_Application_Protocol_V1_1b3.pdf ├── mqttc │ └── README.md ├── owserver │ ├── OWServer_test.go │ ├── README.md │ ├── cmd │ │ └── main.go │ ├── config │ │ ├── OWServerConfig.go │ │ └── owserver.yaml │ ├── docs │ │ ├── EDS_MIB_V1.8.mib │ │ ├── EDS_MIB_V2.5.mib │ │ ├── EDS_Post_Server_Java.zip │ │ ├── EDS_Writer_Java.zip │ │ ├── EN OW-SERVER-ENET-2-Getting Started-A4.pdf │ │ ├── EN+UserMan+OW-SERVER-ENET-2+1.1.pdf │ │ ├── owserver-simulation.xml │ │ └── readme - EDS Scanner Python.pdf │ └── service │ │ ├── HandleRequest.go │ │ ├── NodeInfo.go │ │ ├── OWServerBinding.go │ │ ├── PublishNodeTDs.go │ │ ├── PublishNodeValues.go │ │ └── eds │ │ ├── Discover.go │ │ ├── EdsAPI.go │ │ ├── EdsAPI_test.go │ │ ├── EdsNode.go │ │ ├── ParseNodes.go │ │ └── ReadEds.go ├── weather │ ├── README.md │ ├── Weather_test.go │ ├── cmd │ │ └── main.go │ ├── config │ │ ├── WeatherConfig.go │ │ └── weather.yaml │ ├── providers │ │ ├── IWeatherProvider.go │ │ └── OpenMeteoProvider.go │ └── service │ │ ├── HandleRequests.go │ │ ├── LocationStore.go │ │ ├── PublishTDs.go │ │ ├── PublishValues.go │ │ └── WeatherBinding.go └── zwavejs │ ├── .gitignore │ ├── .vscode │ └── launch.json │ ├── Makefile │ ├── README.md │ ├── build.sh │ ├── config │ └── zwavejs-template.yaml │ ├── docs │ └── design.md │ ├── esbuild.cjs │ ├── hivelib │ ├── package-lock.json │ ├── package.json │ ├── package.json.works │ ├── src │ ├── BindingConfig.ts │ ├── NodeValues.ts │ ├── ZWAPI.ts │ ├── ZWaveJSBinding.ts │ ├── createControllerTD.ts │ ├── createNodeTD.ts │ ├── getAffordanceFromVid.ts │ ├── getDeviceType.ts │ ├── getLogger.ts │ ├── handleAction.ts │ ├── handleWriteProperty.ts │ ├── logVid.ts │ ├── main.ts │ ├── serial │ │ └── findserialport.ts │ ├── setValue.ts │ └── tests │ │ └── hubconnect_test.ts │ ├── tsconfig.json │ ├── tsconfig.json.sav │ ├── zwavejs.code-workspace │ └── zwavejs.iml ├── cmd ├── genkey.go ├── genvocab │ ├── main.go │ └── vocab │ │ ├── GenVocabGo.go │ │ ├── GenVocabJS.go │ │ ├── GenVocabPy.go │ │ └── LoadVocab.go ├── hubcli │ ├── README.md │ ├── authcli │ │ ├── AuthAddUserCommand.go │ │ ├── AuthSetPassCommand.go │ │ └── AuthSetRoleCommand.go │ ├── certs │ │ ├── CreateCACommand.go │ │ └── ViewCACommand.go │ ├── directorycli │ │ ├── DirectoryCommands.go │ │ └── DiscoCommands.go │ ├── historycli │ │ └── HistoryCommands.go │ ├── idprovcli │ │ └── IdProvCommands.go │ ├── launchercli │ │ └── LauncherCommands.go │ ├── main.go │ └── pubsubcli │ │ ├── PubCommands.go │ │ └── SubCommands.go └── tm2go │ ├── README.md │ ├── genagent │ ├── GenAgent.go │ ├── GenServiceAgent.go │ └── GenServiceInterface.go │ ├── genconsumer │ └── GenServiceConsumer.go │ ├── gentypes │ ├── GenActionStructs.go │ ├── GenDataSchema.go │ ├── GenSchemaDefinitions.go │ ├── GenThingConstants.go │ ├── GenTypes.go │ ├── Names.go │ └── SL.go │ ├── listtms │ └── ListTMsCommand.go │ ├── main.go │ └── main_test.go ├── docs ├── INSTALL.md ├── Presentation 2025.pdf ├── Presentation 2025.pptx ├── README-TD.md ├── TD Challenges.md ├── action-flow.jpg ├── action-sequence.jpg ├── design-overview.md ├── digitwin runtime.jpg ├── event-flow.jpg ├── event-sequence.jpg ├── go2wot overview.png ├── hiveot overview.jpg ├── hiveot.drawio ├── hiveot.png ├── hiveot.svg ├── hub digitwin.jpg ├── hub overview.jpg ├── integrations.png ├── packages.md ├── plugins.jpg └── thoughts.md ├── go.mod ├── go.sum ├── hub.code-workspace ├── init └── hiveot.service ├── lib ├── consumedthing │ ├── ConsumedThing.go │ ├── ConsumedThingsDirectory.go │ ├── DataSchemaValue.go │ ├── InteractionInput.go │ ├── InteractionOutput.go │ ├── InteractionOutput_test.go │ └── Subscription.go ├── exposedthing │ ├── HandleRequest.go │ └── ThingValues.go ├── hubagent │ ├── AgentHelper.go │ ├── HandleRequestMessage.go │ └── HandleRequestMessage_test.go └── testenv │ ├── StartMqttTestServer.go.old │ └── TestServer.go ├── libjs ├── .gitignore ├── .vscode │ └── launch.json ├── README.md ├── jest.config.js ├── package-lock.json ├── package.json ├── src │ ├── api │ ├── appenv │ │ ├── NodeEnvironment.ts │ │ └── WaitForSignal.ts │ ├── keys │ │ ├── ECDSAKey.ts │ │ ├── Ed25519Key.ts │ │ ├── IHiveKey.ts │ │ ├── keys.test.ts │ │ └── test │ │ │ ├── crypto-test.ts.old │ │ │ ├── elliptic_test.ts.old │ │ │ └── testkeys.ts.old │ ├── messaging │ │ ├── ConnectToHub.ts │ │ ├── IAgentConnection.ts │ │ ├── IConsumerConnection.ts │ │ ├── Messages.ts │ │ ├── httpclient │ │ │ ├── HttpSSEClient.ts │ │ │ └── connectSSE.ts │ │ ├── hubclient.test.ts │ │ └── locateHub.ts │ └── wot │ │ ├── TD.ts │ │ ├── dataSchema.ts │ │ └── makeDigitwinThingID.ts └── tsconfig.json ├── runtime ├── README-runtime.md ├── Runtime.go ├── RuntimeConfig.go ├── RuntimeDirectory_test.go ├── RuntimeValues_test.go ├── Runtime_test.go ├── authn │ ├── AuthnAdmin_test.go │ ├── AuthnUser_test.go │ ├── Authn_test.go │ ├── README.md │ ├── api │ │ ├── AdminAgentAPI.go │ │ ├── AdminConsumerAPI.go │ │ ├── AdminTypes.go │ │ ├── UserAgentAPI.go │ │ ├── UserConsumerAPI.go │ │ └── UserTypes.go │ ├── authenticator │ │ ├── Authenticator_test.go │ │ ├── JWTAuthenticator.go │ │ └── PasetoAuthenticator.go │ ├── authnstore │ │ ├── AuthnFileStore.go │ │ ├── AuthnFileStore_test.go │ │ └── IAuthnStore.go │ ├── config │ │ └── AuthnConfig.go │ ├── service │ │ ├── AuthnAdminService.go │ │ ├── AuthnAgent.go │ │ ├── AuthnService.go │ │ ├── AuthnUserService.go │ │ └── LoadCreateKey.go │ ├── sessions │ │ ├── SessionManager.go │ │ └── SessionManager_test.go │ └── tm │ │ ├── admin.json │ │ └── user.json ├── authz │ ├── Authz_test.go │ ├── README.md │ ├── api │ │ ├── AdminAgentAPI.go │ │ ├── AdminConsumerAPI.go │ │ ├── AdminTypes.go │ │ ├── UserAgentAPI.go │ │ ├── UserConsumerAPI.go │ │ └── UserTypes.go │ ├── service │ │ ├── AuthzAgent.go │ │ ├── AuthzConfig.go │ │ ├── AuthzService.go │ │ └── HasPermission.go │ └── tm │ │ ├── Admin.json │ │ └── User.json ├── cmd │ └── main.go ├── digitwin │ ├── DigitwinAction_test.go │ ├── DigitwinBench_test.go │ ├── DigitwinDirectory_test.go │ ├── DigitwinEvent_test.go │ ├── DigitwinProperty_test.go │ ├── DigitwinRouter_test.go │ ├── DigitwinService_test.go │ ├── DummyTransportBinding_test.go │ ├── api │ │ ├── DirectoryAgentAPI.go │ │ ├── DirectoryConsumerAPI.go │ │ ├── DirectoryTypes.go │ │ ├── ValuesAgentAPI.go │ │ ├── ValuesConsumerAPI.go │ │ └── ValuesTypes.go │ ├── dthing │ │ └── DigitwinThing.go │ ├── router │ │ ├── AuthFlow.go │ │ ├── DigitwinRouter.go │ │ ├── IDigitwinRouter.go │ │ ├── NotificationFlow.go │ │ ├── RequestFlow.go │ │ └── ResponseFlow.go │ ├── service │ │ ├── DigitwinAgent.go │ │ ├── DigitwinService.go │ │ ├── DirectoryService.go │ │ └── ValuesService.go │ ├── store │ │ ├── DigitwinInstance.go │ │ ├── DigitwinStore.go │ │ └── DigitwinStore_test.go │ └── tm │ │ ├── Directory.json │ │ └── Values.json └── runtime.yaml └── services ├── certs ├── Certs_test.go ├── README.md ├── certsapi │ └── AdminCertsAPI.go ├── certsclient │ └── ManageCertsClient.go ├── cmd │ └── main.go ├── service │ ├── letsencrypt │ │ └── README.md │ └── selfsigned │ │ ├── CertsAdminService.go │ │ ├── CertsAgent.go │ │ └── createClientCert.go └── tm │ └── certs.json.todo ├── go2rtc ├── go2rtc.yaml └── go2rtc_linux_amd64 ├── history ├── HistoryBench_test.go ├── History_test.go ├── README.md ├── cmd │ └── main.go ├── config │ ├── HistoryConfig.go │ └── history.yaml ├── historyapi │ ├── ManageHistoryAPI.go │ └── ReadHistoryAPI.go ├── historyclient │ ├── HistoryCursorClient.go │ ├── ManageHistoryClient.go │ └── ReadHistoryClient.go └── service │ ├── AddHistory.go │ ├── HistoryAgent.go │ ├── HistoryService.go │ ├── ManageHistory.go │ ├── ReadHistory.go │ └── ReadHistoryCursor.go ├── hiveoview ├── cmd │ └── main.go ├── config │ ├── HiveoviewConfig.go │ └── hiveoview.yaml ├── docs │ └── Sessions.md ├── hiveoview-README.md ├── src │ ├── constants.go │ ├── embedded.go │ ├── service │ │ ├── CreateRoutes.go │ │ ├── HiveoviewService.go │ │ ├── PublishServiceTD.go │ │ └── SseServe.go │ ├── session │ │ ├── ClientData.go │ │ ├── DashboardModel.go │ │ ├── SessionContext.go │ │ ├── SessionCookie.go │ │ ├── SessionLogout.go │ │ ├── SessionManager.go │ │ └── WebClientSession.go │ ├── static │ │ ├── canvas-gauge-2.1.7.min.js │ │ ├── chartjs-4.4.3.min.js │ │ ├── chartjs-adapter-luxon-1.3.1.js │ │ ├── echarts.min.js │ │ ├── gridstack-12.0.0.min.css │ │ ├── gridstack-all.12.0.0.min.js │ │ ├── hiveot.png │ │ ├── hiveot.svg │ │ ├── htmx.org@2.0.4.js │ │ ├── iconify-icon.min.js │ │ ├── luxon-3.4.4.min.js │ │ ├── noimage.svg │ │ ├── pico-v2.0.6.css │ │ ├── pico-v2.0.6.slate.css │ │ ├── sse-2.2.1.js │ │ └── vocab.js │ ├── views │ │ ├── TemplateManager.go │ │ ├── about │ │ │ ├── AboutPage.go │ │ │ └── AboutPage.gohtml │ │ ├── app │ │ │ ├── App.go │ │ │ ├── App.gohtml │ │ │ ├── AppHead.go │ │ │ ├── AppHead.gohtml │ │ │ ├── ConnectStatus.go │ │ │ ├── ConnectStatus.gohtml │ │ │ ├── appMenu.gohtml │ │ │ └── dashboardMenu.gohtml │ │ ├── base.gohtml │ │ ├── dashboard │ │ │ ├── DashboardImport.go │ │ │ ├── DashboardImport.gohtml │ │ │ ├── DashboardPage.go │ │ │ ├── DashboardPage.gohtml │ │ │ ├── DeleteDashboard.go │ │ │ ├── DeleteDashboard.gohtml │ │ │ ├── EditDashboard.go │ │ │ ├── EditDashboard.gohtml │ │ │ └── getDashboardContext.go │ │ ├── directory │ │ │ ├── DeleteTD.go │ │ │ ├── DeleteTD.gohtml │ │ │ ├── DirectoryPage.go │ │ │ ├── DirectoryPage.gohtml │ │ │ ├── GroupByAgent.go │ │ │ └── directoryGroup.gohtml │ │ ├── history │ │ │ ├── HistoryPage.go │ │ │ ├── HistoryPage.gohtml │ │ │ ├── HistoryTemplateData.go │ │ │ ├── historyChart.gohtml │ │ │ ├── historyTable.gohtml │ │ │ └── renderLatestValueRow.go │ │ ├── login │ │ │ ├── PostLogin.go │ │ │ ├── login.go │ │ │ └── login.gohtml │ │ ├── status │ │ │ ├── StatusPage.go │ │ │ └── StatusPage.gohtml │ │ ├── thing │ │ │ ├── ActionRequest.go │ │ │ ├── ActionRequest.gohtml │ │ │ ├── Age.go │ │ │ ├── EditProperty.go │ │ │ ├── EditProperty.gohtml │ │ │ ├── RenderInputValue.gohtml │ │ │ ├── RenderOutputValue.gohtml │ │ │ └── RenderThingRaw.go │ │ ├── thingdetails │ │ │ ├── ThingDetailsPage.go │ │ │ ├── ThingDetailsPage.gohtml │ │ │ ├── actionList.gohtml │ │ │ ├── attrList.gohtml │ │ │ ├── configList.gohtml │ │ │ ├── eventList.gohtml │ │ │ ├── eventListRow.gohtml │ │ │ └── eventObjectRows.gohtml │ │ └── tile │ │ │ ├── CopyPastTile.go │ │ │ ├── DeleteTile.go │ │ │ ├── DeleteTile.gohtml │ │ │ ├── EditTile.go │ │ │ ├── EditTile.gohtml │ │ │ ├── GetTileContext.go │ │ │ ├── RenderTile.go │ │ │ ├── RenderTile.gohtml │ │ │ ├── SelectSources.go │ │ │ ├── SelectSources.gohtml │ │ │ ├── card │ │ │ ├── RenderCardInput.gohtml │ │ │ └── TextCard.gohtml │ │ │ ├── chart │ │ │ └── Chart.gohtml │ │ │ ├── gauge │ │ │ ├── EditGauge.gohtml │ │ │ └── GaugeCard.gohtml │ │ │ ├── image │ │ │ └── ImageCard.gohtml │ │ │ ├── renderTileSourceRow.go │ │ │ ├── selectSourcesRow.gohtml │ │ │ └── tileMenu.gohtml │ └── webcomp │ │ ├── components.js │ │ ├── h-brand.js │ │ ├── h-classes.css │ │ ├── h-dark-toggle.js │ │ ├── h-details-group.js │ │ ├── h-device-icon.js │ │ ├── h-dropdown.js │ │ ├── h-gauge.js │ │ ├── h-grid-table.js │ │ ├── h-img.js │ │ ├── h-list.js │ │ ├── h-loading.js │ │ ├── h-modal.js │ │ ├── h-modal2.js.old │ │ ├── h-select.js │ │ ├── h-theme.css │ │ ├── h-timechart.js │ │ ├── h-toast.js │ │ └── h-utils.js ├── test │ ├── Hiveov_test.go │ ├── components.html │ ├── test-dialog.html │ ├── test-dialog1.html.sav │ └── test.html └── yarn.lock ├── idprov ├── IdProv_test.go ├── README.md ├── cmd │ └── main.go ├── idprovapi │ ├── IdProvUser.go │ └── ManageIdProv.go ├── idprovclient │ ├── DiscoveryIdProvClient.go.old │ ├── ManageIdProvClient.go │ └── SubmitIdProvRequest.go └── service │ ├── IdProvAgent.go │ ├── IdProvHttpServer.go │ ├── IdProvService.go │ └── ManageIdProvService.go └── launcher ├── Launcher_test.go ├── README.md ├── WaitForSignal_test.go ├── api ├── AdminAgentAPI.go ├── AdminConsumerAPI.go └── AdminTypes.go ├── cmd └── main.go ├── config ├── LauncherConfig.go └── launcher.yaml ├── launcherapi └── LauncherAPI.go.org ├── launcherclient └── LauncherClient.go.org ├── service ├── LauncherService.go ├── StartStopPlugins.go ├── Stop.go └── WaitForSignal.go └── tm └── admin.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "makefile.configureOnOpen": false 3 | } -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/README.md -------------------------------------------------------------------------------- /api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/api/README.md -------------------------------------------------------------------------------- /api/go/vocab/vocab.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/api/go/vocab/vocab.go -------------------------------------------------------------------------------- /api/js/vocab/vocab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/api/js/vocab/vocab.js -------------------------------------------------------------------------------- /api/py/vocab/vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/api/py/vocab/vocab.py -------------------------------------------------------------------------------- /api/src/vocab/ht-action-classes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/api/src/vocab/ht-action-classes.yaml -------------------------------------------------------------------------------- /api/src/vocab/ht-property-classes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/api/src/vocab/ht-property-classes.yaml -------------------------------------------------------------------------------- /api/src/vocab/ht-thing-classes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/api/src/vocab/ht-thing-classes.yaml -------------------------------------------------------------------------------- /api/src/vocab/ht-unit-classes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/api/src/vocab/ht-unit-classes.yaml -------------------------------------------------------------------------------- /api/src/vocab/wot-vocab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/api/src/vocab/wot-vocab.yaml -------------------------------------------------------------------------------- /bindings/ipnet/IpNet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/ipnet/IpNet_test.go -------------------------------------------------------------------------------- /bindings/ipnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/ipnet/README.md -------------------------------------------------------------------------------- /bindings/ipnet/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/ipnet/cmd/main.go -------------------------------------------------------------------------------- /bindings/ipnet/config/IPNetConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/ipnet/config/IPNetConfig.go -------------------------------------------------------------------------------- /bindings/ipnet/config/ipnet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/ipnet/config/ipnet.yaml -------------------------------------------------------------------------------- /bindings/ipnet/service/IPNetBinding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/ipnet/service/IPNetBinding.go -------------------------------------------------------------------------------- /bindings/ipnet/service/NmapAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/ipnet/service/NmapAPI.go -------------------------------------------------------------------------------- /bindings/ipnet/service/NmapAPI_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/ipnet/service/NmapAPI_test.go -------------------------------------------------------------------------------- /bindings/ipnet/service/Poll.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/ipnet/service/Poll.go -------------------------------------------------------------------------------- /bindings/ipnet/service/PubTD.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/ipnet/service/PubTD.go -------------------------------------------------------------------------------- /bindings/ipnet/service/PubValues.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/ipnet/service/PubValues.go -------------------------------------------------------------------------------- /bindings/ipnet/service/arp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/ipnet/service/arp.go -------------------------------------------------------------------------------- /bindings/isy99x/Isy99x_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/Isy99x_test.go -------------------------------------------------------------------------------- /bindings/isy99x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/README.md -------------------------------------------------------------------------------- /bindings/isy99x/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/cmd/main.go -------------------------------------------------------------------------------- /bindings/isy99x/config/Isy99xConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/config/Isy99xConfig.go -------------------------------------------------------------------------------- /bindings/isy99x/config/isy99x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/config/isy99x.yaml -------------------------------------------------------------------------------- /bindings/isy99x/docs/2413S_QSG.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/docs/2413S_QSG.pdf -------------------------------------------------------------------------------- /bindings/isy99x/docs/INSTEON_Command_Tables_20070925a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/docs/INSTEON_Command_Tables_20070925a.pdf -------------------------------------------------------------------------------- /bindings/isy99x/docs/INSTEON_Developers_Guide_20070816a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/docs/INSTEON_Developers_Guide_20070816a.pdf -------------------------------------------------------------------------------- /bindings/isy99x/docs/INSTEON_Modem_Developer's_Guide_20071012a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/docs/INSTEON_Modem_Developer's_Guide_20071012a.pdf -------------------------------------------------------------------------------- /bindings/isy99x/docs/ISY Developers API REST Interface - Universal Devices, Inc. Wiki.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/docs/ISY Developers API REST Interface - Universal Devices, Inc. Wiki.pdf -------------------------------------------------------------------------------- /bindings/isy99x/docs/ISY-JSDK-3.2.6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/docs/ISY-JSDK-3.2.6.zip -------------------------------------------------------------------------------- /bindings/isy99x/docs/ISY-WS-SDK-Manual-INSTEON-2.8.11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/docs/ISY-WS-SDK-Manual-INSTEON-2.8.11.pdf -------------------------------------------------------------------------------- /bindings/isy99x/docs/ISY-WSDK-3.3.10.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/docs/ISY-WSDK-3.3.10.zip -------------------------------------------------------------------------------- /bindings/isy99x/docs/ISYEventViewer_src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/docs/ISYEventViewer_src.zip -------------------------------------------------------------------------------- /bindings/isy99x/docs/Product List.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/docs/Product List.xlsx -------------------------------------------------------------------------------- /bindings/isy99x/docs/The+ISY994+Developer+Cookbook.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/docs/The+ISY994+Developer+Cookbook.pdf -------------------------------------------------------------------------------- /bindings/isy99x/docs/developer-product-list-012014.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/docs/developer-product-list-012014.pdf -------------------------------------------------------------------------------- /bindings/isy99x/docs/product list.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/docs/product list.csv -------------------------------------------------------------------------------- /bindings/isy99x/service/HandleActionRequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/service/HandleActionRequest.go -------------------------------------------------------------------------------- /bindings/isy99x/service/HandleConfigRequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/service/HandleConfigRequest.go -------------------------------------------------------------------------------- /bindings/isy99x/service/IsyBinding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/service/IsyBinding.go -------------------------------------------------------------------------------- /bindings/isy99x/service/IsyDimmerThing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/service/IsyDimmerThing.go -------------------------------------------------------------------------------- /bindings/isy99x/service/IsyGatewayThing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/service/IsyGatewayThing.go -------------------------------------------------------------------------------- /bindings/isy99x/service/IsySensorThing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/service/IsySensorThing.go -------------------------------------------------------------------------------- /bindings/isy99x/service/IsySwitchThing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/service/IsySwitchThing.go -------------------------------------------------------------------------------- /bindings/isy99x/service/IsyThing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/service/IsyThing.go -------------------------------------------------------------------------------- /bindings/isy99x/service/LoadProductMap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/service/LoadProductMap.go -------------------------------------------------------------------------------- /bindings/isy99x/service/PublishTDs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/service/PublishTDs.go -------------------------------------------------------------------------------- /bindings/isy99x/service/PublishThingValues.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/service/PublishThingValues.go -------------------------------------------------------------------------------- /bindings/isy99x/service/isy/IsyAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/service/isy/IsyAPI.go -------------------------------------------------------------------------------- /bindings/isy99x/service/isy/IsyNode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/service/isy/IsyNode.go -------------------------------------------------------------------------------- /bindings/isy99x/tdd/isy99xGateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/tdd/isy99xGateway.json -------------------------------------------------------------------------------- /bindings/isy99x/test/isy99-identity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/test/isy99-identity.json -------------------------------------------------------------------------------- /bindings/isy99x/test/isy99-nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/test/isy99-nodes.json -------------------------------------------------------------------------------- /bindings/isy99x/test/isy99.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/test/isy99.yaml -------------------------------------------------------------------------------- /bindings/isy99x/test/messenger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/test/messenger.yaml -------------------------------------------------------------------------------- /bindings/isy99x/test/rest/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/test/rest/config.xml -------------------------------------------------------------------------------- /bindings/isy99x/test/rest/network.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/test/rest/network.xml -------------------------------------------------------------------------------- /bindings/isy99x/test/rest/nodes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/test/rest/nodes.xml -------------------------------------------------------------------------------- /bindings/isy99x/test/rest/status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/test/rest/status.xml -------------------------------------------------------------------------------- /bindings/isy99x/test/rest/sys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/test/rest/sys.xml -------------------------------------------------------------------------------- /bindings/isy99x/test/rest/time.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/isy99x/test/rest/time.xml -------------------------------------------------------------------------------- /bindings/modbus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/modbus/README.md -------------------------------------------------------------------------------- /bindings/modbus/docs/Modbus_Application_Protocol_V1_1b3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/modbus/docs/Modbus_Application_Protocol_V1_1b3.pdf -------------------------------------------------------------------------------- /bindings/mqttc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/mqttc/README.md -------------------------------------------------------------------------------- /bindings/owserver/OWServer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/owserver/OWServer_test.go -------------------------------------------------------------------------------- /bindings/owserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/owserver/README.md -------------------------------------------------------------------------------- /bindings/owserver/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/owserver/cmd/main.go -------------------------------------------------------------------------------- /bindings/owserver/config/OWServerConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/owserver/config/OWServerConfig.go -------------------------------------------------------------------------------- /bindings/owserver/config/owserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/owserver/config/owserver.yaml -------------------------------------------------------------------------------- /bindings/owserver/docs/EDS_MIB_V1.8.mib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/owserver/docs/EDS_MIB_V1.8.mib -------------------------------------------------------------------------------- /bindings/owserver/docs/EDS_MIB_V2.5.mib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/owserver/docs/EDS_MIB_V2.5.mib -------------------------------------------------------------------------------- /bindings/owserver/docs/EDS_Post_Server_Java.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/owserver/docs/EDS_Post_Server_Java.zip -------------------------------------------------------------------------------- /bindings/owserver/docs/EDS_Writer_Java.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/owserver/docs/EDS_Writer_Java.zip -------------------------------------------------------------------------------- /bindings/owserver/docs/EN OW-SERVER-ENET-2-Getting Started-A4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/owserver/docs/EN OW-SERVER-ENET-2-Getting Started-A4.pdf -------------------------------------------------------------------------------- /bindings/owserver/docs/EN+UserMan+OW-SERVER-ENET-2+1.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/owserver/docs/EN+UserMan+OW-SERVER-ENET-2+1.1.pdf -------------------------------------------------------------------------------- /bindings/owserver/docs/owserver-simulation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/owserver/docs/owserver-simulation.xml -------------------------------------------------------------------------------- /bindings/owserver/docs/readme - EDS Scanner Python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/owserver/docs/readme - EDS Scanner Python.pdf -------------------------------------------------------------------------------- /bindings/owserver/service/HandleRequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/owserver/service/HandleRequest.go -------------------------------------------------------------------------------- /bindings/owserver/service/NodeInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/owserver/service/NodeInfo.go -------------------------------------------------------------------------------- /bindings/owserver/service/OWServerBinding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/owserver/service/OWServerBinding.go -------------------------------------------------------------------------------- /bindings/owserver/service/PublishNodeTDs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/owserver/service/PublishNodeTDs.go -------------------------------------------------------------------------------- /bindings/owserver/service/PublishNodeValues.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/owserver/service/PublishNodeValues.go -------------------------------------------------------------------------------- /bindings/owserver/service/eds/Discover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/owserver/service/eds/Discover.go -------------------------------------------------------------------------------- /bindings/owserver/service/eds/EdsAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/owserver/service/eds/EdsAPI.go -------------------------------------------------------------------------------- /bindings/owserver/service/eds/EdsAPI_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/owserver/service/eds/EdsAPI_test.go -------------------------------------------------------------------------------- /bindings/owserver/service/eds/EdsNode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/owserver/service/eds/EdsNode.go -------------------------------------------------------------------------------- /bindings/owserver/service/eds/ParseNodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/owserver/service/eds/ParseNodes.go -------------------------------------------------------------------------------- /bindings/owserver/service/eds/ReadEds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/owserver/service/eds/ReadEds.go -------------------------------------------------------------------------------- /bindings/weather/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/weather/README.md -------------------------------------------------------------------------------- /bindings/weather/Weather_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/weather/Weather_test.go -------------------------------------------------------------------------------- /bindings/weather/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/weather/cmd/main.go -------------------------------------------------------------------------------- /bindings/weather/config/WeatherConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/weather/config/WeatherConfig.go -------------------------------------------------------------------------------- /bindings/weather/config/weather.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/weather/config/weather.yaml -------------------------------------------------------------------------------- /bindings/weather/providers/IWeatherProvider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/weather/providers/IWeatherProvider.go -------------------------------------------------------------------------------- /bindings/weather/providers/OpenMeteoProvider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/weather/providers/OpenMeteoProvider.go -------------------------------------------------------------------------------- /bindings/weather/service/HandleRequests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/weather/service/HandleRequests.go -------------------------------------------------------------------------------- /bindings/weather/service/LocationStore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/weather/service/LocationStore.go -------------------------------------------------------------------------------- /bindings/weather/service/PublishTDs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/weather/service/PublishTDs.go -------------------------------------------------------------------------------- /bindings/weather/service/PublishValues.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/weather/service/PublishValues.go -------------------------------------------------------------------------------- /bindings/weather/service/WeatherBinding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/weather/service/WeatherBinding.go -------------------------------------------------------------------------------- /bindings/zwavejs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/.gitignore -------------------------------------------------------------------------------- /bindings/zwavejs/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/.vscode/launch.json -------------------------------------------------------------------------------- /bindings/zwavejs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/Makefile -------------------------------------------------------------------------------- /bindings/zwavejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/README.md -------------------------------------------------------------------------------- /bindings/zwavejs/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/build.sh -------------------------------------------------------------------------------- /bindings/zwavejs/config/zwavejs-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/config/zwavejs-template.yaml -------------------------------------------------------------------------------- /bindings/zwavejs/docs/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/docs/design.md -------------------------------------------------------------------------------- /bindings/zwavejs/esbuild.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/esbuild.cjs -------------------------------------------------------------------------------- /bindings/zwavejs/hivelib: -------------------------------------------------------------------------------- 1 | ../../libjs/src -------------------------------------------------------------------------------- /bindings/zwavejs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/package-lock.json -------------------------------------------------------------------------------- /bindings/zwavejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/package.json -------------------------------------------------------------------------------- /bindings/zwavejs/package.json.works: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/package.json.works -------------------------------------------------------------------------------- /bindings/zwavejs/src/BindingConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/src/BindingConfig.ts -------------------------------------------------------------------------------- /bindings/zwavejs/src/NodeValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/src/NodeValues.ts -------------------------------------------------------------------------------- /bindings/zwavejs/src/ZWAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/src/ZWAPI.ts -------------------------------------------------------------------------------- /bindings/zwavejs/src/ZWaveJSBinding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/src/ZWaveJSBinding.ts -------------------------------------------------------------------------------- /bindings/zwavejs/src/createControllerTD.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/src/createControllerTD.ts -------------------------------------------------------------------------------- /bindings/zwavejs/src/createNodeTD.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/src/createNodeTD.ts -------------------------------------------------------------------------------- /bindings/zwavejs/src/getAffordanceFromVid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/src/getAffordanceFromVid.ts -------------------------------------------------------------------------------- /bindings/zwavejs/src/getDeviceType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/src/getDeviceType.ts -------------------------------------------------------------------------------- /bindings/zwavejs/src/getLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/src/getLogger.ts -------------------------------------------------------------------------------- /bindings/zwavejs/src/handleAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/src/handleAction.ts -------------------------------------------------------------------------------- /bindings/zwavejs/src/handleWriteProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/src/handleWriteProperty.ts -------------------------------------------------------------------------------- /bindings/zwavejs/src/logVid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/src/logVid.ts -------------------------------------------------------------------------------- /bindings/zwavejs/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/src/main.ts -------------------------------------------------------------------------------- /bindings/zwavejs/src/serial/findserialport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/src/serial/findserialport.ts -------------------------------------------------------------------------------- /bindings/zwavejs/src/setValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/src/setValue.ts -------------------------------------------------------------------------------- /bindings/zwavejs/src/tests/hubconnect_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/src/tests/hubconnect_test.ts -------------------------------------------------------------------------------- /bindings/zwavejs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/tsconfig.json -------------------------------------------------------------------------------- /bindings/zwavejs/tsconfig.json.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/tsconfig.json.sav -------------------------------------------------------------------------------- /bindings/zwavejs/zwavejs.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/zwavejs.code-workspace -------------------------------------------------------------------------------- /bindings/zwavejs/zwavejs.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/bindings/zwavejs/zwavejs.iml -------------------------------------------------------------------------------- /cmd/genkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/genkey.go -------------------------------------------------------------------------------- /cmd/genvocab/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/genvocab/main.go -------------------------------------------------------------------------------- /cmd/genvocab/vocab/GenVocabGo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/genvocab/vocab/GenVocabGo.go -------------------------------------------------------------------------------- /cmd/genvocab/vocab/GenVocabJS.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/genvocab/vocab/GenVocabJS.go -------------------------------------------------------------------------------- /cmd/genvocab/vocab/GenVocabPy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/genvocab/vocab/GenVocabPy.go -------------------------------------------------------------------------------- /cmd/genvocab/vocab/LoadVocab.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/genvocab/vocab/LoadVocab.go -------------------------------------------------------------------------------- /cmd/hubcli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/hubcli/README.md -------------------------------------------------------------------------------- /cmd/hubcli/authcli/AuthAddUserCommand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/hubcli/authcli/AuthAddUserCommand.go -------------------------------------------------------------------------------- /cmd/hubcli/authcli/AuthSetPassCommand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/hubcli/authcli/AuthSetPassCommand.go -------------------------------------------------------------------------------- /cmd/hubcli/authcli/AuthSetRoleCommand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/hubcli/authcli/AuthSetRoleCommand.go -------------------------------------------------------------------------------- /cmd/hubcli/certs/CreateCACommand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/hubcli/certs/CreateCACommand.go -------------------------------------------------------------------------------- /cmd/hubcli/certs/ViewCACommand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/hubcli/certs/ViewCACommand.go -------------------------------------------------------------------------------- /cmd/hubcli/directorycli/DirectoryCommands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/hubcli/directorycli/DirectoryCommands.go -------------------------------------------------------------------------------- /cmd/hubcli/directorycli/DiscoCommands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/hubcli/directorycli/DiscoCommands.go -------------------------------------------------------------------------------- /cmd/hubcli/historycli/HistoryCommands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/hubcli/historycli/HistoryCommands.go -------------------------------------------------------------------------------- /cmd/hubcli/idprovcli/IdProvCommands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/hubcli/idprovcli/IdProvCommands.go -------------------------------------------------------------------------------- /cmd/hubcli/launchercli/LauncherCommands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/hubcli/launchercli/LauncherCommands.go -------------------------------------------------------------------------------- /cmd/hubcli/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/hubcli/main.go -------------------------------------------------------------------------------- /cmd/hubcli/pubsubcli/PubCommands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/hubcli/pubsubcli/PubCommands.go -------------------------------------------------------------------------------- /cmd/hubcli/pubsubcli/SubCommands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/hubcli/pubsubcli/SubCommands.go -------------------------------------------------------------------------------- /cmd/tm2go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/tm2go/README.md -------------------------------------------------------------------------------- /cmd/tm2go/genagent/GenAgent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/tm2go/genagent/GenAgent.go -------------------------------------------------------------------------------- /cmd/tm2go/genagent/GenServiceAgent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/tm2go/genagent/GenServiceAgent.go -------------------------------------------------------------------------------- /cmd/tm2go/genagent/GenServiceInterface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/tm2go/genagent/GenServiceInterface.go -------------------------------------------------------------------------------- /cmd/tm2go/genconsumer/GenServiceConsumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/tm2go/genconsumer/GenServiceConsumer.go -------------------------------------------------------------------------------- /cmd/tm2go/gentypes/GenActionStructs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/tm2go/gentypes/GenActionStructs.go -------------------------------------------------------------------------------- /cmd/tm2go/gentypes/GenDataSchema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/tm2go/gentypes/GenDataSchema.go -------------------------------------------------------------------------------- /cmd/tm2go/gentypes/GenSchemaDefinitions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/tm2go/gentypes/GenSchemaDefinitions.go -------------------------------------------------------------------------------- /cmd/tm2go/gentypes/GenThingConstants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/tm2go/gentypes/GenThingConstants.go -------------------------------------------------------------------------------- /cmd/tm2go/gentypes/GenTypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/tm2go/gentypes/GenTypes.go -------------------------------------------------------------------------------- /cmd/tm2go/gentypes/Names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/tm2go/gentypes/Names.go -------------------------------------------------------------------------------- /cmd/tm2go/gentypes/SL.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/tm2go/gentypes/SL.go -------------------------------------------------------------------------------- /cmd/tm2go/listtms/ListTMsCommand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/tm2go/listtms/ListTMsCommand.go -------------------------------------------------------------------------------- /cmd/tm2go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/tm2go/main.go -------------------------------------------------------------------------------- /cmd/tm2go/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/cmd/tm2go/main_test.go -------------------------------------------------------------------------------- /docs/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/docs/INSTALL.md -------------------------------------------------------------------------------- /docs/Presentation 2025.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/docs/Presentation 2025.pdf -------------------------------------------------------------------------------- /docs/Presentation 2025.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/docs/Presentation 2025.pptx -------------------------------------------------------------------------------- /docs/README-TD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/docs/README-TD.md -------------------------------------------------------------------------------- /docs/TD Challenges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/docs/TD Challenges.md -------------------------------------------------------------------------------- /docs/action-flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/docs/action-flow.jpg -------------------------------------------------------------------------------- /docs/action-sequence.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/docs/action-sequence.jpg -------------------------------------------------------------------------------- /docs/design-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/docs/design-overview.md -------------------------------------------------------------------------------- /docs/digitwin runtime.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/docs/digitwin runtime.jpg -------------------------------------------------------------------------------- /docs/event-flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/docs/event-flow.jpg -------------------------------------------------------------------------------- /docs/event-sequence.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/docs/event-sequence.jpg -------------------------------------------------------------------------------- /docs/go2wot overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/docs/go2wot overview.png -------------------------------------------------------------------------------- /docs/hiveot overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/docs/hiveot overview.jpg -------------------------------------------------------------------------------- /docs/hiveot.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/docs/hiveot.drawio -------------------------------------------------------------------------------- /docs/hiveot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/docs/hiveot.png -------------------------------------------------------------------------------- /docs/hiveot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/docs/hiveot.svg -------------------------------------------------------------------------------- /docs/hub digitwin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/docs/hub digitwin.jpg -------------------------------------------------------------------------------- /docs/hub overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/docs/hub overview.jpg -------------------------------------------------------------------------------- /docs/integrations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/docs/integrations.png -------------------------------------------------------------------------------- /docs/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/docs/packages.md -------------------------------------------------------------------------------- /docs/plugins.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/docs/plugins.jpg -------------------------------------------------------------------------------- /docs/thoughts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/docs/thoughts.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/go.sum -------------------------------------------------------------------------------- /hub.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/hub.code-workspace -------------------------------------------------------------------------------- /init/hiveot.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/init/hiveot.service -------------------------------------------------------------------------------- /lib/consumedthing/ConsumedThing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/lib/consumedthing/ConsumedThing.go -------------------------------------------------------------------------------- /lib/consumedthing/ConsumedThingsDirectory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/lib/consumedthing/ConsumedThingsDirectory.go -------------------------------------------------------------------------------- /lib/consumedthing/DataSchemaValue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/lib/consumedthing/DataSchemaValue.go -------------------------------------------------------------------------------- /lib/consumedthing/InteractionInput.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/lib/consumedthing/InteractionInput.go -------------------------------------------------------------------------------- /lib/consumedthing/InteractionOutput.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/lib/consumedthing/InteractionOutput.go -------------------------------------------------------------------------------- /lib/consumedthing/InteractionOutput_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/lib/consumedthing/InteractionOutput_test.go -------------------------------------------------------------------------------- /lib/consumedthing/Subscription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/lib/consumedthing/Subscription.go -------------------------------------------------------------------------------- /lib/exposedthing/HandleRequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/lib/exposedthing/HandleRequest.go -------------------------------------------------------------------------------- /lib/exposedthing/ThingValues.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/lib/exposedthing/ThingValues.go -------------------------------------------------------------------------------- /lib/hubagent/AgentHelper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/lib/hubagent/AgentHelper.go -------------------------------------------------------------------------------- /lib/hubagent/HandleRequestMessage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/lib/hubagent/HandleRequestMessage.go -------------------------------------------------------------------------------- /lib/hubagent/HandleRequestMessage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/lib/hubagent/HandleRequestMessage_test.go -------------------------------------------------------------------------------- /lib/testenv/StartMqttTestServer.go.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/lib/testenv/StartMqttTestServer.go.old -------------------------------------------------------------------------------- /lib/testenv/TestServer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/lib/testenv/TestServer.go -------------------------------------------------------------------------------- /libjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/libjs/.gitignore -------------------------------------------------------------------------------- /libjs/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/libjs/.vscode/launch.json -------------------------------------------------------------------------------- /libjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/libjs/README.md -------------------------------------------------------------------------------- /libjs/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/libjs/jest.config.js -------------------------------------------------------------------------------- /libjs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/libjs/package-lock.json -------------------------------------------------------------------------------- /libjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/libjs/package.json -------------------------------------------------------------------------------- /libjs/src/api: -------------------------------------------------------------------------------- 1 | ../../api/js -------------------------------------------------------------------------------- /libjs/src/appenv/NodeEnvironment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/libjs/src/appenv/NodeEnvironment.ts -------------------------------------------------------------------------------- /libjs/src/appenv/WaitForSignal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/libjs/src/appenv/WaitForSignal.ts -------------------------------------------------------------------------------- /libjs/src/keys/ECDSAKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/libjs/src/keys/ECDSAKey.ts -------------------------------------------------------------------------------- /libjs/src/keys/Ed25519Key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/libjs/src/keys/Ed25519Key.ts -------------------------------------------------------------------------------- /libjs/src/keys/IHiveKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/libjs/src/keys/IHiveKey.ts -------------------------------------------------------------------------------- /libjs/src/keys/keys.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/libjs/src/keys/keys.test.ts -------------------------------------------------------------------------------- /libjs/src/keys/test/crypto-test.ts.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/libjs/src/keys/test/crypto-test.ts.old -------------------------------------------------------------------------------- /libjs/src/keys/test/elliptic_test.ts.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/libjs/src/keys/test/elliptic_test.ts.old -------------------------------------------------------------------------------- /libjs/src/keys/test/testkeys.ts.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/libjs/src/keys/test/testkeys.ts.old -------------------------------------------------------------------------------- /libjs/src/messaging/ConnectToHub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/libjs/src/messaging/ConnectToHub.ts -------------------------------------------------------------------------------- /libjs/src/messaging/IAgentConnection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/libjs/src/messaging/IAgentConnection.ts -------------------------------------------------------------------------------- /libjs/src/messaging/IConsumerConnection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/libjs/src/messaging/IConsumerConnection.ts -------------------------------------------------------------------------------- /libjs/src/messaging/Messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/libjs/src/messaging/Messages.ts -------------------------------------------------------------------------------- /libjs/src/messaging/httpclient/HttpSSEClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/libjs/src/messaging/httpclient/HttpSSEClient.ts -------------------------------------------------------------------------------- /libjs/src/messaging/httpclient/connectSSE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/libjs/src/messaging/httpclient/connectSSE.ts -------------------------------------------------------------------------------- /libjs/src/messaging/hubclient.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/libjs/src/messaging/hubclient.test.ts -------------------------------------------------------------------------------- /libjs/src/messaging/locateHub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/libjs/src/messaging/locateHub.ts -------------------------------------------------------------------------------- /libjs/src/wot/TD.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/libjs/src/wot/TD.ts -------------------------------------------------------------------------------- /libjs/src/wot/dataSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/libjs/src/wot/dataSchema.ts -------------------------------------------------------------------------------- /libjs/src/wot/makeDigitwinThingID.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/libjs/src/wot/makeDigitwinThingID.ts -------------------------------------------------------------------------------- /libjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/libjs/tsconfig.json -------------------------------------------------------------------------------- /runtime/README-runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/README-runtime.md -------------------------------------------------------------------------------- /runtime/Runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/Runtime.go -------------------------------------------------------------------------------- /runtime/RuntimeConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/RuntimeConfig.go -------------------------------------------------------------------------------- /runtime/RuntimeDirectory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/RuntimeDirectory_test.go -------------------------------------------------------------------------------- /runtime/RuntimeValues_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/RuntimeValues_test.go -------------------------------------------------------------------------------- /runtime/Runtime_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/Runtime_test.go -------------------------------------------------------------------------------- /runtime/authn/AuthnAdmin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authn/AuthnAdmin_test.go -------------------------------------------------------------------------------- /runtime/authn/AuthnUser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authn/AuthnUser_test.go -------------------------------------------------------------------------------- /runtime/authn/Authn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authn/Authn_test.go -------------------------------------------------------------------------------- /runtime/authn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authn/README.md -------------------------------------------------------------------------------- /runtime/authn/api/AdminAgentAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authn/api/AdminAgentAPI.go -------------------------------------------------------------------------------- /runtime/authn/api/AdminConsumerAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authn/api/AdminConsumerAPI.go -------------------------------------------------------------------------------- /runtime/authn/api/AdminTypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authn/api/AdminTypes.go -------------------------------------------------------------------------------- /runtime/authn/api/UserAgentAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authn/api/UserAgentAPI.go -------------------------------------------------------------------------------- /runtime/authn/api/UserConsumerAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authn/api/UserConsumerAPI.go -------------------------------------------------------------------------------- /runtime/authn/api/UserTypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authn/api/UserTypes.go -------------------------------------------------------------------------------- /runtime/authn/authenticator/Authenticator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authn/authenticator/Authenticator_test.go -------------------------------------------------------------------------------- /runtime/authn/authenticator/JWTAuthenticator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authn/authenticator/JWTAuthenticator.go -------------------------------------------------------------------------------- /runtime/authn/authenticator/PasetoAuthenticator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authn/authenticator/PasetoAuthenticator.go -------------------------------------------------------------------------------- /runtime/authn/authnstore/AuthnFileStore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authn/authnstore/AuthnFileStore.go -------------------------------------------------------------------------------- /runtime/authn/authnstore/AuthnFileStore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authn/authnstore/AuthnFileStore_test.go -------------------------------------------------------------------------------- /runtime/authn/authnstore/IAuthnStore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authn/authnstore/IAuthnStore.go -------------------------------------------------------------------------------- /runtime/authn/config/AuthnConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authn/config/AuthnConfig.go -------------------------------------------------------------------------------- /runtime/authn/service/AuthnAdminService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authn/service/AuthnAdminService.go -------------------------------------------------------------------------------- /runtime/authn/service/AuthnAgent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authn/service/AuthnAgent.go -------------------------------------------------------------------------------- /runtime/authn/service/AuthnService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authn/service/AuthnService.go -------------------------------------------------------------------------------- /runtime/authn/service/AuthnUserService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authn/service/AuthnUserService.go -------------------------------------------------------------------------------- /runtime/authn/service/LoadCreateKey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authn/service/LoadCreateKey.go -------------------------------------------------------------------------------- /runtime/authn/sessions/SessionManager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authn/sessions/SessionManager.go -------------------------------------------------------------------------------- /runtime/authn/sessions/SessionManager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authn/sessions/SessionManager_test.go -------------------------------------------------------------------------------- /runtime/authn/tm/admin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authn/tm/admin.json -------------------------------------------------------------------------------- /runtime/authn/tm/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authn/tm/user.json -------------------------------------------------------------------------------- /runtime/authz/Authz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authz/Authz_test.go -------------------------------------------------------------------------------- /runtime/authz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authz/README.md -------------------------------------------------------------------------------- /runtime/authz/api/AdminAgentAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authz/api/AdminAgentAPI.go -------------------------------------------------------------------------------- /runtime/authz/api/AdminConsumerAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authz/api/AdminConsumerAPI.go -------------------------------------------------------------------------------- /runtime/authz/api/AdminTypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authz/api/AdminTypes.go -------------------------------------------------------------------------------- /runtime/authz/api/UserAgentAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authz/api/UserAgentAPI.go -------------------------------------------------------------------------------- /runtime/authz/api/UserConsumerAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authz/api/UserConsumerAPI.go -------------------------------------------------------------------------------- /runtime/authz/api/UserTypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authz/api/UserTypes.go -------------------------------------------------------------------------------- /runtime/authz/service/AuthzAgent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authz/service/AuthzAgent.go -------------------------------------------------------------------------------- /runtime/authz/service/AuthzConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authz/service/AuthzConfig.go -------------------------------------------------------------------------------- /runtime/authz/service/AuthzService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authz/service/AuthzService.go -------------------------------------------------------------------------------- /runtime/authz/service/HasPermission.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authz/service/HasPermission.go -------------------------------------------------------------------------------- /runtime/authz/tm/Admin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authz/tm/Admin.json -------------------------------------------------------------------------------- /runtime/authz/tm/User.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/authz/tm/User.json -------------------------------------------------------------------------------- /runtime/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/cmd/main.go -------------------------------------------------------------------------------- /runtime/digitwin/DigitwinAction_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/DigitwinAction_test.go -------------------------------------------------------------------------------- /runtime/digitwin/DigitwinBench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/DigitwinBench_test.go -------------------------------------------------------------------------------- /runtime/digitwin/DigitwinDirectory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/DigitwinDirectory_test.go -------------------------------------------------------------------------------- /runtime/digitwin/DigitwinEvent_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/DigitwinEvent_test.go -------------------------------------------------------------------------------- /runtime/digitwin/DigitwinProperty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/DigitwinProperty_test.go -------------------------------------------------------------------------------- /runtime/digitwin/DigitwinRouter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/DigitwinRouter_test.go -------------------------------------------------------------------------------- /runtime/digitwin/DigitwinService_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/DigitwinService_test.go -------------------------------------------------------------------------------- /runtime/digitwin/DummyTransportBinding_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/DummyTransportBinding_test.go -------------------------------------------------------------------------------- /runtime/digitwin/api/DirectoryAgentAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/api/DirectoryAgentAPI.go -------------------------------------------------------------------------------- /runtime/digitwin/api/DirectoryConsumerAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/api/DirectoryConsumerAPI.go -------------------------------------------------------------------------------- /runtime/digitwin/api/DirectoryTypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/api/DirectoryTypes.go -------------------------------------------------------------------------------- /runtime/digitwin/api/ValuesAgentAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/api/ValuesAgentAPI.go -------------------------------------------------------------------------------- /runtime/digitwin/api/ValuesConsumerAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/api/ValuesConsumerAPI.go -------------------------------------------------------------------------------- /runtime/digitwin/api/ValuesTypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/api/ValuesTypes.go -------------------------------------------------------------------------------- /runtime/digitwin/dthing/DigitwinThing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/dthing/DigitwinThing.go -------------------------------------------------------------------------------- /runtime/digitwin/router/AuthFlow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/router/AuthFlow.go -------------------------------------------------------------------------------- /runtime/digitwin/router/DigitwinRouter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/router/DigitwinRouter.go -------------------------------------------------------------------------------- /runtime/digitwin/router/IDigitwinRouter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/router/IDigitwinRouter.go -------------------------------------------------------------------------------- /runtime/digitwin/router/NotificationFlow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/router/NotificationFlow.go -------------------------------------------------------------------------------- /runtime/digitwin/router/RequestFlow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/router/RequestFlow.go -------------------------------------------------------------------------------- /runtime/digitwin/router/ResponseFlow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/router/ResponseFlow.go -------------------------------------------------------------------------------- /runtime/digitwin/service/DigitwinAgent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/service/DigitwinAgent.go -------------------------------------------------------------------------------- /runtime/digitwin/service/DigitwinService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/service/DigitwinService.go -------------------------------------------------------------------------------- /runtime/digitwin/service/DirectoryService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/service/DirectoryService.go -------------------------------------------------------------------------------- /runtime/digitwin/service/ValuesService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/service/ValuesService.go -------------------------------------------------------------------------------- /runtime/digitwin/store/DigitwinInstance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/store/DigitwinInstance.go -------------------------------------------------------------------------------- /runtime/digitwin/store/DigitwinStore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/store/DigitwinStore.go -------------------------------------------------------------------------------- /runtime/digitwin/store/DigitwinStore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/store/DigitwinStore_test.go -------------------------------------------------------------------------------- /runtime/digitwin/tm/Directory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/tm/Directory.json -------------------------------------------------------------------------------- /runtime/digitwin/tm/Values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/digitwin/tm/Values.json -------------------------------------------------------------------------------- /runtime/runtime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/runtime/runtime.yaml -------------------------------------------------------------------------------- /services/certs/Certs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/certs/Certs_test.go -------------------------------------------------------------------------------- /services/certs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/certs/README.md -------------------------------------------------------------------------------- /services/certs/certsapi/AdminCertsAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/certs/certsapi/AdminCertsAPI.go -------------------------------------------------------------------------------- /services/certs/certsclient/ManageCertsClient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/certs/certsclient/ManageCertsClient.go -------------------------------------------------------------------------------- /services/certs/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/certs/cmd/main.go -------------------------------------------------------------------------------- /services/certs/service/letsencrypt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/certs/service/letsencrypt/README.md -------------------------------------------------------------------------------- /services/certs/service/selfsigned/CertsAdminService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/certs/service/selfsigned/CertsAdminService.go -------------------------------------------------------------------------------- /services/certs/service/selfsigned/CertsAgent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/certs/service/selfsigned/CertsAgent.go -------------------------------------------------------------------------------- /services/certs/service/selfsigned/createClientCert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/certs/service/selfsigned/createClientCert.go -------------------------------------------------------------------------------- /services/certs/tm/certs.json.todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/certs/tm/certs.json.todo -------------------------------------------------------------------------------- /services/go2rtc/go2rtc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/go2rtc/go2rtc.yaml -------------------------------------------------------------------------------- /services/go2rtc/go2rtc_linux_amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/go2rtc/go2rtc_linux_amd64 -------------------------------------------------------------------------------- /services/history/HistoryBench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/history/HistoryBench_test.go -------------------------------------------------------------------------------- /services/history/History_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/history/History_test.go -------------------------------------------------------------------------------- /services/history/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/history/README.md -------------------------------------------------------------------------------- /services/history/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/history/cmd/main.go -------------------------------------------------------------------------------- /services/history/config/HistoryConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/history/config/HistoryConfig.go -------------------------------------------------------------------------------- /services/history/config/history.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/history/config/history.yaml -------------------------------------------------------------------------------- /services/history/historyapi/ManageHistoryAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/history/historyapi/ManageHistoryAPI.go -------------------------------------------------------------------------------- /services/history/historyapi/ReadHistoryAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/history/historyapi/ReadHistoryAPI.go -------------------------------------------------------------------------------- /services/history/historyclient/HistoryCursorClient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/history/historyclient/HistoryCursorClient.go -------------------------------------------------------------------------------- /services/history/historyclient/ManageHistoryClient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/history/historyclient/ManageHistoryClient.go -------------------------------------------------------------------------------- /services/history/historyclient/ReadHistoryClient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/history/historyclient/ReadHistoryClient.go -------------------------------------------------------------------------------- /services/history/service/AddHistory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/history/service/AddHistory.go -------------------------------------------------------------------------------- /services/history/service/HistoryAgent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/history/service/HistoryAgent.go -------------------------------------------------------------------------------- /services/history/service/HistoryService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/history/service/HistoryService.go -------------------------------------------------------------------------------- /services/history/service/ManageHistory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/history/service/ManageHistory.go -------------------------------------------------------------------------------- /services/history/service/ReadHistory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/history/service/ReadHistory.go -------------------------------------------------------------------------------- /services/history/service/ReadHistoryCursor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/history/service/ReadHistoryCursor.go -------------------------------------------------------------------------------- /services/hiveoview/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/cmd/main.go -------------------------------------------------------------------------------- /services/hiveoview/config/HiveoviewConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/config/HiveoviewConfig.go -------------------------------------------------------------------------------- /services/hiveoview/config/hiveoview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/config/hiveoview.yaml -------------------------------------------------------------------------------- /services/hiveoview/docs/Sessions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/docs/Sessions.md -------------------------------------------------------------------------------- /services/hiveoview/hiveoview-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/hiveoview-README.md -------------------------------------------------------------------------------- /services/hiveoview/src/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/constants.go -------------------------------------------------------------------------------- /services/hiveoview/src/embedded.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/embedded.go -------------------------------------------------------------------------------- /services/hiveoview/src/service/CreateRoutes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/service/CreateRoutes.go -------------------------------------------------------------------------------- /services/hiveoview/src/service/HiveoviewService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/service/HiveoviewService.go -------------------------------------------------------------------------------- /services/hiveoview/src/service/PublishServiceTD.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/service/PublishServiceTD.go -------------------------------------------------------------------------------- /services/hiveoview/src/service/SseServe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/service/SseServe.go -------------------------------------------------------------------------------- /services/hiveoview/src/session/ClientData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/session/ClientData.go -------------------------------------------------------------------------------- /services/hiveoview/src/session/DashboardModel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/session/DashboardModel.go -------------------------------------------------------------------------------- /services/hiveoview/src/session/SessionContext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/session/SessionContext.go -------------------------------------------------------------------------------- /services/hiveoview/src/session/SessionCookie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/session/SessionCookie.go -------------------------------------------------------------------------------- /services/hiveoview/src/session/SessionLogout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/session/SessionLogout.go -------------------------------------------------------------------------------- /services/hiveoview/src/session/SessionManager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/session/SessionManager.go -------------------------------------------------------------------------------- /services/hiveoview/src/session/WebClientSession.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/session/WebClientSession.go -------------------------------------------------------------------------------- /services/hiveoview/src/static/canvas-gauge-2.1.7.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/static/canvas-gauge-2.1.7.min.js -------------------------------------------------------------------------------- /services/hiveoview/src/static/chartjs-4.4.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/static/chartjs-4.4.3.min.js -------------------------------------------------------------------------------- /services/hiveoview/src/static/chartjs-adapter-luxon-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/static/chartjs-adapter-luxon-1.3.1.js -------------------------------------------------------------------------------- /services/hiveoview/src/static/echarts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/static/echarts.min.js -------------------------------------------------------------------------------- /services/hiveoview/src/static/gridstack-12.0.0.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/static/gridstack-12.0.0.min.css -------------------------------------------------------------------------------- /services/hiveoview/src/static/gridstack-all.12.0.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/static/gridstack-all.12.0.0.min.js -------------------------------------------------------------------------------- /services/hiveoview/src/static/hiveot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/static/hiveot.png -------------------------------------------------------------------------------- /services/hiveoview/src/static/hiveot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/static/hiveot.svg -------------------------------------------------------------------------------- /services/hiveoview/src/static/htmx.org@2.0.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/static/htmx.org@2.0.4.js -------------------------------------------------------------------------------- /services/hiveoview/src/static/iconify-icon.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/static/iconify-icon.min.js -------------------------------------------------------------------------------- /services/hiveoview/src/static/luxon-3.4.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/static/luxon-3.4.4.min.js -------------------------------------------------------------------------------- /services/hiveoview/src/static/noimage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/static/noimage.svg -------------------------------------------------------------------------------- /services/hiveoview/src/static/pico-v2.0.6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/static/pico-v2.0.6.css -------------------------------------------------------------------------------- /services/hiveoview/src/static/pico-v2.0.6.slate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/static/pico-v2.0.6.slate.css -------------------------------------------------------------------------------- /services/hiveoview/src/static/sse-2.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/static/sse-2.2.1.js -------------------------------------------------------------------------------- /services/hiveoview/src/static/vocab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/static/vocab.js -------------------------------------------------------------------------------- /services/hiveoview/src/views/TemplateManager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/TemplateManager.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/about/AboutPage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/about/AboutPage.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/about/AboutPage.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/about/AboutPage.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/app/App.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/app/App.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/app/App.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/app/App.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/app/AppHead.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/app/AppHead.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/app/AppHead.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/app/AppHead.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/app/ConnectStatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/app/ConnectStatus.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/app/ConnectStatus.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/app/ConnectStatus.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/app/appMenu.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/app/appMenu.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/app/dashboardMenu.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/app/dashboardMenu.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/base.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/base.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/dashboard/DashboardImport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/dashboard/DashboardImport.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/dashboard/DashboardImport.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/dashboard/DashboardImport.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/dashboard/DashboardPage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/dashboard/DashboardPage.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/dashboard/DashboardPage.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/dashboard/DashboardPage.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/dashboard/DeleteDashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/dashboard/DeleteDashboard.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/dashboard/DeleteDashboard.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/dashboard/DeleteDashboard.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/dashboard/EditDashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/dashboard/EditDashboard.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/dashboard/EditDashboard.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/dashboard/EditDashboard.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/dashboard/getDashboardContext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/dashboard/getDashboardContext.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/directory/DeleteTD.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/directory/DeleteTD.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/directory/DeleteTD.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/directory/DeleteTD.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/directory/DirectoryPage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/directory/DirectoryPage.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/directory/DirectoryPage.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/directory/DirectoryPage.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/directory/GroupByAgent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/directory/GroupByAgent.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/directory/directoryGroup.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/directory/directoryGroup.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/history/HistoryPage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/history/HistoryPage.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/history/HistoryPage.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/history/HistoryPage.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/history/HistoryTemplateData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/history/HistoryTemplateData.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/history/historyChart.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/history/historyChart.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/history/historyTable.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/history/historyTable.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/history/renderLatestValueRow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/history/renderLatestValueRow.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/login/PostLogin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/login/PostLogin.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/login/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/login/login.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/login/login.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/login/login.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/status/StatusPage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/status/StatusPage.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/status/StatusPage.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/status/StatusPage.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/thing/ActionRequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/thing/ActionRequest.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/thing/ActionRequest.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/thing/ActionRequest.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/thing/Age.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/thing/Age.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/thing/EditProperty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/thing/EditProperty.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/thing/EditProperty.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/thing/EditProperty.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/thing/RenderInputValue.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/thing/RenderInputValue.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/thing/RenderOutputValue.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/thing/RenderOutputValue.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/thing/RenderThingRaw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/thing/RenderThingRaw.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/thingdetails/ThingDetailsPage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/thingdetails/ThingDetailsPage.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/thingdetails/ThingDetailsPage.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/thingdetails/ThingDetailsPage.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/thingdetails/actionList.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/thingdetails/actionList.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/thingdetails/attrList.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/thingdetails/attrList.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/thingdetails/configList.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/thingdetails/configList.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/thingdetails/eventList.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/thingdetails/eventList.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/thingdetails/eventListRow.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/thingdetails/eventListRow.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/thingdetails/eventObjectRows.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/thingdetails/eventObjectRows.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/tile/CopyPastTile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/tile/CopyPastTile.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/tile/DeleteTile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/tile/DeleteTile.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/tile/DeleteTile.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/tile/DeleteTile.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/tile/EditTile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/tile/EditTile.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/tile/EditTile.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/tile/EditTile.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/tile/GetTileContext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/tile/GetTileContext.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/tile/RenderTile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/tile/RenderTile.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/tile/RenderTile.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/tile/RenderTile.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/tile/SelectSources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/tile/SelectSources.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/tile/SelectSources.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/tile/SelectSources.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/tile/card/RenderCardInput.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/tile/card/RenderCardInput.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/tile/card/TextCard.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/tile/card/TextCard.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/tile/chart/Chart.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/tile/chart/Chart.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/tile/gauge/EditGauge.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/tile/gauge/EditGauge.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/tile/gauge/GaugeCard.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/tile/gauge/GaugeCard.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/tile/image/ImageCard.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/tile/image/ImageCard.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/tile/renderTileSourceRow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/tile/renderTileSourceRow.go -------------------------------------------------------------------------------- /services/hiveoview/src/views/tile/selectSourcesRow.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/tile/selectSourcesRow.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/views/tile/tileMenu.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/views/tile/tileMenu.gohtml -------------------------------------------------------------------------------- /services/hiveoview/src/webcomp/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/webcomp/components.js -------------------------------------------------------------------------------- /services/hiveoview/src/webcomp/h-brand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/webcomp/h-brand.js -------------------------------------------------------------------------------- /services/hiveoview/src/webcomp/h-classes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/webcomp/h-classes.css -------------------------------------------------------------------------------- /services/hiveoview/src/webcomp/h-dark-toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/webcomp/h-dark-toggle.js -------------------------------------------------------------------------------- /services/hiveoview/src/webcomp/h-details-group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/webcomp/h-details-group.js -------------------------------------------------------------------------------- /services/hiveoview/src/webcomp/h-device-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/webcomp/h-device-icon.js -------------------------------------------------------------------------------- /services/hiveoview/src/webcomp/h-dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/webcomp/h-dropdown.js -------------------------------------------------------------------------------- /services/hiveoview/src/webcomp/h-gauge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/webcomp/h-gauge.js -------------------------------------------------------------------------------- /services/hiveoview/src/webcomp/h-grid-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/webcomp/h-grid-table.js -------------------------------------------------------------------------------- /services/hiveoview/src/webcomp/h-img.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/webcomp/h-img.js -------------------------------------------------------------------------------- /services/hiveoview/src/webcomp/h-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/webcomp/h-list.js -------------------------------------------------------------------------------- /services/hiveoview/src/webcomp/h-loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/webcomp/h-loading.js -------------------------------------------------------------------------------- /services/hiveoview/src/webcomp/h-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/webcomp/h-modal.js -------------------------------------------------------------------------------- /services/hiveoview/src/webcomp/h-modal2.js.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/webcomp/h-modal2.js.old -------------------------------------------------------------------------------- /services/hiveoview/src/webcomp/h-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/webcomp/h-select.js -------------------------------------------------------------------------------- /services/hiveoview/src/webcomp/h-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/webcomp/h-theme.css -------------------------------------------------------------------------------- /services/hiveoview/src/webcomp/h-timechart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/webcomp/h-timechart.js -------------------------------------------------------------------------------- /services/hiveoview/src/webcomp/h-toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/webcomp/h-toast.js -------------------------------------------------------------------------------- /services/hiveoview/src/webcomp/h-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/src/webcomp/h-utils.js -------------------------------------------------------------------------------- /services/hiveoview/test/Hiveov_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/test/Hiveov_test.go -------------------------------------------------------------------------------- /services/hiveoview/test/components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/test/components.html -------------------------------------------------------------------------------- /services/hiveoview/test/test-dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/test/test-dialog.html -------------------------------------------------------------------------------- /services/hiveoview/test/test-dialog1.html.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/test/test-dialog1.html.sav -------------------------------------------------------------------------------- /services/hiveoview/test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/test/test.html -------------------------------------------------------------------------------- /services/hiveoview/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/hiveoview/yarn.lock -------------------------------------------------------------------------------- /services/idprov/IdProv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/idprov/IdProv_test.go -------------------------------------------------------------------------------- /services/idprov/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/idprov/README.md -------------------------------------------------------------------------------- /services/idprov/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/idprov/cmd/main.go -------------------------------------------------------------------------------- /services/idprov/idprovapi/IdProvUser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/idprov/idprovapi/IdProvUser.go -------------------------------------------------------------------------------- /services/idprov/idprovapi/ManageIdProv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/idprov/idprovapi/ManageIdProv.go -------------------------------------------------------------------------------- /services/idprov/idprovclient/DiscoveryIdProvClient.go.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/idprov/idprovclient/DiscoveryIdProvClient.go.old -------------------------------------------------------------------------------- /services/idprov/idprovclient/ManageIdProvClient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/idprov/idprovclient/ManageIdProvClient.go -------------------------------------------------------------------------------- /services/idprov/idprovclient/SubmitIdProvRequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/idprov/idprovclient/SubmitIdProvRequest.go -------------------------------------------------------------------------------- /services/idprov/service/IdProvAgent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/idprov/service/IdProvAgent.go -------------------------------------------------------------------------------- /services/idprov/service/IdProvHttpServer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/idprov/service/IdProvHttpServer.go -------------------------------------------------------------------------------- /services/idprov/service/IdProvService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/idprov/service/IdProvService.go -------------------------------------------------------------------------------- /services/idprov/service/ManageIdProvService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/idprov/service/ManageIdProvService.go -------------------------------------------------------------------------------- /services/launcher/Launcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/launcher/Launcher_test.go -------------------------------------------------------------------------------- /services/launcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/launcher/README.md -------------------------------------------------------------------------------- /services/launcher/WaitForSignal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/launcher/WaitForSignal_test.go -------------------------------------------------------------------------------- /services/launcher/api/AdminAgentAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/launcher/api/AdminAgentAPI.go -------------------------------------------------------------------------------- /services/launcher/api/AdminConsumerAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/launcher/api/AdminConsumerAPI.go -------------------------------------------------------------------------------- /services/launcher/api/AdminTypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/launcher/api/AdminTypes.go -------------------------------------------------------------------------------- /services/launcher/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/launcher/cmd/main.go -------------------------------------------------------------------------------- /services/launcher/config/LauncherConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/launcher/config/LauncherConfig.go -------------------------------------------------------------------------------- /services/launcher/config/launcher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/launcher/config/launcher.yaml -------------------------------------------------------------------------------- /services/launcher/launcherapi/LauncherAPI.go.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/launcher/launcherapi/LauncherAPI.go.org -------------------------------------------------------------------------------- /services/launcher/launcherclient/LauncherClient.go.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/launcher/launcherclient/LauncherClient.go.org -------------------------------------------------------------------------------- /services/launcher/service/LauncherService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/launcher/service/LauncherService.go -------------------------------------------------------------------------------- /services/launcher/service/StartStopPlugins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/launcher/service/StartStopPlugins.go -------------------------------------------------------------------------------- /services/launcher/service/Stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/launcher/service/Stop.go -------------------------------------------------------------------------------- /services/launcher/service/WaitForSignal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/launcher/service/WaitForSignal.go -------------------------------------------------------------------------------- /services/launcher/tm/admin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiveot/hub/HEAD/services/launcher/tm/admin.json --------------------------------------------------------------------------------