connected-spaces-platform.web 4.28.0 → 4.28.1

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.
@@ -12854,9 +12854,9 @@ var ___thrown_object_from_unwind_exception = Module["___thrown_object_from_unwin
12854
12854
 
12855
12855
  var ___get_exception_message = Module["___get_exception_message"] = createExportWrapper("__get_exception_message");
12856
12856
 
12857
- var ___start_em_js = Module["___start_em_js"] = 318184;
12857
+ var ___start_em_js = Module["___start_em_js"] = 318296;
12858
12858
 
12859
- var ___stop_em_js = Module["___stop_em_js"] = 318582;
12859
+ var ___stop_em_js = Module["___stop_em_js"] = 318694;
12860
12860
 
12861
12861
  Module["keepRuntimeAlive"] = keepRuntimeAlive;
12862
12862
 
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Built from changelist ID 5762ca81845885ae91c62d3c88432de5da601517
1
+ # Built from changelist ID f24b5bea05573ddcb92974d3d9339f565ec9174a
2
2
 
3
3
  <br>
4
4
 
@@ -8,25 +8,20 @@
8
8
 
9
9
  ### 🍰 🙌 New Features
10
10
 
11
- - Vision OS example app (#416) *(2d49392)* [**No Ticket**]
12
- - Added OrganizationId to Space (#418) *(dbeace9)* [**OF-1233**]
13
- - Text components (#420) *(5a127a3)* [**OF-1311**]
14
- - Organization System support for CRUD endpoints *(892b860)* [**OF-1237**]
15
- - AssetCollection organization IDs (#425) *(9d74222)* [**OF-1234**]
11
+ - Update Example visionOS README & example code update (#429) *(dffb01c)* [**No Ticket**]
16
12
 
17
13
 
18
14
  ### 🐛 🔨 Bug Fixes
19
15
 
20
- - Fix_Generate_Shell_Scripts (#423) *(12d9005)* [**OF-1327**]
16
+ - Moved CSP tick loop start after login in examples (#427) *(61a0ac2)* [**OPE-1738**]
17
+ - Missing TextSpaceComponent refs (#431) *(3d15817)* [**OF-1330**]
21
18
 
22
19
 
23
20
 
24
- ### 💫 💥 Code Refactors
25
21
 
26
- - ComponentBase type getters (#419) *(e2d030c)* [**OF-1314**]
27
- - Update generate shell scripts (#421) *(a3a4338)* [**OF-1322**]
28
- - Expand `Variant` float type *(fc60f78)* [**No Ticket**]
22
+ ### 🙈 🙉 🙊 Test Changes
29
23
 
24
+ - ConversationSystemTests fix (#430) *(a9e5187)* [**No Ticket**]
30
25
 
31
26
 
32
27
 
@@ -37,13 +32,7 @@
37
32
 
38
33
  | Change ID | Author | Description |
39
34
  | --------- | ------ | ----------- |
40
- | 2d49392 | mag-richardzirbes | [NT-0] feat: Vision OS example app (#416)<br>&bull; Add Vision OS example app<br>&bull; Add copyright headers to scripts, change client version to 0.0.1 |
41
- | dbeace9 | MAG-AW | [OF-1233] feat: added OrganizationId to Space (#418) |
42
- | e2d030c | MAG-AW | [OF-1314] refac: ComponentBase type getters (#419)<br>- Add type-safe getters for the 6 ReplicatedValue types<br>- Refactored components to use these functions |
43
- | 5a127a3 | MAG-IY | [OF-1311] feat: Text components (#420)<br>Client applications can now create, update and delete text components that belong to an entity.<br>Text components allow the client application to reason about a body of text that should appear at a particular location in a space, along with its billboarding behaviour, size, background and text color. |
44
- | a3a4338 | AdamThorn | [OF-1322] refac: Update generate shell scripts (#421)<br>As of Python 3.12+ it is a requirement that we use a venv to install<br>modules. The generate_solution_X.sh scripts for mac, ios and visionos<br>have all been updated to check for the version of Python installed,<br>and if >= 3.12, to create and activate a venv before proceeding with<br>module installation. |
45
- | fc60f78 | Michael K. | [NT-0] refac: expand `Variant` float type<br>This change expands floats in `csp::common::Variant` from single to<br>double precision. |
46
- | 892b860 | AdamThorn | [OF-1237] feat: Organization System support for CRUD endpoints<br>Added support for CRUD endpoints to the Organization System so that users are able to Create, Get, Update and Deactivate Organizations. Tests have also been added to validate these new endpoints.<br>In addition the requirement for a separate Organization test account credentials text file has been removed, and the account credentials of the OKO_TESTS tenant admin are now read from the existing account credentials file. |
47
- | 4fd2db3 | MAG-AW | Of 1172 feat: Querying for ecommerce product variants now also returns the available stock count (#422)<br>&bull; [OF-1172] fix: update csp-services<br>&bull; [OF-1172] feat: add QuantityAvailable to variant<br>&bull; [OF-1172] test: add quantityavailable check<br>&bull; [OF-1172] refac: QuantityAvailable AvailableStock |
48
- | 12d9005 | MAG-IY | [OF-1327] fix: Fix_Generate_Shell_Scripts (#423)<br>Removed typo causing mac/ios generation to fail.<br>Co-authored-by: MAG-AW <99488940+MAG-AW@users.noreply.github.com> |
49
- | 9d74222 | MAG-AW | [OF-1234] feat: AssetCollection organization IDs (#425)<br>&bull; [OF-1234] feat: wip AssetCollection orgId<br>&bull; [OF-1234] fix: AssetCollection copy operator |
35
+ | a9e5187 | MAG-AW | [NT-0] test: ConversationSystemTests fix (#430)<br>&bull; Fixed test not entering and exiting spaces correctly before<br>sending network events. |
36
+ | 61a0ac2 | Lyubomir Lichev | [OPE-1738] fix: Moved CSP tick loop start after login in examples (#427)<br>&bull; [OPE-1738]: refac: moved csp tick loop start to after login in examples<br>&bull; [OPE-1738]: retrigger checks |
37
+ | dffb01c | mag-richardzirbes | [NT-0] feat: Update Example visionOS README & example code update (#429)<br>&bull; [NT-0] feat: Vision OS example app readme & minor code updates<br>&bull; Update Readme |
38
+ | 3d15817 | MAG-IY | [OF-1330] fix: missing TextSpaceComponent refs (#431)<br>Added missing references to TextSpaceComponent.<br>Added tests to verify everything is working. |