@solibo/home-api 1.0.35 → 1.0.36

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.
@@ -274,7 +274,7 @@
274
274
  initMetadataForClass(Symbol, 'Symbol');
275
275
  initMetadataForInterface(SelectInstance, 'SelectInstance');
276
276
  initMetadataForClass(ClauseData, 'ClauseData', VOID, VOID, VOID, [1]);
277
- initMetadataForClass(SelectImplementation, 'SelectImplementation', VOID, VOID, [CancelHandler, Waiter, SelectInstance], [0, 2]);
277
+ initMetadataForClass(SelectImplementation, 'SelectImplementation', VOID, VOID, [CancelHandler, SelectInstance, Waiter], [0, 2]);
278
278
  initMetadataForClass(TrySelectDetailedResult, 'TrySelectDetailedResult', VOID, Enum);
279
279
  initMetadataForClass(SetTimeoutBasedDispatcher, 'SetTimeoutBasedDispatcher', VOID, CoroutineDispatcher, [CoroutineDispatcher, Delay], [1]);
280
280
  initMetadataForObject(NodeDispatcher, 'NodeDispatcher', VOID, SetTimeoutBasedDispatcher, VOID, [1]);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "main": "solibo-sdk-sdk-home-api.js",
3
3
  "types": "solibo-sdk-sdk-home-api.d.ts",
4
- "version": "1.0.35",
4
+ "version": "1.0.36",
5
5
  "name": "@solibo/home-api",
6
6
  "dependencies": {
7
7
  "ws": "8.18.3",
@@ -4538,6 +4538,42 @@ export declare namespace no.solibo.oss.sdk.api.gen.models {
4538
4538
  }
4539
4539
  }
4540
4540
  }
