@solibo/solibo-sdk 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.
@@ -8849,6 +8849,52 @@ export declare namespace MassUpdateSectionCommand {
8849
8849
  const constructor: abstract new () => MassUpdateSectionCommand;
8850
8850
  }
8851
8851
  }
8852
+ export interface McpRefreshRequestProps {
8853
+ refreshToken: string;
8854
+ }
8855
+ export declare class McpRefreshRequest {
8856
+ constructor(props: McpRefreshRequestProps);
8857
+ constructor(refreshToken: string);
8858
+ get refreshToken(): string;
8859
+ }
8860
+ export declare namespace McpRefreshRequest {
8861
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
8862
+ namespace $metadata$ {
8863
+ const constructor: abstract new () => McpRefreshRequest;
8864
+ }
8865
+ }
8866
+ export interface McpTokenRequestProps {
8867
+ code: string;
8868
+ }
8869
+ export declare class McpTokenRequest {
8870
+ constructor(props: McpTokenRequestProps);
8871
+ constructor(code: string);
8872
+ get code(): string;
8873
+ }
8874
+ export declare namespace McpTokenRequest {
8875
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
8876
+ namespace $metadata$ {
8877
+ const constructor: abstract new () => McpTokenRequest;
8878
+ }
8879
+ }
8880
+ export interface McpTokenResponseProps {
8881
+ accessTokenEnvelope: string;
8882
+ expiresIn: bigint;
8883
+ refreshToken?: string | null | undefined;
8884
+ }
8885
+ export declare class McpTokenResponse {
8886
+ constructor(props: McpTokenResponseProps);
8887
+ constructor(accessTokenEnvelope: string, expiresIn: bigint, refreshToken?: string | null | undefined);
8888
+ get accessTokenEnvelope(): string;
8889
+ get expiresIn(): bigint;
8890
+ get refreshToken(): string | null | undefined;
8891
+ }
8892
+ export declare namespace McpTokenResponse {
8893
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
8894
+ namespace $metadata$ {
8895
+ const constructor: abstract new () => McpTokenResponse;
8896
+ }
8897
+ }
8852
8898
  export interface MeetingProps {
8853
8899
  actualEndAt?: SoliboInstant /* Instant */ | null | undefined;
8854
8900
  actualStartAt?: SoliboInstant /* Instant */ | null | undefined;
@@ -18282,6 +18328,9 @@ export declare class AuthApi extends ApiClient.$metadata$.constructor {
18282
18328
  deregisterFCMDeviceForUser(): Promise<HttpResponse<void>>;
18283
18329
  getMfaPreference(fields?: string | null | undefined): Promise<HttpResponse<MfaPreferenceResult>>;
18284
18330
  indexUserDevices(fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListDevice>>;
18331
+ mcpAuthorize(state?: string | null | undefined, redirectUri?: string | null | undefined): Promise<HttpResponse<void>>;
18332
+ mcpRefresh(mcpRefreshRequest: McpRefreshRequest): Promise<HttpResponse<McpTokenResponse>>;
18333
+ mcpTokenExchange(mcpTokenRequest: McpTokenRequest): Promise<HttpResponse<McpTokenResponse>>;
18285
18334
  refreshTokens(refreshTokensCommand: RefreshTokensCommand): Promise<HttpResponse<SoliboAuthentication>>;
18286
18335
  registerFCMDeviceForUser(registerDeviceCommand: RegisterDeviceCommand): Promise<HttpResponse<void>>;
18287
18336
  revokeTokens(clientId?: string | null | undefined, deviceKey?: string | null | undefined, deviceKeyGroup?: string | null | undefined, userId?: string | null | undefined, refreshToken?: string | null | undefined): Promise<HttpResponse<void>>;