@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.
- package/KmLogging-logging.mjs +99 -99
- package/KotlinBigInteger-bignum.mjs +1114 -1114
- package/MultiplatformSettings-multiplatform-settings-test.mjs +18 -18
- package/MultiplatformSettings-multiplatform-settings.mjs +16 -16
- package/Stately-stately-concurrency.mjs +4 -4
- package/cryptography-kotlin-cryptography-bigint.mjs +27 -27
- package/cryptography-kotlin-cryptography-core.mjs +47 -47
- package/cryptography-kotlin-cryptography-provider-base.mjs +4 -4
- package/cryptography-kotlin-cryptography-provider-webcrypto.mjs +135 -135
- package/cryptography-kotlin-cryptography-random.mjs +15 -15
- package/cryptography-kotlin-cryptography-serialization-asn1-modules.mjs +112 -112
- package/cryptography-kotlin-cryptography-serialization-asn1.mjs +237 -237
- package/cryptography-kotlin-cryptography-serialization-pem.mjs +15 -15
- package/kotlin-kotlin-stdlib.mjs +10 -10
- package/kotlin-kotlin-stdlib.mjs.map +1 -1
- package/kotlinx-coroutines-core.mjs +8 -8
- package/kotlinx-coroutines-core.mjs.map +1 -1
- package/ktor-ktor-client-auth.mjs +224 -224
- package/ktor-ktor-client-logging.mjs +520 -520
- package/ktor-ktor-client-mock.mjs +39 -39
- package/ktor-ktor-websockets.mjs +2 -2
- package/package.json +1 -1
- package/solibo-sdk-sdk-home-api.mjs +27241 -26430
- package/solibo-sdk-sdk-home-api.mjs.map +1 -1
- package/solibo-sdk-sdk.d.mts +49 -0
- package/solibo-sdk-sdk.mjs +2878 -2878
package/solibo-sdk-sdk.d.mts
CHANGED
|
@@ -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>>;
|