@solibo/home-api 1.5.15 → 1.5.16

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.
@@ -263,7 +263,7 @@ initMetadataForClass(ContextScope, 'ContextScope', VOID, VOID, [CoroutineScope])
263
263
  initMetadataForClass(Symbol, 'Symbol');
264
264
  initMetadataForInterface(SelectInstance, 'SelectInstance');
265
265
  initMetadataForClass(ClauseData, 'ClauseData', VOID, VOID, VOID, [1]);
266
- initMetadataForClass(SelectImplementation, 'SelectImplementation', VOID, VOID, [CancelHandler, Waiter, SelectInstance], [0, 2]);
266
+ initMetadataForClass(SelectImplementation, 'SelectImplementation', VOID, VOID, [CancelHandler, SelectInstance, Waiter], [0, 2]);
267
267
  initMetadataForClass(TrySelectDetailedResult, 'TrySelectDetailedResult', VOID, Enum);
268
268
  initMetadataForClass(SetTimeoutBasedDispatcher, 'SetTimeoutBasedDispatcher', VOID, CoroutineDispatcher, [Delay], [1]);
269
269
  initMetadataForObject(NodeDispatcher, 'NodeDispatcher', VOID, SetTimeoutBasedDispatcher, VOID, [1]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "main": "solibo-sdk-sdk-home-api.mjs",
3
- "version": "1.5.15",
3
+ "version": "1.5.16",
4
4
  "name": "@solibo/home-api",
5
5
  "dependencies": {
6
6
  "ws": "8.18.3",
@@ -7704,6 +7704,50 @@ export declare namespace MassUpdateSectionCommand {
7704
7704
  const constructor: abstract new () => MassUpdateSectionCommand;
7705
7705
  }
7706
7706
  }
7707
+ export declare class McpRefreshRequest {
7708
+ constructor(refreshToken: string);
7709
+ get refreshToken(): string;
7710
+ copy(refreshToken?: string): McpRefreshRequest;
7711
+ toString(): string;
7712
+ hashCode(): number;
7713
+ equals(other: Nullable<any>): boolean;
7714
+ }
7715
+ export declare namespace McpRefreshRequest {
7716
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
7717
+ namespace $metadata$ {
7718
+ const constructor: abstract new () => McpRefreshRequest;
7719
+ }
7720
+ }
7721
+ export declare class McpTokenRequest {
7722
+ constructor(code: string);
7723
+ get code(): string;
7724
+ copy(code?: string): McpTokenRequest;
7725
+ toString(): string;
7726
+ hashCode(): number;
7727
+ equals(other: Nullable<any>): boolean;
7728
+ }
7729
+ export declare namespace McpTokenRequest {
7730
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
7731
+ namespace $metadata$ {
7732
+ const constructor: abstract new () => McpTokenRequest;
7733
+ }
7734
+ }
7735
+ export declare class McpTokenResponse {
7736
+ constructor(accessTokenEnvelope: string, expiresIn: bigint, refreshToken?: Nullable<string>);
7737
+ get accessTokenEnvelope(): string;
7738
+ get expiresIn(): bigint;
7739
+ get refreshToken(): Nullable<string>;
7740
+ copy(accessTokenEnvelope?: string, expiresIn?: bigint, refreshToken?: Nullable<string>): McpTokenResponse;
7741
+ toString(): string;
7742
+ hashCode(): number;
7743
+ equals(other: Nullable<any>): boolean;
7744
+ }
7745
+ export declare namespace McpTokenResponse {
7746
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
7747
+ namespace $metadata$ {
7748
+ const constructor: abstract new () => McpTokenResponse;
7749
+ }
7750
+ }
7707
7751
  export declare class Meeting {
7708
7752
  constructor(actualEndAt: Nullable<any>/* Nullable<Instant> */ | undefined, actualStartAt: Nullable<any>/* Nullable<Instant> */ | undefined, companyId: bigint, externalParticipants: Nullable<KtList<ExternalMeetingParticipant>> | undefined, id: bigint, issueCount: Nullable<bigint> | undefined, location: Nullable<string> | undefined, participants: Nullable<KtList<MeetingParticipant>> | undefined, plannedEndAt: any/* Instant */, plannedStartAt: any/* Instant */, report: Nullable<Document> | undefined, status: MeetingStatus, title: string);
7709
7753
  get actualEndAt(): Nullable<any>/* Nullable<Instant> */;
@@ -15798,6 +15842,9 @@ export declare class AuthApi extends ApiClient.$metadata$.constructor {
15798
15842
  deregisterFCMDeviceForUser(): Promise<HttpResponse<void>>;
15799
15843
  getMfaPreference(fields?: Nullable<string>): Promise<HttpResponse<MfaPreferenceResult>>;
15800
15844
  indexUserDevices(fields?: Nullable<string>, pageToken?: Nullable<string>, autoPaginate?: Nullable<boolean>, count?: Nullable<number>): Promise<HttpResponse<PagedListDevice>>;
15845
+ mcpAuthorize(state?: Nullable<string>, redirectUri?: Nullable<string>): Promise<HttpResponse<void>>;
15846
+ mcpRefresh(mcpRefreshRequest: McpRefreshRequest): Promise<HttpResponse<McpTokenResponse>>;
15847
+ mcpTokenExchange(mcpTokenRequest: McpTokenRequest): Promise<HttpResponse<McpTokenResponse>>;
15801
15848
  refreshTokens(refreshTokensCommand: RefreshTokensCommand): Promise<HttpResponse<SoliboAuthentication>>;
15802
15849
  registerFCMDeviceForUser(registerDeviceCommand: RegisterDeviceCommand): Promise<HttpResponse<void>>;
15803
15850
  revokeTokens(clientId?: Nullable<string>, deviceKey?: Nullable<string>, deviceKeyGroup?: Nullable<string>, userId?: Nullable<string>, refreshToken?: Nullable<string>): Promise<HttpResponse<void>>;