connected-spaces-platform.web 4.29.1 → 4.30.0
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/ConnectedSpacesPlatform_WASM.d.ts +2 -0
- package/Debug/ConnectedSpacesPlatform_WASM.js +83 -5
- package/Debug/ConnectedSpacesPlatform_WASM.wasm +0 -0
- package/Debug/ConnectedSpacesPlatform_WASM.wasm.debug.wasm +0 -0
- package/README.md +2 -15
- package/Release/ConnectedSpacesPlatform_WASM.js +1 -1
- package/Release/ConnectedSpacesPlatform_WASM.wasm +0 -0
- package/connectedspacesplatform.d.ts +156 -15
- package/connectedspacesplatform.js +389 -23
- package/connectedspacesplatform.js.map +1 -1
- package/connectedspacesplatform.ts +737 -25
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Built from changelist ID
|
|
1
|
+
# Built from changelist ID f24cc9e5d6446c096667619c1a9459b0c6ab311e
|
|
2
2
|
|
|
3
3
|
<br>
|
|
4
4
|
|
|
@@ -6,16 +6,6 @@
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
### 🍰 🙌 New Features
|
|
10
|
-
|
|
11
|
-
- Added HotspotSpaceComponent (#435) *(82a77ed)* [**OF-1335**]
|
|
12
|
-
- Support for maintainance window url (#436) *(032d106)* [**OF-1303**]
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
### 🐛 🔨 Bug Fixes
|
|
16
|
-
|
|
17
|
-
- VisionOS Unity Build Script Failing to Include CSP Binaries (#434) *(ef76387)* [**OB-3568**]
|
|
18
|
-
- Update spelling mismatch (#438) *(9aa5506)* [**nt-0**]
|
|
19
9
|
|
|
20
10
|
|
|
21
11
|
|
|
@@ -29,7 +19,4 @@
|
|
|
29
19
|
|
|
30
20
|
| Change ID | Author | Description |
|
|
31
21
|
| --------- | ------ | ----------- |
|
|
32
|
-
|
|
|
33
|
-
| 82a77ed | MAG-AW | [OF-1335] feat: Added HotspotSpaceComponent (#435)<br>• [OF-1335] feat: Added HotspotSpaceComponent<br>• Added the new Component<br>• Added script bindings<br>• Added tests<br>•Removed duplicated TextSpaceComponent script bindings |
|
|
34
|
-
| 032d106 | MAG-IY | [OF-1303] feat: support for maintainance window url (#436)<br>• [OF-1303] feat: support for maint window url<br>• Add running switch to Maintainance system<br>• Add maintainance URL to ClientUserAgent info<br>• Change Maint API to consume supplied url<br>• turn off main system if query fail.<br>• [OF-1303] feat!: CSPFoundation to support url<br>•Moved maint window url to EndPointUrls<br>•Changed CSPFoundation public API to accept url<br>•Changed MaintainanceAPI to accept const ref<br>•Changed switch variable name<br>•Updated MaintainanceSystem to use url<br>•Updated API use in tests and test helpers<br>• [OF-1303] feat!: support for maintainanceUrls<br><br>Updated TestHelper.cs and MultiplayerTestClient.cs to consume new API<br>• [OF-1303] feat!: support for maint window url<br>• updated TestHelpers to initialise csp with maintainance url<br>• removed erroneous call arg from LogSystemTests<br>• [OF-1303] feat!: support for maint window url<br>•removed previous public API change<br>•added string arg to MaintainanceSystem Call<br>•updated test to consume updated API<br>• [OF-1303] feat!: support for maint window url<br>• Removed unneeded header<br>• Added error logging if GetMaintainanceInfo fails. |
|
|
35
|
-
| 9aa5506 | Daniel | [nt-0] fix: Update spelling mismatch (#438) |
|
|
22
|
+
| 71a47ad | MAG-mv | Staging/v4.30.0 (#447)<br>• [NT-0] test: Updating CSP tests to comply with new EventBrite data formatting requirements<br>EventBrite have made a services change that now rejects data that does not match their expected schema.<br>We have addressed this in CSP tests by changing the data passed into CSP to match the EventBrite schema.<br>We have also refactored the eticketing tests to all rely on a single set of test variables, to simplify updates in the future.<br>• [OF-1324] fix: path validation for CartId <br>GetCheckoutInformation now checks CartId for forward and backward slashes and early-outs with an error message in the log if found.<br>• [OF-1359] refac: Update the hotspot component type properties<br>OF-1359 refac: Update the hotspot component type properties<br>• Removed the hotspot space component get/set hotspot type methods and associated property<br>• Removed the enum for HotspotType<br>• Added get/set IsTeleportPoint and IsSpawnPoint methods both storing their values in boolean properties<br>• Updated the hotspot space component script interface<br>• Updated the hostspot space component tests<br>• [OF-1334] feat: Sequence System - Generic system for storing shared sorted lists. (#441)<br>• [OF-1334] feat: add sequence system<br>• [OF-1334] refac: PR changes<br>• [OF-1334] doc: update comments<br>• [OF-1334] refac: add additional test + comments<br>---------<br>Co-authored-by: Sam Birley <99482500+MAG-SamBirley@users.noreply.github.com><br>Co-authored-by: MAG-AW <99488940+MAG-AW@users.noreply.github.com><br>Co-authored-by: MAG-me <115081336+MAG-ME@users.noreply.github.com> |
|