@solibo/solibo-sdk 1.5.18 → 1.6.1
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 +110 -110
- package/Kotlin-DateTime-library-kotlinx-datetime.mjs +1545 -1545
- package/KotlinBigInteger-bignum.mjs +1198 -1198
- package/MultiplatformSettings-multiplatform-settings-test.mjs +19 -19
- package/MultiplatformSettings-multiplatform-settings.mjs +17 -17
- package/Stately-stately-concurrency.mjs +5 -5
- package/cryptography-kotlin-cryptography-bigint.mjs +33 -33
- package/cryptography-kotlin-cryptography-core.mjs +49 -49
- package/cryptography-kotlin-cryptography-provider-base.mjs +8 -8
- package/cryptography-kotlin-cryptography-provider-webcrypto.mjs +175 -175
- package/cryptography-kotlin-cryptography-random.mjs +26 -26
- package/cryptography-kotlin-cryptography-serialization-asn1-modules.mjs +204 -204
- package/cryptography-kotlin-cryptography-serialization-asn1.mjs +332 -332
- package/cryptography-kotlin-cryptography-serialization-pem.mjs +16 -16
- package/index.mjs +6 -0
- package/kotlin-kotlin-stdlib.mjs +2141 -2051
- package/kotlin-kotlin-stdlib.mjs.map +1 -1
- package/kotlinx-atomicfu.mjs +13 -13
- package/kotlinx-coroutines-core.mjs +2488 -2461
- package/kotlinx-coroutines-core.mjs.map +1 -1
- package/kotlinx-io-kotlinx-io-bytestring.mjs +32 -32
- package/kotlinx-io-kotlinx-io-core.mjs +451 -451
- package/kotlinx-serialization-kotlinx-serialization-core.mjs +1832 -1832
- package/kotlinx-serialization-kotlinx-serialization-core.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json.mjs +1383 -1383
- package/ktor-ktor-client-auth.mjs +463 -463
- package/ktor-ktor-client-content-negotiation.mjs +184 -184
- package/ktor-ktor-client-core.mjs +4457 -4456
- package/ktor-ktor-client-core.mjs.map +1 -1
- package/ktor-ktor-client-encoding.mjs +785 -0
- package/ktor-ktor-client-encoding.mjs.map +1 -0
- package/ktor-ktor-client-logging.mjs +1080 -1080
- package/ktor-ktor-client-mock.mjs +79 -79
- package/ktor-ktor-events.mjs +6 -6
- package/ktor-ktor-http-cio.mjs +480 -480
- package/ktor-ktor-http.mjs +1296 -997
- package/ktor-ktor-http.mjs.map +1 -1
- package/ktor-ktor-io.mjs +1120 -1097
- package/ktor-ktor-io.mjs.map +1 -1
- package/ktor-ktor-serialization-kotlinx-json.mjs +7 -7
- package/ktor-ktor-serialization-kotlinx.mjs +228 -228
- package/ktor-ktor-serialization.mjs +105 -105
- package/ktor-ktor-utils.mjs +1152 -1041
- package/ktor-ktor-utils.mjs.map +1 -1
- package/ktor-ktor-websockets.mjs +741 -741
- package/package.json +1 -1
- package/solibo-sdk-sdk-home-api.mjs +77103 -73805
- package/solibo-sdk-sdk-home-api.mjs.map +1 -1
- package/solibo-sdk-sdk.d.mts +318 -3
- package/solibo-sdk-sdk.mjs +6928 -6854
- package/solibo-sdk-sdk.mjs.map +1 -1
package/solibo-sdk-sdk.d.mts
CHANGED
|
@@ -885,6 +885,48 @@ export declare namespace ChangeResponsibleCommand {
|
|
|
885
885
|
const constructor: abstract new () => ChangeResponsibleCommand;
|
|
886
886
|
}
|
|
887
887
|
}
|
|
888
|
+
export declare abstract class ChannelType {
|
|
889
|
+
private constructor();
|
|
890
|
+
static get EMAIL(): ChannelType & {
|
|
891
|
+
get name(): "EMAIL";
|
|
892
|
+
get ordinal(): 0;
|
|
893
|
+
};
|
|
894
|
+
static get SMS(): ChannelType & {
|
|
895
|
+
get name(): "SMS";
|
|
896
|
+
get ordinal(): 1;
|
|
897
|
+
};
|
|
898
|
+
static get Email(): ChannelType & {
|
|
899
|
+
get name(): "EMAIL";
|
|
900
|
+
get ordinal(): 0;
|
|
901
|
+
};
|
|
902
|
+
static get Sms(): ChannelType & {
|
|
903
|
+
get name(): "SMS";
|
|
904
|
+
get ordinal(): 1;
|
|
905
|
+
};
|
|
906
|
+
static values(): [typeof ChannelType.EMAIL, typeof ChannelType.SMS];
|
|
907
|
+
static valueOf(value: string): ChannelType;
|
|
908
|
+
get name(): "EMAIL" | "SMS";
|
|
909
|
+
get ordinal(): 0 | 1;
|
|
910
|
+
get value(): string;
|
|
911
|
+
}
|
|
912
|
+
export declare namespace ChannelType {
|
|
913
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
914
|
+
namespace $metadata$ {
|
|
915
|
+
const constructor: abstract new () => ChannelType;
|
|
916
|
+
}
|
|
917
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
918
|
+
private constructor();
|
|
919
|
+
}
|
|
920
|
+
namespace Companion {
|
|
921
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
922
|
+
namespace $metadata$ {
|
|
923
|
+
abstract class constructor /* implements SerializerFactory */ {
|
|
924
|
+
fromValue(value: string): ChannelType | null | undefined;
|
|
925
|
+
private constructor();
|
|
926
|
+
}
|
|
927
|
+
}
|
|
928
|
+
}
|
|
929
|
+
}
|
|
888
930
|
export interface ClientUserProps {
|
|
889
931
|
clientId: string;
|
|
890
932
|
id: string;
|
|
@@ -1839,6 +1881,56 @@ export declare namespace ContactSalesCommand {
|
|
|
1839
1881
|
const constructor: abstract new () => ContactSalesCommand;
|
|
1840
1882
|
}
|
|
1841
1883
|
}
|
|
1884
|
+
export declare abstract class ContactSource {
|
|
1885
|
+
private constructor();
|
|
1886
|
+
static get PRIVATE(): ContactSource & {
|
|
1887
|
+
get name(): "PRIVATE";
|
|
1888
|
+
get ordinal(): 0;
|
|
1889
|
+
};
|
|
1890
|
+
static get ROLE_SCOPED(): ContactSource & {
|
|
1891
|
+
get name(): "ROLE_SCOPED";
|
|
1892
|
+
get ordinal(): 1;
|
|
1893
|
+
};
|
|
1894
|
+
static get ORGANIZATION_EMPLOYEE(): ContactSource & {
|
|
1895
|
+
get name(): "ORGANIZATION_EMPLOYEE";
|
|
1896
|
+
get ordinal(): 2;
|
|
1897
|
+
};
|
|
1898
|
+
static get Private(): ContactSource & {
|
|
1899
|
+
get name(): "PRIVATE";
|
|
1900
|
+
get ordinal(): 0;
|
|
1901
|
+
};
|
|
1902
|
+
static get RoleScoped(): ContactSource & {
|
|
1903
|
+
get name(): "ROLE_SCOPED";
|
|
1904
|
+
get ordinal(): 1;
|
|
1905
|
+
};
|
|
1906
|
+
static get OrganizationEmployee(): ContactSource & {
|
|
1907
|
+
get name(): "ORGANIZATION_EMPLOYEE";
|
|
1908
|
+
get ordinal(): 2;
|
|
1909
|
+
};
|
|
1910
|
+
static values(): [typeof ContactSource.PRIVATE, typeof ContactSource.ROLE_SCOPED, typeof ContactSource.ORGANIZATION_EMPLOYEE];
|
|
1911
|
+
static valueOf(value: string): ContactSource;
|
|
1912
|
+
get name(): "PRIVATE" | "ROLE_SCOPED" | "ORGANIZATION_EMPLOYEE";
|
|
1913
|
+
get ordinal(): 0 | 1 | 2;
|
|
1914
|
+
get value(): string;
|
|
1915
|
+
}
|
|
1916
|
+
export declare namespace ContactSource {
|
|
1917
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1918
|
+
namespace $metadata$ {
|
|
1919
|
+
const constructor: abstract new () => ContactSource;
|
|
1920
|
+
}
|
|
1921
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1922
|
+
private constructor();
|
|
1923
|
+
}
|
|
1924
|
+
namespace Companion {
|
|
1925
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1926
|
+
namespace $metadata$ {
|
|
1927
|
+
abstract class constructor /* implements SerializerFactory */ {
|
|
1928
|
+
fromValue(value: string): ContactSource | null | undefined;
|
|
1929
|
+
private constructor();
|
|
1930
|
+
}
|
|
1931
|
+
}
|
|
1932
|
+
}
|
|
1933
|
+
}
|
|
1842
1934
|
export interface ContactTryFreeCommandProps {
|
|
1843
1935
|
company: string;
|
|
1844
1936
|
email: string;
|
|
@@ -3605,6 +3697,34 @@ export declare namespace CreateSMSBroadcastCommand {
|
|
|
3605
3697
|
const constructor: abstract new () => CreateSMSBroadcastCommand;
|
|
3606
3698
|
}
|
|
3607
3699
|
}
|
|
3700
|
+
export interface CreateScopedContactEndpointCommandProps {
|
|
3701
|
+
channel: ChannelTypeProps;
|
|
3702
|
+
companyId?: bigint | null | undefined;
|
|
3703
|
+
endpoint: string;
|
|
3704
|
+
orgContextId?: bigint | null | undefined;
|
|
3705
|
+
roleType: RoleTypeProps;
|
|
3706
|
+
sectionId?: bigint | null | undefined;
|
|
3707
|
+
validFrom?: SoliboInstant /* Instant */ | null | undefined;
|
|
3708
|
+
validTo?: SoliboInstant /* Instant */ | null | undefined;
|
|
3709
|
+
}
|
|
3710
|
+
export declare class CreateScopedContactEndpointCommand {
|
|
3711
|
+
constructor(props: CreateScopedContactEndpointCommandProps);
|
|
3712
|
+
constructor(channel: ChannelType, companyId: bigint | null | undefined, endpoint: string, orgContextId: bigint | null | undefined, roleType: RoleType, sectionId?: bigint | null | undefined, validFrom?: SoliboInstant /* Instant */ | null | undefined, validTo?: SoliboInstant /* Instant */ | null | undefined);
|
|
3713
|
+
get channel(): ChannelType;
|
|
3714
|
+
get companyId(): bigint | null | undefined;
|
|
3715
|
+
get endpoint(): string;
|
|
3716
|
+
get orgContextId(): bigint | null | undefined;
|
|
3717
|
+
get roleType(): RoleType;
|
|
3718
|
+
get sectionId(): bigint | null | undefined;
|
|
3719
|
+
get validFrom(): SoliboInstant /* Instant */ | null | undefined;
|
|
3720
|
+
get validTo(): SoliboInstant /* Instant */ | null | undefined;
|
|
3721
|
+
}
|
|
3722
|
+
export declare namespace CreateScopedContactEndpointCommand {
|
|
3723
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
3724
|
+
namespace $metadata$ {
|
|
3725
|
+
const constructor: abstract new () => CreateScopedContactEndpointCommand;
|
|
3726
|
+
}
|
|
3727
|
+
}
|
|
3608
3728
|
export interface CreateSectionProps {
|
|
3609
3729
|
apartmentNr?: string | null | undefined;
|
|
3610
3730
|
buildingId?: bigint | null | undefined;
|
|
@@ -3928,17 +4048,21 @@ export interface CreateTokensCommandProps {
|
|
|
3928
4048
|
deviceKey?: string | null | undefined;
|
|
3929
4049
|
email?: string | null | undefined;
|
|
3930
4050
|
fingerprint?: string | null | undefined;
|
|
4051
|
+
mcpRedirectUri?: string | null | undefined;
|
|
4052
|
+
mcpState?: string | null | undefined;
|
|
3931
4053
|
mobile?: string | null | undefined;
|
|
3932
4054
|
password?: string | null | undefined;
|
|
3933
4055
|
srpA?: string | null | undefined;
|
|
3934
4056
|
}
|
|
3935
4057
|
export declare class CreateTokensCommand {
|
|
3936
4058
|
constructor(props: CreateTokensCommandProps);
|
|
3937
|
-
constructor(clientId: string, deviceKey?: string | null | undefined, email?: string | null | undefined, fingerprint?: string | null | undefined, mobile?: string | null | undefined, password?: string | null | undefined, srpA?: string | null | undefined);
|
|
4059
|
+
constructor(clientId: string, deviceKey?: string | null | undefined, email?: string | null | undefined, fingerprint?: string | null | undefined, mcpRedirectUri?: string | null | undefined, mcpState?: string | null | undefined, mobile?: string | null | undefined, password?: string | null | undefined, srpA?: string | null | undefined);
|
|
3938
4060
|
get clientId(): string;
|
|
3939
4061
|
get deviceKey(): string | null | undefined;
|
|
3940
4062
|
get email(): string | null | undefined;
|
|
3941
4063
|
get fingerprint(): string | null | undefined;
|
|
4064
|
+
get mcpRedirectUri(): string | null | undefined;
|
|
4065
|
+
get mcpState(): string | null | undefined;
|
|
3942
4066
|
get mobile(): string | null | undefined;
|
|
3943
4067
|
get password(): string | null | undefined;
|
|
3944
4068
|
get srpA(): string | null | undefined;
|
|
@@ -8624,14 +8748,18 @@ export interface MagicEmailCommandProps {
|
|
|
8624
8748
|
deviceKey?: string | null | undefined;
|
|
8625
8749
|
email: string;
|
|
8626
8750
|
fingerprint?: string | null | undefined;
|
|
8751
|
+
mcpRedirectUri?: string | null | undefined;
|
|
8752
|
+
mcpState?: string | null | undefined;
|
|
8627
8753
|
}
|
|
8628
8754
|
export declare class MagicEmailCommand {
|
|
8629
8755
|
constructor(props: MagicEmailCommandProps);
|
|
8630
|
-
constructor(clientId: string, deviceKey: string | null | undefined, email: string, fingerprint?: string | null | undefined);
|
|
8756
|
+
constructor(clientId: string, deviceKey: string | null | undefined, email: string, fingerprint?: string | null | undefined, mcpRedirectUri?: string | null | undefined, mcpState?: string | null | undefined);
|
|
8631
8757
|
get clientId(): string;
|
|
8632
8758
|
get deviceKey(): string | null | undefined;
|
|
8633
8759
|
get email(): string;
|
|
8634
8760
|
get fingerprint(): string | null | undefined;
|
|
8761
|
+
get mcpRedirectUri(): string | null | undefined;
|
|
8762
|
+
get mcpState(): string | null | undefined;
|
|
8635
8763
|
}
|
|
8636
8764
|
export declare namespace MagicEmailCommand {
|
|
8637
8765
|
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
@@ -8643,14 +8771,18 @@ export interface MagicSMSCommandProps {
|
|
|
8643
8771
|
clientId: string;
|
|
8644
8772
|
deviceKey?: string | null | undefined;
|
|
8645
8773
|
fingerprint?: string | null | undefined;
|
|
8774
|
+
mcpRedirectUri?: string | null | undefined;
|
|
8775
|
+
mcpState?: string | null | undefined;
|
|
8646
8776
|
mobile: string;
|
|
8647
8777
|
}
|
|
8648
8778
|
export declare class MagicSMSCommand {
|
|
8649
8779
|
constructor(props: MagicSMSCommandProps);
|
|
8650
|
-
constructor(clientId: string, deviceKey: string | null | undefined, fingerprint: string | null | undefined, mobile: string);
|
|
8780
|
+
constructor(clientId: string, deviceKey: string | null | undefined, fingerprint: string | null | undefined, mcpRedirectUri: string | null | undefined, mcpState: string | null | undefined, mobile: string);
|
|
8651
8781
|
get clientId(): string;
|
|
8652
8782
|
get deviceKey(): string | null | undefined;
|
|
8653
8783
|
get fingerprint(): string | null | undefined;
|
|
8784
|
+
get mcpRedirectUri(): string | null | undefined;
|
|
8785
|
+
get mcpState(): string | null | undefined;
|
|
8654
8786
|
get mobile(): string;
|
|
8655
8787
|
}
|
|
8656
8788
|
export declare namespace MagicSMSCommand {
|
|
@@ -12795,6 +12927,48 @@ export declare namespace Ping {
|
|
|
12795
12927
|
const constructor: abstract new () => Ping;
|
|
12796
12928
|
}
|
|
12797
12929
|
}
|
|
12930
|
+
export declare abstract class PolicyEffect {
|
|
12931
|
+
private constructor();
|
|
12932
|
+
static get ALLOW(): PolicyEffect & {
|
|
12933
|
+
get name(): "ALLOW";
|
|
12934
|
+
get ordinal(): 0;
|
|
12935
|
+
};
|
|
12936
|
+
static get DENY(): PolicyEffect & {
|
|
12937
|
+
get name(): "DENY";
|
|
12938
|
+
get ordinal(): 1;
|
|
12939
|
+
};
|
|
12940
|
+
static get Allow(): PolicyEffect & {
|
|
12941
|
+
get name(): "ALLOW";
|
|
12942
|
+
get ordinal(): 0;
|
|
12943
|
+
};
|
|
12944
|
+
static get Deny(): PolicyEffect & {
|
|
12945
|
+
get name(): "DENY";
|
|
12946
|
+
get ordinal(): 1;
|
|
12947
|
+
};
|
|
12948
|
+
static values(): [typeof PolicyEffect.ALLOW, typeof PolicyEffect.DENY];
|
|
12949
|
+
static valueOf(value: string): PolicyEffect;
|
|
12950
|
+
get name(): "ALLOW" | "DENY";
|
|
12951
|
+
get ordinal(): 0 | 1;
|
|
12952
|
+
get value(): string;
|
|
12953
|
+
}
|
|
12954
|
+
export declare namespace PolicyEffect {
|
|
12955
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
12956
|
+
namespace $metadata$ {
|
|
12957
|
+
const constructor: abstract new () => PolicyEffect;
|
|
12958
|
+
}
|
|
12959
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
12960
|
+
private constructor();
|
|
12961
|
+
}
|
|
12962
|
+
namespace Companion {
|
|
12963
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
12964
|
+
namespace $metadata$ {
|
|
12965
|
+
abstract class constructor /* implements SerializerFactory */ {
|
|
12966
|
+
fromValue(value: string): PolicyEffect | null | undefined;
|
|
12967
|
+
private constructor();
|
|
12968
|
+
}
|
|
12969
|
+
}
|
|
12970
|
+
}
|
|
12971
|
+
}
|
|
12798
12972
|
export declare class Pong extends WebSocketPayload.$metadata$.constructor {
|
|
12799
12973
|
constructor();
|
|
12800
12974
|
}
|
|
@@ -13352,6 +13526,62 @@ export declare namespace ResidentType {
|
|
|
13352
13526
|
}
|
|
13353
13527
|
}
|
|
13354
13528
|
}
|
|
13529
|
+
export interface ResolveContactCommandProps {
|
|
13530
|
+
at?: SoliboInstant /* Instant */ | null | undefined;
|
|
13531
|
+
channel: ChannelTypeProps;
|
|
13532
|
+
companyId?: bigint | null | undefined;
|
|
13533
|
+
ignoreReservation?: boolean | null | undefined;
|
|
13534
|
+
orgContextId?: bigint | null | undefined;
|
|
13535
|
+
organizationId?: bigint | null | undefined;
|
|
13536
|
+
personId?: bigint | null | undefined;
|
|
13537
|
+
roleType?: RoleTypeProps | null | undefined;
|
|
13538
|
+
sectionId?: bigint | null | undefined;
|
|
13539
|
+
}
|
|
13540
|
+
export declare class ResolveContactCommand {
|
|
13541
|
+
constructor(props: ResolveContactCommandProps);
|
|
13542
|
+
constructor(at: SoliboInstant /* Instant */ | null | undefined, channel: ChannelType, companyId?: bigint | null | undefined, ignoreReservation?: boolean | null | undefined, orgContextId?: bigint | null | undefined, organizationId?: bigint | null | undefined, personId?: bigint | null | undefined, roleType?: RoleType | null | undefined, sectionId?: bigint | null | undefined);
|
|
13543
|
+
get at(): SoliboInstant /* Instant */ | null | undefined;
|
|
13544
|
+
get channel(): ChannelType;
|
|
13545
|
+
get companyId(): bigint | null | undefined;
|
|
13546
|
+
get ignoreReservation(): boolean | null | undefined;
|
|
13547
|
+
get orgContextId(): bigint | null | undefined;
|
|
13548
|
+
get organizationId(): bigint | null | undefined;
|
|
13549
|
+
get personId(): bigint | null | undefined;
|
|
13550
|
+
get roleType(): RoleType | null | undefined;
|
|
13551
|
+
get sectionId(): bigint | null | undefined;
|
|
13552
|
+
}
|
|
13553
|
+
export declare namespace ResolveContactCommand {
|
|
13554
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
13555
|
+
namespace $metadata$ {
|
|
13556
|
+
const constructor: abstract new () => ResolveContactCommand;
|
|
13557
|
+
}
|
|
13558
|
+
}
|
|
13559
|
+
export interface ResolvedEndpointProps {
|
|
13560
|
+
channel: ChannelTypeProps;
|
|
13561
|
+
endpoint: string;
|
|
13562
|
+
organizationId?: bigint | null | undefined;
|
|
13563
|
+
personId?: bigint | null | undefined;
|
|
13564
|
+
reserved: boolean;
|
|
13565
|
+
roleType?: RoleTypeProps | null | undefined;
|
|
13566
|
+
source: ContactSourceProps;
|
|
13567
|
+
}
|
|
13568
|
+
export declare class ResolvedEndpoint {
|
|
13569
|
+
constructor(props: ResolvedEndpointProps);
|
|
13570
|
+
constructor(channel: ChannelType, endpoint: string, organizationId: bigint | null | undefined, personId: bigint | null | undefined, reserved: boolean, roleType: RoleType | null | undefined, source: ContactSource);
|
|
13571
|
+
get channel(): ChannelType;
|
|
13572
|
+
get endpoint(): string;
|
|
13573
|
+
get organizationId(): bigint | null | undefined;
|
|
13574
|
+
get personId(): bigint | null | undefined;
|
|
13575
|
+
get reserved(): boolean;
|
|
13576
|
+
get roleType(): RoleType | null | undefined;
|
|
13577
|
+
get source(): ContactSource;
|
|
13578
|
+
}
|
|
13579
|
+
export declare namespace ResolvedEndpoint {
|
|
13580
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
13581
|
+
namespace $metadata$ {
|
|
13582
|
+
const constructor: abstract new () => ResolvedEndpoint;
|
|
13583
|
+
}
|
|
13584
|
+
}
|
|
13355
13585
|
export interface RestoreDocumentCommandProps {
|
|
13356
13586
|
documentType?: string | null | undefined;
|
|
13357
13587
|
parentId?: bigint | null | undefined;
|
|
@@ -14184,6 +14414,54 @@ export declare namespace SameieMatrikkelSearchCommand {
|
|
|
14184
14414
|
const constructor: abstract new () => SameieMatrikkelSearchCommand;
|
|
14185
14415
|
}
|
|
14186
14416
|
}
|
|
14417
|
+
export interface ScopeContextProps {
|
|
14418
|
+
companyId?: bigint | null | undefined;
|
|
14419
|
+
organizationContextId?: bigint | null | undefined;
|
|
14420
|
+
sectionId?: bigint | null | undefined;
|
|
14421
|
+
}
|
|
14422
|
+
export declare class ScopeContext {
|
|
14423
|
+
constructor(props: ScopeContextProps);
|
|
14424
|
+
constructor(companyId?: bigint | null | undefined, organizationContextId?: bigint | null | undefined, sectionId?: bigint | null | undefined);
|
|
14425
|
+
get companyId(): bigint | null | undefined;
|
|
14426
|
+
get organizationContextId(): bigint | null | undefined;
|
|
14427
|
+
get sectionId(): bigint | null | undefined;
|
|
14428
|
+
}
|
|
14429
|
+
export declare namespace ScopeContext {
|
|
14430
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
14431
|
+
namespace $metadata$ {
|
|
14432
|
+
const constructor: abstract new () => ScopeContext;
|
|
14433
|
+
}
|
|
14434
|
+
}
|
|
14435
|
+
export interface ScopedContactEndpointProps {
|
|
14436
|
+
channel: ChannelTypeProps;
|
|
14437
|
+
endpoint: string;
|
|
14438
|
+
id: bigint;
|
|
14439
|
+
organizationId?: bigint | null | undefined;
|
|
14440
|
+
personId?: bigint | null | undefined;
|
|
14441
|
+
roleType: RoleTypeProps;
|
|
14442
|
+
scope: ScopeContextProps;
|
|
14443
|
+
validFrom: SoliboInstant /* Instant */;
|
|
14444
|
+
validTo?: SoliboInstant /* Instant */ | null | undefined;
|
|
14445
|
+
}
|
|
14446
|
+
export declare class ScopedContactEndpoint {
|
|
14447
|
+
constructor(props: ScopedContactEndpointProps);
|
|
14448
|
+
constructor(channel: ChannelType, endpoint: string, id: bigint, organizationId: bigint | null | undefined, personId: bigint | null | undefined, roleType: RoleType, scope: ScopeContext, validFrom: SoliboInstant /* Instant */, validTo?: SoliboInstant /* Instant */ | null | undefined);
|
|
14449
|
+
get channel(): ChannelType;
|
|
14450
|
+
get endpoint(): string;
|
|
14451
|
+
get id(): bigint;
|
|
14452
|
+
get organizationId(): bigint | null | undefined;
|
|
14453
|
+
get personId(): bigint | null | undefined;
|
|
14454
|
+
get roleType(): RoleType;
|
|
14455
|
+
get scope(): ScopeContext;
|
|
14456
|
+
get validFrom(): SoliboInstant /* Instant */;
|
|
14457
|
+
get validTo(): SoliboInstant /* Instant */ | null | undefined;
|
|
14458
|
+
}
|
|
14459
|
+
export declare namespace ScopedContactEndpoint {
|
|
14460
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
14461
|
+
namespace $metadata$ {
|
|
14462
|
+
const constructor: abstract new () => ScopedContactEndpoint;
|
|
14463
|
+
}
|
|
14464
|
+
}
|
|
14187
14465
|
export interface SearchPersonQueryCommandProps {
|
|
14188
14466
|
email?: string | null | undefined;
|
|
14189
14467
|
familyName?: string | null | undefined;
|
|
@@ -17794,6 +18072,24 @@ export declare namespace UpdateSMSBroadcastCommand {
|
|
|
17794
18072
|
const constructor: abstract new () => UpdateSMSBroadcastCommand;
|
|
17795
18073
|
}
|
|
17796
18074
|
}
|
|
18075
|
+
export interface UpdateScopedContactEndpointCommandProps {
|
|
18076
|
+
endpoint?: string | null | undefined;
|
|
18077
|
+
validFrom?: SoliboInstant /* Instant */ | null | undefined;
|
|
18078
|
+
validTo?: SoliboInstant /* Instant */ | null | undefined;
|
|
18079
|
+
}
|
|
18080
|
+
export declare class UpdateScopedContactEndpointCommand {
|
|
18081
|
+
constructor(props: UpdateScopedContactEndpointCommandProps);
|
|
18082
|
+
constructor(endpoint?: string | null | undefined, validFrom?: SoliboInstant /* Instant */ | null | undefined, validTo?: SoliboInstant /* Instant */ | null | undefined);
|
|
18083
|
+
get endpoint(): string | null | undefined;
|
|
18084
|
+
get validFrom(): SoliboInstant /* Instant */ | null | undefined;
|
|
18085
|
+
get validTo(): SoliboInstant /* Instant */ | null | undefined;
|
|
18086
|
+
}
|
|
18087
|
+
export declare namespace UpdateScopedContactEndpointCommand {
|
|
18088
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
18089
|
+
namespace $metadata$ {
|
|
18090
|
+
const constructor: abstract new () => UpdateScopedContactEndpointCommand;
|
|
18091
|
+
}
|
|
18092
|
+
}
|
|
17797
18093
|
export interface UpdateSectionCommandProps {
|
|
17798
18094
|
apartmentNr?: string | null | undefined;
|
|
17799
18095
|
companyId: bigint;
|
|
@@ -18984,6 +19280,24 @@ export declare namespace RoutinesApi {
|
|
|
18984
19280
|
const constructor: abstract new () => RoutinesApi;
|
|
18985
19281
|
}
|
|
18986
19282
|
}
|
|
19283
|
+
export declare class ScopedContactApi extends ApiClient.$metadata$.constructor {
|
|
19284
|
+
private constructor();
|
|
19285
|
+
static create(baseUrl?: string, httpClientEngine?: any | null | undefined/* HttpClientEngine | null | undefined */, httpClientConfig?: (p0: any/* HttpClientConfig<UnknownType *> */) => void | null | undefined, jsonSerializer?: any/* Json */): ScopedContactApi;
|
|
19286
|
+
static createWithClient(baseUrl: string, httpClient: any/* HttpClient */): ScopedContactApi;
|
|
19287
|
+
createUserScopedContact(createScopedContactEndpointCommand: CreateScopedContactEndpointCommand): Promise<HttpResponse<ScopedContactEndpoint>>;
|
|
19288
|
+
deleteUserScopedContact(endpointId: bigint): Promise<HttpResponse<void>>;
|
|
19289
|
+
expireUserScopedContact(endpointId: bigint): Promise<HttpResponse<ScopedContactEndpoint>>;
|
|
19290
|
+
listUserScopedContacts(includeExpired?: boolean | null | undefined, fields?: string | null | undefined): Promise<HttpResponse<KtList<ScopedContactEndpoint>>>;
|
|
19291
|
+
resolveUserContact(resolveContactCommand: ResolveContactCommand): Promise<HttpResponse<ResolvedEndpoint>>;
|
|
19292
|
+
showUserScopedContact(endpointId: bigint, fields?: string | null | undefined): Promise<HttpResponse<ScopedContactEndpoint>>;
|
|
19293
|
+
updateUserScopedContact(endpointId: bigint, updateScopedContactEndpointCommand: UpdateScopedContactEndpointCommand): Promise<HttpResponse<ScopedContactEndpoint>>;
|
|
19294
|
+
}
|
|
19295
|
+
export declare namespace ScopedContactApi {
|
|
19296
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
19297
|
+
namespace $metadata$ {
|
|
19298
|
+
const constructor: abstract new () => ScopedContactApi;
|
|
19299
|
+
}
|
|
19300
|
+
}
|
|
18987
19301
|
export declare class SectionApi extends ApiClient.$metadata$.constructor {
|
|
18988
19302
|
private constructor();
|
|
18989
19303
|
static create(baseUrl?: string, httpClientEngine?: any | null | undefined/* HttpClientEngine | null | undefined */, httpClientConfig?: (p0: any/* HttpClientConfig<UnknownType *> */) => void | null | undefined, jsonSerializer?: any/* Json */): SectionApi;
|
|
@@ -19727,6 +20041,7 @@ export declare class HomeApi {
|
|
|
19727
20041
|
get task(): TaskApi;
|
|
19728
20042
|
get communication(): CommunicationApi;
|
|
19729
20043
|
get parking(): ParkingApi;
|
|
20044
|
+
get scopedContacts(): ScopedContactApi;
|
|
19730
20045
|
get supplier(): SupplierApi;
|
|
19731
20046
|
get eventBus(): EventBus;
|
|
19732
20047
|
get marketing(): MarketingApi;
|