@doordeck/doordeck-headless-sdk 0.132.0 → 0.134.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 +44 -44
- package/kotlin/Kermit-kermit.js +4 -4
- package/kotlin/Kotlin-DateTime-library-kotlinx-datetime.js +1411 -1411
- package/kotlin/KotlinMultiplatformLibsodium-multiplatform-crypto-libsodium-bindings.js +74 -22
- package/kotlin/MultiplatformSettings-multiplatform-settings.js +18 -18
- package/kotlin/doordeck-sdk.d.ts +13 -91
- package/kotlin/doordeck-sdk.js +9739 -10202
- package/kotlin/kotlin-kotlin-stdlib.js +6 -6
- package/kotlin/kotlinx-atomicfu.js +13 -13
- package/kotlin/kotlinx-coroutines-core.js +1906 -1906
- package/kotlin/kotlinx-io-kotlinx-io-bytestring.js +32 -32
- package/kotlin/kotlinx-io-kotlinx-io-core.js +443 -443
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core.js +1710 -1710
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json.js +1347 -1347
- package/kotlin/ktor-ktor-client-auth.js +241 -241
- package/kotlin/ktor-ktor-client-content-negotiation.js +135 -135
- package/kotlin/ktor-ktor-client-core.js +1882 -1882
- package/kotlin/ktor-ktor-client-logging.js +668 -668
- package/kotlin/ktor-ktor-events.js +6 -6
- package/kotlin/ktor-ktor-http-cio.js +330 -330
- package/kotlin/ktor-ktor-http.js +682 -682
- package/kotlin/ktor-ktor-io.js +628 -628
- package/kotlin/ktor-ktor-serialization-kotlinx-json.js +7 -7
- package/kotlin/ktor-ktor-serialization-kotlinx.js +140 -140
- package/kotlin/ktor-ktor-serialization.js +62 -62
- package/kotlin/ktor-ktor-utils.js +660 -660
- package/kotlin/ktor-ktor-websockets.js +37 -37
- package/package.json +1 -1
|
@@ -48,6 +48,12 @@ if (typeof Math.clz32 === 'undefined') {
|
|
|
48
48
|
};
|
|
49
49
|
}(Math.log, Math.LN2);
|
|
50
50
|
}
|
|
51
|
+
if (typeof String.prototype.startsWith === 'undefined') {
|
|
52
|
+
Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
|
|
53
|
+
position = position || 0;
|
|
54
|
+
return this.lastIndexOf(searchString, position) === position;
|
|
55
|
+
}});
|
|
56
|
+
}
|
|
51
57
|
if (typeof String.prototype.endsWith === 'undefined') {
|
|
52
58
|
Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
|
|
53
59
|
var subjectString = this.toString();
|
|
@@ -59,12 +65,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
59
65
|
return lastIndex !== -1 && lastIndex === position;
|
|
60
66
|
}});
|
|
61
67
|
}
|
|
62
|
-
if (typeof String.prototype.startsWith === 'undefined') {
|
|
63
|
-
Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
|
|
64
|
-
position = position || 0;
|
|
65
|
-
return this.lastIndexOf(searchString, position) === position;
|
|
66
|
-
}});
|
|
67
|
-
}
|
|
68
68
|
//endregion
|
|
69
69
|
(function (_) {
|
|
70
70
|
'use strict';
|
|
@@ -26,13 +26,13 @@
|
|
|
26
26
|
tmp_1[tmp_0] = atomic$ref$1(null);
|
|
27
27
|
tmp_0 = tmp_0 + 1 | 0;
|
|
28
28
|
}
|
|
29
|
-
tmp.
|
|
29
|
+
tmp.lo_1 = tmp_1;
|
|
30
30
|
}
|
|
31
|
-
protoOf(atomicfu$AtomicRefArray$ref).
|
|
32
|
-
return this.
|
|
31
|
+
protoOf(atomicfu$AtomicRefArray$ref).mo = function () {
|
|
32
|
+
return this.lo_1.length;
|
|
33
33
|
};
|
|
34
34
|
protoOf(atomicfu$AtomicRefArray$ref).atomicfu$get = function (index) {
|
|
35
|
-
return this.
|
|
35
|
+
return this.lo_1[index];
|
|
36
36
|
};
|
|
37
37
|
function atomicfu$AtomicRefArray$ofNulls(size) {
|
|
38
38
|
return new atomicfu$AtomicRefArray$ref(size);
|
|
@@ -60,10 +60,10 @@
|
|
|
60
60
|
function AtomicRef(value) {
|
|
61
61
|
this.kotlinx$atomicfu$value = value;
|
|
62
62
|
}
|
|
63
|
-
protoOf(AtomicRef).
|
|
63
|
+
protoOf(AtomicRef).no = function (_set____db54di) {
|
|
64
64
|
this.kotlinx$atomicfu$value = _set____db54di;
|
|
65
65
|
};
|
|
66
|
-
protoOf(AtomicRef).
|
|
66
|
+
protoOf(AtomicRef).oo = function () {
|
|
67
67
|
return this.kotlinx$atomicfu$value;
|
|
68
68
|
};
|
|
69
69
|
protoOf(AtomicRef).atomicfu$compareAndSet = function (expect, update) {
|
|
@@ -86,10 +86,10 @@
|
|
|
86
86
|
function AtomicBoolean(value) {
|
|
87
87
|
this.kotlinx$atomicfu$value = value;
|
|
88
88
|
}
|
|
89
|
-
protoOf(AtomicBoolean).
|
|
89
|
+
protoOf(AtomicBoolean).po = function (_set____db54di) {
|
|
90
90
|
this.kotlinx$atomicfu$value = _set____db54di;
|
|
91
91
|
};
|
|
92
|
-
protoOf(AtomicBoolean).
|
|
92
|
+
protoOf(AtomicBoolean).oo = function () {
|
|
93
93
|
return this.kotlinx$atomicfu$value;
|
|
94
94
|
};
|
|
95
95
|
protoOf(AtomicBoolean).atomicfu$compareAndSet = function (expect, update) {
|
|
@@ -112,10 +112,10 @@
|
|
|
112
112
|
function AtomicLong(value) {
|
|
113
113
|
this.kotlinx$atomicfu$value = value;
|
|
114
114
|
}
|
|
115
|
-
protoOf(AtomicLong).
|
|
115
|
+
protoOf(AtomicLong).qo = function (_set____db54di) {
|
|
116
116
|
this.kotlinx$atomicfu$value = _set____db54di;
|
|
117
117
|
};
|
|
118
|
-
protoOf(AtomicLong).
|
|
118
|
+
protoOf(AtomicLong).oo = function () {
|
|
119
119
|
return this.kotlinx$atomicfu$value;
|
|
120
120
|
};
|
|
121
121
|
protoOf(AtomicLong).atomicfu$compareAndSet = function (expect, update) {
|
|
@@ -165,10 +165,10 @@
|
|
|
165
165
|
function AtomicInt(value) {
|
|
166
166
|
this.kotlinx$atomicfu$value = value;
|
|
167
167
|
}
|
|
168
|
-
protoOf(AtomicInt).
|
|
168
|
+
protoOf(AtomicInt).ro = function (_set____db54di) {
|
|
169
169
|
this.kotlinx$atomicfu$value = _set____db54di;
|
|
170
170
|
};
|
|
171
|
-
protoOf(AtomicInt).
|
|
171
|
+
protoOf(AtomicInt).oo = function () {
|
|
172
172
|
return this.kotlinx$atomicfu$value;
|
|
173
173
|
};
|
|
174
174
|
protoOf(AtomicInt).atomicfu$compareAndSet = function (expect, update) {
|
|
@@ -232,7 +232,7 @@
|
|
|
232
232
|
return new AtomicInt(initial);
|
|
233
233
|
}
|
|
234
234
|
//region block: post-declaration
|
|
235
|
-
defineProp(protoOf(atomicfu$AtomicRefArray$ref), 'atomicfu$size', protoOf(atomicfu$AtomicRefArray$ref).
|
|
235
|
+
defineProp(protoOf(atomicfu$AtomicRefArray$ref), 'atomicfu$size', protoOf(atomicfu$AtomicRefArray$ref).mo);
|
|
236
236
|
//endregion
|
|
237
237
|
//region block: exports
|
|
238
238
|
_.$_$ = _.$_$ || {};
|