connected-spaces-platform.web 4.10.1 → 4.10.5
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 +21 -7
- package/Debug/ConnectedSpacesPlatform_WASM.wasm +0 -0
- package/Debug/ConnectedSpacesPlatform_WASM.wasm.debug.wasm +0 -0
- package/README.md +9 -37
- package/Release/ConnectedSpacesPlatform_WASM.js +1 -1
- package/Release/ConnectedSpacesPlatform_WASM.wasm +0 -0
- package/connectedspacesplatform.d.ts +16 -4
- package/connectedspacesplatform.js +60 -5
- package/connectedspacesplatform.js.map +1 -1
- package/connectedspacesplatform.ts +125 -9
- package/package.json +1 -1
|
@@ -1254,6 +1254,14 @@ function csp_systems_InviteUserRoleInfoFactory(
|
|
|
1254
1254
|
ProxyClassFactories["csp_systems_InviteUserRoleInfo"] =
|
|
1255
1255
|
csp_systems_InviteUserRoleInfoFactory;
|
|
1256
1256
|
|
|
1257
|
+
function csp_systems_InviteUserRoleInfoCollectionFactory(
|
|
1258
|
+
nativePointer: NativePointer,
|
|
1259
|
+
): NativeClassWrapper {
|
|
1260
|
+
return new Systems.InviteUserRoleInfoCollection(nativePointer);
|
|
1261
|
+
}
|
|
1262
|
+
ProxyClassFactories["csp_systems_InviteUserRoleInfoCollection"] =
|
|
1263
|
+
csp_systems_InviteUserRoleInfoCollectionFactory;
|
|
1264
|
+
|
|
1257
1265
|
function csp_systems_OlyAnchorPositionFactory(
|
|
1258
1266
|
nativePointer: NativePointer,
|
|
1259
1267
|
): NativeClassWrapper {
|
|
@@ -27123,6 +27131,105 @@ export namespace Systems {
|
|
|
27123
27131
|
}
|
|
27124
27132
|
}
|
|
27125
27133
|
|
|
27134
|
+
export namespace Systems {
|
|
27135
|
+
export class InviteUserRoleInfoCollection
|
|
27136
|
+
extends NativeClassWrapper
|
|
27137
|
+
implements INativeResource
|
|
27138
|
+
{
|
|
27139
|
+
/** @internal */
|
|
27140
|
+
constructor(pointer: NativePointer) {
|
|
27141
|
+
super(pointer);
|
|
27142
|
+
}
|
|
27143
|
+
|
|
27144
|
+
static create(): InviteUserRoleInfoCollection {
|
|
27145
|
+
var _ptr = Module._malloc(8);
|
|
27146
|
+
Module.ccall(
|
|
27147
|
+
"csp_systems_InviteUserRoleInfoCollection_Ctor",
|
|
27148
|
+
"void",
|
|
27149
|
+
["number"],
|
|
27150
|
+
[_ptr],
|
|
27151
|
+
);
|
|
27152
|
+
var _nPtr = getNativePointer(_ptr);
|
|
27153
|
+
|
|
27154
|
+
return new InviteUserRoleInfoCollection(_nPtr);
|
|
27155
|
+
}
|
|
27156
|
+
|
|
27157
|
+
static create_other(
|
|
27158
|
+
other: Systems.InviteUserRoleInfoCollection,
|
|
27159
|
+
): InviteUserRoleInfoCollection {
|
|
27160
|
+
var _ptr = Module._malloc(8);
|
|
27161
|
+
Module.ccall(
|
|
27162
|
+
"csp_systems_InviteUserRoleInfoCollection_Ctor_InviteUserRoleInfoCollectionRC",
|
|
27163
|
+
"void",
|
|
27164
|
+
["number", "number"],
|
|
27165
|
+
[_ptr, other.pointer],
|
|
27166
|
+
);
|
|
27167
|
+
var _nPtr = getNativePointer(_ptr);
|
|
27168
|
+
|
|
27169
|
+
return new InviteUserRoleInfoCollection(_nPtr);
|
|
27170
|
+
}
|
|
27171
|
+
|
|
27172
|
+
delete(): void {
|
|
27173
|
+
if (this.ownsPointer && !this.disposed) {
|
|
27174
|
+
Module.ccall(
|
|
27175
|
+
"csp_systems_InviteUserRoleInfoCollection_Dtor",
|
|
27176
|
+
"void",
|
|
27177
|
+
["number"],
|
|
27178
|
+
[this.pointer],
|
|
27179
|
+
);
|
|
27180
|
+
|
|
27181
|
+
this.disposed = true;
|
|
27182
|
+
}
|
|
27183
|
+
}
|
|
27184
|
+
|
|
27185
|
+
get emailLinkUrl(): string {
|
|
27186
|
+
let _result = Module.ccall(
|
|
27187
|
+
"csp_systems_InviteUserRoleInfoCollection__Get_EmailLinkUrl",
|
|
27188
|
+
"string",
|
|
27189
|
+
["number"],
|
|
27190
|
+
[this.pointer],
|
|
27191
|
+
);
|
|
27192
|
+
|
|
27193
|
+
return _result;
|
|
27194
|
+
}
|
|
27195
|
+
|
|
27196
|
+
set emailLinkUrl(value: string) {
|
|
27197
|
+
Module.ccall(
|
|
27198
|
+
"csp_systems_InviteUserRoleInfoCollection__Set_EmailLinkUrl",
|
|
27199
|
+
"void",
|
|
27200
|
+
["number", "string"],
|
|
27201
|
+
[this.pointer, value],
|
|
27202
|
+
);
|
|
27203
|
+
}
|
|
27204
|
+
|
|
27205
|
+
get inviteUserRoleInfos(): Common.Array<Systems.InviteUserRoleInfo> {
|
|
27206
|
+
const _ptr = Module._malloc(8);
|
|
27207
|
+
Module.ccall(
|
|
27208
|
+
"csp_systems_InviteUserRoleInfoCollection__Get_InviteUserRoleInfos",
|
|
27209
|
+
"void",
|
|
27210
|
+
["number", "number"],
|
|
27211
|
+
[_ptr, this.pointer],
|
|
27212
|
+
);
|
|
27213
|
+
|
|
27214
|
+
const _nPtr = getNativePointer(_ptr);
|
|
27215
|
+
return new Common.Array<Systems.InviteUserRoleInfo>(
|
|
27216
|
+
_nPtr,
|
|
27217
|
+
csp_systems_InviteUserRoleInfoFactory,
|
|
27218
|
+
"csp_systems_InviteUserRoleInfo",
|
|
27219
|
+
);
|
|
27220
|
+
}
|
|
27221
|
+
|
|
27222
|
+
set inviteUserRoleInfos(value: Common.Array<Systems.InviteUserRoleInfo>) {
|
|
27223
|
+
Module.ccall(
|
|
27224
|
+
"csp_systems_InviteUserRoleInfoCollection__Set_InviteUserRoleInfos",
|
|
27225
|
+
"void",
|
|
27226
|
+
["number", "number"],
|
|
27227
|
+
[this.pointer, value.pointer],
|
|
27228
|
+
);
|
|
27229
|
+
}
|
|
27230
|
+
}
|
|
27231
|
+
}
|
|
27232
|
+
|
|
27126
27233
|
export namespace Systems {
|
|
27127
27234
|
export class OlyAnchorPosition
|
|
27128
27235
|
extends NativeClassWrapper
|
|
@@ -39559,7 +39666,7 @@ export namespace Systems {
|
|
|
39559
39666
|
name: string,
|
|
39560
39667
|
description: string,
|
|
39561
39668
|
attributes: Systems.SpaceAttributes,
|
|
39562
|
-
inviteUsers:
|
|
39669
|
+
inviteUsers: Systems.InviteUserRoleInfoCollection | null,
|
|
39563
39670
|
metadata: Common.Map<string, string>,
|
|
39564
39671
|
fileThumbnail: Systems.FileAssetDataSource | null,
|
|
39565
39672
|
): Promise<Systems.SpaceResult> {
|
|
@@ -39588,7 +39695,7 @@ export namespace Systems {
|
|
|
39588
39695
|
_callbackPtr = Module.addFunction(_callback, "vii");
|
|
39589
39696
|
|
|
39590
39697
|
Module.ccall(
|
|
39591
|
-
"
|
|
39698
|
+
"csp_systems_SpaceSystem_CreateSpace_void_StringRC_StringRC_SpaceAttributes_InviteUserRoleInfoCollectionRC_MapRC_FileAssetDataSourceRC_SpaceResultCallback",
|
|
39592
39699
|
"void",
|
|
39593
39700
|
[
|
|
39594
39701
|
"number",
|
|
@@ -39621,7 +39728,7 @@ export namespace Systems {
|
|
|
39621
39728
|
name: string,
|
|
39622
39729
|
description: string,
|
|
39623
39730
|
attributes: Systems.SpaceAttributes,
|
|
39624
|
-
inviteUsers:
|
|
39731
|
+
inviteUsers: Systems.InviteUserRoleInfoCollection | null,
|
|
39625
39732
|
metadata: Common.Map<string, string>,
|
|
39626
39733
|
thumbnail: Systems.BufferAssetDataSource,
|
|
39627
39734
|
): Promise<Systems.SpaceResult> {
|
|
@@ -39650,7 +39757,7 @@ export namespace Systems {
|
|
|
39650
39757
|
_callbackPtr = Module.addFunction(_callback, "vii");
|
|
39651
39758
|
|
|
39652
39759
|
Module.ccall(
|
|
39653
|
-
"
|
|
39760
|
+
"csp_systems_SpaceSystem_CreateSpaceWithBuffer_void_StringRC_StringRC_SpaceAttributes_InviteUserRoleInfoCollectionRC_MapRC_BufferAssetDataSourceRC_SpaceResultCallback",
|
|
39654
39761
|
"void",
|
|
39655
39762
|
[
|
|
39656
39763
|
"number",
|
|
@@ -40011,6 +40118,7 @@ export namespace Systems {
|
|
|
40011
40118
|
spaceId: string,
|
|
40012
40119
|
email: string,
|
|
40013
40120
|
isModeratorRole: boolean | null,
|
|
40121
|
+
emailLinkUrl: string | null,
|
|
40014
40122
|
): Promise<Systems.NullResult> {
|
|
40015
40123
|
var _resolve;
|
|
40016
40124
|
|
|
@@ -40043,10 +40151,18 @@ export namespace Systems {
|
|
|
40043
40151
|
}
|
|
40044
40152
|
|
|
40045
40153
|
Module.ccall(
|
|
40046
|
-
"
|
|
40154
|
+
"csp_systems_SpaceSystem_InviteToSpace_void_StringRC_StringRC_boolRC_StringRC_NullResultCallback",
|
|
40047
40155
|
"void",
|
|
40048
|
-
["number", "string", "string", "boolean", "number", "number"],
|
|
40049
|
-
[
|
|
40156
|
+
["number", "string", "string", "boolean", "string", "number", "number"],
|
|
40157
|
+
[
|
|
40158
|
+
this.pointer,
|
|
40159
|
+
spaceId,
|
|
40160
|
+
email,
|
|
40161
|
+
isModeratorRolePointer,
|
|
40162
|
+
emailLinkUrl,
|
|
40163
|
+
_callbackPtr,
|
|
40164
|
+
0,
|
|
40165
|
+
],
|
|
40050
40166
|
);
|
|
40051
40167
|
|
|
40052
40168
|
if (isModeratorRolePointer) {
|
|
@@ -40058,7 +40174,7 @@ export namespace Systems {
|
|
|
40058
40174
|
|
|
40059
40175
|
async bulkInviteToSpace(
|
|
40060
40176
|
spaceId: string,
|
|
40061
|
-
inviteUsers:
|
|
40177
|
+
inviteUsers: Systems.InviteUserRoleInfoCollection,
|
|
40062
40178
|
): Promise<Systems.NullResult> {
|
|
40063
40179
|
var _resolve;
|
|
40064
40180
|
|
|
@@ -40085,7 +40201,7 @@ export namespace Systems {
|
|
|
40085
40201
|
_callbackPtr = Module.addFunction(_callback, "vii");
|
|
40086
40202
|
|
|
40087
40203
|
Module.ccall(
|
|
40088
|
-
"
|
|
40204
|
+
"csp_systems_SpaceSystem_BulkInviteToSpace_void_StringRC_InviteUserRoleInfoCollectionRC_NullResultCallback",
|
|
40089
40205
|
"void",
|
|
40090
40206
|
["number", "string", "number", "number", "number"],
|
|
40091
40207
|
[this.pointer, spaceId, inviteUsers.pointer, _callbackPtr, 0],
|
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.10.
|
|
4
|
+
"version": "4.10.5+470",
|
|
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": {
|