camstreamerlib 4.0.0-beta.63 → 4.0.0-beta.64
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/cjs/CamOverlayAPI.d.ts +867 -0
- package/cjs/CamScripterAPI.d.ts +46 -0
- package/cjs/CamStreamerAPI.d.ts +64 -0
- package/cjs/CamSwitcherAPI.d.ts +167 -0
- package/cjs/PlaneTrackerAPI.d.ts +229 -0
- package/cjs/VapixAPI.d.ts +118 -0
- package/cjs/bin/CreatePackage.d.ts +1 -0
- package/cjs/errors/errors.d.ts +91 -0
- package/cjs/index.d.ts +27 -0
- package/cjs/internal/ProxyClient.d.ts +10 -0
- package/cjs/internal/WsEvents.d.ts +37 -0
- package/cjs/internal/constants.d.ts +1 -0
- package/cjs/internal/transformers.d.ts +5 -0
- package/cjs/internal/types.d.ts +47 -0
- package/cjs/internal/utils.d.ts +13 -0
- package/cjs/internal/versionCompare.d.ts +6 -0
- package/cjs/node/CamOverlayDrawingAPI.d.ts +41 -0
- package/cjs/node/CamOverlayPainter/Frame.d.ts +67 -0
- package/cjs/node/CamOverlayPainter/Painter.d.ts +32 -0
- package/cjs/node/CamOverlayPainter/ResourceManager.d.ts +15 -0
- package/cjs/node/CamScripterAPICameraEventsGenerator.d.ts +31 -0
- package/cjs/node/DefaultClient.d.ts +16 -0
- package/cjs/node/Digest.d.ts +4 -0
- package/cjs/node/Digest.test.d.ts +1 -0
- package/cjs/node/HttpRequestSender.d.ts +29 -0
- package/cjs/node/HttpServer.d.ts +21 -0
- package/cjs/node/TimeZoneDaemon.d.ts +6 -0
- package/cjs/node/TimeZoneDaemon.js +29 -0
- package/cjs/node/VapixEvents.d.ts +16 -0
- package/cjs/node/WsClient.d.ts +30 -0
- package/cjs/node/events/AxisCameraStationEvents.d.ts +12 -0
- package/cjs/node/events/GenetecAgent.d.ts +16 -0
- package/cjs/node/index.d.ts +17 -0
- package/cjs/types/CamOverlayAPI/CamOverlayAPI.d.ts +4330 -0
- package/cjs/types/CamOverlayAPI/accuweatherSchema.d.ts +84 -0
- package/cjs/types/CamOverlayAPI/customGraphicsSchema.d.ts +700 -0
- package/cjs/types/CamOverlayAPI/imagesSchema.d.ts +95 -0
- package/cjs/types/CamOverlayAPI/index.d.ts +11 -0
- package/cjs/types/CamOverlayAPI/infotickerSchema.d.ts +96 -0
- package/cjs/types/CamOverlayAPI/pipSchema.d.ts +125 -0
- package/cjs/types/CamOverlayAPI/ptzCompassSchema.d.ts +96 -0
- package/cjs/types/CamOverlayAPI/ptzSchema.d.ts +118 -0
- package/cjs/types/CamOverlayAPI/scoreBoardSchema.d.ts +357 -0
- package/cjs/types/CamOverlayAPI/screenSharingSchema.d.ts +58 -0
- package/cjs/types/CamOverlayAPI/serviceCommonTypes.d.ts +145 -0
- package/cjs/types/CamOverlayAPI/webCameraSharingSchema.d.ts +58 -0
- package/cjs/types/CamOverlayDrawingAPI.d.ts +48 -0
- package/cjs/types/CamOverlayPainter.d.ts +76 -0
- package/cjs/types/CamScripterAPI.d.ts +130 -0
- package/cjs/types/CamScripterAPICameraEventsGenerator.d.ts +45 -0
- package/cjs/types/CamStreamerAPI.d.ts +272 -0
- package/cjs/types/CamSwitcherAPI.d.ts +893 -0
- package/cjs/types/GenetecAgent.d.ts +174 -0
- package/cjs/types/PlaneTrackerAPI.d.ts +926 -0
- package/cjs/types/PlaneTrackerAPI.js +4 -1
- package/cjs/types/VapixAPI.d.ts +1865 -0
- package/cjs/types/VapixEvents.d.ts +15 -0
- package/cjs/types/common.d.ts +49 -0
- package/cjs/types/ws/CamOverlayEvents.d.ts +88 -0
- package/cjs/types/ws/CamStreamerEvents.d.ts +249 -0
- package/cjs/types/ws/CamSwitcherEvents.d.ts +568 -0
- package/cjs/types/ws/PlaneTrackerEvents.d.ts +1637 -0
- package/cjs/web/DefaultClient.d.ts +8 -0
- package/cjs/web/WsClient.d.ts +17 -0
- package/cjs/web/index.d.ts +2 -0
- package/cjs/ws/CamOverlayEvents.d.ts +8 -0
- package/cjs/ws/CamStreamerEvents.d.ts +8 -0
- package/cjs/ws/CamSwitcherEvents.d.ts +8 -0
- package/cjs/ws/PlaneTrackerEvents.d.ts +9 -0
- package/esm/node/TimeZoneDaemon.js +25 -0
- package/esm/types/PlaneTrackerAPI.js +3 -0
- package/package.json +1 -1
- package/types/node/TimeZoneDaemon.d.ts +6 -0
- package/types/types/PlaneTrackerAPI.d.ts +8 -0
package/README.md
CHANGED
|
@@ -40,6 +40,7 @@ npm install camstreamerlib
|
|
|
40
40
|
| [CamOverlayPainter](doc/CamOverlayPainter.md) | Contains three modules which makes easier to use CamOverlayDrawingAPI. |
|
|
41
41
|
| [CamScripterAPICameraEventsGenerator](doc/CamScripterAPICameraEventsGenerator.md) | Module which allows generating events on an Axis camera. These events can be used for triggers in the Axis camera rule engine (events/actions). It is also an easy way how to integrate events and metadata in VMS systems which support Axis camera events. |
|
|
42
42
|
| [GenetecAgent](doc/GenetecAgent.md) | Module which allows receiving and sending data to Genetec VMS. |
|
|
43
|
+
| [TimeZoneDaemon](doc/TimeZoneDaemon.md) | Module for periodically checking and updating the Node.js process timezone to match the system timezone. |
|
|
43
44
|
|
|
44
45
|
</br>
|
|
45
46
|
|