connected-spaces-platform.web 6.12.0 → 6.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 +17 -5
- 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 +8 -2
- package/connectedspacesplatform.js +25 -4
- package/connectedspacesplatform.js.map +1 -1
- package/connectedspacesplatform.ts +64 -4
- package/package.json +1 -1
|
@@ -6238,6 +6238,26 @@ export namespace Common {
|
|
|
6238
6238
|
);
|
|
6239
6239
|
}
|
|
6240
6240
|
|
|
6241
|
+
get accessTokenExpiryLength(): string {
|
|
6242
|
+
let _result = Module.ccall(
|
|
6243
|
+
"csp_common_LoginState__Get_AccessTokenExpiryLength",
|
|
6244
|
+
"string",
|
|
6245
|
+
["number"],
|
|
6246
|
+
[this.pointer],
|
|
6247
|
+
);
|
|
6248
|
+
|
|
6249
|
+
return _result;
|
|
6250
|
+
}
|
|
6251
|
+
|
|
6252
|
+
set accessTokenExpiryLength(value: string) {
|
|
6253
|
+
Module.ccall(
|
|
6254
|
+
"csp_common_LoginState__Set_AccessTokenExpiryLength",
|
|
6255
|
+
"void",
|
|
6256
|
+
["number", "string"],
|
|
6257
|
+
[this.pointer, value],
|
|
6258
|
+
);
|
|
6259
|
+
}
|
|
6260
|
+
|
|
6241
6261
|
get refreshToken(): string {
|
|
6242
6262
|
let _result = Module.ccall(
|
|
6243
6263
|
"csp_common_LoginState__Get_RefreshToken",
|
|
@@ -6258,6 +6278,26 @@ export namespace Common {
|
|
|
6258
6278
|
);
|
|
6259
6279
|
}
|
|
6260
6280
|
|
|
6281
|
+
get refreshTokenExpiryLength(): string {
|
|
6282
|
+
let _result = Module.ccall(
|
|
6283
|
+
"csp_common_LoginState__Get_RefreshTokenExpiryLength",
|
|
6284
|
+
"string",
|
|
6285
|
+
["number"],
|
|
6286
|
+
[this.pointer],
|
|
6287
|
+
);
|
|
6288
|
+
|
|
6289
|
+
return _result;
|
|
6290
|
+
}
|
|
6291
|
+
|
|
6292
|
+
set refreshTokenExpiryLength(value: string) {
|
|
6293
|
+
Module.ccall(
|
|
6294
|
+
"csp_common_LoginState__Set_RefreshTokenExpiryLength",
|
|
6295
|
+
"void",
|
|
6296
|
+
["number", "string"],
|
|
6297
|
+
[this.pointer, value],
|
|
6298
|
+
);
|
|
6299
|
+
}
|
|
6300
|
+
|
|
6261
6301
|
get userId(): string {
|
|
6262
6302
|
let _result = Module.ccall(
|
|
6263
6303
|
"csp_common_LoginState__Get_UserId",
|
|
@@ -35046,9 +35086,29 @@ export namespace Systems {
|
|
|
35046
35086
|
}
|
|
35047
35087
|
}
|
|
35048
35088
|
|
|
35049
|
-
get
|
|
35089
|
+
get accessTokenExpiryLength(): string {
|
|
35090
|
+
let _result = Module.ccall(
|
|
35091
|
+
"csp_systems_TokenOptions__Get_AccessTokenExpiryLength",
|
|
35092
|
+
"string",
|
|
35093
|
+
["number"],
|
|
35094
|
+
[this.pointer],
|
|
35095
|
+
);
|
|
35096
|
+
|
|
35097
|
+
return _result;
|
|
35098
|
+
}
|
|
35099
|
+
|
|
35100
|
+
set accessTokenExpiryLength(value: string) {
|
|
35101
|
+
Module.ccall(
|
|
35102
|
+
"csp_systems_TokenOptions__Set_AccessTokenExpiryLength",
|
|
35103
|
+
"void",
|
|
35104
|
+
["number", "string"],
|
|
35105
|
+
[this.pointer, value],
|
|
35106
|
+
);
|
|
35107
|
+
}
|
|
35108
|
+
|
|
35109
|
+
get refreshTokenExpiryLength(): string {
|
|
35050
35110
|
let _result = Module.ccall(
|
|
35051
|
-
"
|
|
35111
|
+
"csp_systems_TokenOptions__Get_RefreshTokenExpiryLength",
|
|
35052
35112
|
"string",
|
|
35053
35113
|
["number"],
|
|
35054
35114
|
[this.pointer],
|
|
@@ -35057,9 +35117,9 @@ export namespace Systems {
|
|
|
35057
35117
|
return _result;
|
|
35058
35118
|
}
|
|
35059
35119
|
|
|
35060
|
-
set
|
|
35120
|
+
set refreshTokenExpiryLength(value: string) {
|
|
35061
35121
|
Module.ccall(
|
|
35062
|
-
"
|
|
35122
|
+
"csp_systems_TokenOptions__Set_RefreshTokenExpiryLength",
|
|
35063
35123
|
"void",
|
|
35064
35124
|
["number", "string"],
|
|
35065
35125
|
[this.pointer, value],
|
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": "6.
|
|
4
|
+
"version": "6.13.0",
|
|
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": {
|