@solibo/home-api 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/Kotlin-DateTime-library-kotlinx-datetime.mjs +1 -1
- package/MultiplatformSettings-multiplatform-settings-no-arg.mjs +1 -1
- package/MultiplatformSettings-multiplatform-settings.mjs +1 -1
- package/kotlin-kotlin-stdlib.mjs +124 -124
- package/kotlin_org_jetbrains_kotlin_kotlin_dom_api_compat.mjs +1 -1
- package/kotlinx-atomicfu.mjs +1 -1
- package/kotlinx-browser.mjs +1 -1
- package/kotlinx-coroutines-core.mjs +9 -9
- package/kotlinx-io-kotlinx-io-bytestring.mjs +1 -1
- package/kotlinx-io-kotlinx-io-core.mjs +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core.mjs +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json-io.mjs +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json.mjs +1 -1
- package/ktor-ktor-client-auth.mjs +1 -1
- package/ktor-ktor-client-content-negotiation.mjs +1 -1
- package/ktor-ktor-client-core.mjs +53 -53
- package/ktor-ktor-client-encoding.mjs +4 -0
- package/ktor-ktor-client-logging.mjs +1 -1
- package/ktor-ktor-client-websockets.mjs +1 -1
- package/ktor-ktor-events.mjs +1 -1
- package/ktor-ktor-http-cio.mjs +1 -1
- package/ktor-ktor-http.mjs +5 -5
- package/ktor-ktor-io.mjs +6 -6
- package/ktor-ktor-serialization-kotlinx-json.mjs +1 -1
- package/ktor-ktor-serialization-kotlinx.mjs +1 -1
- package/ktor-ktor-serialization.mjs +1 -1
- package/ktor-ktor-sse.mjs +1 -1
- package/ktor-ktor-utils.mjs +1 -1
- package/ktor-ktor-websocket-serialization.mjs +1 -1
- package/ktor-ktor-websockets.mjs +3 -3
- package/package.json +1 -1
- package/solibo-sdk-sdk-home-api.d.mts +284 -6
- package/solibo-sdk-sdk-home-api.mjs +39166 -36042
- package/Kotlin-DateTime-library-kotlinx-datetime.mjs.map +0 -1
- package/MultiplatformSettings-multiplatform-settings-no-arg.mjs.map +0 -1
- package/MultiplatformSettings-multiplatform-settings.mjs.map +0 -1
- package/kotlin-kotlin-stdlib.mjs.map +0 -1
- package/kotlin_org_jetbrains_kotlin_kotlin_dom_api_compat.mjs.map +0 -1
- package/kotlinx-atomicfu.mjs.map +0 -1
- package/kotlinx-browser.mjs.map +0 -1
- package/kotlinx-coroutines-core.mjs.map +0 -1
- package/kotlinx-io-kotlinx-io-bytestring.mjs.map +0 -1
- package/kotlinx-io-kotlinx-io-core.mjs.map +0 -1
- package/kotlinx-serialization-kotlinx-serialization-core.mjs.map +0 -1
- package/kotlinx-serialization-kotlinx-serialization-json-io.mjs.map +0 -1
- package/kotlinx-serialization-kotlinx-serialization-json.mjs.map +0 -1
- package/ktor-ktor-client-auth.mjs.map +0 -1
- package/ktor-ktor-client-content-negotiation.mjs.map +0 -1
- package/ktor-ktor-client-core.mjs.map +0 -1
- package/ktor-ktor-client-logging.mjs.map +0 -1
- package/ktor-ktor-client-websockets.mjs.map +0 -1
- package/ktor-ktor-events.mjs.map +0 -1
- package/ktor-ktor-http-cio.mjs.map +0 -1
- package/ktor-ktor-http.mjs.map +0 -1
- package/ktor-ktor-io.mjs.map +0 -1
- package/ktor-ktor-serialization-kotlinx-json.mjs.map +0 -1
- package/ktor-ktor-serialization-kotlinx.mjs.map +0 -1
- package/ktor-ktor-serialization.mjs.map +0 -1
- package/ktor-ktor-sse.mjs.map +0 -1
- package/ktor-ktor-utils.mjs.map +0 -1
- package/ktor-ktor-websocket-serialization.mjs.map +0 -1
- package/ktor-ktor-websockets.mjs.map +0 -1
- package/solibo-sdk-sdk-home-api.mjs.map +0 -1
|
@@ -767,6 +767,49 @@ export declare namespace ChangeResponsibleCommand {
|
|
|
767
767
|
const constructor: abstract new () => ChangeResponsibleCommand;
|
|
768
768
|
}
|
|
769
769
|
}
|
|
770
|
+
export declare abstract class ChannelType {
|
|
771
|
+
private constructor();
|
|
772
|
+
static get EMAIL(): ChannelType & {
|
|
773
|
+
get name(): "EMAIL";
|
|
774
|
+
get ordinal(): 0;
|
|
775
|
+
};
|
|
776
|
+
static get SMS(): ChannelType & {
|
|
777
|
+
get name(): "SMS";
|
|
778
|
+
get ordinal(): 1;
|
|
779
|
+
};
|
|
780
|
+
static get Email(): ChannelType & {
|
|
781
|
+
get name(): "EMAIL";
|
|
782
|
+
get ordinal(): 0;
|
|
783
|
+
};
|
|
784
|
+
static get Sms(): ChannelType & {
|
|
785
|
+
get name(): "SMS";
|
|
786
|
+
get ordinal(): 1;
|
|
787
|
+
};
|
|
788
|
+
static values(): [typeof ChannelType.EMAIL, typeof ChannelType.SMS];
|
|
789
|
+
static valueOf(value: string): ChannelType;
|
|
790
|
+
get name(): "EMAIL" | "SMS";
|
|
791
|
+
get ordinal(): 0 | 1;
|
|
792
|
+
get value(): string;
|
|
793
|
+
toString(): string;
|
|
794
|
+
}
|
|
795
|
+
export declare namespace ChannelType {
|
|
796
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
797
|
+
namespace $metadata$ {
|
|
798
|
+
const constructor: abstract new () => ChannelType;
|
|
799
|
+
}
|
|
800
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
801
|
+
private constructor();
|
|
802
|
+
}
|
|
803
|
+
namespace Companion {
|
|
804
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
805
|
+
namespace $metadata$ {
|
|
806
|
+
abstract class constructor /* implements SerializerFactory */ {
|
|
807
|
+
fromValue(value: string): Nullable<ChannelType>;
|
|
808
|
+
private constructor();
|
|
809
|
+
}
|
|
810
|
+
}
|
|
811
|
+
}
|
|
812
|
+
}
|
|
770
813
|
export declare class ClientUser extends AuthUser.$metadata$.constructor {
|
|
771
814
|
constructor(clientId: string, id: string, organizationId?: Nullable<bigint>, personId?: Nullable<bigint>);
|
|
772
815
|
get clientId(): string;
|
|
@@ -1601,6 +1644,57 @@ export declare namespace ContactSalesCommand {
|
|
|
1601
1644
|
const constructor: abstract new () => ContactSalesCommand;
|
|
1602
1645
|
}
|
|
1603
1646
|
}
|
|
1647
|
+
export declare abstract class ContactSource {
|
|
1648
|
+
private constructor();
|
|
1649
|
+
static get PRIVATE(): ContactSource & {
|
|
1650
|
+
get name(): "PRIVATE";
|
|
1651
|
+
get ordinal(): 0;
|
|
1652
|
+
};
|
|
1653
|
+
static get ROLE_SCOPED(): ContactSource & {
|
|
1654
|
+
get name(): "ROLE_SCOPED";
|
|
1655
|
+
get ordinal(): 1;
|
|
1656
|
+
};
|
|
1657
|
+
static get ORGANIZATION_EMPLOYEE(): ContactSource & {
|
|
1658
|
+
get name(): "ORGANIZATION_EMPLOYEE";
|
|
1659
|
+
get ordinal(): 2;
|
|
1660
|
+
};
|
|
1661
|
+
static get Private(): ContactSource & {
|
|
1662
|
+
get name(): "PRIVATE";
|
|
1663
|
+
get ordinal(): 0;
|
|
1664
|
+
};
|
|
1665
|
+
static get RoleScoped(): ContactSource & {
|
|
1666
|
+
get name(): "ROLE_SCOPED";
|
|
1667
|
+
get ordinal(): 1;
|
|
1668
|
+
};
|
|
1669
|
+
static get OrganizationEmployee(): ContactSource & {
|
|
1670
|
+
get name(): "ORGANIZATION_EMPLOYEE";
|
|
1671
|
+
get ordinal(): 2;
|
|
1672
|
+
};
|
|
1673
|
+
static values(): [typeof ContactSource.PRIVATE, typeof ContactSource.ROLE_SCOPED, typeof ContactSource.ORGANIZATION_EMPLOYEE];
|
|
1674
|
+
static valueOf(value: string): ContactSource;
|
|
1675
|
+
get name(): "PRIVATE" | "ROLE_SCOPED" | "ORGANIZATION_EMPLOYEE";
|
|
1676
|
+
get ordinal(): 0 | 1 | 2;
|
|
1677
|
+
get value(): string;
|
|
1678
|
+
toString(): string;
|
|
1679
|
+
}
|
|
1680
|
+
export declare namespace ContactSource {
|
|
1681
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1682
|
+
namespace $metadata$ {
|
|
1683
|
+
const constructor: abstract new () => ContactSource;
|
|
1684
|
+
}
|
|
1685
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1686
|
+
private constructor();
|
|
1687
|
+
}
|
|
1688
|
+
namespace Companion {
|
|
1689
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1690
|
+
namespace $metadata$ {
|
|
1691
|
+
abstract class constructor /* implements SerializerFactory */ {
|
|
1692
|
+
fromValue(value: string): Nullable<ContactSource>;
|
|
1693
|
+
private constructor();
|
|
1694
|
+
}
|
|
1695
|
+
}
|
|
1696
|
+
}
|
|
1697
|
+
}
|
|
1604
1698
|
export declare class ContactTryFreeCommand {
|
|
1605
1699
|
constructor(company: string, email: string);
|
|
1606
1700
|
get company(): string;
|
|
@@ -3055,6 +3149,27 @@ export declare namespace CreateSMSBroadcastCommand {
|
|
|
3055
3149
|
const constructor: abstract new () => CreateSMSBroadcastCommand;
|
|
3056
3150
|
}
|
|
3057
3151
|
}
|
|
3152
|
+
export declare class CreateScopedContactEndpointCommand {
|
|
3153
|
+
constructor(channel: ChannelType, companyId: Nullable<bigint> | undefined, endpoint: string, orgContextId: Nullable<bigint> | undefined, roleType: RoleType, sectionId?: Nullable<bigint>, validFrom?: Nullable<any>/* Nullable<Instant> */, validTo?: Nullable<any>/* Nullable<Instant> */);
|
|
3154
|
+
get channel(): ChannelType;
|
|
3155
|
+
get companyId(): Nullable<bigint>;
|
|
3156
|
+
get endpoint(): string;
|
|
3157
|
+
get orgContextId(): Nullable<bigint>;
|
|
3158
|
+
get roleType(): RoleType;
|
|
3159
|
+
get sectionId(): Nullable<bigint>;
|
|
3160
|
+
get validFrom(): Nullable<any>/* Nullable<Instant> */;
|
|
3161
|
+
get validTo(): Nullable<any>/* Nullable<Instant> */;
|
|
3162
|
+
copy(channel?: ChannelType, companyId?: Nullable<bigint>, endpoint?: string, orgContextId?: Nullable<bigint>, roleType?: RoleType, sectionId?: Nullable<bigint>, validFrom?: Nullable<any>/* Nullable<Instant> */, validTo?: Nullable<any>/* Nullable<Instant> */): CreateScopedContactEndpointCommand;
|
|
3163
|
+
toString(): string;
|
|
3164
|
+
hashCode(): number;
|
|
3165
|
+
equals(other: Nullable<any>): boolean;
|
|
3166
|
+
}
|
|
3167
|
+
export declare namespace CreateScopedContactEndpointCommand {
|
|
3168
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
3169
|
+
namespace $metadata$ {
|
|
3170
|
+
const constructor: abstract new () => CreateScopedContactEndpointCommand;
|
|
3171
|
+
}
|
|
3172
|
+
}
|
|
3058
3173
|
export declare class CreateSection {
|
|
3059
3174
|
constructor(apartmentNr?: Nullable<string>, buildingId?: Nullable<bigint>, classification?: Nullable<SectionType>, floorId?: Nullable<bigint>, fractions?: Nullable<SectionFractions>, hNr?: Nullable<string>, identifier?: Nullable<string>, kartverketId?: Nullable<string>, note?: Nullable<string>, organizations?: Nullable<KtList<CreateOrganization>>, parkingSpaces?: Nullable<KtList<CreateParkingSpace>>, persons?: Nullable<KtList<CreatePerson>>, residenceNr?: Nullable<bigint>, storageRooms?: Nullable<KtList<CreateStorageRoom>>, tags?: Nullable<KtList<string>>);
|
|
3060
3175
|
get apartmentNr(): Nullable<string>;
|
|
@@ -3306,15 +3421,17 @@ export declare namespace CreateTaskCommand {
|
|
|
3306
3421
|
}
|
|
3307
3422
|
}
|
|
3308
3423
|
export declare class CreateTokensCommand {
|
|
3309
|
-
constructor(clientId: string, deviceKey?: Nullable<string>, email?: Nullable<string>, fingerprint?: Nullable<string>, mobile?: Nullable<string>, password?: Nullable<string>, srpA?: Nullable<string>);
|
|
3424
|
+
constructor(clientId: string, deviceKey?: Nullable<string>, email?: Nullable<string>, fingerprint?: Nullable<string>, mcpRedirectUri?: Nullable<string>, mcpState?: Nullable<string>, mobile?: Nullable<string>, password?: Nullable<string>, srpA?: Nullable<string>);
|
|
3310
3425
|
get clientId(): string;
|
|
3311
3426
|
get deviceKey(): Nullable<string>;
|
|
3312
3427
|
get email(): Nullable<string>;
|
|
3313
3428
|
get fingerprint(): Nullable<string>;
|
|
3429
|
+
get mcpRedirectUri(): Nullable<string>;
|
|
3430
|
+
get mcpState(): Nullable<string>;
|
|
3314
3431
|
get mobile(): Nullable<string>;
|
|
3315
3432
|
get password(): Nullable<string>;
|
|
3316
3433
|
get srpA(): Nullable<string>;
|
|
3317
|
-
copy(clientId?: string, deviceKey?: Nullable<string>, email?: Nullable<string>, fingerprint?: Nullable<string>, mobile?: Nullable<string>, password?: Nullable<string>, srpA?: Nullable<string>): CreateTokensCommand;
|
|
3434
|
+
copy(clientId?: string, deviceKey?: Nullable<string>, email?: Nullable<string>, fingerprint?: Nullable<string>, mcpRedirectUri?: Nullable<string>, mcpState?: Nullable<string>, mobile?: Nullable<string>, password?: Nullable<string>, srpA?: Nullable<string>): CreateTokensCommand;
|
|
3318
3435
|
toString(): string;
|
|
3319
3436
|
hashCode(): number;
|
|
3320
3437
|
equals(other: Nullable<any>): boolean;
|
|
@@ -7499,12 +7616,14 @@ export declare namespace LoanLog {
|
|
|
7499
7616
|
}
|
|
7500
7617
|
}
|
|
7501
7618
|
export declare class MagicEmailCommand {
|
|
7502
|
-
constructor(clientId: string, deviceKey: Nullable<string> | undefined, email: string, fingerprint?: Nullable<string>);
|
|
7619
|
+
constructor(clientId: string, deviceKey: Nullable<string> | undefined, email: string, fingerprint?: Nullable<string>, mcpRedirectUri?: Nullable<string>, mcpState?: Nullable<string>);
|
|
7503
7620
|
get clientId(): string;
|
|
7504
7621
|
get deviceKey(): Nullable<string>;
|
|
7505
7622
|
get email(): string;
|
|
7506
7623
|
get fingerprint(): Nullable<string>;
|
|
7507
|
-
|
|
7624
|
+
get mcpRedirectUri(): Nullable<string>;
|
|
7625
|
+
get mcpState(): Nullable<string>;
|
|
7626
|
+
copy(clientId?: string, deviceKey?: Nullable<string>, email?: string, fingerprint?: Nullable<string>, mcpRedirectUri?: Nullable<string>, mcpState?: Nullable<string>): MagicEmailCommand;
|
|
7508
7627
|
toString(): string;
|
|
7509
7628
|
hashCode(): number;
|
|
7510
7629
|
equals(other: Nullable<any>): boolean;
|
|
@@ -7516,12 +7635,14 @@ export declare namespace MagicEmailCommand {
|
|
|
7516
7635
|
}
|
|
7517
7636
|
}
|
|
7518
7637
|
export declare class MagicSMSCommand {
|
|
7519
|
-
constructor(clientId: string, deviceKey: Nullable<string> | undefined, fingerprint: Nullable<string> | undefined, mobile: string);
|
|
7638
|
+
constructor(clientId: string, deviceKey: Nullable<string> | undefined, fingerprint: Nullable<string> | undefined, mcpRedirectUri: Nullable<string> | undefined, mcpState: Nullable<string> | undefined, mobile: string);
|
|
7520
7639
|
get clientId(): string;
|
|
7521
7640
|
get deviceKey(): Nullable<string>;
|
|
7522
7641
|
get fingerprint(): Nullable<string>;
|
|
7642
|
+
get mcpRedirectUri(): Nullable<string>;
|
|
7643
|
+
get mcpState(): Nullable<string>;
|
|
7523
7644
|
get mobile(): string;
|
|
7524
|
-
copy(clientId?: string, deviceKey?: Nullable<string>, fingerprint?: Nullable<string>, mobile?: string): MagicSMSCommand;
|
|
7645
|
+
copy(clientId?: string, deviceKey?: Nullable<string>, fingerprint?: Nullable<string>, mcpRedirectUri?: Nullable<string>, mcpState?: Nullable<string>, mobile?: string): MagicSMSCommand;
|
|
7525
7646
|
toString(): string;
|
|
7526
7647
|
hashCode(): number;
|
|
7527
7648
|
equals(other: Nullable<any>): boolean;
|
|
@@ -11108,6 +11229,49 @@ export declare namespace Ping {
|
|
|
11108
11229
|
const constructor: abstract new () => Ping;
|
|
11109
11230
|
}
|
|
11110
11231
|
}
|
|
11232
|
+
export declare abstract class PolicyEffect {
|
|
11233
|
+
private constructor();
|
|
11234
|
+
static get ALLOW(): PolicyEffect & {
|
|
11235
|
+
get name(): "ALLOW";
|
|
11236
|
+
get ordinal(): 0;
|
|
11237
|
+
};
|
|
11238
|
+
static get DENY(): PolicyEffect & {
|
|
11239
|
+
get name(): "DENY";
|
|
11240
|
+
get ordinal(): 1;
|
|
11241
|
+
};
|
|
11242
|
+
static get Allow(): PolicyEffect & {
|
|
11243
|
+
get name(): "ALLOW";
|
|
11244
|
+
get ordinal(): 0;
|
|
11245
|
+
};
|
|
11246
|
+
static get Deny(): PolicyEffect & {
|
|
11247
|
+
get name(): "DENY";
|
|
11248
|
+
get ordinal(): 1;
|
|
11249
|
+
};
|
|
11250
|
+
static values(): [typeof PolicyEffect.ALLOW, typeof PolicyEffect.DENY];
|
|
11251
|
+
static valueOf(value: string): PolicyEffect;
|
|
11252
|
+
get name(): "ALLOW" | "DENY";
|
|
11253
|
+
get ordinal(): 0 | 1;
|
|
11254
|
+
get value(): string;
|
|
11255
|
+
toString(): string;
|
|
11256
|
+
}
|
|
11257
|
+
export declare namespace PolicyEffect {
|
|
11258
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
11259
|
+
namespace $metadata$ {
|
|
11260
|
+
const constructor: abstract new () => PolicyEffect;
|
|
11261
|
+
}
|
|
11262
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
11263
|
+
private constructor();
|
|
11264
|
+
}
|
|
11265
|
+
namespace Companion {
|
|
11266
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
11267
|
+
namespace $metadata$ {
|
|
11268
|
+
abstract class constructor /* implements SerializerFactory */ {
|
|
11269
|
+
fromValue(value: string): Nullable<PolicyEffect>;
|
|
11270
|
+
private constructor();
|
|
11271
|
+
}
|
|
11272
|
+
}
|
|
11273
|
+
}
|
|
11274
|
+
}
|
|
11111
11275
|
export declare class Pong extends WebSocketPayload.$metadata$.constructor {
|
|
11112
11276
|
constructor();
|
|
11113
11277
|
}
|
|
@@ -11592,6 +11756,48 @@ export declare namespace ResidentType {
|
|
|
11592
11756
|
}
|
|
11593
11757
|
}
|
|
11594
11758
|
}
|
|
11759
|
+
export declare class ResolveContactCommand {
|
|
11760
|
+
constructor(at: Nullable<any>/* Nullable<Instant> */ | undefined, channel: ChannelType, companyId?: Nullable<bigint>, ignoreReservation?: Nullable<boolean>, orgContextId?: Nullable<bigint>, organizationId?: Nullable<bigint>, personId?: Nullable<bigint>, roleType?: Nullable<RoleType>, sectionId?: Nullable<bigint>);
|
|
11761
|
+
get at(): Nullable<any>/* Nullable<Instant> */;
|
|
11762
|
+
get channel(): ChannelType;
|
|
11763
|
+
get companyId(): Nullable<bigint>;
|
|
11764
|
+
get ignoreReservation(): Nullable<boolean>;
|
|
11765
|
+
get orgContextId(): Nullable<bigint>;
|
|
11766
|
+
get organizationId(): Nullable<bigint>;
|
|
11767
|
+
get personId(): Nullable<bigint>;
|
|
11768
|
+
get roleType(): Nullable<RoleType>;
|
|
11769
|
+
get sectionId(): Nullable<bigint>;
|
|
11770
|
+
copy(at?: Nullable<any>/* Nullable<Instant> */, channel?: ChannelType, companyId?: Nullable<bigint>, ignoreReservation?: Nullable<boolean>, orgContextId?: Nullable<bigint>, organizationId?: Nullable<bigint>, personId?: Nullable<bigint>, roleType?: Nullable<RoleType>, sectionId?: Nullable<bigint>): ResolveContactCommand;
|
|
11771
|
+
toString(): string;
|
|
11772
|
+
hashCode(): number;
|
|
11773
|
+
equals(other: Nullable<any>): boolean;
|
|
11774
|
+
}
|
|
11775
|
+
export declare namespace ResolveContactCommand {
|
|
11776
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
11777
|
+
namespace $metadata$ {
|
|
11778
|
+
const constructor: abstract new () => ResolveContactCommand;
|
|
11779
|
+
}
|
|
11780
|
+
}
|
|
11781
|
+
export declare class ResolvedEndpoint {
|
|
11782
|
+
constructor(channel: ChannelType, endpoint: string, organizationId: Nullable<bigint> | undefined, personId: Nullable<bigint> | undefined, reserved: boolean, roleType: Nullable<RoleType> | undefined, source: ContactSource);
|
|
11783
|
+
get channel(): ChannelType;
|
|
11784
|
+
get endpoint(): string;
|
|
11785
|
+
get organizationId(): Nullable<bigint>;
|
|
11786
|
+
get personId(): Nullable<bigint>;
|
|
11787
|
+
get reserved(): boolean;
|
|
11788
|
+
get roleType(): Nullable<RoleType>;
|
|
11789
|
+
get source(): ContactSource;
|
|
11790
|
+
copy(channel?: ChannelType, endpoint?: string, organizationId?: Nullable<bigint>, personId?: Nullable<bigint>, reserved?: boolean, roleType?: Nullable<RoleType>, source?: ContactSource): ResolvedEndpoint;
|
|
11791
|
+
toString(): string;
|
|
11792
|
+
hashCode(): number;
|
|
11793
|
+
equals(other: Nullable<any>): boolean;
|
|
11794
|
+
}
|
|
11795
|
+
export declare namespace ResolvedEndpoint {
|
|
11796
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
11797
|
+
namespace $metadata$ {
|
|
11798
|
+
const constructor: abstract new () => ResolvedEndpoint;
|
|
11799
|
+
}
|
|
11800
|
+
}
|
|
11595
11801
|
export declare class RestoreDocumentCommand {
|
|
11596
11802
|
constructor(documentType?: Nullable<string>, parentId?: Nullable<bigint>);
|
|
11597
11803
|
get documentType(): Nullable<string>;
|
|
@@ -12349,6 +12555,44 @@ export declare namespace SameieMatrikkelSearchCommand {
|
|
|
12349
12555
|
const constructor: abstract new () => SameieMatrikkelSearchCommand;
|
|
12350
12556
|
}
|
|
12351
12557
|
}
|
|
12558
|
+
export declare class ScopeContext {
|
|
12559
|
+
constructor(companyId?: Nullable<bigint>, organizationContextId?: Nullable<bigint>, sectionId?: Nullable<bigint>);
|
|
12560
|
+
get companyId(): Nullable<bigint>;
|
|
12561
|
+
get organizationContextId(): Nullable<bigint>;
|
|
12562
|
+
get sectionId(): Nullable<bigint>;
|
|
12563
|
+
copy(companyId?: Nullable<bigint>, organizationContextId?: Nullable<bigint>, sectionId?: Nullable<bigint>): ScopeContext;
|
|
12564
|
+
toString(): string;
|
|
12565
|
+
hashCode(): number;
|
|
12566
|
+
equals(other: Nullable<any>): boolean;
|
|
12567
|
+
}
|
|
12568
|
+
export declare namespace ScopeContext {
|
|
12569
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
12570
|
+
namespace $metadata$ {
|
|
12571
|
+
const constructor: abstract new () => ScopeContext;
|
|
12572
|
+
}
|
|
12573
|
+
}
|
|
12574
|
+
export declare class ScopedContactEndpoint {
|
|
12575
|
+
constructor(channel: ChannelType, endpoint: string, id: bigint, organizationId: Nullable<bigint> | undefined, personId: Nullable<bigint> | undefined, roleType: RoleType, scope: ScopeContext, validFrom: any/* Instant */, validTo?: Nullable<any>/* Nullable<Instant> */);
|
|
12576
|
+
get channel(): ChannelType;
|
|
12577
|
+
get endpoint(): string;
|
|
12578
|
+
get id(): bigint;
|
|
12579
|
+
get organizationId(): Nullable<bigint>;
|
|
12580
|
+
get personId(): Nullable<bigint>;
|
|
12581
|
+
get roleType(): RoleType;
|
|
12582
|
+
get scope(): ScopeContext;
|
|
12583
|
+
get validFrom(): any/* Instant */;
|
|
12584
|
+
get validTo(): Nullable<any>/* Nullable<Instant> */;
|
|
12585
|
+
copy(channel?: ChannelType, endpoint?: string, id?: bigint, organizationId?: Nullable<bigint>, personId?: Nullable<bigint>, roleType?: RoleType, scope?: ScopeContext, validFrom?: any/* Instant */, validTo?: Nullable<any>/* Nullable<Instant> */): ScopedContactEndpoint;
|
|
12586
|
+
toString(): string;
|
|
12587
|
+
hashCode(): number;
|
|
12588
|
+
equals(other: Nullable<any>): boolean;
|
|
12589
|
+
}
|
|
12590
|
+
export declare namespace ScopedContactEndpoint {
|
|
12591
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
12592
|
+
namespace $metadata$ {
|
|
12593
|
+
const constructor: abstract new () => ScopedContactEndpoint;
|
|
12594
|
+
}
|
|
12595
|
+
}
|
|
12352
12596
|
export declare class SearchPersonQueryCommand {
|
|
12353
12597
|
constructor(email?: Nullable<string>, familyName?: Nullable<string>, givenName?: Nullable<string>, id?: Nullable<bigint>, mobile?: Nullable<string>);
|
|
12354
12598
|
get email(): Nullable<string>;
|
|
@@ -15384,6 +15628,22 @@ export declare namespace UpdateSMSBroadcastCommand {
|
|
|
15384
15628
|
const constructor: abstract new () => UpdateSMSBroadcastCommand;
|
|
15385
15629
|
}
|
|
15386
15630
|
}
|
|
15631
|
+
export declare class UpdateScopedContactEndpointCommand {
|
|
15632
|
+
constructor(endpoint?: Nullable<string>, validFrom?: Nullable<any>/* Nullable<Instant> */, validTo?: Nullable<any>/* Nullable<Instant> */);
|
|
15633
|
+
get endpoint(): Nullable<string>;
|
|
15634
|
+
get validFrom(): Nullable<any>/* Nullable<Instant> */;
|
|
15635
|
+
get validTo(): Nullable<any>/* Nullable<Instant> */;
|
|
15636
|
+
copy(endpoint?: Nullable<string>, validFrom?: Nullable<any>/* Nullable<Instant> */, validTo?: Nullable<any>/* Nullable<Instant> */): UpdateScopedContactEndpointCommand;
|
|
15637
|
+
toString(): string;
|
|
15638
|
+
hashCode(): number;
|
|
15639
|
+
equals(other: Nullable<any>): boolean;
|
|
15640
|
+
}
|
|
15641
|
+
export declare namespace UpdateScopedContactEndpointCommand {
|
|
15642
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
15643
|
+
namespace $metadata$ {
|
|
15644
|
+
const constructor: abstract new () => UpdateScopedContactEndpointCommand;
|
|
15645
|
+
}
|
|
15646
|
+
}
|
|
15387
15647
|
export declare class UpdateSectionCommand {
|
|
15388
15648
|
constructor(apartmentNr: Nullable<string> | undefined, companyId: bigint, hnr: Nullable<string> | undefined, identifier: Nullable<string> | undefined, inFourFraction: Nullable<string> | undefined, inOneFraction: Nullable<string> | undefined, inThreeFraction: Nullable<string> | undefined, inTwoFraction: Nullable<string> | undefined, note: Nullable<string> | undefined, ownerFraction: Nullable<string> | undefined, residenceNr: Nullable<bigint> | undefined, sectionAddressId: Nullable<bigint> | undefined, sectionType: SectionType, sectioningFraction?: Nullable<string>, wealthFraction?: Nullable<string>);
|
|
15389
15649
|
get apartmentNr(): Nullable<string>;
|
|
@@ -16498,6 +16758,24 @@ export declare namespace RoutinesApi {
|
|
|
16498
16758
|
const constructor: abstract new () => RoutinesApi;
|
|
16499
16759
|
}
|
|
16500
16760
|
}
|
|
16761
|
+
export declare class ScopedContactApi extends ApiClient.$metadata$.constructor {
|
|
16762
|
+
private constructor();
|
|
16763
|
+
static create(baseUrl?: string, httpClientEngine?: Nullable<any>/* Nullable<HttpClientEngine> */, httpClientConfig?: Nullable<(p0: any/* HttpClientConfig<UnknownType *> */) => void>, jsonSerializer?: any/* Json */): ScopedContactApi;
|
|
16764
|
+
static createWithClient(baseUrl: string, httpClient: any/* HttpClient */): ScopedContactApi;
|
|
16765
|
+
createUserScopedContact(createScopedContactEndpointCommand: CreateScopedContactEndpointCommand): Promise<HttpResponse<ScopedContactEndpoint>>;
|
|
16766
|
+
deleteUserScopedContact(endpointId: bigint): Promise<HttpResponse<void>>;
|
|
16767
|
+
expireUserScopedContact(endpointId: bigint): Promise<HttpResponse<ScopedContactEndpoint>>;
|
|
16768
|
+
listUserScopedContacts(includeExpired?: Nullable<boolean>, fields?: Nullable<string>): Promise<HttpResponse<KtList<ScopedContactEndpoint>>>;
|
|
16769
|
+
resolveUserContact(resolveContactCommand: ResolveContactCommand): Promise<HttpResponse<ResolvedEndpoint>>;
|
|
16770
|
+
showUserScopedContact(endpointId: bigint, fields?: Nullable<string>): Promise<HttpResponse<ScopedContactEndpoint>>;
|
|
16771
|
+
updateUserScopedContact(endpointId: bigint, updateScopedContactEndpointCommand: UpdateScopedContactEndpointCommand): Promise<HttpResponse<ScopedContactEndpoint>>;
|
|
16772
|
+
}
|
|
16773
|
+
export declare namespace ScopedContactApi {
|
|
16774
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
16775
|
+
namespace $metadata$ {
|
|
16776
|
+
const constructor: abstract new () => ScopedContactApi;
|
|
16777
|
+
}
|
|
16778
|
+
}
|
|
16501
16779
|
export declare class SectionApi extends ApiClient.$metadata$.constructor {
|
|
16502
16780
|
private constructor();
|
|
16503
16781
|
static create(baseUrl?: string, httpClientEngine?: Nullable<any>/* Nullable<HttpClientEngine> */, httpClientConfig?: Nullable<(p0: any/* HttpClientConfig<UnknownType *> */) => void>, jsonSerializer?: any/* Json */): SectionApi;
|