connected-spaces-platform.web 5.5.2 → 5.6.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.
@@ -27089,75 +27089,6 @@ export namespace Systems {
27089
27089
  return new Asset(_nPtr);
27090
27090
  }
27091
27091
 
27092
- /**
27093
- * @description Gets the third party packaged asset identifier of this asset
27094
- * @return Returns a string representing the party packaged asset identifier set for this asset.
27095
- */
27096
-
27097
- getThirdPartyPackagedAssetIdentifier(): string {
27098
- let _result = Module.ccall(
27099
- "csp_systems_Asset_GetThirdPartyPackagedAssetIdentifierC_StringRC",
27100
- "number",
27101
- ["number"],
27102
- [this.pointer],
27103
- );
27104
-
27105
- const _resultString = Module.UTF8ToString(_result);
27106
- free(_result);
27107
-
27108
- _result = _resultString;
27109
-
27110
- return _result;
27111
- }
27112
-
27113
- /**
27114
- * @description Sets the party packaged asset identifier for this asset
27115
- * @param inThirdPartyPackagedAssetIdentifier - The third party packaged asset identifier to set.
27116
- */
27117
-
27118
- setThirdPartyPackagedAssetIdentifier(
27119
- thirdPartyPackagedAssetIdentifier: string,
27120
- ): void {
27121
- Module.ccall(
27122
- "csp_systems_Asset_SetThirdPartyPackagedAssetIdentifier_void_StringRC",
27123
- "void",
27124
- ["number", "string"],
27125
- [this.pointer, thirdPartyPackagedAssetIdentifier],
27126
- );
27127
- }
27128
-
27129
- /**
27130
- * @description Gets the third party platform type of this asset
27131
- * @return Returns a string representing third party platform type set for this asset.
27132
- */
27133
-
27134
- getThirdPartyPlatformType(): Systems.EThirdPartyPlatform {
27135
- let _result = Module.ccall(
27136
- "csp_systems_Asset_GetThirdPartyPlatformTypeC_EThirdPartyPlatformC",
27137
- "number",
27138
- ["number"],
27139
- [this.pointer],
27140
- );
27141
-
27142
- return _result;
27143
- }
27144
-
27145
- /**
27146
- * @description Sets third party platform type for this asset
27147
- * @param inThirdPartyPlatformType - The third party platform type to set.
27148
- */
27149
-
27150
- setThirdPartyPlatformType(
27151
- thirdPartyPlatformType: Systems.EThirdPartyPlatform,
27152
- ): void {
27153
- Module.ccall(
27154
- "csp_systems_Asset_SetThirdPartyPlatformType_void_EThirdPartyPlatformC",
27155
- "void",
27156
- ["number", "number"],
27157
- [this.pointer, thirdPartyPlatformType],
27158
- );
27159
- }
27160
-
27161
27092
  delete(): void {
27162
27093
  if (this.ownsPointer && !this.disposed) {
27163
27094
  Module.ccall(
@@ -27458,6 +27389,46 @@ export namespace Systems {
27458
27389
  [this.pointer, value],
27459
27390
  );
27460
27391
  }
27392
+
27393
+ get thirdPartyPackagedAssetIdentifier(): string {
27394
+ let _result = Module.ccall(
27395
+ "csp_systems_Asset__Get_ThirdPartyPackagedAssetIdentifier",
27396
+ "string",
27397
+ ["number"],
27398
+ [this.pointer],
27399
+ );
27400
+
27401
+ return _result;
27402
+ }
27403
+
27404
+ set thirdPartyPackagedAssetIdentifier(value: string) {
27405
+ Module.ccall(
27406
+ "csp_systems_Asset__Set_ThirdPartyPackagedAssetIdentifier",
27407
+ "void",
27408
+ ["number", "string"],
27409
+ [this.pointer, value],
27410
+ );
27411
+ }
27412
+
27413
+ get thirdPartyPlatformType(): Systems.EThirdPartyPlatform {
27414
+ let _result = Module.ccall(
27415
+ "csp_systems_Asset__Get_ThirdPartyPlatformType",
27416
+ "number",
27417
+ ["number"],
27418
+ [this.pointer],
27419
+ );
27420
+
27421
+ return _result;
27422
+ }
27423
+
27424
+ set thirdPartyPlatformType(value: Systems.EThirdPartyPlatform) {
27425
+ Module.ccall(
27426
+ "csp_systems_Asset__Set_ThirdPartyPlatformType",
27427
+ "void",
27428
+ ["number", "number"],
27429
+ [this.pointer, value],
27430
+ );
27431
+ }
27461
27432
  }
27462
27433
  }
27463
27434
 
@@ -50265,19 +50236,20 @@ export namespace Systems {
50265
50236
  return _result;
50266
50237
  }
50267
50238
 
50268
- getAvatarIdentifier(): Common.Variant {
50269
- var _ret = Module._malloc(8);
50270
-
50271
- Module.ccall(
50272
- "csp_systems_AvatarInfoResult_GetAvatarIdentifierC_VariantRC",
50273
- "void",
50274
- ["number", "number"],
50275
- [_ret, this.pointer],
50239
+ getAvatarIdentifier(): string {
50240
+ let _result = Module.ccall(
50241
+ "csp_systems_AvatarInfoResult_GetAvatarIdentifierC_StringRC",
50242
+ "number",
50243
+ ["number"],
50244
+ [this.pointer],
50276
50245
  );
50277
- var _nPtr = new Common.Variant(getNativePointer(_ret));
50278
- Module._free(_ret);
50279
50246
 
50280
- return _nPtr;
50247
+ const _resultString = Module.UTF8ToString(_result);
50248
+ free(_result);
50249
+
50250
+ _result = _resultString;
50251
+
50252
+ return _result;
50281
50253
  }
50282
50254
 
50283
50255
  delete(): void {
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.2+562",
4
+ "version": "5.6.0+564",
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": {