connected-spaces-platform.web 4.27.2 → 4.28.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/Debug/ConnectedSpacesPlatform_WASM.js +84 -10
- package/Debug/ConnectedSpacesPlatform_WASM.wasm +0 -0
- package/Debug/ConnectedSpacesPlatform_WASM.wasm.debug.wasm +0 -0
- package/README.md +26 -3
- package/Release/ConnectedSpacesPlatform_WASM.js +1 -1
- package/Release/ConnectedSpacesPlatform_WASM.wasm +0 -0
- package/connectedspacesplatform.d.ts +220 -16
- package/connectedspacesplatform.js +441 -32
- package/connectedspacesplatform.js.map +1 -1
- package/connectedspacesplatform.ts +801 -48
- 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 5762ca81845885ae91c62d3c88432de5da601517
|
|
2
2
|
|
|
3
3
|
<br>
|
|
4
4
|
|
|
@@ -6,12 +6,26 @@
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
+
### 🍰 🙌 New Features
|
|
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**]
|
|
16
|
+
|
|
9
17
|
|
|
10
18
|
### 🐛 🔨 Bug Fixes
|
|
11
19
|
|
|
12
|
-
-
|
|
20
|
+
- Fix_Generate_Shell_Scripts (#423) *(12d9005)* [**OF-1327**]
|
|
21
|
+
|
|
22
|
+
|
|
13
23
|
|
|
24
|
+
### 💫 💥 Code Refactors
|
|
14
25
|
|
|
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**]
|
|
15
29
|
|
|
16
30
|
|
|
17
31
|
|
|
@@ -23,4 +37,13 @@
|
|
|
23
37
|
|
|
24
38
|
| Change ID | Author | Description |
|
|
25
39
|
| --------- | ------ | ----------- |
|
|
26
|
-
|
|
|
40
|
+
| 2d49392 | mag-richardzirbes | [NT-0] feat: Vision OS example app (#416)<br>• Add Vision OS example app<br>• 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>• [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 |
|