@solibo/home-api 1.9.12 → 1.9.14

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.
@@ -72,8 +72,8 @@ import {
72
72
  _ChannelResult___get_isClosed__impl__mg7kuu1g5u2zmbzbfb4 as _ChannelResult___get_isClosed__impl__mg7kuu,
73
73
  close$default1evna6yun3t5h as close$default,
74
74
  cancel$default1fq6eekptkf7a as cancel$default,
75
- ReceiveChannel24wu5e2tj9lbp as ReceiveChannel,
76
75
  SendChannel38sllbxw662ws as SendChannel,
76
+ ReceiveChannel24wu5e2tj9lbp as ReceiveChannel,
77
77
  } from './kotlinx-coroutines-core.mjs';
78
78
  import {
79
79
  get_isTraceEnabled82xibuu04nxp as get_isTraceEnabled,
@@ -138,7 +138,7 @@ initMetadataForCompanion(Companion_3);
138
138
  initMetadataForClass(ChannelConfig, 'ChannelConfig');
139
139
  initMetadataForClass(ChannelOverflow, 'ChannelOverflow', VOID, Enum);
140
140
  initMetadataForCompanion(Companion_4);
141
- initMetadataForClass(BoundedChannel, 'BoundedChannel', VOID, VOID, [ReceiveChannel, SendChannel], [1, 0]);
141
+ initMetadataForClass(BoundedChannel, 'BoundedChannel', VOID, VOID, [SendChannel, ReceiveChannel], [1, 0]);
142
142
  initMetadataForClass(ChannelOverflowException, 'ChannelOverflowException', VOID, RuntimeException);
143
143
  initMetadataForInterface(WebSocketExtension, 'WebSocketExtension');
144
144
  initMetadataForClass(WebSocketExtensionsConfig, 'WebSocketExtensionsConfig', WebSocketExtensionsConfig);
package/package.json CHANGED
@@ -16,7 +16,7 @@
16
16
  "directory": "sdk/home-api"
17
17
  },
18
18
  "main": "solibo-sdk-sdk-home-api.mjs",
19
- "version": "1.9.12",
19
+ "version": "1.9.14",
20
20
  "name": "@solibo/home-api",
21
21
  "dependencies": {
22
22
  "ws": "8.18.3",
@@ -5050,7 +5050,8 @@ export declare namespace CreateSettlementCustomCostCommand {
5050
5050
  }
5051
5051
  }
