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.
@@ -1888,8 +1888,12 @@ export declare namespace Common {
1888
1888
  set state(value: Common.ELoginState);
1889
1889
  get accessToken(): string;
1890
1890
  set accessToken(value: string);
1891
+ get accessTokenExpiryLength(): string;
1892
+ set accessTokenExpiryLength(value: string);
1891
1893
  get refreshToken(): string;
1892
1894
  set refreshToken(value: string);
1895
+ get refreshTokenExpiryLength(): string;
1896
+ set refreshTokenExpiryLength(value: string);
1893
1897
  get userId(): string;
1894
1898
  set userId(value: string);
1895
1899
  get deviceId(): string;
@@ -6292,8 +6296,10 @@ export declare namespace Systems {
6292
6296
  constructor(pointer: NativePointer);
6293
6297
  static create(): TokenOptions;
6294
6298
  delete(): void;
6295
- get expiryLength(): string;
6296
- set expiryLength(value: string);
6299
+ get accessTokenExpiryLength(): string;
6300
+ set accessTokenExpiryLength(value: string);
6301
+ get refreshTokenExpiryLength(): string;
6302
+ set refreshTokenExpiryLength(value: string);
6297
6303
  }
6298
6304
  }
6299
6305
  export declare namespace Systems {
@@ -3989,6 +3989,13 @@ export class CSPFoundation {
3989
3989
  set accessToken(value) {
3990
3990
  Module.ccall("csp_common_LoginState__Set_AccessToken", "void", ["number", "string"], [this.pointer, value]);
3991
3991
  }
3992
+ get accessTokenExpiryLength() {
3993
+ let _result = Module.ccall("csp_common_LoginState__Get_AccessTokenExpiryLength", "string", ["number"], [this.pointer]);
3994
+ return _result;
3995
+ }
3996
+ set accessTokenExpiryLength(value) {
3997
+ Module.ccall("csp_common_LoginState__Set_AccessTokenExpiryLength", "void", ["number", "string"], [this.pointer, value]);
3998
+ }
3992
3999
  get refreshToken() {
3993
4000
  let _result = Module.ccall("csp_common_LoginState__Get_RefreshToken", "string", ["number"], [this.pointer]);
3994
4001
  return _result;
@@ -3996,6 +4003,13 @@ export class CSPFoundation {
3996
4003
  set refreshToken(value) {
3997
4004
  Module.ccall("csp_common_LoginState__Set_RefreshToken", "void", ["number", "string"], [this.pointer, value]);
3998
4005
  }
4006
+ get refreshTokenExpiryLength() {
4007
+ let _result = Module.ccall("csp_common_LoginState__Get_RefreshTokenExpiryLength", "string", ["number"], [this.pointer]);
4008
+ return _result;
4009
+ }
4010
+ set refreshTokenExpiryLength(value) {
4011
+ Module.ccall("csp_common_LoginState__Set_RefreshTokenExpiryLength", "void", ["number", "string"], [this.pointer, value]);
4012
+ }
3999
4013
  get userId() {
4000
4014
  let _result = Module.ccall("csp_common_LoginState__Get_UserId", "string", ["number"], [this.pointer]);
4001
4015
  return _result;
@@ -15986,12 +16000,19 @@ export class CSPFoundation {
15986
16000
  this.disposed = true;
15987
16001
  }
15988
16002
  }
15989
- get expiryLength() {
15990
- let _result = Module.ccall("csp_systems_TokenOptions__Get_ExpiryLength", "string", ["number"], [this.pointer]);
16003
+ get accessTokenExpiryLength() {
16004
+ let _result = Module.ccall("csp_systems_TokenOptions__Get_AccessTokenExpiryLength", "string", ["number"], [this.pointer]);
16005
+ return _result;
16006
+ }
16007
+ set accessTokenExpiryLength(value) {
16008
+ Module.ccall("csp_systems_TokenOptions__Set_AccessTokenExpiryLength", "void", ["number", "string"], [this.pointer, value]);
16009
+ }
16010
+ get refreshTokenExpiryLength() {
16011
+ let _result = Module.ccall("csp_systems_TokenOptions__Get_RefreshTokenExpiryLength", "string", ["number"], [this.pointer]);
15991
16012
  return _result;
15992
16013
  }
15993
- set expiryLength(value) {
15994
- Module.ccall("csp_systems_TokenOptions__Set_ExpiryLength", "void", ["number", "string"], [this.pointer, value]);
16014
+ set refreshTokenExpiryLength(value) {
16015
+ Module.ccall("csp_systems_TokenOptions__Set_RefreshTokenExpiryLength", "void", ["number", "string"], [this.pointer, value]);
15995
16016
  }
15996
16017
  }
15997
16018
  Systems.TokenOptions = TokenOptions;