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.
- package/Debug/ConnectedSpacesPlatform_WASM.js +2 -2
- package/Debug/ConnectedSpacesPlatform_WASM.wasm +0 -0
- package/Debug/ConnectedSpacesPlatform_WASM.wasm.debug.wasm +0 -0
- package/README.md +10 -21
- package/Release/ConnectedSpacesPlatform_WASM.js +1 -1
- package/Release/ConnectedSpacesPlatform_WASM.wasm +0 -0
- package/connectedspacesplatform.d.ts +2 -1
- package/connectedspacesplatform.js +1 -0
- package/connectedspacesplatform.js.map +1 -1
- package/connectedspacesplatform.ts +1 -0
- package/package.json +1 -1
|
@@ -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"] =
|
|
12857
|
+
var ___start_em_js = Module["___start_em_js"] = 318296;
|
|
12858
12858
|
|
|
12859
|
-
var ___stop_em_js = Module["___stop_em_js"] =
|
|
12859
|
+
var ___stop_em_js = Module["___stop_em_js"] = 318694;
|
|
12860
12860
|
|
|
12861
12861
|
Module["keepRuntimeAlive"] = keepRuntimeAlive;
|
|
12862
12862
|
|
|
Binary file
|
|
Binary file
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Built from changelist ID
|
|
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
|
-
-
|
|
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
|
-
-
|
|
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
|
-
|
|
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
|
-
|
|
|
41
|
-
|
|
|
42
|
-
|
|
|
43
|
-
|
|
|
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>• [OF-1172] fix: update csp-services<br>• [OF-1172] feat: add QuantityAvailable to variant<br>• [OF-1172] test: add quantityavailable check<br>• [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>• [OF-1234] feat: wip AssetCollection orgId<br>• [OF-1234] fix: AssetCollection copy operator |
|
|
35
|
+
| a9e5187 | MAG-AW | [NT-0] test: ConversationSystemTests fix (#430)<br>• 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>• [OPE-1738]: refac: moved csp tick loop start to after login in examples<br>• [OPE-1738]: retrigger checks |
|
|
37
|
+
| dffb01c | mag-richardzirbes | [NT-0] feat: Update Example visionOS README & example code update (#429)<br>• [NT-0] feat: Vision OS example app readme & minor code updates<br>• 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. |
|