@solibo/solibo-sdk 1.7.0 → 1.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/KmLogging-logging.mjs +98 -98
- package/Kotlin-DateTime-library-kotlinx-datetime.mjs +1 -1
- package/KotlinBigInteger-bignum.mjs +1114 -1114
- package/MultiplatformSettings-multiplatform-settings-test.mjs +18 -18
- package/MultiplatformSettings-multiplatform-settings.mjs +16 -16
- package/Stately-stately-concurrency.mjs +3 -3
- package/bitops-library-bits.mjs +33 -33
- package/bitops-library-endian.mjs +3 -3
- package/core-library-digest.mjs +29 -29
- package/cryptography-kotlin-cryptography-bigint.mjs +27 -27
- package/cryptography-kotlin-cryptography-core.mjs +47 -47
- package/cryptography-kotlin-cryptography-provider-base.mjs +4 -4
- package/cryptography-kotlin-cryptography-provider-webcrypto.mjs +135 -135
- package/cryptography-kotlin-cryptography-random.mjs +15 -15
- package/cryptography-kotlin-cryptography-serialization-asn1-modules.mjs +112 -112
- package/cryptography-kotlin-cryptography-serialization-asn1.mjs +237 -237
- package/cryptography-kotlin-cryptography-serialization-pem.mjs +15 -15
- package/hash-library-md.mjs +30 -30
- package/index.mjs +4 -0
- package/kotlin-kotlin-stdlib.mjs +5 -5
- package/kotlin-kotlin-stdlib.mjs.map +1 -1
- package/kotlinx-coroutines-core.mjs +8 -8
- package/kotlinx-coroutines-core.mjs.map +1 -1
- package/ktor-ktor-client-auth.mjs +224 -224
- package/ktor-ktor-client-encoding.mjs +75 -75
- package/ktor-ktor-client-logging.mjs +520 -520
- package/ktor-ktor-client-mock.mjs +39 -39
- package/ktor-ktor-http.mjs +8 -3
- package/ktor-ktor-http.mjs.map +1 -1
- package/ktor-ktor-websockets.mjs +2 -2
- package/package.json +1 -1
- package/solibo-sdk-sdk-home-api.mjs +43257 -39056
- package/solibo-sdk-sdk-home-api.mjs.map +1 -1
- package/solibo-sdk-sdk.d.mts +377 -6
- package/solibo-sdk-sdk.mjs +4076 -3958
- package/solibo-sdk-sdk.mjs.map +1 -1
package/solibo-sdk-sdk.d.mts
CHANGED
|
@@ -366,6 +366,38 @@ export declare namespace ApproveSupplierInvoiceCommand {
|
|
|
366
366
|
const constructor: abstract new () => ApproveSupplierInvoiceCommand;
|
|
367
367
|
}
|
|
368
368
|
}
|
|
369
|
+
export interface AssignParkingSpaceCommandProps {
|
|
370
|
+
validFrom?: SoliboInstant /* Instant */ | null | undefined;
|
|
371
|
+
validTo?: SoliboInstant /* Instant */ | null | undefined;
|
|
372
|
+
}
|
|
373
|
+
export declare class AssignParkingSpaceCommand {
|
|
374
|
+
constructor(props: AssignParkingSpaceCommandProps);
|
|
375
|
+
constructor(validFrom?: SoliboInstant /* Instant */ | null | undefined, validTo?: SoliboInstant /* Instant */ | null | undefined);
|
|
376
|
+
get validFrom(): SoliboInstant /* Instant */ | null | undefined;
|
|
377
|
+
get validTo(): SoliboInstant /* Instant */ | null | undefined;
|
|
378
|
+
}
|
|
379
|
+
export declare namespace AssignParkingSpaceCommand {
|
|
380
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
381
|
+
namespace $metadata$ {
|
|
382
|
+
const constructor: abstract new () => AssignParkingSpaceCommand;
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
export interface AssignStorageRoomCommandProps {
|
|
386
|
+
validFrom?: SoliboInstant /* Instant */ | null | undefined;
|
|
387
|
+
validTo?: SoliboInstant /* Instant */ | null | undefined;
|
|
388
|
+
}
|
|
389
|
+
export declare class AssignStorageRoomCommand {
|
|
390
|
+
constructor(props: AssignStorageRoomCommandProps);
|
|
391
|
+
constructor(validFrom?: SoliboInstant /* Instant */ | null | undefined, validTo?: SoliboInstant /* Instant */ | null | undefined);
|
|
392
|
+
get validFrom(): SoliboInstant /* Instant */ | null | undefined;
|
|
393
|
+
get validTo(): SoliboInstant /* Instant */ | null | undefined;
|
|
394
|
+
}
|
|
395
|
+
export declare namespace AssignStorageRoomCommand {
|
|
396
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
397
|
+
namespace $metadata$ {
|
|
398
|
+
const constructor: abstract new () => AssignStorageRoomCommand;
|
|
399
|
+
}
|
|
400
|
+
}
|
|
369
401
|
export interface AssociateTotpMfaCommandProps {
|
|
370
402
|
clientId: string;
|
|
371
403
|
session?: string | null | undefined;
|
|
@@ -11905,6 +11937,106 @@ export declare namespace ParkingSpace {
|
|
|
11905
11937
|
const constructor: abstract new () => ParkingSpace;
|
|
11906
11938
|
}
|
|
11907
11939
|
}
|
|
11940
|
+
export interface ParkingSpaceAllocationItemProps {
|
|
11941
|
+
charger?: boolean | null | undefined;
|
|
11942
|
+
currentOwner?: ParkingSpaceVacancyAssignmentProps | null | undefined;
|
|
11943
|
+
id: bigint;
|
|
11944
|
+
identifier: string;
|
|
11945
|
+
note?: string | null | undefined;
|
|
11946
|
+
type?: ParkingSpaceTypeProps | null | undefined;
|
|
11947
|
+
}
|
|
11948
|
+
export declare class ParkingSpaceAllocationItem {
|
|
11949
|
+
constructor(props: ParkingSpaceAllocationItemProps);
|
|
11950
|
+
constructor(charger: boolean | null | undefined, currentOwner: ParkingSpaceVacancyAssignment | null | undefined, id: bigint, identifier: string, note?: string | null | undefined, type?: ParkingSpaceType | null | undefined);
|
|
11951
|
+
get charger(): boolean | null | undefined;
|
|
11952
|
+
get currentOwner(): ParkingSpaceVacancyAssignment | null | undefined;
|
|
11953
|
+
get id(): bigint;
|
|
11954
|
+
get identifier(): string;
|
|
11955
|
+
get note(): string | null | undefined;
|
|
11956
|
+
get type(): ParkingSpaceType | null | undefined;
|
|
11957
|
+
}
|
|
11958
|
+
export declare namespace ParkingSpaceAllocationItem {
|
|
11959
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
11960
|
+
namespace $metadata$ {
|
|
11961
|
+
const constructor: abstract new () => ParkingSpaceAllocationItem;
|
|
11962
|
+
}
|
|
11963
|
+
}
|
|
11964
|
+
export interface ParkingSpaceAllocationOverviewProps {
|
|
11965
|
+
assigned: bigint;
|
|
11966
|
+
byOwnerType?: Map<string, bigint | null | undefined>;
|
|
11967
|
+
companyId: bigint;
|
|
11968
|
+
items: ParkingSpaceAllocationItemProps[];
|
|
11969
|
+
searchDate: SoliboInstant /* Instant */;
|
|
11970
|
+
total: bigint;
|
|
11971
|
+
unassigned: bigint;
|
|
11972
|
+
}
|
|
11973
|
+
export declare class ParkingSpaceAllocationOverview {
|
|
11974
|
+
constructor(props: ParkingSpaceAllocationOverviewProps);
|
|
11975
|
+
constructor(assigned: bigint, byOwnerType: Map<string, bigint | null | undefined>, companyId: bigint, items: ParkingSpaceAllocationItem[], searchDate: SoliboInstant /* Instant */, total: bigint, unassigned: bigint);
|
|
11976
|
+
get assigned(): bigint;
|
|
11977
|
+
get byOwnerType(): Map<string, bigint | null | undefined>;
|
|
11978
|
+
get companyId(): bigint;
|
|
11979
|
+
get items(): ParkingSpaceAllocationItem[];
|
|
11980
|
+
get searchDate(): SoliboInstant /* Instant */;
|
|
11981
|
+
get total(): bigint;
|
|
11982
|
+
get unassigned(): bigint;
|
|
11983
|
+
}
|
|
11984
|
+
export declare namespace ParkingSpaceAllocationOverview {
|
|
11985
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
11986
|
+
namespace $metadata$ {
|
|
11987
|
+
const constructor: abstract new () => ParkingSpaceAllocationOverview;
|
|
11988
|
+
}
|
|
11989
|
+
}
|
|
11990
|
+
export declare abstract class ParkingSpaceOwnerType {
|
|
11991
|
+
private constructor();
|
|
11992
|
+
static get SECTION(): ParkingSpaceOwnerType & {
|
|
11993
|
+
get name(): "SECTION";
|
|
11994
|
+
get ordinal(): 0;
|
|
11995
|
+
};
|
|
11996
|
+
static get PERSON(): ParkingSpaceOwnerType & {
|
|
11997
|
+
get name(): "PERSON";
|
|
11998
|
+
get ordinal(): 1;
|
|
11999
|
+
};
|
|
12000
|
+
static get ORGANIZATION(): ParkingSpaceOwnerType & {
|
|
12001
|
+
get name(): "ORGANIZATION";
|
|
12002
|
+
get ordinal(): 2;
|
|
12003
|
+
};
|
|
12004
|
+
static get Section(): ParkingSpaceOwnerType & {
|
|
12005
|
+
get name(): "SECTION";
|
|
12006
|
+
get ordinal(): 0;
|
|
12007
|
+
};
|
|
12008
|
+
static get Person(): ParkingSpaceOwnerType & {
|
|
12009
|
+
get name(): "PERSON";
|
|
12010
|
+
get ordinal(): 1;
|
|
12011
|
+
};
|
|
12012
|
+
static get Organization(): ParkingSpaceOwnerType & {
|
|
12013
|
+
get name(): "ORGANIZATION";
|
|
12014
|
+
get ordinal(): 2;
|
|
12015
|
+
};
|
|
12016
|
+
static values(): [typeof ParkingSpaceOwnerType.SECTION, typeof ParkingSpaceOwnerType.PERSON, typeof ParkingSpaceOwnerType.ORGANIZATION];
|
|
12017
|
+
static valueOf(value: string): ParkingSpaceOwnerType;
|
|
12018
|
+
get name(): "SECTION" | "PERSON" | "ORGANIZATION";
|
|
12019
|
+
get ordinal(): 0 | 1 | 2;
|
|
12020
|
+
get value(): string;
|
|
12021
|
+
}
|
|
12022
|
+
export declare namespace ParkingSpaceOwnerType {
|
|
12023
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
12024
|
+
namespace $metadata$ {
|
|
12025
|
+
const constructor: abstract new () => ParkingSpaceOwnerType;
|
|
12026
|
+
}
|
|
12027
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
12028
|
+
private constructor();
|
|
12029
|
+
}
|
|
12030
|
+
namespace Companion {
|
|
12031
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
12032
|
+
namespace $metadata$ {
|
|
12033
|
+
abstract class constructor /* implements SerializerFactory */ {
|
|
12034
|
+
fromValue(value: string): ParkingSpaceOwnerType | null | undefined;
|
|
12035
|
+
private constructor();
|
|
12036
|
+
}
|
|
12037
|
+
}
|
|
12038
|
+
}
|
|
12039
|
+
}
|
|
11908
12040
|
export interface ParkingSpaceOwnershipProps {
|
|
11909
12041
|
charger?: boolean | null | undefined;
|
|
11910
12042
|
id: bigint;
|
|
@@ -11983,6 +12115,76 @@ export declare namespace ParkingSpaceType {
|
|
|
11983
12115
|
}
|
|
11984
12116
|
}
|
|
11985
12117
|
}
|
|
12118
|
+
export interface ParkingSpaceVacancyProps {
|
|
12119
|
+
currentAssignment?: ParkingSpaceVacancyAssignmentProps | null | undefined;
|
|
12120
|
+
parkingSpaceId: bigint;
|
|
12121
|
+
searchDate: SoliboInstant /* Instant */;
|
|
12122
|
+
vacancyEnd?: SoliboInstant /* Instant */ | null | undefined;
|
|
12123
|
+
vacancyStart?: SoliboInstant /* Instant */ | null | undefined;
|
|
12124
|
+
vacantAtSearchDate: boolean;
|
|
12125
|
+
}
|
|
12126
|
+
export declare class ParkingSpaceVacancy {
|
|
12127
|
+
constructor(props: ParkingSpaceVacancyProps);
|
|
12128
|
+
constructor(currentAssignment: ParkingSpaceVacancyAssignment | null | undefined, parkingSpaceId: bigint, searchDate: SoliboInstant /* Instant */, vacancyEnd: SoliboInstant /* Instant */ | null | undefined, vacancyStart: SoliboInstant /* Instant */ | null | undefined, vacantAtSearchDate: boolean);
|
|
12129
|
+
get currentAssignment(): ParkingSpaceVacancyAssignment | null | undefined;
|
|
12130
|
+
get parkingSpaceId(): bigint;
|
|
12131
|
+
get searchDate(): SoliboInstant /* Instant */;
|
|
12132
|
+
get vacancyEnd(): SoliboInstant /* Instant */ | null | undefined;
|
|
12133
|
+
get vacancyStart(): SoliboInstant /* Instant */ | null | undefined;
|
|
12134
|
+
get vacantAtSearchDate(): boolean;
|
|
12135
|
+
}
|
|
12136
|
+
export declare namespace ParkingSpaceVacancy {
|
|
12137
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
12138
|
+
namespace $metadata$ {
|
|
12139
|
+
const constructor: abstract new () => ParkingSpaceVacancy;
|
|
12140
|
+
}
|
|
12141
|
+
}
|
|
12142
|
+
export interface ParkingSpaceVacancyAssignmentProps {
|
|
12143
|
+
correlationId: string;
|
|
12144
|
+
ownerType: ParkingSpaceOwnerTypeProps;
|
|
12145
|
+
validFrom: SoliboInstant /* Instant */;
|
|
12146
|
+
validTo?: SoliboInstant /* Instant */ | null | undefined;
|
|
12147
|
+
}
|
|
12148
|
+
export declare class ParkingSpaceVacancyAssignment {
|
|
12149
|
+
constructor(props: ParkingSpaceVacancyAssignmentProps);
|
|
12150
|
+
constructor(correlationId: string, ownerType: ParkingSpaceOwnerType, validFrom: SoliboInstant /* Instant */, validTo?: SoliboInstant /* Instant */ | null | undefined);
|
|
12151
|
+
get correlationId(): string;
|
|
12152
|
+
get ownerType(): ParkingSpaceOwnerType;
|
|
12153
|
+
get validFrom(): SoliboInstant /* Instant */;
|
|
12154
|
+
get validTo(): SoliboInstant /* Instant */ | null | undefined;
|
|
12155
|
+
}
|
|
12156
|
+
export declare namespace ParkingSpaceVacancyAssignment {
|
|
12157
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
12158
|
+
namespace $metadata$ {
|
|
12159
|
+
const constructor: abstract new () => ParkingSpaceVacancyAssignment;
|
|
12160
|
+
}
|
|
12161
|
+
}
|
|
12162
|
+
export interface ParkingSpaceVacantProps {
|
|
12163
|
+
charger?: boolean | null | undefined;
|
|
12164
|
+
id: bigint;
|
|
12165
|
+
identifier: string;
|
|
12166
|
+
note?: string | null | undefined;
|
|
12167
|
+
type?: ParkingSpaceTypeProps | null | undefined;
|
|
12168
|
+
vacancyEnd?: SoliboInstant /* Instant */ | null | undefined;
|
|
12169
|
+
vacancyStart?: SoliboInstant /* Instant */ | null | undefined;
|
|
12170
|
+
}
|
|
12171
|
+
export declare class ParkingSpaceVacant {
|
|
12172
|
+
constructor(props: ParkingSpaceVacantProps);
|
|
12173
|
+
constructor(charger: boolean | null | undefined, id: bigint, identifier: string, note?: string | null | undefined, type?: ParkingSpaceType | null | undefined, vacancyEnd?: SoliboInstant /* Instant */ | null | undefined, vacancyStart?: SoliboInstant /* Instant */ | null | undefined);
|
|
12174
|
+
get charger(): boolean | null | undefined;
|
|
12175
|
+
get id(): bigint;
|
|
12176
|
+
get identifier(): string;
|
|
12177
|
+
get note(): string | null | undefined;
|
|
12178
|
+
get type(): ParkingSpaceType | null | undefined;
|
|
12179
|
+
get vacancyEnd(): SoliboInstant /* Instant */ | null | undefined;
|
|
12180
|
+
get vacancyStart(): SoliboInstant /* Instant */ | null | undefined;
|
|
12181
|
+
}
|
|
12182
|
+
export declare namespace ParkingSpaceVacant {
|
|
12183
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
12184
|
+
namespace $metadata$ {
|
|
12185
|
+
const constructor: abstract new () => ParkingSpaceVacant;
|
|
12186
|
+
}
|
|
12187
|
+
}
|
|
11986
12188
|
export declare abstract class Participant {
|
|
11987
12189
|
private constructor();
|
|
11988
12190
|
abstract get active(): boolean;
|
|
@@ -15788,6 +15990,102 @@ export declare namespace StorageRoom {
|
|
|
15788
15990
|
const constructor: abstract new () => StorageRoom;
|
|
15789
15991
|
}
|
|
15790
15992
|
}
|
|
15993
|
+
export interface StorageRoomAllocationItemProps {
|
|
15994
|
+
currentOwner?: StorageRoomVacancyAssignmentProps | null | undefined;
|
|
15995
|
+
id: bigint;
|
|
15996
|
+
identifier: string;
|
|
15997
|
+
note?: string | null | undefined;
|
|
15998
|
+
}
|
|
15999
|
+
export declare class StorageRoomAllocationItem {
|
|
16000
|
+
constructor(props: StorageRoomAllocationItemProps);
|
|
16001
|
+
constructor(currentOwner: StorageRoomVacancyAssignment | null | undefined, id: bigint, identifier: string, note?: string | null | undefined);
|
|
16002
|
+
get currentOwner(): StorageRoomVacancyAssignment | null | undefined;
|
|
16003
|
+
get id(): bigint;
|
|
16004
|
+
get identifier(): string;
|
|
16005
|
+
get note(): string | null | undefined;
|
|
16006
|
+
}
|
|
16007
|
+
export declare namespace StorageRoomAllocationItem {
|
|
16008
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
16009
|
+
namespace $metadata$ {
|
|
16010
|
+
const constructor: abstract new () => StorageRoomAllocationItem;
|
|
16011
|
+
}
|
|
16012
|
+
}
|
|
16013
|
+
export interface StorageRoomAllocationOverviewProps {
|
|
16014
|
+
assigned: bigint;
|
|
16015
|
+
byOwnerType?: Map<string, bigint | null | undefined>;
|
|
16016
|
+
companyId: bigint;
|
|
16017
|
+
items: StorageRoomAllocationItemProps[];
|
|
16018
|
+
searchDate: SoliboInstant /* Instant */;
|
|
16019
|
+
total: bigint;
|
|
16020
|
+
unassigned: bigint;
|
|
16021
|
+
}
|
|
16022
|
+
export declare class StorageRoomAllocationOverview {
|
|
16023
|
+
constructor(props: StorageRoomAllocationOverviewProps);
|
|
16024
|
+
constructor(assigned: bigint, byOwnerType: Map<string, bigint | null | undefined>, companyId: bigint, items: StorageRoomAllocationItem[], searchDate: SoliboInstant /* Instant */, total: bigint, unassigned: bigint);
|
|
16025
|
+
get assigned(): bigint;
|
|
16026
|
+
get byOwnerType(): Map<string, bigint | null | undefined>;
|
|
16027
|
+
get companyId(): bigint;
|
|
16028
|
+
get items(): StorageRoomAllocationItem[];
|
|
16029
|
+
get searchDate(): SoliboInstant /* Instant */;
|
|
16030
|
+
get total(): bigint;
|
|
16031
|
+
get unassigned(): bigint;
|
|
16032
|
+
}
|
|
16033
|
+
export declare namespace StorageRoomAllocationOverview {
|
|
16034
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
16035
|
+
namespace $metadata$ {
|
|
16036
|
+
const constructor: abstract new () => StorageRoomAllocationOverview;
|
|
16037
|
+
}
|
|
16038
|
+
}
|
|
16039
|
+
export declare abstract class StorageRoomOwnerType {
|
|
16040
|
+
private constructor();
|
|
16041
|
+
static get SECTION(): StorageRoomOwnerType & {
|
|
16042
|
+
get name(): "SECTION";
|
|
16043
|
+
get ordinal(): 0;
|
|
16044
|
+
};
|
|
16045
|
+
static get PERSON(): StorageRoomOwnerType & {
|
|
16046
|
+
get name(): "PERSON";
|
|
16047
|
+
get ordinal(): 1;
|
|
16048
|
+
};
|
|
16049
|
+
static get ORGANIZATION(): StorageRoomOwnerType & {
|
|
16050
|
+
get name(): "ORGANIZATION";
|
|
16051
|
+
get ordinal(): 2;
|
|
16052
|
+
};
|
|
16053
|
+
static get Section(): StorageRoomOwnerType & {
|
|
16054
|
+
get name(): "SECTION";
|
|
16055
|
+
get ordinal(): 0;
|
|
16056
|
+
};
|
|
16057
|
+
static get Person(): StorageRoomOwnerType & {
|
|
16058
|
+
get name(): "PERSON";
|
|
16059
|
+
get ordinal(): 1;
|
|
16060
|
+
};
|
|
16061
|
+
static get Organization(): StorageRoomOwnerType & {
|
|
16062
|
+
get name(): "ORGANIZATION";
|
|
16063
|
+
get ordinal(): 2;
|
|
16064
|
+
};
|
|
16065
|
+
static values(): [typeof StorageRoomOwnerType.SECTION, typeof StorageRoomOwnerType.PERSON, typeof StorageRoomOwnerType.ORGANIZATION];
|
|
16066
|
+
static valueOf(value: string): StorageRoomOwnerType;
|
|
16067
|
+
get name(): "SECTION" | "PERSON" | "ORGANIZATION";
|
|
16068
|
+
get ordinal(): 0 | 1 | 2;
|
|
16069
|
+
get value(): string;
|
|
16070
|
+
}
|
|
16071
|
+
export declare namespace StorageRoomOwnerType {
|
|
16072
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
16073
|
+
namespace $metadata$ {
|
|
16074
|
+
const constructor: abstract new () => StorageRoomOwnerType;
|
|
16075
|
+
}
|
|
16076
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
16077
|
+
private constructor();
|
|
16078
|
+
}
|
|
16079
|
+
namespace Companion {
|
|
16080
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
16081
|
+
namespace $metadata$ {
|
|
16082
|
+
abstract class constructor /* implements SerializerFactory */ {
|
|
16083
|
+
fromValue(value: string): StorageRoomOwnerType | null | undefined;
|
|
16084
|
+
private constructor();
|
|
16085
|
+
}
|
|
16086
|
+
}
|
|
16087
|
+
}
|
|
16088
|
+
}
|
|
15791
16089
|
export interface StorageRoomOwnershipProps {
|
|
15792
16090
|
id: bigint;
|
|
15793
16091
|
identifier: string;
|
|
@@ -15812,6 +16110,72 @@ export declare namespace StorageRoomOwnership {
|
|
|
15812
16110
|
const constructor: abstract new () => StorageRoomOwnership;
|
|
15813
16111
|
}
|
|
15814
16112
|
}
|
|
16113
|
+
export interface StorageRoomVacancyProps {
|
|
16114
|
+
currentAssignment?: StorageRoomVacancyAssignmentProps | null | undefined;
|
|
16115
|
+
searchDate: SoliboInstant /* Instant */;
|
|
16116
|
+
storageRoomId: bigint;
|
|
16117
|
+
vacancyEnd?: SoliboInstant /* Instant */ | null | undefined;
|
|
16118
|
+
vacancyStart?: SoliboInstant /* Instant */ | null | undefined;
|
|
16119
|
+
vacantAtSearchDate: boolean;
|
|
16120
|
+
}
|
|
16121
|
+
export declare class StorageRoomVacancy {
|
|
16122
|
+
constructor(props: StorageRoomVacancyProps);
|
|
16123
|
+
constructor(currentAssignment: StorageRoomVacancyAssignment | null | undefined, searchDate: SoliboInstant /* Instant */, storageRoomId: bigint, vacancyEnd: SoliboInstant /* Instant */ | null | undefined, vacancyStart: SoliboInstant /* Instant */ | null | undefined, vacantAtSearchDate: boolean);
|
|
16124
|
+
get currentAssignment(): StorageRoomVacancyAssignment | null | undefined;
|
|
16125
|
+
get searchDate(): SoliboInstant /* Instant */;
|
|
16126
|
+
get storageRoomId(): bigint;
|
|
16127
|
+
get vacancyEnd(): SoliboInstant /* Instant */ | null | undefined;
|
|
16128
|
+
get vacancyStart(): SoliboInstant /* Instant */ | null | undefined;
|
|
16129
|
+
get vacantAtSearchDate(): boolean;
|
|
16130
|
+
}
|
|
16131
|
+
export declare namespace StorageRoomVacancy {
|
|
16132
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
16133
|
+
namespace $metadata$ {
|
|
16134
|
+
const constructor: abstract new () => StorageRoomVacancy;
|
|
16135
|
+
}
|
|
16136
|
+
}
|
|
16137
|
+
export interface StorageRoomVacancyAssignmentProps {
|
|
16138
|
+
correlationId: string;
|
|
16139
|
+
ownerType: StorageRoomOwnerTypeProps;
|
|
16140
|
+
validFrom: SoliboInstant /* Instant */;
|
|
16141
|
+
validTo?: SoliboInstant /* Instant */ | null | undefined;
|
|
16142
|
+
}
|
|
16143
|
+
export declare class StorageRoomVacancyAssignment {
|
|
16144
|
+
constructor(props: StorageRoomVacancyAssignmentProps);
|
|
16145
|
+
constructor(correlationId: string, ownerType: StorageRoomOwnerType, validFrom: SoliboInstant /* Instant */, validTo?: SoliboInstant /* Instant */ | null | undefined);
|
|
16146
|
+
get correlationId(): string;
|
|
16147
|
+
get ownerType(): StorageRoomOwnerType;
|
|
16148
|
+
get validFrom(): SoliboInstant /* Instant */;
|
|
16149
|
+
get validTo(): SoliboInstant /* Instant */ | null | undefined;
|
|
16150
|
+
}
|
|
16151
|
+
export declare namespace StorageRoomVacancyAssignment {
|
|
16152
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
16153
|
+
namespace $metadata$ {
|
|
16154
|
+
const constructor: abstract new () => StorageRoomVacancyAssignment;
|
|
16155
|
+
}
|
|
16156
|
+
}
|
|
16157
|
+
export interface StorageRoomVacantProps {
|
|
16158
|
+
id: bigint;
|
|
16159
|
+
identifier: string;
|
|
16160
|
+
note?: string | null | undefined;
|
|
16161
|
+
vacancyEnd?: SoliboInstant /* Instant */ | null | undefined;
|
|
16162
|
+
vacancyStart?: SoliboInstant /* Instant */ | null | undefined;
|
|
16163
|
+
}
|
|
16164
|
+
export declare class StorageRoomVacant {
|
|
16165
|
+
constructor(props: StorageRoomVacantProps);
|
|
16166
|
+
constructor(id: bigint, identifier: string, note?: string | null | undefined, vacancyEnd?: SoliboInstant /* Instant */ | null | undefined, vacancyStart?: SoliboInstant /* Instant */ | null | undefined);
|
|
16167
|
+
get id(): bigint;
|
|
16168
|
+
get identifier(): string;
|
|
16169
|
+
get note(): string | null | undefined;
|
|
16170
|
+
get vacancyEnd(): SoliboInstant /* Instant */ | null | undefined;
|
|
16171
|
+
get vacancyStart(): SoliboInstant /* Instant */ | null | undefined;
|
|
16172
|
+
}
|
|
16173
|
+
export declare namespace StorageRoomVacant {
|
|
16174
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
16175
|
+
namespace $metadata$ {
|
|
16176
|
+
const constructor: abstract new () => StorageRoomVacant;
|
|
16177
|
+
}
|
|
16178
|
+
}
|
|
15815
16179
|
export interface SupplierProps {
|
|
15816
16180
|
id: bigint;
|
|
15817
16181
|
logoUrl?: string | null | undefined;
|
|
@@ -19428,14 +19792,17 @@ export declare class ParkingApi extends ApiClient.$metadata$.constructor {
|
|
|
19428
19792
|
private constructor();
|
|
19429
19793
|
static create(baseUrl?: string, httpClientEngine?: any | null | undefined/* HttpClientEngine | null | undefined */, httpClientConfig?: (p0: any/* HttpClientConfig<UnknownType *> */) => void | null | undefined, jsonSerializer?: any/* Json */): ParkingApi;
|
|
19430
19794
|
static createWithClient(baseUrl: string, httpClient: any/* HttpClient */): ParkingApi;
|
|
19431
|
-
assignParkingSpaceToOrganization(companyId: bigint, parkingSpaceId: bigint, organizationId: bigint): Promise<HttpResponse<void>>;
|
|
19432
|
-
assignParkingSpaceToPerson(companyId: bigint, parkingSpaceId: bigint, personId: bigint): Promise<HttpResponse<void>>;
|
|
19433
|
-
assignParkingSpaceToSection(companyId: bigint, parkingSpaceId: bigint, sectionId: bigint): Promise<HttpResponse<void>>;
|
|
19795
|
+
assignParkingSpaceToOrganization(companyId: bigint, parkingSpaceId: bigint, organizationId: bigint, assignParkingSpaceCommand: AssignParkingSpaceCommand): Promise<HttpResponse<void>>;
|
|
19796
|
+
assignParkingSpaceToPerson(companyId: bigint, parkingSpaceId: bigint, personId: bigint, assignParkingSpaceCommand: AssignParkingSpaceCommand): Promise<HttpResponse<void>>;
|
|
19797
|
+
assignParkingSpaceToSection(companyId: bigint, parkingSpaceId: bigint, sectionId: bigint, assignParkingSpaceCommand: AssignParkingSpaceCommand): Promise<HttpResponse<void>>;
|
|
19434
19798
|
createParkingSpace(companyId: bigint, createParkingSpaceCommand: CreateParkingSpaceCommand): Promise<HttpResponse<ParkingSpace>>;
|
|
19435
19799
|
deleteParkingSpace(companyId: bigint, parkingSpaceId: bigint): Promise<HttpResponse<void>>;
|
|
19436
19800
|
exportAssets(companyId: bigint): Promise<HttpResponse<Base64ByteArray>>;
|
|
19437
19801
|
indexParkingSpace(companyId: bigint, search?: string | null | undefined, type?: KtList<ParkingSpaceType> | null | undefined, charger?: boolean | null | undefined, assigned?: boolean | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListParkingSpace>>;
|
|
19438
19802
|
indexParkingSpacesUser(companyIds?: KtList<bigint> | null | undefined, search?: string | null | undefined, type?: KtList<ParkingSpaceType> | null | undefined, charger?: boolean | null | undefined, assigned?: boolean | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListParkingSpace>>;
|
|
19803
|
+
listVacantParkingSpaces(companyId: bigint, searchDate?: bigint | null | undefined, fields?: string | null | undefined): Promise<HttpResponse<KtList<ParkingSpaceVacant>>>;
|
|
19804
|
+
parkingSpaceAllocationOverview(companyId: bigint, searchDate?: bigint | null | undefined, fields?: string | null | undefined): Promise<HttpResponse<ParkingSpaceAllocationOverview>>;
|
|
19805
|
+
parkingSpaceVacancy(companyId: bigint, parkingSpaceId: bigint, searchDate?: bigint | null | undefined, fields?: string | null | undefined): Promise<HttpResponse<ParkingSpaceVacancy>>;
|
|
19439
19806
|
showParkingSpace(companyId: bigint, parkingSpaceId: bigint, fields?: string | null | undefined): Promise<HttpResponse<ParkingSpace>>;
|
|
19440
19807
|
unAssignParkingSpaceToOrganization(companyId: bigint, parkingSpaceId: bigint, organizationId: bigint): Promise<HttpResponse<void>>;
|
|
19441
19808
|
unAssignParkingSpaceToPerson(companyId: bigint, parkingSpaceId: bigint, personId: bigint): Promise<HttpResponse<void>>;
|
|
@@ -19617,15 +19984,18 @@ export declare class StorageApi extends ApiClient.$metadata$.constructor {
|
|
|
19617
19984
|
private constructor();
|
|
19618
19985
|
static create(baseUrl?: string, httpClientEngine?: any | null | undefined/* HttpClientEngine | null | undefined */, httpClientConfig?: (p0: any/* HttpClientConfig<UnknownType *> */) => void | null | undefined, jsonSerializer?: any/* Json */): StorageApi;
|
|
19619
19986
|
static createWithClient(baseUrl: string, httpClient: any/* HttpClient */): StorageApi;
|
|
19620
|
-
assignStorageRoomToOrganization(companyId: bigint, storageRoomId: bigint, organizationId: bigint): Promise<HttpResponse<void>>;
|
|
19621
|
-
assignStorageRoomToPerson(companyId: bigint, storageRoomId: bigint, personId: bigint): Promise<HttpResponse<void>>;
|
|
19622
|
-
assignStorageRoomToSection(companyId: bigint, storageRoomId: bigint, sectionId: bigint): Promise<HttpResponse<void>>;
|
|
19987
|
+
assignStorageRoomToOrganization(companyId: bigint, storageRoomId: bigint, organizationId: bigint, assignStorageRoomCommand: AssignStorageRoomCommand): Promise<HttpResponse<void>>;
|
|
19988
|
+
assignStorageRoomToPerson(companyId: bigint, storageRoomId: bigint, personId: bigint, assignStorageRoomCommand: AssignStorageRoomCommand): Promise<HttpResponse<void>>;
|
|
19989
|
+
assignStorageRoomToSection(companyId: bigint, storageRoomId: bigint, sectionId: bigint, assignStorageRoomCommand: AssignStorageRoomCommand): Promise<HttpResponse<void>>;
|
|
19623
19990
|
createStorageRoom(companyId: bigint, createStorageRoomCommand: CreateStorageRoomCommand): Promise<HttpResponse<StorageRoom>>;
|
|
19624
19991
|
deleteStorageRoom(companyId: bigint, storageRoomId: bigint): Promise<HttpResponse<void>>;
|
|
19625
19992
|
exportStorageRooms(companyId: bigint): Promise<HttpResponse<Base64ByteArray>>;
|
|
19626
19993
|
indexStorageRoom(companyId: bigint, search?: string | null | undefined, assigned?: boolean | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListStorageRoom>>;
|
|
19627
19994
|
indexStorageRoomsUser(companyIds?: KtList<bigint> | null | undefined, search?: string | null | undefined, assigned?: boolean | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListStorageRoom>>;
|
|
19995
|
+
listVacantStorageRooms(companyId: bigint, searchDate?: bigint | null | undefined, fields?: string | null | undefined): Promise<HttpResponse<KtList<StorageRoomVacant>>>;
|
|
19628
19996
|
showStorageRoom(companyId: bigint, storageRoomId: bigint, fields?: string | null | undefined): Promise<HttpResponse<StorageRoom>>;
|
|
19997
|
+
storageRoomAllocationOverview(companyId: bigint, searchDate?: bigint | null | undefined, fields?: string | null | undefined): Promise<HttpResponse<StorageRoomAllocationOverview>>;
|
|
19998
|
+
storageRoomVacancy(companyId: bigint, storageRoomId: bigint, searchDate?: bigint | null | undefined, fields?: string | null | undefined): Promise<HttpResponse<StorageRoomVacancy>>;
|
|
19629
19999
|
unAssignStorageRoomToOrganization(companyId: bigint, storageRoomId: bigint, organizationId: bigint): Promise<HttpResponse<void>>;
|
|
19630
20000
|
unAssignStorageRoomToPerson(companyId: bigint, storageRoomId: bigint, personId: bigint): Promise<HttpResponse<void>>;
|
|
19631
20001
|
unAssignStorageRoomToSection(companyId: bigint, storageRoomId: bigint, sectionId: bigint): Promise<HttpResponse<void>>;
|
|
@@ -20222,6 +20592,7 @@ export declare class DocumentsApi extends DocumentApi.$metadata$.constructor {
|
|
|
20222
20592
|
static create(baseUrl?: string, httpClientEngine?: any | null | undefined/* HttpClientEngine | null | undefined */, httpClientConfig?: (p0: any/* HttpClientConfig<UnknownType *> */) => void | null | undefined, jsonSerializer?: any/* Json */, uploadOptions?: DocumentUploadOptions, uploadHttpClient?: any | null | undefined/* HttpClient | null | undefined */): DocumentsApi;
|
|
20223
20593
|
static createWithClient(baseUrl: string, httpClient: any/* HttpClient */, uploadOptions?: DocumentUploadOptions, uploadHttpClient?: any/* HttpClient */): DocumentsApi;
|
|
20224
20594
|
uploadDocument(request: UploadDocumentRequest): Promise<Document>;
|
|
20595
|
+
deleteDocument(companyId: bigint, documentId: bigint): Promise<HttpResponse<void>>;
|
|
20225
20596
|
downloadDocumentById(companyId: bigint, id: bigint): Promise<Int8Array>;
|
|
20226
20597
|
downloadDocument(request: DownloadDocumentRequest): Promise<Int8Array>;
|
|
20227
20598
|
}
|