@doordeck/doordeck-headless-sdk 0.139.0 → 0.140.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 -59
- package/kotlin/Kermit-kermit.js +8 -8
- package/kotlin/KotlinMultiplatformLibsodium-multiplatform-crypto-libsodium-bindings.js +47 -47
- package/kotlin/MultiplatformSettings-multiplatform-settings.js +22 -22
- package/kotlin/doordeck-sdk.d.ts +14 -30
- package/kotlin/doordeck-sdk.js +13093 -13079
- package/kotlin/kotlin-kotlin-stdlib.js +2603 -2573
- package/kotlin/kotlinx-atomicfu.js +24 -24
- package/kotlin/kotlinx-coroutines-core.js +2362 -2362
- package/kotlin/kotlinx-io-kotlinx-io-bytestring.js +46 -46
- package/kotlin/kotlinx-io-kotlinx-io-core.js +497 -497
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core.js +1860 -1860
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json.js +1555 -1555
- package/kotlin/ktor-ktor-client-auth.js +469 -469
- package/kotlin/ktor-ktor-client-content-negotiation.js +214 -214
- package/kotlin/ktor-ktor-client-core.js +3029 -3029
- package/kotlin/ktor-ktor-client-logging.js +1193 -1193
- package/kotlin/ktor-ktor-events.js +11 -11
- package/kotlin/ktor-ktor-http-cio.js +544 -544
- package/kotlin/ktor-ktor-http.js +840 -840
- package/kotlin/ktor-ktor-io.js +1121 -1121
- package/kotlin/ktor-ktor-serialization-kotlinx-json.js +7 -7
- package/kotlin/ktor-ktor-serialization-kotlinx.js +267 -267
- package/kotlin/ktor-ktor-serialization.js +128 -128
- package/kotlin/ktor-ktor-utils.js +910 -902
- package/kotlin/ktor-ktor-websockets.js +52 -52
- package/package.json +1 -1
package/kotlin/doordeck-sdk.d.ts
CHANGED
|
@@ -17,22 +17,6 @@ export declare namespace kotlin.collections {
|
|
|
17
17
|
private constructor();
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
interface KtSet<E> /* extends kotlin.collections.Collection<E> */ {
|
|
21
|
-
asJsReadonlySetView(): ReadonlySet<E>;
|
|
22
|
-
readonly __doNotUseOrImplementIt: {
|
|
23
|
-
readonly "kotlin.collections.KtSet": unique symbol;
|
|
24
|
-
};
|
|
25
|
-
}
|
|
26
|
-
abstract class KtSet<E> extends KtSingleton<KtSet.$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 KtSet.$metadata$ {
|
|
31
|
-
abstract class constructor {
|
|
32
|
-
fromJsSet<E>(set: ReadonlySet<E>): kotlin.collections.KtSet<E>;
|
|
33
|
-
private constructor();
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
20
|
interface KtMap<K, V> {
|
|
37
21
|
asJsReadonlyMapView(): ReadonlyMap<K, V>;
|
|
38
22
|
readonly __doNotUseOrImplementIt: {
|
|
@@ -1312,12 +1296,12 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
1312
1296
|
}
|
|
1313
1297
|
namespace LockOperations {
|
|
1314
1298
|
class TimeRequirement {
|
|
1315
|
-
constructor(start: string, end: string, timezone: string, days:
|
|
1299
|
+
constructor(start: string, end: string, timezone: string, days: Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>);
|
|
1316
1300
|
get start(): string;
|
|
1317
1301
|
get end(): string;
|
|
1318
1302
|
get timezone(): string;
|
|
1319
|
-
get days():
|
|
1320
|
-
copy(start?: string, end?: string, timezone?: string, days?:
|
|
1303
|
+
get days(): Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>;
|
|
1304
|
+
copy(start?: string, end?: string, timezone?: string, days?: Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>): com.doordeck.multiplatform.sdk.model.data.LockOperations.TimeRequirement;
|
|
1321
1305
|
toString(): string;
|
|
1322
1306
|
hashCode(): number;
|
|
1323
1307
|
equals(other: Nullable<any>): boolean;
|
|
@@ -1332,7 +1316,7 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
1332
1316
|
setStart(start: string): com.doordeck.multiplatform.sdk.model.data.LockOperations.TimeRequirement.Builder;
|
|
1333
1317
|
setEnd(end: string): com.doordeck.multiplatform.sdk.model.data.LockOperations.TimeRequirement.Builder;
|
|
1334
1318
|
setTimezone(timezone: string): com.doordeck.multiplatform.sdk.model.data.LockOperations.TimeRequirement.Builder;
|
|
1335
|
-
setDays(days:
|
|
1319
|
+
setDays(days: Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>): com.doordeck.multiplatform.sdk.model.data.LockOperations.TimeRequirement.Builder;
|
|
1336
1320
|
build(): com.doordeck.multiplatform.sdk.model.data.LockOperations.TimeRequirement;
|
|
1337
1321
|
}
|
|
1338
1322
|
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
@@ -1372,13 +1356,13 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
1372
1356
|
}
|
|
1373
1357
|
}
|
|
1374
1358
|
class UnlockBetween {
|
|
1375
|
-
constructor(start: string, end: string, timezone: string, days:
|
|
1359
|
+
constructor(start: string, end: string, timezone: string, days: Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>, exceptions?: Nullable<Array<string>>);
|
|
1376
1360
|
get start(): string;
|
|
1377
1361
|
get end(): string;
|
|
1378
1362
|
get timezone(): string;
|
|
1379
|
-
get days():
|
|
1363
|
+
get days(): Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>;
|
|
1380
1364
|
get exceptions(): Nullable<Array<string>>;
|
|
1381
|
-
copy(start?: string, end?: string, timezone?: string, days?:
|
|
1365
|
+
copy(start?: string, end?: string, timezone?: string, days?: Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>, exceptions?: Nullable<Array<string>>): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockBetween;
|
|
1382
1366
|
toString(): string;
|
|
1383
1367
|
hashCode(): number;
|
|
1384
1368
|
equals(other: Nullable<any>): boolean;
|
|
@@ -1393,7 +1377,7 @@ export declare namespace com.doordeck.multiplatform.sdk.model.data {
|
|
|
1393
1377
|
setStart(start: string): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockBetween.Builder;
|
|
1394
1378
|
setEnd(end: string): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockBetween.Builder;
|
|
1395
1379
|
setTimezone(timezone: string): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockBetween.Builder;
|
|
1396
|
-
setDays(days:
|
|
1380
|
+
setDays(days: Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockBetween.Builder;
|
|
1397
1381
|
setExceptions(exceptions: Nullable<Array<string>>): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockBetween.Builder;
|
|
1398
1382
|
build(): com.doordeck.multiplatform.sdk.model.data.LockOperations.UnlockBetween;
|
|
1399
1383
|
}
|
|
@@ -2090,12 +2074,12 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
2090
2074
|
const constructor: abstract new () => UsageRequirementsResponse;
|
|
2091
2075
|
}
|
|
2092
2076
|
class TimeRequirementResponse {
|
|
2093
|
-
constructor(start: string, end: string, timezone: string, days:
|
|
2077
|
+
constructor(start: string, end: string, timezone: string, days: Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>);
|
|
2094
2078
|
get start(): string;
|
|
2095
2079
|
get end(): string;
|
|
2096
2080
|
get timezone(): string;
|
|
2097
|
-
get days():
|
|
2098
|
-
copy(start?: string, end?: string, timezone?: string, days?:
|
|
2081
|
+
get days(): Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>;
|
|
2082
|
+
copy(start?: string, end?: string, timezone?: string, days?: Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>): com.doordeck.multiplatform.sdk.model.responses.TimeRequirementResponse;
|
|
2099
2083
|
toString(): string;
|
|
2100
2084
|
hashCode(): number;
|
|
2101
2085
|
equals(other: Nullable<any>): boolean;
|
|
@@ -2121,13 +2105,13 @@ export declare namespace com.doordeck.multiplatform.sdk.model.responses {
|
|
|
2121
2105
|
const constructor: abstract new () => LocationRequirementResponse;
|
|
2122
2106
|
}
|
|
2123
2107
|
class UnlockBetweenSettingResponse {
|
|
2124
|
-
constructor(start: string, end: string, timezone: string, days:
|
|
2108
|
+
constructor(start: string, end: string, timezone: string, days: Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>, exceptions?: Array<string>);
|
|
2125
2109
|
get start(): string;
|
|
2126
2110
|
get end(): string;
|
|
2127
2111
|
get timezone(): string;
|
|
2128
|
-
get days():
|
|
2112
|
+
get days(): Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>;
|
|
2129
2113
|
get exceptions(): Array<string>;
|
|
2130
|
-
copy(start?: string, end?: string, timezone?: string, days?:
|
|
2114
|
+
copy(start?: string, end?: string, timezone?: string, days?: Set<com.doordeck.multiplatform.sdk.model.common.DayOfWeek>, exceptions?: Array<string>): com.doordeck.multiplatform.sdk.model.responses.UnlockBetweenSettingResponse;
|
|
2131
2115
|
toString(): string;
|
|
2132
2116
|
hashCode(): number;
|
|
2133
2117
|
equals(other: Nullable<any>): boolean;
|