5052
5052
  export declare class CreateSettlementProviderConfigurationCommand {
5053
- constructor(active: Nullable<boolean> | undefined, closedAt: Nullable<any>/* Nullable<Instant> */ | undefined, endDate: Nullable<any>/* Nullable<LocalDate> */ | undefined, fixedPricePerInvoicedSection: Nullable<number> | undefined, relevantOrgnrs: Nullable<KtList<string>> | undefined, resolverPrefix: Nullable<string> | undefined, settlementProvider: SettlementProvider, shouldInvoice: Nullable<boolean> | undefined, startDate: any/* LocalDate */, userId?: Nullable<string>);
5053
+ constructor(accountMappings: Nullable<KtList<SettlementProviderAccountMappingCommand>> | undefined, active: Nullable<boolean> | undefined, closedAt: Nullable<any>/* Nullable<Instant> */ | undefined, endDate: Nullable<any>/* Nullable<LocalDate> */ | undefined, fixedPricePerInvoicedSection: Nullable<number> | undefined, relevantOrgnrs: Nullable<KtList<string>> | undefined, resolverPrefix: Nullable<string> | undefined, settlementProvider: SettlementProvider, shouldInvoice: Nullable<boolean> | undefined, startDate: any/* LocalDate */, userId?: Nullable<string>);
5054
+ get accountMappings(): Nullable<KtList<SettlementProviderAccountMappingCommand>>;
5054
5055
  get active(): Nullable<boolean>;
5055
5056
  get closedAt(): Nullable<any>/* Nullable<Instant> */;
5056
5057
  get endDate(): Nullable<any>/* Nullable<LocalDate> */;
@@ -5061,7 +5062,7 @@ export declare class CreateSettlementProviderConfigurationCommand {
5061
5062
  get shouldInvoice(): Nullable<boolean>;
5062
5063
  get startDate(): any/* LocalDate */;
5063
5064
  get userId(): Nullable<string>;
5064
- copy(active?: Nullable<boolean>, closedAt?: Nullable<any>/* Nullable<Instant> */, endDate?: Nullable<any>/* Nullable<LocalDate> */, fixedPricePerInvoicedSection?: Nullable<number>, relevantOrgnrs?: Nullable<KtList<string>>, resolverPrefix?: Nullable<string>, settlementProvider?: SettlementProvider, shouldInvoice?: Nullable<boolean>, startDate?: any/* LocalDate */, userId?: Nullable<string>): CreateSettlementProviderConfigurationCommand;
5065
+ copy(accountMappings?: Nullable<KtList<SettlementProviderAccountMappingCommand>>, active?: Nullable<boolean>, closedAt?: Nullable<any>/* Nullable<Instant> */, endDate?: Nullable<any>/* Nullable<LocalDate> */, fixedPricePerInvoicedSection?: Nullable<number>, relevantOrgnrs?: Nullable<KtList<string>>, resolverPrefix?: Nullable<string>, settlementProvider?: SettlementProvider, shouldInvoice?: Nullable<boolean>, startDate?: any/* LocalDate */, userId?: Nullable<string>): CreateSettlementProviderConfigurationCommand;
5065
5066
  toString(): string;
5066
5067
  hashCode(): number;
5067
5068
  equals(other: Nullable<any>): boolean;
@@ -16179,6 +16180,97 @@ export declare namespace Settlement {
16179
16180
  const constructor: abstract new () => Settlement;
16180
16181
  }
16181
16182
  }
16183
+ export declare abstract class SettlementCostKind {
16184
+ private constructor();
16185
+ static get HEAT(): SettlementCostKind & {
16186
+ get name(): "HEAT";
16187
+ get ordinal(): 0;
16188
+ };
16189
+ static get COLD_WATER(): SettlementCostKind & {
16190
+ get name(): "COLD_WATER";
16191
+ get ordinal(): 1;
16192
+ };
16193
+ static get WARM_WATER(): SettlementCostKind & {
16194
+ get name(): "WARM_WATER";
16195
+ get ordinal(): 2;
16196
+ };
16197
+ static get ELECTRIC_CAR_CHARGER(): SettlementCostKind & {
16198
+ get name(): "ELECTRIC_CAR_CHARGER";
16199
+ get ordinal(): 3;
16200
+ };
16201
+ static get ELECTRICITY(): SettlementCostKind & {
16202
+ get name(): "ELECTRICITY";
16203
+ get ordinal(): 4;
16204
+ };
16205
+ static get ENERGY_SERVICE(): SettlementCostKind & {
16206
+ get name(): "ENERGY_SERVICE";
16207
+ get ordinal(): 5;
16208
+ };
16209
+ static get OWNER_CHANGE(): SettlementCostKind & {
16210
+ get name(): "OWNER_CHANGE";
16211
+ get ordinal(): 6;
16212
+ };
16213
+ static get OTHER(): SettlementCostKind & {
16214
+ get name(): "OTHER";
16215
+ get ordinal(): 7;
16216
+ };
16217
+ static get Heat(): SettlementCostKind & {
16218
+ get name(): "HEAT";
16219
+ get ordinal(): 0;
16220
+ };
16221
+ static get ColdWater(): SettlementCostKind & {
16222
+ get name(): "COLD_WATER";
16223
+ get ordinal(): 1;
16224
+ };
16225
+ static get WarmWater(): SettlementCostKind & {
16226
+ get name(): "WARM_WATER";
16227
+ get ordinal(): 2;
16228
+ };
16229
+ static get ElectricCarCharger(): SettlementCostKind & {
16230
+ get name(): "ELECTRIC_CAR_CHARGER";
16231
+ get ordinal(): 3;
16232
+ };
16233
+ static get Electricity(): SettlementCostKind & {
16234
+ get name(): "ELECTRICITY";
16235
+ get ordinal(): 4;
16236
+ };
16237
+ static get EnergyService(): SettlementCostKind & {
16238
+ get name(): "ENERGY_SERVICE";
16239
+ get ordinal(): 5;
16240
+ };
16241
+ static get OwnerChange(): SettlementCostKind & {
16242
+ get name(): "OWNER_CHANGE";
16243
+ get ordinal(): 6;
16244
+ };
16245
+ static get Other(): SettlementCostKind & {
16246
+ get name(): "OTHER";
16247
+ get ordinal(): 7;
16248
+ };
16249
+ static values(): [typeof SettlementCostKind.HEAT, typeof SettlementCostKind.COLD_WATER, typeof SettlementCostKind.WARM_WATER, typeof SettlementCostKind.ELECTRIC_CAR_CHARGER, typeof SettlementCostKind.ELECTRICITY, typeof SettlementCostKind.ENERGY_SERVICE, typeof SettlementCostKind.OWNER_CHANGE, typeof SettlementCostKind.OTHER];
16250
+ static valueOf(value: string): SettlementCostKind;
16251
+ get name(): "HEAT" | "COLD_WATER" | "WARM_WATER" | "ELECTRIC_CAR_CHARGER" | "ELECTRICITY" | "ENERGY_SERVICE" | "OWNER_CHANGE" | "OTHER";
16252
+ get ordinal(): 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
16253
+ get value(): string;
16254
+ toString(): string;
16255
+ }
16256
+ export declare namespace SettlementCostKind {
16257
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
16258
+ namespace $metadata$ {
16259
+ const constructor: abstract new () => SettlementCostKind;
16260
+ }
16261
+ abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
16262
+ private constructor();
16263
+ }
16264
+ namespace Companion {
16265
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
16266
+ namespace $metadata$ {
16267
+ abstract class constructor /* implements SerializerFactory */ {
16268
+ fromValue(value: string): Nullable<SettlementCostKind>;
16269
+ private constructor();
16270
+ }
16271
+ }
16272
+ }
16273
+ }
16182
16274
  export declare class SettlementCustomCost {
16183
16275
  constructor(amount: Nullable<number> | undefined, createdAt: any/* Instant */, createdBy: Nullable<bigint> | undefined, createdByClientUserId: Nullable<bigint> | undefined, description: Nullable<string> | undefined, documentIds: Nullable<KtList<bigint>> | undefined, id: bigint, settlementId: bigint, settlementType: SettlementType, unitPrice?: Nullable<number>, units?: Nullable<number>, updatedAt?: Nullable<any>/* Nullable<Instant> */, updatedBy?: Nullable<bigint>, updatedByClientUserId?: Nullable<bigint>);
16184
16276
  get amount(): Nullable<number>;
@@ -16285,8 +16377,39 @@ export declare namespace SettlementProvider {
16285
16377
  }
16286
16378
  }