4541
+ export declare namespace no.solibo.oss.sdk.api.gen.models {
4542
+ class GlobalPreview {
4543
+ constructor(companyId: bigint, previews: kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.GlobalPreviewReceiver>);
4544
+ get companyId(): bigint;
4545
+ get previews(): kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.GlobalPreviewReceiver>;
4546
+ copy(companyId?: bigint, previews?: kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.GlobalPreviewReceiver>): no.solibo.oss.sdk.api.gen.models.GlobalPreview;
4547
+ toString(): string;
4548
+ hashCode(): number;
4549
+ equals(other: Nullable<any>): boolean;
4550
+ }
4551
+ namespace GlobalPreview {
4552
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
4553
+ namespace $metadata$ {
4554
+ const constructor: abstract new () => GlobalPreview;
4555
+ }
4556
+ }
4557
+ }
4558
+ export declare namespace no.solibo.oss.sdk.api.gen.models {
4559
+ class GlobalPreviewReceiver {
4560
+ constructor(dueDate: any/* kotlin.time.Instant */, invoiceDate: any/* kotlin.time.Instant */, payerId: bigint, payerName: string);
4561
+ get dueDate(): any/* kotlin.time.Instant */;
4562
+ get invoiceDate(): any/* kotlin.time.Instant */;
4563
+ get payerId(): bigint;
4564
+ get payerName(): string;
4565
+ copy(dueDate?: any/* kotlin.time.Instant */, invoiceDate?: any/* kotlin.time.Instant */, payerId?: bigint, payerName?: string): no.solibo.oss.sdk.api.gen.models.GlobalPreviewReceiver;
4566
+ toString(): string;
4567
+ hashCode(): number;
4568
+ equals(other: Nullable<any>): boolean;
4569
+ }
4570
+ namespace GlobalPreviewReceiver {
4571
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
4572
+ namespace $metadata$ {
4573
+ const constructor: abstract new () => GlobalPreviewReceiver;
4574
+ }
4575
+ }
4576
+ }
4541
4577
  export declare namespace no.solibo.oss.sdk.api.gen.models {
4542
4578
  class HmsSettings {
4543
4579
  constructor(routineDraftGroups: kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.RoutineGroup>);
@@ -7875,16 +7911,18 @@ export declare namespace no.solibo.oss.sdk.api.gen.models {
7875
7911
  }
7876
7912
  export declare namespace no.solibo.oss.sdk.api.gen.models {
7877
7913
  class OwnerChangeSectionCommand {
7878
- constructor(at: any/* kotlin.time.Instant */, inIds?: Nullable<kotlin.collections.KtList<bigint>>, inNew?: Nullable<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.CreatePersonOwner>>, inNewOrgs?: Nullable<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.CreateOrganizationOwner>>, inOrgs?: Nullable<kotlin.collections.KtList<string>>, outIds?: Nullable<kotlin.collections.KtList<bigint>>, outOrgs?: Nullable<kotlin.collections.KtList<string>>, removeContactPersons?: Nullable<boolean>);
7914
+ constructor(amount: Nullable<bigint> | undefined, at: any/* kotlin.time.Instant */, inIds?: Nullable<kotlin.collections.KtList<bigint>>, inNew?: Nullable<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.CreatePersonOwner>>, inNewOrgs?: Nullable<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.CreateOrganizationOwner>>, inOrgs?: Nullable<kotlin.collections.KtList<string>>, note?: Nullable<string>, outIds?: Nullable<kotlin.collections.KtList<bigint>>, outOrgs?: Nullable<kotlin.collections.KtList<string>>, removeContactPersons?: Nullable<boolean>);
7915
+ get amount(): Nullable<bigint>;
7879
7916
  get at(): any/* kotlin.time.Instant */;
7880
7917
  get inIds(): Nullable<kotlin.collections.KtList<bigint>>;
7881
7918
  get inNew(): Nullable<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.CreatePersonOwner>>;
7882
7919
  get inNewOrgs(): Nullable<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.CreateOrganizationOwner>>;
7883
7920
  get inOrgs(): Nullable<kotlin.collections.KtList<string>>;
7921
+ get note(): Nullable<string>;
7884
7922
  get outIds(): Nullable<kotlin.collections.KtList<bigint>>;
7885
7923
  get outOrgs(): Nullable<kotlin.collections.KtList<string>>;
7886
7924
  get removeContactPersons(): Nullable<boolean>;
7887
- copy(at?: any/* kotlin.time.Instant */, inIds?: Nullable<kotlin.collections.KtList<bigint>>, inNew?: Nullable<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.CreatePersonOwner>>, inNewOrgs?: Nullable<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.CreateOrganizationOwner>>, inOrgs?: Nullable<kotlin.collections.KtList<string>>, outIds?: Nullable<kotlin.collections.KtList<bigint>>, outOrgs?: Nullable<kotlin.collections.KtList<string>>, removeContactPersons?: Nullable<boolean>): no.solibo.oss.sdk.api.gen.models.OwnerChangeSectionCommand;
7925
+ copy(amount?: Nullable<bigint>, at?: any/* kotlin.time.Instant */, inIds?: Nullable<kotlin.collections.KtList<bigint>>, inNew?: Nullable<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.CreatePersonOwner>>, inNewOrgs?: Nullable<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.CreateOrganizationOwner>>, inOrgs?: Nullable<kotlin.collections.KtList<string>>, note?: Nullable<string>, outIds?: Nullable<kotlin.collections.KtList<bigint>>, outOrgs?: Nullable<kotlin.collections.KtList<string>>, removeContactPersons?: Nullable<boolean>): no.solibo.oss.sdk.api.gen.models.OwnerChangeSectionCommand;
7888
7926
  toString(): string;
7889
7927
  hashCode(): number;
7890
7928
  equals(other: Nullable<any>): boolean;
@@ -7896,6 +7934,50 @@ export declare namespace no.solibo.oss.sdk.api.gen.models {
7896
7934
  }
7897
7935
  }
7898
7936
  }
7937
+ export declare namespace no.solibo.oss.sdk.api.gen.models {
7938
+ class OwnershipChange {
7939
+ constructor(amount: Nullable<bigint> | undefined, changeAt: any/* kotlin.time.Instant */, id: bigint, note: Nullable<string> | undefined, roles: kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.OwnershipChangeRole>);
7940
+ get amount(): Nullable<bigint>;
7941
+ get changeAt(): any/* kotlin.time.Instant */;
7942
+ get id(): bigint;
7943
+ get note(): Nullable<string>;
7944
+ get roles(): kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.OwnershipChangeRole>;
7945
+ copy(amount?: Nullable<bigint>, changeAt?: any/* kotlin.time.Instant */, id?: bigint, note?: Nullable<string>, roles?: kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.OwnershipChangeRole>): no.solibo.oss.sdk.api.gen.models.OwnershipChange;
7946
+ toString(): string;
7947
+ hashCode(): number;
7948
+ equals(other: Nullable<any>): boolean;
7949
+ }
7950
+ namespace OwnershipChange {
7951
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
7952
+ namespace $metadata$ {
7953
+ const constructor: abstract new () => OwnershipChange;
7954
+ }
7955
+ }
7956
+ }
7957
+ export declare namespace no.solibo.oss.sdk.api.gen.models {
7958
+ class OwnershipChangeRole {
7959
+ constructor(organizationId: Nullable<bigint> | undefined, personId: Nullable<bigint> | undefined, residentId: bigint, residentName: string, residentType: no.solibo.oss.sdk.api.gen.models.ResidentType, roleId: bigint, roleType: Nullable<string> | undefined, sectionId: Nullable<bigint> | undefined, transitionType: string);
7960
+ get organizationId(): Nullable<bigint>;
7961
+ get personId(): Nullable<bigint>;
7962
+ get residentId(): bigint;
7963
+ get residentName(): string;
7964
+ get residentType(): no.solibo.oss.sdk.api.gen.models.ResidentType;
7965
+ get roleId(): bigint;
7966
+ get roleType(): Nullable<string>;
7967
+ get sectionId(): Nullable<bigint>;
7968
+ get transitionType(): string;
7969
+ copy(organizationId?: Nullable<bigint>, personId?: Nullable<bigint>, residentId?: bigint, residentName?: string, residentType?: no.solibo.oss.sdk.api.gen.models.ResidentType, roleId?: bigint, roleType?: Nullable<string>, sectionId?: Nullable<bigint>, transitionType?: string): no.solibo.oss.sdk.api.gen.models.OwnershipChangeRole;
7970
+ toString(): string;
7971
+ hashCode(): number;
7972
+ equals(other: Nullable<any>): boolean;
7973
+ }
7974
+ namespace OwnershipChangeRole {
7975
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
7976
+ namespace $metadata$ {
7977
+ const constructor: abstract new () => OwnershipChangeRole;
7978
+ }
7979
+ }
7980
+ }
7899
7981
  export declare namespace no.solibo.oss.sdk.api.gen.models {
7900
7982
  class Paging {
7901
7983
  constructor(next?: Nullable<string>, previous?: Nullable<string>, self?: Nullable<string>);
@@ -13071,6 +13153,7 @@ export declare namespace no.solibo.oss.sdk.api.gen.client.apis {
13071
13153
  indexCompanySectionTags(companyId: bigint): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.SectionTag>> */>;
13072
13154
  indexCompanyTypes(): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.CompanySubType>> */>;
13073
13155
  indexImportDraft(): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.DraftOverview>> */>;
13156
+ indexNewlyManagedCompanies(): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.Company>> */>;
13074
13157
  indexSectionTagsBySection(companyId: bigint): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<kotlin.collections.KtMap<string, kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.SectionTagTagsBySectionMapValue>>> */>;
13075
13158
  massUpdateRoles(companyId: bigint, massEditRolesCommand: no.solibo.oss.sdk.api.gen.models.MassEditRolesCommand): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<void> */>;
13076
13159
  resetCompany(companyId: bigint): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<void> */>;
@@ -13346,6 +13429,7 @@ export declare namespace no.solibo.oss.sdk.api.gen.client.apis {
13346
13429
  indexInvoicingSectionInvoiceRecipients(companyId: bigint, sectionId: bigint): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.InvoiceRecipient>> */>;
13347
13430
  indexInvoicingSectionInvoices(companyId: bigint, sectionId: bigint): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.Invoice>> */>;
13348
13431
  indexInvoicingSectionPlans(companyId: bigint, sectionId: bigint, active?: Nullable<boolean>): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.InvoicePlan>> */>;
13432
+ indexUpcomingInvoicing(): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.GlobalPreview>> */>;
13349
13433
  lossInvoice(companyId: bigint, customerType: string, customerId: bigint, invoiceId: string): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<void> */>;
13350
13434
  putCompanyInvoiceClose(companyId: bigint, invoiceId: string, closeInvoiceCommand: no.solibo.oss.sdk.api.gen.models.CloseInvoiceCommand): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<void> */>;
13351
13435
  putCompanyInvoiceDisableOverdueNotices(companyId: bigint, invoiceId: string): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<void> */>;
@@ -13663,11 +13747,13 @@ export declare namespace no.solibo.oss.sdk.api.gen.client.apis {
13663
13747
  deleteSectionStatus(companyId: bigint, sectionId: bigint, statusType?: Nullable<no.solibo.oss.sdk.api.gen.models.SectionState>): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<void> */>;
13664
13748
  deleteTagOnSection(companyId: bigint, sectionId: bigint): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<void> */>;
13665
13749
  eierskifteSection(companyId: bigint, sectionId: bigint, ownerChangeSectionCommand: no.solibo.oss.sdk.api.gen.models.OwnerChangeSectionCommand): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<void> */>;
13750
+ indexCompanyOwnershipChanges(companyId: bigint): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.OwnershipChange>> */>;
13751
+ indexOwnershipChanges(): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.OwnershipChange>> */>;
13666
13752
  indexSection(companyId: bigint, status?: Nullable<no.solibo.oss.sdk.api.gen.models.SectionState>, autoPaginate?: Nullable<boolean>, query?: Nullable<string>, pageToken?: Nullable<string>): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<no.solibo.oss.sdk.api.gen.models.SectionList> */>;
13667
13753
  indexSectionFractions(companyId: bigint, fractionType?: Nullable<no.solibo.oss.sdk.api.gen.models.FractionType>, sectionIds?: Nullable<kotlin.collections.KtList<bigint>>, validFrom?: Nullable<bigint>): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<kotlin.collections.KtMap<string, kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.SectionFractionSectionFractionMapValue>>> */>;
13668
13754
  indexSectionStatus(companyId: bigint): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.CompanySectionStatusOverview>> */>;
13669
13755
  indexSectionTenants(companyId: bigint, sectionId: bigint): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<no.solibo.oss.sdk.api.gen.models.ResidentRoleHistory> */>;
13670
- indexSections(query: string, pageToken?: Nullable<string>): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<no.solibo.oss.sdk.api.gen.models.SectionList> */>;
13756
+ indexSections(query?: Nullable<string>, pageToken?: Nullable<string>): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<no.solibo.oss.sdk.api.gen.models.SectionList> */>;
13671
13757
  indexTagsOnSection(companyId: bigint, sectionId: bigint): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.SectionTag>> */>;
13672
13758
  listSectionAttendanceas(companyId: bigint, sectionId: bigint, at?: Nullable<bigint>): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<kotlin.collections.KtList<no.solibo.oss.sdk.api.gen.models.Attendance>> */>;
13673
13759
  massDeleteSectionFractions(companyId: bigint, fractionType?: Nullable<no.solibo.oss.sdk.api.gen.models.FractionType>, sectionIds?: Nullable<kotlin.collections.KtList<bigint>>, validFrom?: Nullable<bigint>): Promise<any/* no.solibo.oss.sdk.api.gen.infrastructure.HttpResponse<void> */>;