connected-spaces-platform.web 5.5.0 → 5.5.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.
@@ -3101,17 +3101,19 @@ export namespace Multiplayer {
3101
3101
  export namespace Multiplayer {
3102
3102
  /**
3103
3103
  * @description Enum representing the type of a replicated value.
3104
+ * These values are serialized and stored as integers.
3105
+ * When adding new values, always add to the end
3104
3106
  */
3105
3107
  export enum ReplicatedValueType {
3106
- InvalidType,
3107
- Boolean,
3108
- Integer,
3109
- Float,
3110
- String,
3111
- Vector2,
3112
- Vector3,
3113
- Vector4,
3114
- Map,
3108
+ InvalidType = 0,
3109
+ Boolean = 1,
3110
+ Integer = 2,
3111
+ Float = 3,
3112
+ String = 4,
3113
+ Vector3 = 5,
3114
+ Vector4 = 6,
3115
+ Vector2 = 7,
3116
+ Map = 8,
3115
3117
  }
3116
3118
  }
3117
3119
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "connected-spaces-platform.web",
3
3
  "displayName": "connected-spaces-platform.web",
4
- "version": "5.5.0+553",
4
+ "version": "5.5.1+560",
5
5
  "description": "This package provides the binaries required to interface with the Connected Spaces Platform API.",
6
6
  "license": "Apache-2.0",
7
7
  "dependencies": {