16287
16379
  }
16380
+ export declare class SettlementProviderAccountMapping {
16381
+ constructor(account: string, costKind: SettlementCostKind);
16382
+ get account(): string;
16383
+ get costKind(): SettlementCostKind;
16384
+ copy(account?: string, costKind?: SettlementCostKind): SettlementProviderAccountMapping;
16385
+ toString(): string;
16386
+ hashCode(): number;
16387
+ equals(other: Nullable<any>): boolean;
16388
+ }
16389
+ export declare namespace SettlementProviderAccountMapping {
16390
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
16391
+ namespace $metadata$ {
16392
+ const constructor: abstract new () => SettlementProviderAccountMapping;
16393
+ }
16394
+ }
16395
+ export declare class SettlementProviderAccountMappingCommand {
16396
+ constructor(account: string, costKind: SettlementCostKind);
16397
+ get account(): string;
16398
+ get costKind(): SettlementCostKind;
16399
+ copy(account?: string, costKind?: SettlementCostKind): SettlementProviderAccountMappingCommand;
16400
+ toString(): string;
16401
+ hashCode(): number;
16402
+ equals(other: Nullable<any>): boolean;
16403
+ }
16404
+ export declare namespace SettlementProviderAccountMappingCommand {
16405
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
16406
+ namespace $metadata$ {
16407
+ const constructor: abstract new () => SettlementProviderAccountMappingCommand;
16408
+ }
16409
+ }
16288
16410
  export declare class SettlementProviderConfiguration {
16289
- constructor(active: boolean, closedAt: Nullable<any>/* Nullable<Instant> */ | undefined, companyId: bigint, endDate: Nullable<any>/* Nullable<LocalDate> */ | undefined, fixedPricePerInvoicedSection: Nullable<number> | undefined, id: bigint, relevantOrgnrs: Nullable<KtList<string>> | undefined, resolverPrefix: Nullable<string> | undefined, sectionOnboardings: Nullable<KtList<SectionOnboarding>> | undefined, settlementProvider: SettlementProvider, shouldInvoice: boolean, startDate: any/* LocalDate */, userId?: Nullable<string>);
16411
+ constructor(accountMappings: Nullable<KtList<SettlementProviderAccountMapping>> | undefined, active: boolean, closedAt: Nullable<any>/* Nullable<Instant> */ | undefined, companyId: bigint, endDate: Nullable<any>/* Nullable<LocalDate> */ | undefined, fixedPricePerInvoicedSection: Nullable<number> | undefined, id: bigint, relevantOrgnrs: Nullable<KtList<string>> | undefined, resolverPrefix: Nullable<string> | undefined, sectionOnboardings: Nullable<KtList<SectionOnboarding>> | undefined, settlementProvider: SettlementProvider, shouldInvoice: boolean, startDate: any/* LocalDate */, userId?: Nullable<string>);
16412
+ get accountMappings(): Nullable<KtList<SettlementProviderAccountMapping>>;
16290
16413
  get active(): boolean;
16291
16414
  get closedAt(): Nullable<any>/* Nullable<Instant> */;
16292
16415
  get companyId(): bigint;
@@ -16300,7 +16423,7 @@ export declare class SettlementProviderConfiguration {
16300
16423
  get shouldInvoice(): boolean;
16301
16424
  get startDate(): any/* LocalDate */;
16302
16425
  get userId(): Nullable<string>;
16303
- copy(active?: boolean, closedAt?: Nullable<any>/* Nullable<Instant> */, companyId?: bigint, endDate?: Nullable<any>/* Nullable<LocalDate> */, fixedPricePerInvoicedSection?: Nullable<number>, id?: bigint, relevantOrgnrs?: Nullable<KtList<string>>, resolverPrefix?: Nullable<string>, sectionOnboardings?: Nullable<KtList<SectionOnboarding>>, settlementProvider?: SettlementProvider, shouldInvoice?: boolean, startDate?: any/* LocalDate */, userId?: Nullable<string>): SettlementProviderConfiguration;
16426
+ copy(accountMappings?: Nullable<KtList<SettlementProviderAccountMapping>>, active?: boolean, closedAt?: Nullable<any>/* Nullable<Instant> */, companyId?: bigint, endDate?: Nullable<any>/* Nullable<LocalDate> */, fixedPricePerInvoicedSection?: Nullable<number>, id?: bigint, relevantOrgnrs?: Nullable<KtList<string>>, resolverPrefix?: Nullable<string>, sectionOnboardings?: Nullable<KtList<SectionOnboarding>>, settlementProvider?: SettlementProvider, shouldInvoice?: boolean, startDate?: any/* LocalDate */, userId?: Nullable<string>): SettlementProviderConfiguration;
16304
16427
  toString(): string;
16305
16428
  hashCode(): number;
16306
16429
  equals(other: Nullable<any>): boolean;
@@ -19020,7 +19143,8 @@ export declare namespace UpdateSettlementCustomCostCommand {
19020
19143
  }
19021
19144
  }
19022
19145
  export declare class UpdateSettlementProviderConfigurationCommand {
19023
- constructor(active: Nullable<boolean> | undefined, closedAt: Nullable<any>/* Nullable<Instant> */ | undefined, endDate: Nullable<any>/* Nullable<LocalDate> */ | undefined, fixedPricePerInvoicedSection: Nullable<number> | undefined, relevantOrgnrs: Nullable<KtList<string>> | undefined, resolverPrefix: Nullable<string> | undefined, shouldInvoice: Nullable<boolean> | undefined, startDate: any/* LocalDate */, userId?: Nullable<string>);
19146
+ constructor(accountMappings: Nullable<KtList<SettlementProviderAccountMappingCommand>> | undefined, active: Nullable<boolean> | undefined, closedAt: Nullable<any>/* Nullable<Instant> */ | undefined, endDate: Nullable<any>/* Nullable<LocalDate> */ | undefined, fixedPricePerInvoicedSection: Nullable<number> | undefined, relevantOrgnrs: Nullable<KtList<string>> | undefined, resolverPrefix: Nullable<string> | undefined, shouldInvoice: Nullable<boolean> | undefined, startDate: any/* LocalDate */, userId?: Nullable<string>);
19147
+ get accountMappings(): Nullable<KtList<SettlementProviderAccountMappingCommand>>;
19024
19148
  get active(): Nullable<boolean>;
19025
19149
  get closedAt(): Nullable<any>/* Nullable<Instant> */;
19026
19150
  get endDate(): Nullable<any>/* Nullable<LocalDate> */;
@@ -19030,7 +19154,7 @@ export declare class UpdateSettlementProviderConfigurationCommand {
19030
19154
  get shouldInvoice(): Nullable<boolean>;
19031
19155
  get startDate(): any/* LocalDate */;
19032
19156
  get userId(): Nullable<string>;
19033
- copy(active?: Nullable<boolean>, closedAt?: Nullable<any>/* Nullable<Instant> */, endDate?: Nullable<any>/* Nullable<LocalDate> */, fixedPricePerInvoicedSection?: Nullable<number>, relevantOrgnrs?: Nullable<KtList<string>>, resolverPrefix?: Nullable<string>, shouldInvoice?: Nullable<boolean>, startDate?: any/* LocalDate */, userId?: Nullable<string>): UpdateSettlementProviderConfigurationCommand;
19157
+ copy(accountMappings?: Nullable<KtList<SettlementProviderAccountMappingCommand>>, active?: Nullable<boolean>, closedAt?: Nullable<any>/* Nullable<Instant> */, endDate?: Nullable<any>/* Nullable<LocalDate> */, fixedPricePerInvoicedSection?: Nullable<number>, relevantOrgnrs?: Nullable<KtList<string>>, resolverPrefix?: Nullable<string>, shouldInvoice?: Nullable<boolean>, startDate?: any/* LocalDate */, userId?: Nullable<string>): UpdateSettlementProviderConfigurationCommand;
19034
19158
  toString(): string;
19035
19159
  hashCode(): number;
19036
19160
  equals(other: Nullable<any>): boolean;