@arcware-cloud/pixelstreaming-websdk 1.3.41 → 1.4.4
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/LICENSE.md +0 -2
- package/README.md +0 -2
- package/core.cjs +19343 -0
- package/core.mjs +1 -0
- package/core.umd.cjs +19352 -0
- package/index.cjs +3710 -7812
- package/index.mjs +1 -32858
- package/index.umd.cjs +3710 -7812
- package/package.json +13 -5
- package/report.html +39 -0
- package/stats.json +118354 -0
- package/types/{lib → core}/ArcwareConfig.d.ts +10 -4
- package/types/core/ArcwarePixelStreaming.d.ts +268 -0
- package/types/core/CoreSetup.d.ts +10 -0
- package/types/core/Messages/ErrorMessage.d.ts +11 -0
- package/types/core/Messages/LoveLetter.d.ts +11 -0
- package/types/core/Messages/Ping.d.ts +10 -0
- package/types/core/Messages/Queue.d.ts +23 -0
- package/types/core/Messages/Render.d.ts +8 -0
- package/types/core/Messages/SessionId.d.ts +9 -0
- package/types/core/Messages/Stats.d.ts +34 -0
- package/types/core/Messages/StreamInfo.d.ts +30 -0
- package/types/core/Messages/Version.d.ts +9 -0
- package/types/core/Messages/WebSdkSettings.d.ts +31 -0
- package/types/core/Messages/index.d.ts +17 -0
- package/types/core/domain/ArcwareSettingsSchema.d.ts +61 -0
- package/types/core/domain/CustomizationSchema.d.ts +15 -0
- package/types/core/domain/Session.d.ts +31 -0
- package/types/core/domain/Stats.d.ts +7 -0
- package/types/core/features/ArcwareFileTransferUtil.d.ts +8 -0
- package/types/{lib → core}/features/DiagnosticsCollector.d.ts +1 -1
- package/types/core/features/IWhiteLabel.d.ts +16 -0
- package/types/{lib → core}/features/whiteLabelling.d.ts +2 -3
- package/types/core.d.ts +5 -0
- package/types/index.d.ts +7 -3
- package/types/{lib → ui}/ArcwareApplication.d.ts +41 -8
- package/types/{lib → ui}/ArcwareInit.d.ts +3 -3
- package/types/{lib/ui → ui/components}/AudioButton/index.d.ts +1 -1
- package/types/{lib/ui → ui/components}/MicButton/index.d.ts +1 -1
- package/types/{lib/ui → ui/components}/MicrophoneOverlay/index.d.ts +1 -1
- package/types/{lib/ui → ui/components}/StopButton/index.d.ts +1 -1
- package/types/{lib → ui}/styles/ArcwarePixelStreamingApplicationStyles.d.ts +45 -46
- package/types/lib/ArcwarePixelStreaming.d.ts +0 -140
- package/types/lib/MessageTypes.d.ts +0 -4
- package/types/lib/domain/ArcwareSettingsSchema.d.ts +0 -273
- package/types/lib/domain/Session.d.ts +0 -29
- package/types/lib/domain/Stats.d.ts +0 -36
- package/types/lib/features/ArcwareFileTransferUtil.d.ts +0 -13
- package/types/lib/features/ZWhiteLabel.d.ts +0 -31
- package/types/lib/index.d.ts +0 -6
- package/types/shared/index.d.ts +0 -1
- package/types/shared/lib/Messages/ErrorMessage.d.ts +0 -18
- package/types/shared/lib/Messages/LoveLetter.d.ts +0 -18
- package/types/shared/lib/Messages/Ping.d.ts +0 -15
- package/types/shared/lib/Messages/Queue.d.ts +0 -58
- package/types/shared/lib/Messages/Render.d.ts +0 -9
- package/types/shared/lib/Messages/SessionId.d.ts +0 -12
- package/types/shared/lib/Messages/Stats.d.ts +0 -174
- package/types/shared/lib/Messages/StreamInfo.d.ts +0 -338
- package/types/shared/lib/Messages/Version.d.ts +0 -12
- package/types/shared/lib/Messages/WebSdkSettings.d.ts +0 -96
- package/types/shared/lib/Messages/index.d.ts +0 -185
- package/types/shared/lib/index.d.ts +0 -1
- /package/types/{lib → core}/ApplyUrlHack.d.ts +0 -0
- /package/types/{lib → core}/domain/EventHandler.d.ts +0 -0
- /package/types/{lib → core}/domain/debounce.d.ts +0 -0
- /package/types/{lib → core}/features/ArcwareEventUtil.d.ts +0 -0
- /package/types/{lib → core}/features/common.d.ts +0 -0
- /package/types/{lib/ui → ui/components}/ArcwareLogoLoader/index.d.ts +0 -0
- /package/types/{lib/ui → ui/components}/AudioButton/AudioIcon.d.ts +0 -0
- /package/types/{lib/ui → ui/components}/LoveLetters/index.d.ts +0 -0
- /package/types/{lib/ui → ui/components}/MicIcon/index.d.ts +0 -0
- /package/types/{lib/ui → ui/components}/PlayIcon/index.d.ts +0 -0
- /package/types/{lib/ui → ui/components}/StopIcon/index.d.ts +0 -0
package/LICENSE.md
CHANGED
|
@@ -14,8 +14,6 @@ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR I
|
|
|
14
14
|
|
|
15
15
|
This software inherits code from several other libraries, namely:
|
|
16
16
|
|
|
17
|
-
- [zod](https://github.com/colinhacks/zod/blob/master/LICENSE)
|
|
18
|
-
- [moment.js](https://github.com/moment/moment/blob/develop/LICENSE)
|
|
19
17
|
- [@epicgames-ps/lib-pixelstreamingfrontend-ue5.5](https://github.com/EpicGamesExt/PixelStreamingInfrastructure/blob/master/LICENSE.md)
|
|
20
18
|
- [@epicgames-ps/lib-pixelstreamingfrontend-ui-ue5.5](https://github.com/EpicGamesExt/PixelStreamingInfrastructure/blob/master/LICENSE.md)
|
|
21
19
|
|
package/README.md
CHANGED
|
@@ -40,8 +40,6 @@ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR I
|
|
|
40
40
|
|
|
41
41
|
This software inherits code from several other libraries, namely:
|
|
42
42
|
|
|
43
|
-
- [zod](https://github.com/colinhacks/zod/blob/master/LICENSE)
|
|
44
|
-
- [moment.js](https://github.com/moment/moment/blob/develop/LICENSE)
|
|
45
43
|
- [@epicgames-ps/lib-pixelstreamingfrontend-ue5.5](https://github.com/EpicGames/PixelStreamingInfrastructure/blob/master/LICENSE.md)
|
|
46
44
|
- [@epicgames-ps/lib-pixelstreamingfrontend-ui-ue5.5](https://github.com/EpicGames/PixelStreamingInfrastructure/blob/master/LICENSE.md)
|
|
47
45
|
- [@epicgames-ps/lib-pixelstreamingcommon-ue5.5](https://github.com/EpicGames/PixelStreamingInfrastructure/blob/master/LICENSE.md)
|