connected-spaces-platform.web 4.12.1 → 4.13.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 +6 -2
- package/Debug/ConnectedSpacesPlatform_WASM.wasm +0 -0
- package/Debug/ConnectedSpacesPlatform_WASM.wasm.debug.wasm +0 -0
- package/README.md +26 -12
- package/Release/ConnectedSpacesPlatform_WASM.js +1 -1
- package/Release/ConnectedSpacesPlatform_WASM.wasm +0 -0
- package/connectedspacesplatform.d.ts +5 -2
- package/connectedspacesplatform.js +21 -3
- package/connectedspacesplatform.js.map +1 -1
- package/connectedspacesplatform.ts +35 -3
- package/package.json +1 -1
|
@@ -29397,7 +29397,7 @@ export namespace Systems {
|
|
|
29397
29397
|
export namespace Systems {
|
|
29398
29398
|
/**
|
|
29399
29399
|
@ingroup Space System
|
|
29400
|
-
* @description Data representation of roles for a group of invited users and the
|
|
29400
|
+
* @description Data representation of roles for a group of invited users, the email link and the destination link to be included in the invite emails
|
|
29401
29401
|
*/
|
|
29402
29402
|
export class InviteUserRoleInfoCollection
|
|
29403
29403
|
extends NativeClassWrapper
|
|
@@ -29469,6 +29469,26 @@ export namespace Systems {
|
|
|
29469
29469
|
);
|
|
29470
29470
|
}
|
|
29471
29471
|
|
|
29472
|
+
get signupUrl(): string {
|
|
29473
|
+
let _result = Module.ccall(
|
|
29474
|
+
"csp_systems_InviteUserRoleInfoCollection__Get_SignupUrl",
|
|
29475
|
+
"string",
|
|
29476
|
+
["number"],
|
|
29477
|
+
[this.pointer],
|
|
29478
|
+
);
|
|
29479
|
+
|
|
29480
|
+
return _result;
|
|
29481
|
+
}
|
|
29482
|
+
|
|
29483
|
+
set signupUrl(value: string) {
|
|
29484
|
+
Module.ccall(
|
|
29485
|
+
"csp_systems_InviteUserRoleInfoCollection__Set_SignupUrl",
|
|
29486
|
+
"void",
|
|
29487
|
+
["number", "string"],
|
|
29488
|
+
[this.pointer, value],
|
|
29489
|
+
);
|
|
29490
|
+
}
|
|
29491
|
+
|
|
29472
29492
|
get inviteUserRoleInfos(): Common.Array<Systems.InviteUserRoleInfo> {
|
|
29473
29493
|
const _ptr = Module._malloc(8);
|
|
29474
29494
|
Module.ccall(
|
|
@@ -45592,6 +45612,7 @@ export namespace Systems {
|
|
|
45592
45612
|
* @param isModeratorRole - If present and true sets the user's role in the space to "moderator", pass false or
|
|
45593
45613
|
* nullptr to leave role as default
|
|
45594
45614
|
* @param emailLinkUrl - Link that will be provided in the invite email
|
|
45615
|
+
* @param signupUrl - Destination link that will be provided in the invite email
|
|
45595
45616
|
* @param callback - Callback when asynchronous task finishes
|
|
45596
45617
|
*/
|
|
45597
45618
|
|
|
@@ -45600,6 +45621,7 @@ export namespace Systems {
|
|
|
45600
45621
|
email: string,
|
|
45601
45622
|
isModeratorRole: boolean | null,
|
|
45602
45623
|
emailLinkUrl: string | null,
|
|
45624
|
+
signupUrl: string | null,
|
|
45603
45625
|
): Promise<Systems.NullResult> {
|
|
45604
45626
|
var _resolve;
|
|
45605
45627
|
|
|
@@ -45631,15 +45653,25 @@ export namespace Systems {
|
|
|
45631
45653
|
}
|
|
45632
45654
|
|
|
45633
45655
|
Module.ccall(
|
|
45634
|
-
"
|
|
45656
|
+
"csp_systems_SpaceSystem_InviteToSpace_void_StringRC_StringRC_boolRC_StringRC_StringRC_NullResultCallback",
|
|
45635
45657
|
"void",
|
|
45636
|
-
[
|
|
45658
|
+
[
|
|
45659
|
+
"number",
|
|
45660
|
+
"string",
|
|
45661
|
+
"string",
|
|
45662
|
+
"boolean",
|
|
45663
|
+
"string",
|
|
45664
|
+
"string",
|
|
45665
|
+
"number",
|
|
45666
|
+
"number",
|
|
45667
|
+
],
|
|
45637
45668
|
[
|
|
45638
45669
|
this.pointer,
|
|
45639
45670
|
spaceId,
|
|
45640
45671
|
email,
|
|
45641
45672
|
isModeratorRolePointer,
|
|
45642
45673
|
emailLinkUrl,
|
|
45674
|
+
signupUrl,
|
|
45643
45675
|
_callbackPtr,
|
|
45644
45676
|
0,
|
|
45645
45677
|
],
|
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.
|
|
4
|
+
"version": "4.13.0+482",
|
|
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": {
|