@doordeck/doordeck-headless-sdk 0.114.0 → 0.116.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/kotlin/Kermit-kermit-core.js +59 -58
- package/kotlin/Kermit-kermit.js +7 -7
- package/kotlin/Kotlin-DateTime-library-kotlinx-datetime.js +1899 -1681
- package/kotlin/KotlinMultiplatformLibsodium-multiplatform-crypto-libsodium-bindings.js +6 -6
- package/kotlin/MultiplatformSettings-multiplatform-settings.js +30 -11
- package/kotlin/doordeck-sdk.d.ts +1576 -290
- package/kotlin/doordeck-sdk.js +6395 -6373
- package/kotlin/kotlin-kotlin-stdlib.js +590 -719
- package/kotlin/kotlinx-atomicfu.js +5 -5
- package/kotlin/kotlinx-coroutines-core.js +246 -243
- package/kotlin/kotlinx-io-kotlinx-io-bytestring.js +12 -12
- package/kotlin/kotlinx-io-kotlinx-io-core.js +104 -104
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core.js +126 -117
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json.js +1216 -1214
- package/kotlin/{ktor-ktor-client-ktor-client-plugins-ktor-client-auth.js → ktor-ktor-client-auth.js} +283 -286
- package/kotlin/{ktor-ktor-client-ktor-client-plugins-ktor-client-content-negotiation.js → ktor-ktor-client-content-negotiation.js} +169 -169
- package/kotlin/{ktor-ktor-client-ktor-client-core.js → ktor-ktor-client-core.js} +2515 -2518
- package/kotlin/{ktor-ktor-client-ktor-client-plugins-ktor-client-logging.js → ktor-ktor-client-logging.js} +926 -831
- package/kotlin/{ktor-ktor-shared-ktor-events.js → ktor-ktor-events.js} +9 -9
- package/kotlin/{ktor-ktor-http-ktor-http-cio.js → ktor-ktor-http-cio.js} +371 -370
- package/kotlin/ktor-ktor-http.js +867 -952
- package/kotlin/ktor-ktor-io.js +389 -411
- package/kotlin/{ktor-ktor-shared-ktor-serialization-ktor-serialization-kotlinx-ktor-serialization-kotlinx-json.js → ktor-ktor-serialization-kotlinx-json.js} +7 -7
- package/kotlin/{ktor-ktor-shared-ktor-serialization-ktor-serialization-kotlinx.js → ktor-ktor-serialization-kotlinx.js} +150 -150
- package/kotlin/{ktor-ktor-shared-ktor-serialization.js → ktor-ktor-serialization.js} +75 -75
- package/kotlin/ktor-ktor-utils.js +117 -92
- package/kotlin/{ktor-ktor-shared-ktor-websockets.js → ktor-ktor-websockets.js} +52 -52
- package/package.json +3 -3
- /package/kotlin/{ktor-ktor-client-ktor-client-plugins-ktor-client-encoding.js → ktor-ktor-client-encoding.js} +0 -0
- /package/kotlin/{ktor-ktor-shared-ktor-sse.js → ktor-ktor-sse.js} +0 -0
- /package/kotlin/{ktor-ktor-shared-ktor-websocket-serialization.js → ktor-ktor-websocket-serialization.js} +0 -0
package/kotlin/doordeck-sdk.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
type Nullable<T> = T | null | undefined
|
|
2
|
+
declare function KtSingleton<T>(): T & (abstract new() => any);
|
|
2
3
|
export declare namespace kotlin.collections {
|
|
3
4
|
interface KtList<E> /* extends kotlin.collections.Collection<E> */ {
|
|
4
5
|
asJsReadonlyArrayView(): ReadonlyArray<E>;
|
|
@@ -6,18 +7,32 @@ export declare namespace kotlin.collections {
|
|
|
6
7
|
readonly "kotlin.collections.KtList": unique symbol;
|
|
7
8
|
};
|
|
8
9
|
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
}
|
|
10
|
+
abstract class KtList<E> extends KtSingleton<KtList.$metadata$.constructor>() {
|
|
11
|
+
private constructor();
|
|
12
|
+
}
|
|
13
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
14
|
+
namespace KtList.$metadata$ {
|
|
15
|
+
abstract class constructor {
|
|
16
|
+
fromJsArray<E>(array: ReadonlyArray<E>): kotlin.collections.KtList<E>;
|
|
17
|
+
private constructor();
|
|
18
|
+
}
|
|
19
|
+
}
|
|
12
20
|
interface KtMap<K, V> {
|
|
13
21
|
asJsReadonlyMapView(): ReadonlyMap<K, V>;
|
|
14
22
|
readonly __doNotUseOrImplementIt: {
|
|
15
23
|
readonly "kotlin.collections.KtMap": unique symbol;
|
|
16
24
|
};
|
|
17
25
|
}
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
}
|
|
26
|
+
abstract class KtMap<K, V> extends KtSingleton<KtMap.$metadata$.constructor>() {
|
|
27
|
+
private constructor();
|
|
28
|
+
}
|
|
29
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
30
|
+
namespace KtMap.$metadata$ {
|
|
31
|
+
abstract class constructor {
|
|
32
|
+
fromJsMap<K, V>(map: ReadonlyMap<K, V>): kotlin.collections.KtMap<K, V>;
|
|
33
|
+
private constructor();
|
|
34
|
+
}
|
|
35
|
+
}
|
|
21
36
|
}
|
|
22
37
|
export declare namespace io.ktor.client.engine.js {
|
|
23
38
|
/** @deprecated */
|
|
@@ -32,9 +47,16 @@ export declare namespace com.doordeck.multiplatform.sdk {
|
|
|
32
47
|
}
|
|
33
48
|
}
|
|
34
49
|
export declare namespace com.doordeck.multiplatform.sdk {
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
}
|
|
50
|
+
abstract class KDoordeckFactory extends KtSingleton<KDoordeckFactory.$metadata$.constructor>() {
|
|
51
|
+
private constructor();
|
|
52
|
+
}
|
|
53
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
54
|
+
namespace KDoordeckFactory.$metadata$ {
|
|
55
|
+
abstract class constructor {
|
|
56
|
+
initialize(sdkConfig: com.doordeck.multiplatform.sdk.config.SdkConfig): com.doordeck.multiplatform.sdk.Doordeck;
|
|
57
|
+
private constructor();
|
|
58
|
+
}
|
|
59
|
+
}
|
|
38
60
|
}
|
|
39
61
|
export declare namespace com.doordeck.multiplatform.sdk.config {
|
|
40
62
|
class SdkConfig {
|
|
@@ -50,6 +72,10 @@ export declare namespace com.doordeck.multiplatform.sdk.config {
|
|
|
50
72
|
hashCode(): number;
|
|
51
73
|
equals(other: Nullable<any>): boolean;
|
|
52
74
|
}
|
|
75
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
76
|
+
namespace SdkConfig.$metadata$ {
|
|
77
|
+
const constructor: abstract new () => SdkConfig;
|
|
78
|
+
}
|
|
53
79
|
namespace SdkConfig {
|
|
54
80
|
class Builder {
|
|
55
81
|
constructor();
|
|
@@ -61,6 +87,10 @@ export declare namespace com.doordeck.multiplatform.sdk.config {
|
|
|
61
87
|
setDebugLogging(enabled: Nullable<boolean>): com.doordeck.multiplatform.sdk.config.SdkConfig.Builder;
|
|
62
88
|
build(): com.doordeck.multiplatform.sdk.config.SdkConfig;
|
|
63
89
|
}
|
|
90
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
91
|
+
namespace Builder.$metadata$ {
|
|
92
|
+
const constructor: abstract new () => Builder;
|
|
93
|
+
}
|
|
64
94
|
}
|
|
65
95
|
}
|
|
66
96
|
export declare namespace com.doordeck.multiplatform.sdk.context {
|
|
@@ -97,59 +127,127 @@ export declare namespace com.doordeck.multiplatform.sdk.context {
|
|
|
97
127
|
}
|
|
98
128
|
}
|
|
99
129
|
export declare namespace com.doordeck.multiplatform.sdk.exceptions {
|
|
100
|
-
class BadRequestException extends com.doordeck.multiplatform.sdk.exceptions.SdkException {
|
|
130
|
+
class BadRequestException extends com.doordeck.multiplatform.sdk.exceptions.SdkException.$metadata$.constructor {
|
|
101
131
|
constructor(message: string);
|
|
102
132
|
}
|
|
103
|
-
|
|
133
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
134
|
+
namespace BadRequestException.$metadata$ {
|
|
135
|
+
const constructor: abstract new () => BadRequestException;
|
|
136
|
+
}
|
|
137
|
+
class UnauthorizedException extends com.doordeck.multiplatform.sdk.exceptions.SdkException.$metadata$.constructor {
|
|
104
138
|
constructor(message: string);
|
|
105
139
|
}
|
|
106
|
-
|
|
140
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
141
|
+
namespace UnauthorizedException.$metadata$ {
|
|
142
|
+
const constructor: abstract new () => UnauthorizedException;
|
|
143
|
+
}
|
|
144
|
+
class ForbiddenException extends com.doordeck.multiplatform.sdk.exceptions.SdkException.$metadata$.constructor {
|
|
107
145
|
constructor(message: string);
|
|
108
146
|
}
|
|
109
|
-
|
|
147
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
148
|
+
namespace ForbiddenException.$metadata$ {
|
|
149
|
+
const constructor: abstract new () => ForbiddenException;
|
|
150
|
+
}
|
|
151
|
+
class NotFoundException extends com.doordeck.multiplatform.sdk.exceptions.SdkException.$metadata$.constructor {
|
|
110
152
|
constructor(message: string);
|
|
111
153
|
}
|
|
112
|
-
|
|
154
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
155
|
+
namespace NotFoundException.$metadata$ {
|
|
156
|
+
const constructor: abstract new () => NotFoundException;
|
|
157
|
+
}
|
|
158
|
+
class MethodNotAllowedException extends com.doordeck.multiplatform.sdk.exceptions.SdkException.$metadata$.constructor {
|
|
113
159
|
constructor(message: string);
|
|
114
160
|
}
|
|
115
|
-
|
|
161
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
162
|
+
namespace MethodNotAllowedException.$metadata$ {
|
|
163
|
+
const constructor: abstract new () => MethodNotAllowedException;
|
|
164
|
+
}
|
|
165
|
+
class NotAcceptableException extends com.doordeck.multiplatform.sdk.exceptions.SdkException.$metadata$.constructor {
|
|
116
166
|
constructor(message: string);
|
|
117
167
|
}
|
|
118
|
-
|
|
168
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
169
|
+
namespace NotAcceptableException.$metadata$ {
|
|
170
|
+
const constructor: abstract new () => NotAcceptableException;
|
|
171
|
+
}
|
|
172
|
+
class ConflictException extends com.doordeck.multiplatform.sdk.exceptions.SdkException.$metadata$.constructor {
|
|
119
173
|
constructor(message: string);
|
|
120
174
|
}
|
|
121
|
-
|
|
175
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
176
|
+
namespace ConflictException.$metadata$ {
|
|
177
|
+
const constructor: abstract new () => ConflictException;
|
|
178
|
+
}
|
|
179
|
+
class GoneException extends com.doordeck.multiplatform.sdk.exceptions.SdkException.$metadata$.constructor {
|
|
122
180
|
constructor(message: string);
|
|
123
181
|
}
|
|
124
|
-
|
|
182
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
183
|
+
namespace GoneException.$metadata$ {
|
|
184
|
+
const constructor: abstract new () => GoneException;
|
|
185
|
+
}
|
|
186
|
+
class LockedException extends com.doordeck.multiplatform.sdk.exceptions.SdkException.$metadata$.constructor {
|
|
125
187
|
constructor(message: string);
|
|
126
188
|
}
|
|
127
|
-
|
|
189
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
190
|
+
namespace LockedException.$metadata$ {
|
|
191
|
+
const constructor: abstract new () => LockedException;
|
|
192
|
+
}
|
|
193
|
+
class TooEarlyException extends com.doordeck.multiplatform.sdk.exceptions.SdkException.$metadata$.constructor {
|
|
128
194
|
constructor(message: string);
|
|
129
195
|
}
|
|
130
|
-
|
|
196
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
197
|
+
namespace TooEarlyException.$metadata$ {
|
|
198
|
+
const constructor: abstract new () => TooEarlyException;
|
|
199
|
+
}
|
|
200
|
+
class TooManyRequestsException extends com.doordeck.multiplatform.sdk.exceptions.SdkException.$metadata$.constructor {
|
|
131
201
|
constructor(message: string);
|
|
132
202
|
}
|
|
133
|
-
|
|
203
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
204
|
+
namespace TooManyRequestsException.$metadata$ {
|
|
205
|
+
const constructor: abstract new () => TooManyRequestsException;
|
|
206
|
+
}
|
|
207
|
+
class InternalServerErrorException extends com.doordeck.multiplatform.sdk.exceptions.SdkException.$metadata$.constructor {
|
|
134
208
|
constructor(message: string);
|
|
135
209
|
}
|
|
136
|
-
|
|
210
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
211
|
+
namespace InternalServerErrorException.$metadata$ {
|
|
212
|
+
const constructor: abstract new () => InternalServerErrorException;
|
|
213
|
+
}
|
|
214
|
+
class ServiceUnavailableException extends com.doordeck.multiplatform.sdk.exceptions.SdkException.$metadata$.constructor {
|
|
137
215
|
constructor(message: string);
|
|
138
216
|
}
|
|
139
|
-
|
|
217
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
218
|
+
namespace ServiceUnavailableException.$metadata$ {
|
|
219
|
+
const constructor: abstract new () => ServiceUnavailableException;
|
|
220
|
+
}
|
|
221
|
+
class GatewayTimeoutException extends com.doordeck.multiplatform.sdk.exceptions.SdkException.$metadata$.constructor {
|
|
140
222
|
constructor(message: string);
|
|
141
223
|
}
|
|
224
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
225
|
+
namespace GatewayTimeoutException.$metadata$ {
|
|
226
|
+
const constructor: abstract new () => GatewayTimeoutException;
|
|
227
|
+
}
|
|
142
228
|
}
|
|
143
229
|
export declare namespace com.doordeck.multiplatform.sdk.exceptions {
|
|
144
230
|
class SdkException /* extends kotlin.Exception */ {
|
|
145
231
|
constructor(message: string, exception?: Nullable<Error>);
|
|
146
232
|
}
|
|
147
|
-
|
|
233
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
234
|
+
namespace SdkException.$metadata$ {
|
|
235
|
+
const constructor: abstract new () => SdkException;
|
|
236
|
+
}
|
|
237
|
+
class MissingContextFieldException extends com.doordeck.multiplatform.sdk.exceptions.SdkException.$metadata$.constructor {
|
|
148
238
|
constructor(message: string);
|
|
149
239
|
}
|
|
150
|
-
|
|
240
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
241
|
+
namespace MissingContextFieldException.$metadata$ {
|
|
242
|
+
const constructor: abstract new () => MissingContextFieldException;
|
|
243
|
+
}
|
|
244
|
+
class BatchShareFailedException extends com.doordeck.multiplatform.sdk.exceptions.SdkException.$metadata$.constructor {
|
|
151
245
|
constructor(message: string, userIds: kotlin.collections.KtList<string>);
|
|
152
246
|
}
|
|
247
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
248
|
+
namespace BatchShareFailedException.$metadata$ {
|
|
249
|
+
const constructor: abstract new () => BatchShareFailedException;
|
|
250
|
+
}
|
|
153
251
|
}
|
|
154
252
|
export declare namespace com.doordeck.multiplatform.sdk.model.common {
|
|
155
253
|
abstract class AuditEvent {
|
|
@@ -218,8 +316,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.common {
|
|
|
218
316
|
get ordinal(): 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14;
|
|
219
317
|
static values(): Array<com.doordeck.multiplatform.sdk.model.common.AuditEvent>;
|
|
220
318
|
static valueOf(value: string): com.doordeck.multiplatform.sdk.model.common.AuditEvent;
|
|
221
|
-
|
|
222
|
-
|
|
319
|
+
}
|
|
320
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
321
|
+
namespace AuditEvent.$metadata$ {
|
|
322
|
+
const constructor: abstract new () => AuditEvent;
|
|
323
|
+
}
|
|
324
|
+
namespace AuditEvent {
|
|
325
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
326
|
+
private constructor();
|
|
327
|
+
}
|
|
328
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
329
|
+
namespace Companion.$metadata$ {
|
|
330
|
+
abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
|
|
331
|
+
private constructor();
|
|
332
|
+
}
|
|
333
|
+
}
|
|
223
334
|
}
|
|
224
335
|
}
|
|
225
336
|
export declare namespace com.doordeck.multiplatform.sdk.model.common {
|
|
@@ -237,8 +348,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.common {
|
|
|
237
348
|
get ordinal(): 0 | 1;
|
|
238
349
|
static values(): Array<com.doordeck.multiplatform.sdk.model.common.CapabilityStatus>;
|
|
239
350
|
static valueOf(value: string): com.doordeck.multiplatform.sdk.model.common.CapabilityStatus;
|
|
240
|
-
|
|
241
|
-
|
|
351
|
+
}
|
|
352
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
353
|
+
namespace CapabilityStatus.$metadata$ {
|
|
354
|
+
const constructor: abstract new () => CapabilityStatus;
|
|
355
|
+
}
|
|
356
|
+
namespace CapabilityStatus {
|
|
357
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
358
|
+
private constructor();
|
|
359
|
+
}
|
|
360
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
361
|
+
namespace Companion.$metadata$ {
|
|
362
|
+
abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
|
|
363
|
+
private constructor();
|
|
364
|
+
}
|
|
365
|
+
}
|
|
242
366
|
}
|
|
243
367
|
abstract class CapabilityType {
|
|
244
368
|
private constructor();
|
|
@@ -258,8 +382,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.common {
|
|
|
258
382
|
get ordinal(): 0 | 1 | 2;
|
|
259
383
|
static values(): Array<com.doordeck.multiplatform.sdk.model.common.CapabilityType>;
|
|
260
384
|
static valueOf(value: string): com.doordeck.multiplatform.sdk.model.common.CapabilityType;
|
|
261
|
-
|
|
262
|
-
|
|
385
|
+
}
|
|
386
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
387
|
+
namespace CapabilityType.$metadata$ {
|
|
388
|
+
const constructor: abstract new () => CapabilityType;
|
|
389
|
+
}
|
|
390
|
+
namespace CapabilityType {
|
|
391
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
392
|
+
private constructor();
|
|
393
|
+
}
|
|
394
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
395
|
+
namespace Companion.$metadata$ {
|
|
396
|
+
abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
|
|
397
|
+
private constructor();
|
|
398
|
+
}
|
|
399
|
+
}
|
|
263
400
|
}
|
|
264
401
|
}
|
|
265
402
|
export declare namespace com.doordeck.multiplatform.sdk.model.common {
|
|
@@ -281,8 +418,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.common {
|
|
|
281
418
|
get ordinal(): 0 | 1 | 2;
|
|
282
419
|
static values(): Array<com.doordeck.multiplatform.sdk.model.common.TwoFactorMethod>;
|
|
283
420
|
static valueOf(value: string): com.doordeck.multiplatform.sdk.model.common.TwoFactorMethod;
|
|
284
|
-
|
|
285
|
-
|
|
421
|
+
}
|
|
422
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
423
|
+
namespace TwoFactorMethod.$metadata$ {
|
|
424
|
+
const constructor: abstract new () => TwoFactorMethod;
|
|
425
|
+
}
|
|
426
|
+
namespace TwoFactorMethod {
|
|
427
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
428
|
+
private constructor();
|
|
429
|
+
}
|
|
430
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
431
|
+
namespace Companion.$metadata$ {
|
|
432
|
+
abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
|
|
433
|
+
private constructor();
|
|
434
|
+
}
|
|
435
|
+
}
|
|
286
436
|
}
|
|
287
437
|
}
|
|
288
438
|
export declare namespace com.doordeck.multiplatform.sdk.model.common {
|
|
@@ -300,8 +450,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.common {
|
|
|
300
450
|
get ordinal(): 0 | 1;
|
|
301
451
|
static values(): Array<com.doordeck.multiplatform.sdk.model.common.UserRole>;
|
|
302
452
|
static valueOf(value: string): com.doordeck.multiplatform.sdk.model.common.UserRole;
|
|
303
|
-
|
|
304
|
-
|
|
453
|
+
}
|
|
454
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
455
|
+
namespace UserRole.$metadata$ {
|
|
456
|
+
const constructor: abstract new () => UserRole;
|
|
457
|
+
}
|
|
458
|
+
namespace UserRole {
|
|
459
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
460
|
+
private constructor();
|
|
461
|
+
}
|
|
462
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
463
|
+
namespace Companion.$metadata$ {
|
|
464
|
+
abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
|
|
465
|
+
private constructor();
|
|
466
|
+
}
|
|
467
|
+
}
|
|
305
468
|
}
|
|
306
469
|
}
|
|
307
470
|
export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
@@ -325,9 +488,13 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
325
488
|
static values(): Array<com.doordeck.multiplatform.sdk.model.data.ApiEnvironment>;
|
|
326
489
|
static valueOf(value: string): com.doordeck.multiplatform.sdk.model.data.ApiEnvironment;
|
|
327
490
|
}
|
|
491
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
492
|
+
namespace ApiEnvironment.$metadata$ {
|
|
493
|
+
const constructor: abstract new () => ApiEnvironment;
|
|
494
|
+
}
|
|
328
495
|
}
|
|
329
496
|
export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
330
|
-
abstract class Crypto {
|
|
497
|
+
abstract class Crypto extends KtSingleton<Crypto.$metadata$.constructor>() {
|
|
331
498
|
private constructor();
|
|
332
499
|
}
|
|
333
500
|
namespace Crypto {
|
|
@@ -340,6 +507,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
340
507
|
hashCode(): number;
|
|
341
508
|
equals(other: Nullable<any>): boolean;
|
|
342
509
|
}
|
|
510
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
511
|
+
namespace KeyPair.$metadata$ {
|
|
512
|
+
const constructor: abstract new () => KeyPair;
|
|
513
|
+
}
|
|
343
514
|
class EncodedKeyPair {
|
|
344
515
|
constructor(_private: string, _public: string);
|
|
345
516
|
get private(): string;
|
|
@@ -348,13 +519,32 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
348
519
|
toString(): string;
|
|
349
520
|
hashCode(): number;
|
|
350
521
|
equals(other: Nullable<any>): boolean;
|
|
351
|
-
|
|
352
|
-
|
|
522
|
+
}
|
|
523
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
524
|
+
namespace EncodedKeyPair.$metadata$ {
|
|
525
|
+
const constructor: abstract new () => EncodedKeyPair;
|
|
526
|
+
}
|
|
527
|
+
namespace EncodedKeyPair {
|
|
528
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
529
|
+
private constructor();
|
|
530
|
+
}
|
|
531
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
532
|
+
namespace Companion.$metadata$ {
|
|
533
|
+
abstract class constructor {
|
|
534
|
+
private constructor();
|
|
535
|
+
}
|
|
536
|
+
}
|
|
537
|
+
}
|
|
538
|
+
}
|
|
539
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
540
|
+
namespace Crypto.$metadata$ {
|
|
541
|
+
abstract class constructor {
|
|
542
|
+
private constructor();
|
|
353
543
|
}
|
|
354
544
|
}
|
|
355
545
|
}
|
|
356
546
|
export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
357
|
-
abstract class Fusion {
|
|
547
|
+
abstract class Fusion extends KtSingleton<Fusion.$metadata$.constructor>() {
|
|
358
548
|
private constructor();
|
|
359
549
|
}
|
|
360
550
|
namespace Fusion {
|
|
@@ -363,8 +553,15 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
363
553
|
readonly "com.doordeck.multiplatform.sdk.model.data.Fusion.LockController": unique symbol;
|
|
364
554
|
};
|
|
365
555
|
}
|
|
366
|
-
|
|
367
|
-
|
|
556
|
+
abstract class LockController extends KtSingleton<LockController.$metadata$.constructor>() {
|
|
557
|
+
private constructor();
|
|
558
|
+
}
|
|
559
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
560
|
+
namespace LockController.$metadata$ {
|
|
561
|
+
abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
|
|
562
|
+
private constructor();
|
|
563
|
+
}
|
|
564
|
+
}
|
|
368
565
|
class AlpetaController implements com.doordeck.multiplatform.sdk.model.data.Fusion.LockController {
|
|
369
566
|
constructor(username: string, password: string, doorId: number, baseUrl?: Nullable<string>);
|
|
370
567
|
get username(): string;
|
|
@@ -376,8 +573,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
376
573
|
hashCode(): number;
|
|
377
574
|
equals(other: Nullable<any>): boolean;
|
|
378
575
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
379
|
-
|
|
380
|
-
|
|
576
|
+
}
|
|
577
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
578
|
+
namespace AlpetaController.$metadata$ {
|
|
579
|
+
const constructor: abstract new () => AlpetaController;
|
|
580
|
+
}
|
|
581
|
+
namespace AlpetaController {
|
|
582
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
583
|
+
private constructor();
|
|
584
|
+
}
|
|
585
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
586
|
+
namespace Companion.$metadata$ {
|
|
587
|
+
abstract class constructor {
|
|
588
|
+
private constructor();
|
|
589
|
+
}
|
|
590
|
+
}
|
|
381
591
|
}
|
|
382
592
|
class AmagController implements com.doordeck.multiplatform.sdk.model.data.Fusion.LockController {
|
|
383
593
|
constructor(username: string, password: string, doorId: number, baseUrl?: Nullable<string>);
|
|
@@ -390,8 +600,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
390
600
|
hashCode(): number;
|
|
391
601
|
equals(other: Nullable<any>): boolean;
|
|
392
602
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
393
|
-
|
|
394
|
-
|
|
603
|
+
}
|
|
604
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
605
|
+
namespace AmagController.$metadata$ {
|
|
606
|
+
const constructor: abstract new () => AmagController;
|
|
607
|
+
}
|
|
608
|
+
namespace AmagController {
|
|
609
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
610
|
+
private constructor();
|
|
611
|
+
}
|
|
612
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
613
|
+
namespace Companion.$metadata$ {
|
|
614
|
+
abstract class constructor {
|
|
615
|
+
private constructor();
|
|
616
|
+
}
|
|
617
|
+
}
|
|
395
618
|
}
|
|
396
619
|
class AssaAbloyController implements com.doordeck.multiplatform.sdk.model.data.Fusion.LockController {
|
|
397
620
|
constructor(baseUrl: string, doorId: string);
|
|
@@ -402,8 +625,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
402
625
|
hashCode(): number;
|
|
403
626
|
equals(other: Nullable<any>): boolean;
|
|
404
627
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
405
|
-
|
|
406
|
-
|
|
628
|
+
}
|
|
629
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
630
|
+
namespace AssaAbloyController.$metadata$ {
|
|
631
|
+
const constructor: abstract new () => AssaAbloyController;
|
|
632
|
+
}
|
|
633
|
+
namespace AssaAbloyController {
|
|
634
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
635
|
+
private constructor();
|
|
636
|
+
}
|
|
637
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
638
|
+
namespace Companion.$metadata$ {
|
|
639
|
+
abstract class constructor {
|
|
640
|
+
private constructor();
|
|
641
|
+
}
|
|
642
|
+
}
|
|
407
643
|
}
|
|
408
644
|
class AvigilonController implements com.doordeck.multiplatform.sdk.model.data.Fusion.LockController {
|
|
409
645
|
constructor(baseUrl: string, username: string, password: string, doorId: string);
|
|
@@ -416,8 +652,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
416
652
|
hashCode(): number;
|
|
417
653
|
equals(other: Nullable<any>): boolean;
|
|
418
654
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
419
|
-
|
|
420
|
-
|
|
655
|
+
}
|
|
656
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
657
|
+
namespace AvigilonController.$metadata$ {
|
|
658
|
+
const constructor: abstract new () => AvigilonController;
|
|
659
|
+
}
|
|
660
|
+
namespace AvigilonController {
|
|
661
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
662
|
+
private constructor();
|
|
663
|
+
}
|
|
664
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
665
|
+
namespace Companion.$metadata$ {
|
|
666
|
+
abstract class constructor {
|
|
667
|
+
private constructor();
|
|
668
|
+
}
|
|
669
|
+
}
|
|
421
670
|
}
|
|
422
671
|
class AxisController implements com.doordeck.multiplatform.sdk.model.data.Fusion.LockController {
|
|
423
672
|
constructor(baseUrl: string, doorIdentifier: string);
|
|
@@ -428,8 +677,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
428
677
|
hashCode(): number;
|
|
429
678
|
equals(other: Nullable<any>): boolean;
|
|
430
679
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
431
|
-
|
|
432
|
-
|
|
680
|
+
}
|
|
681
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
682
|
+
namespace AxisController.$metadata$ {
|
|
683
|
+
const constructor: abstract new () => AxisController;
|
|
684
|
+
}
|
|
685
|
+
namespace AxisController {
|
|
686
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
687
|
+
private constructor();
|
|
688
|
+
}
|
|
689
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
690
|
+
namespace Companion.$metadata$ {
|
|
691
|
+
abstract class constructor {
|
|
692
|
+
private constructor();
|
|
693
|
+
}
|
|
694
|
+
}
|
|
433
695
|
}
|
|
434
696
|
class CCureController implements com.doordeck.multiplatform.sdk.model.data.Fusion.LockController {
|
|
435
697
|
constructor(baseUrl: string, username: string, password: string, doorType: string, doorId: number);
|
|
@@ -443,8 +705,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
443
705
|
hashCode(): number;
|
|
444
706
|
equals(other: Nullable<any>): boolean;
|
|
445
707
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
446
|
-
|
|
447
|
-
|
|
708
|
+
}
|
|
709
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
710
|
+
namespace CCureController.$metadata$ {
|
|
711
|
+
const constructor: abstract new () => CCureController;
|
|
712
|
+
}
|
|
713
|
+
namespace CCureController {
|
|
714
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
715
|
+
private constructor();
|
|
716
|
+
}
|
|
717
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
718
|
+
namespace Companion.$metadata$ {
|
|
719
|
+
abstract class constructor {
|
|
720
|
+
private constructor();
|
|
721
|
+
}
|
|
722
|
+
}
|
|
448
723
|
}
|
|
449
724
|
class DemoController implements com.doordeck.multiplatform.sdk.model.data.Fusion.LockController {
|
|
450
725
|
constructor(port?: number);
|
|
@@ -454,8 +729,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
454
729
|
hashCode(): number;
|
|
455
730
|
equals(other: Nullable<any>): boolean;
|
|
456
731
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
457
|
-
|
|
458
|
-
|
|
732
|
+
}
|
|
733
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
734
|
+
namespace DemoController.$metadata$ {
|
|
735
|
+
const constructor: abstract new () => DemoController;
|
|
736
|
+
}
|
|
737
|
+
namespace DemoController {
|
|
738
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
739
|
+
private constructor();
|
|
740
|
+
}
|
|
741
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
742
|
+
namespace Companion.$metadata$ {
|
|
743
|
+
abstract class constructor {
|
|
744
|
+
private constructor();
|
|
745
|
+
}
|
|
746
|
+
}
|
|
459
747
|
}
|
|
460
748
|
class GallagherController implements com.doordeck.multiplatform.sdk.model.data.Fusion.LockController {
|
|
461
749
|
constructor(baseUrl: Nullable<string> | undefined, apiKey: string, doorId: string);
|
|
@@ -467,8 +755,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
467
755
|
hashCode(): number;
|
|
468
756
|
equals(other: Nullable<any>): boolean;
|
|
469
757
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
470
|
-
|
|
471
|
-
|
|
758
|
+
}
|
|
759
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
760
|
+
namespace GallagherController.$metadata$ {
|
|
761
|
+
const constructor: abstract new () => GallagherController;
|
|
762
|
+
}
|
|
763
|
+
namespace GallagherController {
|
|
764
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
765
|
+
private constructor();
|
|
766
|
+
}
|
|
767
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
768
|
+
namespace Companion.$metadata$ {
|
|
769
|
+
abstract class constructor {
|
|
770
|
+
private constructor();
|
|
771
|
+
}
|
|
772
|
+
}
|
|
472
773
|
}
|
|
473
774
|
class GenetecController implements com.doordeck.multiplatform.sdk.model.data.Fusion.LockController {
|
|
474
775
|
constructor(baseUrl: string, username: string, password: string, doorId: string);
|
|
@@ -481,8 +782,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
481
782
|
hashCode(): number;
|
|
482
783
|
equals(other: Nullable<any>): boolean;
|
|
483
784
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
484
|
-
|
|
485
|
-
|
|
785
|
+
}
|
|
786
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
787
|
+
namespace GenetecController.$metadata$ {
|
|
788
|
+
const constructor: abstract new () => GenetecController;
|
|
789
|
+
}
|
|
790
|
+
namespace GenetecController {
|
|
791
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
792
|
+
private constructor();
|
|
793
|
+
}
|
|
794
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
795
|
+
namespace Companion.$metadata$ {
|
|
796
|
+
abstract class constructor {
|
|
797
|
+
private constructor();
|
|
798
|
+
}
|
|
799
|
+
}
|
|
486
800
|
}
|
|
487
801
|
class LenelController implements com.doordeck.multiplatform.sdk.model.data.Fusion.LockController {
|
|
488
802
|
constructor(baseUrl: string, username: string, password: string, directoryId: string, panelId: string, readerId: string);
|
|
@@ -497,8 +811,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
497
811
|
hashCode(): number;
|
|
498
812
|
equals(other: Nullable<any>): boolean;
|
|
499
813
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
500
|
-
|
|
501
|
-
|
|
814
|
+
}
|
|
815
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
816
|
+
namespace LenelController.$metadata$ {
|
|
817
|
+
const constructor: abstract new () => LenelController;
|
|
818
|
+
}
|
|
819
|
+
namespace LenelController {
|
|
820
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
821
|
+
private constructor();
|
|
822
|
+
}
|
|
823
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
824
|
+
namespace Companion.$metadata$ {
|
|
825
|
+
abstract class constructor {
|
|
826
|
+
private constructor();
|
|
827
|
+
}
|
|
828
|
+
}
|
|
502
829
|
}
|
|
503
830
|
class MitrefinchController implements com.doordeck.multiplatform.sdk.model.data.Fusion.LockController {
|
|
504
831
|
constructor(host: string, output: number);
|
|
@@ -509,8 +836,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
509
836
|
hashCode(): number;
|
|
510
837
|
equals(other: Nullable<any>): boolean;
|
|
511
838
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
512
|
-
|
|
513
|
-
|
|
839
|
+
}
|
|
840
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
841
|
+
namespace MitrefinchController.$metadata$ {
|
|
842
|
+
const constructor: abstract new () => MitrefinchController;
|
|
843
|
+
}
|
|
844
|
+
namespace MitrefinchController {
|
|
845
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
846
|
+
private constructor();
|
|
847
|
+
}
|
|
848
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
849
|
+
namespace Companion.$metadata$ {
|
|
850
|
+
abstract class constructor {
|
|
851
|
+
private constructor();
|
|
852
|
+
}
|
|
853
|
+
}
|
|
514
854
|
}
|
|
515
855
|
class PaxtonNet2Controller implements com.doordeck.multiplatform.sdk.model.data.Fusion.LockController {
|
|
516
856
|
constructor(host: string, username: Nullable<string> | undefined, password: Nullable<string> | undefined, address: string, output: number);
|
|
@@ -524,8 +864,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
524
864
|
hashCode(): number;
|
|
525
865
|
equals(other: Nullable<any>): boolean;
|
|
526
866
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
527
|
-
|
|
528
|
-
|
|
867
|
+
}
|
|
868
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
869
|
+
namespace PaxtonNet2Controller.$metadata$ {
|
|
870
|
+
const constructor: abstract new () => PaxtonNet2Controller;
|
|
871
|
+
}
|
|
872
|
+
namespace PaxtonNet2Controller {
|
|
873
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
874
|
+
private constructor();
|
|
875
|
+
}
|
|
876
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
877
|
+
namespace Companion.$metadata$ {
|
|
878
|
+
abstract class constructor {
|
|
879
|
+
private constructor();
|
|
880
|
+
}
|
|
881
|
+
}
|
|
529
882
|
}
|
|
530
883
|
class Paxton10Controller implements com.doordeck.multiplatform.sdk.model.data.Fusion.LockController {
|
|
531
884
|
constructor(baseUrl: string, username: string, password: string, applianceId: number);
|
|
@@ -538,8 +891,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
538
891
|
hashCode(): number;
|
|
539
892
|
equals(other: Nullable<any>): boolean;
|
|
540
893
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
541
|
-
|
|
542
|
-
|
|
894
|
+
}
|
|
895
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
896
|
+
namespace Paxton10Controller.$metadata$ {
|
|
897
|
+
const constructor: abstract new () => Paxton10Controller;
|
|
898
|
+
}
|
|
899
|
+
namespace Paxton10Controller {
|
|
900
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
901
|
+
private constructor();
|
|
902
|
+
}
|
|
903
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
904
|
+
namespace Companion.$metadata$ {
|
|
905
|
+
abstract class constructor {
|
|
906
|
+
private constructor();
|
|
907
|
+
}
|
|
908
|
+
}
|
|
543
909
|
}
|
|
544
910
|
class IntegraV1Controller implements com.doordeck.multiplatform.sdk.model.data.Fusion.LockController {
|
|
545
911
|
constructor(username: string, password: string, controllerId: number);
|
|
@@ -551,8 +917,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
551
917
|
hashCode(): number;
|
|
552
918
|
equals(other: Nullable<any>): boolean;
|
|
553
919
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
554
|
-
|
|
555
|
-
|
|
920
|
+
}
|
|
921
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
922
|
+
namespace IntegraV1Controller.$metadata$ {
|
|
923
|
+
const constructor: abstract new () => IntegraV1Controller;
|
|
924
|
+
}
|
|
925
|
+
namespace IntegraV1Controller {
|
|
926
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
927
|
+
private constructor();
|
|
928
|
+
}
|
|
929
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
930
|
+
namespace Companion.$metadata$ {
|
|
931
|
+
abstract class constructor {
|
|
932
|
+
private constructor();
|
|
933
|
+
}
|
|
934
|
+
}
|
|
556
935
|
}
|
|
557
936
|
class IntegraV2Controller implements com.doordeck.multiplatform.sdk.model.data.Fusion.LockController {
|
|
558
937
|
constructor(baseUrl: string, sessionId: string, controllerId: number, cardholderId: number, pinCode?: Nullable<number>);
|
|
@@ -566,8 +945,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
566
945
|
hashCode(): number;
|
|
567
946
|
equals(other: Nullable<any>): boolean;
|
|
568
947
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
569
|
-
|
|
570
|
-
|
|
948
|
+
}
|
|
949
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
950
|
+
namespace IntegraV2Controller.$metadata$ {
|
|
951
|
+
const constructor: abstract new () => IntegraV2Controller;
|
|
952
|
+
}
|
|
953
|
+
namespace IntegraV2Controller {
|
|
954
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
955
|
+
private constructor();
|
|
956
|
+
}
|
|
957
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
958
|
+
namespace Companion.$metadata$ {
|
|
959
|
+
abstract class constructor {
|
|
960
|
+
private constructor();
|
|
961
|
+
}
|
|
962
|
+
}
|
|
571
963
|
}
|
|
572
964
|
class PacController implements com.doordeck.multiplatform.sdk.model.data.Fusion.LockController {
|
|
573
965
|
constructor(dataSource: com.doordeck.multiplatform.sdk.model.data.Fusion.DataSource, outputChannel: number, controllerSerial: number);
|
|
@@ -579,8 +971,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
579
971
|
hashCode(): number;
|
|
580
972
|
equals(other: Nullable<any>): boolean;
|
|
581
973
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
582
|
-
|
|
583
|
-
|
|
974
|
+
}
|
|
975
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
976
|
+
namespace PacController.$metadata$ {
|
|
977
|
+
const constructor: abstract new () => PacController;
|
|
978
|
+
}
|
|
979
|
+
namespace PacController {
|
|
980
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
981
|
+
private constructor();
|
|
982
|
+
}
|
|
983
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
984
|
+
namespace Companion.$metadata$ {
|
|
985
|
+
abstract class constructor {
|
|
986
|
+
private constructor();
|
|
987
|
+
}
|
|
988
|
+
}
|
|
584
989
|
}
|
|
585
990
|
class DataSource {
|
|
586
991
|
constructor(driverClass: string, url: string, user: string, password: string);
|
|
@@ -592,8 +997,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
592
997
|
toString(): string;
|
|
593
998
|
hashCode(): number;
|
|
594
999
|
equals(other: Nullable<any>): boolean;
|
|
595
|
-
|
|
596
|
-
|
|
1000
|
+
}
|
|
1001
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1002
|
+
namespace DataSource.$metadata$ {
|
|
1003
|
+
const constructor: abstract new () => DataSource;
|
|
1004
|
+
}
|
|
1005
|
+
namespace DataSource {
|
|
1006
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1007
|
+
private constructor();
|
|
1008
|
+
}
|
|
1009
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1010
|
+
namespace Companion.$metadata$ {
|
|
1011
|
+
abstract class constructor {
|
|
1012
|
+
private constructor();
|
|
1013
|
+
}
|
|
1014
|
+
}
|
|
597
1015
|
}
|
|
598
1016
|
class TdsiExgardeController implements com.doordeck.multiplatform.sdk.model.data.Fusion.LockController {
|
|
599
1017
|
constructor(dbUrl: Nullable<string> | undefined, username: string, password: string, doorId: number);
|
|
@@ -606,8 +1024,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
606
1024
|
hashCode(): number;
|
|
607
1025
|
equals(other: Nullable<any>): boolean;
|
|
608
1026
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
609
|
-
|
|
610
|
-
|
|
1027
|
+
}
|
|
1028
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1029
|
+
namespace TdsiExgardeController.$metadata$ {
|
|
1030
|
+
const constructor: abstract new () => TdsiExgardeController;
|
|
1031
|
+
}
|
|
1032
|
+
namespace TdsiExgardeController {
|
|
1033
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1034
|
+
private constructor();
|
|
1035
|
+
}
|
|
1036
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1037
|
+
namespace Companion.$metadata$ {
|
|
1038
|
+
abstract class constructor {
|
|
1039
|
+
private constructor();
|
|
1040
|
+
}
|
|
1041
|
+
}
|
|
611
1042
|
}
|
|
612
1043
|
class TdsiGardisController implements com.doordeck.multiplatform.sdk.model.data.Fusion.LockController {
|
|
613
1044
|
constructor(host: string, username: string, password: string, doorId: number);
|
|
@@ -620,8 +1051,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
620
1051
|
hashCode(): number;
|
|
621
1052
|
equals(other: Nullable<any>): boolean;
|
|
622
1053
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
623
|
-
|
|
624
|
-
|
|
1054
|
+
}
|
|
1055
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1056
|
+
namespace TdsiGardisController.$metadata$ {
|
|
1057
|
+
const constructor: abstract new () => TdsiGardisController;
|
|
1058
|
+
}
|
|
1059
|
+
namespace TdsiGardisController {
|
|
1060
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1061
|
+
private constructor();
|
|
1062
|
+
}
|
|
1063
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1064
|
+
namespace Companion.$metadata$ {
|
|
1065
|
+
abstract class constructor {
|
|
1066
|
+
private constructor();
|
|
1067
|
+
}
|
|
1068
|
+
}
|
|
625
1069
|
}
|
|
626
1070
|
class ZktecoController implements com.doordeck.multiplatform.sdk.model.data.Fusion.LockController {
|
|
627
1071
|
constructor(clientSecret: string, doorId: string, baseUrl: Nullable<string> | undefined, entityType: com.doordeck.multiplatform.sdk.model.data.Fusion.ZktecoEntityType);
|
|
@@ -634,8 +1078,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
634
1078
|
hashCode(): number;
|
|
635
1079
|
equals(other: Nullable<any>): boolean;
|
|
636
1080
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.Fusion.LockController["__doNotUseOrImplementIt"];
|
|
637
|
-
|
|
638
|
-
|
|
1081
|
+
}
|
|
1082
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1083
|
+
namespace ZktecoController.$metadata$ {
|
|
1084
|
+
const constructor: abstract new () => ZktecoController;
|
|
1085
|
+
}
|
|
1086
|
+
namespace ZktecoController {
|
|
1087
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1088
|
+
private constructor();
|
|
1089
|
+
}
|
|
1090
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1091
|
+
namespace Companion.$metadata$ {
|
|
1092
|
+
abstract class constructor {
|
|
1093
|
+
private constructor();
|
|
1094
|
+
}
|
|
1095
|
+
}
|
|
639
1096
|
}
|
|
640
1097
|
abstract class ZktecoEntityType {
|
|
641
1098
|
private constructor();
|
|
@@ -651,13 +1108,32 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
651
1108
|
get ordinal(): 0 | 1;
|
|
652
1109
|
static values(): Array<com.doordeck.multiplatform.sdk.model.data.Fusion.ZktecoEntityType>;
|
|
653
1110
|
static valueOf(value: string): com.doordeck.multiplatform.sdk.model.data.Fusion.ZktecoEntityType;
|
|
654
|
-
|
|
655
|
-
|
|
1111
|
+
}
|
|
1112
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1113
|
+
namespace ZktecoEntityType.$metadata$ {
|
|
1114
|
+
const constructor: abstract new () => ZktecoEntityType;
|
|
1115
|
+
}
|
|
1116
|
+
namespace ZktecoEntityType {
|
|
1117
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1118
|
+
private constructor();
|
|
1119
|
+
}
|
|
1120
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1121
|
+
namespace Companion.$metadata$ {
|
|
1122
|
+
abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
|
|
1123
|
+
private constructor();
|
|
1124
|
+
}
|
|
1125
|
+
}
|
|
1126
|
+
}
|
|
1127
|
+
}
|
|
1128
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1129
|
+
namespace Fusion.$metadata$ {
|
|
1130
|
+
abstract class constructor {
|
|
1131
|
+
private constructor();
|
|
656
1132
|
}
|
|
657
1133
|
}
|
|
658
1134
|
}
|
|
659
1135
|
export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
660
|
-
abstract class LockOperations {
|
|
1136
|
+
abstract class LockOperations extends KtSingleton<LockOperations.$metadata$.constructor>() {
|
|
661
1137
|
private constructor();
|
|
662
1138
|
}
|
|
663
1139
|
namespace LockOperations {
|
|
@@ -672,6 +1148,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
672
1148
|
hashCode(): number;
|
|
673
1149
|
equals(other: Nullable<any>): boolean;
|
|
674
1150
|
}
|
|
1151
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1152
|
+
namespace TimeRequirement.$metadata$ {
|
|
1153
|
+
const constructor: abstract new () => TimeRequirement;
|
|
1154
|
+
}
|
|
675
1155
|
namespace TimeRequirement {
|
|
676
1156
|
class Builder {
|
|
677
1157
|
constructor();
|
|
@@ -681,6 +1161,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
681
1161
|
setDays(days: kotlin.collections.KtList<string>): com.doordeck.multiplatform.sdk.model.data.LockOperations.TimeRequirement.Builder;
|
|
682
1162
|
build(): com.doordeck.multiplatform.sdk.model.data.LockOperations.TimeRequirement;
|
|
683
1163
|
}
|
|
1164
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1165
|
+
namespace Builder.$metadata$ {
|
|
1166
|
+
const constructor: abstract new () => Builder;
|
|
1167
|
+
}
|
|
684
1168
|
}
|
|
685
1169
|
class LocationRequirement {
|
|
686
1170
|
constructor(latitude: number, longitude: number, enabled?: boolean, radius?: number, accuracy?: number);
|
|
@@ -694,6 +1178,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
694
1178
|
hashCode(): number;
|
|
695
1179
|
equals(other: Nullable<any>): boolean;
|
|
696
1180
|
}
|
|
1181
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1182
|
+
namespace LocationRequirement.$metadata$ {
|
|
1183
|
+
const constructor: abstract new () => LocationRequirement;
|
|
1184
|
+
}
|
|
697
1185
|
namespace LocationRequirement {
|
|
698
1186
|
class Builder {
|
|
699
1187
|
constructor();
|
|
@@ -704,6 +1192,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
704
1192
|
setAccuracy(accuracy: number): com.doordeck.multiplatform.sdk.model.data.LockOperations.LocationRequirement.Builder;
|
|
705
1193
|
build(): com.doordeck.multiplatform.sdk.model.data.LockOperations.LocationRequirement;
|
|
706
1194
|
}
|
|
1195
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1196
|
+
namespace Builder.$metadata$ {
|
|
1197
|
+
const constructor: abstract new () => Builder;
|
|
1198
|
+
}
|
|
707
1199
|
}
|
|
708
1200
|
class UnlockBetween {
|
|
709
1201
|
constructor(start: string, end: string, timezone: string, days: kotlin.collections.KtList<string>, exceptions?: Nullable<kotlin.collections.KtList<string>>);
|
|
@@ -717,6 +1209,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
717
1209
|
hashCode(): number;
|
|
718
1210
|
equals(other: Nullable<any>): boolean;
|
|
719
1211
|
}
|
|
1212
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1213
|
+
namespace UnlockBetween.$metadata$ {
|
|
1214
|
+
const constructor: abstract new () => UnlockBetween;
|
|
1215
|
+
}
|
|
720
1216
|
namespace UnlockBetween {
|
|
721
1217
|
class Builder {
|
|
722
1218
|
constructor();
|
|
@@ -727,6 +1223,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
727
1223
|
setExceptions(exceptions: Nullable<kotlin.collections.KtList<string>>): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockBetween.Builder;
|
|
728
1224
|
build(): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockBetween;
|
|
729
1225
|
}
|
|
1226
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1227
|
+
namespace Builder.$metadata$ {
|
|
1228
|
+
const constructor: abstract new () => Builder;
|
|
1229
|
+
}
|
|
730
1230
|
}
|
|
731
1231
|
class UnlockOperation implements com.doordeck.multiplatform.sdk.model.data.LockOperations.Operation {
|
|
732
1232
|
constructor(baseOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation, directAccessEndpoints?: Nullable<kotlin.collections.KtList<string>>);
|
|
@@ -738,6 +1238,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
738
1238
|
equals(other: Nullable<any>): boolean;
|
|
739
1239
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.LockOperations.Operation["__doNotUseOrImplementIt"];
|
|
740
1240
|
}
|
|
1241
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1242
|
+
namespace UnlockOperation.$metadata$ {
|
|
1243
|
+
const constructor: abstract new () => UnlockOperation;
|
|
1244
|
+
}
|
|
741
1245
|
namespace UnlockOperation {
|
|
742
1246
|
class Builder {
|
|
743
1247
|
constructor();
|
|
@@ -745,6 +1249,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
745
1249
|
setDirectAccessEndpoints(directAccessEndpoints: Nullable<kotlin.collections.KtList<string>>): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockOperation.Builder;
|
|
746
1250
|
build(): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockOperation;
|
|
747
1251
|
}
|
|
1252
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1253
|
+
namespace Builder.$metadata$ {
|
|
1254
|
+
const constructor: abstract new () => Builder;
|
|
1255
|
+
}
|
|
748
1256
|
}
|
|
749
1257
|
class ShareLockOperation implements com.doordeck.multiplatform.sdk.model.data.LockOperations.Operation {
|
|
750
1258
|
constructor(baseOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation, shareLock: com.doordeck.multiplatform.sdk.model.data.LockOperations.ShareLock);
|
|
@@ -756,6 +1264,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
756
1264
|
equals(other: Nullable<any>): boolean;
|
|
757
1265
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.LockOperations.Operation["__doNotUseOrImplementIt"];
|
|
758
1266
|
}
|
|
1267
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1268
|
+
namespace ShareLockOperation.$metadata$ {
|
|
1269
|
+
const constructor: abstract new () => ShareLockOperation;
|
|
1270
|
+
}
|
|
759
1271
|
namespace ShareLockOperation {
|
|
760
1272
|
class Builder {
|
|
761
1273
|
constructor();
|
|
@@ -763,6 +1275,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
763
1275
|
setShareLock(shareLock: com.doordeck.multiplatform.sdk.model.data.LockOperations.ShareLock): com.doordeck.multiplatform.sdk.model.data.LockOperations.ShareLockOperation.Builder;
|
|
764
1276
|
build(): com.doordeck.multiplatform.sdk.model.data.LockOperations.ShareLockOperation;
|
|
765
1277
|
}
|
|
1278
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1279
|
+
namespace Builder.$metadata$ {
|
|
1280
|
+
const constructor: abstract new () => Builder;
|
|
1281
|
+
}
|
|
766
1282
|
}
|
|
767
1283
|
class ShareLock {
|
|
768
1284
|
constructor(targetUserId: string, targetUserRole: com.doordeck.multiplatform.sdk.model.common.UserRole, targetUserPublicKey: Int8Array, start?: Nullable<number>, end?: Nullable<number>);
|
|
@@ -776,6 +1292,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
776
1292
|
hashCode(): number;
|
|
777
1293
|
equals(other: Nullable<any>): boolean;
|
|
778
1294
|
}
|
|
1295
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1296
|
+
namespace ShareLock.$metadata$ {
|
|
1297
|
+
const constructor: abstract new () => ShareLock;
|
|
1298
|
+
}
|
|
779
1299
|
namespace ShareLock {
|
|
780
1300
|
class Builder {
|
|
781
1301
|
constructor();
|
|
@@ -786,6 +1306,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
786
1306
|
setEnd(end: Nullable<number>): com.doordeck.multiplatform.sdk.model.data.LockOperations.ShareLock.Builder;
|
|
787
1307
|
build(): com.doordeck.multiplatform.sdk.model.data.LockOperations.ShareLock;
|
|
788
1308
|
}
|
|
1309
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1310
|
+
namespace Builder.$metadata$ {
|
|
1311
|
+
const constructor: abstract new () => Builder;
|
|
1312
|
+
}
|
|
789
1313
|
}
|
|
790
1314
|
class BatchShareLockOperation implements com.doordeck.multiplatform.sdk.model.data.LockOperations.Operation {
|
|
791
1315
|
constructor(baseOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation, users: kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.data.LockOperations.ShareLock>);
|
|
@@ -797,6 +1321,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
797
1321
|
equals(other: Nullable<any>): boolean;
|
|
798
1322
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.LockOperations.Operation["__doNotUseOrImplementIt"];
|
|
799
1323
|
}
|
|
1324
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1325
|
+
namespace BatchShareLockOperation.$metadata$ {
|
|
1326
|
+
const constructor: abstract new () => BatchShareLockOperation;
|
|
1327
|
+
}
|
|
800
1328
|
namespace BatchShareLockOperation {
|
|
801
1329
|
class Builder {
|
|
802
1330
|
constructor();
|
|
@@ -804,6 +1332,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
804
1332
|
setUsers(users: kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.data.LockOperations.ShareLock>): com.doordeck.multiplatform.sdk.model.data.LockOperations.BatchShareLockOperation.Builder;
|
|
805
1333
|
build(): com.doordeck.multiplatform.sdk.model.data.LockOperations.BatchShareLockOperation;
|
|
806
1334
|
}
|
|
1335
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1336
|
+
namespace Builder.$metadata$ {
|
|
1337
|
+
const constructor: abstract new () => Builder;
|
|
1338
|
+
}
|
|
807
1339
|
}
|
|
808
1340
|
class RevokeAccessToLockOperation implements com.doordeck.multiplatform.sdk.model.data.LockOperations.Operation {
|
|
809
1341
|
constructor(baseOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation, users: kotlin.collections.KtList<string>);
|
|
@@ -815,6 +1347,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
815
1347
|
equals(other: Nullable<any>): boolean;
|
|
816
1348
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.LockOperations.Operation["__doNotUseOrImplementIt"];
|
|
817
1349
|
}
|
|
1350
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1351
|
+
namespace RevokeAccessToLockOperation.$metadata$ {
|
|
1352
|
+
const constructor: abstract new () => RevokeAccessToLockOperation;
|
|
1353
|
+
}
|
|
818
1354
|
namespace RevokeAccessToLockOperation {
|
|
819
1355
|
class Builder {
|
|
820
1356
|
constructor();
|
|
@@ -822,6 +1358,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
822
1358
|
setUsers(users: kotlin.collections.KtList<string>): com.doordeck.multiplatform.sdk.model.data.LockOperations.RevokeAccessToLockOperation.Builder;
|
|
823
1359
|
build(): com.doordeck.multiplatform.sdk.model.data.LockOperations.RevokeAccessToLockOperation;
|
|
824
1360
|
}
|
|
1361
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1362
|
+
namespace Builder.$metadata$ {
|
|
1363
|
+
const constructor: abstract new () => Builder;
|
|
1364
|
+
}
|
|
825
1365
|
}
|
|
826
1366
|
class UpdateSecureSettingUnlockDuration implements com.doordeck.multiplatform.sdk.model.data.LockOperations.Operation {
|
|
827
1367
|
constructor(baseOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation, unlockDuration: number);
|
|
@@ -833,6 +1373,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
833
1373
|
equals(other: Nullable<any>): boolean;
|
|
834
1374
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.LockOperations.Operation["__doNotUseOrImplementIt"];
|
|
835
1375
|
}
|
|
1376
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1377
|
+
namespace UpdateSecureSettingUnlockDuration.$metadata$ {
|
|
1378
|
+
const constructor: abstract new () => UpdateSecureSettingUnlockDuration;
|
|
1379
|
+
}
|
|
836
1380
|
namespace UpdateSecureSettingUnlockDuration {
|
|
837
1381
|
class Builder {
|
|
838
1382
|
constructor();
|
|
@@ -840,6 +1384,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
840
1384
|
setUnlockDuration(unlockDuration: number): com.doordeck.multiplatform.sdk.model.data.LockOperations.UpdateSecureSettingUnlockDuration.Builder;
|
|
841
1385
|
build(): com.doordeck.multiplatform.sdk.model.data.LockOperations.UpdateSecureSettingUnlockDuration;
|
|
842
1386
|
}
|
|
1387
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1388
|
+
namespace Builder.$metadata$ {
|
|
1389
|
+
const constructor: abstract new () => Builder;
|
|
1390
|
+
}
|
|
843
1391
|
}
|
|
844
1392
|
class UpdateSecureSettingUnlockBetween implements com.doordeck.multiplatform.sdk.model.data.LockOperations.Operation {
|
|
845
1393
|
constructor(baseOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation, unlockBetween?: Nullable<com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockBetween>);
|
|
@@ -851,6 +1399,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
851
1399
|
equals(other: Nullable<any>): boolean;
|
|
852
1400
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.LockOperations.Operation["__doNotUseOrImplementIt"];
|
|
853
1401
|
}
|
|
1402
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1403
|
+
namespace UpdateSecureSettingUnlockBetween.$metadata$ {
|
|
1404
|
+
const constructor: abstract new () => UpdateSecureSettingUnlockBetween;
|
|
1405
|
+
}
|
|
854
1406
|
namespace UpdateSecureSettingUnlockBetween {
|
|
855
1407
|
class Builder {
|
|
856
1408
|
constructor();
|
|
@@ -858,6 +1410,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
858
1410
|
setUnlockBetween(unlockBetween: Nullable<com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockBetween>): com.doordeck.multiplatform.sdk.model.data.LockOperations.UpdateSecureSettingUnlockBetween.Builder;
|
|
859
1411
|
build(): com.doordeck.multiplatform.sdk.model.data.LockOperations.UpdateSecureSettingUnlockBetween;
|
|
860
1412
|
}
|
|
1413
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1414
|
+
namespace Builder.$metadata$ {
|
|
1415
|
+
const constructor: abstract new () => Builder;
|
|
1416
|
+
}
|
|
861
1417
|
}
|
|
862
1418
|
class BaseOperation {
|
|
863
1419
|
constructor(userId: Nullable<string> | undefined, userCertificateChain: Nullable<kotlin.collections.KtList<string>> | undefined, userPrivateKey: Nullable<Int8Array> | undefined, lockId: string, notBefore?: number, issuedAt?: number, expiresAt?: number, jti?: string);
|
|
@@ -874,6 +1430,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
874
1430
|
hashCode(): number;
|
|
875
1431
|
equals(other: Nullable<any>): boolean;
|
|
876
1432
|
}
|
|
1433
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1434
|
+
namespace BaseOperation.$metadata$ {
|
|
1435
|
+
const constructor: abstract new () => BaseOperation;
|
|
1436
|
+
}
|
|
877
1437
|
namespace BaseOperation {
|
|
878
1438
|
class Builder {
|
|
879
1439
|
constructor();
|
|
@@ -887,6 +1447,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
887
1447
|
setJti(jti: string): com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation.Builder;
|
|
888
1448
|
build(): com.doordeck.multiplatform.sdk.model.data.LockOperations.BaseOperation;
|
|
889
1449
|
}
|
|
1450
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1451
|
+
namespace Builder.$metadata$ {
|
|
1452
|
+
const constructor: abstract new () => Builder;
|
|
1453
|
+
}
|
|
890
1454
|
}
|
|
891
1455
|
interface Operation {
|
|
892
1456
|
readonly __doNotUseOrImplementIt: {
|
|
@@ -894,9 +1458,15 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
894
1458
|
};
|
|
895
1459
|
}
|
|
896
1460
|
}
|
|
1461
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1462
|
+
namespace LockOperations.$metadata$ {
|
|
1463
|
+
abstract class constructor {
|
|
1464
|
+
private constructor();
|
|
1465
|
+
}
|
|
1466
|
+
}
|
|
897
1467
|
}
|
|
898
1468
|
export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
899
|
-
abstract class Platform {
|
|
1469
|
+
abstract class Platform extends KtSingleton<Platform.$metadata$.constructor>() {
|
|
900
1470
|
private constructor();
|
|
901
1471
|
}
|
|
902
1472
|
namespace Platform {
|
|
@@ -915,6 +1485,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
915
1485
|
hashCode(): number;
|
|
916
1486
|
equals(other: Nullable<any>): boolean;
|
|
917
1487
|
}
|
|
1488
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1489
|
+
namespace CreateApplication.$metadata$ {
|
|
1490
|
+
const constructor: abstract new () => CreateApplication;
|
|
1491
|
+
}
|
|
918
1492
|
namespace CreateApplication {
|
|
919
1493
|
class Builder {
|
|
920
1494
|
constructor();
|
|
@@ -928,6 +1502,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
928
1502
|
setLogoUrl(logoUrl: Nullable<string>): com.doordeck.multiplatform.sdk.model.data.Platform.CreateApplication.Builder;
|
|
929
1503
|
build(): com.doordeck.multiplatform.sdk.model.data.Platform.CreateApplication;
|
|
930
1504
|
}
|
|
1505
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1506
|
+
namespace Builder.$metadata$ {
|
|
1507
|
+
const constructor: abstract new () => Builder;
|
|
1508
|
+
}
|
|
931
1509
|
}
|
|
932
1510
|
class EmailPreferences {
|
|
933
1511
|
constructor(senderEmail?: Nullable<string>, senderName?: Nullable<string>, primaryColour?: Nullable<string>, secondaryColour?: Nullable<string>, onlySendEssentialEmails?: Nullable<boolean>, callToAction?: Nullable<com.doordeck.multiplatform.sdk.model.data.Platform.EmailCallToAction>);
|
|
@@ -942,6 +1520,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
942
1520
|
hashCode(): number;
|
|
943
1521
|
equals(other: Nullable<any>): boolean;
|
|
944
1522
|
}
|
|
1523
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1524
|
+
namespace EmailPreferences.$metadata$ {
|
|
1525
|
+
const constructor: abstract new () => EmailPreferences;
|
|
1526
|
+
}
|
|
945
1527
|
namespace EmailPreferences {
|
|
946
1528
|
class Builder {
|
|
947
1529
|
constructor();
|
|
@@ -953,6 +1535,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
953
1535
|
setCallToAction(callToAction: Nullable<com.doordeck.multiplatform.sdk.model.data.Platform.EmailCallToAction>): com.doordeck.multiplatform.sdk.model.data.Platform.EmailPreferences.Builder;
|
|
954
1536
|
build(): com.doordeck.multiplatform.sdk.model.data.Platform.EmailPreferences;
|
|
955
1537
|
}
|
|
1538
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1539
|
+
namespace Builder.$metadata$ {
|
|
1540
|
+
const constructor: abstract new () => Builder;
|
|
1541
|
+
}
|
|
956
1542
|
}
|
|
957
1543
|
class EmailCallToAction {
|
|
958
1544
|
constructor(actionTarget: string, headline: string, actionText: string);
|
|
@@ -964,6 +1550,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
964
1550
|
hashCode(): number;
|
|
965
1551
|
equals(other: Nullable<any>): boolean;
|
|
966
1552
|
}
|
|
1553
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1554
|
+
namespace EmailCallToAction.$metadata$ {
|
|
1555
|
+
const constructor: abstract new () => EmailCallToAction;
|
|
1556
|
+
}
|
|
967
1557
|
namespace EmailCallToAction {
|
|
968
1558
|
class Builder {
|
|
969
1559
|
constructor();
|
|
@@ -972,6 +1562,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
972
1562
|
setActionText(actionText: string): com.doordeck.multiplatform.sdk.model.data.Platform.EmailCallToAction.Builder;
|
|
973
1563
|
build(): com.doordeck.multiplatform.sdk.model.data.Platform.EmailCallToAction;
|
|
974
1564
|
}
|
|
1565
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1566
|
+
namespace Builder.$metadata$ {
|
|
1567
|
+
const constructor: abstract new () => Builder;
|
|
1568
|
+
}
|
|
975
1569
|
}
|
|
976
1570
|
interface AuthKey {
|
|
977
1571
|
readonly kid: string;
|
|
@@ -1002,6 +1596,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
1002
1596
|
equals(other: Nullable<any>): boolean;
|
|
1003
1597
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.Platform.AuthKey["__doNotUseOrImplementIt"];
|
|
1004
1598
|
}
|
|
1599
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1600
|
+
namespace RsaKey.$metadata$ {
|
|
1601
|
+
const constructor: abstract new () => RsaKey;
|
|
1602
|
+
}
|
|
1005
1603
|
namespace RsaKey {
|
|
1006
1604
|
class Builder {
|
|
1007
1605
|
constructor();
|
|
@@ -1019,6 +1617,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
1019
1617
|
setN(n: string): com.doordeck.multiplatform.sdk.model.data.Platform.RsaKey.Builder;
|
|
1020
1618
|
build(): com.doordeck.multiplatform.sdk.model.data.Platform.RsaKey;
|
|
1021
1619
|
}
|
|
1620
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1621
|
+
namespace Builder.$metadata$ {
|
|
1622
|
+
const constructor: abstract new () => Builder;
|
|
1623
|
+
}
|
|
1022
1624
|
}
|
|
1023
1625
|
class EcKey implements com.doordeck.multiplatform.sdk.model.data.Platform.AuthKey {
|
|
1024
1626
|
constructor(kty: string | undefined, use: string, kid: string, alg: Nullable<string> | undefined, d: string, crv: string, x: string, y: string);
|
|
@@ -1036,6 +1638,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
1036
1638
|
equals(other: Nullable<any>): boolean;
|
|
1037
1639
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.Platform.AuthKey["__doNotUseOrImplementIt"];
|
|
1038
1640
|
}
|
|
1641
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1642
|
+
namespace EcKey.$metadata$ {
|
|
1643
|
+
const constructor: abstract new () => EcKey;
|
|
1644
|
+
}
|
|
1039
1645
|
namespace EcKey {
|
|
1040
1646
|
class Builder {
|
|
1041
1647
|
constructor();
|
|
@@ -1049,6 +1655,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
1049
1655
|
setY(y: string): com.doordeck.multiplatform.sdk.model.data.Platform.EcKey.Builder;
|
|
1050
1656
|
build(): com.doordeck.multiplatform.sdk.model.data.Platform.EcKey;
|
|
1051
1657
|
}
|
|
1658
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1659
|
+
namespace Builder.$metadata$ {
|
|
1660
|
+
const constructor: abstract new () => Builder;
|
|
1661
|
+
}
|
|
1052
1662
|
}
|
|
1053
1663
|
class Ed25519Key implements com.doordeck.multiplatform.sdk.model.data.Platform.AuthKey {
|
|
1054
1664
|
constructor(kty: string | undefined, use: string, kid: string, alg: Nullable<string> | undefined, d: string, crv: string, x: string);
|
|
@@ -1065,6 +1675,10 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
1065
1675
|
equals(other: Nullable<any>): boolean;
|
|
1066
1676
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.data.Platform.AuthKey["__doNotUseOrImplementIt"];
|
|
1067
1677
|
}
|
|
1678
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1679
|
+
namespace Ed25519Key.$metadata$ {
|
|
1680
|
+
const constructor: abstract new () => Ed25519Key;
|
|
1681
|
+
}
|
|
1068
1682
|
namespace Ed25519Key {
|
|
1069
1683
|
class Builder {
|
|
1070
1684
|
constructor();
|
|
@@ -1077,6 +1691,16 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
1077
1691
|
setX(x: string): com.doordeck.multiplatform.sdk.model.data.Platform.Ed25519Key.Builder;
|
|
1078
1692
|
build(): com.doordeck.multiplatform.sdk.model.data.Platform.Ed25519Key;
|
|
1079
1693
|
}
|
|
1694
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1695
|
+
namespace Builder.$metadata$ {
|
|
1696
|
+
const constructor: abstract new () => Builder;
|
|
1697
|
+
}
|
|
1698
|
+
}
|
|
1699
|
+
}
|
|
1700
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1701
|
+
namespace Platform.$metadata$ {
|
|
1702
|
+
abstract class constructor {
|
|
1703
|
+
private constructor();
|
|
1080
1704
|
}
|
|
1081
1705
|
}
|
|
1082
1706
|
}
|
|
@@ -1089,8 +1713,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1089
1713
|
toString(): string;
|
|
1090
1714
|
hashCode(): number;
|
|
1091
1715
|
equals(other: Nullable<any>): boolean;
|
|
1092
|
-
|
|
1093
|
-
|
|
1716
|
+
}
|
|
1717
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1718
|
+
namespace TokenResponse.$metadata$ {
|
|
1719
|
+
const constructor: abstract new () => TokenResponse;
|
|
1720
|
+
}
|
|
1721
|
+
namespace TokenResponse {
|
|
1722
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1723
|
+
private constructor();
|
|
1724
|
+
}
|
|
1725
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1726
|
+
namespace Companion.$metadata$ {
|
|
1727
|
+
abstract class constructor {
|
|
1728
|
+
private constructor();
|
|
1729
|
+
}
|
|
1730
|
+
}
|
|
1094
1731
|
}
|
|
1095
1732
|
class UserDetailsResponse {
|
|
1096
1733
|
constructor(email: string, displayName: Nullable<string> | undefined, emailVerified: boolean, publicKey: string);
|
|
@@ -1102,8 +1739,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1102
1739
|
toString(): string;
|
|
1103
1740
|
hashCode(): number;
|
|
1104
1741
|
equals(other: Nullable<any>): boolean;
|
|
1105
|
-
|
|
1106
|
-
|
|
1742
|
+
}
|
|
1743
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1744
|
+
namespace UserDetailsResponse.$metadata$ {
|
|
1745
|
+
const constructor: abstract new () => UserDetailsResponse;
|
|
1746
|
+
}
|
|
1747
|
+
namespace UserDetailsResponse {
|
|
1748
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1749
|
+
private constructor();
|
|
1750
|
+
}
|
|
1751
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1752
|
+
namespace Companion.$metadata$ {
|
|
1753
|
+
abstract class constructor {
|
|
1754
|
+
private constructor();
|
|
1755
|
+
}
|
|
1756
|
+
}
|
|
1107
1757
|
}
|
|
1108
1758
|
class RegisterEphemeralKeyResponse {
|
|
1109
1759
|
constructor(certificateChain: kotlin.collections.KtList<string>, userId: string);
|
|
@@ -1113,8 +1763,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1113
1763
|
toString(): string;
|
|
1114
1764
|
hashCode(): number;
|
|
1115
1765
|
equals(other: Nullable<any>): boolean;
|
|
1116
|
-
|
|
1117
|
-
|
|
1766
|
+
}
|
|
1767
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1768
|
+
namespace RegisterEphemeralKeyResponse.$metadata$ {
|
|
1769
|
+
const constructor: abstract new () => RegisterEphemeralKeyResponse;
|
|
1770
|
+
}
|
|
1771
|
+
namespace RegisterEphemeralKeyResponse {
|
|
1772
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1773
|
+
private constructor();
|
|
1774
|
+
}
|
|
1775
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1776
|
+
namespace Companion.$metadata$ {
|
|
1777
|
+
abstract class constructor {
|
|
1778
|
+
private constructor();
|
|
1779
|
+
}
|
|
1780
|
+
}
|
|
1118
1781
|
}
|
|
1119
1782
|
class RegisterEphemeralKeyWithSecondaryAuthenticationResponse {
|
|
1120
1783
|
constructor(method: com.doordeck.multiplatform.sdk.model.common.TwoFactorMethod);
|
|
@@ -1123,8 +1786,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1123
1786
|
toString(): string;
|
|
1124
1787
|
hashCode(): number;
|
|
1125
1788
|
equals(other: Nullable<any>): boolean;
|
|
1126
|
-
|
|
1127
|
-
|
|
1789
|
+
}
|
|
1790
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1791
|
+
namespace RegisterEphemeralKeyWithSecondaryAuthenticationResponse.$metadata$ {
|
|
1792
|
+
const constructor: abstract new () => RegisterEphemeralKeyWithSecondaryAuthenticationResponse;
|
|
1793
|
+
}
|
|
1794
|
+
namespace RegisterEphemeralKeyWithSecondaryAuthenticationResponse {
|
|
1795
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1796
|
+
private constructor();
|
|
1797
|
+
}
|
|
1798
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1799
|
+
namespace Companion.$metadata$ {
|
|
1800
|
+
abstract class constructor {
|
|
1801
|
+
private constructor();
|
|
1802
|
+
}
|
|
1803
|
+
}
|
|
1128
1804
|
}
|
|
1129
1805
|
}
|
|
1130
1806
|
export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
@@ -1135,18 +1811,44 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1135
1811
|
toString(): string;
|
|
1136
1812
|
hashCode(): number;
|
|
1137
1813
|
equals(other: Nullable<any>): boolean;
|
|
1138
|
-
static get Companion(): {
|
|
1139
|
-
};
|
|
1140
1814
|
}
|
|
1141
|
-
|
|
1142
|
-
|
|
1815
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1816
|
+
namespace FusionLoginResponse.$metadata$ {
|
|
1817
|
+
const constructor: abstract new () => FusionLoginResponse;
|
|
1818
|
+
}
|
|
1819
|
+
namespace FusionLoginResponse {
|
|
1820
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1821
|
+
private constructor();
|
|
1822
|
+
}
|
|
1823
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1824
|
+
namespace Companion.$metadata$ {
|
|
1825
|
+
abstract class constructor {
|
|
1826
|
+
private constructor();
|
|
1827
|
+
}
|
|
1828
|
+
}
|
|
1829
|
+
}
|
|
1830
|
+
class IntegrationTypeResponse {
|
|
1831
|
+
constructor(status?: Nullable<string>);
|
|
1143
1832
|
get status(): Nullable<string>;
|
|
1144
1833
|
copy(status?: Nullable<string>): com.doordeck.multiplatform.sdk.model.responses.IntegrationTypeResponse;
|
|
1145
1834
|
toString(): string;
|
|
1146
1835
|
hashCode(): number;
|
|
1147
1836
|
equals(other: Nullable<any>): boolean;
|
|
1148
|
-
|
|
1149
|
-
|
|
1837
|
+
}
|
|
1838
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1839
|
+
namespace IntegrationTypeResponse.$metadata$ {
|
|
1840
|
+
const constructor: abstract new () => IntegrationTypeResponse;
|
|
1841
|
+
}
|
|
1842
|
+
namespace IntegrationTypeResponse {
|
|
1843
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1844
|
+
private constructor();
|
|
1845
|
+
}
|
|
1846
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1847
|
+
namespace Companion.$metadata$ {
|
|
1848
|
+
abstract class constructor {
|
|
1849
|
+
private constructor();
|
|
1850
|
+
}
|
|
1851
|
+
}
|
|
1150
1852
|
}
|
|
1151
1853
|
class DoorStateResponse {
|
|
1152
1854
|
constructor(state: com.doordeck.multiplatform.sdk.model.responses.ServiceStateType);
|
|
@@ -1155,8 +1857,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1155
1857
|
toString(): string;
|
|
1156
1858
|
hashCode(): number;
|
|
1157
1859
|
equals(other: Nullable<any>): boolean;
|
|
1158
|
-
|
|
1159
|
-
|
|
1860
|
+
}
|
|
1861
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1862
|
+
namespace DoorStateResponse.$metadata$ {
|
|
1863
|
+
const constructor: abstract new () => DoorStateResponse;
|
|
1864
|
+
}
|
|
1865
|
+
namespace DoorStateResponse {
|
|
1866
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1867
|
+
private constructor();
|
|
1868
|
+
}
|
|
1869
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1870
|
+
namespace Companion.$metadata$ {
|
|
1871
|
+
abstract class constructor {
|
|
1872
|
+
private constructor();
|
|
1873
|
+
}
|
|
1874
|
+
}
|
|
1160
1875
|
}
|
|
1161
1876
|
class IntegrationConfigurationResponse {
|
|
1162
1877
|
constructor(doordeck?: Nullable<com.doordeck.multiplatform.sdk.model.responses.ControllerResponse>, service?: Nullable<com.doordeck.multiplatform.sdk.model.responses.ServiceStateResponse>, integration?: Nullable<com.doordeck.multiplatform.sdk.model.responses.DiscoveredDeviceResponse>);
|
|
@@ -1167,8 +1882,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1167
1882
|
toString(): string;
|
|
1168
1883
|
hashCode(): number;
|
|
1169
1884
|
equals(other: Nullable<any>): boolean;
|
|
1170
|
-
|
|
1171
|
-
|
|
1885
|
+
}
|
|
1886
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1887
|
+
namespace IntegrationConfigurationResponse.$metadata$ {
|
|
1888
|
+
const constructor: abstract new () => IntegrationConfigurationResponse;
|
|
1889
|
+
}
|
|
1890
|
+
namespace IntegrationConfigurationResponse {
|
|
1891
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1892
|
+
private constructor();
|
|
1893
|
+
}
|
|
1894
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1895
|
+
namespace Companion.$metadata$ {
|
|
1896
|
+
abstract class constructor {
|
|
1897
|
+
private constructor();
|
|
1898
|
+
}
|
|
1899
|
+
}
|
|
1172
1900
|
}
|
|
1173
1901
|
class ControllerResponse {
|
|
1174
1902
|
constructor(id: string, name?: Nullable<string>, role?: Nullable<com.doordeck.multiplatform.sdk.model.common.UserRole>);
|
|
@@ -1179,8 +1907,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1179
1907
|
toString(): string;
|
|
1180
1908
|
hashCode(): number;
|
|
1181
1909
|
equals(other: Nullable<any>): boolean;
|
|
1182
|
-
|
|
1183
|
-
|
|
1910
|
+
}
|
|
1911
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1912
|
+
namespace ControllerResponse.$metadata$ {
|
|
1913
|
+
const constructor: abstract new () => ControllerResponse;
|
|
1914
|
+
}
|
|
1915
|
+
namespace ControllerResponse {
|
|
1916
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1917
|
+
private constructor();
|
|
1918
|
+
}
|
|
1919
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1920
|
+
namespace Companion.$metadata$ {
|
|
1921
|
+
abstract class constructor {
|
|
1922
|
+
private constructor();
|
|
1923
|
+
}
|
|
1924
|
+
}
|
|
1184
1925
|
}
|
|
1185
1926
|
class ServiceStateResponse {
|
|
1186
1927
|
constructor(state: com.doordeck.multiplatform.sdk.model.responses.ServiceStateType);
|
|
@@ -1189,8 +1930,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1189
1930
|
toString(): string;
|
|
1190
1931
|
hashCode(): number;
|
|
1191
1932
|
equals(other: Nullable<any>): boolean;
|
|
1192
|
-
|
|
1193
|
-
|
|
1933
|
+
}
|
|
1934
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1935
|
+
namespace ServiceStateResponse.$metadata$ {
|
|
1936
|
+
const constructor: abstract new () => ServiceStateResponse;
|
|
1937
|
+
}
|
|
1938
|
+
namespace ServiceStateResponse {
|
|
1939
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1940
|
+
private constructor();
|
|
1941
|
+
}
|
|
1942
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1943
|
+
namespace Companion.$metadata$ {
|
|
1944
|
+
abstract class constructor {
|
|
1945
|
+
private constructor();
|
|
1946
|
+
}
|
|
1947
|
+
}
|
|
1194
1948
|
}
|
|
1195
1949
|
class DiscoveredDeviceResponse {
|
|
1196
1950
|
constructor(key: com.doordeck.multiplatform.sdk.model.data.Fusion.LockController, metadata: kotlin.collections.KtMap<string, string>);
|
|
@@ -1200,8 +1954,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1200
1954
|
toString(): string;
|
|
1201
1955
|
hashCode(): number;
|
|
1202
1956
|
equals(other: Nullable<any>): boolean;
|
|
1203
|
-
|
|
1204
|
-
|
|
1957
|
+
}
|
|
1958
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1959
|
+
namespace DiscoveredDeviceResponse.$metadata$ {
|
|
1960
|
+
const constructor: abstract new () => DiscoveredDeviceResponse;
|
|
1961
|
+
}
|
|
1962
|
+
namespace DiscoveredDeviceResponse {
|
|
1963
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1964
|
+
private constructor();
|
|
1965
|
+
}
|
|
1966
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1967
|
+
namespace Companion.$metadata$ {
|
|
1968
|
+
abstract class constructor {
|
|
1969
|
+
private constructor();
|
|
1970
|
+
}
|
|
1971
|
+
}
|
|
1205
1972
|
}
|
|
1206
1973
|
abstract class ServiceStateType {
|
|
1207
1974
|
private constructor();
|
|
@@ -1221,8 +1988,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1221
1988
|
get ordinal(): 0 | 1 | 2;
|
|
1222
1989
|
static values(): Array<com.doordeck.multiplatform.sdk.model.responses.ServiceStateType>;
|
|
1223
1990
|
static valueOf(value: string): com.doordeck.multiplatform.sdk.model.responses.ServiceStateType;
|
|
1224
|
-
|
|
1225
|
-
|
|
1991
|
+
}
|
|
1992
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1993
|
+
namespace ServiceStateType.$metadata$ {
|
|
1994
|
+
const constructor: abstract new () => ServiceStateType;
|
|
1995
|
+
}
|
|
1996
|
+
namespace ServiceStateType {
|
|
1997
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
1998
|
+
private constructor();
|
|
1999
|
+
}
|
|
2000
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2001
|
+
namespace Companion.$metadata$ {
|
|
2002
|
+
abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
|
|
2003
|
+
private constructor();
|
|
2004
|
+
}
|
|
2005
|
+
}
|
|
1226
2006
|
}
|
|
1227
2007
|
}
|
|
1228
2008
|
export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
@@ -1234,8 +2014,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1234
2014
|
toString(): string;
|
|
1235
2015
|
hashCode(): number;
|
|
1236
2016
|
equals(other: Nullable<any>): boolean;
|
|
1237
|
-
|
|
1238
|
-
|
|
2017
|
+
}
|
|
2018
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2019
|
+
namespace AssistedLoginResponse.$metadata$ {
|
|
2020
|
+
const constructor: abstract new () => AssistedLoginResponse;
|
|
2021
|
+
}
|
|
2022
|
+
namespace AssistedLoginResponse {
|
|
2023
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2024
|
+
private constructor();
|
|
2025
|
+
}
|
|
2026
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2027
|
+
namespace Companion.$metadata$ {
|
|
2028
|
+
abstract class constructor {
|
|
2029
|
+
private constructor();
|
|
2030
|
+
}
|
|
2031
|
+
}
|
|
1239
2032
|
}
|
|
1240
2033
|
class AssistedRegisterEphemeralKeyResponse {
|
|
1241
2034
|
constructor(requiresVerification: boolean, requiresRetry: boolean);
|
|
@@ -1245,8 +2038,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1245
2038
|
toString(): string;
|
|
1246
2039
|
hashCode(): number;
|
|
1247
2040
|
equals(other: Nullable<any>): boolean;
|
|
1248
|
-
|
|
1249
|
-
|
|
2041
|
+
}
|
|
2042
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2043
|
+
namespace AssistedRegisterEphemeralKeyResponse.$metadata$ {
|
|
2044
|
+
const constructor: abstract new () => AssistedRegisterEphemeralKeyResponse;
|
|
2045
|
+
}
|
|
2046
|
+
namespace AssistedRegisterEphemeralKeyResponse {
|
|
2047
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2048
|
+
private constructor();
|
|
2049
|
+
}
|
|
2050
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2051
|
+
namespace Companion.$metadata$ {
|
|
2052
|
+
abstract class constructor {
|
|
2053
|
+
private constructor();
|
|
2054
|
+
}
|
|
2055
|
+
}
|
|
1250
2056
|
}
|
|
1251
2057
|
}
|
|
1252
2058
|
export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
@@ -1266,8 +2072,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1266
2072
|
toString(): string;
|
|
1267
2073
|
hashCode(): number;
|
|
1268
2074
|
equals(other: Nullable<any>): boolean;
|
|
1269
|
-
|
|
1270
|
-
|
|
2075
|
+
}
|
|
2076
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2077
|
+
namespace LockResponse.$metadata$ {
|
|
2078
|
+
const constructor: abstract new () => LockResponse;
|
|
2079
|
+
}
|
|
2080
|
+
namespace LockResponse {
|
|
2081
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2082
|
+
private constructor();
|
|
2083
|
+
}
|
|
2084
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2085
|
+
namespace Companion.$metadata$ {
|
|
2086
|
+
abstract class constructor {
|
|
2087
|
+
private constructor();
|
|
2088
|
+
}
|
|
2089
|
+
}
|
|
1271
2090
|
}
|
|
1272
2091
|
class LockSettingsResponse {
|
|
1273
2092
|
constructor(unlockTime: number, permittedAddresses: kotlin.collections.KtList<string>, defaultName: string, usageRequirements: Nullable<com.doordeck.multiplatform.sdk.model.responses.UsageRequirementsResponse> | undefined, unlockBetweenWindow: Nullable<com.doordeck.multiplatform.sdk.model.responses.UnlockBetweenSettingResponse> | undefined, tiles: kotlin.collections.KtList<string>, hidden: boolean, directAccessEndpoints?: kotlin.collections.KtList<string>, capabilities?: kotlin.collections.KtMap<com.doordeck.multiplatform.sdk.model.common.CapabilityType, com.doordeck.multiplatform.sdk.model.common.CapabilityStatus>);
|
|
@@ -1284,8 +2103,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1284
2103
|
toString(): string;
|
|
1285
2104
|
hashCode(): number;
|
|
1286
2105
|
equals(other: Nullable<any>): boolean;
|
|
1287
|
-
|
|
1288
|
-
|
|
2106
|
+
}
|
|
2107
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2108
|
+
namespace LockSettingsResponse.$metadata$ {
|
|
2109
|
+
const constructor: abstract new () => LockSettingsResponse;
|
|
2110
|
+
}
|
|
2111
|
+
namespace LockSettingsResponse {
|
|
2112
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2113
|
+
private constructor();
|
|
2114
|
+
}
|
|
2115
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2116
|
+
namespace Companion.$metadata$ {
|
|
2117
|
+
abstract class constructor {
|
|
2118
|
+
private constructor();
|
|
2119
|
+
}
|
|
2120
|
+
}
|
|
1289
2121
|
}
|
|
1290
2122
|
class UsageRequirementsResponse {
|
|
1291
2123
|
constructor(time?: Nullable<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.TimeRequirementResponse>>, location?: Nullable<com.doordeck.multiplatform.sdk.model.responses.LocationRequirementResponse>);
|
|
@@ -1295,8 +2127,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1295
2127
|
toString(): string;
|
|
1296
2128
|
hashCode(): number;
|
|
1297
2129
|
equals(other: Nullable<any>): boolean;
|
|
1298
|
-
|
|
1299
|
-
|
|
2130
|
+
}
|
|
2131
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2132
|
+
namespace UsageRequirementsResponse.$metadata$ {
|
|
2133
|
+
const constructor: abstract new () => UsageRequirementsResponse;
|
|
2134
|
+
}
|
|
2135
|
+
namespace UsageRequirementsResponse {
|
|
2136
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2137
|
+
private constructor();
|
|
2138
|
+
}
|
|
2139
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2140
|
+
namespace Companion.$metadata$ {
|
|
2141
|
+
abstract class constructor {
|
|
2142
|
+
private constructor();
|
|
2143
|
+
}
|
|
2144
|
+
}
|
|
1300
2145
|
}
|
|
1301
2146
|
class TimeRequirementResponse {
|
|
1302
2147
|
constructor(start: string, end: string, timezone: string, days: kotlin.collections.KtList<string>);
|
|
@@ -1308,8 +2153,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1308
2153
|
toString(): string;
|
|
1309
2154
|
hashCode(): number;
|
|
1310
2155
|
equals(other: Nullable<any>): boolean;
|
|
1311
|
-
|
|
1312
|
-
|
|
2156
|
+
}
|
|
2157
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2158
|
+
namespace TimeRequirementResponse.$metadata$ {
|
|
2159
|
+
const constructor: abstract new () => TimeRequirementResponse;
|
|
2160
|
+
}
|
|
2161
|
+
namespace TimeRequirementResponse {
|
|
2162
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2163
|
+
private constructor();
|
|
2164
|
+
}
|
|
2165
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2166
|
+
namespace Companion.$metadata$ {
|
|
2167
|
+
abstract class constructor {
|
|
2168
|
+
private constructor();
|
|
2169
|
+
}
|
|
2170
|
+
}
|
|
1313
2171
|
}
|
|
1314
2172
|
class LocationRequirementResponse {
|
|
1315
2173
|
constructor(latitude: number, longitude: number, enabled: boolean, radius: number, accuracy: number);
|
|
@@ -1322,8 +2180,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1322
2180
|
toString(): string;
|
|
1323
2181
|
hashCode(): number;
|
|
1324
2182
|
equals(other: Nullable<any>): boolean;
|
|
1325
|
-
|
|
1326
|
-
|
|
2183
|
+
}
|
|
2184
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2185
|
+
namespace LocationRequirementResponse.$metadata$ {
|
|
2186
|
+
const constructor: abstract new () => LocationRequirementResponse;
|
|
2187
|
+
}
|
|
2188
|
+
namespace LocationRequirementResponse {
|
|
2189
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2190
|
+
private constructor();
|
|
2191
|
+
}
|
|
2192
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2193
|
+
namespace Companion.$metadata$ {
|
|
2194
|
+
abstract class constructor {
|
|
2195
|
+
private constructor();
|
|
2196
|
+
}
|
|
2197
|
+
}
|
|
1327
2198
|
}
|
|
1328
2199
|
class UnlockBetweenSettingResponse {
|
|
1329
2200
|
constructor(start: string, end: string, timezone: string, days: kotlin.collections.KtList<string>, exceptions?: Nullable<kotlin.collections.KtList<string>>);
|
|
@@ -1336,8 +2207,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1336
2207
|
toString(): string;
|
|
1337
2208
|
hashCode(): number;
|
|
1338
2209
|
equals(other: Nullable<any>): boolean;
|
|
1339
|
-
|
|
1340
|
-
|
|
2210
|
+
}
|
|
2211
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2212
|
+
namespace UnlockBetweenSettingResponse.$metadata$ {
|
|
2213
|
+
const constructor: abstract new () => UnlockBetweenSettingResponse;
|
|
2214
|
+
}
|
|
2215
|
+
namespace UnlockBetweenSettingResponse {
|
|
2216
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2217
|
+
private constructor();
|
|
2218
|
+
}
|
|
2219
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2220
|
+
namespace Companion.$metadata$ {
|
|
2221
|
+
abstract class constructor {
|
|
2222
|
+
private constructor();
|
|
2223
|
+
}
|
|
2224
|
+
}
|
|
1341
2225
|
}
|
|
1342
2226
|
class LockStateResponse {
|
|
1343
2227
|
constructor(locked: boolean, connected: boolean);
|
|
@@ -1347,8 +2231,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1347
2231
|
toString(): string;
|
|
1348
2232
|
hashCode(): number;
|
|
1349
2233
|
equals(other: Nullable<any>): boolean;
|
|
1350
|
-
|
|
1351
|
-
|
|
2234
|
+
}
|
|
2235
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2236
|
+
namespace LockStateResponse.$metadata$ {
|
|
2237
|
+
const constructor: abstract new () => LockStateResponse;
|
|
2238
|
+
}
|
|
2239
|
+
namespace LockStateResponse {
|
|
2240
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2241
|
+
private constructor();
|
|
2242
|
+
}
|
|
2243
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2244
|
+
namespace Companion.$metadata$ {
|
|
2245
|
+
abstract class constructor {
|
|
2246
|
+
private constructor();
|
|
2247
|
+
}
|
|
2248
|
+
}
|
|
1352
2249
|
}
|
|
1353
2250
|
class UserPublicKeyResponse {
|
|
1354
2251
|
constructor(id: string, publicKey: string);
|
|
@@ -1358,8 +2255,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1358
2255
|
toString(): string;
|
|
1359
2256
|
hashCode(): number;
|
|
1360
2257
|
equals(other: Nullable<any>): boolean;
|
|
1361
|
-
|
|
1362
|
-
|
|
2258
|
+
}
|
|
2259
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2260
|
+
namespace UserPublicKeyResponse.$metadata$ {
|
|
2261
|
+
const constructor: abstract new () => UserPublicKeyResponse;
|
|
2262
|
+
}
|
|
2263
|
+
namespace UserPublicKeyResponse {
|
|
2264
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2265
|
+
private constructor();
|
|
2266
|
+
}
|
|
2267
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2268
|
+
namespace Companion.$metadata$ {
|
|
2269
|
+
abstract class constructor {
|
|
2270
|
+
private constructor();
|
|
2271
|
+
}
|
|
2272
|
+
}
|
|
1363
2273
|
}
|
|
1364
2274
|
class BatchUserPublicKeyResponse {
|
|
1365
2275
|
constructor(id: string, email: Nullable<string> | undefined, foreignKey: Nullable<string> | undefined, phone: Nullable<string> | undefined, publicKey: string);
|
|
@@ -1372,8 +2282,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1372
2282
|
toString(): string;
|
|
1373
2283
|
hashCode(): number;
|
|
1374
2284
|
equals(other: Nullable<any>): boolean;
|
|
1375
|
-
|
|
1376
|
-
|
|
2285
|
+
}
|
|
2286
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2287
|
+
namespace BatchUserPublicKeyResponse.$metadata$ {
|
|
2288
|
+
const constructor: abstract new () => BatchUserPublicKeyResponse;
|
|
2289
|
+
}
|
|
2290
|
+
namespace BatchUserPublicKeyResponse {
|
|
2291
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2292
|
+
private constructor();
|
|
2293
|
+
}
|
|
2294
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2295
|
+
namespace Companion.$metadata$ {
|
|
2296
|
+
abstract class constructor {
|
|
2297
|
+
private constructor();
|
|
2298
|
+
}
|
|
2299
|
+
}
|
|
1377
2300
|
}
|
|
1378
2301
|
class ShareableLockResponse {
|
|
1379
2302
|
constructor(id: string, name: string);
|
|
@@ -1383,8 +2306,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1383
2306
|
toString(): string;
|
|
1384
2307
|
hashCode(): number;
|
|
1385
2308
|
equals(other: Nullable<any>): boolean;
|
|
1386
|
-
|
|
1387
|
-
|
|
2309
|
+
}
|
|
2310
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2311
|
+
namespace ShareableLockResponse.$metadata$ {
|
|
2312
|
+
const constructor: abstract new () => ShareableLockResponse;
|
|
2313
|
+
}
|
|
2314
|
+
namespace ShareableLockResponse {
|
|
2315
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2316
|
+
private constructor();
|
|
2317
|
+
}
|
|
2318
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2319
|
+
namespace Companion.$metadata$ {
|
|
2320
|
+
abstract class constructor {
|
|
2321
|
+
private constructor();
|
|
2322
|
+
}
|
|
2323
|
+
}
|
|
1388
2324
|
}
|
|
1389
2325
|
class UserLockResponse {
|
|
1390
2326
|
constructor(userId: string, email: string, publicKey: string, displayName: Nullable<string> | undefined, orphan: boolean, foreign: boolean, role: com.doordeck.multiplatform.sdk.model.common.UserRole, start?: Nullable<number>, end?: Nullable<number>);
|
|
@@ -1401,8 +2337,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1401
2337
|
toString(): string;
|
|
1402
2338
|
hashCode(): number;
|
|
1403
2339
|
equals(other: Nullable<any>): boolean;
|
|
1404
|
-
|
|
1405
|
-
|
|
2340
|
+
}
|
|
2341
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2342
|
+
namespace UserLockResponse.$metadata$ {
|
|
2343
|
+
const constructor: abstract new () => UserLockResponse;
|
|
2344
|
+
}
|
|
2345
|
+
namespace UserLockResponse {
|
|
2346
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2347
|
+
private constructor();
|
|
2348
|
+
}
|
|
2349
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2350
|
+
namespace Companion.$metadata$ {
|
|
2351
|
+
abstract class constructor {
|
|
2352
|
+
private constructor();
|
|
2353
|
+
}
|
|
2354
|
+
}
|
|
1406
2355
|
}
|
|
1407
2356
|
class LockUserResponse {
|
|
1408
2357
|
constructor(userId: string, email: string, publicKey: string, displayName: Nullable<string> | undefined, orphan: boolean, foreign: boolean, start: Nullable<number> | undefined, end: Nullable<number> | undefined, devices: kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.LockUserDetailsResponse>);
|
|
@@ -1419,8 +2368,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1419
2368
|
toString(): string;
|
|
1420
2369
|
hashCode(): number;
|
|
1421
2370
|
equals(other: Nullable<any>): boolean;
|
|
1422
|
-
|
|
1423
|
-
|
|
2371
|
+
}
|
|
2372
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2373
|
+
namespace LockUserResponse.$metadata$ {
|
|
2374
|
+
const constructor: abstract new () => LockUserResponse;
|
|
2375
|
+
}
|
|
2376
|
+
namespace LockUserResponse {
|
|
2377
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2378
|
+
private constructor();
|
|
2379
|
+
}
|
|
2380
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2381
|
+
namespace Companion.$metadata$ {
|
|
2382
|
+
abstract class constructor {
|
|
2383
|
+
private constructor();
|
|
2384
|
+
}
|
|
2385
|
+
}
|
|
1424
2386
|
}
|
|
1425
2387
|
class LockUserDetailsResponse {
|
|
1426
2388
|
constructor(deviceId: string, role: com.doordeck.multiplatform.sdk.model.common.UserRole, start?: Nullable<number>, end?: Nullable<number>);
|
|
@@ -1432,8 +2394,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1432
2394
|
toString(): string;
|
|
1433
2395
|
hashCode(): number;
|
|
1434
2396
|
equals(other: Nullable<any>): boolean;
|
|
1435
|
-
|
|
1436
|
-
|
|
2397
|
+
}
|
|
2398
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2399
|
+
namespace LockUserDetailsResponse.$metadata$ {
|
|
2400
|
+
const constructor: abstract new () => LockUserDetailsResponse;
|
|
2401
|
+
}
|
|
2402
|
+
namespace LockUserDetailsResponse {
|
|
2403
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2404
|
+
private constructor();
|
|
2405
|
+
}
|
|
2406
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2407
|
+
namespace Companion.$metadata$ {
|
|
2408
|
+
abstract class constructor {
|
|
2409
|
+
private constructor();
|
|
2410
|
+
}
|
|
2411
|
+
}
|
|
1437
2412
|
}
|
|
1438
2413
|
class AuditResponse {
|
|
1439
2414
|
constructor(deviceId: string, timestamp: number, type: com.doordeck.multiplatform.sdk.model.common.AuditEvent, issuer: com.doordeck.multiplatform.sdk.model.responses.AuditIssuerResponse, subject: Nullable<com.doordeck.multiplatform.sdk.model.responses.AuditSubjectResponse> | undefined, rejectionReason: Nullable<string> | undefined, rejected: boolean);
|
|
@@ -1448,8 +2423,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1448
2423
|
toString(): string;
|
|
1449
2424
|
hashCode(): number;
|
|
1450
2425
|
equals(other: Nullable<any>): boolean;
|
|
1451
|
-
|
|
1452
|
-
|
|
2426
|
+
}
|
|
2427
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2428
|
+
namespace AuditResponse.$metadata$ {
|
|
2429
|
+
const constructor: abstract new () => AuditResponse;
|
|
2430
|
+
}
|
|
2431
|
+
namespace AuditResponse {
|
|
2432
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2433
|
+
private constructor();
|
|
2434
|
+
}
|
|
2435
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2436
|
+
namespace Companion.$metadata$ {
|
|
2437
|
+
abstract class constructor {
|
|
2438
|
+
private constructor();
|
|
2439
|
+
}
|
|
2440
|
+
}
|
|
1453
2441
|
}
|
|
1454
2442
|
class AuditIssuerResponse {
|
|
1455
2443
|
constructor(userId: string, email?: Nullable<string>, ip?: Nullable<string>);
|
|
@@ -1460,8 +2448,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1460
2448
|
toString(): string;
|
|
1461
2449
|
hashCode(): number;
|
|
1462
2450
|
equals(other: Nullable<any>): boolean;
|
|
1463
|
-
|
|
1464
|
-
|
|
2451
|
+
}
|
|
2452
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2453
|
+
namespace AuditIssuerResponse.$metadata$ {
|
|
2454
|
+
const constructor: abstract new () => AuditIssuerResponse;
|
|
2455
|
+
}
|
|
2456
|
+
namespace AuditIssuerResponse {
|
|
2457
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2458
|
+
private constructor();
|
|
2459
|
+
}
|
|
2460
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2461
|
+
namespace Companion.$metadata$ {
|
|
2462
|
+
abstract class constructor {
|
|
2463
|
+
private constructor();
|
|
2464
|
+
}
|
|
2465
|
+
}
|
|
1465
2466
|
}
|
|
1466
2467
|
class AuditSubjectResponse {
|
|
1467
2468
|
constructor(userId: string, email: string, displayName?: Nullable<string>);
|
|
@@ -1472,8 +2473,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1472
2473
|
toString(): string;
|
|
1473
2474
|
hashCode(): number;
|
|
1474
2475
|
equals(other: Nullable<any>): boolean;
|
|
1475
|
-
|
|
1476
|
-
|
|
2476
|
+
}
|
|
2477
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2478
|
+
namespace AuditSubjectResponse.$metadata$ {
|
|
2479
|
+
const constructor: abstract new () => AuditSubjectResponse;
|
|
2480
|
+
}
|
|
2481
|
+
namespace AuditSubjectResponse {
|
|
2482
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2483
|
+
private constructor();
|
|
2484
|
+
}
|
|
2485
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2486
|
+
namespace Companion.$metadata$ {
|
|
2487
|
+
abstract class constructor {
|
|
2488
|
+
private constructor();
|
|
2489
|
+
}
|
|
2490
|
+
}
|
|
1477
2491
|
}
|
|
1478
2492
|
}
|
|
1479
2493
|
export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
@@ -1500,8 +2514,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1500
2514
|
toString(): string;
|
|
1501
2515
|
hashCode(): number;
|
|
1502
2516
|
equals(other: Nullable<any>): boolean;
|
|
1503
|
-
|
|
1504
|
-
|
|
2517
|
+
}
|
|
2518
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2519
|
+
namespace ApplicationResponse.$metadata$ {
|
|
2520
|
+
const constructor: abstract new () => ApplicationResponse;
|
|
2521
|
+
}
|
|
2522
|
+
namespace ApplicationResponse {
|
|
2523
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2524
|
+
private constructor();
|
|
2525
|
+
}
|
|
2526
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2527
|
+
namespace Companion.$metadata$ {
|
|
2528
|
+
abstract class constructor {
|
|
2529
|
+
private constructor();
|
|
2530
|
+
}
|
|
2531
|
+
}
|
|
1505
2532
|
}
|
|
1506
2533
|
interface AuthKeyResponse {
|
|
1507
2534
|
readonly kid: string;
|
|
@@ -1519,8 +2546,15 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1519
2546
|
readonly "com.doordeck.multiplatform.sdk.model.responses.AuthKeyResponse": unique symbol;
|
|
1520
2547
|
};
|
|
1521
2548
|
}
|
|
1522
|
-
|
|
1523
|
-
|
|
2549
|
+
abstract class AuthKeyResponse extends KtSingleton<AuthKeyResponse.$metadata$.constructor>() {
|
|
2550
|
+
private constructor();
|
|
2551
|
+
}
|
|
2552
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2553
|
+
namespace AuthKeyResponse.$metadata$ {
|
|
2554
|
+
abstract class constructor /* implements kotlinx.serialization.internal.SerializerFactory */ {
|
|
2555
|
+
private constructor();
|
|
2556
|
+
}
|
|
2557
|
+
}
|
|
1524
2558
|
class RsaKeyResponse implements com.doordeck.multiplatform.sdk.model.responses.AuthKeyResponse {
|
|
1525
2559
|
constructor(use: string, kid: string, alg: Nullable<string> | undefined, ops: Nullable<kotlin.collections.KtList<string>> | undefined, x5u: Nullable<string> | undefined, x5t: Nullable<string> | undefined, x5t256: Nullable<string> | undefined, x5c: Nullable<kotlin.collections.KtList<string>> | undefined, exp: Nullable<number> | undefined, nbf: Nullable<number> | undefined, iat: Nullable<number> | undefined, e: string, n: string);
|
|
1526
2560
|
get use(): string;
|
|
@@ -1541,8 +2575,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1541
2575
|
hashCode(): number;
|
|
1542
2576
|
equals(other: Nullable<any>): boolean;
|
|
1543
2577
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.responses.AuthKeyResponse["__doNotUseOrImplementIt"];
|
|
1544
|
-
|
|
1545
|
-
|
|
2578
|
+
}
|
|
2579
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2580
|
+
namespace RsaKeyResponse.$metadata$ {
|
|
2581
|
+
const constructor: abstract new () => RsaKeyResponse;
|
|
2582
|
+
}
|
|
2583
|
+
namespace RsaKeyResponse {
|
|
2584
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2585
|
+
private constructor();
|
|
2586
|
+
}
|
|
2587
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2588
|
+
namespace Companion.$metadata$ {
|
|
2589
|
+
abstract class constructor {
|
|
2590
|
+
private constructor();
|
|
2591
|
+
}
|
|
2592
|
+
}
|
|
1546
2593
|
}
|
|
1547
2594
|
class EcKeyResponse implements com.doordeck.multiplatform.sdk.model.responses.AuthKeyResponse {
|
|
1548
2595
|
constructor(use: string, kid: string, alg: Nullable<string> | undefined, ops: Nullable<kotlin.collections.KtList<string>> | undefined, x5u: Nullable<string> | undefined, x5t: Nullable<string> | undefined, x5t256: Nullable<string> | undefined, x5c: Nullable<kotlin.collections.KtList<string>> | undefined, exp: Nullable<number> | undefined, nbf: Nullable<number> | undefined, iat: Nullable<number> | undefined, crv: string, x: string, y: string);
|
|
@@ -1565,8 +2612,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1565
2612
|
hashCode(): number;
|
|
1566
2613
|
equals(other: Nullable<any>): boolean;
|
|
1567
2614
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.responses.AuthKeyResponse["__doNotUseOrImplementIt"];
|
|
1568
|
-
|
|
1569
|
-
|
|
2615
|
+
}
|
|
2616
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2617
|
+
namespace EcKeyResponse.$metadata$ {
|
|
2618
|
+
const constructor: abstract new () => EcKeyResponse;
|
|
2619
|
+
}
|
|
2620
|
+
namespace EcKeyResponse {
|
|
2621
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2622
|
+
private constructor();
|
|
2623
|
+
}
|
|
2624
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2625
|
+
namespace Companion.$metadata$ {
|
|
2626
|
+
abstract class constructor {
|
|
2627
|
+
private constructor();
|
|
2628
|
+
}
|
|
2629
|
+
}
|
|
1570
2630
|
}
|
|
1571
2631
|
class Ed25519KeyResponse implements com.doordeck.multiplatform.sdk.model.responses.AuthKeyResponse {
|
|
1572
2632
|
constructor(use: string, kid: string, alg: Nullable<string> | undefined, ops: Nullable<kotlin.collections.KtList<string>> | undefined, x5u: Nullable<string> | undefined, x5t: Nullable<string> | undefined, x5t256: Nullable<string> | undefined, x5c: Nullable<kotlin.collections.KtList<string>> | undefined, exp: Nullable<number> | undefined, nbf: Nullable<number> | undefined, iat: Nullable<number> | undefined, d: Nullable<string> | undefined, crv: string, x: string);
|
|
@@ -1589,8 +2649,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1589
2649
|
hashCode(): number;
|
|
1590
2650
|
equals(other: Nullable<any>): boolean;
|
|
1591
2651
|
readonly __doNotUseOrImplementIt: com.doordeck.multiplatform.sdk.model.responses.AuthKeyResponse["__doNotUseOrImplementIt"];
|
|
1592
|
-
|
|
1593
|
-
|
|
2652
|
+
}
|
|
2653
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2654
|
+
namespace Ed25519KeyResponse.$metadata$ {
|
|
2655
|
+
const constructor: abstract new () => Ed25519KeyResponse;
|
|
2656
|
+
}
|
|
2657
|
+
namespace Ed25519KeyResponse {
|
|
2658
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2659
|
+
private constructor();
|
|
2660
|
+
}
|
|
2661
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2662
|
+
namespace Companion.$metadata$ {
|
|
2663
|
+
abstract class constructor {
|
|
2664
|
+
private constructor();
|
|
2665
|
+
}
|
|
2666
|
+
}
|
|
1594
2667
|
}
|
|
1595
2668
|
class EmailPreferencesResponse {
|
|
1596
2669
|
constructor(senderEmail: Nullable<string> | undefined, senderName: Nullable<string> | undefined, primaryColour: string, secondaryColour: string, onlySendEssentialEmails?: Nullable<boolean>, callToAction?: Nullable<com.doordeck.multiplatform.sdk.model.responses.EmailCallToActionResponse>);
|
|
@@ -1604,8 +2677,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1604
2677
|
toString(): string;
|
|
1605
2678
|
hashCode(): number;
|
|
1606
2679
|
equals(other: Nullable<any>): boolean;
|
|
1607
|
-
|
|
1608
|
-
|
|
2680
|
+
}
|
|
2681
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2682
|
+
namespace EmailPreferencesResponse.$metadata$ {
|
|
2683
|
+
const constructor: abstract new () => EmailPreferencesResponse;
|
|
2684
|
+
}
|
|
2685
|
+
namespace EmailPreferencesResponse {
|
|
2686
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2687
|
+
private constructor();
|
|
2688
|
+
}
|
|
2689
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2690
|
+
namespace Companion.$metadata$ {
|
|
2691
|
+
abstract class constructor {
|
|
2692
|
+
private constructor();
|
|
2693
|
+
}
|
|
2694
|
+
}
|
|
1609
2695
|
}
|
|
1610
2696
|
class EmailCallToActionResponse {
|
|
1611
2697
|
constructor(actionTarget: string, headline: string, actionText: string);
|
|
@@ -1616,8 +2702,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1616
2702
|
toString(): string;
|
|
1617
2703
|
hashCode(): number;
|
|
1618
2704
|
equals(other: Nullable<any>): boolean;
|
|
1619
|
-
|
|
1620
|
-
|
|
2705
|
+
}
|
|
2706
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2707
|
+
namespace EmailCallToActionResponse.$metadata$ {
|
|
2708
|
+
const constructor: abstract new () => EmailCallToActionResponse;
|
|
2709
|
+
}
|
|
2710
|
+
namespace EmailCallToActionResponse {
|
|
2711
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2712
|
+
private constructor();
|
|
2713
|
+
}
|
|
2714
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2715
|
+
namespace Companion.$metadata$ {
|
|
2716
|
+
abstract class constructor {
|
|
2717
|
+
private constructor();
|
|
2718
|
+
}
|
|
2719
|
+
}
|
|
1621
2720
|
}
|
|
1622
2721
|
class OauthResponse {
|
|
1623
2722
|
constructor(authorizationEndpoint: string, clientId: string, grantType: string);
|
|
@@ -1628,8 +2727,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1628
2727
|
toString(): string;
|
|
1629
2728
|
hashCode(): number;
|
|
1630
2729
|
equals(other: Nullable<any>): boolean;
|
|
1631
|
-
|
|
1632
|
-
|
|
2730
|
+
}
|
|
2731
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2732
|
+
namespace OauthResponse.$metadata$ {
|
|
2733
|
+
const constructor: abstract new () => OauthResponse;
|
|
2734
|
+
}
|
|
2735
|
+
namespace OauthResponse {
|
|
2736
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2737
|
+
private constructor();
|
|
2738
|
+
}
|
|
2739
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2740
|
+
namespace Companion.$metadata$ {
|
|
2741
|
+
abstract class constructor {
|
|
2742
|
+
private constructor();
|
|
2743
|
+
}
|
|
2744
|
+
}
|
|
1633
2745
|
}
|
|
1634
2746
|
class ApplicationOwnerDetailsResponse {
|
|
1635
2747
|
constructor(userId: string, email: string, displayName: Nullable<string> | undefined, orphan: boolean, foreign: boolean);
|
|
@@ -1642,8 +2754,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1642
2754
|
toString(): string;
|
|
1643
2755
|
hashCode(): number;
|
|
1644
2756
|
equals(other: Nullable<any>): boolean;
|
|
1645
|
-
|
|
1646
|
-
|
|
2757
|
+
}
|
|
2758
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2759
|
+
namespace ApplicationOwnerDetailsResponse.$metadata$ {
|
|
2760
|
+
const constructor: abstract new () => ApplicationOwnerDetailsResponse;
|
|
2761
|
+
}
|
|
2762
|
+
namespace ApplicationOwnerDetailsResponse {
|
|
2763
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2764
|
+
private constructor();
|
|
2765
|
+
}
|
|
2766
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2767
|
+
namespace Companion.$metadata$ {
|
|
2768
|
+
abstract class constructor {
|
|
2769
|
+
private constructor();
|
|
2770
|
+
}
|
|
2771
|
+
}
|
|
1647
2772
|
}
|
|
1648
2773
|
class GetLogoUploadUrlResponse {
|
|
1649
2774
|
constructor(uploadUrl: string);
|
|
@@ -1652,8 +2777,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1652
2777
|
toString(): string;
|
|
1653
2778
|
hashCode(): number;
|
|
1654
2779
|
equals(other: Nullable<any>): boolean;
|
|
1655
|
-
|
|
1656
|
-
|
|
2780
|
+
}
|
|
2781
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2782
|
+
namespace GetLogoUploadUrlResponse.$metadata$ {
|
|
2783
|
+
const constructor: abstract new () => GetLogoUploadUrlResponse;
|
|
2784
|
+
}
|
|
2785
|
+
namespace GetLogoUploadUrlResponse {
|
|
2786
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2787
|
+
private constructor();
|
|
2788
|
+
}
|
|
2789
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2790
|
+
namespace Companion.$metadata$ {
|
|
2791
|
+
abstract class constructor {
|
|
2792
|
+
private constructor();
|
|
2793
|
+
}
|
|
2794
|
+
}
|
|
1657
2795
|
}
|
|
1658
2796
|
}
|
|
1659
2797
|
export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
@@ -1672,8 +2810,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1672
2810
|
toString(): string;
|
|
1673
2811
|
hashCode(): number;
|
|
1674
2812
|
equals(other: Nullable<any>): boolean;
|
|
1675
|
-
|
|
1676
|
-
|
|
2813
|
+
}
|
|
2814
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2815
|
+
namespace SiteResponse.$metadata$ {
|
|
2816
|
+
const constructor: abstract new () => SiteResponse;
|
|
2817
|
+
}
|
|
2818
|
+
namespace SiteResponse {
|
|
2819
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2820
|
+
private constructor();
|
|
2821
|
+
}
|
|
2822
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2823
|
+
namespace Companion.$metadata$ {
|
|
2824
|
+
abstract class constructor {
|
|
2825
|
+
private constructor();
|
|
2826
|
+
}
|
|
2827
|
+
}
|
|
1677
2828
|
}
|
|
1678
2829
|
class SiteLocksResponse {
|
|
1679
2830
|
constructor(id: string, name: string, colour: Nullable<string> | undefined, role: com.doordeck.multiplatform.sdk.model.common.UserRole, settings: com.doordeck.multiplatform.sdk.model.responses.SiteLockSettingsResponse);
|
|
@@ -1686,8 +2837,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1686
2837
|
toString(): string;
|
|
1687
2838
|
hashCode(): number;
|
|
1688
2839
|
equals(other: Nullable<any>): boolean;
|
|
1689
|
-
|
|
1690
|
-
|
|
2840
|
+
}
|
|
2841
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2842
|
+
namespace SiteLocksResponse.$metadata$ {
|
|
2843
|
+
const constructor: abstract new () => SiteLocksResponse;
|
|
2844
|
+
}
|
|
2845
|
+
namespace SiteLocksResponse {
|
|
2846
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2847
|
+
private constructor();
|
|
2848
|
+
}
|
|
2849
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2850
|
+
namespace Companion.$metadata$ {
|
|
2851
|
+
abstract class constructor {
|
|
2852
|
+
private constructor();
|
|
2853
|
+
}
|
|
2854
|
+
}
|
|
1691
2855
|
}
|
|
1692
2856
|
class SiteLockSettingsResponse {
|
|
1693
2857
|
constructor(unlockTime: number, permittedAddresses: kotlin.collections.KtList<string>, defaultName: string, tiles: kotlin.collections.KtList<string>, state?: Nullable<com.doordeck.multiplatform.sdk.model.responses.SiteStateResponse>, favourite?: Nullable<boolean>);
|
|
@@ -1701,8 +2865,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1701
2865
|
toString(): string;
|
|
1702
2866
|
hashCode(): number;
|
|
1703
2867
|
equals(other: Nullable<any>): boolean;
|
|
1704
|
-
|
|
1705
|
-
|
|
2868
|
+
}
|
|
2869
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2870
|
+
namespace SiteLockSettingsResponse.$metadata$ {
|
|
2871
|
+
const constructor: abstract new () => SiteLockSettingsResponse;
|
|
2872
|
+
}
|
|
2873
|
+
namespace SiteLockSettingsResponse {
|
|
2874
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2875
|
+
private constructor();
|
|
2876
|
+
}
|
|
2877
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2878
|
+
namespace Companion.$metadata$ {
|
|
2879
|
+
abstract class constructor {
|
|
2880
|
+
private constructor();
|
|
2881
|
+
}
|
|
2882
|
+
}
|
|
1706
2883
|
}
|
|
1707
2884
|
class SiteStateResponse {
|
|
1708
2885
|
constructor(connected: boolean);
|
|
@@ -1711,8 +2888,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1711
2888
|
toString(): string;
|
|
1712
2889
|
hashCode(): number;
|
|
1713
2890
|
equals(other: Nullable<any>): boolean;
|
|
1714
|
-
|
|
1715
|
-
|
|
2891
|
+
}
|
|
2892
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2893
|
+
namespace SiteStateResponse.$metadata$ {
|
|
2894
|
+
const constructor: abstract new () => SiteStateResponse;
|
|
2895
|
+
}
|
|
2896
|
+
namespace SiteStateResponse {
|
|
2897
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2898
|
+
private constructor();
|
|
2899
|
+
}
|
|
2900
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2901
|
+
namespace Companion.$metadata$ {
|
|
2902
|
+
abstract class constructor {
|
|
2903
|
+
private constructor();
|
|
2904
|
+
}
|
|
2905
|
+
}
|
|
1716
2906
|
}
|
|
1717
2907
|
class UserForSiteResponse {
|
|
1718
2908
|
constructor(userId: string, email: string, displayName: Nullable<string> | undefined, orphan: boolean);
|
|
@@ -1724,8 +2914,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1724
2914
|
toString(): string;
|
|
1725
2915
|
hashCode(): number;
|
|
1726
2916
|
equals(other: Nullable<any>): boolean;
|
|
1727
|
-
|
|
1728
|
-
|
|
2917
|
+
}
|
|
2918
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2919
|
+
namespace UserForSiteResponse.$metadata$ {
|
|
2920
|
+
const constructor: abstract new () => UserForSiteResponse;
|
|
2921
|
+
}
|
|
2922
|
+
namespace UserForSiteResponse {
|
|
2923
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2924
|
+
private constructor();
|
|
2925
|
+
}
|
|
2926
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2927
|
+
namespace Companion.$metadata$ {
|
|
2928
|
+
abstract class constructor {
|
|
2929
|
+
private constructor();
|
|
2930
|
+
}
|
|
2931
|
+
}
|
|
1729
2932
|
}
|
|
1730
2933
|
}
|
|
1731
2934
|
export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
@@ -1738,8 +2941,21 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
1738
2941
|
toString(): string;
|
|
1739
2942
|
hashCode(): number;
|
|
1740
2943
|
equals(other: Nullable<any>): boolean;
|
|
1741
|
-
|
|
1742
|
-
|
|
2944
|
+
}
|
|
2945
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2946
|
+
namespace TileLocksResponse.$metadata$ {
|
|
2947
|
+
const constructor: abstract new () => TileLocksResponse;
|
|
2948
|
+
}
|
|
2949
|
+
namespace TileLocksResponse {
|
|
2950
|
+
abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
|
|
2951
|
+
private constructor();
|
|
2952
|
+
}
|
|
2953
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2954
|
+
namespace Companion.$metadata$ {
|
|
2955
|
+
abstract class constructor {
|
|
2956
|
+
private constructor();
|
|
2957
|
+
}
|
|
2958
|
+
}
|
|
1743
2959
|
}
|
|
1744
2960
|
}
|
|
1745
2961
|
export declare namespace com.doordeck.multiplatform.sdk.storage {
|
|
@@ -1773,142 +2989,212 @@ export declare namespace com.doordeck.multiplatform.sdk.storage {
|
|
|
1773
2989
|
}
|
|
1774
2990
|
}
|
|
1775
2991
|
export declare namespace com.doordeck.multiplatform.sdk.util {
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
2992
|
+
abstract class Utils extends KtSingleton<Utils.$metadata$.constructor>() {
|
|
2993
|
+
private constructor();
|
|
2994
|
+
}
|
|
2995
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2996
|
+
namespace Utils.$metadata$ {
|
|
2997
|
+
abstract class constructor {
|
|
2998
|
+
decodeBase64ToByteArray(_this_: string): Int8Array;
|
|
2999
|
+
encodeByteArrayToBase64(_this_: Int8Array): string;
|
|
3000
|
+
certificateChainToString(_this_: kotlin.collections.KtList<string>): string;
|
|
3001
|
+
stringToCertificateChain(_this_: string): kotlin.collections.KtList<string>;
|
|
3002
|
+
private constructor();
|
|
3003
|
+
}
|
|
3004
|
+
}
|
|
1782
3005
|
}
|
|
1783
3006
|
export declare namespace com.doordeck.multiplatform.sdk.api {
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
3007
|
+
abstract class AccountApi extends KtSingleton<AccountApi.$metadata$.constructor>() {
|
|
3008
|
+
private constructor();
|
|
3009
|
+
}
|
|
3010
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
3011
|
+
namespace AccountApi.$metadata$ {
|
|
3012
|
+
abstract class constructor {
|
|
3013
|
+
refreshToken(refreshToken?: Nullable<string>): Promise<com.doordeck.multiplatform.sdk.model.responses.TokenResponse>;
|
|
3014
|
+
logout(): Promise<any>;
|
|
3015
|
+
registerEphemeralKey(publicKey?: Nullable<Int8Array>): Promise<com.doordeck.multiplatform.sdk.model.responses.RegisterEphemeralKeyResponse>;
|
|
3016
|
+
registerEphemeralKeyWithSecondaryAuthentication(publicKey?: Nullable<Int8Array>, method?: Nullable<com.doordeck.multiplatform.sdk.model.common.TwoFactorMethod>): Promise<com.doordeck.multiplatform.sdk.model.responses.RegisterEphemeralKeyWithSecondaryAuthenticationResponse>;
|
|
3017
|
+
verifyEphemeralKeyRegistration(code: string, privateKey?: Nullable<Int8Array>): Promise<com.doordeck.multiplatform.sdk.model.responses.RegisterEphemeralKeyResponse>;
|
|
3018
|
+
reverifyEmail(): Promise<any>;
|
|
3019
|
+
changePassword(oldPassword: string, newPassword: string): Promise<any>;
|
|
3020
|
+
getUserDetails(): Promise<com.doordeck.multiplatform.sdk.model.responses.UserDetailsResponse>;
|
|
3021
|
+
updateUserDetails(displayName: string): Promise<any>;
|
|
3022
|
+
deleteAccount(): Promise<any>;
|
|
3023
|
+
private constructor();
|
|
3024
|
+
}
|
|
3025
|
+
}
|
|
1796
3026
|
function account(): typeof com.doordeck.multiplatform.sdk.api.AccountApi;
|
|
1797
3027
|
}
|
|
1798
3028
|
export declare namespace com.doordeck.multiplatform.sdk.api {
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
3029
|
+
abstract class AccountlessApi extends KtSingleton<AccountlessApi.$metadata$.constructor>() {
|
|
3030
|
+
private constructor();
|
|
3031
|
+
}
|
|
3032
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
3033
|
+
namespace AccountlessApi.$metadata$ {
|
|
3034
|
+
abstract class constructor {
|
|
3035
|
+
login(email: string, password: string): Promise<com.doordeck.multiplatform.sdk.model.responses.TokenResponse>;
|
|
3036
|
+
registration(email: string, password: string, displayName?: Nullable<string>, force?: boolean, publicKey?: Nullable<Int8Array>): Promise<com.doordeck.multiplatform.sdk.model.responses.TokenResponse>;
|
|
3037
|
+
verifyEmail(code: string): Promise<any>;
|
|
3038
|
+
passwordReset(email: string): Promise<any>;
|
|
3039
|
+
passwordResetVerify(userId: string, token: string, password: string): Promise<any>;
|
|
3040
|
+
private constructor();
|
|
3041
|
+
}
|
|
3042
|
+
}
|
|
1806
3043
|
function accountless(): typeof com.doordeck.multiplatform.sdk.api.AccountlessApi;
|
|
1807
3044
|
}
|
|
1808
3045
|
export declare namespace com.doordeck.multiplatform.sdk.api {
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
3046
|
+
abstract class FusionApi extends KtSingleton<FusionApi.$metadata$.constructor>() {
|
|
3047
|
+
private constructor();
|
|
3048
|
+
}
|
|
3049
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
3050
|
+
namespace FusionApi.$metadata$ {
|
|
3051
|
+
abstract class constructor {
|
|
3052
|
+
login(email: string, password: string): Promise<com.doordeck.multiplatform.sdk.model.responses.FusionLoginResponse>;
|
|
3053
|
+
getIntegrationType(): Promise<com.doordeck.multiplatform.sdk.model.responses.IntegrationTypeResponse>;
|
|
3054
|
+
getIntegrationConfiguration(type: string): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.IntegrationConfigurationResponse>>;
|
|
3055
|
+
enableDoor(name: string, siteId: string, controller: com.doordeck.multiplatform.sdk.model.data.Fusion.LockController): Promise<any>;
|
|
3056
|
+
deleteDoor(deviceId: string): Promise<any>;
|
|
3057
|
+
getDoorStatus(deviceId: string): Promise<com.doordeck.multiplatform.sdk.model.responses.DoorStateResponse>;
|
|
3058
|
+
startDoor(deviceId: string): Promise<any>;
|
|
3059
|
+
stopDoor(deviceId: string): Promise<any>;
|
|
3060
|
+
private constructor();
|
|
3061
|
+
}
|
|
3062
|
+
}
|
|
1819
3063
|
function fusion(): typeof com.doordeck.multiplatform.sdk.api.FusionApi;
|
|
1820
3064
|
}
|
|
1821
3065
|
export declare namespace com.doordeck.multiplatform.sdk.api {
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
3066
|
+
abstract class HelperApi extends KtSingleton<HelperApi.$metadata$.constructor>() {
|
|
3067
|
+
private constructor();
|
|
3068
|
+
}
|
|
3069
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
3070
|
+
namespace HelperApi.$metadata$ {
|
|
3071
|
+
abstract class constructor {
|
|
3072
|
+
uploadPlatformLogo(applicationId: string, contentType: string, image: Int8Array): Promise<any>;
|
|
3073
|
+
assistedLogin(email: string, password: string): Promise<com.doordeck.multiplatform.sdk.model.responses.AssistedLoginResponse>;
|
|
3074
|
+
assistedRegisterEphemeralKey(publicKey?: Nullable<Int8Array>): Promise<com.doordeck.multiplatform.sdk.model.responses.AssistedRegisterEphemeralKeyResponse>;
|
|
3075
|
+
assistedRegister(email: string, password: string, displayName?: Nullable<string>, force?: boolean): Promise<any>;
|
|
3076
|
+
private constructor();
|
|
3077
|
+
}
|
|
3078
|
+
}
|
|
1828
3079
|
function helper(): typeof com.doordeck.multiplatform.sdk.api.HelperApi;
|
|
1829
3080
|
}
|
|
1830
3081
|
export declare namespace com.doordeck.multiplatform.sdk.api {
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
3082
|
+
abstract class LockOperationsApi extends KtSingleton<LockOperationsApi.$metadata$.constructor>() {
|
|
3083
|
+
private constructor();
|
|
3084
|
+
}
|
|
3085
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
3086
|
+
namespace LockOperationsApi.$metadata$ {
|
|
3087
|
+
abstract class constructor {
|
|
3088
|
+
getSingleLock(lockId: string): Promise<com.doordeck.multiplatform.sdk.model.responses.LockResponse>;
|
|
3089
|
+
getLockAuditTrail(lockId: string, start: number, end: number): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.AuditResponse>>;
|
|
3090
|
+
getAuditForUser(userId: string, start: number, end: number): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.AuditResponse>>;
|
|
3091
|
+
getUsersForLock(lockId: string): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.UserLockResponse>>;
|
|
3092
|
+
getLocksForUser(userId: string): Promise<com.doordeck.multiplatform.sdk.model.responses.LockUserResponse>;
|
|
3093
|
+
updateLockName(lockId: string, name?: Nullable<string>): Promise<any>;
|
|
3094
|
+
updateLockFavourite(lockId: string, favourite?: Nullable<boolean>): Promise<any>;
|
|
3095
|
+
updateLockColour(lockId: string, colour?: Nullable<string>): Promise<any>;
|
|
3096
|
+
updateLockSettingDefaultName(lockId: string, name?: Nullable<string>): Promise<any>;
|
|
3097
|
+
setLockSettingPermittedAddresses(lockId: string, permittedAddresses: kotlin.collections.KtList<string>): Promise<any>;
|
|
3098
|
+
updateLockSettingHidden(lockId: string, hidden: boolean): Promise<any>;
|
|
3099
|
+
setLockSettingTimeRestrictions(lockId: string, times: kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.data.LockOperations.TimeRequirement>): Promise<any>;
|
|
3100
|
+
updateLockSettingLocationRestrictions(lockId: string, location?: Nullable<com.doordeck.multiplatform.sdk.model.data.LockOperations.LocationRequirement>): Promise<any>;
|
|
3101
|
+
getUserPublicKey(userEmail: string, visitor?: boolean): Promise<com.doordeck.multiplatform.sdk.model.responses.UserPublicKeyResponse>;
|
|
3102
|
+
getUserPublicKeyByEmail(email: string): Promise<com.doordeck.multiplatform.sdk.model.responses.UserPublicKeyResponse>;
|
|
3103
|
+
getUserPublicKeyByTelephone(telephone: string): Promise<com.doordeck.multiplatform.sdk.model.responses.UserPublicKeyResponse>;
|
|
3104
|
+
getUserPublicKeyByLocalKey(localKey: string): Promise<com.doordeck.multiplatform.sdk.model.responses.UserPublicKeyResponse>;
|
|
3105
|
+
getUserPublicKeyByForeignKey(foreignKey: string): Promise<com.doordeck.multiplatform.sdk.model.responses.UserPublicKeyResponse>;
|
|
3106
|
+
getUserPublicKeyByIdentity(identity: string): Promise<com.doordeck.multiplatform.sdk.model.responses.UserPublicKeyResponse>;
|
|
3107
|
+
getUserPublicKeyByEmails(emails: kotlin.collections.KtList<string>): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.BatchUserPublicKeyResponse>>;
|
|
3108
|
+
getUserPublicKeyByTelephones(telephones: kotlin.collections.KtList<string>): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.BatchUserPublicKeyResponse>>;
|
|
3109
|
+
getUserPublicKeyByLocalKeys(localKeys: kotlin.collections.KtList<string>): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.BatchUserPublicKeyResponse>>;
|
|
3110
|
+
getUserPublicKeyByForeignKeys(foreignKeys: kotlin.collections.KtList<string>): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.BatchUserPublicKeyResponse>>;
|
|
3111
|
+
unlock(unlockOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockOperation): Promise<any>;
|
|
3112
|
+
shareLock(shareLockOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.ShareLockOperation): Promise<any>;
|
|
3113
|
+
batchShareLock(batchShareLockOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.BatchShareLockOperation): Promise<any>;
|
|
3114
|
+
revokeAccessToLock(revokeAccessToLockOperation: com.doordeck.multiplatform.sdk.model.data.LockOperations.RevokeAccessToLockOperation): Promise<any>;
|
|
3115
|
+
updateSecureSettingUnlockDuration(updateSecureSettingUnlockDuration: com.doordeck.multiplatform.sdk.model.data.LockOperations.UpdateSecureSettingUnlockDuration): Promise<any>;
|
|
3116
|
+
updateSecureSettingUnlockBetween(updateSecureSettingUnlockBetween: com.doordeck.multiplatform.sdk.model.data.LockOperations.UpdateSecureSettingUnlockBetween): Promise<any>;
|
|
3117
|
+
getPinnedLocks(): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.LockResponse>>;
|
|
3118
|
+
getShareableLocks(): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.ShareableLockResponse>>;
|
|
3119
|
+
private constructor();
|
|
3120
|
+
}
|
|
3121
|
+
}
|
|
1864
3122
|
function lockOperations(): typeof com.doordeck.multiplatform.sdk.api.LockOperationsApi;
|
|
1865
3123
|
}
|
|
1866
3124
|
export declare namespace com.doordeck.multiplatform.sdk.api {
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
3125
|
+
abstract class PlatformApi extends KtSingleton<PlatformApi.$metadata$.constructor>() {
|
|
3126
|
+
private constructor();
|
|
3127
|
+
}
|
|
3128
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
3129
|
+
namespace PlatformApi.$metadata$ {
|
|
3130
|
+
abstract class constructor {
|
|
3131
|
+
createApplication(application: com.doordeck.multiplatform.sdk.model.data.Platform.CreateApplication): Promise<any>;
|
|
3132
|
+
listApplications(): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.ApplicationResponse>>;
|
|
3133
|
+
getApplication(applicationId: string): Promise<com.doordeck.multiplatform.sdk.model.responses.ApplicationResponse>;
|
|
3134
|
+
updateApplicationName(applicationId: string, name: string): Promise<any>;
|
|
3135
|
+
updateApplicationCompanyName(applicationId: string, companyName: string): Promise<any>;
|
|
3136
|
+
updateApplicationMailingAddress(applicationId: string, mailingAddress: string): Promise<any>;
|
|
3137
|
+
updateApplicationPrivacyPolicy(applicationId: string, privacyPolicy: string): Promise<any>;
|
|
3138
|
+
updateApplicationSupportContact(applicationId: string, supportContact: string): Promise<any>;
|
|
3139
|
+
updateApplicationAppLink(applicationId: string, appLink: string): Promise<any>;
|
|
3140
|
+
updateApplicationEmailPreferences(applicationId: string, emailPreferences: com.doordeck.multiplatform.sdk.model.data.Platform.EmailPreferences): Promise<any>;
|
|
3141
|
+
updateApplicationLogoUrl(applicationId: string, logoUrl: string): Promise<any>;
|
|
3142
|
+
deleteApplication(applicationId: string): Promise<any>;
|
|
3143
|
+
getLogoUploadUrl(applicationId: string, contentType: string): Promise<com.doordeck.multiplatform.sdk.model.responses.GetLogoUploadUrlResponse>;
|
|
3144
|
+
addAuthKey(applicationId: string, key: com.doordeck.multiplatform.sdk.model.data.Platform.AuthKey): Promise<any>;
|
|
3145
|
+
addAuthIssuer(applicationId: string, url: string): Promise<any>;
|
|
3146
|
+
deleteAuthIssuer(applicationId: string, url: string): Promise<any>;
|
|
3147
|
+
addCorsDomain(applicationId: string, url: string): Promise<any>;
|
|
3148
|
+
removeCorsDomain(applicationId: string, url: string): Promise<any>;
|
|
3149
|
+
addApplicationOwner(applicationId: string, userId: string): Promise<any>;
|
|
3150
|
+
removeApplicationOwner(applicationId: string, userId: string): Promise<any>;
|
|
3151
|
+
getApplicationOwnersDetails(applicationId: string): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.ApplicationOwnerDetailsResponse>>;
|
|
3152
|
+
private constructor();
|
|
3153
|
+
}
|
|
3154
|
+
}
|
|
1890
3155
|
function platform(): typeof com.doordeck.multiplatform.sdk.api.PlatformApi;
|
|
1891
3156
|
}
|
|
1892
3157
|
export declare namespace com.doordeck.multiplatform.sdk.api {
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
3158
|
+
abstract class SitesApi extends KtSingleton<SitesApi.$metadata$.constructor>() {
|
|
3159
|
+
private constructor();
|
|
3160
|
+
}
|
|
3161
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
3162
|
+
namespace SitesApi.$metadata$ {
|
|
3163
|
+
abstract class constructor {
|
|
3164
|
+
listSites(): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.SiteResponse>>;
|
|
3165
|
+
getLocksForSite(siteId: string): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.SiteLocksResponse>>;
|
|
3166
|
+
getUsersForSite(siteId: string): Promise<kotlin.collections.KtList<com.doordeck.multiplatform.sdk.model.responses.UserForSiteResponse>>;
|
|
3167
|
+
private constructor();
|
|
3168
|
+
}
|
|
3169
|
+
}
|
|
1898
3170
|
function sites(): typeof com.doordeck.multiplatform.sdk.api.SitesApi;
|
|
1899
3171
|
}
|
|
1900
3172
|
export declare namespace com.doordeck.multiplatform.sdk.api {
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
3173
|
+
abstract class TilesApi extends KtSingleton<TilesApi.$metadata$.constructor>() {
|
|
3174
|
+
private constructor();
|
|
3175
|
+
}
|
|
3176
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
3177
|
+
namespace TilesApi.$metadata$ {
|
|
3178
|
+
abstract class constructor {
|
|
3179
|
+
getLocksBelongingToTile(tileId: string): Promise<com.doordeck.multiplatform.sdk.model.responses.TileLocksResponse>;
|
|
3180
|
+
associateMultipleLocks(tileId: string, siteId: string, lockIds: kotlin.collections.KtList<string>): Promise<any>;
|
|
3181
|
+
private constructor();
|
|
3182
|
+
}
|
|
3183
|
+
}
|
|
1905
3184
|
function tiles(): typeof com.doordeck.multiplatform.sdk.api.TilesApi;
|
|
1906
3185
|
}
|
|
1907
3186
|
export declare namespace com.doordeck.multiplatform.sdk.crypto {
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
3187
|
+
abstract class CryptoManager extends KtSingleton<CryptoManager.$metadata$.constructor>() {
|
|
3188
|
+
private constructor();
|
|
3189
|
+
}
|
|
3190
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
3191
|
+
namespace CryptoManager.$metadata$ {
|
|
3192
|
+
abstract class constructor {
|
|
3193
|
+
generateKeyPair(): com.doordeck.multiplatform.sdk.model.data.Crypto.KeyPair;
|
|
3194
|
+
generateEncodedKeyPair(): string;
|
|
3195
|
+
isCertificateInvalidOrExpired(base64Certificate: string): boolean;
|
|
3196
|
+
private constructor();
|
|
3197
|
+
}
|
|
3198
|
+
}
|
|
1913
3199
|
function crypto(): typeof com.doordeck.multiplatform.sdk.crypto.CryptoManager;
|
|
1914
3200
|
}
|