@solibo/home-api 1.1.21 → 1.1.22

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.
@@ -427,10 +427,14 @@ export declare namespace AuthChallengeType {
427
427
  }
428
428
  }
429
429
  }
430
- export declare interface AuthUser {
431
- readonly __doNotUseOrImplementIt: {
432
- readonly "no.solibo.oss.sdk.api.gen.models.AuthUser": unique symbol;
433
- };
430
+ export declare abstract class AuthUser {
431
+ protected constructor();
432
+ }
433
+ export declare namespace AuthUser {
434
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
435
+ namespace $metadata$ {
436
+ const constructor: abstract new () => AuthUser;
437
+ }
434
438
  }
435
439
  export declare class AuthorizationSupportRequestCommand {
436
440
  constructor(companyName: string, email: string);
@@ -650,7 +654,7 @@ export declare namespace ChangeResponsibleCommand {
650
654
  const constructor: abstract new () => ChangeResponsibleCommand;
651
655
  }
652
656
  }
653
- export declare class ClientUser implements AuthUser {
657
+ export declare class ClientUser extends AuthUser.$metadata$.constructor {
654
658
  constructor(clientId: string, id: bigint, organizationId: Nullable<bigint> | undefined, personId: Nullable<bigint> | undefined, scopes: KtList<string>);
655
659
  get clientId(): string;
656
660
  get id(): bigint;
@@ -661,7 +665,6 @@ export declare class ClientUser implements AuthUser {
661
665
  toString(): string;
662
666
  hashCode(): number;
663
667
  equals(other: Nullable<any>): boolean;
664
- readonly __doNotUseOrImplementIt: AuthUser["__doNotUseOrImplementIt"];
665
668
  }
666
669
  export declare namespace ClientUser {
667
670
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -1502,10 +1505,11 @@ export declare namespace ConversationEvent {
1502
1505
  }
1503
1506
  }
1504
1507
  export declare class ConversationEventPayload extends WebSocketPayload.$metadata$.constructor {
1505
- constructor(conversationId: bigint, event: ConversationEvent);
1508
+ constructor(companyId: bigint, conversationId: bigint, event: ConversationEvent);
1509
+ get companyId(): bigint;
1506
1510
  get conversationId(): bigint;
1507
1511
  get event(): ConversationEvent;
1508
- copy(conversationId?: bigint, event?: ConversationEvent): ConversationEventPayload;
1512
+ copy(companyId?: bigint, conversationId?: bigint, event?: ConversationEvent): ConversationEventPayload;
1509
1513
  toString(): string;
1510
1514
  hashCode(): number;
1511
1515
  equals(other: Nullable<any>): boolean;
@@ -1628,10 +1632,11 @@ export declare namespace ConversationList {
1628
1632
  }
1629
1633
  }
1630
1634
  export declare class ConversationMessagePayload extends WebSocketPayload.$metadata$.constructor {
1631
- constructor(conversationId: bigint, message: MessageInConversation);
1635
+ constructor(companyId: bigint, conversationId: bigint, message: MessageInConversation);
1636
+ get companyId(): bigint;
1632
1637
  get conversationId(): bigint;
1633
1638
  get message(): MessageInConversation;
1634
- copy(conversationId?: bigint, message?: MessageInConversation): ConversationMessagePayload;
1639
+ copy(companyId?: bigint, conversationId?: bigint, message?: MessageInConversation): ConversationMessagePayload;
1635
1640
  toString(): string;
1636
1641
  hashCode(): number;
1637
1642
  equals(other: Nullable<any>): boolean;
@@ -1701,12 +1706,13 @@ export declare namespace ConversationStatus {
1701
1706
  }
1702
1707
  }
1703
1708
  export declare class ConversationTypingPayload extends WebSocketPayload.$metadata$.constructor {
1704
- constructor(conversationId: bigint, name: string, personId: bigint, typing: boolean);
1709
+ constructor(companyId: bigint, conversationId: bigint, name: string, typing: boolean, userId: string);
1710
+ get companyId(): bigint;
1705
1711
  get conversationId(): bigint;
1706
1712
  get name(): string;
1707
- get personId(): bigint;
1708
1713
  get typing(): boolean;
1709
- copy(conversationId?: bigint, name?: string, personId?: bigint, typing?: boolean): ConversationTypingPayload;
1714
+ get userId(): string;
1715
+ copy(companyId?: bigint, conversationId?: bigint, name?: string, typing?: boolean, userId?: string): ConversationTypingPayload;
1710
1716
  toString(): string;
1711
1717
  hashCode(): number;
1712
1718
  equals(other: Nullable<any>): boolean;
@@ -1976,12 +1982,16 @@ export declare namespace CreateExpenseCommand {
1976
1982
  const constructor: abstract new () => CreateExpenseCommand;
1977
1983
  }
1978
1984
  }
1979
- export declare interface CreateExternalCustomerCommand {
1980
- readonly __doNotUseOrImplementIt: {
1981
- readonly "no.solibo.oss.sdk.api.gen.models.CreateExternalCustomerCommand": unique symbol;
1982
- };
1985
+ export declare abstract class CreateExternalCustomerCommand {
1986
+ protected constructor();
1983
1987
  }
1984
- export declare class CreateExternalOrganizationCustomerCommand implements CreateExternalCustomerCommand {
1988
+ export declare namespace CreateExternalCustomerCommand {
1989
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1990
+ namespace $metadata$ {
1991
+ const constructor: abstract new () => CreateExternalCustomerCommand;
1992
+ }
1993
+ }
1994
+ export declare class CreateExternalOrganizationCustomerCommand extends CreateExternalCustomerCommand.$metadata$.constructor {
1985
1995
  constructor(accountNumber: Nullable<string> | undefined, businessAddress: Nullable<BusinessAddress> | undefined, businessContact: Nullable<BusinessContact> | undefined, classification: string, orgName: string, orgNr: string);
1986
1996
  get accountNumber(): Nullable<string>;
1987
1997
  get businessAddress(): Nullable<BusinessAddress>;
@@ -1993,7 +2003,6 @@ export declare class CreateExternalOrganizationCustomerCommand implements Create
1993
2003
  toString(): string;
1994
2004
  hashCode(): number;
1995
2005
  equals(other: Nullable<any>): boolean;
1996
- readonly __doNotUseOrImplementIt: CreateExternalCustomerCommand["__doNotUseOrImplementIt"];
1997
2006
  }
1998
2007
  export declare namespace CreateExternalOrganizationCustomerCommand {
1999
2008
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -2001,7 +2010,7 @@ export declare namespace CreateExternalOrganizationCustomerCommand {
2001
2010
  const constructor: abstract new () => CreateExternalOrganizationCustomerCommand;
2002
2011
  }
2003
2012
  }
2004
- export declare class CreateExternalPersonCustomerCommand implements CreateExternalCustomerCommand {
2013
+ export declare class CreateExternalPersonCustomerCommand extends CreateExternalCustomerCommand.$metadata$.constructor {
2005
2014
  constructor(account: Nullable<string> | undefined, address: Nullable<AddressSpecifics> | undefined, email: Nullable<string> | undefined, invoicingEmail: Nullable<string> | undefined, name: Name, nationality?: Nullable<bigint>, personalIdentityNumber?: Nullable<string>, phone?: Nullable<string>, preferredLanguage?: Nullable<bigint>);
2006
2015
  get account(): Nullable<string>;
2007
2016
  get address(): Nullable<AddressSpecifics>;
@@ -2016,7 +2025,6 @@ export declare class CreateExternalPersonCustomerCommand implements CreateExtern
2016
2025
  toString(): string;
2017
2026
  hashCode(): number;
2018
2027
  equals(other: Nullable<any>): boolean;
2019
- readonly __doNotUseOrImplementIt: CreateExternalCustomerCommand["__doNotUseOrImplementIt"];
2020
2028
  }
2021
2029
  export declare namespace CreateExternalPersonCustomerCommand {
2022
2030
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -2403,7 +2411,7 @@ export declare namespace CreateOrganizationOwner {
2403
2411
  const constructor: abstract new () => CreateOrganizationOwner;
2404
2412
  }
2405
2413
  }
2406
- export declare class CreateOrganizationResidentCommand implements CreateResidentCommand {
2414
+ export declare class CreateOrganizationResidentCommand extends CreateResidentCommand.$metadata$.constructor {
2407
2415
  constructor(accountNumber: Nullable<string> | undefined, invoiceRecipient: Nullable<boolean> | undefined, nationality: Nullable<bigint> | undefined, parkingSpaceId: Nullable<bigint> | undefined, preferredLanguage: Nullable<bigint> | undefined, residencyStartedAt: any/* Instant */, sectionId: Nullable<bigint> | undefined, storageRoomId: Nullable<bigint> | undefined, businessAddress: Nullable<BusinessAddress> | undefined, businessContact: Nullable<BusinessContact> | undefined, classification: string, orgName: string, orgNr: string, role: OrganizationRoleInput);
2408
2416
  get accountNumber(): Nullable<string>;
2409
2417
  get invoiceRecipient(): Nullable<boolean>;
@@ -2423,7 +2431,6 @@ export declare class CreateOrganizationResidentCommand implements CreateResident
2423
2431
  toString(): string;
2424
2432
  hashCode(): number;
2425
2433
  equals(other: Nullable<any>): boolean;
2426
- readonly __doNotUseOrImplementIt: CreateResidentCommand["__doNotUseOrImplementIt"];
2427
2434
  }
2428
2435
  export declare namespace CreateOrganizationResidentCommand {
2429
2436
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -2531,7 +2538,7 @@ export declare namespace CreatePersonOwner {
2531
2538
  const constructor: abstract new () => CreatePersonOwner;
2532
2539
  }
2533
2540
  }
2534
- export declare class CreatePersonResidentCommand implements CreateResidentCommand {
2541
+ export declare class CreatePersonResidentCommand extends CreateResidentCommand.$metadata$.constructor {
2535
2542
  constructor(accountNumber: Nullable<string> | undefined, invoiceRecipient: Nullable<boolean> | undefined, nationality: Nullable<bigint> | undefined, parkingSpaceId: Nullable<bigint> | undefined, preferredLanguage: Nullable<bigint> | undefined, residencyStartedAt: any/* Instant */, sectionId: Nullable<bigint> | undefined, storageRoomId: Nullable<bigint> | undefined, email: Nullable<string> | undefined, invoicingEmail: Nullable<string> | undefined, mobile: Nullable<string> | undefined, name: Nullable<Name> | undefined, personId: Nullable<bigint> | undefined, personalIdentityNumber: Nullable<string> | undefined, role: PersonRoleInput);
2536
2543
  get accountNumber(): Nullable<string>;
2537
2544
  get invoiceRecipient(): Nullable<boolean>;
@@ -2552,7 +2559,6 @@ export declare class CreatePersonResidentCommand implements CreateResidentComman
2552
2559
  toString(): string;
2553
2560
  hashCode(): number;
2554
2561
  equals(other: Nullable<any>): boolean;
2555
- readonly __doNotUseOrImplementIt: CreateResidentCommand["__doNotUseOrImplementIt"];
2556
2562
  }
2557
2563
  export declare namespace CreatePersonResidentCommand {
2558
2564
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -2623,18 +2629,22 @@ export declare namespace CreateResetPasswordCommand {
2623
2629
  const constructor: abstract new () => CreateResetPasswordCommand;
2624
2630
  }
2625
2631
  }
2626
- export declare interface CreateResidentCommand {
2627
- readonly accountNumber: Nullable<string>;
2628
- readonly invoiceRecipient: Nullable<boolean>;
2629
- readonly nationality: Nullable<bigint>;
2630
- readonly parkingSpaceId: Nullable<bigint>;
2631
- readonly preferredLanguage: Nullable<bigint>;
2632
- readonly residencyStartedAt: any/* Instant */;
2633
- readonly sectionId: Nullable<bigint>;
2634
- readonly storageRoomId: Nullable<bigint>;
2635
- readonly __doNotUseOrImplementIt: {
2636
- readonly "no.solibo.oss.sdk.api.gen.models.CreateResidentCommand": unique symbol;
2637
- };
2632
+ export declare abstract class CreateResidentCommand {
2633
+ protected constructor();
2634
+ abstract get accountNumber(): Nullable<string>;
2635
+ abstract get invoiceRecipient(): Nullable<boolean>;
2636
+ abstract get nationality(): Nullable<bigint>;
2637
+ abstract get parkingSpaceId(): Nullable<bigint>;
2638
+ abstract get preferredLanguage(): Nullable<bigint>;
2639
+ abstract get residencyStartedAt(): any/* Instant */;
2640
+ abstract get sectionId(): Nullable<bigint>;
2641
+ abstract get storageRoomId(): Nullable<bigint>;
2642
+ }
2643
+ export declare namespace CreateResidentCommand {
2644
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2645
+ namespace $metadata$ {
2646
+ const constructor: abstract new () => CreateResidentCommand;
2647
+ }
2638
2648
  }
2639
2649
  export declare class CreateRoutineCommand {
2640
2650
  constructor(description: Nullable<string> | undefined, draftId: Nullable<bigint> | undefined, dueDateOffset: Nullable<bigint> | undefined, recommendedIntervalMethod: Nullable<RoutineMethod> | undefined, recommendedIntervalType: RoutineInterval, recommendedIntervalValue: Nullable<bigint> | undefined, requiresSupplier: boolean, responsibleId: Nullable<bigint> | undefined, startDate: Nullable<any>/* Nullable<Instant> */ | undefined, supplierId: Nullable<bigint> | undefined, svgName: string, title: Nullable<string> | undefined, type: RoutineType);
@@ -2941,20 +2951,24 @@ export declare namespace CreditInvoiceCommand {
2941
2951
  const constructor: abstract new () => CreditInvoiceCommand;
2942
2952
  }
2943
2953
  }
2944
- export declare interface Customer {
2945
- readonly active: boolean;
2946
- readonly area: Nullable<string>;
2947
- readonly classification: CustomerClassification;
2948
- readonly external: boolean;
2949
- readonly groupInvoices: boolean;
2950
- readonly isRecipient: boolean;
2951
- readonly reference: Nullable<string>;
2952
- readonly sections: KtList<SectionPack>;
2953
- readonly streetAddress: Nullable<string>;
2954
- readonly zip: Nullable<string>;
2955
- readonly __doNotUseOrImplementIt: {
2956
- readonly "no.solibo.oss.sdk.api.gen.models.Customer": unique symbol;
2957
- };
2954
+ export declare abstract class Customer {
2955
+ protected constructor();
2956
+ abstract get active(): boolean;
2957
+ abstract get area(): Nullable<string>;
2958
+ abstract get classification(): CustomerClassification;
2959
+ abstract get external(): boolean;
2960
+ abstract get groupInvoices(): boolean;
2961
+ abstract get isRecipient(): boolean;
2962
+ abstract get reference(): Nullable<string>;
2963
+ abstract get sections(): KtList<SectionPack>;
2964
+ abstract get streetAddress(): Nullable<string>;
2965
+ abstract get zip(): Nullable<string>;
2966
+ }
2967
+ export declare namespace Customer {
2968
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2969
+ namespace $metadata$ {
2970
+ const constructor: abstract new () => Customer;
2971
+ }
2958
2972
  }
2959
2973
  export declare abstract class CustomerClassification {
2960
2974
  private constructor();
@@ -3641,7 +3655,7 @@ export declare namespace EmailInlineConfirmCommand {
3641
3655
  const constructor: abstract new () => EmailInlineConfirmCommand;
3642
3656
  }
3643
3657
  }
3644
- export declare class EmployeeParticipant implements Participant {
3658
+ export declare class EmployeeParticipant extends Participant.$metadata$.constructor {
3645
3659
  constructor(active: boolean, id: bigint, name: string, participantId: bigint, employee?: Nullable<OrganizationEmployee>);
3646
3660
  get active(): boolean;
3647
3661
  get id(): bigint;
@@ -3652,7 +3666,6 @@ export declare class EmployeeParticipant implements Participant {
3652
3666
  toString(): string;
3653
3667
  hashCode(): number;
3654
3668
  equals(other: Nullable<any>): boolean;
3655
- readonly __doNotUseOrImplementIt: Participant["__doNotUseOrImplementIt"];
3656
3669
  }
3657
3670
  export declare namespace EmployeeParticipant {
3658
3671
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -4201,18 +4214,18 @@ export declare namespace GenerellAdresse {
4201
4214
  const constructor: abstract new () => GenerellAdresse;
4202
4215
  }
4203
4216
  }
4204
- export declare class GenericMessage extends WebSocketPayload.$metadata$.constructor {
4217
+ export declare class GenericPayload extends WebSocketPayload.$metadata$.constructor {
4205
4218
  constructor(message: string);
4206
4219
  get message(): string;
4207
- copy(message?: string): GenericMessage;
4220
+ copy(message?: string): GenericPayload;
4208
4221
  toString(): string;
4209
4222
  hashCode(): number;
4210
4223
  equals(other: Nullable<any>): boolean;
4211
4224
  }
4212
- export declare namespace GenericMessage {
4225
+ export declare namespace GenericPayload {
4213
4226
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
4214
4227
  namespace $metadata$ {
4215
- const constructor: abstract new () => GenericMessage;
4228
+ const constructor: abstract new () => GenericPayload;
4216
4229
  }
4217
4230
  }
4218
4231
  export declare class GenghisCompany {
@@ -4545,6 +4558,15 @@ export declare namespace Homepage {
4545
4558
  const constructor: abstract new () => Homepage;
4546
4559
  }
4547
4560
  }
4561
+ export declare abstract class IncomingEventBusMessage {
4562
+ protected constructor();
4563
+ }
4564
+ export declare namespace IncomingEventBusMessage {
4565
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
4566
+ namespace $metadata$ {
4567
+ const constructor: abstract new () => IncomingEventBusMessage;
4568
+ }
4569
+ }
4548
4570
  export declare abstract class InlineDistributionType {
4549
4571
  private constructor();
4550
4572
  static get FLAT(): InlineDistributionType & {
@@ -4613,7 +4635,7 @@ export declare namespace Innsending {
4613
4635
  const constructor: abstract new () => Innsending;
4614
4636
  }
4615
4637
  }
4616
- export declare class InquiryParticipant implements Participant {
4638
+ export declare class InquiryParticipant extends Participant.$metadata$.constructor {
4617
4639
  constructor(active: boolean, id: bigint, name: string, participantId: bigint, email?: Nullable<string>);
4618
4640
  get active(): boolean;
4619
4641
  get id(): bigint;
@@ -4624,7 +4646,6 @@ export declare class InquiryParticipant implements Participant {
4624
4646
  toString(): string;
4625
4647
  hashCode(): number;
4626
4648
  equals(other: Nullable<any>): boolean;
4627
- readonly __doNotUseOrImplementIt: Participant["__doNotUseOrImplementIt"];
4628
4649
  }
4629
4650
  export declare namespace InquiryParticipant {
4630
4651
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -7308,7 +7329,7 @@ export declare namespace Organization {
7308
7329
  const constructor: abstract new () => Organization;
7309
7330
  }
7310
7331
  }
7311
- export declare class OrganizationCustomer implements Customer {
7332
+ export declare class OrganizationCustomer extends Customer.$metadata$.constructor {
7312
7333
  constructor(active: boolean, area: Nullable<string> | undefined, classification: CustomerClassification, external: boolean, groupInvoices: boolean, isRecipient: boolean, reference: Nullable<string> | undefined, sections: KtList<SectionPack>, streetAddress: Nullable<string> | undefined, zip: Nullable<string> | undefined, comments: Nullable<KtList<CustomerComment>> | undefined, companyId: bigint, organization: Organization, preferredAdvertisement?: Nullable<PreferredAdvertisement>);
7313
7334
  get active(): boolean;
7314
7335
  get area(): Nullable<string>;
@@ -7328,7 +7349,6 @@ export declare class OrganizationCustomer implements Customer {
7328
7349
  toString(): string;
7329
7350
  hashCode(): number;
7330
7351
  equals(other: Nullable<any>): boolean;
7331
- readonly __doNotUseOrImplementIt: Customer["__doNotUseOrImplementIt"];
7332
7352
  }
7333
7353
  export declare namespace OrganizationCustomer {
7334
7354
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -7381,7 +7401,7 @@ export declare namespace OrganizationInformation {
7381
7401
  const constructor: abstract new () => OrganizationInformation;
7382
7402
  }
7383
7403
  }
7384
- export declare class OrganizationParticipant implements Participant {
7404
+ export declare class OrganizationParticipant extends Participant.$metadata$.constructor {
7385
7405
  constructor(active: boolean, id: bigint, name: string, participantId: bigint, organization?: Nullable<Organization>, orgnr?: Nullable<string>);
7386
7406
  get active(): boolean;
7387
7407
  get id(): bigint;
@@ -7393,7 +7413,6 @@ export declare class OrganizationParticipant implements Participant {
7393
7413
  toString(): string;
7394
7414
  hashCode(): number;
7395
7415
  equals(other: Nullable<any>): boolean;
7396
- readonly __doNotUseOrImplementIt: Participant["__doNotUseOrImplementIt"];
7397
7416
  }
7398
7417
  export declare namespace OrganizationParticipant {
7399
7418
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -7417,7 +7436,7 @@ export declare namespace OrganizationReservations {
7417
7436
  const constructor: abstract new () => OrganizationReservations;
7418
7437
  }
7419
7438
  }
7420
- export declare class OrganizationResident implements Resident {
7439
+ export declare class OrganizationResident extends Resident.$metadata$.constructor {
7421
7440
  constructor(accountNumber: Nullable<string> | undefined, attendances: Nullable<KtList<Attendance>> | undefined, country: string, historicRoles: Nullable<KtList<Role>> | undefined, id: bigint, nationality: bigint, note: Nullable<string> | undefined, parkingSpaces: Nullable<KtList<ParkingSpaceOwnership>> | undefined, profileUrl: Nullable<string> | undefined, reservedEmail: Nullable<boolean> | undefined, reservedSMS: Nullable<boolean> | undefined, roles: Nullable<KtList<Role>> | undefined, storageRooms: Nullable<KtList<StorageRoomOwnership>> | undefined, businessAddress: Nullable<BusinessAddress> | undefined, businessContact: Nullable<BusinessContact> | undefined, employees: Nullable<KtList<OrganizationEmployee>> | undefined, name: string, orgNr?: Nullable<string>, reservations?: Nullable<KtMap<string, Nullable<OrganizationReservations>>>);
7422
7441
  get accountNumber(): Nullable<string>;
7423
7442
  get attendances(): Nullable<KtList<Attendance>>;
@@ -7442,7 +7461,6 @@ export declare class OrganizationResident implements Resident {
7442
7461
  toString(): string;
7443
7462
  hashCode(): number;
7444
7463
  equals(other: Nullable<any>): boolean;
7445
- readonly __doNotUseOrImplementIt: Resident["__doNotUseOrImplementIt"];
7446
7464
  }
7447
7465
  export declare namespace OrganizationResident {
7448
7466
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -7792,14 +7810,18 @@ export declare namespace ParkingSpaceType {
7792
7810
  }
7793
7811
  }
7794
7812
  }
7795
- export declare interface Participant {
7796
- readonly active: boolean;
7797
- readonly id: bigint;
7798
- readonly name: string;
7799
- readonly participantId: bigint;
7800
- readonly __doNotUseOrImplementIt: {
7801
- readonly "no.solibo.oss.sdk.api.gen.models.Participant": unique symbol;
7802
- };
7813
+ export declare abstract class Participant {
7814
+ protected constructor();
7815
+ abstract get active(): boolean;
7816
+ abstract get id(): bigint;
7817
+ abstract get name(): string;
7818
+ abstract get participantId(): bigint;
7819
+ }
7820
+ export declare namespace Participant {
7821
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
7822
+ namespace $metadata$ {
7823
+ const constructor: abstract new () => Participant;
7824
+ }
7803
7825
  }
7804
7826
  export declare abstract class ParticipantType {
7805
7827
  private constructor();
@@ -8193,7 +8215,7 @@ export declare namespace PersonAdresse {
8193
8215
  const constructor: abstract new () => PersonAdresse;
8194
8216
  }
8195
8217
  }
8196
- export declare class PersonCustomer implements Customer {
8218
+ export declare class PersonCustomer extends Customer.$metadata$.constructor {
8197
8219
  constructor(active: boolean, area: Nullable<string> | undefined, classification: CustomerClassification, external: boolean, groupInvoices: boolean, isRecipient: boolean, reference: Nullable<string> | undefined, sections: KtList<SectionPack>, streetAddress: Nullable<string> | undefined, zip: Nullable<string> | undefined, comments: Nullable<KtList<CustomerComment>> | undefined, companyId: bigint, person: Person, preferredAdvertisement?: Nullable<PreferredAdvertisement>);
8198
8220
  get active(): boolean;
8199
8221
  get area(): Nullable<string>;
@@ -8213,7 +8235,6 @@ export declare class PersonCustomer implements Customer {
8213
8235
  toString(): string;
8214
8236
  hashCode(): number;
8215
8237
  equals(other: Nullable<any>): boolean;
8216
- readonly __doNotUseOrImplementIt: Customer["__doNotUseOrImplementIt"];
8217
8238
  }
8218
8239
  export declare namespace PersonCustomer {
8219
8240
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -8258,7 +8279,7 @@ export declare namespace PersonName {
8258
8279
  const constructor: abstract new () => PersonName;
8259
8280
  }
8260
8281
  }
8261
- export declare class PersonParticipant implements Participant {
8282
+ export declare class PersonParticipant extends Participant.$metadata$.constructor {
8262
8283
  constructor(active: boolean, id: bigint, name: string, participantId: bigint, person?: Nullable<Person>);
8263
8284
  get active(): boolean;
8264
8285
  get id(): bigint;
@@ -8269,7 +8290,6 @@ export declare class PersonParticipant implements Participant {
8269
8290
  toString(): string;
8270
8291
  hashCode(): number;
8271
8292
  equals(other: Nullable<any>): boolean;
8272
- readonly __doNotUseOrImplementIt: Participant["__doNotUseOrImplementIt"];
8273
8293
  }
8274
8294
  export declare namespace PersonParticipant {
8275
8295
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -8292,7 +8312,7 @@ export declare namespace PersonPostalArea {
8292
8312
  const constructor: abstract new () => PersonPostalArea;
8293
8313
  }
8294
8314
  }
8295
- export declare class PersonResident implements Resident {
8315
+ export declare class PersonResident extends Resident.$metadata$.constructor {
8296
8316
  constructor(accountNumber: Nullable<string> | undefined, attendances: Nullable<KtList<Attendance>> | undefined, country: string, historicRoles: Nullable<KtList<Role>> | undefined, id: bigint, nationality: bigint, note: Nullable<string> | undefined, parkingSpaces: Nullable<KtList<ParkingSpaceOwnership>> | undefined, profileUrl: Nullable<string> | undefined, reservedEmail: Nullable<boolean> | undefined, reservedSMS: Nullable<boolean> | undefined, roles: Nullable<KtList<Role>> | undefined, storageRooms: Nullable<KtList<StorageRoomOwnership>> | undefined, address: Nullable<AddressSpecifics> | undefined, birthDay: Nullable<string> | undefined, completeMobile: Nullable<string> | undefined, email: Nullable<string> | undefined, folkeregisteret: Nullable<Folkeregisteret> | undefined, invoicingEmail: Nullable<string> | undefined, isUser: Nullable<boolean> | undefined, mobile: Nullable<string> | undefined, mobileCountryCode: Nullable<string> | undefined, name: Name, passportExpiration?: Nullable<any>/* Nullable<Instant> */, passportNumberId?: Nullable<string>, personnummerId?: Nullable<string>, personnummerTwoId?: Nullable<string>, title?: Nullable<string>);
8297
8317
  get accountNumber(): Nullable<string>;
8298
8318
  get attendances(): Nullable<KtList<Attendance>>;
@@ -8326,7 +8346,6 @@ export declare class PersonResident implements Resident {
8326
8346
  toString(): string;
8327
8347
  hashCode(): number;
8328
8348
  equals(other: Nullable<any>): boolean;
8329
- readonly __doNotUseOrImplementIt: Resident["__doNotUseOrImplementIt"];
8330
8349
  }
8331
8350
  export declare namespace PersonResident {
8332
8351
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -8463,7 +8482,7 @@ export declare namespace PersonStatus {
8463
8482
  }
8464
8483
  }
8465
8484
  }
8466
- export declare class PersonUser implements AuthUser {
8485
+ export declare class PersonUser extends AuthUser.$metadata$.constructor {
8467
8486
  constructor(country: Nullable<string> | undefined, email: Nullable<string> | undefined, id: string, mobile: Nullable<string> | undefined, name: Nullable<Name> | undefined, nationality: Nullable<bigint> | undefined, personId: bigint, preferredLanguage: Nullable<bigint> | undefined, profileUrl: Nullable<string> | undefined, roles: Nullable<KtList<Role>> | undefined, username: string);
8468
8487
  get country(): Nullable<string>;
8469
8488
  get email(): Nullable<string>;
@@ -8480,7 +8499,6 @@ export declare class PersonUser implements AuthUser {
8480
8499
  toString(): string;
8481
8500
  hashCode(): number;
8482
8501
  equals(other: Nullable<any>): boolean;
8483
- readonly __doNotUseOrImplementIt: AuthUser["__doNotUseOrImplementIt"];
8484
8502
  }
8485
8503
  export declare namespace PersonUser {
8486
8504
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -8556,6 +8574,24 @@ export declare namespace PersonnummerStatus {
8556
8574
  const constructor: abstract new () => PersonnummerStatus;
8557
8575
  }
8558
8576
  }
8577
+ export declare class Ping extends IncomingEventBusMessage.$metadata$.constructor {
8578
+ constructor();
8579
+ }
8580
+ export declare namespace Ping {
8581
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
8582
+ namespace $metadata$ {
8583
+ const constructor: abstract new () => Ping;
8584
+ }
8585
+ }
8586
+ export declare class Pong extends WebSocketPayload.$metadata$.constructor {
8587
+ constructor();
8588
+ }
8589
+ export declare namespace Pong {
8590
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
8591
+ namespace $metadata$ {
8592
+ const constructor: abstract new () => Pong;
8593
+ }
8594
+ }
8559
8595
  export declare class Post {
8560
8596
  constructor(companyId: bigint, content: string, contentUrls: Nullable<KtList<Content>> | undefined, createdAt: any/* Instant */, documents: Nullable<KtList<Document>> | undefined, emailRecipientStatus: Nullable<KtList<MassCommunicationRecipientStatus>> | undefined, id: bigint, notificationEmailGroups: Nullable<KtList<NotificationGroup>> | undefined, notificationSMSGroups: Nullable<KtList<NotificationGroup>> | undefined, pictureDocument: Nullable<Document> | undefined, pictureDocumentId: Nullable<bigint> | undefined, pictureUrl: Nullable<Content> | undefined, pinned: boolean, postType: string, _private: boolean, publishedAt: Nullable<any>/* Nullable<Instant> */ | undefined, publishedById: bigint, smsRecipientStatus: Nullable<KtList<MassCommunicationRecipientStatus>> | undefined, title: string, updatedAt: any/* Instant */, weighting: bigint);
8561
8597
  get companyId(): bigint;
@@ -8898,23 +8934,27 @@ export declare namespace ReorderIssueInMeetingCommand {
8898
8934
  const constructor: abstract new () => ReorderIssueInMeetingCommand;
8899
8935
  }
8900
8936
  }
8901
- export declare interface Resident {
8902
- readonly accountNumber: Nullable<string>;
8903
- readonly attendances: Nullable<KtList<Attendance>>;
8904
- readonly country: string;
8905
- readonly historicRoles: Nullable<KtList<Role>>;
8906
- readonly id: bigint;
8907
- readonly nationality: bigint;
8908
- readonly note: Nullable<string>;
8909
- readonly parkingSpaces: Nullable<KtList<ParkingSpaceOwnership>>;
8910
- readonly profileUrl: Nullable<string>;
8911
- readonly reservedEmail: Nullable<boolean>;
8912
- readonly reservedSMS: Nullable<boolean>;
8913
- readonly roles: Nullable<KtList<Role>>;
8914
- readonly storageRooms: Nullable<KtList<StorageRoomOwnership>>;
8915
- readonly __doNotUseOrImplementIt: {
8916
- readonly "no.solibo.oss.sdk.api.gen.models.Resident": unique symbol;
8917
- };
8937
+ export declare abstract class Resident {
8938
+ protected constructor();
8939
+ abstract get accountNumber(): Nullable<string>;
8940
+ abstract get attendances(): Nullable<KtList<Attendance>>;
8941
+ abstract get country(): string;
8942
+ abstract get historicRoles(): Nullable<KtList<Role>>;
8943
+ abstract get id(): bigint;
8944
+ abstract get nationality(): bigint;
8945
+ abstract get note(): Nullable<string>;
8946
+ abstract get parkingSpaces(): Nullable<KtList<ParkingSpaceOwnership>>;
8947
+ abstract get profileUrl(): Nullable<string>;
8948
+ abstract get reservedEmail(): Nullable<boolean>;
8949
+ abstract get reservedSMS(): Nullable<boolean>;
8950
+ abstract get roles(): Nullable<KtList<Role>>;
8951
+ abstract get storageRooms(): Nullable<KtList<StorageRoomOwnership>>;
8952
+ }
8953
+ export declare namespace Resident {
8954
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
8955
+ namespace $metadata$ {
8956
+ const constructor: abstract new () => Resident;
8957
+ }
8918
8958
  }
8919
8959
  export declare class ResidentList {
8920
8960
  constructor(items: KtList<Resident>, meta: Meta, paging: Paging);
@@ -10503,7 +10543,7 @@ export declare namespace SupplierContact {
10503
10543
  const constructor: abstract new () => SupplierContact;
10504
10544
  }
10505
10545
  }
10506
- export declare class SupplierContactParticipant implements Participant {
10546
+ export declare class SupplierContactParticipant extends Participant.$metadata$.constructor {
10507
10547
  constructor(active: boolean, id: bigint, name: string, participantId: bigint, contact?: Nullable<SupplierContact>);
10508
10548
  get active(): boolean;
10509
10549
  get id(): bigint;
@@ -10514,7 +10554,6 @@ export declare class SupplierContactParticipant implements Participant {
10514
10554
  toString(): string;
10515
10555
  hashCode(): number;
10516
10556
  equals(other: Nullable<any>): boolean;
10517
- readonly __doNotUseOrImplementIt: Participant["__doNotUseOrImplementIt"];
10518
10557
  }
10519
10558
  export declare namespace SupplierContactParticipant {
10520
10559
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -10798,14 +10837,13 @@ export declare namespace ThirdPartyInformation {
10798
10837
  const constructor: abstract new () => ThirdPartyInformation;
10799
10838
  }
10800
10839
  }
10801
- export declare class ThirdPartyInformationAltinnError implements ThirdPartyInformationError {
10840
+ export declare class ThirdPartyInformationAltinnError extends ThirdPartyInformationError.$metadata$.constructor {
10802
10841
  constructor(error?: Nullable<string>);
10803
10842
  get error(): Nullable<string>;
10804
10843
  copy(error?: Nullable<string>): ThirdPartyInformationAltinnError;
10805
10844
  toString(): string;
10806
10845
  hashCode(): number;
10807
10846
  equals(other: Nullable<any>): boolean;
10808
- readonly __doNotUseOrImplementIt: ThirdPartyInformationError["__doNotUseOrImplementIt"];
10809
10847
  }
10810
10848
  export declare namespace ThirdPartyInformationAltinnError {
10811
10849
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -10813,7 +10851,7 @@ export declare namespace ThirdPartyInformationAltinnError {
10813
10851
  const constructor: abstract new () => ThirdPartyInformationAltinnError;
10814
10852
  }
10815
10853
  }
10816
- export declare class ThirdPartyInformationEmailError implements ThirdPartyInformationError {
10854
+ export declare class ThirdPartyInformationEmailError extends ThirdPartyInformationError.$metadata$.constructor {
10817
10855
  constructor(eier: string, eierId: bigint, error?: Nullable<string>);
10818
10856
  get eier(): string;
10819
10857
  get eierId(): bigint;
@@ -10822,7 +10860,6 @@ export declare class ThirdPartyInformationEmailError implements ThirdPartyInform
10822
10860
  toString(): string;
10823
10861
  hashCode(): number;
10824
10862
  equals(other: Nullable<any>): boolean;
10825
- readonly __doNotUseOrImplementIt: ThirdPartyInformationError["__doNotUseOrImplementIt"];
10826
10863
  }
10827
10864
  export declare namespace ThirdPartyInformationEmailError {
10828
10865
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -10846,10 +10883,14 @@ export declare namespace ThirdPartyInformationEmailErrors {
10846
10883
  const constructor: abstract new () => ThirdPartyInformationEmailErrors;
10847
10884
  }
10848
10885
  }
10849
- export declare interface ThirdPartyInformationError {
10850
- readonly __doNotUseOrImplementIt: {
10851
- readonly "no.solibo.oss.sdk.api.gen.models.ThirdPartyInformationError": unique symbol;
10852
- };
10886
+ export declare abstract class ThirdPartyInformationError {
10887
+ protected constructor();
10888
+ }
10889
+ export declare namespace ThirdPartyInformationError {
10890
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
10891
+ namespace $metadata$ {
10892
+ const constructor: abstract new () => ThirdPartyInformationError;
10893
+ }
10853
10894
  }
10854
10895
  export declare class ThirdPartyInformationKontakt {
10855
10896
  constructor(email: string, name: string, sms: string, telephone: string);
@@ -11008,7 +11049,7 @@ export declare namespace ThirdPartyInformationOppsummering {
11008
11049
  const constructor: abstract new () => ThirdPartyInformationOppsummering;
11009
11050
  }
11010
11051
  }
11011
- export declare class ThirdPartyInformationPostenError implements ThirdPartyInformationError {
11052
+ export declare class ThirdPartyInformationPostenError extends ThirdPartyInformationError.$metadata$.constructor {
11012
11053
  constructor(eier: string, eierId: bigint, error?: Nullable<string>);
11013
11054
  get eier(): string;
11014
11055
  get eierId(): bigint;
@@ -11017,7 +11058,6 @@ export declare class ThirdPartyInformationPostenError implements ThirdPartyInfor
11017
11058
  toString(): string;
11018
11059
  hashCode(): number;
11019
11060
  equals(other: Nullable<any>): boolean;
11020
- readonly __doNotUseOrImplementIt: ThirdPartyInformationError["__doNotUseOrImplementIt"];
11021
11061
  }
11022
11062
  export declare namespace ThirdPartyInformationPostenError {
11023
11063
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -11041,14 +11081,13 @@ export declare namespace ThirdPartyInformationPostenErrors {
11041
11081
  const constructor: abstract new () => ThirdPartyInformationPostenErrors;
11042
11082
  }
11043
11083
  }
11044
- export declare class ThirdPartyInformationProcessError implements ThirdPartyInformationError {
11084
+ export declare class ThirdPartyInformationProcessError extends ThirdPartyInformationError.$metadata$.constructor {
11045
11085
  constructor(error?: Nullable<string>);
11046
11086
  get error(): Nullable<string>;
11047
11087
  copy(error?: Nullable<string>): ThirdPartyInformationProcessError;
11048
11088
  toString(): string;
11049
11089
  hashCode(): number;
11050
11090
  equals(other: Nullable<any>): boolean;
11051
- readonly __doNotUseOrImplementIt: ThirdPartyInformationError["__doNotUseOrImplementIt"];
11052
11091
  }
11053
11092
  export declare namespace ThirdPartyInformationProcessError {
11054
11093
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -11395,6 +11434,22 @@ export declare namespace TriplewinOverdueInvoiceOverview {
11395
11434
  const constructor: abstract new () => TriplewinOverdueInvoiceOverview;
11396
11435
  }
11397
11436
  }
11437
+ export declare class Typing extends IncomingEventBusMessage.$metadata$.constructor {
11438
+ constructor(companyId: bigint, conversationId: bigint, typing: boolean);
11439
+ get companyId(): bigint;
11440
+ get conversationId(): bigint;
11441
+ get typing(): boolean;
11442
+ copy(companyId?: bigint, conversationId?: bigint, typing?: boolean): Typing;
11443
+ toString(): string;
11444
+ hashCode(): number;
11445
+ equals(other: Nullable<any>): boolean;
11446
+ }
11447
+ export declare namespace Typing {
11448
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
11449
+ namespace $metadata$ {
11450
+ const constructor: abstract new () => Typing;
11451
+ }
11452
+ }
11398
11453
  export declare class UpdateActiveManagement {
11399
11454
  constructor(accounting?: Nullable<KtList<Person>>, administrators?: Nullable<KtList<Person>>, collection?: Nullable<KtList<Person>>, ownership?: Nullable<KtList<Person>>);
11400
11455
  get accounting(): Nullable<KtList<Person>>;
@@ -12013,7 +12068,7 @@ export declare namespace UpdateOrganizationReservationsCommand {
12013
12068
  const constructor: abstract new () => UpdateOrganizationReservationsCommand;
12014
12069
  }
12015
12070
  }
12016
- export declare class UpdateOrganizationResidentCommand implements UpdateResidentCommand {
12071
+ export declare class UpdateOrganizationResidentCommand extends UpdateResidentCommand.$metadata$.constructor {
12017
12072
  constructor(businessAddress: Nullable<BusinessAddress> | undefined, businessContact: Nullable<BusinessContact> | undefined, nationality: Nullable<bigint> | undefined, orgName: string);
12018
12073
  get businessAddress(): Nullable<BusinessAddress>;
12019
12074
  get businessContact(): Nullable<BusinessContact>;
@@ -12023,7 +12078,6 @@ export declare class UpdateOrganizationResidentCommand implements UpdateResident
12023
12078
  toString(): string;
12024
12079
  hashCode(): number;
12025
12080
  equals(other: Nullable<any>): boolean;
12026
- readonly __doNotUseOrImplementIt: UpdateResidentCommand["__doNotUseOrImplementIt"];
12027
12081
  }
12028
12082
  export declare namespace UpdateOrganizationResidentCommand {
12029
12083
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -12096,7 +12150,7 @@ export declare namespace UpdatePersonReservationsCommand {
12096
12150
  const constructor: abstract new () => UpdatePersonReservationsCommand;
12097
12151
  }
12098
12152
  }
12099
- export declare class UpdatePersonResidentCommand implements UpdateResidentCommand {
12153
+ export declare class UpdatePersonResidentCommand extends UpdateResidentCommand.$metadata$.constructor {
12100
12154
  constructor(address: Nullable<AddressSpecifics> | undefined, email: Nullable<string> | undefined, invoicingEmail: Nullable<string> | undefined, mobile: Nullable<string> | undefined, name: Name, nationality?: Nullable<bigint>, passportExpiration?: Nullable<any>/* Nullable<Instant> */, passportNumber?: Nullable<string>, personnummerTwo?: Nullable<string>, roles?: Nullable<KtList<RoleInput>>);
12101
12155
  get address(): Nullable<AddressSpecifics>;
12102
12156
  get email(): Nullable<string>;
@@ -12112,7 +12166,6 @@ export declare class UpdatePersonResidentCommand implements UpdateResidentComman
12112
12166
  toString(): string;
12113
12167
  hashCode(): number;
12114
12168
  equals(other: Nullable<any>): boolean;
12115
- readonly __doNotUseOrImplementIt: UpdateResidentCommand["__doNotUseOrImplementIt"];
12116
12169
  }
12117
12170
  export declare namespace UpdatePersonResidentCommand {
12118
12171
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -12214,10 +12267,14 @@ export declare namespace UpdateReportCommand {
12214
12267
  const constructor: abstract new () => UpdateReportCommand;
12215
12268
  }
12216
12269
  }
12217
- export declare interface UpdateResidentCommand {
12218
- readonly __doNotUseOrImplementIt: {
12219
- readonly "no.solibo.oss.sdk.api.gen.models.UpdateResidentCommand": unique symbol;
12220
- };
12270
+ export declare abstract class UpdateResidentCommand {
12271
+ protected constructor();
12272
+ }
12273
+ export declare namespace UpdateResidentCommand {
12274
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
12275
+ namespace $metadata$ {
12276
+ const constructor: abstract new () => UpdateResidentCommand;
12277
+ }
12221
12278
  }
12222
12279
  export declare class UpdateResolutionCommand {
12223
12280
  constructor(resolution?: Nullable<string>);
@@ -12665,10 +12722,10 @@ export declare namespace WebSocketPayload {
12665
12722
  }
12666
12723
  }
12667
12724
  export declare class WsEvent {
12668
- constructor(payload: WebSocketPayload, userId?: Nullable<bigint>);
12725
+ constructor(payload: WebSocketPayload, userId?: Nullable<string>);
12669
12726
  get payload(): WebSocketPayload;
12670
- get userId(): Nullable<bigint>;
12671
- copy(payload?: WebSocketPayload, userId?: Nullable<bigint>): WsEvent;
12727
+ get userId(): Nullable<string>;
12728
+ copy(payload?: WebSocketPayload, userId?: Nullable<string>): WsEvent;
12672
12729
  toString(): string;
12673
12730
  hashCode(): number;
12674
12731
  equals(other: Nullable<any>): boolean;
@@ -13507,7 +13564,7 @@ export declare class WebSocketApi extends ApiClient.$metadata$.constructor {
13507
13564
  private constructor();
13508
13565
  static create(baseUrl?: string, httpClientEngine?: Nullable<any>/* Nullable<HttpClientEngine> */, httpClientConfig?: Nullable<(p0: any/* HttpClientConfig<UnknownType *> */) => void>, jsonSerializer?: any/* Json */): WebSocketApi;
13509
13566
  static createWithClient(baseUrl: string, httpClient: any/* HttpClient */): WebSocketApi;
13510
- connectToEventBus(): Promise<HttpResponse<void>>;
13567
+ connectToEventBus(): Promise<HttpResponse<WebSocketPayload>>;
13511
13568
  }
13512
13569
  export declare namespace WebSocketApi {
13513
13570
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */