connected-spaces-platform.web 4.15.0 → 4.15.2
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 +6 -6
- package/Debug/ConnectedSpacesPlatform_WASM.wasm +0 -0
- package/Debug/ConnectedSpacesPlatform_WASM.wasm.debug.wasm +0 -0
- package/Release/ConnectedSpacesPlatform_WASM.js +1 -1
- package/Release/ConnectedSpacesPlatform_WASM.wasm +0 -0
- package/connectedspacesplatform.d.ts +1 -1
- package/connectedspacesplatform.js +7 -4
- package/connectedspacesplatform.js.map +1 -1
- package/connectedspacesplatform.ts +7 -4
- package/package.json +1 -1
|
@@ -4805,7 +4805,7 @@ export namespace Common {
|
|
|
4805
4805
|
|
|
4806
4806
|
cancelled(): boolean {
|
|
4807
4807
|
let _result = Module.ccall(
|
|
4808
|
-
"
|
|
4808
|
+
"csp_common_CancellationToken_CancelledC_bool",
|
|
4809
4809
|
"boolean",
|
|
4810
4810
|
["number"],
|
|
4811
4811
|
[this.pointer]
|
|
@@ -41256,6 +41256,7 @@ export namespace Systems {
|
|
|
41256
41256
|
var assetCollectionTypePointer = 0;
|
|
41257
41257
|
if (assetCollectionType != null) {
|
|
41258
41258
|
assetCollectionTypePointer = Module._malloc(4);
|
|
41259
|
+
Module.setValue(assetCollectionTypePointer, assetCollectionType, "i32");
|
|
41259
41260
|
}
|
|
41260
41261
|
|
|
41261
41262
|
var resultsSkipNumberPointer = 0;
|
|
@@ -41407,6 +41408,7 @@ export namespace Systems {
|
|
|
41407
41408
|
var thirdPartyPlatformPointer = 0;
|
|
41408
41409
|
if (thirdPartyPlatform != null) {
|
|
41409
41410
|
thirdPartyPlatformPointer = Module._malloc(4);
|
|
41411
|
+
Module.setValue(thirdPartyPlatformPointer, thirdPartyPlatform, "i32");
|
|
41410
41412
|
}
|
|
41411
41413
|
|
|
41412
41414
|
Module.ccall(
|
|
@@ -44265,7 +44267,7 @@ export namespace Systems {
|
|
|
44265
44267
|
|
|
44266
44268
|
export namespace Systems {
|
|
44267
44269
|
/**
|
|
44268
|
-
@ingroup
|
|
44270
|
+
@ingroup Quota System
|
|
44269
44271
|
* @description Public facing system that allows interfacing with Magnopus Connect Services' Quota Server.
|
|
44270
44272
|
* Offers methods for receiving Quota Queries.
|
|
44271
44273
|
*/
|
|
@@ -44577,7 +44579,7 @@ export namespace Systems {
|
|
|
44577
44579
|
_callbackPtr = Module.addFunction(_callback, "vii");
|
|
44578
44580
|
|
|
44579
44581
|
Module.ccall(
|
|
44580
|
-
"
|
|
44582
|
+
"csp_systems_QuotaSystem_GetTierFeatureQuota_void_TierNames_TierFeatures_FeatureQuotaCallback",
|
|
44581
44583
|
"void",
|
|
44582
44584
|
["number", "number", "number", "number", "number"],
|
|
44583
44585
|
[this.pointer, tierName, featureName, _callbackPtr, 0]
|
|
@@ -44620,7 +44622,7 @@ export namespace Systems {
|
|
|
44620
44622
|
_callbackPtr = Module.addFunction(_callback, "vii");
|
|
44621
44623
|
|
|
44622
44624
|
Module.ccall(
|
|
44623
|
-
"
|
|
44625
|
+
"csp_systems_QuotaSystem_GetTierFeaturesQuota_void_TierNames_FeaturesQuotaCallback",
|
|
44624
44626
|
"void",
|
|
44625
44627
|
["number", "number", "number", "number"],
|
|
44626
44628
|
[this.pointer, tierName, _callbackPtr, 0]
|
|
@@ -46494,6 +46496,7 @@ export namespace Systems {
|
|
|
46494
46496
|
var typePointer = 0;
|
|
46495
46497
|
if (type != null) {
|
|
46496
46498
|
typePointer = Module._malloc(4);
|
|
46499
|
+
Module.setValue(typePointer, type, "i32");
|
|
46497
46500
|
}
|
|
46498
46501
|
|
|
46499
46502
|
Module.ccall(
|
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": "4.15.
|
|
4
|
+
"version": "4.15.2+488",
|
|
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": {
|