@solibo/solibo-sdk 1.1.54 → 1.1.55
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/Kotlin-DateTime-library-kotlinx-datetime.mjs +1 -1
- package/kotlin-kotlin-stdlib.mjs +10 -10
- package/kotlinx-coroutines-core.mjs +7 -7
- package/kotlinx-coroutines-core.mjs.map +1 -1
- package/ktor-ktor-websockets.mjs +2 -2
- package/package.json +1 -1
- package/solibo-sdk-sdk-home-api.mjs +128 -44
- package/solibo-sdk-sdk-home-api.mjs.map +1 -1
- package/solibo-sdk-sdk.d.mts +29 -7
- package/solibo-sdk-sdk.mjs +1 -1
- package/solibo-sdk-sdk.mjs.map +1 -1
package/solibo-sdk-sdk.d.mts
CHANGED
|
@@ -755,16 +755,16 @@ export declare namespace ChangeResponsibleCommand {
|
|
|
755
755
|
}
|
|
756
756
|
export interface ClientUserProps {
|
|
757
757
|
clientId: string;
|
|
758
|
-
id:
|
|
758
|
+
id: string;
|
|
759
759
|
organizationId?: bigint | null | undefined;
|
|
760
760
|
personId?: bigint | null | undefined;
|
|
761
761
|
scopes: KtList<string>;
|
|
762
762
|
}
|
|
763
763
|
export declare class ClientUser extends AuthUser.$metadata$.constructor {
|
|
764
764
|
constructor(props: ClientUserProps);
|
|
765
|
-
constructor(clientId: string, id:
|
|
765
|
+
constructor(clientId: string, id: string, organizationId: bigint | null | undefined, personId: bigint | null | undefined, scopes: KtList<string>);
|
|
766
766
|
get clientId(): string;
|
|
767
|
-
get id():
|
|
767
|
+
get id(): string;
|
|
768
768
|
get organizationId(): bigint | null | undefined;
|
|
769
769
|
get personId(): bigint | null | undefined;
|
|
770
770
|
get scopes(): KtList<string>;
|
|
@@ -3890,12 +3890,32 @@ export declare abstract class DialogSystemLabel {
|
|
|
3890
3890
|
get name(): "DEFAULT";
|
|
3891
3891
|
get ordinal(): 0;
|
|
3892
3892
|
};
|
|
3893
|
+
static get INBOX(): DialogSystemLabel & {
|
|
3894
|
+
get name(): "INBOX";
|
|
3895
|
+
get ordinal(): 1;
|
|
3896
|
+
};
|
|
3897
|
+
static get OUTBOX(): DialogSystemLabel & {
|
|
3898
|
+
get name(): "OUTBOX";
|
|
3899
|
+
get ordinal(): 2;
|
|
3900
|
+
};
|
|
3901
|
+
static get DRAFT(): DialogSystemLabel & {
|
|
3902
|
+
get name(): "DRAFT";
|
|
3903
|
+
get ordinal(): 3;
|
|
3904
|
+
};
|
|
3893
3905
|
static get SENT(): DialogSystemLabel & {
|
|
3894
3906
|
get name(): "SENT";
|
|
3895
|
-
get ordinal():
|
|
3907
|
+
get ordinal(): 4;
|
|
3896
3908
|
};
|
|
3897
|
-
get
|
|
3898
|
-
|
|
3909
|
+
static get ARCHIVE(): DialogSystemLabel & {
|
|
3910
|
+
get name(): "ARCHIVE";
|
|
3911
|
+
get ordinal(): 5;
|
|
3912
|
+
};
|
|
3913
|
+
static get BIN(): DialogSystemLabel & {
|
|
3914
|
+
get name(): "BIN";
|
|
3915
|
+
get ordinal(): 6;
|
|
3916
|
+
};
|
|
3917
|
+
get name(): "DEFAULT" | "INBOX" | "OUTBOX" | "DRAFT" | "SENT" | "ARCHIVE" | "BIN";
|
|
3918
|
+
get ordinal(): 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
3899
3919
|
get value(): string;
|
|
3900
3920
|
static values(): Array<DialogSystemLabel>;
|
|
3901
3921
|
static valueOf(value: string): DialogSystemLabel;
|
|
@@ -15014,12 +15034,14 @@ export declare namespace WebSocketPayload {
|
|
|
15014
15034
|
}
|
|
15015
15035
|
}
|
|
15016
15036
|
export interface WsEventProps {
|
|
15037
|
+
clientId?: string | null | undefined;
|
|
15017
15038
|
payload: WebSocketPayload;
|
|
15018
15039
|
userId?: string | null | undefined;
|
|
15019
15040
|
}
|
|
15020
15041
|
export declare class WsEvent {
|
|
15021
15042
|
constructor(props: WsEventProps);
|
|
15022
|
-
constructor(payload: WebSocketPayload, userId?: string | null | undefined);
|
|
15043
|
+
constructor(clientId: string | null | undefined, payload: WebSocketPayload, userId?: string | null | undefined);
|
|
15044
|
+
get clientId(): string | null | undefined;
|
|
15023
15045
|
get payload(): WebSocketPayload;
|
|
15024
15046
|
get userId(): string | null | undefined;
|
|
15025
15047
|
}
|
package/solibo-sdk-sdk.mjs
CHANGED
|
@@ -1366,7 +1366,7 @@ protoOf(EventBus$connectOnce$slambda$slambda_1).t9 = function () {
|
|
|
1366
1366
|
try {
|
|
1367
1367
|
this_2.nq_1;
|
|
1368
1368
|
var payload = this.bpu_1.lpt_1.ju(Companion_getInstance_5().b1h(), this.epu_1);
|
|
1369
|
-
var value_0 = new WsEvent(payload);
|
|
1369
|
+
var value_0 = new WsEvent(VOID, payload);
|
|
1370
1370
|
tmp_3 = _Result___init__impl__xyqfz8(value_0);
|
|
1371
1371
|
} catch ($p) {
|
|
1372
1372
|
var tmp_4;
|