@doordeck/doordeck-headless-sdk 0.39.0 → 0.40.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/Kotlin-DateTime-library-kotlinx-datetime.js +1 -1
- package/kotlin/doordeck-sdk.d.ts +3 -0
- package/kotlin/doordeck-sdk.js +661 -625
- package/kotlin/doordeck-sdk.js.map +1 -1
- package/kotlin/kotlinx-coroutines-core.js +6 -6
- package/kotlin/kotlinx-coroutines-core.js.map +1 -1
- package/package.json +1 -1
package/kotlin/doordeck-sdk.js
CHANGED
|
@@ -630,44 +630,44 @@
|
|
|
630
630
|
initMetadataForObject(KDoordeckFactory, 'KDoordeckFactory');
|
|
631
631
|
function registerEphemeralKeyWithSecondaryAuthentication(publicKey, method, $super) {
|
|
632
632
|
method = method === VOID ? null : method;
|
|
633
|
-
return this.
|
|
633
|
+
return this.y7j(publicKey, method);
|
|
634
634
|
}
|
|
635
635
|
initMetadataForInterface(AccountResource, 'AccountResource');
|
|
636
636
|
function registration(email, password, displayName, force, $super) {
|
|
637
637
|
displayName = displayName === VOID ? null : displayName;
|
|
638
638
|
force = force === VOID ? false : force;
|
|
639
|
-
return this.
|
|
639
|
+
return this.z7j(email, password, displayName, force);
|
|
640
640
|
}
|
|
641
641
|
initMetadataForInterface(AccountlessResource, 'AccountlessResource');
|
|
642
642
|
initMetadataForInterface(FusionResource, 'FusionResource');
|
|
643
643
|
initMetadataForInterface(HelperResource, 'HelperResource');
|
|
644
644
|
function updateLockName(lockId, name, $super) {
|
|
645
645
|
name = name === VOID ? null : name;
|
|
646
|
-
return this.
|
|
646
|
+
return this.a7k(lockId, name);
|
|
647
647
|
}
|
|
648
648
|
function updateLockFavourite(lockId, favourite, $super) {
|
|
649
649
|
favourite = favourite === VOID ? null : favourite;
|
|
650
|
-
return this.
|
|
650
|
+
return this.b7k(lockId, favourite);
|
|
651
651
|
}
|
|
652
652
|
function updateLockColour(lockId, colour, $super) {
|
|
653
653
|
colour = colour === VOID ? null : colour;
|
|
654
|
-
return this.
|
|
654
|
+
return this.c7k(lockId, colour);
|
|
655
655
|
}
|
|
656
656
|
function updateLockSettingDefaultName(lockId, name, $super) {
|
|
657
657
|
name = name === VOID ? null : name;
|
|
658
|
-
return this.
|
|
658
|
+
return this.d7k(lockId, name);
|
|
659
659
|
}
|
|
660
660
|
function updateLockSettingLocationRestrictions(lockId, location, $super) {
|
|
661
661
|
location = location === VOID ? null : location;
|
|
662
|
-
return this.
|
|
662
|
+
return this.e7k(lockId, location);
|
|
663
663
|
}
|
|
664
664
|
function getUserPublicKey(userEmail, visitor, $super) {
|
|
665
665
|
visitor = visitor === VOID ? false : visitor;
|
|
666
|
-
return this.
|
|
666
|
+
return this.f7k(userEmail, visitor);
|
|
667
667
|
}
|
|
668
668
|
function unlockWithContext(lockId, directAccessEndpoints, $super) {
|
|
669
669
|
directAccessEndpoints = directAccessEndpoints === VOID ? null : directAccessEndpoints;
|
|
670
|
-
return this.
|
|
670
|
+
return this.g7k(lockId, directAccessEndpoints);
|
|
671
671
|
}
|
|
672
672
|
initMetadataForInterface(LockOperationsResource, 'LockOperationsResource');
|
|
673
673
|
initMetadataForInterface(PlatformResource, 'PlatformResource');
|
|
@@ -16582,6 +16582,9 @@
|
|
|
16582
16582
|
protoOf(ContextManagerImpl).setAuthToken = function (token) {
|
|
16583
16583
|
this.u5x_1 = token;
|
|
16584
16584
|
};
|
|
16585
|
+
protoOf(ContextManagerImpl).setRefreshToken = function (token) {
|
|
16586
|
+
this.v5x_1 = token;
|
|
16587
|
+
};
|
|
16585
16588
|
protoOf(ContextManagerImpl).b5y = function (token, refreshToken) {
|
|
16586
16589
|
this.u5x_1 = token;
|
|
16587
16590
|
this.v5x_1 = refreshToken;
|
|
@@ -16633,45 +16636,55 @@
|
|
|
16633
16636
|
}
|
|
16634
16637
|
tmp.u5x_1 = tmp_0;
|
|
16635
16638
|
var tmp_1 = this;
|
|
16636
|
-
var tmp2_elvis_lhs = this.
|
|
16639
|
+
var tmp2_elvis_lhs = this.v5x_1;
|
|
16637
16640
|
var tmp_2;
|
|
16638
16641
|
if (tmp2_elvis_lhs == null) {
|
|
16639
16642
|
var tmp3_safe_receiver = this.a5y_1;
|
|
16640
|
-
tmp_2 = tmp3_safe_receiver == null ? null : tmp3_safe_receiver.
|
|
16643
|
+
tmp_2 = tmp3_safe_receiver == null ? null : tmp3_safe_receiver.getCloudRefreshToken();
|
|
16641
16644
|
} else {
|
|
16642
16645
|
tmp_2 = tmp2_elvis_lhs;
|
|
16643
16646
|
}
|
|
16644
|
-
tmp_1.
|
|
16647
|
+
tmp_1.v5x_1 = tmp_2;
|
|
16645
16648
|
var tmp_3 = this;
|
|
16646
|
-
var tmp4_elvis_lhs = this.
|
|
16649
|
+
var tmp4_elvis_lhs = this.w5x_1;
|
|
16647
16650
|
var tmp_4;
|
|
16648
16651
|
if (tmp4_elvis_lhs == null) {
|
|
16649
16652
|
var tmp5_safe_receiver = this.a5y_1;
|
|
16650
|
-
tmp_4 = tmp5_safe_receiver == null ? null : tmp5_safe_receiver.
|
|
16653
|
+
tmp_4 = tmp5_safe_receiver == null ? null : tmp5_safe_receiver.getFusionAuthToken();
|
|
16651
16654
|
} else {
|
|
16652
16655
|
tmp_4 = tmp4_elvis_lhs;
|
|
16653
16656
|
}
|
|
16654
|
-
tmp_3.
|
|
16657
|
+
tmp_3.w5x_1 = tmp_4;
|
|
16655
16658
|
var tmp_5 = this;
|
|
16656
|
-
var tmp6_elvis_lhs = this.
|
|
16659
|
+
var tmp6_elvis_lhs = this.x5x_1;
|
|
16657
16660
|
var tmp_6;
|
|
16658
16661
|
if (tmp6_elvis_lhs == null) {
|
|
16659
16662
|
var tmp7_safe_receiver = this.a5y_1;
|
|
16660
|
-
tmp_6 = tmp7_safe_receiver == null ? null : tmp7_safe_receiver.
|
|
16663
|
+
tmp_6 = tmp7_safe_receiver == null ? null : tmp7_safe_receiver.getUserId();
|
|
16661
16664
|
} else {
|
|
16662
16665
|
tmp_6 = tmp6_elvis_lhs;
|
|
16663
16666
|
}
|
|
16664
|
-
tmp_5.
|
|
16667
|
+
tmp_5.x5x_1 = tmp_6;
|
|
16665
16668
|
var tmp_7 = this;
|
|
16666
|
-
var tmp8_elvis_lhs = this.
|
|
16669
|
+
var tmp8_elvis_lhs = this.y5x_1;
|
|
16667
16670
|
var tmp_8;
|
|
16668
16671
|
if (tmp8_elvis_lhs == null) {
|
|
16669
16672
|
var tmp9_safe_receiver = this.a5y_1;
|
|
16670
|
-
tmp_8 = tmp9_safe_receiver == null ? null : tmp9_safe_receiver.
|
|
16673
|
+
tmp_8 = tmp9_safe_receiver == null ? null : tmp9_safe_receiver.getCertificateChain();
|
|
16671
16674
|
} else {
|
|
16672
16675
|
tmp_8 = tmp8_elvis_lhs;
|
|
16673
16676
|
}
|
|
16674
|
-
tmp_7.
|
|
16677
|
+
tmp_7.y5x_1 = tmp_8;
|
|
16678
|
+
var tmp_9 = this;
|
|
16679
|
+
var tmp10_elvis_lhs = this.z5x_1;
|
|
16680
|
+
var tmp_10;
|
|
16681
|
+
if (tmp10_elvis_lhs == null) {
|
|
16682
|
+
var tmp11_safe_receiver = this.a5y_1;
|
|
16683
|
+
tmp_10 = tmp11_safe_receiver == null ? null : tmp11_safe_receiver.getPrivateKey();
|
|
16684
|
+
} else {
|
|
16685
|
+
tmp_10 = tmp10_elvis_lhs;
|
|
16686
|
+
}
|
|
16687
|
+
tmp_9.z5x_1 = tmp_10;
|
|
16675
16688
|
};
|
|
16676
16689
|
protoOf(ContextManagerImpl).storeContext = function () {
|
|
16677
16690
|
initializeSecureStorage(this);
|
|
@@ -16691,7 +16704,7 @@
|
|
|
16691
16704
|
tmp = Unit_instance;
|
|
16692
16705
|
}
|
|
16693
16706
|
}
|
|
16694
|
-
var tmp1_safe_receiver = this.
|
|
16707
|
+
var tmp1_safe_receiver = this.v5x_1;
|
|
16695
16708
|
if (tmp1_safe_receiver == null)
|
|
16696
16709
|
null;
|
|
16697
16710
|
else {
|
|
@@ -16703,11 +16716,11 @@
|
|
|
16703
16716
|
if (tmp0_safe_receiver_1 == null) {
|
|
16704
16717
|
tmp_0 = null;
|
|
16705
16718
|
} else {
|
|
16706
|
-
tmp0_safe_receiver_1.
|
|
16719
|
+
tmp0_safe_receiver_1.addCloudRefreshToken(tmp1_safe_receiver);
|
|
16707
16720
|
tmp_0 = Unit_instance;
|
|
16708
16721
|
}
|
|
16709
16722
|
}
|
|
16710
|
-
var tmp2_safe_receiver = this.
|
|
16723
|
+
var tmp2_safe_receiver = this.w5x_1;
|
|
16711
16724
|
if (tmp2_safe_receiver == null)
|
|
16712
16725
|
null;
|
|
16713
16726
|
else {
|
|
@@ -16719,11 +16732,11 @@
|
|
|
16719
16732
|
if (tmp0_safe_receiver_2 == null) {
|
|
16720
16733
|
tmp_1 = null;
|
|
16721
16734
|
} else {
|
|
16722
|
-
tmp0_safe_receiver_2.
|
|
16735
|
+
tmp0_safe_receiver_2.addFusionAuthToken(tmp2_safe_receiver);
|
|
16723
16736
|
tmp_1 = Unit_instance;
|
|
16724
16737
|
}
|
|
16725
16738
|
}
|
|
16726
|
-
var tmp3_safe_receiver = this.
|
|
16739
|
+
var tmp3_safe_receiver = this.x5x_1;
|
|
16727
16740
|
if (tmp3_safe_receiver == null)
|
|
16728
16741
|
null;
|
|
16729
16742
|
else {
|
|
@@ -16735,11 +16748,11 @@
|
|
|
16735
16748
|
if (tmp0_safe_receiver_3 == null) {
|
|
16736
16749
|
tmp_2 = null;
|
|
16737
16750
|
} else {
|
|
16738
|
-
tmp0_safe_receiver_3.
|
|
16751
|
+
tmp0_safe_receiver_3.addUserId(tmp3_safe_receiver);
|
|
16739
16752
|
tmp_2 = Unit_instance;
|
|
16740
16753
|
}
|
|
16741
16754
|
}
|
|
16742
|
-
var tmp4_safe_receiver = this.
|
|
16755
|
+
var tmp4_safe_receiver = this.y5x_1;
|
|
16743
16756
|
if (tmp4_safe_receiver == null)
|
|
16744
16757
|
null;
|
|
16745
16758
|
else {
|
|
@@ -16751,10 +16764,26 @@
|
|
|
16751
16764
|
if (tmp0_safe_receiver_4 == null) {
|
|
16752
16765
|
tmp_3 = null;
|
|
16753
16766
|
} else {
|
|
16754
|
-
tmp0_safe_receiver_4.
|
|
16767
|
+
tmp0_safe_receiver_4.addCertificateChain(tmp4_safe_receiver);
|
|
16755
16768
|
tmp_3 = Unit_instance;
|
|
16756
16769
|
}
|
|
16757
16770
|
}
|
|
16771
|
+
var tmp5_safe_receiver = this.z5x_1;
|
|
16772
|
+
if (tmp5_safe_receiver == null)
|
|
16773
|
+
null;
|
|
16774
|
+
else {
|
|
16775
|
+
// Inline function 'kotlin.let' call
|
|
16776
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
16777
|
+
// Inline function 'com.doordeck.multiplatform.sdk.internal.ContextManagerImpl.storeContext.<anonymous>' call
|
|
16778
|
+
var tmp0_safe_receiver_5 = this.a5y_1;
|
|
16779
|
+
var tmp_4;
|
|
16780
|
+
if (tmp0_safe_receiver_5 == null) {
|
|
16781
|
+
tmp_4 = null;
|
|
16782
|
+
} else {
|
|
16783
|
+
tmp0_safe_receiver_5.addPrivateKey(tmp5_safe_receiver);
|
|
16784
|
+
tmp_4 = Unit_instance;
|
|
16785
|
+
}
|
|
16786
|
+
}
|
|
16758
16787
|
};
|
|
16759
16788
|
protoOf(ContextManagerImpl).clearContext = function () {
|
|
16760
16789
|
initializeSecureStorage(this);
|
|
@@ -26918,10 +26947,11 @@
|
|
|
26918
26947
|
function DefaultSecureStorage(settings) {
|
|
26919
26948
|
this.y7h_1 = settings;
|
|
26920
26949
|
this.z7h_1 = 'CLOUD_AUTH_TOKEN_KEY';
|
|
26921
|
-
this.a7i_1 = '
|
|
26922
|
-
this.b7i_1 = '
|
|
26923
|
-
this.c7i_1 = '
|
|
26924
|
-
this.d7i_1 = '
|
|
26950
|
+
this.a7i_1 = 'CLOUD_REFRESH_TOKEN_KEY';
|
|
26951
|
+
this.b7i_1 = 'FUSION_AUTH_TOKEN_KEY';
|
|
26952
|
+
this.c7i_1 = 'PRIVATE_KEY_KEY';
|
|
26953
|
+
this.d7i_1 = 'USER_ID_KEY';
|
|
26954
|
+
this.e7i_1 = 'CERTIFICATE_CHAIN_KEY';
|
|
26925
26955
|
}
|
|
26926
26956
|
protoOf(DefaultSecureStorage).addCloudAuthToken = function (token) {
|
|
26927
26957
|
return this.y7h_1.j58(this.z7h_1, token);
|
|
@@ -26929,30 +26959,36 @@
|
|
|
26929
26959
|
protoOf(DefaultSecureStorage).getCloudAuthToken = function () {
|
|
26930
26960
|
return this.y7h_1.k58(this.z7h_1);
|
|
26931
26961
|
};
|
|
26932
|
-
protoOf(DefaultSecureStorage).
|
|
26962
|
+
protoOf(DefaultSecureStorage).addCloudRefreshToken = function (token) {
|
|
26933
26963
|
return this.y7h_1.j58(this.a7i_1, token);
|
|
26934
26964
|
};
|
|
26935
|
-
protoOf(DefaultSecureStorage).
|
|
26965
|
+
protoOf(DefaultSecureStorage).getCloudRefreshToken = function () {
|
|
26936
26966
|
return this.y7h_1.k58(this.a7i_1);
|
|
26937
26967
|
};
|
|
26968
|
+
protoOf(DefaultSecureStorage).addFusionAuthToken = function (token) {
|
|
26969
|
+
return this.y7h_1.j58(this.b7i_1, token);
|
|
26970
|
+
};
|
|
26971
|
+
protoOf(DefaultSecureStorage).getFusionAuthToken = function () {
|
|
26972
|
+
return this.y7h_1.k58(this.b7i_1);
|
|
26973
|
+
};
|
|
26938
26974
|
protoOf(DefaultSecureStorage).addPrivateKey = function (byteArray) {
|
|
26939
|
-
return this.y7h_1.j58(this.
|
|
26975
|
+
return this.y7h_1.j58(this.c7i_1, Utils_instance.encodeByteArrayToBase64(byteArray));
|
|
26940
26976
|
};
|
|
26941
26977
|
protoOf(DefaultSecureStorage).getPrivateKey = function () {
|
|
26942
|
-
var tmp0_safe_receiver = this.y7h_1.k58(this.
|
|
26978
|
+
var tmp0_safe_receiver = this.y7h_1.k58(this.c7i_1);
|
|
26943
26979
|
return tmp0_safe_receiver == null ? null : Utils_instance.decodeBase64ToByteArray(tmp0_safe_receiver);
|
|
26944
26980
|
};
|
|
26945
26981
|
protoOf(DefaultSecureStorage).addUserId = function (userId) {
|
|
26946
|
-
this.y7h_1.j58(this.
|
|
26982
|
+
this.y7h_1.j58(this.d7i_1, userId);
|
|
26947
26983
|
};
|
|
26948
26984
|
protoOf(DefaultSecureStorage).getUserId = function () {
|
|
26949
|
-
return this.y7h_1.k58(this.
|
|
26985
|
+
return this.y7h_1.k58(this.d7i_1);
|
|
26950
26986
|
};
|
|
26951
26987
|
protoOf(DefaultSecureStorage).addCertificateChain = function (certificateChain) {
|
|
26952
|
-
return this.y7h_1.j58(this.
|
|
26988
|
+
return this.y7h_1.j58(this.e7i_1, Utils_instance.certificateChainToString(certificateChain));
|
|
26953
26989
|
};
|
|
26954
26990
|
protoOf(DefaultSecureStorage).getCertificateChain = function () {
|
|
26955
|
-
var tmp0_safe_receiver = this.y7h_1.k58(this.
|
|
26991
|
+
var tmp0_safe_receiver = this.y7h_1.k58(this.e7i_1);
|
|
26956
26992
|
return tmp0_safe_receiver == null ? null : Utils_instance.stringToCertificateChain(tmp0_safe_receiver);
|
|
26957
26993
|
};
|
|
26958
26994
|
protoOf(DefaultSecureStorage).clear = function () {
|
|
@@ -27045,18 +27081,18 @@
|
|
|
27045
27081
|
};
|
|
27046
27082
|
}
|
|
27047
27083
|
function installAuth$lambda$lambda$slambda($contextManager, $currentRefreshToken, resultContinuation) {
|
|
27048
|
-
this.
|
|
27049
|
-
this.
|
|
27084
|
+
this.n7i_1 = $contextManager;
|
|
27085
|
+
this.o7i_1 = $currentRefreshToken;
|
|
27050
27086
|
CoroutineImpl.call(this, resultContinuation);
|
|
27051
27087
|
}
|
|
27052
|
-
protoOf(installAuth$lambda$lambda$slambda).
|
|
27088
|
+
protoOf(installAuth$lambda$lambda$slambda).y7i = function ($this$refreshTokens, $completion) {
|
|
27053
27089
|
var tmp = this.b44($this$refreshTokens, $completion);
|
|
27054
27090
|
tmp.f9_1 = Unit_instance;
|
|
27055
27091
|
tmp.g9_1 = null;
|
|
27056
27092
|
return tmp.l9();
|
|
27057
27093
|
};
|
|
27058
27094
|
protoOf(installAuth$lambda$lambda$slambda).v9 = function (p1, $completion) {
|
|
27059
|
-
return this.
|
|
27095
|
+
return this.y7i(p1 instanceof RefreshTokensParams ? p1 : THROW_CCE(), $completion);
|
|
27060
27096
|
};
|
|
27061
27097
|
protoOf(installAuth$lambda$lambda$slambda).l9 = function () {
|
|
27062
27098
|
var suspendResult = this.f9_1;
|
|
@@ -27067,34 +27103,34 @@
|
|
|
27067
27103
|
case 0:
|
|
27068
27104
|
this.e9_1 = 3;
|
|
27069
27105
|
var tmp_0 = this;
|
|
27070
|
-
tmp_0.
|
|
27106
|
+
tmp_0.q7i_1 = this.p7i_1.n44_1;
|
|
27071
27107
|
var tmp_1 = this;
|
|
27072
|
-
tmp_1.
|
|
27108
|
+
tmp_1.r7i_1 = Paths_instance.a60();
|
|
27073
27109
|
var tmp_2 = this;
|
|
27074
|
-
tmp_2.
|
|
27110
|
+
tmp_2.s7i_1 = this.q7i_1;
|
|
27075
27111
|
var tmp_3 = this;
|
|
27076
|
-
tmp_3.
|
|
27112
|
+
tmp_3.t7i_1 = this.s7i_1;
|
|
27077
27113
|
var tmp_4 = this;
|
|
27078
27114
|
var this_0 = new HttpRequestBuilder();
|
|
27079
|
-
url(this_0, this.
|
|
27080
|
-
headers(this_0, installAuth$lambda$lambda$slambda$lambda(this.
|
|
27081
|
-
tmp_4.
|
|
27082
|
-
this.
|
|
27115
|
+
url(this_0, this.r7i_1);
|
|
27116
|
+
headers(this_0, installAuth$lambda$lambda$slambda$lambda(this.o7i_1));
|
|
27117
|
+
tmp_4.u7i_1 = this_0;
|
|
27118
|
+
this.u7i_1.s2u_1 = Companion_getInstance_4().r2i_1;
|
|
27083
27119
|
var tmp_5 = this;
|
|
27084
|
-
tmp_5.
|
|
27120
|
+
tmp_5.v7i_1 = this.t7i_1;
|
|
27085
27121
|
var tmp_6 = this;
|
|
27086
|
-
tmp_6.
|
|
27122
|
+
tmp_6.w7i_1 = this.u7i_1;
|
|
27087
27123
|
this.d9_1 = 1;
|
|
27088
|
-
suspendResult = (new HttpStatement(this.
|
|
27124
|
+
suspendResult = (new HttpStatement(this.w7i_1, this.v7i_1)).y3t(this);
|
|
27089
27125
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
27090
27126
|
return suspendResult;
|
|
27091
27127
|
}
|
|
27092
27128
|
|
|
27093
27129
|
continue $sm;
|
|
27094
27130
|
case 1:
|
|
27095
|
-
this.
|
|
27131
|
+
this.x7i_1 = suspendResult;
|
|
27096
27132
|
this.d9_1 = 2;
|
|
27097
|
-
var tmp_7 = this.
|
|
27133
|
+
var tmp_7 = this.x7i_1.z2x();
|
|
27098
27134
|
var tmp_8 = getKClass(TokenResponse);
|
|
27099
27135
|
var tmp_9;
|
|
27100
27136
|
try {
|
|
@@ -27118,7 +27154,7 @@
|
|
|
27118
27154
|
continue $sm;
|
|
27119
27155
|
case 2:
|
|
27120
27156
|
var refreshTokens = suspendResult instanceof TokenResponse ? suspendResult : THROW_CCE();
|
|
27121
|
-
this.
|
|
27157
|
+
this.n7i_1.b5y(refreshTokens.authToken, refreshTokens.refreshToken);
|
|
27122
27158
|
return new BearerTokens(refreshTokens.authToken, refreshTokens.refreshToken);
|
|
27123
27159
|
case 3:
|
|
27124
27160
|
throw this.g9_1;
|
|
@@ -27135,14 +27171,14 @@
|
|
|
27135
27171
|
while (true);
|
|
27136
27172
|
};
|
|
27137
27173
|
protoOf(installAuth$lambda$lambda$slambda).b44 = function ($this$refreshTokens, completion) {
|
|
27138
|
-
var i = new installAuth$lambda$lambda$slambda(this.
|
|
27139
|
-
i.
|
|
27174
|
+
var i = new installAuth$lambda$lambda$slambda(this.n7i_1, this.o7i_1, completion);
|
|
27175
|
+
i.p7i_1 = $this$refreshTokens;
|
|
27140
27176
|
return i;
|
|
27141
27177
|
};
|
|
27142
27178
|
function installAuth$lambda$lambda$slambda_0($contextManager, $currentRefreshToken, resultContinuation) {
|
|
27143
27179
|
var i = new installAuth$lambda$lambda$slambda($contextManager, $currentRefreshToken, resultContinuation);
|
|
27144
27180
|
var l = function ($this$refreshTokens, $completion) {
|
|
27145
|
-
return i.
|
|
27181
|
+
return i.y7i($this$refreshTokens, $completion);
|
|
27146
27182
|
};
|
|
27147
27183
|
l.$arity = 1;
|
|
27148
27184
|
return l;
|
|
@@ -27189,8 +27225,8 @@
|
|
|
27189
27225
|
};
|
|
27190
27226
|
}
|
|
27191
27227
|
function addCloudInterceptor$slambda($apiEnvironment, $contextManager, resultContinuation) {
|
|
27192
|
-
this.
|
|
27193
|
-
this.
|
|
27228
|
+
this.h7j_1 = $apiEnvironment;
|
|
27229
|
+
this.i7j_1 = $contextManager;
|
|
27194
27230
|
CoroutineImpl.call(this, resultContinuation);
|
|
27195
27231
|
}
|
|
27196
27232
|
protoOf(addCloudInterceptor$slambda).z3m = function ($this$intercept, request, $completion) {
|
|
@@ -27211,16 +27247,16 @@
|
|
|
27211
27247
|
switch (tmp) {
|
|
27212
27248
|
case 0:
|
|
27213
27249
|
this.e9_1 = 2;
|
|
27214
|
-
this.
|
|
27215
|
-
if (get_host(this.
|
|
27216
|
-
var currentToken = this.
|
|
27250
|
+
this.l7j_1 = get_encodedPath(this.k7j_1.r2u_1);
|
|
27251
|
+
if (get_host(this.k7j_1) === this.h7j_1.cloudHost && !(this.l7j_1 === Paths_instance.q69()) && !(this.l7j_1 === Paths_instance.r6a()) && !(this.l7j_1 === Paths_instance.o6b()) && !this.k7j_1.t2u_1.g28(HttpHeaders_getInstance().v2e_1)) {
|
|
27252
|
+
var currentToken = this.i7j_1.u5x_1;
|
|
27217
27253
|
if (!(currentToken == null)) {
|
|
27218
|
-
headers(this.
|
|
27254
|
+
headers(this.k7j_1, addCloudInterceptor$slambda$lambda(currentToken));
|
|
27219
27255
|
}
|
|
27220
27256
|
}
|
|
27221
27257
|
|
|
27222
27258
|
this.d9_1 = 1;
|
|
27223
|
-
suspendResult = this.
|
|
27259
|
+
suspendResult = this.j7j_1.a3i(this.k7j_1, this);
|
|
27224
27260
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
27225
27261
|
return suspendResult;
|
|
27226
27262
|
}
|
|
@@ -27243,9 +27279,9 @@
|
|
|
27243
27279
|
while (true);
|
|
27244
27280
|
};
|
|
27245
27281
|
protoOf(addCloudInterceptor$slambda).a3n = function ($this$intercept, request, completion) {
|
|
27246
|
-
var i = new addCloudInterceptor$slambda(this.
|
|
27247
|
-
i.
|
|
27248
|
-
i.
|
|
27282
|
+
var i = new addCloudInterceptor$slambda(this.h7j_1, this.i7j_1, completion);
|
|
27283
|
+
i.j7j_1 = $this$intercept;
|
|
27284
|
+
i.k7j_1 = request;
|
|
27249
27285
|
return i;
|
|
27250
27286
|
};
|
|
27251
27287
|
function addCloudInterceptor$slambda_0($apiEnvironment, $contextManager, resultContinuation) {
|
|
@@ -27263,7 +27299,7 @@
|
|
|
27263
27299
|
};
|
|
27264
27300
|
}
|
|
27265
27301
|
function addFusionInterceptor$slambda($contextManager, resultContinuation) {
|
|
27266
|
-
this.
|
|
27302
|
+
this.u7j_1 = $contextManager;
|
|
27267
27303
|
CoroutineImpl.call(this, resultContinuation);
|
|
27268
27304
|
}
|
|
27269
27305
|
protoOf(addFusionInterceptor$slambda).z3m = function ($this$intercept, request, $completion) {
|
|
@@ -27284,16 +27320,16 @@
|
|
|
27284
27320
|
switch (tmp) {
|
|
27285
27321
|
case 0:
|
|
27286
27322
|
this.e9_1 = 2;
|
|
27287
|
-
this.
|
|
27288
|
-
if (!(this.
|
|
27289
|
-
var currentToken = this.
|
|
27323
|
+
this.x7j_1 = get_encodedPath(this.w7j_1.r2u_1);
|
|
27324
|
+
if (!(this.x7j_1 === FusionPaths_instance.q69()) && !this.w7j_1.t2u_1.g28(HttpHeaders_getInstance().v2e_1)) {
|
|
27325
|
+
var currentToken = this.u7j_1.w5x_1;
|
|
27290
27326
|
if (!(currentToken == null)) {
|
|
27291
|
-
headers(this.
|
|
27327
|
+
headers(this.w7j_1, addFusionInterceptor$slambda$lambda(currentToken));
|
|
27292
27328
|
}
|
|
27293
27329
|
}
|
|
27294
27330
|
|
|
27295
27331
|
this.d9_1 = 1;
|
|
27296
|
-
suspendResult = this.
|
|
27332
|
+
suspendResult = this.v7j_1.a3i(this.w7j_1, this);
|
|
27297
27333
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
27298
27334
|
return suspendResult;
|
|
27299
27335
|
}
|
|
@@ -27316,9 +27352,9 @@
|
|
|
27316
27352
|
while (true);
|
|
27317
27353
|
};
|
|
27318
27354
|
protoOf(addFusionInterceptor$slambda).a3n = function ($this$intercept, request, completion) {
|
|
27319
|
-
var i = new addFusionInterceptor$slambda(this.
|
|
27320
|
-
i.
|
|
27321
|
-
i.
|
|
27355
|
+
var i = new addFusionInterceptor$slambda(this.u7j_1, completion);
|
|
27356
|
+
i.v7j_1 = $this$intercept;
|
|
27357
|
+
i.w7j_1 = request;
|
|
27322
27358
|
return i;
|
|
27323
27359
|
};
|
|
27324
27360
|
function addFusionInterceptor$slambda_0($contextManager, resultContinuation) {
|
|
@@ -27597,7 +27633,7 @@
|
|
|
27597
27633
|
protoOf(CryptoManager).generateEncodedKeyPair = function () {
|
|
27598
27634
|
throw new NotImplementedError('Use generateKeyPair() instead');
|
|
27599
27635
|
};
|
|
27600
|
-
protoOf(CryptoManager).
|
|
27636
|
+
protoOf(CryptoManager).h7k = function (_this__u8e3s4) {
|
|
27601
27637
|
var tmp;
|
|
27602
27638
|
switch (_this__u8e3s4.length) {
|
|
27603
27639
|
case 32:
|
|
@@ -27612,7 +27648,7 @@
|
|
|
27612
27648
|
}
|
|
27613
27649
|
return tmp;
|
|
27614
27650
|
};
|
|
27615
|
-
protoOf(CryptoManager).
|
|
27651
|
+
protoOf(CryptoManager).i7k = function (_this__u8e3s4) {
|
|
27616
27652
|
var tmp;
|
|
27617
27653
|
switch (_this__u8e3s4.length) {
|
|
27618
27654
|
case 32:
|
|
@@ -27674,7 +27710,7 @@
|
|
|
27674
27710
|
// Inline function 'kotlin.collections.toUByteArray' call
|
|
27675
27711
|
// Inline function 'kotlin.collections.copyOf' call
|
|
27676
27712
|
// Inline function 'kotlin.js.asDynamic' call
|
|
27677
|
-
var tmp$ret$4 = this.
|
|
27713
|
+
var tmp$ret$4 = this.i7k(privateKey).slice();
|
|
27678
27714
|
var tmp$ret$5 = _UByteArray___init__impl__ip4y9n(tmp$ret$4);
|
|
27679
27715
|
var this_0 = tmp_0.um(tmp_1, tmp$ret$5);
|
|
27680
27716
|
// Inline function 'kotlin.collections.copyOf' call
|
|
@@ -27691,7 +27727,7 @@
|
|
|
27691
27727
|
}
|
|
27692
27728
|
return tmp;
|
|
27693
27729
|
};
|
|
27694
|
-
protoOf(CryptoManager).
|
|
27730
|
+
protoOf(CryptoManager).j7k = function (_this__u8e3s4, publicKey, message) {
|
|
27695
27731
|
var tmp;
|
|
27696
27732
|
try {
|
|
27697
27733
|
var tmp_0 = Signature_instance;
|
|
@@ -27708,7 +27744,7 @@
|
|
|
27708
27744
|
// Inline function 'kotlin.collections.toUByteArray' call
|
|
27709
27745
|
// Inline function 'kotlin.collections.copyOf' call
|
|
27710
27746
|
// Inline function 'kotlin.js.asDynamic' call
|
|
27711
|
-
var tmp$ret$7 = this.
|
|
27747
|
+
var tmp$ret$7 = this.h7k(publicKey).slice();
|
|
27712
27748
|
var tmp$ret$8 = _UByteArray___init__impl__ip4y9n(tmp$ret$7);
|
|
27713
27749
|
tmp_0.vm(tmp_1, tmp_2, tmp$ret$8);
|
|
27714
27750
|
tmp = true;
|
|
@@ -27734,18 +27770,18 @@
|
|
|
27734
27770
|
return CryptoManager_getInstance();
|
|
27735
27771
|
}
|
|
27736
27772
|
function AccountResourceImpl$refreshToken$slambda(this$0, $refreshToken, resultContinuation) {
|
|
27737
|
-
this.
|
|
27738
|
-
this.
|
|
27773
|
+
this.s7k_1 = this$0;
|
|
27774
|
+
this.t7k_1 = $refreshToken;
|
|
27739
27775
|
CoroutineImpl.call(this, resultContinuation);
|
|
27740
27776
|
}
|
|
27741
|
-
protoOf(AccountResourceImpl$refreshToken$slambda).
|
|
27777
|
+
protoOf(AccountResourceImpl$refreshToken$slambda).v7k = function ($this$promise, $completion) {
|
|
27742
27778
|
var tmp = this.m1k($this$promise, $completion);
|
|
27743
27779
|
tmp.f9_1 = Unit_instance;
|
|
27744
27780
|
tmp.g9_1 = null;
|
|
27745
27781
|
return tmp.l9();
|
|
27746
27782
|
};
|
|
27747
27783
|
protoOf(AccountResourceImpl$refreshToken$slambda).v9 = function (p1, $completion) {
|
|
27748
|
-
return this.
|
|
27784
|
+
return this.v7k((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
27749
27785
|
};
|
|
27750
27786
|
protoOf(AccountResourceImpl$refreshToken$slambda).l9 = function () {
|
|
27751
27787
|
var suspendResult = this.f9_1;
|
|
@@ -27756,7 +27792,7 @@
|
|
|
27756
27792
|
case 0:
|
|
27757
27793
|
this.e9_1 = 2;
|
|
27758
27794
|
this.d9_1 = 1;
|
|
27759
|
-
suspendResult = this.
|
|
27795
|
+
suspendResult = this.s7k_1.h68(this.t7k_1, this);
|
|
27760
27796
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
27761
27797
|
return suspendResult;
|
|
27762
27798
|
}
|
|
@@ -27779,20 +27815,20 @@
|
|
|
27779
27815
|
while (true);
|
|
27780
27816
|
};
|
|
27781
27817
|
protoOf(AccountResourceImpl$refreshToken$slambda).m1k = function ($this$promise, completion) {
|
|
27782
|
-
var i = new AccountResourceImpl$refreshToken$slambda(this.
|
|
27783
|
-
i.
|
|
27818
|
+
var i = new AccountResourceImpl$refreshToken$slambda(this.s7k_1, this.t7k_1, completion);
|
|
27819
|
+
i.u7k_1 = $this$promise;
|
|
27784
27820
|
return i;
|
|
27785
27821
|
};
|
|
27786
27822
|
function AccountResourceImpl$refreshToken$slambda_0(this$0, $refreshToken, resultContinuation) {
|
|
27787
27823
|
var i = new AccountResourceImpl$refreshToken$slambda(this$0, $refreshToken, resultContinuation);
|
|
27788
27824
|
var l = function ($this$promise, $completion) {
|
|
27789
|
-
return i.
|
|
27825
|
+
return i.v7k($this$promise, $completion);
|
|
27790
27826
|
};
|
|
27791
27827
|
l.$arity = 1;
|
|
27792
27828
|
return l;
|
|
27793
27829
|
}
|
|
27794
27830
|
function AccountResourceImpl$logout$slambda(this$0, resultContinuation) {
|
|
27795
|
-
this.
|
|
27831
|
+
this.e7l_1 = this$0;
|
|
27796
27832
|
CoroutineImpl.call(this, resultContinuation);
|
|
27797
27833
|
}
|
|
27798
27834
|
protoOf(AccountResourceImpl$logout$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -27813,7 +27849,7 @@
|
|
|
27813
27849
|
case 0:
|
|
27814
27850
|
this.e9_1 = 2;
|
|
27815
27851
|
this.d9_1 = 1;
|
|
27816
|
-
suspendResult = this.
|
|
27852
|
+
suspendResult = this.e7l_1.i68(this);
|
|
27817
27853
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
27818
27854
|
return suspendResult;
|
|
27819
27855
|
}
|
|
@@ -27836,8 +27872,8 @@
|
|
|
27836
27872
|
while (true);
|
|
27837
27873
|
};
|
|
27838
27874
|
protoOf(AccountResourceImpl$logout$slambda).m1k = function ($this$promise, completion) {
|
|
27839
|
-
var i = new AccountResourceImpl$logout$slambda(this.
|
|
27840
|
-
i.
|
|
27875
|
+
var i = new AccountResourceImpl$logout$slambda(this.e7l_1, completion);
|
|
27876
|
+
i.f7l_1 = $this$promise;
|
|
27841
27877
|
return i;
|
|
27842
27878
|
};
|
|
27843
27879
|
function AccountResourceImpl$logout$slambda_0(this$0, resultContinuation) {
|
|
@@ -27849,18 +27885,18 @@
|
|
|
27849
27885
|
return l;
|
|
27850
27886
|
}
|
|
27851
27887
|
function AccountResourceImpl$registerEphemeralKey$slambda(this$0, $publicKey, resultContinuation) {
|
|
27852
|
-
this.
|
|
27853
|
-
this.
|
|
27888
|
+
this.o7l_1 = this$0;
|
|
27889
|
+
this.p7l_1 = $publicKey;
|
|
27854
27890
|
CoroutineImpl.call(this, resultContinuation);
|
|
27855
27891
|
}
|
|
27856
|
-
protoOf(AccountResourceImpl$registerEphemeralKey$slambda).
|
|
27892
|
+
protoOf(AccountResourceImpl$registerEphemeralKey$slambda).r7l = function ($this$promise, $completion) {
|
|
27857
27893
|
var tmp = this.m1k($this$promise, $completion);
|
|
27858
27894
|
tmp.f9_1 = Unit_instance;
|
|
27859
27895
|
tmp.g9_1 = null;
|
|
27860
27896
|
return tmp.l9();
|
|
27861
27897
|
};
|
|
27862
27898
|
protoOf(AccountResourceImpl$registerEphemeralKey$slambda).v9 = function (p1, $completion) {
|
|
27863
|
-
return this.
|
|
27899
|
+
return this.r7l((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
27864
27900
|
};
|
|
27865
27901
|
protoOf(AccountResourceImpl$registerEphemeralKey$slambda).l9 = function () {
|
|
27866
27902
|
var suspendResult = this.f9_1;
|
|
@@ -27871,7 +27907,7 @@
|
|
|
27871
27907
|
case 0:
|
|
27872
27908
|
this.e9_1 = 2;
|
|
27873
27909
|
this.d9_1 = 1;
|
|
27874
|
-
suspendResult = this.
|
|
27910
|
+
suspendResult = this.o7l_1.j68(this.p7l_1, this);
|
|
27875
27911
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
27876
27912
|
return suspendResult;
|
|
27877
27913
|
}
|
|
@@ -27894,32 +27930,32 @@
|
|
|
27894
27930
|
while (true);
|
|
27895
27931
|
};
|
|
27896
27932
|
protoOf(AccountResourceImpl$registerEphemeralKey$slambda).m1k = function ($this$promise, completion) {
|
|
27897
|
-
var i = new AccountResourceImpl$registerEphemeralKey$slambda(this.
|
|
27898
|
-
i.
|
|
27933
|
+
var i = new AccountResourceImpl$registerEphemeralKey$slambda(this.o7l_1, this.p7l_1, completion);
|
|
27934
|
+
i.q7l_1 = $this$promise;
|
|
27899
27935
|
return i;
|
|
27900
27936
|
};
|
|
27901
27937
|
function AccountResourceImpl$registerEphemeralKey$slambda_0(this$0, $publicKey, resultContinuation) {
|
|
27902
27938
|
var i = new AccountResourceImpl$registerEphemeralKey$slambda(this$0, $publicKey, resultContinuation);
|
|
27903
27939
|
var l = function ($this$promise, $completion) {
|
|
27904
|
-
return i.
|
|
27940
|
+
return i.r7l($this$promise, $completion);
|
|
27905
27941
|
};
|
|
27906
27942
|
l.$arity = 1;
|
|
27907
27943
|
return l;
|
|
27908
27944
|
}
|
|
27909
27945
|
function AccountResourceImpl$registerEphemeralKeyWithSecondaryAuthentication$slambda(this$0, $publicKey, $method, resultContinuation) {
|
|
27910
|
-
this.
|
|
27911
|
-
this.
|
|
27912
|
-
this.
|
|
27946
|
+
this.a7m_1 = this$0;
|
|
27947
|
+
this.b7m_1 = $publicKey;
|
|
27948
|
+
this.c7m_1 = $method;
|
|
27913
27949
|
CoroutineImpl.call(this, resultContinuation);
|
|
27914
27950
|
}
|
|
27915
|
-
protoOf(AccountResourceImpl$registerEphemeralKeyWithSecondaryAuthentication$slambda).
|
|
27951
|
+
protoOf(AccountResourceImpl$registerEphemeralKeyWithSecondaryAuthentication$slambda).e7m = function ($this$promise, $completion) {
|
|
27916
27952
|
var tmp = this.m1k($this$promise, $completion);
|
|
27917
27953
|
tmp.f9_1 = Unit_instance;
|
|
27918
27954
|
tmp.g9_1 = null;
|
|
27919
27955
|
return tmp.l9();
|
|
27920
27956
|
};
|
|
27921
27957
|
protoOf(AccountResourceImpl$registerEphemeralKeyWithSecondaryAuthentication$slambda).v9 = function (p1, $completion) {
|
|
27922
|
-
return this.
|
|
27958
|
+
return this.e7m((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
27923
27959
|
};
|
|
27924
27960
|
protoOf(AccountResourceImpl$registerEphemeralKeyWithSecondaryAuthentication$slambda).l9 = function () {
|
|
27925
27961
|
var suspendResult = this.f9_1;
|
|
@@ -27930,7 +27966,7 @@
|
|
|
27930
27966
|
case 0:
|
|
27931
27967
|
this.e9_1 = 2;
|
|
27932
27968
|
this.d9_1 = 1;
|
|
27933
|
-
suspendResult = this.
|
|
27969
|
+
suspendResult = this.a7m_1.k68(this.b7m_1, this.c7m_1, this);
|
|
27934
27970
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
27935
27971
|
return suspendResult;
|
|
27936
27972
|
}
|
|
@@ -27953,32 +27989,32 @@
|
|
|
27953
27989
|
while (true);
|
|
27954
27990
|
};
|
|
27955
27991
|
protoOf(AccountResourceImpl$registerEphemeralKeyWithSecondaryAuthentication$slambda).m1k = function ($this$promise, completion) {
|
|
27956
|
-
var i = new AccountResourceImpl$registerEphemeralKeyWithSecondaryAuthentication$slambda(this.
|
|
27957
|
-
i.
|
|
27992
|
+
var i = new AccountResourceImpl$registerEphemeralKeyWithSecondaryAuthentication$slambda(this.a7m_1, this.b7m_1, this.c7m_1, completion);
|
|
27993
|
+
i.d7m_1 = $this$promise;
|
|
27958
27994
|
return i;
|
|
27959
27995
|
};
|
|
27960
27996
|
function AccountResourceImpl$registerEphemeralKeyWithSecondaryAuthentication$slambda_0(this$0, $publicKey, $method, resultContinuation) {
|
|
27961
27997
|
var i = new AccountResourceImpl$registerEphemeralKeyWithSecondaryAuthentication$slambda(this$0, $publicKey, $method, resultContinuation);
|
|
27962
27998
|
var l = function ($this$promise, $completion) {
|
|
27963
|
-
return i.
|
|
27999
|
+
return i.e7m($this$promise, $completion);
|
|
27964
28000
|
};
|
|
27965
28001
|
l.$arity = 1;
|
|
27966
28002
|
return l;
|
|
27967
28003
|
}
|
|
27968
28004
|
function AccountResourceImpl$verifyEphemeralKeyRegistration$slambda(this$0, $code, $privateKey, resultContinuation) {
|
|
27969
|
-
this.
|
|
27970
|
-
this.
|
|
27971
|
-
this.
|
|
28005
|
+
this.n7m_1 = this$0;
|
|
28006
|
+
this.o7m_1 = $code;
|
|
28007
|
+
this.p7m_1 = $privateKey;
|
|
27972
28008
|
CoroutineImpl.call(this, resultContinuation);
|
|
27973
28009
|
}
|
|
27974
|
-
protoOf(AccountResourceImpl$verifyEphemeralKeyRegistration$slambda).
|
|
28010
|
+
protoOf(AccountResourceImpl$verifyEphemeralKeyRegistration$slambda).r7l = function ($this$promise, $completion) {
|
|
27975
28011
|
var tmp = this.m1k($this$promise, $completion);
|
|
27976
28012
|
tmp.f9_1 = Unit_instance;
|
|
27977
28013
|
tmp.g9_1 = null;
|
|
27978
28014
|
return tmp.l9();
|
|
27979
28015
|
};
|
|
27980
28016
|
protoOf(AccountResourceImpl$verifyEphemeralKeyRegistration$slambda).v9 = function (p1, $completion) {
|
|
27981
|
-
return this.
|
|
28017
|
+
return this.r7l((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
27982
28018
|
};
|
|
27983
28019
|
protoOf(AccountResourceImpl$verifyEphemeralKeyRegistration$slambda).l9 = function () {
|
|
27984
28020
|
var suspendResult = this.f9_1;
|
|
@@ -27989,7 +28025,7 @@
|
|
|
27989
28025
|
case 0:
|
|
27990
28026
|
this.e9_1 = 2;
|
|
27991
28027
|
this.d9_1 = 1;
|
|
27992
|
-
suspendResult = this.
|
|
28028
|
+
suspendResult = this.n7m_1.l68(this.o7m_1, this.p7m_1, this);
|
|
27993
28029
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
27994
28030
|
return suspendResult;
|
|
27995
28031
|
}
|
|
@@ -28012,20 +28048,20 @@
|
|
|
28012
28048
|
while (true);
|
|
28013
28049
|
};
|
|
28014
28050
|
protoOf(AccountResourceImpl$verifyEphemeralKeyRegistration$slambda).m1k = function ($this$promise, completion) {
|
|
28015
|
-
var i = new AccountResourceImpl$verifyEphemeralKeyRegistration$slambda(this.
|
|
28016
|
-
i.
|
|
28051
|
+
var i = new AccountResourceImpl$verifyEphemeralKeyRegistration$slambda(this.n7m_1, this.o7m_1, this.p7m_1, completion);
|
|
28052
|
+
i.q7m_1 = $this$promise;
|
|
28017
28053
|
return i;
|
|
28018
28054
|
};
|
|
28019
28055
|
function AccountResourceImpl$verifyEphemeralKeyRegistration$slambda_0(this$0, $code, $privateKey, resultContinuation) {
|
|
28020
28056
|
var i = new AccountResourceImpl$verifyEphemeralKeyRegistration$slambda(this$0, $code, $privateKey, resultContinuation);
|
|
28021
28057
|
var l = function ($this$promise, $completion) {
|
|
28022
|
-
return i.
|
|
28058
|
+
return i.r7l($this$promise, $completion);
|
|
28023
28059
|
};
|
|
28024
28060
|
l.$arity = 1;
|
|
28025
28061
|
return l;
|
|
28026
28062
|
}
|
|
28027
28063
|
function AccountResourceImpl$reverifyEmail$slambda(this$0, resultContinuation) {
|
|
28028
|
-
this.
|
|
28064
|
+
this.z7m_1 = this$0;
|
|
28029
28065
|
CoroutineImpl.call(this, resultContinuation);
|
|
28030
28066
|
}
|
|
28031
28067
|
protoOf(AccountResourceImpl$reverifyEmail$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -28046,7 +28082,7 @@
|
|
|
28046
28082
|
case 0:
|
|
28047
28083
|
this.e9_1 = 2;
|
|
28048
28084
|
this.d9_1 = 1;
|
|
28049
|
-
suspendResult = this.
|
|
28085
|
+
suspendResult = this.z7m_1.m68(this);
|
|
28050
28086
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
28051
28087
|
return suspendResult;
|
|
28052
28088
|
}
|
|
@@ -28069,8 +28105,8 @@
|
|
|
28069
28105
|
while (true);
|
|
28070
28106
|
};
|
|
28071
28107
|
protoOf(AccountResourceImpl$reverifyEmail$slambda).m1k = function ($this$promise, completion) {
|
|
28072
|
-
var i = new AccountResourceImpl$reverifyEmail$slambda(this.
|
|
28073
|
-
i.
|
|
28108
|
+
var i = new AccountResourceImpl$reverifyEmail$slambda(this.z7m_1, completion);
|
|
28109
|
+
i.a7n_1 = $this$promise;
|
|
28074
28110
|
return i;
|
|
28075
28111
|
};
|
|
28076
28112
|
function AccountResourceImpl$reverifyEmail$slambda_0(this$0, resultContinuation) {
|
|
@@ -28082,9 +28118,9 @@
|
|
|
28082
28118
|
return l;
|
|
28083
28119
|
}
|
|
28084
28120
|
function AccountResourceImpl$changePassword$slambda(this$0, $oldPassword, $newPassword, resultContinuation) {
|
|
28085
|
-
this.
|
|
28086
|
-
this.
|
|
28087
|
-
this.
|
|
28121
|
+
this.j7n_1 = this$0;
|
|
28122
|
+
this.k7n_1 = $oldPassword;
|
|
28123
|
+
this.l7n_1 = $newPassword;
|
|
28088
28124
|
CoroutineImpl.call(this, resultContinuation);
|
|
28089
28125
|
}
|
|
28090
28126
|
protoOf(AccountResourceImpl$changePassword$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -28105,7 +28141,7 @@
|
|
|
28105
28141
|
case 0:
|
|
28106
28142
|
this.e9_1 = 2;
|
|
28107
28143
|
this.d9_1 = 1;
|
|
28108
|
-
suspendResult = this.
|
|
28144
|
+
suspendResult = this.j7n_1.n68(this.k7n_1, this.l7n_1, this);
|
|
28109
28145
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
28110
28146
|
return suspendResult;
|
|
28111
28147
|
}
|
|
@@ -28128,8 +28164,8 @@
|
|
|
28128
28164
|
while (true);
|
|
28129
28165
|
};
|
|
28130
28166
|
protoOf(AccountResourceImpl$changePassword$slambda).m1k = function ($this$promise, completion) {
|
|
28131
|
-
var i = new AccountResourceImpl$changePassword$slambda(this.
|
|
28132
|
-
i.
|
|
28167
|
+
var i = new AccountResourceImpl$changePassword$slambda(this.j7n_1, this.k7n_1, this.l7n_1, completion);
|
|
28168
|
+
i.m7n_1 = $this$promise;
|
|
28133
28169
|
return i;
|
|
28134
28170
|
};
|
|
28135
28171
|
function AccountResourceImpl$changePassword$slambda_0(this$0, $oldPassword, $newPassword, resultContinuation) {
|
|
@@ -28141,17 +28177,17 @@
|
|
|
28141
28177
|
return l;
|
|
28142
28178
|
}
|
|
28143
28179
|
function AccountResourceImpl$getUserDetails$slambda(this$0, resultContinuation) {
|
|
28144
|
-
this.
|
|
28180
|
+
this.v7n_1 = this$0;
|
|
28145
28181
|
CoroutineImpl.call(this, resultContinuation);
|
|
28146
28182
|
}
|
|
28147
|
-
protoOf(AccountResourceImpl$getUserDetails$slambda).
|
|
28183
|
+
protoOf(AccountResourceImpl$getUserDetails$slambda).x7n = function ($this$promise, $completion) {
|
|
28148
28184
|
var tmp = this.m1k($this$promise, $completion);
|
|
28149
28185
|
tmp.f9_1 = Unit_instance;
|
|
28150
28186
|
tmp.g9_1 = null;
|
|
28151
28187
|
return tmp.l9();
|
|
28152
28188
|
};
|
|
28153
28189
|
protoOf(AccountResourceImpl$getUserDetails$slambda).v9 = function (p1, $completion) {
|
|
28154
|
-
return this.
|
|
28190
|
+
return this.x7n((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
28155
28191
|
};
|
|
28156
28192
|
protoOf(AccountResourceImpl$getUserDetails$slambda).l9 = function () {
|
|
28157
28193
|
var suspendResult = this.f9_1;
|
|
@@ -28162,7 +28198,7 @@
|
|
|
28162
28198
|
case 0:
|
|
28163
28199
|
this.e9_1 = 2;
|
|
28164
28200
|
this.d9_1 = 1;
|
|
28165
|
-
suspendResult = this.
|
|
28201
|
+
suspendResult = this.v7n_1.o68(this);
|
|
28166
28202
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
28167
28203
|
return suspendResult;
|
|
28168
28204
|
}
|
|
@@ -28185,21 +28221,21 @@
|
|
|
28185
28221
|
while (true);
|
|
28186
28222
|
};
|
|
28187
28223
|
protoOf(AccountResourceImpl$getUserDetails$slambda).m1k = function ($this$promise, completion) {
|
|
28188
|
-
var i = new AccountResourceImpl$getUserDetails$slambda(this.
|
|
28189
|
-
i.
|
|
28224
|
+
var i = new AccountResourceImpl$getUserDetails$slambda(this.v7n_1, completion);
|
|
28225
|
+
i.w7n_1 = $this$promise;
|
|
28190
28226
|
return i;
|
|
28191
28227
|
};
|
|
28192
28228
|
function AccountResourceImpl$getUserDetails$slambda_0(this$0, resultContinuation) {
|
|
28193
28229
|
var i = new AccountResourceImpl$getUserDetails$slambda(this$0, resultContinuation);
|
|
28194
28230
|
var l = function ($this$promise, $completion) {
|
|
28195
|
-
return i.
|
|
28231
|
+
return i.x7n($this$promise, $completion);
|
|
28196
28232
|
};
|
|
28197
28233
|
l.$arity = 1;
|
|
28198
28234
|
return l;
|
|
28199
28235
|
}
|
|
28200
28236
|
function AccountResourceImpl$updateUserDetails$slambda(this$0, $displayName, resultContinuation) {
|
|
28201
|
-
this.
|
|
28202
|
-
this.
|
|
28237
|
+
this.g7o_1 = this$0;
|
|
28238
|
+
this.h7o_1 = $displayName;
|
|
28203
28239
|
CoroutineImpl.call(this, resultContinuation);
|
|
28204
28240
|
}
|
|
28205
28241
|
protoOf(AccountResourceImpl$updateUserDetails$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -28220,7 +28256,7 @@
|
|
|
28220
28256
|
case 0:
|
|
28221
28257
|
this.e9_1 = 2;
|
|
28222
28258
|
this.d9_1 = 1;
|
|
28223
|
-
suspendResult = this.
|
|
28259
|
+
suspendResult = this.g7o_1.p68(this.h7o_1, this);
|
|
28224
28260
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
28225
28261
|
return suspendResult;
|
|
28226
28262
|
}
|
|
@@ -28243,8 +28279,8 @@
|
|
|
28243
28279
|
while (true);
|
|
28244
28280
|
};
|
|
28245
28281
|
protoOf(AccountResourceImpl$updateUserDetails$slambda).m1k = function ($this$promise, completion) {
|
|
28246
|
-
var i = new AccountResourceImpl$updateUserDetails$slambda(this.
|
|
28247
|
-
i.
|
|
28282
|
+
var i = new AccountResourceImpl$updateUserDetails$slambda(this.g7o_1, this.h7o_1, completion);
|
|
28283
|
+
i.i7o_1 = $this$promise;
|
|
28248
28284
|
return i;
|
|
28249
28285
|
};
|
|
28250
28286
|
function AccountResourceImpl$updateUserDetails$slambda_0(this$0, $displayName, resultContinuation) {
|
|
@@ -28256,7 +28292,7 @@
|
|
|
28256
28292
|
return l;
|
|
28257
28293
|
}
|
|
28258
28294
|
function AccountResourceImpl$deleteAccount$slambda(this$0, resultContinuation) {
|
|
28259
|
-
this.
|
|
28295
|
+
this.r7o_1 = this$0;
|
|
28260
28296
|
CoroutineImpl.call(this, resultContinuation);
|
|
28261
28297
|
}
|
|
28262
28298
|
protoOf(AccountResourceImpl$deleteAccount$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -28277,7 +28313,7 @@
|
|
|
28277
28313
|
case 0:
|
|
28278
28314
|
this.e9_1 = 2;
|
|
28279
28315
|
this.d9_1 = 1;
|
|
28280
|
-
suspendResult = this.
|
|
28316
|
+
suspendResult = this.r7o_1.q68(this);
|
|
28281
28317
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
28282
28318
|
return suspendResult;
|
|
28283
28319
|
}
|
|
@@ -28300,8 +28336,8 @@
|
|
|
28300
28336
|
while (true);
|
|
28301
28337
|
};
|
|
28302
28338
|
protoOf(AccountResourceImpl$deleteAccount$slambda).m1k = function ($this$promise, completion) {
|
|
28303
|
-
var i = new AccountResourceImpl$deleteAccount$slambda(this.
|
|
28304
|
-
i.
|
|
28339
|
+
var i = new AccountResourceImpl$deleteAccount$slambda(this.r7o_1, completion);
|
|
28340
|
+
i.s7o_1 = $this$promise;
|
|
28305
28341
|
return i;
|
|
28306
28342
|
};
|
|
28307
28343
|
function AccountResourceImpl$deleteAccount$slambda_0(this$0, resultContinuation) {
|
|
@@ -28327,7 +28363,7 @@
|
|
|
28327
28363
|
var tmp = GlobalScope_instance;
|
|
28328
28364
|
return promise(tmp, VOID, VOID, AccountResourceImpl$registerEphemeralKey$slambda_0(this, publicKey, null));
|
|
28329
28365
|
};
|
|
28330
|
-
protoOf(AccountResourceImpl).
|
|
28366
|
+
protoOf(AccountResourceImpl).y7j = function (publicKey, method) {
|
|
28331
28367
|
var tmp = GlobalScope_instance;
|
|
28332
28368
|
return promise(tmp, VOID, VOID, AccountResourceImpl$registerEphemeralKeyWithSecondaryAuthentication$slambda_0(this, publicKey, method, null));
|
|
28333
28369
|
};
|
|
@@ -28356,19 +28392,19 @@
|
|
|
28356
28392
|
return promise(tmp, VOID, VOID, AccountResourceImpl$deleteAccount$slambda_0(this, null));
|
|
28357
28393
|
};
|
|
28358
28394
|
function AccountlessResourceImpl$login$slambda(this$0, $email, $password, resultContinuation) {
|
|
28359
|
-
this.
|
|
28360
|
-
this.
|
|
28361
|
-
this.
|
|
28395
|
+
this.d7p_1 = this$0;
|
|
28396
|
+
this.e7p_1 = $email;
|
|
28397
|
+
this.f7p_1 = $password;
|
|
28362
28398
|
CoroutineImpl.call(this, resultContinuation);
|
|
28363
28399
|
}
|
|
28364
|
-
protoOf(AccountlessResourceImpl$login$slambda).
|
|
28400
|
+
protoOf(AccountlessResourceImpl$login$slambda).v7k = function ($this$promise, $completion) {
|
|
28365
28401
|
var tmp = this.m1k($this$promise, $completion);
|
|
28366
28402
|
tmp.f9_1 = Unit_instance;
|
|
28367
28403
|
tmp.g9_1 = null;
|
|
28368
28404
|
return tmp.l9();
|
|
28369
28405
|
};
|
|
28370
28406
|
protoOf(AccountlessResourceImpl$login$slambda).v9 = function (p1, $completion) {
|
|
28371
|
-
return this.
|
|
28407
|
+
return this.v7k((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
28372
28408
|
};
|
|
28373
28409
|
protoOf(AccountlessResourceImpl$login$slambda).l9 = function () {
|
|
28374
28410
|
var suspendResult = this.f9_1;
|
|
@@ -28379,7 +28415,7 @@
|
|
|
28379
28415
|
case 0:
|
|
28380
28416
|
this.e9_1 = 2;
|
|
28381
28417
|
this.d9_1 = 1;
|
|
28382
|
-
suspendResult = this.
|
|
28418
|
+
suspendResult = this.d7p_1.p6b(this.e7p_1, this.f7p_1, this);
|
|
28383
28419
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
28384
28420
|
return suspendResult;
|
|
28385
28421
|
}
|
|
@@ -28402,34 +28438,34 @@
|
|
|
28402
28438
|
while (true);
|
|
28403
28439
|
};
|
|
28404
28440
|
protoOf(AccountlessResourceImpl$login$slambda).m1k = function ($this$promise, completion) {
|
|
28405
|
-
var i = new AccountlessResourceImpl$login$slambda(this.
|
|
28406
|
-
i.
|
|
28441
|
+
var i = new AccountlessResourceImpl$login$slambda(this.d7p_1, this.e7p_1, this.f7p_1, completion);
|
|
28442
|
+
i.g7p_1 = $this$promise;
|
|
28407
28443
|
return i;
|
|
28408
28444
|
};
|
|
28409
28445
|
function AccountlessResourceImpl$login$slambda_0(this$0, $email, $password, resultContinuation) {
|
|
28410
28446
|
var i = new AccountlessResourceImpl$login$slambda(this$0, $email, $password, resultContinuation);
|
|
28411
28447
|
var l = function ($this$promise, $completion) {
|
|
28412
|
-
return i.
|
|
28448
|
+
return i.v7k($this$promise, $completion);
|
|
28413
28449
|
};
|
|
28414
28450
|
l.$arity = 1;
|
|
28415
28451
|
return l;
|
|
28416
28452
|
}
|
|
28417
28453
|
function AccountlessResourceImpl$registration$slambda(this$0, $email, $password, $displayName, $force, resultContinuation) {
|
|
28418
|
-
this.
|
|
28419
|
-
this.
|
|
28420
|
-
this.
|
|
28421
|
-
this.
|
|
28422
|
-
this.
|
|
28454
|
+
this.p7p_1 = this$0;
|
|
28455
|
+
this.q7p_1 = $email;
|
|
28456
|
+
this.r7p_1 = $password;
|
|
28457
|
+
this.s7p_1 = $displayName;
|
|
28458
|
+
this.t7p_1 = $force;
|
|
28423
28459
|
CoroutineImpl.call(this, resultContinuation);
|
|
28424
28460
|
}
|
|
28425
|
-
protoOf(AccountlessResourceImpl$registration$slambda).
|
|
28461
|
+
protoOf(AccountlessResourceImpl$registration$slambda).v7k = function ($this$promise, $completion) {
|
|
28426
28462
|
var tmp = this.m1k($this$promise, $completion);
|
|
28427
28463
|
tmp.f9_1 = Unit_instance;
|
|
28428
28464
|
tmp.g9_1 = null;
|
|
28429
28465
|
return tmp.l9();
|
|
28430
28466
|
};
|
|
28431
28467
|
protoOf(AccountlessResourceImpl$registration$slambda).v9 = function (p1, $completion) {
|
|
28432
|
-
return this.
|
|
28468
|
+
return this.v7k((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
28433
28469
|
};
|
|
28434
28470
|
protoOf(AccountlessResourceImpl$registration$slambda).l9 = function () {
|
|
28435
28471
|
var suspendResult = this.f9_1;
|
|
@@ -28440,7 +28476,7 @@
|
|
|
28440
28476
|
case 0:
|
|
28441
28477
|
this.e9_1 = 2;
|
|
28442
28478
|
this.d9_1 = 1;
|
|
28443
|
-
suspendResult = this.
|
|
28479
|
+
suspendResult = this.p7p_1.q6b(this.q7p_1, this.r7p_1, this.s7p_1, this.t7p_1, this);
|
|
28444
28480
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
28445
28481
|
return suspendResult;
|
|
28446
28482
|
}
|
|
@@ -28463,21 +28499,21 @@
|
|
|
28463
28499
|
while (true);
|
|
28464
28500
|
};
|
|
28465
28501
|
protoOf(AccountlessResourceImpl$registration$slambda).m1k = function ($this$promise, completion) {
|
|
28466
|
-
var i = new AccountlessResourceImpl$registration$slambda(this.
|
|
28467
|
-
i.
|
|
28502
|
+
var i = new AccountlessResourceImpl$registration$slambda(this.p7p_1, this.q7p_1, this.r7p_1, this.s7p_1, this.t7p_1, completion);
|
|
28503
|
+
i.u7p_1 = $this$promise;
|
|
28468
28504
|
return i;
|
|
28469
28505
|
};
|
|
28470
28506
|
function AccountlessResourceImpl$registration$slambda_0(this$0, $email, $password, $displayName, $force, resultContinuation) {
|
|
28471
28507
|
var i = new AccountlessResourceImpl$registration$slambda(this$0, $email, $password, $displayName, $force, resultContinuation);
|
|
28472
28508
|
var l = function ($this$promise, $completion) {
|
|
28473
|
-
return i.
|
|
28509
|
+
return i.v7k($this$promise, $completion);
|
|
28474
28510
|
};
|
|
28475
28511
|
l.$arity = 1;
|
|
28476
28512
|
return l;
|
|
28477
28513
|
}
|
|
28478
28514
|
function AccountlessResourceImpl$verifyEmail$slambda(this$0, $code, resultContinuation) {
|
|
28479
|
-
this.
|
|
28480
|
-
this.
|
|
28515
|
+
this.d7q_1 = this$0;
|
|
28516
|
+
this.e7q_1 = $code;
|
|
28481
28517
|
CoroutineImpl.call(this, resultContinuation);
|
|
28482
28518
|
}
|
|
28483
28519
|
protoOf(AccountlessResourceImpl$verifyEmail$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -28498,7 +28534,7 @@
|
|
|
28498
28534
|
case 0:
|
|
28499
28535
|
this.e9_1 = 2;
|
|
28500
28536
|
this.d9_1 = 1;
|
|
28501
|
-
suspendResult = this.
|
|
28537
|
+
suspendResult = this.d7q_1.r6b(this.e7q_1, this);
|
|
28502
28538
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
28503
28539
|
return suspendResult;
|
|
28504
28540
|
}
|
|
@@ -28521,8 +28557,8 @@
|
|
|
28521
28557
|
while (true);
|
|
28522
28558
|
};
|
|
28523
28559
|
protoOf(AccountlessResourceImpl$verifyEmail$slambda).m1k = function ($this$promise, completion) {
|
|
28524
|
-
var i = new AccountlessResourceImpl$verifyEmail$slambda(this.
|
|
28525
|
-
i.
|
|
28560
|
+
var i = new AccountlessResourceImpl$verifyEmail$slambda(this.d7q_1, this.e7q_1, completion);
|
|
28561
|
+
i.f7q_1 = $this$promise;
|
|
28526
28562
|
return i;
|
|
28527
28563
|
};
|
|
28528
28564
|
function AccountlessResourceImpl$verifyEmail$slambda_0(this$0, $code, resultContinuation) {
|
|
@@ -28540,7 +28576,7 @@
|
|
|
28540
28576
|
var tmp = GlobalScope_instance;
|
|
28541
28577
|
return promise(tmp, VOID, VOID, AccountlessResourceImpl$login$slambda_0(this, email, password, null));
|
|
28542
28578
|
};
|
|
28543
|
-
protoOf(AccountlessResourceImpl).
|
|
28579
|
+
protoOf(AccountlessResourceImpl).z7j = function (email, password, displayName, force) {
|
|
28544
28580
|
var tmp = GlobalScope_instance;
|
|
28545
28581
|
return promise(tmp, VOID, VOID, AccountlessResourceImpl$registration$slambda_0(this, email, password, displayName, force, null));
|
|
28546
28582
|
};
|
|
@@ -28549,19 +28585,19 @@
|
|
|
28549
28585
|
return promise(tmp, VOID, VOID, AccountlessResourceImpl$verifyEmail$slambda_0(this, code, null));
|
|
28550
28586
|
};
|
|
28551
28587
|
function FusionResourceImpl$login$slambda(this$0, $email, $password, resultContinuation) {
|
|
28552
|
-
this.
|
|
28553
|
-
this.
|
|
28554
|
-
this.
|
|
28588
|
+
this.p7q_1 = this$0;
|
|
28589
|
+
this.q7q_1 = $email;
|
|
28590
|
+
this.r7q_1 = $password;
|
|
28555
28591
|
CoroutineImpl.call(this, resultContinuation);
|
|
28556
28592
|
}
|
|
28557
|
-
protoOf(FusionResourceImpl$login$slambda).
|
|
28593
|
+
protoOf(FusionResourceImpl$login$slambda).t7q = function ($this$promise, $completion) {
|
|
28558
28594
|
var tmp = this.m1k($this$promise, $completion);
|
|
28559
28595
|
tmp.f9_1 = Unit_instance;
|
|
28560
28596
|
tmp.g9_1 = null;
|
|
28561
28597
|
return tmp.l9();
|
|
28562
28598
|
};
|
|
28563
28599
|
protoOf(FusionResourceImpl$login$slambda).v9 = function (p1, $completion) {
|
|
28564
|
-
return this.
|
|
28600
|
+
return this.t7q((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
28565
28601
|
};
|
|
28566
28602
|
protoOf(FusionResourceImpl$login$slambda).l9 = function () {
|
|
28567
28603
|
var suspendResult = this.f9_1;
|
|
@@ -28572,7 +28608,7 @@
|
|
|
28572
28608
|
case 0:
|
|
28573
28609
|
this.e9_1 = 2;
|
|
28574
28610
|
this.d9_1 = 1;
|
|
28575
|
-
suspendResult = this.
|
|
28611
|
+
suspendResult = this.p7q_1.d6j(this.q7q_1, this.r7q_1, this);
|
|
28576
28612
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
28577
28613
|
return suspendResult;
|
|
28578
28614
|
}
|
|
@@ -28595,30 +28631,30 @@
|
|
|
28595
28631
|
while (true);
|
|
28596
28632
|
};
|
|
28597
28633
|
protoOf(FusionResourceImpl$login$slambda).m1k = function ($this$promise, completion) {
|
|
28598
|
-
var i = new FusionResourceImpl$login$slambda(this.
|
|
28599
|
-
i.
|
|
28634
|
+
var i = new FusionResourceImpl$login$slambda(this.p7q_1, this.q7q_1, this.r7q_1, completion);
|
|
28635
|
+
i.s7q_1 = $this$promise;
|
|
28600
28636
|
return i;
|
|
28601
28637
|
};
|
|
28602
28638
|
function FusionResourceImpl$login$slambda_0(this$0, $email, $password, resultContinuation) {
|
|
28603
28639
|
var i = new FusionResourceImpl$login$slambda(this$0, $email, $password, resultContinuation);
|
|
28604
28640
|
var l = function ($this$promise, $completion) {
|
|
28605
|
-
return i.
|
|
28641
|
+
return i.t7q($this$promise, $completion);
|
|
28606
28642
|
};
|
|
28607
28643
|
l.$arity = 1;
|
|
28608
28644
|
return l;
|
|
28609
28645
|
}
|
|
28610
28646
|
function FusionResourceImpl$getIntegrationType$slambda(this$0, resultContinuation) {
|
|
28611
|
-
this.
|
|
28647
|
+
this.c7r_1 = this$0;
|
|
28612
28648
|
CoroutineImpl.call(this, resultContinuation);
|
|
28613
28649
|
}
|
|
28614
|
-
protoOf(FusionResourceImpl$getIntegrationType$slambda).
|
|
28650
|
+
protoOf(FusionResourceImpl$getIntegrationType$slambda).e7r = function ($this$promise, $completion) {
|
|
28615
28651
|
var tmp = this.m1k($this$promise, $completion);
|
|
28616
28652
|
tmp.f9_1 = Unit_instance;
|
|
28617
28653
|
tmp.g9_1 = null;
|
|
28618
28654
|
return tmp.l9();
|
|
28619
28655
|
};
|
|
28620
28656
|
protoOf(FusionResourceImpl$getIntegrationType$slambda).v9 = function (p1, $completion) {
|
|
28621
|
-
return this.
|
|
28657
|
+
return this.e7r((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
28622
28658
|
};
|
|
28623
28659
|
protoOf(FusionResourceImpl$getIntegrationType$slambda).l9 = function () {
|
|
28624
28660
|
var suspendResult = this.f9_1;
|
|
@@ -28629,7 +28665,7 @@
|
|
|
28629
28665
|
case 0:
|
|
28630
28666
|
this.e9_1 = 2;
|
|
28631
28667
|
this.d9_1 = 1;
|
|
28632
|
-
suspendResult = this.
|
|
28668
|
+
suspendResult = this.c7r_1.e6j(this);
|
|
28633
28669
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
28634
28670
|
return suspendResult;
|
|
28635
28671
|
}
|
|
@@ -28652,31 +28688,31 @@
|
|
|
28652
28688
|
while (true);
|
|
28653
28689
|
};
|
|
28654
28690
|
protoOf(FusionResourceImpl$getIntegrationType$slambda).m1k = function ($this$promise, completion) {
|
|
28655
|
-
var i = new FusionResourceImpl$getIntegrationType$slambda(this.
|
|
28656
|
-
i.
|
|
28691
|
+
var i = new FusionResourceImpl$getIntegrationType$slambda(this.c7r_1, completion);
|
|
28692
|
+
i.d7r_1 = $this$promise;
|
|
28657
28693
|
return i;
|
|
28658
28694
|
};
|
|
28659
28695
|
function FusionResourceImpl$getIntegrationType$slambda_0(this$0, resultContinuation) {
|
|
28660
28696
|
var i = new FusionResourceImpl$getIntegrationType$slambda(this$0, resultContinuation);
|
|
28661
28697
|
var l = function ($this$promise, $completion) {
|
|
28662
|
-
return i.
|
|
28698
|
+
return i.e7r($this$promise, $completion);
|
|
28663
28699
|
};
|
|
28664
28700
|
l.$arity = 1;
|
|
28665
28701
|
return l;
|
|
28666
28702
|
}
|
|
28667
28703
|
function FusionResourceImpl$getIntegrationConfiguration$slambda(this$0, $type, resultContinuation) {
|
|
28668
|
-
this.
|
|
28669
|
-
this.
|
|
28704
|
+
this.n7r_1 = this$0;
|
|
28705
|
+
this.o7r_1 = $type;
|
|
28670
28706
|
CoroutineImpl.call(this, resultContinuation);
|
|
28671
28707
|
}
|
|
28672
|
-
protoOf(FusionResourceImpl$getIntegrationConfiguration$slambda).
|
|
28708
|
+
protoOf(FusionResourceImpl$getIntegrationConfiguration$slambda).q7r = function ($this$promise, $completion) {
|
|
28673
28709
|
var tmp = this.m1k($this$promise, $completion);
|
|
28674
28710
|
tmp.f9_1 = Unit_instance;
|
|
28675
28711
|
tmp.g9_1 = null;
|
|
28676
28712
|
return tmp.l9();
|
|
28677
28713
|
};
|
|
28678
28714
|
protoOf(FusionResourceImpl$getIntegrationConfiguration$slambda).v9 = function (p1, $completion) {
|
|
28679
|
-
return this.
|
|
28715
|
+
return this.q7r((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
28680
28716
|
};
|
|
28681
28717
|
protoOf(FusionResourceImpl$getIntegrationConfiguration$slambda).l9 = function () {
|
|
28682
28718
|
var suspendResult = this.f9_1;
|
|
@@ -28687,7 +28723,7 @@
|
|
|
28687
28723
|
case 0:
|
|
28688
28724
|
this.e9_1 = 2;
|
|
28689
28725
|
this.d9_1 = 1;
|
|
28690
|
-
suspendResult = this.
|
|
28726
|
+
suspendResult = this.n7r_1.f6j(this.o7r_1, this);
|
|
28691
28727
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
28692
28728
|
return suspendResult;
|
|
28693
28729
|
}
|
|
@@ -28710,23 +28746,23 @@
|
|
|
28710
28746
|
while (true);
|
|
28711
28747
|
};
|
|
28712
28748
|
protoOf(FusionResourceImpl$getIntegrationConfiguration$slambda).m1k = function ($this$promise, completion) {
|
|
28713
|
-
var i = new FusionResourceImpl$getIntegrationConfiguration$slambda(this.
|
|
28714
|
-
i.
|
|
28749
|
+
var i = new FusionResourceImpl$getIntegrationConfiguration$slambda(this.n7r_1, this.o7r_1, completion);
|
|
28750
|
+
i.p7r_1 = $this$promise;
|
|
28715
28751
|
return i;
|
|
28716
28752
|
};
|
|
28717
28753
|
function FusionResourceImpl$getIntegrationConfiguration$slambda_0(this$0, $type, resultContinuation) {
|
|
28718
28754
|
var i = new FusionResourceImpl$getIntegrationConfiguration$slambda(this$0, $type, resultContinuation);
|
|
28719
28755
|
var l = function ($this$promise, $completion) {
|
|
28720
|
-
return i.
|
|
28756
|
+
return i.q7r($this$promise, $completion);
|
|
28721
28757
|
};
|
|
28722
28758
|
l.$arity = 1;
|
|
28723
28759
|
return l;
|
|
28724
28760
|
}
|
|
28725
28761
|
function FusionResourceImpl$enableDoor$slambda(this$0, $name, $siteId, $controller, resultContinuation) {
|
|
28726
|
-
this.
|
|
28727
|
-
this.
|
|
28728
|
-
this.
|
|
28729
|
-
this.
|
|
28762
|
+
this.z7r_1 = this$0;
|
|
28763
|
+
this.a7s_1 = $name;
|
|
28764
|
+
this.b7s_1 = $siteId;
|
|
28765
|
+
this.c7s_1 = $controller;
|
|
28730
28766
|
CoroutineImpl.call(this, resultContinuation);
|
|
28731
28767
|
}
|
|
28732
28768
|
protoOf(FusionResourceImpl$enableDoor$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -28747,7 +28783,7 @@
|
|
|
28747
28783
|
case 0:
|
|
28748
28784
|
this.e9_1 = 2;
|
|
28749
28785
|
this.d9_1 = 1;
|
|
28750
|
-
suspendResult = this.
|
|
28786
|
+
suspendResult = this.z7r_1.g6j(this.a7s_1, this.b7s_1, this.c7s_1, this);
|
|
28751
28787
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
28752
28788
|
return suspendResult;
|
|
28753
28789
|
}
|
|
@@ -28770,8 +28806,8 @@
|
|
|
28770
28806
|
while (true);
|
|
28771
28807
|
};
|
|
28772
28808
|
protoOf(FusionResourceImpl$enableDoor$slambda).m1k = function ($this$promise, completion) {
|
|
28773
|
-
var i = new FusionResourceImpl$enableDoor$slambda(this.
|
|
28774
|
-
i.
|
|
28809
|
+
var i = new FusionResourceImpl$enableDoor$slambda(this.z7r_1, this.a7s_1, this.b7s_1, this.c7s_1, completion);
|
|
28810
|
+
i.d7s_1 = $this$promise;
|
|
28775
28811
|
return i;
|
|
28776
28812
|
};
|
|
28777
28813
|
function FusionResourceImpl$enableDoor$slambda_0(this$0, $name, $siteId, $controller, resultContinuation) {
|
|
@@ -28783,8 +28819,8 @@
|
|
|
28783
28819
|
return l;
|
|
28784
28820
|
}
|
|
28785
28821
|
function FusionResourceImpl$deleteDoor$slambda(this$0, $deviceId, resultContinuation) {
|
|
28786
|
-
this.
|
|
28787
|
-
this.
|
|
28822
|
+
this.m7s_1 = this$0;
|
|
28823
|
+
this.n7s_1 = $deviceId;
|
|
28788
28824
|
CoroutineImpl.call(this, resultContinuation);
|
|
28789
28825
|
}
|
|
28790
28826
|
protoOf(FusionResourceImpl$deleteDoor$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -28805,7 +28841,7 @@
|
|
|
28805
28841
|
case 0:
|
|
28806
28842
|
this.e9_1 = 2;
|
|
28807
28843
|
this.d9_1 = 1;
|
|
28808
|
-
suspendResult = this.
|
|
28844
|
+
suspendResult = this.m7s_1.h6j(this.n7s_1, this);
|
|
28809
28845
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
28810
28846
|
return suspendResult;
|
|
28811
28847
|
}
|
|
@@ -28828,8 +28864,8 @@
|
|
|
28828
28864
|
while (true);
|
|
28829
28865
|
};
|
|
28830
28866
|
protoOf(FusionResourceImpl$deleteDoor$slambda).m1k = function ($this$promise, completion) {
|
|
28831
|
-
var i = new FusionResourceImpl$deleteDoor$slambda(this.
|
|
28832
|
-
i.
|
|
28867
|
+
var i = new FusionResourceImpl$deleteDoor$slambda(this.m7s_1, this.n7s_1, completion);
|
|
28868
|
+
i.o7s_1 = $this$promise;
|
|
28833
28869
|
return i;
|
|
28834
28870
|
};
|
|
28835
28871
|
function FusionResourceImpl$deleteDoor$slambda_0(this$0, $deviceId, resultContinuation) {
|
|
@@ -28841,18 +28877,18 @@
|
|
|
28841
28877
|
return l;
|
|
28842
28878
|
}
|
|
28843
28879
|
function FusionResourceImpl$getDoorStatus$slambda(this$0, $deviceId, resultContinuation) {
|
|
28844
|
-
this.
|
|
28845
|
-
this.
|
|
28880
|
+
this.x7s_1 = this$0;
|
|
28881
|
+
this.y7s_1 = $deviceId;
|
|
28846
28882
|
CoroutineImpl.call(this, resultContinuation);
|
|
28847
28883
|
}
|
|
28848
|
-
protoOf(FusionResourceImpl$getDoorStatus$slambda).
|
|
28884
|
+
protoOf(FusionResourceImpl$getDoorStatus$slambda).a7t = function ($this$promise, $completion) {
|
|
28849
28885
|
var tmp = this.m1k($this$promise, $completion);
|
|
28850
28886
|
tmp.f9_1 = Unit_instance;
|
|
28851
28887
|
tmp.g9_1 = null;
|
|
28852
28888
|
return tmp.l9();
|
|
28853
28889
|
};
|
|
28854
28890
|
protoOf(FusionResourceImpl$getDoorStatus$slambda).v9 = function (p1, $completion) {
|
|
28855
|
-
return this.
|
|
28891
|
+
return this.a7t((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
28856
28892
|
};
|
|
28857
28893
|
protoOf(FusionResourceImpl$getDoorStatus$slambda).l9 = function () {
|
|
28858
28894
|
var suspendResult = this.f9_1;
|
|
@@ -28863,7 +28899,7 @@
|
|
|
28863
28899
|
case 0:
|
|
28864
28900
|
this.e9_1 = 2;
|
|
28865
28901
|
this.d9_1 = 1;
|
|
28866
|
-
suspendResult = this.
|
|
28902
|
+
suspendResult = this.x7s_1.i6j(this.y7s_1, this);
|
|
28867
28903
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
28868
28904
|
return suspendResult;
|
|
28869
28905
|
}
|
|
@@ -28886,21 +28922,21 @@
|
|
|
28886
28922
|
while (true);
|
|
28887
28923
|
};
|
|
28888
28924
|
protoOf(FusionResourceImpl$getDoorStatus$slambda).m1k = function ($this$promise, completion) {
|
|
28889
|
-
var i = new FusionResourceImpl$getDoorStatus$slambda(this.
|
|
28890
|
-
i.
|
|
28925
|
+
var i = new FusionResourceImpl$getDoorStatus$slambda(this.x7s_1, this.y7s_1, completion);
|
|
28926
|
+
i.z7s_1 = $this$promise;
|
|
28891
28927
|
return i;
|
|
28892
28928
|
};
|
|
28893
28929
|
function FusionResourceImpl$getDoorStatus$slambda_0(this$0, $deviceId, resultContinuation) {
|
|
28894
28930
|
var i = new FusionResourceImpl$getDoorStatus$slambda(this$0, $deviceId, resultContinuation);
|
|
28895
28931
|
var l = function ($this$promise, $completion) {
|
|
28896
|
-
return i.
|
|
28932
|
+
return i.a7t($this$promise, $completion);
|
|
28897
28933
|
};
|
|
28898
28934
|
l.$arity = 1;
|
|
28899
28935
|
return l;
|
|
28900
28936
|
}
|
|
28901
28937
|
function FusionResourceImpl$startDoor$slambda(this$0, $deviceId, resultContinuation) {
|
|
28902
|
-
this.
|
|
28903
|
-
this.
|
|
28938
|
+
this.j7t_1 = this$0;
|
|
28939
|
+
this.k7t_1 = $deviceId;
|
|
28904
28940
|
CoroutineImpl.call(this, resultContinuation);
|
|
28905
28941
|
}
|
|
28906
28942
|
protoOf(FusionResourceImpl$startDoor$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -28921,7 +28957,7 @@
|
|
|
28921
28957
|
case 0:
|
|
28922
28958
|
this.e9_1 = 2;
|
|
28923
28959
|
this.d9_1 = 1;
|
|
28924
|
-
suspendResult = this.
|
|
28960
|
+
suspendResult = this.j7t_1.j6j(this.k7t_1, this);
|
|
28925
28961
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
28926
28962
|
return suspendResult;
|
|
28927
28963
|
}
|
|
@@ -28944,8 +28980,8 @@
|
|
|
28944
28980
|
while (true);
|
|
28945
28981
|
};
|
|
28946
28982
|
protoOf(FusionResourceImpl$startDoor$slambda).m1k = function ($this$promise, completion) {
|
|
28947
|
-
var i = new FusionResourceImpl$startDoor$slambda(this.
|
|
28948
|
-
i.
|
|
28983
|
+
var i = new FusionResourceImpl$startDoor$slambda(this.j7t_1, this.k7t_1, completion);
|
|
28984
|
+
i.l7t_1 = $this$promise;
|
|
28949
28985
|
return i;
|
|
28950
28986
|
};
|
|
28951
28987
|
function FusionResourceImpl$startDoor$slambda_0(this$0, $deviceId, resultContinuation) {
|
|
@@ -28957,8 +28993,8 @@
|
|
|
28957
28993
|
return l;
|
|
28958
28994
|
}
|
|
28959
28995
|
function FusionResourceImpl$stopDoor$slambda(this$0, $deviceId, resultContinuation) {
|
|
28960
|
-
this.
|
|
28961
|
-
this.
|
|
28996
|
+
this.u7t_1 = this$0;
|
|
28997
|
+
this.v7t_1 = $deviceId;
|
|
28962
28998
|
CoroutineImpl.call(this, resultContinuation);
|
|
28963
28999
|
}
|
|
28964
29000
|
protoOf(FusionResourceImpl$stopDoor$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -28979,7 +29015,7 @@
|
|
|
28979
29015
|
case 0:
|
|
28980
29016
|
this.e9_1 = 2;
|
|
28981
29017
|
this.d9_1 = 1;
|
|
28982
|
-
suspendResult = this.
|
|
29018
|
+
suspendResult = this.u7t_1.k6j(this.v7t_1, this);
|
|
28983
29019
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
28984
29020
|
return suspendResult;
|
|
28985
29021
|
}
|
|
@@ -29002,8 +29038,8 @@
|
|
|
29002
29038
|
while (true);
|
|
29003
29039
|
};
|
|
29004
29040
|
protoOf(FusionResourceImpl$stopDoor$slambda).m1k = function ($this$promise, completion) {
|
|
29005
|
-
var i = new FusionResourceImpl$stopDoor$slambda(this.
|
|
29006
|
-
i.
|
|
29041
|
+
var i = new FusionResourceImpl$stopDoor$slambda(this.u7t_1, this.v7t_1, completion);
|
|
29042
|
+
i.w7t_1 = $this$promise;
|
|
29007
29043
|
return i;
|
|
29008
29044
|
};
|
|
29009
29045
|
function FusionResourceImpl$stopDoor$slambda_0(this$0, $deviceId, resultContinuation) {
|
|
@@ -29050,10 +29086,10 @@
|
|
|
29050
29086
|
return promise(tmp, VOID, VOID, FusionResourceImpl$stopDoor$slambda_0(this, deviceId, null));
|
|
29051
29087
|
};
|
|
29052
29088
|
function HelperResourceImpl$uploadPlatformLogo$slambda(this$0, $applicationId, $contentType, $image, resultContinuation) {
|
|
29053
|
-
this.
|
|
29054
|
-
this.
|
|
29055
|
-
this.
|
|
29056
|
-
this.
|
|
29089
|
+
this.f7u_1 = this$0;
|
|
29090
|
+
this.g7u_1 = $applicationId;
|
|
29091
|
+
this.h7u_1 = $contentType;
|
|
29092
|
+
this.i7u_1 = $image;
|
|
29057
29093
|
CoroutineImpl.call(this, resultContinuation);
|
|
29058
29094
|
}
|
|
29059
29095
|
protoOf(HelperResourceImpl$uploadPlatformLogo$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -29074,7 +29110,7 @@
|
|
|
29074
29110
|
case 0:
|
|
29075
29111
|
this.e9_1 = 2;
|
|
29076
29112
|
this.d9_1 = 1;
|
|
29077
|
-
suspendResult = this.
|
|
29113
|
+
suspendResult = this.f7u_1.o6l(this.g7u_1, this.h7u_1, this.i7u_1, this);
|
|
29078
29114
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
29079
29115
|
return suspendResult;
|
|
29080
29116
|
}
|
|
@@ -29097,8 +29133,8 @@
|
|
|
29097
29133
|
while (true);
|
|
29098
29134
|
};
|
|
29099
29135
|
protoOf(HelperResourceImpl$uploadPlatformLogo$slambda).m1k = function ($this$promise, completion) {
|
|
29100
|
-
var i = new HelperResourceImpl$uploadPlatformLogo$slambda(this.
|
|
29101
|
-
i.
|
|
29136
|
+
var i = new HelperResourceImpl$uploadPlatformLogo$slambda(this.f7u_1, this.g7u_1, this.h7u_1, this.i7u_1, completion);
|
|
29137
|
+
i.j7u_1 = $this$promise;
|
|
29102
29138
|
return i;
|
|
29103
29139
|
};
|
|
29104
29140
|
function HelperResourceImpl$uploadPlatformLogo$slambda_0(this$0, $applicationId, $contentType, $image, resultContinuation) {
|
|
@@ -29117,18 +29153,18 @@
|
|
|
29117
29153
|
return promise(tmp, VOID, VOID, HelperResourceImpl$uploadPlatformLogo$slambda_0(this, applicationId, contentType, image, null));
|
|
29118
29154
|
};
|
|
29119
29155
|
function LockOperationsResourceImpl$getSingleLock$slambda(this$0, $lockId, resultContinuation) {
|
|
29120
|
-
this.
|
|
29121
|
-
this.
|
|
29156
|
+
this.s7u_1 = this$0;
|
|
29157
|
+
this.t7u_1 = $lockId;
|
|
29122
29158
|
CoroutineImpl.call(this, resultContinuation);
|
|
29123
29159
|
}
|
|
29124
|
-
protoOf(LockOperationsResourceImpl$getSingleLock$slambda).
|
|
29160
|
+
protoOf(LockOperationsResourceImpl$getSingleLock$slambda).v7u = function ($this$promise, $completion) {
|
|
29125
29161
|
var tmp = this.m1k($this$promise, $completion);
|
|
29126
29162
|
tmp.f9_1 = Unit_instance;
|
|
29127
29163
|
tmp.g9_1 = null;
|
|
29128
29164
|
return tmp.l9();
|
|
29129
29165
|
};
|
|
29130
29166
|
protoOf(LockOperationsResourceImpl$getSingleLock$slambda).v9 = function (p1, $completion) {
|
|
29131
|
-
return this.
|
|
29167
|
+
return this.v7u((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
29132
29168
|
};
|
|
29133
29169
|
protoOf(LockOperationsResourceImpl$getSingleLock$slambda).l9 = function () {
|
|
29134
29170
|
var suspendResult = this.f9_1;
|
|
@@ -29139,7 +29175,7 @@
|
|
|
29139
29175
|
case 0:
|
|
29140
29176
|
this.e9_1 = 2;
|
|
29141
29177
|
this.d9_1 = 1;
|
|
29142
|
-
suspendResult = this.
|
|
29178
|
+
suspendResult = this.s7u_1.g6y(this.t7u_1, this);
|
|
29143
29179
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
29144
29180
|
return suspendResult;
|
|
29145
29181
|
}
|
|
@@ -29162,33 +29198,33 @@
|
|
|
29162
29198
|
while (true);
|
|
29163
29199
|
};
|
|
29164
29200
|
protoOf(LockOperationsResourceImpl$getSingleLock$slambda).m1k = function ($this$promise, completion) {
|
|
29165
|
-
var i = new LockOperationsResourceImpl$getSingleLock$slambda(this.
|
|
29166
|
-
i.
|
|
29201
|
+
var i = new LockOperationsResourceImpl$getSingleLock$slambda(this.s7u_1, this.t7u_1, completion);
|
|
29202
|
+
i.u7u_1 = $this$promise;
|
|
29167
29203
|
return i;
|
|
29168
29204
|
};
|
|
29169
29205
|
function LockOperationsResourceImpl$getSingleLock$slambda_0(this$0, $lockId, resultContinuation) {
|
|
29170
29206
|
var i = new LockOperationsResourceImpl$getSingleLock$slambda(this$0, $lockId, resultContinuation);
|
|
29171
29207
|
var l = function ($this$promise, $completion) {
|
|
29172
|
-
return i.
|
|
29208
|
+
return i.v7u($this$promise, $completion);
|
|
29173
29209
|
};
|
|
29174
29210
|
l.$arity = 1;
|
|
29175
29211
|
return l;
|
|
29176
29212
|
}
|
|
29177
29213
|
function LockOperationsResourceImpl$getLockAuditTrail$slambda(this$0, $lockId, $start, $end, resultContinuation) {
|
|
29178
|
-
this.
|
|
29179
|
-
this.
|
|
29180
|
-
this.
|
|
29181
|
-
this.
|
|
29214
|
+
this.e7v_1 = this$0;
|
|
29215
|
+
this.f7v_1 = $lockId;
|
|
29216
|
+
this.g7v_1 = $start;
|
|
29217
|
+
this.h7v_1 = $end;
|
|
29182
29218
|
CoroutineImpl.call(this, resultContinuation);
|
|
29183
29219
|
}
|
|
29184
|
-
protoOf(LockOperationsResourceImpl$getLockAuditTrail$slambda).
|
|
29220
|
+
protoOf(LockOperationsResourceImpl$getLockAuditTrail$slambda).j7v = function ($this$promise, $completion) {
|
|
29185
29221
|
var tmp = this.m1k($this$promise, $completion);
|
|
29186
29222
|
tmp.f9_1 = Unit_instance;
|
|
29187
29223
|
tmp.g9_1 = null;
|
|
29188
29224
|
return tmp.l9();
|
|
29189
29225
|
};
|
|
29190
29226
|
protoOf(LockOperationsResourceImpl$getLockAuditTrail$slambda).v9 = function (p1, $completion) {
|
|
29191
|
-
return this.
|
|
29227
|
+
return this.j7v((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
29192
29228
|
};
|
|
29193
29229
|
protoOf(LockOperationsResourceImpl$getLockAuditTrail$slambda).l9 = function () {
|
|
29194
29230
|
var suspendResult = this.f9_1;
|
|
@@ -29199,7 +29235,7 @@
|
|
|
29199
29235
|
case 0:
|
|
29200
29236
|
this.e9_1 = 2;
|
|
29201
29237
|
this.d9_1 = 1;
|
|
29202
|
-
suspendResult = this.
|
|
29238
|
+
suspendResult = this.e7v_1.h6y(this.f7v_1, this.g7v_1, this.h7v_1, this);
|
|
29203
29239
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
29204
29240
|
return suspendResult;
|
|
29205
29241
|
}
|
|
@@ -29222,33 +29258,33 @@
|
|
|
29222
29258
|
while (true);
|
|
29223
29259
|
};
|
|
29224
29260
|
protoOf(LockOperationsResourceImpl$getLockAuditTrail$slambda).m1k = function ($this$promise, completion) {
|
|
29225
|
-
var i = new LockOperationsResourceImpl$getLockAuditTrail$slambda(this.
|
|
29226
|
-
i.
|
|
29261
|
+
var i = new LockOperationsResourceImpl$getLockAuditTrail$slambda(this.e7v_1, this.f7v_1, this.g7v_1, this.h7v_1, completion);
|
|
29262
|
+
i.i7v_1 = $this$promise;
|
|
29227
29263
|
return i;
|
|
29228
29264
|
};
|
|
29229
29265
|
function LockOperationsResourceImpl$getLockAuditTrail$slambda_0(this$0, $lockId, $start, $end, resultContinuation) {
|
|
29230
29266
|
var i = new LockOperationsResourceImpl$getLockAuditTrail$slambda(this$0, $lockId, $start, $end, resultContinuation);
|
|
29231
29267
|
var l = function ($this$promise, $completion) {
|
|
29232
|
-
return i.
|
|
29268
|
+
return i.j7v($this$promise, $completion);
|
|
29233
29269
|
};
|
|
29234
29270
|
l.$arity = 1;
|
|
29235
29271
|
return l;
|
|
29236
29272
|
}
|
|
29237
29273
|
function LockOperationsResourceImpl$getAuditForUser$slambda(this$0, $userId, $start, $end, resultContinuation) {
|
|
29238
|
-
this.
|
|
29239
|
-
this.
|
|
29240
|
-
this.
|
|
29241
|
-
this.
|
|
29274
|
+
this.s7v_1 = this$0;
|
|
29275
|
+
this.t7v_1 = $userId;
|
|
29276
|
+
this.u7v_1 = $start;
|
|
29277
|
+
this.v7v_1 = $end;
|
|
29242
29278
|
CoroutineImpl.call(this, resultContinuation);
|
|
29243
29279
|
}
|
|
29244
|
-
protoOf(LockOperationsResourceImpl$getAuditForUser$slambda).
|
|
29280
|
+
protoOf(LockOperationsResourceImpl$getAuditForUser$slambda).j7v = function ($this$promise, $completion) {
|
|
29245
29281
|
var tmp = this.m1k($this$promise, $completion);
|
|
29246
29282
|
tmp.f9_1 = Unit_instance;
|
|
29247
29283
|
tmp.g9_1 = null;
|
|
29248
29284
|
return tmp.l9();
|
|
29249
29285
|
};
|
|
29250
29286
|
protoOf(LockOperationsResourceImpl$getAuditForUser$slambda).v9 = function (p1, $completion) {
|
|
29251
|
-
return this.
|
|
29287
|
+
return this.j7v((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
29252
29288
|
};
|
|
29253
29289
|
protoOf(LockOperationsResourceImpl$getAuditForUser$slambda).l9 = function () {
|
|
29254
29290
|
var suspendResult = this.f9_1;
|
|
@@ -29259,7 +29295,7 @@
|
|
|
29259
29295
|
case 0:
|
|
29260
29296
|
this.e9_1 = 2;
|
|
29261
29297
|
this.d9_1 = 1;
|
|
29262
|
-
suspendResult = this.
|
|
29298
|
+
suspendResult = this.s7v_1.i6y(this.t7v_1, this.u7v_1, this.v7v_1, this);
|
|
29263
29299
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
29264
29300
|
return suspendResult;
|
|
29265
29301
|
}
|
|
@@ -29282,31 +29318,31 @@
|
|
|
29282
29318
|
while (true);
|
|
29283
29319
|
};
|
|
29284
29320
|
protoOf(LockOperationsResourceImpl$getAuditForUser$slambda).m1k = function ($this$promise, completion) {
|
|
29285
|
-
var i = new LockOperationsResourceImpl$getAuditForUser$slambda(this.
|
|
29286
|
-
i.
|
|
29321
|
+
var i = new LockOperationsResourceImpl$getAuditForUser$slambda(this.s7v_1, this.t7v_1, this.u7v_1, this.v7v_1, completion);
|
|
29322
|
+
i.w7v_1 = $this$promise;
|
|
29287
29323
|
return i;
|
|
29288
29324
|
};
|
|
29289
29325
|
function LockOperationsResourceImpl$getAuditForUser$slambda_0(this$0, $userId, $start, $end, resultContinuation) {
|
|
29290
29326
|
var i = new LockOperationsResourceImpl$getAuditForUser$slambda(this$0, $userId, $start, $end, resultContinuation);
|
|
29291
29327
|
var l = function ($this$promise, $completion) {
|
|
29292
|
-
return i.
|
|
29328
|
+
return i.j7v($this$promise, $completion);
|
|
29293
29329
|
};
|
|
29294
29330
|
l.$arity = 1;
|
|
29295
29331
|
return l;
|
|
29296
29332
|
}
|
|
29297
29333
|
function LockOperationsResourceImpl$getUsersForLock$slambda(this$0, $lockId, resultContinuation) {
|
|
29298
|
-
this.
|
|
29299
|
-
this.
|
|
29334
|
+
this.f7w_1 = this$0;
|
|
29335
|
+
this.g7w_1 = $lockId;
|
|
29300
29336
|
CoroutineImpl.call(this, resultContinuation);
|
|
29301
29337
|
}
|
|
29302
|
-
protoOf(LockOperationsResourceImpl$getUsersForLock$slambda).
|
|
29338
|
+
protoOf(LockOperationsResourceImpl$getUsersForLock$slambda).i7w = function ($this$promise, $completion) {
|
|
29303
29339
|
var tmp = this.m1k($this$promise, $completion);
|
|
29304
29340
|
tmp.f9_1 = Unit_instance;
|
|
29305
29341
|
tmp.g9_1 = null;
|
|
29306
29342
|
return tmp.l9();
|
|
29307
29343
|
};
|
|
29308
29344
|
protoOf(LockOperationsResourceImpl$getUsersForLock$slambda).v9 = function (p1, $completion) {
|
|
29309
|
-
return this.
|
|
29345
|
+
return this.i7w((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
29310
29346
|
};
|
|
29311
29347
|
protoOf(LockOperationsResourceImpl$getUsersForLock$slambda).l9 = function () {
|
|
29312
29348
|
var suspendResult = this.f9_1;
|
|
@@ -29317,7 +29353,7 @@
|
|
|
29317
29353
|
case 0:
|
|
29318
29354
|
this.e9_1 = 2;
|
|
29319
29355
|
this.d9_1 = 1;
|
|
29320
|
-
suspendResult = this.
|
|
29356
|
+
suspendResult = this.f7w_1.j6y(this.g7w_1, this);
|
|
29321
29357
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
29322
29358
|
return suspendResult;
|
|
29323
29359
|
}
|
|
@@ -29340,31 +29376,31 @@
|
|
|
29340
29376
|
while (true);
|
|
29341
29377
|
};
|
|
29342
29378
|
protoOf(LockOperationsResourceImpl$getUsersForLock$slambda).m1k = function ($this$promise, completion) {
|
|
29343
|
-
var i = new LockOperationsResourceImpl$getUsersForLock$slambda(this.
|
|
29344
|
-
i.
|
|
29379
|
+
var i = new LockOperationsResourceImpl$getUsersForLock$slambda(this.f7w_1, this.g7w_1, completion);
|
|
29380
|
+
i.h7w_1 = $this$promise;
|
|
29345
29381
|
return i;
|
|
29346
29382
|
};
|
|
29347
29383
|
function LockOperationsResourceImpl$getUsersForLock$slambda_0(this$0, $lockId, resultContinuation) {
|
|
29348
29384
|
var i = new LockOperationsResourceImpl$getUsersForLock$slambda(this$0, $lockId, resultContinuation);
|
|
29349
29385
|
var l = function ($this$promise, $completion) {
|
|
29350
|
-
return i.
|
|
29386
|
+
return i.i7w($this$promise, $completion);
|
|
29351
29387
|
};
|
|
29352
29388
|
l.$arity = 1;
|
|
29353
29389
|
return l;
|
|
29354
29390
|
}
|
|
29355
29391
|
function LockOperationsResourceImpl$getLocksForUser$slambda(this$0, $userId, resultContinuation) {
|
|
29356
|
-
this.
|
|
29357
|
-
this.
|
|
29392
|
+
this.r7w_1 = this$0;
|
|
29393
|
+
this.s7w_1 = $userId;
|
|
29358
29394
|
CoroutineImpl.call(this, resultContinuation);
|
|
29359
29395
|
}
|
|
29360
|
-
protoOf(LockOperationsResourceImpl$getLocksForUser$slambda).
|
|
29396
|
+
protoOf(LockOperationsResourceImpl$getLocksForUser$slambda).u7w = function ($this$promise, $completion) {
|
|
29361
29397
|
var tmp = this.m1k($this$promise, $completion);
|
|
29362
29398
|
tmp.f9_1 = Unit_instance;
|
|
29363
29399
|
tmp.g9_1 = null;
|
|
29364
29400
|
return tmp.l9();
|
|
29365
29401
|
};
|
|
29366
29402
|
protoOf(LockOperationsResourceImpl$getLocksForUser$slambda).v9 = function (p1, $completion) {
|
|
29367
|
-
return this.
|
|
29403
|
+
return this.u7w((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
29368
29404
|
};
|
|
29369
29405
|
protoOf(LockOperationsResourceImpl$getLocksForUser$slambda).l9 = function () {
|
|
29370
29406
|
var suspendResult = this.f9_1;
|
|
@@ -29375,7 +29411,7 @@
|
|
|
29375
29411
|
case 0:
|
|
29376
29412
|
this.e9_1 = 2;
|
|
29377
29413
|
this.d9_1 = 1;
|
|
29378
|
-
suspendResult = this.
|
|
29414
|
+
suspendResult = this.r7w_1.k6y(this.s7w_1, this);
|
|
29379
29415
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
29380
29416
|
return suspendResult;
|
|
29381
29417
|
}
|
|
@@ -29398,22 +29434,22 @@
|
|
|
29398
29434
|
while (true);
|
|
29399
29435
|
};
|
|
29400
29436
|
protoOf(LockOperationsResourceImpl$getLocksForUser$slambda).m1k = function ($this$promise, completion) {
|
|
29401
|
-
var i = new LockOperationsResourceImpl$getLocksForUser$slambda(this.
|
|
29402
|
-
i.
|
|
29437
|
+
var i = new LockOperationsResourceImpl$getLocksForUser$slambda(this.r7w_1, this.s7w_1, completion);
|
|
29438
|
+
i.t7w_1 = $this$promise;
|
|
29403
29439
|
return i;
|
|
29404
29440
|
};
|
|
29405
29441
|
function LockOperationsResourceImpl$getLocksForUser$slambda_0(this$0, $userId, resultContinuation) {
|
|
29406
29442
|
var i = new LockOperationsResourceImpl$getLocksForUser$slambda(this$0, $userId, resultContinuation);
|
|
29407
29443
|
var l = function ($this$promise, $completion) {
|
|
29408
|
-
return i.
|
|
29444
|
+
return i.u7w($this$promise, $completion);
|
|
29409
29445
|
};
|
|
29410
29446
|
l.$arity = 1;
|
|
29411
29447
|
return l;
|
|
29412
29448
|
}
|
|
29413
29449
|
function LockOperationsResourceImpl$updateLockName$slambda(this$0, $lockId, $name, resultContinuation) {
|
|
29414
|
-
this.
|
|
29415
|
-
this.
|
|
29416
|
-
this.
|
|
29450
|
+
this.d7x_1 = this$0;
|
|
29451
|
+
this.e7x_1 = $lockId;
|
|
29452
|
+
this.f7x_1 = $name;
|
|
29417
29453
|
CoroutineImpl.call(this, resultContinuation);
|
|
29418
29454
|
}
|
|
29419
29455
|
protoOf(LockOperationsResourceImpl$updateLockName$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -29434,7 +29470,7 @@
|
|
|
29434
29470
|
case 0:
|
|
29435
29471
|
this.e9_1 = 2;
|
|
29436
29472
|
this.d9_1 = 1;
|
|
29437
|
-
suspendResult = this.
|
|
29473
|
+
suspendResult = this.d7x_1.l6y(this.e7x_1, this.f7x_1, this);
|
|
29438
29474
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
29439
29475
|
return suspendResult;
|
|
29440
29476
|
}
|
|
@@ -29457,8 +29493,8 @@
|
|
|
29457
29493
|
while (true);
|
|
29458
29494
|
};
|
|
29459
29495
|
protoOf(LockOperationsResourceImpl$updateLockName$slambda).m1k = function ($this$promise, completion) {
|
|
29460
|
-
var i = new LockOperationsResourceImpl$updateLockName$slambda(this.
|
|
29461
|
-
i.
|
|
29496
|
+
var i = new LockOperationsResourceImpl$updateLockName$slambda(this.d7x_1, this.e7x_1, this.f7x_1, completion);
|
|
29497
|
+
i.g7x_1 = $this$promise;
|
|
29462
29498
|
return i;
|
|
29463
29499
|
};
|
|
29464
29500
|
function LockOperationsResourceImpl$updateLockName$slambda_0(this$0, $lockId, $name, resultContinuation) {
|
|
@@ -29470,9 +29506,9 @@
|
|
|
29470
29506
|
return l;
|
|
29471
29507
|
}
|
|
29472
29508
|
function LockOperationsResourceImpl$updateLockFavourite$slambda(this$0, $lockId, $favourite, resultContinuation) {
|
|
29473
|
-
this.
|
|
29474
|
-
this.
|
|
29475
|
-
this.
|
|
29509
|
+
this.p7x_1 = this$0;
|
|
29510
|
+
this.q7x_1 = $lockId;
|
|
29511
|
+
this.r7x_1 = $favourite;
|
|
29476
29512
|
CoroutineImpl.call(this, resultContinuation);
|
|
29477
29513
|
}
|
|
29478
29514
|
protoOf(LockOperationsResourceImpl$updateLockFavourite$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -29493,7 +29529,7 @@
|
|
|
29493
29529
|
case 0:
|
|
29494
29530
|
this.e9_1 = 2;
|
|
29495
29531
|
this.d9_1 = 1;
|
|
29496
|
-
suspendResult = this.
|
|
29532
|
+
suspendResult = this.p7x_1.m6y(this.q7x_1, this.r7x_1, this);
|
|
29497
29533
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
29498
29534
|
return suspendResult;
|
|
29499
29535
|
}
|
|
@@ -29516,8 +29552,8 @@
|
|
|
29516
29552
|
while (true);
|
|
29517
29553
|
};
|
|
29518
29554
|
protoOf(LockOperationsResourceImpl$updateLockFavourite$slambda).m1k = function ($this$promise, completion) {
|
|
29519
|
-
var i = new LockOperationsResourceImpl$updateLockFavourite$slambda(this.
|
|
29520
|
-
i.
|
|
29555
|
+
var i = new LockOperationsResourceImpl$updateLockFavourite$slambda(this.p7x_1, this.q7x_1, this.r7x_1, completion);
|
|
29556
|
+
i.s7x_1 = $this$promise;
|
|
29521
29557
|
return i;
|
|
29522
29558
|
};
|
|
29523
29559
|
function LockOperationsResourceImpl$updateLockFavourite$slambda_0(this$0, $lockId, $favourite, resultContinuation) {
|
|
@@ -29529,9 +29565,9 @@
|
|
|
29529
29565
|
return l;
|
|
29530
29566
|
}
|
|
29531
29567
|
function LockOperationsResourceImpl$updateLockColour$slambda(this$0, $lockId, $colour, resultContinuation) {
|
|
29532
|
-
this.
|
|
29533
|
-
this.
|
|
29534
|
-
this.
|
|
29568
|
+
this.b7y_1 = this$0;
|
|
29569
|
+
this.c7y_1 = $lockId;
|
|
29570
|
+
this.d7y_1 = $colour;
|
|
29535
29571
|
CoroutineImpl.call(this, resultContinuation);
|
|
29536
29572
|
}
|
|
29537
29573
|
protoOf(LockOperationsResourceImpl$updateLockColour$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -29552,7 +29588,7 @@
|
|
|
29552
29588
|
case 0:
|
|
29553
29589
|
this.e9_1 = 2;
|
|
29554
29590
|
this.d9_1 = 1;
|
|
29555
|
-
suspendResult = this.
|
|
29591
|
+
suspendResult = this.b7y_1.n6y(this.c7y_1, this.d7y_1, this);
|
|
29556
29592
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
29557
29593
|
return suspendResult;
|
|
29558
29594
|
}
|
|
@@ -29575,8 +29611,8 @@
|
|
|
29575
29611
|
while (true);
|
|
29576
29612
|
};
|
|
29577
29613
|
protoOf(LockOperationsResourceImpl$updateLockColour$slambda).m1k = function ($this$promise, completion) {
|
|
29578
|
-
var i = new LockOperationsResourceImpl$updateLockColour$slambda(this.
|
|
29579
|
-
i.
|
|
29614
|
+
var i = new LockOperationsResourceImpl$updateLockColour$slambda(this.b7y_1, this.c7y_1, this.d7y_1, completion);
|
|
29615
|
+
i.e7y_1 = $this$promise;
|
|
29580
29616
|
return i;
|
|
29581
29617
|
};
|
|
29582
29618
|
function LockOperationsResourceImpl$updateLockColour$slambda_0(this$0, $lockId, $colour, resultContinuation) {
|
|
@@ -29588,9 +29624,9 @@
|
|
|
29588
29624
|
return l;
|
|
29589
29625
|
}
|
|
29590
29626
|
function LockOperationsResourceImpl$updateLockSettingDefaultName$slambda(this$0, $lockId, $name, resultContinuation) {
|
|
29591
|
-
this.
|
|
29592
|
-
this.
|
|
29593
|
-
this.
|
|
29627
|
+
this.n7y_1 = this$0;
|
|
29628
|
+
this.o7y_1 = $lockId;
|
|
29629
|
+
this.p7y_1 = $name;
|
|
29594
29630
|
CoroutineImpl.call(this, resultContinuation);
|
|
29595
29631
|
}
|
|
29596
29632
|
protoOf(LockOperationsResourceImpl$updateLockSettingDefaultName$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -29611,7 +29647,7 @@
|
|
|
29611
29647
|
case 0:
|
|
29612
29648
|
this.e9_1 = 2;
|
|
29613
29649
|
this.d9_1 = 1;
|
|
29614
|
-
suspendResult = this.
|
|
29650
|
+
suspendResult = this.n7y_1.o6y(this.o7y_1, this.p7y_1, this);
|
|
29615
29651
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
29616
29652
|
return suspendResult;
|
|
29617
29653
|
}
|
|
@@ -29634,8 +29670,8 @@
|
|
|
29634
29670
|
while (true);
|
|
29635
29671
|
};
|
|
29636
29672
|
protoOf(LockOperationsResourceImpl$updateLockSettingDefaultName$slambda).m1k = function ($this$promise, completion) {
|
|
29637
|
-
var i = new LockOperationsResourceImpl$updateLockSettingDefaultName$slambda(this.
|
|
29638
|
-
i.
|
|
29673
|
+
var i = new LockOperationsResourceImpl$updateLockSettingDefaultName$slambda(this.n7y_1, this.o7y_1, this.p7y_1, completion);
|
|
29674
|
+
i.q7y_1 = $this$promise;
|
|
29639
29675
|
return i;
|
|
29640
29676
|
};
|
|
29641
29677
|
function LockOperationsResourceImpl$updateLockSettingDefaultName$slambda_0(this$0, $lockId, $name, resultContinuation) {
|
|
@@ -29647,9 +29683,9 @@
|
|
|
29647
29683
|
return l;
|
|
29648
29684
|
}
|
|
29649
29685
|
function LockOperationsResourceImpl$setLockSettingPermittedAddresses$slambda(this$0, $lockId, $permittedAddresses, resultContinuation) {
|
|
29650
|
-
this.
|
|
29651
|
-
this.
|
|
29652
|
-
this.
|
|
29686
|
+
this.z7y_1 = this$0;
|
|
29687
|
+
this.a7z_1 = $lockId;
|
|
29688
|
+
this.b7z_1 = $permittedAddresses;
|
|
29653
29689
|
CoroutineImpl.call(this, resultContinuation);
|
|
29654
29690
|
}
|
|
29655
29691
|
protoOf(LockOperationsResourceImpl$setLockSettingPermittedAddresses$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -29670,7 +29706,7 @@
|
|
|
29670
29706
|
case 0:
|
|
29671
29707
|
this.e9_1 = 2;
|
|
29672
29708
|
this.d9_1 = 1;
|
|
29673
|
-
suspendResult = this.
|
|
29709
|
+
suspendResult = this.z7y_1.p6y(this.a7z_1, this.b7z_1, this);
|
|
29674
29710
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
29675
29711
|
return suspendResult;
|
|
29676
29712
|
}
|
|
@@ -29693,8 +29729,8 @@
|
|
|
29693
29729
|
while (true);
|
|
29694
29730
|
};
|
|
29695
29731
|
protoOf(LockOperationsResourceImpl$setLockSettingPermittedAddresses$slambda).m1k = function ($this$promise, completion) {
|
|
29696
|
-
var i = new LockOperationsResourceImpl$setLockSettingPermittedAddresses$slambda(this.
|
|
29697
|
-
i.
|
|
29732
|
+
var i = new LockOperationsResourceImpl$setLockSettingPermittedAddresses$slambda(this.z7y_1, this.a7z_1, this.b7z_1, completion);
|
|
29733
|
+
i.c7z_1 = $this$promise;
|
|
29698
29734
|
return i;
|
|
29699
29735
|
};
|
|
29700
29736
|
function LockOperationsResourceImpl$setLockSettingPermittedAddresses$slambda_0(this$0, $lockId, $permittedAddresses, resultContinuation) {
|
|
@@ -29706,9 +29742,9 @@
|
|
|
29706
29742
|
return l;
|
|
29707
29743
|
}
|
|
29708
29744
|
function LockOperationsResourceImpl$updateLockSettingHidden$slambda(this$0, $lockId, $hidden, resultContinuation) {
|
|
29709
|
-
this.
|
|
29710
|
-
this.
|
|
29711
|
-
this.
|
|
29745
|
+
this.l7z_1 = this$0;
|
|
29746
|
+
this.m7z_1 = $lockId;
|
|
29747
|
+
this.n7z_1 = $hidden;
|
|
29712
29748
|
CoroutineImpl.call(this, resultContinuation);
|
|
29713
29749
|
}
|
|
29714
29750
|
protoOf(LockOperationsResourceImpl$updateLockSettingHidden$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -29729,7 +29765,7 @@
|
|
|
29729
29765
|
case 0:
|
|
29730
29766
|
this.e9_1 = 2;
|
|
29731
29767
|
this.d9_1 = 1;
|
|
29732
|
-
suspendResult = this.
|
|
29768
|
+
suspendResult = this.l7z_1.q6y(this.m7z_1, this.n7z_1, this);
|
|
29733
29769
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
29734
29770
|
return suspendResult;
|
|
29735
29771
|
}
|
|
@@ -29752,8 +29788,8 @@
|
|
|
29752
29788
|
while (true);
|
|
29753
29789
|
};
|
|
29754
29790
|
protoOf(LockOperationsResourceImpl$updateLockSettingHidden$slambda).m1k = function ($this$promise, completion) {
|
|
29755
|
-
var i = new LockOperationsResourceImpl$updateLockSettingHidden$slambda(this.
|
|
29756
|
-
i.
|
|
29791
|
+
var i = new LockOperationsResourceImpl$updateLockSettingHidden$slambda(this.l7z_1, this.m7z_1, this.n7z_1, completion);
|
|
29792
|
+
i.o7z_1 = $this$promise;
|
|
29757
29793
|
return i;
|
|
29758
29794
|
};
|
|
29759
29795
|
function LockOperationsResourceImpl$updateLockSettingHidden$slambda_0(this$0, $lockId, $hidden, resultContinuation) {
|
|
@@ -29765,9 +29801,9 @@
|
|
|
29765
29801
|
return l;
|
|
29766
29802
|
}
|
|
29767
29803
|
function LockOperationsResourceImpl$setLockSettingTimeRestrictions$slambda(this$0, $lockId, $times, resultContinuation) {
|
|
29768
|
-
this.
|
|
29769
|
-
this.
|
|
29770
|
-
this.
|
|
29804
|
+
this.x7z_1 = this$0;
|
|
29805
|
+
this.y7z_1 = $lockId;
|
|
29806
|
+
this.z7z_1 = $times;
|
|
29771
29807
|
CoroutineImpl.call(this, resultContinuation);
|
|
29772
29808
|
}
|
|
29773
29809
|
protoOf(LockOperationsResourceImpl$setLockSettingTimeRestrictions$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -29788,7 +29824,7 @@
|
|
|
29788
29824
|
case 0:
|
|
29789
29825
|
this.e9_1 = 2;
|
|
29790
29826
|
this.d9_1 = 1;
|
|
29791
|
-
suspendResult = this.
|
|
29827
|
+
suspendResult = this.x7z_1.r6y(this.y7z_1, this.z7z_1, this);
|
|
29792
29828
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
29793
29829
|
return suspendResult;
|
|
29794
29830
|
}
|
|
@@ -29811,8 +29847,8 @@
|
|
|
29811
29847
|
while (true);
|
|
29812
29848
|
};
|
|
29813
29849
|
protoOf(LockOperationsResourceImpl$setLockSettingTimeRestrictions$slambda).m1k = function ($this$promise, completion) {
|
|
29814
|
-
var i = new LockOperationsResourceImpl$setLockSettingTimeRestrictions$slambda(this.
|
|
29815
|
-
i.
|
|
29850
|
+
var i = new LockOperationsResourceImpl$setLockSettingTimeRestrictions$slambda(this.x7z_1, this.y7z_1, this.z7z_1, completion);
|
|
29851
|
+
i.a80_1 = $this$promise;
|
|
29816
29852
|
return i;
|
|
29817
29853
|
};
|
|
29818
29854
|
function LockOperationsResourceImpl$setLockSettingTimeRestrictions$slambda_0(this$0, $lockId, $times, resultContinuation) {
|
|
@@ -29824,9 +29860,9 @@
|
|
|
29824
29860
|
return l;
|
|
29825
29861
|
}
|
|
29826
29862
|
function LockOperationsResourceImpl$updateLockSettingLocationRestrictions$slambda(this$0, $lockId, $location, resultContinuation) {
|
|
29827
|
-
this.
|
|
29828
|
-
this.
|
|
29829
|
-
this.
|
|
29863
|
+
this.j80_1 = this$0;
|
|
29864
|
+
this.k80_1 = $lockId;
|
|
29865
|
+
this.l80_1 = $location;
|
|
29830
29866
|
CoroutineImpl.call(this, resultContinuation);
|
|
29831
29867
|
}
|
|
29832
29868
|
protoOf(LockOperationsResourceImpl$updateLockSettingLocationRestrictions$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -29847,7 +29883,7 @@
|
|
|
29847
29883
|
case 0:
|
|
29848
29884
|
this.e9_1 = 2;
|
|
29849
29885
|
this.d9_1 = 1;
|
|
29850
|
-
suspendResult = this.
|
|
29886
|
+
suspendResult = this.j80_1.s6y(this.k80_1, this.l80_1, this);
|
|
29851
29887
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
29852
29888
|
return suspendResult;
|
|
29853
29889
|
}
|
|
@@ -29870,8 +29906,8 @@
|
|
|
29870
29906
|
while (true);
|
|
29871
29907
|
};
|
|
29872
29908
|
protoOf(LockOperationsResourceImpl$updateLockSettingLocationRestrictions$slambda).m1k = function ($this$promise, completion) {
|
|
29873
|
-
var i = new LockOperationsResourceImpl$updateLockSettingLocationRestrictions$slambda(this.
|
|
29874
|
-
i.
|
|
29909
|
+
var i = new LockOperationsResourceImpl$updateLockSettingLocationRestrictions$slambda(this.j80_1, this.k80_1, this.l80_1, completion);
|
|
29910
|
+
i.m80_1 = $this$promise;
|
|
29875
29911
|
return i;
|
|
29876
29912
|
};
|
|
29877
29913
|
function LockOperationsResourceImpl$updateLockSettingLocationRestrictions$slambda_0(this$0, $lockId, $location, resultContinuation) {
|
|
@@ -29883,19 +29919,19 @@
|
|
|
29883
29919
|
return l;
|
|
29884
29920
|
}
|
|
29885
29921
|
function LockOperationsResourceImpl$getUserPublicKey$slambda(this$0, $userEmail, $visitor, resultContinuation) {
|
|
29886
|
-
this.
|
|
29887
|
-
this.
|
|
29888
|
-
this.
|
|
29922
|
+
this.v80_1 = this$0;
|
|
29923
|
+
this.w80_1 = $userEmail;
|
|
29924
|
+
this.x80_1 = $visitor;
|
|
29889
29925
|
CoroutineImpl.call(this, resultContinuation);
|
|
29890
29926
|
}
|
|
29891
|
-
protoOf(LockOperationsResourceImpl$getUserPublicKey$slambda).
|
|
29927
|
+
protoOf(LockOperationsResourceImpl$getUserPublicKey$slambda).z80 = function ($this$promise, $completion) {
|
|
29892
29928
|
var tmp = this.m1k($this$promise, $completion);
|
|
29893
29929
|
tmp.f9_1 = Unit_instance;
|
|
29894
29930
|
tmp.g9_1 = null;
|
|
29895
29931
|
return tmp.l9();
|
|
29896
29932
|
};
|
|
29897
29933
|
protoOf(LockOperationsResourceImpl$getUserPublicKey$slambda).v9 = function (p1, $completion) {
|
|
29898
|
-
return this.
|
|
29934
|
+
return this.z80((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
29899
29935
|
};
|
|
29900
29936
|
protoOf(LockOperationsResourceImpl$getUserPublicKey$slambda).l9 = function () {
|
|
29901
29937
|
var suspendResult = this.f9_1;
|
|
@@ -29906,7 +29942,7 @@
|
|
|
29906
29942
|
case 0:
|
|
29907
29943
|
this.e9_1 = 2;
|
|
29908
29944
|
this.d9_1 = 1;
|
|
29909
|
-
suspendResult = this.
|
|
29945
|
+
suspendResult = this.v80_1.t6y(this.w80_1, this.x80_1, this);
|
|
29910
29946
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
29911
29947
|
return suspendResult;
|
|
29912
29948
|
}
|
|
@@ -29929,31 +29965,31 @@
|
|
|
29929
29965
|
while (true);
|
|
29930
29966
|
};
|
|
29931
29967
|
protoOf(LockOperationsResourceImpl$getUserPublicKey$slambda).m1k = function ($this$promise, completion) {
|
|
29932
|
-
var i = new LockOperationsResourceImpl$getUserPublicKey$slambda(this.
|
|
29933
|
-
i.
|
|
29968
|
+
var i = new LockOperationsResourceImpl$getUserPublicKey$slambda(this.v80_1, this.w80_1, this.x80_1, completion);
|
|
29969
|
+
i.y80_1 = $this$promise;
|
|
29934
29970
|
return i;
|
|
29935
29971
|
};
|
|
29936
29972
|
function LockOperationsResourceImpl$getUserPublicKey$slambda_0(this$0, $userEmail, $visitor, resultContinuation) {
|
|
29937
29973
|
var i = new LockOperationsResourceImpl$getUserPublicKey$slambda(this$0, $userEmail, $visitor, resultContinuation);
|
|
29938
29974
|
var l = function ($this$promise, $completion) {
|
|
29939
|
-
return i.
|
|
29975
|
+
return i.z80($this$promise, $completion);
|
|
29940
29976
|
};
|
|
29941
29977
|
l.$arity = 1;
|
|
29942
29978
|
return l;
|
|
29943
29979
|
}
|
|
29944
29980
|
function LockOperationsResourceImpl$getUserPublicKeyByEmail$slambda(this$0, $email, resultContinuation) {
|
|
29945
|
-
this.
|
|
29946
|
-
this.
|
|
29981
|
+
this.i81_1 = this$0;
|
|
29982
|
+
this.j81_1 = $email;
|
|
29947
29983
|
CoroutineImpl.call(this, resultContinuation);
|
|
29948
29984
|
}
|
|
29949
|
-
protoOf(LockOperationsResourceImpl$getUserPublicKeyByEmail$slambda).
|
|
29985
|
+
protoOf(LockOperationsResourceImpl$getUserPublicKeyByEmail$slambda).z80 = function ($this$promise, $completion) {
|
|
29950
29986
|
var tmp = this.m1k($this$promise, $completion);
|
|
29951
29987
|
tmp.f9_1 = Unit_instance;
|
|
29952
29988
|
tmp.g9_1 = null;
|
|
29953
29989
|
return tmp.l9();
|
|
29954
29990
|
};
|
|
29955
29991
|
protoOf(LockOperationsResourceImpl$getUserPublicKeyByEmail$slambda).v9 = function (p1, $completion) {
|
|
29956
|
-
return this.
|
|
29992
|
+
return this.z80((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
29957
29993
|
};
|
|
29958
29994
|
protoOf(LockOperationsResourceImpl$getUserPublicKeyByEmail$slambda).l9 = function () {
|
|
29959
29995
|
var suspendResult = this.f9_1;
|
|
@@ -29964,7 +30000,7 @@
|
|
|
29964
30000
|
case 0:
|
|
29965
30001
|
this.e9_1 = 2;
|
|
29966
30002
|
this.d9_1 = 1;
|
|
29967
|
-
suspendResult = this.
|
|
30003
|
+
suspendResult = this.i81_1.u6y(this.j81_1, this);
|
|
29968
30004
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
29969
30005
|
return suspendResult;
|
|
29970
30006
|
}
|
|
@@ -29987,31 +30023,31 @@
|
|
|
29987
30023
|
while (true);
|
|
29988
30024
|
};
|
|
29989
30025
|
protoOf(LockOperationsResourceImpl$getUserPublicKeyByEmail$slambda).m1k = function ($this$promise, completion) {
|
|
29990
|
-
var i = new LockOperationsResourceImpl$getUserPublicKeyByEmail$slambda(this.
|
|
29991
|
-
i.
|
|
30026
|
+
var i = new LockOperationsResourceImpl$getUserPublicKeyByEmail$slambda(this.i81_1, this.j81_1, completion);
|
|
30027
|
+
i.k81_1 = $this$promise;
|
|
29992
30028
|
return i;
|
|
29993
30029
|
};
|
|
29994
30030
|
function LockOperationsResourceImpl$getUserPublicKeyByEmail$slambda_0(this$0, $email, resultContinuation) {
|
|
29995
30031
|
var i = new LockOperationsResourceImpl$getUserPublicKeyByEmail$slambda(this$0, $email, resultContinuation);
|
|
29996
30032
|
var l = function ($this$promise, $completion) {
|
|
29997
|
-
return i.
|
|
30033
|
+
return i.z80($this$promise, $completion);
|
|
29998
30034
|
};
|
|
29999
30035
|
l.$arity = 1;
|
|
30000
30036
|
return l;
|
|
30001
30037
|
}
|
|
30002
30038
|
function LockOperationsResourceImpl$getUserPublicKeyByTelephone$slambda(this$0, $telephone, resultContinuation) {
|
|
30003
|
-
this.
|
|
30004
|
-
this.
|
|
30039
|
+
this.t81_1 = this$0;
|
|
30040
|
+
this.u81_1 = $telephone;
|
|
30005
30041
|
CoroutineImpl.call(this, resultContinuation);
|
|
30006
30042
|
}
|
|
30007
|
-
protoOf(LockOperationsResourceImpl$getUserPublicKeyByTelephone$slambda).
|
|
30043
|
+
protoOf(LockOperationsResourceImpl$getUserPublicKeyByTelephone$slambda).z80 = function ($this$promise, $completion) {
|
|
30008
30044
|
var tmp = this.m1k($this$promise, $completion);
|
|
30009
30045
|
tmp.f9_1 = Unit_instance;
|
|
30010
30046
|
tmp.g9_1 = null;
|
|
30011
30047
|
return tmp.l9();
|
|
30012
30048
|
};
|
|
30013
30049
|
protoOf(LockOperationsResourceImpl$getUserPublicKeyByTelephone$slambda).v9 = function (p1, $completion) {
|
|
30014
|
-
return this.
|
|
30050
|
+
return this.z80((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
30015
30051
|
};
|
|
30016
30052
|
protoOf(LockOperationsResourceImpl$getUserPublicKeyByTelephone$slambda).l9 = function () {
|
|
30017
30053
|
var suspendResult = this.f9_1;
|
|
@@ -30022,7 +30058,7 @@
|
|
|
30022
30058
|
case 0:
|
|
30023
30059
|
this.e9_1 = 2;
|
|
30024
30060
|
this.d9_1 = 1;
|
|
30025
|
-
suspendResult = this.
|
|
30061
|
+
suspendResult = this.t81_1.v6y(this.u81_1, this);
|
|
30026
30062
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
30027
30063
|
return suspendResult;
|
|
30028
30064
|
}
|
|
@@ -30045,31 +30081,31 @@
|
|
|
30045
30081
|
while (true);
|
|
30046
30082
|
};
|
|
30047
30083
|
protoOf(LockOperationsResourceImpl$getUserPublicKeyByTelephone$slambda).m1k = function ($this$promise, completion) {
|
|
30048
|
-
var i = new LockOperationsResourceImpl$getUserPublicKeyByTelephone$slambda(this.
|
|
30049
|
-
i.
|
|
30084
|
+
var i = new LockOperationsResourceImpl$getUserPublicKeyByTelephone$slambda(this.t81_1, this.u81_1, completion);
|
|
30085
|
+
i.v81_1 = $this$promise;
|
|
30050
30086
|
return i;
|
|
30051
30087
|
};
|
|
30052
30088
|
function LockOperationsResourceImpl$getUserPublicKeyByTelephone$slambda_0(this$0, $telephone, resultContinuation) {
|
|
30053
30089
|
var i = new LockOperationsResourceImpl$getUserPublicKeyByTelephone$slambda(this$0, $telephone, resultContinuation);
|
|
30054
30090
|
var l = function ($this$promise, $completion) {
|
|
30055
|
-
return i.
|
|
30091
|
+
return i.z80($this$promise, $completion);
|
|
30056
30092
|
};
|
|
30057
30093
|
l.$arity = 1;
|
|
30058
30094
|
return l;
|
|
30059
30095
|
}
|
|
30060
30096
|
function LockOperationsResourceImpl$getUserPublicKeyByLocalKey$slambda(this$0, $localKey, resultContinuation) {
|
|
30061
|
-
this.
|
|
30062
|
-
this.
|
|
30097
|
+
this.e82_1 = this$0;
|
|
30098
|
+
this.f82_1 = $localKey;
|
|
30063
30099
|
CoroutineImpl.call(this, resultContinuation);
|
|
30064
30100
|
}
|
|
30065
|
-
protoOf(LockOperationsResourceImpl$getUserPublicKeyByLocalKey$slambda).
|
|
30101
|
+
protoOf(LockOperationsResourceImpl$getUserPublicKeyByLocalKey$slambda).z80 = function ($this$promise, $completion) {
|
|
30066
30102
|
var tmp = this.m1k($this$promise, $completion);
|
|
30067
30103
|
tmp.f9_1 = Unit_instance;
|
|
30068
30104
|
tmp.g9_1 = null;
|
|
30069
30105
|
return tmp.l9();
|
|
30070
30106
|
};
|
|
30071
30107
|
protoOf(LockOperationsResourceImpl$getUserPublicKeyByLocalKey$slambda).v9 = function (p1, $completion) {
|
|
30072
|
-
return this.
|
|
30108
|
+
return this.z80((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
30073
30109
|
};
|
|
30074
30110
|
protoOf(LockOperationsResourceImpl$getUserPublicKeyByLocalKey$slambda).l9 = function () {
|
|
30075
30111
|
var suspendResult = this.f9_1;
|
|
@@ -30080,7 +30116,7 @@
|
|
|
30080
30116
|
case 0:
|
|
30081
30117
|
this.e9_1 = 2;
|
|
30082
30118
|
this.d9_1 = 1;
|
|
30083
|
-
suspendResult = this.
|
|
30119
|
+
suspendResult = this.e82_1.w6y(this.f82_1, this);
|
|
30084
30120
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
30085
30121
|
return suspendResult;
|
|
30086
30122
|
}
|
|
@@ -30103,31 +30139,31 @@
|
|
|
30103
30139
|
while (true);
|
|
30104
30140
|
};
|
|
30105
30141
|
protoOf(LockOperationsResourceImpl$getUserPublicKeyByLocalKey$slambda).m1k = function ($this$promise, completion) {
|
|
30106
|
-
var i = new LockOperationsResourceImpl$getUserPublicKeyByLocalKey$slambda(this.
|
|
30107
|
-
i.
|
|
30142
|
+
var i = new LockOperationsResourceImpl$getUserPublicKeyByLocalKey$slambda(this.e82_1, this.f82_1, completion);
|
|
30143
|
+
i.g82_1 = $this$promise;
|
|
30108
30144
|
return i;
|
|
30109
30145
|
};
|
|
30110
30146
|
function LockOperationsResourceImpl$getUserPublicKeyByLocalKey$slambda_0(this$0, $localKey, resultContinuation) {
|
|
30111
30147
|
var i = new LockOperationsResourceImpl$getUserPublicKeyByLocalKey$slambda(this$0, $localKey, resultContinuation);
|
|
30112
30148
|
var l = function ($this$promise, $completion) {
|
|
30113
|
-
return i.
|
|
30149
|
+
return i.z80($this$promise, $completion);
|
|
30114
30150
|
};
|
|
30115
30151
|
l.$arity = 1;
|
|
30116
30152
|
return l;
|
|
30117
30153
|
}
|
|
30118
30154
|
function LockOperationsResourceImpl$getUserPublicKeyByForeignKey$slambda(this$0, $foreignKey, resultContinuation) {
|
|
30119
|
-
this.
|
|
30120
|
-
this.
|
|
30155
|
+
this.p82_1 = this$0;
|
|
30156
|
+
this.q82_1 = $foreignKey;
|
|
30121
30157
|
CoroutineImpl.call(this, resultContinuation);
|
|
30122
30158
|
}
|
|
30123
|
-
protoOf(LockOperationsResourceImpl$getUserPublicKeyByForeignKey$slambda).
|
|
30159
|
+
protoOf(LockOperationsResourceImpl$getUserPublicKeyByForeignKey$slambda).z80 = function ($this$promise, $completion) {
|
|
30124
30160
|
var tmp = this.m1k($this$promise, $completion);
|
|
30125
30161
|
tmp.f9_1 = Unit_instance;
|
|
30126
30162
|
tmp.g9_1 = null;
|
|
30127
30163
|
return tmp.l9();
|
|
30128
30164
|
};
|
|
30129
30165
|
protoOf(LockOperationsResourceImpl$getUserPublicKeyByForeignKey$slambda).v9 = function (p1, $completion) {
|
|
30130
|
-
return this.
|
|
30166
|
+
return this.z80((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
30131
30167
|
};
|
|
30132
30168
|
protoOf(LockOperationsResourceImpl$getUserPublicKeyByForeignKey$slambda).l9 = function () {
|
|
30133
30169
|
var suspendResult = this.f9_1;
|
|
@@ -30138,7 +30174,7 @@
|
|
|
30138
30174
|
case 0:
|
|
30139
30175
|
this.e9_1 = 2;
|
|
30140
30176
|
this.d9_1 = 1;
|
|
30141
|
-
suspendResult = this.
|
|
30177
|
+
suspendResult = this.p82_1.x6y(this.q82_1, this);
|
|
30142
30178
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
30143
30179
|
return suspendResult;
|
|
30144
30180
|
}
|
|
@@ -30161,31 +30197,31 @@
|
|
|
30161
30197
|
while (true);
|
|
30162
30198
|
};
|
|
30163
30199
|
protoOf(LockOperationsResourceImpl$getUserPublicKeyByForeignKey$slambda).m1k = function ($this$promise, completion) {
|
|
30164
|
-
var i = new LockOperationsResourceImpl$getUserPublicKeyByForeignKey$slambda(this.
|
|
30165
|
-
i.
|
|
30200
|
+
var i = new LockOperationsResourceImpl$getUserPublicKeyByForeignKey$slambda(this.p82_1, this.q82_1, completion);
|
|
30201
|
+
i.r82_1 = $this$promise;
|
|
30166
30202
|
return i;
|
|
30167
30203
|
};
|
|
30168
30204
|
function LockOperationsResourceImpl$getUserPublicKeyByForeignKey$slambda_0(this$0, $foreignKey, resultContinuation) {
|
|
30169
30205
|
var i = new LockOperationsResourceImpl$getUserPublicKeyByForeignKey$slambda(this$0, $foreignKey, resultContinuation);
|
|
30170
30206
|
var l = function ($this$promise, $completion) {
|
|
30171
|
-
return i.
|
|
30207
|
+
return i.z80($this$promise, $completion);
|
|
30172
30208
|
};
|
|
30173
30209
|
l.$arity = 1;
|
|
30174
30210
|
return l;
|
|
30175
30211
|
}
|
|
30176
30212
|
function LockOperationsResourceImpl$getUserPublicKeyByIdentity$slambda(this$0, $identity, resultContinuation) {
|
|
30177
|
-
this.
|
|
30178
|
-
this.
|
|
30213
|
+
this.a83_1 = this$0;
|
|
30214
|
+
this.b83_1 = $identity;
|
|
30179
30215
|
CoroutineImpl.call(this, resultContinuation);
|
|
30180
30216
|
}
|
|
30181
|
-
protoOf(LockOperationsResourceImpl$getUserPublicKeyByIdentity$slambda).
|
|
30217
|
+
protoOf(LockOperationsResourceImpl$getUserPublicKeyByIdentity$slambda).z80 = function ($this$promise, $completion) {
|
|
30182
30218
|
var tmp = this.m1k($this$promise, $completion);
|
|
30183
30219
|
tmp.f9_1 = Unit_instance;
|
|
30184
30220
|
tmp.g9_1 = null;
|
|
30185
30221
|
return tmp.l9();
|
|
30186
30222
|
};
|
|
30187
30223
|
protoOf(LockOperationsResourceImpl$getUserPublicKeyByIdentity$slambda).v9 = function (p1, $completion) {
|
|
30188
|
-
return this.
|
|
30224
|
+
return this.z80((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
30189
30225
|
};
|
|
30190
30226
|
protoOf(LockOperationsResourceImpl$getUserPublicKeyByIdentity$slambda).l9 = function () {
|
|
30191
30227
|
var suspendResult = this.f9_1;
|
|
@@ -30196,7 +30232,7 @@
|
|
|
30196
30232
|
case 0:
|
|
30197
30233
|
this.e9_1 = 2;
|
|
30198
30234
|
this.d9_1 = 1;
|
|
30199
|
-
suspendResult = this.
|
|
30235
|
+
suspendResult = this.a83_1.y6y(this.b83_1, this);
|
|
30200
30236
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
30201
30237
|
return suspendResult;
|
|
30202
30238
|
}
|
|
@@ -30219,22 +30255,22 @@
|
|
|
30219
30255
|
while (true);
|
|
30220
30256
|
};
|
|
30221
30257
|
protoOf(LockOperationsResourceImpl$getUserPublicKeyByIdentity$slambda).m1k = function ($this$promise, completion) {
|
|
30222
|
-
var i = new LockOperationsResourceImpl$getUserPublicKeyByIdentity$slambda(this.
|
|
30223
|
-
i.
|
|
30258
|
+
var i = new LockOperationsResourceImpl$getUserPublicKeyByIdentity$slambda(this.a83_1, this.b83_1, completion);
|
|
30259
|
+
i.c83_1 = $this$promise;
|
|
30224
30260
|
return i;
|
|
30225
30261
|
};
|
|
30226
30262
|
function LockOperationsResourceImpl$getUserPublicKeyByIdentity$slambda_0(this$0, $identity, resultContinuation) {
|
|
30227
30263
|
var i = new LockOperationsResourceImpl$getUserPublicKeyByIdentity$slambda(this$0, $identity, resultContinuation);
|
|
30228
30264
|
var l = function ($this$promise, $completion) {
|
|
30229
|
-
return i.
|
|
30265
|
+
return i.z80($this$promise, $completion);
|
|
30230
30266
|
};
|
|
30231
30267
|
l.$arity = 1;
|
|
30232
30268
|
return l;
|
|
30233
30269
|
}
|
|
30234
30270
|
function LockOperationsResourceImpl$unlockWithContext$slambda(this$0, $lockId, $directAccessEndpoints, resultContinuation) {
|
|
30235
|
-
this.
|
|
30236
|
-
this.
|
|
30237
|
-
this.
|
|
30271
|
+
this.l83_1 = this$0;
|
|
30272
|
+
this.m83_1 = $lockId;
|
|
30273
|
+
this.n83_1 = $directAccessEndpoints;
|
|
30238
30274
|
CoroutineImpl.call(this, resultContinuation);
|
|
30239
30275
|
}
|
|
30240
30276
|
protoOf(LockOperationsResourceImpl$unlockWithContext$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -30255,7 +30291,7 @@
|
|
|
30255
30291
|
case 0:
|
|
30256
30292
|
this.e9_1 = 2;
|
|
30257
30293
|
this.d9_1 = 1;
|
|
30258
|
-
suspendResult = this.
|
|
30294
|
+
suspendResult = this.l83_1.z6y(this.m83_1, this.n83_1, this);
|
|
30259
30295
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
30260
30296
|
return suspendResult;
|
|
30261
30297
|
}
|
|
@@ -30278,8 +30314,8 @@
|
|
|
30278
30314
|
while (true);
|
|
30279
30315
|
};
|
|
30280
30316
|
protoOf(LockOperationsResourceImpl$unlockWithContext$slambda).m1k = function ($this$promise, completion) {
|
|
30281
|
-
var i = new LockOperationsResourceImpl$unlockWithContext$slambda(this.
|
|
30282
|
-
i.
|
|
30317
|
+
var i = new LockOperationsResourceImpl$unlockWithContext$slambda(this.l83_1, this.m83_1, this.n83_1, completion);
|
|
30318
|
+
i.o83_1 = $this$promise;
|
|
30283
30319
|
return i;
|
|
30284
30320
|
};
|
|
30285
30321
|
function LockOperationsResourceImpl$unlockWithContext$slambda_0(this$0, $lockId, $directAccessEndpoints, resultContinuation) {
|
|
@@ -30291,8 +30327,8 @@
|
|
|
30291
30327
|
return l;
|
|
30292
30328
|
}
|
|
30293
30329
|
function LockOperationsResourceImpl$unlock$slambda(this$0, $unlockOperation, resultContinuation) {
|
|
30294
|
-
this.
|
|
30295
|
-
this.
|
|
30330
|
+
this.x83_1 = this$0;
|
|
30331
|
+
this.y83_1 = $unlockOperation;
|
|
30296
30332
|
CoroutineImpl.call(this, resultContinuation);
|
|
30297
30333
|
}
|
|
30298
30334
|
protoOf(LockOperationsResourceImpl$unlock$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -30313,7 +30349,7 @@
|
|
|
30313
30349
|
case 0:
|
|
30314
30350
|
this.e9_1 = 2;
|
|
30315
30351
|
this.d9_1 = 1;
|
|
30316
|
-
suspendResult = this.
|
|
30352
|
+
suspendResult = this.x83_1.a6z(this.y83_1, this);
|
|
30317
30353
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
30318
30354
|
return suspendResult;
|
|
30319
30355
|
}
|
|
@@ -30336,8 +30372,8 @@
|
|
|
30336
30372
|
while (true);
|
|
30337
30373
|
};
|
|
30338
30374
|
protoOf(LockOperationsResourceImpl$unlock$slambda).m1k = function ($this$promise, completion) {
|
|
30339
|
-
var i = new LockOperationsResourceImpl$unlock$slambda(this.
|
|
30340
|
-
i.
|
|
30375
|
+
var i = new LockOperationsResourceImpl$unlock$slambda(this.x83_1, this.y83_1, completion);
|
|
30376
|
+
i.z83_1 = $this$promise;
|
|
30341
30377
|
return i;
|
|
30342
30378
|
};
|
|
30343
30379
|
function LockOperationsResourceImpl$unlock$slambda_0(this$0, $unlockOperation, resultContinuation) {
|
|
@@ -30349,9 +30385,9 @@
|
|
|
30349
30385
|
return l;
|
|
30350
30386
|
}
|
|
30351
30387
|
function LockOperationsResourceImpl$shareLockWithContext$slambda(this$0, $lockId, $shareLock, resultContinuation) {
|
|
30352
|
-
this.
|
|
30353
|
-
this.
|
|
30354
|
-
this.
|
|
30388
|
+
this.i84_1 = this$0;
|
|
30389
|
+
this.j84_1 = $lockId;
|
|
30390
|
+
this.k84_1 = $shareLock;
|
|
30355
30391
|
CoroutineImpl.call(this, resultContinuation);
|
|
30356
30392
|
}
|
|
30357
30393
|
protoOf(LockOperationsResourceImpl$shareLockWithContext$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -30372,7 +30408,7 @@
|
|
|
30372
30408
|
case 0:
|
|
30373
30409
|
this.e9_1 = 2;
|
|
30374
30410
|
this.d9_1 = 1;
|
|
30375
|
-
suspendResult = this.
|
|
30411
|
+
suspendResult = this.i84_1.b6z(this.j84_1, this.k84_1, this);
|
|
30376
30412
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
30377
30413
|
return suspendResult;
|
|
30378
30414
|
}
|
|
@@ -30395,8 +30431,8 @@
|
|
|
30395
30431
|
while (true);
|
|
30396
30432
|
};
|
|
30397
30433
|
protoOf(LockOperationsResourceImpl$shareLockWithContext$slambda).m1k = function ($this$promise, completion) {
|
|
30398
|
-
var i = new LockOperationsResourceImpl$shareLockWithContext$slambda(this.
|
|
30399
|
-
i.
|
|
30434
|
+
var i = new LockOperationsResourceImpl$shareLockWithContext$slambda(this.i84_1, this.j84_1, this.k84_1, completion);
|
|
30435
|
+
i.l84_1 = $this$promise;
|
|
30400
30436
|
return i;
|
|
30401
30437
|
};
|
|
30402
30438
|
function LockOperationsResourceImpl$shareLockWithContext$slambda_0(this$0, $lockId, $shareLock, resultContinuation) {
|
|
@@ -30408,8 +30444,8 @@
|
|
|
30408
30444
|
return l;
|
|
30409
30445
|
}
|
|
30410
30446
|
function LockOperationsResourceImpl$shareLock$slambda(this$0, $shareLockOperation, resultContinuation) {
|
|
30411
|
-
this.
|
|
30412
|
-
this.
|
|
30447
|
+
this.u84_1 = this$0;
|
|
30448
|
+
this.v84_1 = $shareLockOperation;
|
|
30413
30449
|
CoroutineImpl.call(this, resultContinuation);
|
|
30414
30450
|
}
|
|
30415
30451
|
protoOf(LockOperationsResourceImpl$shareLock$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -30430,7 +30466,7 @@
|
|
|
30430
30466
|
case 0:
|
|
30431
30467
|
this.e9_1 = 2;
|
|
30432
30468
|
this.d9_1 = 1;
|
|
30433
|
-
suspendResult = this.
|
|
30469
|
+
suspendResult = this.u84_1.c6z(this.v84_1, this);
|
|
30434
30470
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
30435
30471
|
return suspendResult;
|
|
30436
30472
|
}
|
|
@@ -30453,8 +30489,8 @@
|
|
|
30453
30489
|
while (true);
|
|
30454
30490
|
};
|
|
30455
30491
|
protoOf(LockOperationsResourceImpl$shareLock$slambda).m1k = function ($this$promise, completion) {
|
|
30456
|
-
var i = new LockOperationsResourceImpl$shareLock$slambda(this.
|
|
30457
|
-
i.
|
|
30492
|
+
var i = new LockOperationsResourceImpl$shareLock$slambda(this.u84_1, this.v84_1, completion);
|
|
30493
|
+
i.w84_1 = $this$promise;
|
|
30458
30494
|
return i;
|
|
30459
30495
|
};
|
|
30460
30496
|
function LockOperationsResourceImpl$shareLock$slambda_0(this$0, $shareLockOperation, resultContinuation) {
|
|
@@ -30466,9 +30502,9 @@
|
|
|
30466
30502
|
return l;
|
|
30467
30503
|
}
|
|
30468
30504
|
function LockOperationsResourceImpl$revokeAccessToLockWithContext$slambda(this$0, $lockId, $users, resultContinuation) {
|
|
30469
|
-
this.
|
|
30470
|
-
this.
|
|
30471
|
-
this.
|
|
30505
|
+
this.f85_1 = this$0;
|
|
30506
|
+
this.g85_1 = $lockId;
|
|
30507
|
+
this.h85_1 = $users;
|
|
30472
30508
|
CoroutineImpl.call(this, resultContinuation);
|
|
30473
30509
|
}
|
|
30474
30510
|
protoOf(LockOperationsResourceImpl$revokeAccessToLockWithContext$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -30489,7 +30525,7 @@
|
|
|
30489
30525
|
case 0:
|
|
30490
30526
|
this.e9_1 = 2;
|
|
30491
30527
|
this.d9_1 = 1;
|
|
30492
|
-
suspendResult = this.
|
|
30528
|
+
suspendResult = this.f85_1.d6z(this.g85_1, this.h85_1, this);
|
|
30493
30529
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
30494
30530
|
return suspendResult;
|
|
30495
30531
|
}
|
|
@@ -30512,8 +30548,8 @@
|
|
|
30512
30548
|
while (true);
|
|
30513
30549
|
};
|
|
30514
30550
|
protoOf(LockOperationsResourceImpl$revokeAccessToLockWithContext$slambda).m1k = function ($this$promise, completion) {
|
|
30515
|
-
var i = new LockOperationsResourceImpl$revokeAccessToLockWithContext$slambda(this.
|
|
30516
|
-
i.
|
|
30551
|
+
var i = new LockOperationsResourceImpl$revokeAccessToLockWithContext$slambda(this.f85_1, this.g85_1, this.h85_1, completion);
|
|
30552
|
+
i.i85_1 = $this$promise;
|
|
30517
30553
|
return i;
|
|
30518
30554
|
};
|
|
30519
30555
|
function LockOperationsResourceImpl$revokeAccessToLockWithContext$slambda_0(this$0, $lockId, $users, resultContinuation) {
|
|
@@ -30525,8 +30561,8 @@
|
|
|
30525
30561
|
return l;
|
|
30526
30562
|
}
|
|
30527
30563
|
function LockOperationsResourceImpl$revokeAccessToLock$slambda(this$0, $revokeAccessToLockOperation, resultContinuation) {
|
|
30528
|
-
this.
|
|
30529
|
-
this.
|
|
30564
|
+
this.r85_1 = this$0;
|
|
30565
|
+
this.s85_1 = $revokeAccessToLockOperation;
|
|
30530
30566
|
CoroutineImpl.call(this, resultContinuation);
|
|
30531
30567
|
}
|
|
30532
30568
|
protoOf(LockOperationsResourceImpl$revokeAccessToLock$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -30547,7 +30583,7 @@
|
|
|
30547
30583
|
case 0:
|
|
30548
30584
|
this.e9_1 = 2;
|
|
30549
30585
|
this.d9_1 = 1;
|
|
30550
|
-
suspendResult = this.
|
|
30586
|
+
suspendResult = this.r85_1.e6z(this.s85_1, this);
|
|
30551
30587
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
30552
30588
|
return suspendResult;
|
|
30553
30589
|
}
|
|
@@ -30570,8 +30606,8 @@
|
|
|
30570
30606
|
while (true);
|
|
30571
30607
|
};
|
|
30572
30608
|
protoOf(LockOperationsResourceImpl$revokeAccessToLock$slambda).m1k = function ($this$promise, completion) {
|
|
30573
|
-
var i = new LockOperationsResourceImpl$revokeAccessToLock$slambda(this.
|
|
30574
|
-
i.
|
|
30609
|
+
var i = new LockOperationsResourceImpl$revokeAccessToLock$slambda(this.r85_1, this.s85_1, completion);
|
|
30610
|
+
i.t85_1 = $this$promise;
|
|
30575
30611
|
return i;
|
|
30576
30612
|
};
|
|
30577
30613
|
function LockOperationsResourceImpl$revokeAccessToLock$slambda_0(this$0, $revokeAccessToLockOperation, resultContinuation) {
|
|
@@ -30583,9 +30619,9 @@
|
|
|
30583
30619
|
return l;
|
|
30584
30620
|
}
|
|
30585
30621
|
function LockOperationsResourceImpl$updateSecureSettingUnlockDurationWithContext$slambda(this$0, $lockId, $unlockDuration, resultContinuation) {
|
|
30586
|
-
this.
|
|
30587
|
-
this.
|
|
30588
|
-
this.
|
|
30622
|
+
this.c86_1 = this$0;
|
|
30623
|
+
this.d86_1 = $lockId;
|
|
30624
|
+
this.e86_1 = $unlockDuration;
|
|
30589
30625
|
CoroutineImpl.call(this, resultContinuation);
|
|
30590
30626
|
}
|
|
30591
30627
|
protoOf(LockOperationsResourceImpl$updateSecureSettingUnlockDurationWithContext$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -30606,7 +30642,7 @@
|
|
|
30606
30642
|
case 0:
|
|
30607
30643
|
this.e9_1 = 2;
|
|
30608
30644
|
this.d9_1 = 1;
|
|
30609
|
-
suspendResult = this.
|
|
30645
|
+
suspendResult = this.c86_1.f6z(this.d86_1, this.e86_1, this);
|
|
30610
30646
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
30611
30647
|
return suspendResult;
|
|
30612
30648
|
}
|
|
@@ -30629,8 +30665,8 @@
|
|
|
30629
30665
|
while (true);
|
|
30630
30666
|
};
|
|
30631
30667
|
protoOf(LockOperationsResourceImpl$updateSecureSettingUnlockDurationWithContext$slambda).m1k = function ($this$promise, completion) {
|
|
30632
|
-
var i = new LockOperationsResourceImpl$updateSecureSettingUnlockDurationWithContext$slambda(this.
|
|
30633
|
-
i.
|
|
30668
|
+
var i = new LockOperationsResourceImpl$updateSecureSettingUnlockDurationWithContext$slambda(this.c86_1, this.d86_1, this.e86_1, completion);
|
|
30669
|
+
i.f86_1 = $this$promise;
|
|
30634
30670
|
return i;
|
|
30635
30671
|
};
|
|
30636
30672
|
function LockOperationsResourceImpl$updateSecureSettingUnlockDurationWithContext$slambda_0(this$0, $lockId, $unlockDuration, resultContinuation) {
|
|
@@ -30642,8 +30678,8 @@
|
|
|
30642
30678
|
return l;
|
|
30643
30679
|
}
|
|
30644
30680
|
function LockOperationsResourceImpl$updateSecureSettingUnlockDuration$slambda(this$0, $updateSecureSettingUnlockDuration, resultContinuation) {
|
|
30645
|
-
this.
|
|
30646
|
-
this.
|
|
30681
|
+
this.o86_1 = this$0;
|
|
30682
|
+
this.p86_1 = $updateSecureSettingUnlockDuration;
|
|
30647
30683
|
CoroutineImpl.call(this, resultContinuation);
|
|
30648
30684
|
}
|
|
30649
30685
|
protoOf(LockOperationsResourceImpl$updateSecureSettingUnlockDuration$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -30664,7 +30700,7 @@
|
|
|
30664
30700
|
case 0:
|
|
30665
30701
|
this.e9_1 = 2;
|
|
30666
30702
|
this.d9_1 = 1;
|
|
30667
|
-
suspendResult = this.
|
|
30703
|
+
suspendResult = this.o86_1.g6z(this.p86_1, this);
|
|
30668
30704
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
30669
30705
|
return suspendResult;
|
|
30670
30706
|
}
|
|
@@ -30687,8 +30723,8 @@
|
|
|
30687
30723
|
while (true);
|
|
30688
30724
|
};
|
|
30689
30725
|
protoOf(LockOperationsResourceImpl$updateSecureSettingUnlockDuration$slambda).m1k = function ($this$promise, completion) {
|
|
30690
|
-
var i = new LockOperationsResourceImpl$updateSecureSettingUnlockDuration$slambda(this.
|
|
30691
|
-
i.
|
|
30726
|
+
var i = new LockOperationsResourceImpl$updateSecureSettingUnlockDuration$slambda(this.o86_1, this.p86_1, completion);
|
|
30727
|
+
i.q86_1 = $this$promise;
|
|
30692
30728
|
return i;
|
|
30693
30729
|
};
|
|
30694
30730
|
function LockOperationsResourceImpl$updateSecureSettingUnlockDuration$slambda_0(this$0, $updateSecureSettingUnlockDuration, resultContinuation) {
|
|
@@ -30700,9 +30736,9 @@
|
|
|
30700
30736
|
return l;
|
|
30701
30737
|
}
|
|
30702
30738
|
function LockOperationsResourceImpl$updateSecureSettingUnlockBetweenWithContext$slambda(this$0, $lockId, $unlockBetween, resultContinuation) {
|
|
30703
|
-
this.
|
|
30704
|
-
this.
|
|
30705
|
-
this.
|
|
30739
|
+
this.z86_1 = this$0;
|
|
30740
|
+
this.a87_1 = $lockId;
|
|
30741
|
+
this.b87_1 = $unlockBetween;
|
|
30706
30742
|
CoroutineImpl.call(this, resultContinuation);
|
|
30707
30743
|
}
|
|
30708
30744
|
protoOf(LockOperationsResourceImpl$updateSecureSettingUnlockBetweenWithContext$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -30723,7 +30759,7 @@
|
|
|
30723
30759
|
case 0:
|
|
30724
30760
|
this.e9_1 = 2;
|
|
30725
30761
|
this.d9_1 = 1;
|
|
30726
|
-
suspendResult = this.
|
|
30762
|
+
suspendResult = this.z86_1.h6z(this.a87_1, this.b87_1, this);
|
|
30727
30763
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
30728
30764
|
return suspendResult;
|
|
30729
30765
|
}
|
|
@@ -30746,8 +30782,8 @@
|
|
|
30746
30782
|
while (true);
|
|
30747
30783
|
};
|
|
30748
30784
|
protoOf(LockOperationsResourceImpl$updateSecureSettingUnlockBetweenWithContext$slambda).m1k = function ($this$promise, completion) {
|
|
30749
|
-
var i = new LockOperationsResourceImpl$updateSecureSettingUnlockBetweenWithContext$slambda(this.
|
|
30750
|
-
i.
|
|
30785
|
+
var i = new LockOperationsResourceImpl$updateSecureSettingUnlockBetweenWithContext$slambda(this.z86_1, this.a87_1, this.b87_1, completion);
|
|
30786
|
+
i.c87_1 = $this$promise;
|
|
30751
30787
|
return i;
|
|
30752
30788
|
};
|
|
30753
30789
|
function LockOperationsResourceImpl$updateSecureSettingUnlockBetweenWithContext$slambda_0(this$0, $lockId, $unlockBetween, resultContinuation) {
|
|
@@ -30759,8 +30795,8 @@
|
|
|
30759
30795
|
return l;
|
|
30760
30796
|
}
|
|
30761
30797
|
function LockOperationsResourceImpl$updateSecureSettingUnlockBetween$slambda(this$0, $updateSecureSettingUnlockBetween, resultContinuation) {
|
|
30762
|
-
this.
|
|
30763
|
-
this.
|
|
30798
|
+
this.l87_1 = this$0;
|
|
30799
|
+
this.m87_1 = $updateSecureSettingUnlockBetween;
|
|
30764
30800
|
CoroutineImpl.call(this, resultContinuation);
|
|
30765
30801
|
}
|
|
30766
30802
|
protoOf(LockOperationsResourceImpl$updateSecureSettingUnlockBetween$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -30781,7 +30817,7 @@
|
|
|
30781
30817
|
case 0:
|
|
30782
30818
|
this.e9_1 = 2;
|
|
30783
30819
|
this.d9_1 = 1;
|
|
30784
|
-
suspendResult = this.
|
|
30820
|
+
suspendResult = this.l87_1.i6z(this.m87_1, this);
|
|
30785
30821
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
30786
30822
|
return suspendResult;
|
|
30787
30823
|
}
|
|
@@ -30804,8 +30840,8 @@
|
|
|
30804
30840
|
while (true);
|
|
30805
30841
|
};
|
|
30806
30842
|
protoOf(LockOperationsResourceImpl$updateSecureSettingUnlockBetween$slambda).m1k = function ($this$promise, completion) {
|
|
30807
|
-
var i = new LockOperationsResourceImpl$updateSecureSettingUnlockBetween$slambda(this.
|
|
30808
|
-
i.
|
|
30843
|
+
var i = new LockOperationsResourceImpl$updateSecureSettingUnlockBetween$slambda(this.l87_1, this.m87_1, completion);
|
|
30844
|
+
i.n87_1 = $this$promise;
|
|
30809
30845
|
return i;
|
|
30810
30846
|
};
|
|
30811
30847
|
function LockOperationsResourceImpl$updateSecureSettingUnlockBetween$slambda_0(this$0, $updateSecureSettingUnlockBetween, resultContinuation) {
|
|
@@ -30817,17 +30853,17 @@
|
|
|
30817
30853
|
return l;
|
|
30818
30854
|
}
|
|
30819
30855
|
function LockOperationsResourceImpl$getPinnedLocks$slambda(this$0, resultContinuation) {
|
|
30820
|
-
this.
|
|
30856
|
+
this.w87_1 = this$0;
|
|
30821
30857
|
CoroutineImpl.call(this, resultContinuation);
|
|
30822
30858
|
}
|
|
30823
|
-
protoOf(LockOperationsResourceImpl$getPinnedLocks$slambda).
|
|
30859
|
+
protoOf(LockOperationsResourceImpl$getPinnedLocks$slambda).y87 = function ($this$promise, $completion) {
|
|
30824
30860
|
var tmp = this.m1k($this$promise, $completion);
|
|
30825
30861
|
tmp.f9_1 = Unit_instance;
|
|
30826
30862
|
tmp.g9_1 = null;
|
|
30827
30863
|
return tmp.l9();
|
|
30828
30864
|
};
|
|
30829
30865
|
protoOf(LockOperationsResourceImpl$getPinnedLocks$slambda).v9 = function (p1, $completion) {
|
|
30830
|
-
return this.
|
|
30866
|
+
return this.y87((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
30831
30867
|
};
|
|
30832
30868
|
protoOf(LockOperationsResourceImpl$getPinnedLocks$slambda).l9 = function () {
|
|
30833
30869
|
var suspendResult = this.f9_1;
|
|
@@ -30838,7 +30874,7 @@
|
|
|
30838
30874
|
case 0:
|
|
30839
30875
|
this.e9_1 = 2;
|
|
30840
30876
|
this.d9_1 = 1;
|
|
30841
|
-
suspendResult = this.
|
|
30877
|
+
suspendResult = this.w87_1.j6z(this);
|
|
30842
30878
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
30843
30879
|
return suspendResult;
|
|
30844
30880
|
}
|
|
@@ -30861,30 +30897,30 @@
|
|
|
30861
30897
|
while (true);
|
|
30862
30898
|
};
|
|
30863
30899
|
protoOf(LockOperationsResourceImpl$getPinnedLocks$slambda).m1k = function ($this$promise, completion) {
|
|
30864
|
-
var i = new LockOperationsResourceImpl$getPinnedLocks$slambda(this.
|
|
30865
|
-
i.
|
|
30900
|
+
var i = new LockOperationsResourceImpl$getPinnedLocks$slambda(this.w87_1, completion);
|
|
30901
|
+
i.x87_1 = $this$promise;
|
|
30866
30902
|
return i;
|
|
30867
30903
|
};
|
|
30868
30904
|
function LockOperationsResourceImpl$getPinnedLocks$slambda_0(this$0, resultContinuation) {
|
|
30869
30905
|
var i = new LockOperationsResourceImpl$getPinnedLocks$slambda(this$0, resultContinuation);
|
|
30870
30906
|
var l = function ($this$promise, $completion) {
|
|
30871
|
-
return i.
|
|
30907
|
+
return i.y87($this$promise, $completion);
|
|
30872
30908
|
};
|
|
30873
30909
|
l.$arity = 1;
|
|
30874
30910
|
return l;
|
|
30875
30911
|
}
|
|
30876
30912
|
function LockOperationsResourceImpl$getShareableLocks$slambda(this$0, resultContinuation) {
|
|
30877
|
-
this.
|
|
30913
|
+
this.h88_1 = this$0;
|
|
30878
30914
|
CoroutineImpl.call(this, resultContinuation);
|
|
30879
30915
|
}
|
|
30880
|
-
protoOf(LockOperationsResourceImpl$getShareableLocks$slambda).
|
|
30916
|
+
protoOf(LockOperationsResourceImpl$getShareableLocks$slambda).j88 = function ($this$promise, $completion) {
|
|
30881
30917
|
var tmp = this.m1k($this$promise, $completion);
|
|
30882
30918
|
tmp.f9_1 = Unit_instance;
|
|
30883
30919
|
tmp.g9_1 = null;
|
|
30884
30920
|
return tmp.l9();
|
|
30885
30921
|
};
|
|
30886
30922
|
protoOf(LockOperationsResourceImpl$getShareableLocks$slambda).v9 = function (p1, $completion) {
|
|
30887
|
-
return this.
|
|
30923
|
+
return this.j88((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
30888
30924
|
};
|
|
30889
30925
|
protoOf(LockOperationsResourceImpl$getShareableLocks$slambda).l9 = function () {
|
|
30890
30926
|
var suspendResult = this.f9_1;
|
|
@@ -30895,7 +30931,7 @@
|
|
|
30895
30931
|
case 0:
|
|
30896
30932
|
this.e9_1 = 2;
|
|
30897
30933
|
this.d9_1 = 1;
|
|
30898
|
-
suspendResult = this.
|
|
30934
|
+
suspendResult = this.h88_1.k6z(this);
|
|
30899
30935
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
30900
30936
|
return suspendResult;
|
|
30901
30937
|
}
|
|
@@ -30918,14 +30954,14 @@
|
|
|
30918
30954
|
while (true);
|
|
30919
30955
|
};
|
|
30920
30956
|
protoOf(LockOperationsResourceImpl$getShareableLocks$slambda).m1k = function ($this$promise, completion) {
|
|
30921
|
-
var i = new LockOperationsResourceImpl$getShareableLocks$slambda(this.
|
|
30922
|
-
i.
|
|
30957
|
+
var i = new LockOperationsResourceImpl$getShareableLocks$slambda(this.h88_1, completion);
|
|
30958
|
+
i.i88_1 = $this$promise;
|
|
30923
30959
|
return i;
|
|
30924
30960
|
};
|
|
30925
30961
|
function LockOperationsResourceImpl$getShareableLocks$slambda_0(this$0, resultContinuation) {
|
|
30926
30962
|
var i = new LockOperationsResourceImpl$getShareableLocks$slambda(this$0, resultContinuation);
|
|
30927
30963
|
var l = function ($this$promise, $completion) {
|
|
30928
|
-
return i.
|
|
30964
|
+
return i.j88($this$promise, $completion);
|
|
30929
30965
|
};
|
|
30930
30966
|
l.$arity = 1;
|
|
30931
30967
|
return l;
|
|
@@ -30953,19 +30989,19 @@
|
|
|
30953
30989
|
var tmp = GlobalScope_instance;
|
|
30954
30990
|
return promise(tmp, VOID, VOID, LockOperationsResourceImpl$getLocksForUser$slambda_0(this, userId, null));
|
|
30955
30991
|
};
|
|
30956
|
-
protoOf(LockOperationsResourceImpl).
|
|
30992
|
+
protoOf(LockOperationsResourceImpl).a7k = function (lockId, name) {
|
|
30957
30993
|
var tmp = GlobalScope_instance;
|
|
30958
30994
|
return promise(tmp, VOID, VOID, LockOperationsResourceImpl$updateLockName$slambda_0(this, lockId, name, null));
|
|
30959
30995
|
};
|
|
30960
|
-
protoOf(LockOperationsResourceImpl).
|
|
30996
|
+
protoOf(LockOperationsResourceImpl).b7k = function (lockId, favourite) {
|
|
30961
30997
|
var tmp = GlobalScope_instance;
|
|
30962
30998
|
return promise(tmp, VOID, VOID, LockOperationsResourceImpl$updateLockFavourite$slambda_0(this, lockId, favourite, null));
|
|
30963
30999
|
};
|
|
30964
|
-
protoOf(LockOperationsResourceImpl).
|
|
31000
|
+
protoOf(LockOperationsResourceImpl).c7k = function (lockId, colour) {
|
|
30965
31001
|
var tmp = GlobalScope_instance;
|
|
30966
31002
|
return promise(tmp, VOID, VOID, LockOperationsResourceImpl$updateLockColour$slambda_0(this, lockId, colour, null));
|
|
30967
31003
|
};
|
|
30968
|
-
protoOf(LockOperationsResourceImpl).
|
|
31004
|
+
protoOf(LockOperationsResourceImpl).d7k = function (lockId, name) {
|
|
30969
31005
|
var tmp = GlobalScope_instance;
|
|
30970
31006
|
return promise(tmp, VOID, VOID, LockOperationsResourceImpl$updateLockSettingDefaultName$slambda_0(this, lockId, name, null));
|
|
30971
31007
|
};
|
|
@@ -30981,11 +31017,11 @@
|
|
|
30981
31017
|
var tmp = GlobalScope_instance;
|
|
30982
31018
|
return promise(tmp, VOID, VOID, LockOperationsResourceImpl$setLockSettingTimeRestrictions$slambda_0(this, lockId, times, null));
|
|
30983
31019
|
};
|
|
30984
|
-
protoOf(LockOperationsResourceImpl).
|
|
31020
|
+
protoOf(LockOperationsResourceImpl).e7k = function (lockId, location) {
|
|
30985
31021
|
var tmp = GlobalScope_instance;
|
|
30986
31022
|
return promise(tmp, VOID, VOID, LockOperationsResourceImpl$updateLockSettingLocationRestrictions$slambda_0(this, lockId, location, null));
|
|
30987
31023
|
};
|
|
30988
|
-
protoOf(LockOperationsResourceImpl).
|
|
31024
|
+
protoOf(LockOperationsResourceImpl).f7k = function (userEmail, visitor) {
|
|
30989
31025
|
var tmp = GlobalScope_instance;
|
|
30990
31026
|
return promise(tmp, VOID, VOID, LockOperationsResourceImpl$getUserPublicKey$slambda_0(this, userEmail, visitor, null));
|
|
30991
31027
|
};
|
|
@@ -31009,7 +31045,7 @@
|
|
|
31009
31045
|
var tmp = GlobalScope_instance;
|
|
31010
31046
|
return promise(tmp, VOID, VOID, LockOperationsResourceImpl$getUserPublicKeyByIdentity$slambda_0(this, identity, null));
|
|
31011
31047
|
};
|
|
31012
|
-
protoOf(LockOperationsResourceImpl).
|
|
31048
|
+
protoOf(LockOperationsResourceImpl).g7k = function (lockId, directAccessEndpoints) {
|
|
31013
31049
|
var tmp = GlobalScope_instance;
|
|
31014
31050
|
return promise(tmp, VOID, VOID, LockOperationsResourceImpl$unlockWithContext$slambda_0(this, lockId, directAccessEndpoints, null));
|
|
31015
31051
|
};
|
|
@@ -31058,8 +31094,8 @@
|
|
|
31058
31094
|
return promise(tmp, VOID, VOID, LockOperationsResourceImpl$getShareableLocks$slambda_0(this, null));
|
|
31059
31095
|
};
|
|
31060
31096
|
function PlatformResourceImpl$createApplication$slambda(this$0, $application, resultContinuation) {
|
|
31061
|
-
this.
|
|
31062
|
-
this.
|
|
31097
|
+
this.v88_1 = this$0;
|
|
31098
|
+
this.w88_1 = $application;
|
|
31063
31099
|
CoroutineImpl.call(this, resultContinuation);
|
|
31064
31100
|
}
|
|
31065
31101
|
protoOf(PlatformResourceImpl$createApplication$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -31080,7 +31116,7 @@
|
|
|
31080
31116
|
case 0:
|
|
31081
31117
|
this.e9_1 = 2;
|
|
31082
31118
|
this.d9_1 = 1;
|
|
31083
|
-
suspendResult = this.
|
|
31119
|
+
suspendResult = this.v88_1.l7c(this.w88_1, this);
|
|
31084
31120
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
31085
31121
|
return suspendResult;
|
|
31086
31122
|
}
|
|
@@ -31103,8 +31139,8 @@
|
|
|
31103
31139
|
while (true);
|
|
31104
31140
|
};
|
|
31105
31141
|
protoOf(PlatformResourceImpl$createApplication$slambda).m1k = function ($this$promise, completion) {
|
|
31106
|
-
var i = new PlatformResourceImpl$createApplication$slambda(this.
|
|
31107
|
-
i.
|
|
31142
|
+
var i = new PlatformResourceImpl$createApplication$slambda(this.v88_1, this.w88_1, completion);
|
|
31143
|
+
i.x88_1 = $this$promise;
|
|
31108
31144
|
return i;
|
|
31109
31145
|
};
|
|
31110
31146
|
function PlatformResourceImpl$createApplication$slambda_0(this$0, $application, resultContinuation) {
|
|
@@ -31116,17 +31152,17 @@
|
|
|
31116
31152
|
return l;
|
|
31117
31153
|
}
|
|
31118
31154
|
function PlatformResourceImpl$listApplications$slambda(this$0, resultContinuation) {
|
|
31119
|
-
this.
|
|
31155
|
+
this.g89_1 = this$0;
|
|
31120
31156
|
CoroutineImpl.call(this, resultContinuation);
|
|
31121
31157
|
}
|
|
31122
|
-
protoOf(PlatformResourceImpl$listApplications$slambda).
|
|
31158
|
+
protoOf(PlatformResourceImpl$listApplications$slambda).i89 = function ($this$promise, $completion) {
|
|
31123
31159
|
var tmp = this.m1k($this$promise, $completion);
|
|
31124
31160
|
tmp.f9_1 = Unit_instance;
|
|
31125
31161
|
tmp.g9_1 = null;
|
|
31126
31162
|
return tmp.l9();
|
|
31127
31163
|
};
|
|
31128
31164
|
protoOf(PlatformResourceImpl$listApplications$slambda).v9 = function (p1, $completion) {
|
|
31129
|
-
return this.
|
|
31165
|
+
return this.i89((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
31130
31166
|
};
|
|
31131
31167
|
protoOf(PlatformResourceImpl$listApplications$slambda).l9 = function () {
|
|
31132
31168
|
var suspendResult = this.f9_1;
|
|
@@ -31137,7 +31173,7 @@
|
|
|
31137
31173
|
case 0:
|
|
31138
31174
|
this.e9_1 = 2;
|
|
31139
31175
|
this.d9_1 = 1;
|
|
31140
|
-
suspendResult = this.
|
|
31176
|
+
suspendResult = this.g89_1.m7c(this);
|
|
31141
31177
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
31142
31178
|
return suspendResult;
|
|
31143
31179
|
}
|
|
@@ -31160,31 +31196,31 @@
|
|
|
31160
31196
|
while (true);
|
|
31161
31197
|
};
|
|
31162
31198
|
protoOf(PlatformResourceImpl$listApplications$slambda).m1k = function ($this$promise, completion) {
|
|
31163
|
-
var i = new PlatformResourceImpl$listApplications$slambda(this.
|
|
31164
|
-
i.
|
|
31199
|
+
var i = new PlatformResourceImpl$listApplications$slambda(this.g89_1, completion);
|
|
31200
|
+
i.h89_1 = $this$promise;
|
|
31165
31201
|
return i;
|
|
31166
31202
|
};
|
|
31167
31203
|
function PlatformResourceImpl$listApplications$slambda_0(this$0, resultContinuation) {
|
|
31168
31204
|
var i = new PlatformResourceImpl$listApplications$slambda(this$0, resultContinuation);
|
|
31169
31205
|
var l = function ($this$promise, $completion) {
|
|
31170
|
-
return i.
|
|
31206
|
+
return i.i89($this$promise, $completion);
|
|
31171
31207
|
};
|
|
31172
31208
|
l.$arity = 1;
|
|
31173
31209
|
return l;
|
|
31174
31210
|
}
|
|
31175
31211
|
function PlatformResourceImpl$getApplication$slambda(this$0, $applicationId, resultContinuation) {
|
|
31176
|
-
this.
|
|
31177
|
-
this.
|
|
31212
|
+
this.r89_1 = this$0;
|
|
31213
|
+
this.s89_1 = $applicationId;
|
|
31178
31214
|
CoroutineImpl.call(this, resultContinuation);
|
|
31179
31215
|
}
|
|
31180
|
-
protoOf(PlatformResourceImpl$getApplication$slambda).
|
|
31216
|
+
protoOf(PlatformResourceImpl$getApplication$slambda).u89 = function ($this$promise, $completion) {
|
|
31181
31217
|
var tmp = this.m1k($this$promise, $completion);
|
|
31182
31218
|
tmp.f9_1 = Unit_instance;
|
|
31183
31219
|
tmp.g9_1 = null;
|
|
31184
31220
|
return tmp.l9();
|
|
31185
31221
|
};
|
|
31186
31222
|
protoOf(PlatformResourceImpl$getApplication$slambda).v9 = function (p1, $completion) {
|
|
31187
|
-
return this.
|
|
31223
|
+
return this.u89((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
31188
31224
|
};
|
|
31189
31225
|
protoOf(PlatformResourceImpl$getApplication$slambda).l9 = function () {
|
|
31190
31226
|
var suspendResult = this.f9_1;
|
|
@@ -31195,7 +31231,7 @@
|
|
|
31195
31231
|
case 0:
|
|
31196
31232
|
this.e9_1 = 2;
|
|
31197
31233
|
this.d9_1 = 1;
|
|
31198
|
-
suspendResult = this.
|
|
31234
|
+
suspendResult = this.r89_1.n7c(this.s89_1, this);
|
|
31199
31235
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
31200
31236
|
return suspendResult;
|
|
31201
31237
|
}
|
|
@@ -31218,22 +31254,22 @@
|
|
|
31218
31254
|
while (true);
|
|
31219
31255
|
};
|
|
31220
31256
|
protoOf(PlatformResourceImpl$getApplication$slambda).m1k = function ($this$promise, completion) {
|
|
31221
|
-
var i = new PlatformResourceImpl$getApplication$slambda(this.
|
|
31222
|
-
i.
|
|
31257
|
+
var i = new PlatformResourceImpl$getApplication$slambda(this.r89_1, this.s89_1, completion);
|
|
31258
|
+
i.t89_1 = $this$promise;
|
|
31223
31259
|
return i;
|
|
31224
31260
|
};
|
|
31225
31261
|
function PlatformResourceImpl$getApplication$slambda_0(this$0, $applicationId, resultContinuation) {
|
|
31226
31262
|
var i = new PlatformResourceImpl$getApplication$slambda(this$0, $applicationId, resultContinuation);
|
|
31227
31263
|
var l = function ($this$promise, $completion) {
|
|
31228
|
-
return i.
|
|
31264
|
+
return i.u89($this$promise, $completion);
|
|
31229
31265
|
};
|
|
31230
31266
|
l.$arity = 1;
|
|
31231
31267
|
return l;
|
|
31232
31268
|
}
|
|
31233
31269
|
function PlatformResourceImpl$updateApplicationName$slambda(this$0, $applicationId, $name, resultContinuation) {
|
|
31234
|
-
this.
|
|
31235
|
-
this.
|
|
31236
|
-
this.
|
|
31270
|
+
this.d8a_1 = this$0;
|
|
31271
|
+
this.e8a_1 = $applicationId;
|
|
31272
|
+
this.f8a_1 = $name;
|
|
31237
31273
|
CoroutineImpl.call(this, resultContinuation);
|
|
31238
31274
|
}
|
|
31239
31275
|
protoOf(PlatformResourceImpl$updateApplicationName$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -31254,7 +31290,7 @@
|
|
|
31254
31290
|
case 0:
|
|
31255
31291
|
this.e9_1 = 2;
|
|
31256
31292
|
this.d9_1 = 1;
|
|
31257
|
-
suspendResult = this.
|
|
31293
|
+
suspendResult = this.d8a_1.o7c(this.e8a_1, this.f8a_1, this);
|
|
31258
31294
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
31259
31295
|
return suspendResult;
|
|
31260
31296
|
}
|
|
@@ -31277,8 +31313,8 @@
|
|
|
31277
31313
|
while (true);
|
|
31278
31314
|
};
|
|
31279
31315
|
protoOf(PlatformResourceImpl$updateApplicationName$slambda).m1k = function ($this$promise, completion) {
|
|
31280
|
-
var i = new PlatformResourceImpl$updateApplicationName$slambda(this.
|
|
31281
|
-
i.
|
|
31316
|
+
var i = new PlatformResourceImpl$updateApplicationName$slambda(this.d8a_1, this.e8a_1, this.f8a_1, completion);
|
|
31317
|
+
i.g8a_1 = $this$promise;
|
|
31282
31318
|
return i;
|
|
31283
31319
|
};
|
|
31284
31320
|
function PlatformResourceImpl$updateApplicationName$slambda_0(this$0, $applicationId, $name, resultContinuation) {
|
|
@@ -31290,9 +31326,9 @@
|
|
|
31290
31326
|
return l;
|
|
31291
31327
|
}
|
|
31292
31328
|
function PlatformResourceImpl$updateApplicationCompanyName$slambda(this$0, $applicationId, $companyName, resultContinuation) {
|
|
31293
|
-
this.
|
|
31294
|
-
this.
|
|
31295
|
-
this.
|
|
31329
|
+
this.p8a_1 = this$0;
|
|
31330
|
+
this.q8a_1 = $applicationId;
|
|
31331
|
+
this.r8a_1 = $companyName;
|
|
31296
31332
|
CoroutineImpl.call(this, resultContinuation);
|
|
31297
31333
|
}
|
|
31298
31334
|
protoOf(PlatformResourceImpl$updateApplicationCompanyName$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -31313,7 +31349,7 @@
|
|
|
31313
31349
|
case 0:
|
|
31314
31350
|
this.e9_1 = 2;
|
|
31315
31351
|
this.d9_1 = 1;
|
|
31316
|
-
suspendResult = this.
|
|
31352
|
+
suspendResult = this.p8a_1.p7c(this.q8a_1, this.r8a_1, this);
|
|
31317
31353
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
31318
31354
|
return suspendResult;
|
|
31319
31355
|
}
|
|
@@ -31336,8 +31372,8 @@
|
|
|
31336
31372
|
while (true);
|
|
31337
31373
|
};
|
|
31338
31374
|
protoOf(PlatformResourceImpl$updateApplicationCompanyName$slambda).m1k = function ($this$promise, completion) {
|
|
31339
|
-
var i = new PlatformResourceImpl$updateApplicationCompanyName$slambda(this.
|
|
31340
|
-
i.
|
|
31375
|
+
var i = new PlatformResourceImpl$updateApplicationCompanyName$slambda(this.p8a_1, this.q8a_1, this.r8a_1, completion);
|
|
31376
|
+
i.s8a_1 = $this$promise;
|
|
31341
31377
|
return i;
|
|
31342
31378
|
};
|
|
31343
31379
|
function PlatformResourceImpl$updateApplicationCompanyName$slambda_0(this$0, $applicationId, $companyName, resultContinuation) {
|
|
@@ -31349,9 +31385,9 @@
|
|
|
31349
31385
|
return l;
|
|
31350
31386
|
}
|
|
31351
31387
|
function PlatformResourceImpl$updateApplicationMailingAddress$slambda(this$0, $applicationId, $mailingAddress, resultContinuation) {
|
|
31352
|
-
this.
|
|
31353
|
-
this.
|
|
31354
|
-
this.
|
|
31388
|
+
this.b8b_1 = this$0;
|
|
31389
|
+
this.c8b_1 = $applicationId;
|
|
31390
|
+
this.d8b_1 = $mailingAddress;
|
|
31355
31391
|
CoroutineImpl.call(this, resultContinuation);
|
|
31356
31392
|
}
|
|
31357
31393
|
protoOf(PlatformResourceImpl$updateApplicationMailingAddress$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -31372,7 +31408,7 @@
|
|
|
31372
31408
|
case 0:
|
|
31373
31409
|
this.e9_1 = 2;
|
|
31374
31410
|
this.d9_1 = 1;
|
|
31375
|
-
suspendResult = this.
|
|
31411
|
+
suspendResult = this.b8b_1.q7c(this.c8b_1, this.d8b_1, this);
|
|
31376
31412
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
31377
31413
|
return suspendResult;
|
|
31378
31414
|
}
|
|
@@ -31395,8 +31431,8 @@
|
|
|
31395
31431
|
while (true);
|
|
31396
31432
|
};
|
|
31397
31433
|
protoOf(PlatformResourceImpl$updateApplicationMailingAddress$slambda).m1k = function ($this$promise, completion) {
|
|
31398
|
-
var i = new PlatformResourceImpl$updateApplicationMailingAddress$slambda(this.
|
|
31399
|
-
i.
|
|
31434
|
+
var i = new PlatformResourceImpl$updateApplicationMailingAddress$slambda(this.b8b_1, this.c8b_1, this.d8b_1, completion);
|
|
31435
|
+
i.e8b_1 = $this$promise;
|
|
31400
31436
|
return i;
|
|
31401
31437
|
};
|
|
31402
31438
|
function PlatformResourceImpl$updateApplicationMailingAddress$slambda_0(this$0, $applicationId, $mailingAddress, resultContinuation) {
|
|
@@ -31408,9 +31444,9 @@
|
|
|
31408
31444
|
return l;
|
|
31409
31445
|
}
|
|
31410
31446
|
function PlatformResourceImpl$updateApplicationPrivacyPolicy$slambda(this$0, $applicationId, $privacyPolicy, resultContinuation) {
|
|
31411
|
-
this.
|
|
31412
|
-
this.
|
|
31413
|
-
this.
|
|
31447
|
+
this.n8b_1 = this$0;
|
|
31448
|
+
this.o8b_1 = $applicationId;
|
|
31449
|
+
this.p8b_1 = $privacyPolicy;
|
|
31414
31450
|
CoroutineImpl.call(this, resultContinuation);
|
|
31415
31451
|
}
|
|
31416
31452
|
protoOf(PlatformResourceImpl$updateApplicationPrivacyPolicy$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -31431,7 +31467,7 @@
|
|
|
31431
31467
|
case 0:
|
|
31432
31468
|
this.e9_1 = 2;
|
|
31433
31469
|
this.d9_1 = 1;
|
|
31434
|
-
suspendResult = this.
|
|
31470
|
+
suspendResult = this.n8b_1.r7c(this.o8b_1, this.p8b_1, this);
|
|
31435
31471
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
31436
31472
|
return suspendResult;
|
|
31437
31473
|
}
|
|
@@ -31454,8 +31490,8 @@
|
|
|
31454
31490
|
while (true);
|
|
31455
31491
|
};
|
|
31456
31492
|
protoOf(PlatformResourceImpl$updateApplicationPrivacyPolicy$slambda).m1k = function ($this$promise, completion) {
|
|
31457
|
-
var i = new PlatformResourceImpl$updateApplicationPrivacyPolicy$slambda(this.
|
|
31458
|
-
i.
|
|
31493
|
+
var i = new PlatformResourceImpl$updateApplicationPrivacyPolicy$slambda(this.n8b_1, this.o8b_1, this.p8b_1, completion);
|
|
31494
|
+
i.q8b_1 = $this$promise;
|
|
31459
31495
|
return i;
|
|
31460
31496
|
};
|
|
31461
31497
|
function PlatformResourceImpl$updateApplicationPrivacyPolicy$slambda_0(this$0, $applicationId, $privacyPolicy, resultContinuation) {
|
|
@@ -31467,9 +31503,9 @@
|
|
|
31467
31503
|
return l;
|
|
31468
31504
|
}
|
|
31469
31505
|
function PlatformResourceImpl$updateApplicationSupportContact$slambda(this$0, $applicationId, $supportContact, resultContinuation) {
|
|
31470
|
-
this.
|
|
31471
|
-
this.
|
|
31472
|
-
this.
|
|
31506
|
+
this.z8b_1 = this$0;
|
|
31507
|
+
this.a8c_1 = $applicationId;
|
|
31508
|
+
this.b8c_1 = $supportContact;
|
|
31473
31509
|
CoroutineImpl.call(this, resultContinuation);
|
|
31474
31510
|
}
|
|
31475
31511
|
protoOf(PlatformResourceImpl$updateApplicationSupportContact$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -31490,7 +31526,7 @@
|
|
|
31490
31526
|
case 0:
|
|
31491
31527
|
this.e9_1 = 2;
|
|
31492
31528
|
this.d9_1 = 1;
|
|
31493
|
-
suspendResult = this.
|
|
31529
|
+
suspendResult = this.z8b_1.s7c(this.a8c_1, this.b8c_1, this);
|
|
31494
31530
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
31495
31531
|
return suspendResult;
|
|
31496
31532
|
}
|
|
@@ -31513,8 +31549,8 @@
|
|
|
31513
31549
|
while (true);
|
|
31514
31550
|
};
|
|
31515
31551
|
protoOf(PlatformResourceImpl$updateApplicationSupportContact$slambda).m1k = function ($this$promise, completion) {
|
|
31516
|
-
var i = new PlatformResourceImpl$updateApplicationSupportContact$slambda(this.
|
|
31517
|
-
i.
|
|
31552
|
+
var i = new PlatformResourceImpl$updateApplicationSupportContact$slambda(this.z8b_1, this.a8c_1, this.b8c_1, completion);
|
|
31553
|
+
i.c8c_1 = $this$promise;
|
|
31518
31554
|
return i;
|
|
31519
31555
|
};
|
|
31520
31556
|
function PlatformResourceImpl$updateApplicationSupportContact$slambda_0(this$0, $applicationId, $supportContact, resultContinuation) {
|
|
@@ -31526,9 +31562,9 @@
|
|
|
31526
31562
|
return l;
|
|
31527
31563
|
}
|
|
31528
31564
|
function PlatformResourceImpl$updateApplicationAppLink$slambda(this$0, $applicationId, $appLink, resultContinuation) {
|
|
31529
|
-
this.
|
|
31530
|
-
this.
|
|
31531
|
-
this.
|
|
31565
|
+
this.l8c_1 = this$0;
|
|
31566
|
+
this.m8c_1 = $applicationId;
|
|
31567
|
+
this.n8c_1 = $appLink;
|
|
31532
31568
|
CoroutineImpl.call(this, resultContinuation);
|
|
31533
31569
|
}
|
|
31534
31570
|
protoOf(PlatformResourceImpl$updateApplicationAppLink$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -31549,7 +31585,7 @@
|
|
|
31549
31585
|
case 0:
|
|
31550
31586
|
this.e9_1 = 2;
|
|
31551
31587
|
this.d9_1 = 1;
|
|
31552
|
-
suspendResult = this.
|
|
31588
|
+
suspendResult = this.l8c_1.t7c(this.m8c_1, this.n8c_1, this);
|
|
31553
31589
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
31554
31590
|
return suspendResult;
|
|
31555
31591
|
}
|
|
@@ -31572,8 +31608,8 @@
|
|
|
31572
31608
|
while (true);
|
|
31573
31609
|
};
|
|
31574
31610
|
protoOf(PlatformResourceImpl$updateApplicationAppLink$slambda).m1k = function ($this$promise, completion) {
|
|
31575
|
-
var i = new PlatformResourceImpl$updateApplicationAppLink$slambda(this.
|
|
31576
|
-
i.
|
|
31611
|
+
var i = new PlatformResourceImpl$updateApplicationAppLink$slambda(this.l8c_1, this.m8c_1, this.n8c_1, completion);
|
|
31612
|
+
i.o8c_1 = $this$promise;
|
|
31577
31613
|
return i;
|
|
31578
31614
|
};
|
|
31579
31615
|
function PlatformResourceImpl$updateApplicationAppLink$slambda_0(this$0, $applicationId, $appLink, resultContinuation) {
|
|
@@ -31585,9 +31621,9 @@
|
|
|
31585
31621
|
return l;
|
|
31586
31622
|
}
|
|
31587
31623
|
function PlatformResourceImpl$updateApplicationEmailPreferences$slambda(this$0, $applicationId, $emailPreferences, resultContinuation) {
|
|
31588
|
-
this.
|
|
31589
|
-
this.
|
|
31590
|
-
this.
|
|
31624
|
+
this.x8c_1 = this$0;
|
|
31625
|
+
this.y8c_1 = $applicationId;
|
|
31626
|
+
this.z8c_1 = $emailPreferences;
|
|
31591
31627
|
CoroutineImpl.call(this, resultContinuation);
|
|
31592
31628
|
}
|
|
31593
31629
|
protoOf(PlatformResourceImpl$updateApplicationEmailPreferences$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -31608,7 +31644,7 @@
|
|
|
31608
31644
|
case 0:
|
|
31609
31645
|
this.e9_1 = 2;
|
|
31610
31646
|
this.d9_1 = 1;
|
|
31611
|
-
suspendResult = this.
|
|
31647
|
+
suspendResult = this.x8c_1.u7c(this.y8c_1, this.z8c_1, this);
|
|
31612
31648
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
31613
31649
|
return suspendResult;
|
|
31614
31650
|
}
|
|
@@ -31631,8 +31667,8 @@
|
|
|
31631
31667
|
while (true);
|
|
31632
31668
|
};
|
|
31633
31669
|
protoOf(PlatformResourceImpl$updateApplicationEmailPreferences$slambda).m1k = function ($this$promise, completion) {
|
|
31634
|
-
var i = new PlatformResourceImpl$updateApplicationEmailPreferences$slambda(this.
|
|
31635
|
-
i.
|
|
31670
|
+
var i = new PlatformResourceImpl$updateApplicationEmailPreferences$slambda(this.x8c_1, this.y8c_1, this.z8c_1, completion);
|
|
31671
|
+
i.a8d_1 = $this$promise;
|
|
31636
31672
|
return i;
|
|
31637
31673
|
};
|
|
31638
31674
|
function PlatformResourceImpl$updateApplicationEmailPreferences$slambda_0(this$0, $applicationId, $emailPreferences, resultContinuation) {
|
|
@@ -31644,9 +31680,9 @@
|
|
|
31644
31680
|
return l;
|
|
31645
31681
|
}
|
|
31646
31682
|
function PlatformResourceImpl$updateApplicationLogoUrl$slambda(this$0, $applicationId, $logoUrl, resultContinuation) {
|
|
31647
|
-
this.
|
|
31648
|
-
this.
|
|
31649
|
-
this.
|
|
31683
|
+
this.j8d_1 = this$0;
|
|
31684
|
+
this.k8d_1 = $applicationId;
|
|
31685
|
+
this.l8d_1 = $logoUrl;
|
|
31650
31686
|
CoroutineImpl.call(this, resultContinuation);
|
|
31651
31687
|
}
|
|
31652
31688
|
protoOf(PlatformResourceImpl$updateApplicationLogoUrl$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -31667,7 +31703,7 @@
|
|
|
31667
31703
|
case 0:
|
|
31668
31704
|
this.e9_1 = 2;
|
|
31669
31705
|
this.d9_1 = 1;
|
|
31670
|
-
suspendResult = this.
|
|
31706
|
+
suspendResult = this.j8d_1.v7c(this.k8d_1, this.l8d_1, this);
|
|
31671
31707
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
31672
31708
|
return suspendResult;
|
|
31673
31709
|
}
|
|
@@ -31690,8 +31726,8 @@
|
|
|
31690
31726
|
while (true);
|
|
31691
31727
|
};
|
|
31692
31728
|
protoOf(PlatformResourceImpl$updateApplicationLogoUrl$slambda).m1k = function ($this$promise, completion) {
|
|
31693
|
-
var i = new PlatformResourceImpl$updateApplicationLogoUrl$slambda(this.
|
|
31694
|
-
i.
|
|
31729
|
+
var i = new PlatformResourceImpl$updateApplicationLogoUrl$slambda(this.j8d_1, this.k8d_1, this.l8d_1, completion);
|
|
31730
|
+
i.m8d_1 = $this$promise;
|
|
31695
31731
|
return i;
|
|
31696
31732
|
};
|
|
31697
31733
|
function PlatformResourceImpl$updateApplicationLogoUrl$slambda_0(this$0, $applicationId, $logoUrl, resultContinuation) {
|
|
@@ -31703,8 +31739,8 @@
|
|
|
31703
31739
|
return l;
|
|
31704
31740
|
}
|
|
31705
31741
|
function PlatformResourceImpl$deleteApplication$slambda(this$0, $applicationId, resultContinuation) {
|
|
31706
|
-
this.
|
|
31707
|
-
this.
|
|
31742
|
+
this.v8d_1 = this$0;
|
|
31743
|
+
this.w8d_1 = $applicationId;
|
|
31708
31744
|
CoroutineImpl.call(this, resultContinuation);
|
|
31709
31745
|
}
|
|
31710
31746
|
protoOf(PlatformResourceImpl$deleteApplication$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -31725,7 +31761,7 @@
|
|
|
31725
31761
|
case 0:
|
|
31726
31762
|
this.e9_1 = 2;
|
|
31727
31763
|
this.d9_1 = 1;
|
|
31728
|
-
suspendResult = this.
|
|
31764
|
+
suspendResult = this.v8d_1.w7c(this.w8d_1, this);
|
|
31729
31765
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
31730
31766
|
return suspendResult;
|
|
31731
31767
|
}
|
|
@@ -31748,8 +31784,8 @@
|
|
|
31748
31784
|
while (true);
|
|
31749
31785
|
};
|
|
31750
31786
|
protoOf(PlatformResourceImpl$deleteApplication$slambda).m1k = function ($this$promise, completion) {
|
|
31751
|
-
var i = new PlatformResourceImpl$deleteApplication$slambda(this.
|
|
31752
|
-
i.
|
|
31787
|
+
var i = new PlatformResourceImpl$deleteApplication$slambda(this.v8d_1, this.w8d_1, completion);
|
|
31788
|
+
i.x8d_1 = $this$promise;
|
|
31753
31789
|
return i;
|
|
31754
31790
|
};
|
|
31755
31791
|
function PlatformResourceImpl$deleteApplication$slambda_0(this$0, $applicationId, resultContinuation) {
|
|
@@ -31761,19 +31797,19 @@
|
|
|
31761
31797
|
return l;
|
|
31762
31798
|
}
|
|
31763
31799
|
function PlatformResourceImpl$getLogoUploadUrl$slambda(this$0, $applicationId, $contentType, resultContinuation) {
|
|
31764
|
-
this.
|
|
31765
|
-
this.
|
|
31766
|
-
this.
|
|
31800
|
+
this.g8e_1 = this$0;
|
|
31801
|
+
this.h8e_1 = $applicationId;
|
|
31802
|
+
this.i8e_1 = $contentType;
|
|
31767
31803
|
CoroutineImpl.call(this, resultContinuation);
|
|
31768
31804
|
}
|
|
31769
|
-
protoOf(PlatformResourceImpl$getLogoUploadUrl$slambda).
|
|
31805
|
+
protoOf(PlatformResourceImpl$getLogoUploadUrl$slambda).k8e = function ($this$promise, $completion) {
|
|
31770
31806
|
var tmp = this.m1k($this$promise, $completion);
|
|
31771
31807
|
tmp.f9_1 = Unit_instance;
|
|
31772
31808
|
tmp.g9_1 = null;
|
|
31773
31809
|
return tmp.l9();
|
|
31774
31810
|
};
|
|
31775
31811
|
protoOf(PlatformResourceImpl$getLogoUploadUrl$slambda).v9 = function (p1, $completion) {
|
|
31776
|
-
return this.
|
|
31812
|
+
return this.k8e((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
31777
31813
|
};
|
|
31778
31814
|
protoOf(PlatformResourceImpl$getLogoUploadUrl$slambda).l9 = function () {
|
|
31779
31815
|
var suspendResult = this.f9_1;
|
|
@@ -31784,7 +31820,7 @@
|
|
|
31784
31820
|
case 0:
|
|
31785
31821
|
this.e9_1 = 2;
|
|
31786
31822
|
this.d9_1 = 1;
|
|
31787
|
-
suspendResult = this.
|
|
31823
|
+
suspendResult = this.g8e_1.x7c(this.h8e_1, this.i8e_1, this);
|
|
31788
31824
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
31789
31825
|
return suspendResult;
|
|
31790
31826
|
}
|
|
@@ -31807,22 +31843,22 @@
|
|
|
31807
31843
|
while (true);
|
|
31808
31844
|
};
|
|
31809
31845
|
protoOf(PlatformResourceImpl$getLogoUploadUrl$slambda).m1k = function ($this$promise, completion) {
|
|
31810
|
-
var i = new PlatformResourceImpl$getLogoUploadUrl$slambda(this.
|
|
31811
|
-
i.
|
|
31846
|
+
var i = new PlatformResourceImpl$getLogoUploadUrl$slambda(this.g8e_1, this.h8e_1, this.i8e_1, completion);
|
|
31847
|
+
i.j8e_1 = $this$promise;
|
|
31812
31848
|
return i;
|
|
31813
31849
|
};
|
|
31814
31850
|
function PlatformResourceImpl$getLogoUploadUrl$slambda_0(this$0, $applicationId, $contentType, resultContinuation) {
|
|
31815
31851
|
var i = new PlatformResourceImpl$getLogoUploadUrl$slambda(this$0, $applicationId, $contentType, resultContinuation);
|
|
31816
31852
|
var l = function ($this$promise, $completion) {
|
|
31817
|
-
return i.
|
|
31853
|
+
return i.k8e($this$promise, $completion);
|
|
31818
31854
|
};
|
|
31819
31855
|
l.$arity = 1;
|
|
31820
31856
|
return l;
|
|
31821
31857
|
}
|
|
31822
31858
|
function PlatformResourceImpl$addAuthKey$slambda(this$0, $applicationId, $key, resultContinuation) {
|
|
31823
|
-
this.
|
|
31824
|
-
this.
|
|
31825
|
-
this.
|
|
31859
|
+
this.t8e_1 = this$0;
|
|
31860
|
+
this.u8e_1 = $applicationId;
|
|
31861
|
+
this.v8e_1 = $key;
|
|
31826
31862
|
CoroutineImpl.call(this, resultContinuation);
|
|
31827
31863
|
}
|
|
31828
31864
|
protoOf(PlatformResourceImpl$addAuthKey$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -31843,7 +31879,7 @@
|
|
|
31843
31879
|
case 0:
|
|
31844
31880
|
this.e9_1 = 2;
|
|
31845
31881
|
this.d9_1 = 1;
|
|
31846
|
-
suspendResult = this.
|
|
31882
|
+
suspendResult = this.t8e_1.y7c(this.u8e_1, this.v8e_1, this);
|
|
31847
31883
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
31848
31884
|
return suspendResult;
|
|
31849
31885
|
}
|
|
@@ -31866,8 +31902,8 @@
|
|
|
31866
31902
|
while (true);
|
|
31867
31903
|
};
|
|
31868
31904
|
protoOf(PlatformResourceImpl$addAuthKey$slambda).m1k = function ($this$promise, completion) {
|
|
31869
|
-
var i = new PlatformResourceImpl$addAuthKey$slambda(this.
|
|
31870
|
-
i.
|
|
31905
|
+
var i = new PlatformResourceImpl$addAuthKey$slambda(this.t8e_1, this.u8e_1, this.v8e_1, completion);
|
|
31906
|
+
i.w8e_1 = $this$promise;
|
|
31871
31907
|
return i;
|
|
31872
31908
|
};
|
|
31873
31909
|
function PlatformResourceImpl$addAuthKey$slambda_0(this$0, $applicationId, $key, resultContinuation) {
|
|
@@ -31879,9 +31915,9 @@
|
|
|
31879
31915
|
return l;
|
|
31880
31916
|
}
|
|
31881
31917
|
function PlatformResourceImpl$addAuthIssuer$slambda(this$0, $applicationId, $url, resultContinuation) {
|
|
31882
|
-
this.
|
|
31883
|
-
this.
|
|
31884
|
-
this.
|
|
31918
|
+
this.f8f_1 = this$0;
|
|
31919
|
+
this.g8f_1 = $applicationId;
|
|
31920
|
+
this.h8f_1 = $url;
|
|
31885
31921
|
CoroutineImpl.call(this, resultContinuation);
|
|
31886
31922
|
}
|
|
31887
31923
|
protoOf(PlatformResourceImpl$addAuthIssuer$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -31902,7 +31938,7 @@
|
|
|
31902
31938
|
case 0:
|
|
31903
31939
|
this.e9_1 = 2;
|
|
31904
31940
|
this.d9_1 = 1;
|
|
31905
|
-
suspendResult = this.
|
|
31941
|
+
suspendResult = this.f8f_1.z7c(this.g8f_1, this.h8f_1, this);
|
|
31906
31942
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
31907
31943
|
return suspendResult;
|
|
31908
31944
|
}
|
|
@@ -31925,8 +31961,8 @@
|
|
|
31925
31961
|
while (true);
|
|
31926
31962
|
};
|
|
31927
31963
|
protoOf(PlatformResourceImpl$addAuthIssuer$slambda).m1k = function ($this$promise, completion) {
|
|
31928
|
-
var i = new PlatformResourceImpl$addAuthIssuer$slambda(this.
|
|
31929
|
-
i.
|
|
31964
|
+
var i = new PlatformResourceImpl$addAuthIssuer$slambda(this.f8f_1, this.g8f_1, this.h8f_1, completion);
|
|
31965
|
+
i.i8f_1 = $this$promise;
|
|
31930
31966
|
return i;
|
|
31931
31967
|
};
|
|
31932
31968
|
function PlatformResourceImpl$addAuthIssuer$slambda_0(this$0, $applicationId, $url, resultContinuation) {
|
|
@@ -31938,9 +31974,9 @@
|
|
|
31938
31974
|
return l;
|
|
31939
31975
|
}
|
|
31940
31976
|
function PlatformResourceImpl$deleteAuthIssuer$slambda(this$0, $applicationId, $url, resultContinuation) {
|
|
31941
|
-
this.
|
|
31942
|
-
this.
|
|
31943
|
-
this.
|
|
31977
|
+
this.r8f_1 = this$0;
|
|
31978
|
+
this.s8f_1 = $applicationId;
|
|
31979
|
+
this.t8f_1 = $url;
|
|
31944
31980
|
CoroutineImpl.call(this, resultContinuation);
|
|
31945
31981
|
}
|
|
31946
31982
|
protoOf(PlatformResourceImpl$deleteAuthIssuer$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -31961,7 +31997,7 @@
|
|
|
31961
31997
|
case 0:
|
|
31962
31998
|
this.e9_1 = 2;
|
|
31963
31999
|
this.d9_1 = 1;
|
|
31964
|
-
suspendResult = this.
|
|
32000
|
+
suspendResult = this.r8f_1.a7d(this.s8f_1, this.t8f_1, this);
|
|
31965
32001
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
31966
32002
|
return suspendResult;
|
|
31967
32003
|
}
|
|
@@ -31984,8 +32020,8 @@
|
|
|
31984
32020
|
while (true);
|
|
31985
32021
|
};
|
|
31986
32022
|
protoOf(PlatformResourceImpl$deleteAuthIssuer$slambda).m1k = function ($this$promise, completion) {
|
|
31987
|
-
var i = new PlatformResourceImpl$deleteAuthIssuer$slambda(this.
|
|
31988
|
-
i.
|
|
32023
|
+
var i = new PlatformResourceImpl$deleteAuthIssuer$slambda(this.r8f_1, this.s8f_1, this.t8f_1, completion);
|
|
32024
|
+
i.u8f_1 = $this$promise;
|
|
31989
32025
|
return i;
|
|
31990
32026
|
};
|
|
31991
32027
|
function PlatformResourceImpl$deleteAuthIssuer$slambda_0(this$0, $applicationId, $url, resultContinuation) {
|
|
@@ -31997,9 +32033,9 @@
|
|
|
31997
32033
|
return l;
|
|
31998
32034
|
}
|
|
31999
32035
|
function PlatformResourceImpl$addCorsDomain$slambda(this$0, $applicationId, $url, resultContinuation) {
|
|
32000
|
-
this.
|
|
32001
|
-
this.
|
|
32002
|
-
this.
|
|
32036
|
+
this.d8g_1 = this$0;
|
|
32037
|
+
this.e8g_1 = $applicationId;
|
|
32038
|
+
this.f8g_1 = $url;
|
|
32003
32039
|
CoroutineImpl.call(this, resultContinuation);
|
|
32004
32040
|
}
|
|
32005
32041
|
protoOf(PlatformResourceImpl$addCorsDomain$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -32020,7 +32056,7 @@
|
|
|
32020
32056
|
case 0:
|
|
32021
32057
|
this.e9_1 = 2;
|
|
32022
32058
|
this.d9_1 = 1;
|
|
32023
|
-
suspendResult = this.
|
|
32059
|
+
suspendResult = this.d8g_1.b7d(this.e8g_1, this.f8g_1, this);
|
|
32024
32060
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
32025
32061
|
return suspendResult;
|
|
32026
32062
|
}
|
|
@@ -32043,8 +32079,8 @@
|
|
|
32043
32079
|
while (true);
|
|
32044
32080
|
};
|
|
32045
32081
|
protoOf(PlatformResourceImpl$addCorsDomain$slambda).m1k = function ($this$promise, completion) {
|
|
32046
|
-
var i = new PlatformResourceImpl$addCorsDomain$slambda(this.
|
|
32047
|
-
i.
|
|
32082
|
+
var i = new PlatformResourceImpl$addCorsDomain$slambda(this.d8g_1, this.e8g_1, this.f8g_1, completion);
|
|
32083
|
+
i.g8g_1 = $this$promise;
|
|
32048
32084
|
return i;
|
|
32049
32085
|
};
|
|
32050
32086
|
function PlatformResourceImpl$addCorsDomain$slambda_0(this$0, $applicationId, $url, resultContinuation) {
|
|
@@ -32056,9 +32092,9 @@
|
|
|
32056
32092
|
return l;
|
|
32057
32093
|
}
|
|
32058
32094
|
function PlatformResourceImpl$removeCorsDomain$slambda(this$0, $applicationId, $url, resultContinuation) {
|
|
32059
|
-
this.
|
|
32060
|
-
this.
|
|
32061
|
-
this.
|
|
32095
|
+
this.p8g_1 = this$0;
|
|
32096
|
+
this.q8g_1 = $applicationId;
|
|
32097
|
+
this.r8g_1 = $url;
|
|
32062
32098
|
CoroutineImpl.call(this, resultContinuation);
|
|
32063
32099
|
}
|
|
32064
32100
|
protoOf(PlatformResourceImpl$removeCorsDomain$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -32079,7 +32115,7 @@
|
|
|
32079
32115
|
case 0:
|
|
32080
32116
|
this.e9_1 = 2;
|
|
32081
32117
|
this.d9_1 = 1;
|
|
32082
|
-
suspendResult = this.
|
|
32118
|
+
suspendResult = this.p8g_1.c7d(this.q8g_1, this.r8g_1, this);
|
|
32083
32119
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
32084
32120
|
return suspendResult;
|
|
32085
32121
|
}
|
|
@@ -32102,8 +32138,8 @@
|
|
|
32102
32138
|
while (true);
|
|
32103
32139
|
};
|
|
32104
32140
|
protoOf(PlatformResourceImpl$removeCorsDomain$slambda).m1k = function ($this$promise, completion) {
|
|
32105
|
-
var i = new PlatformResourceImpl$removeCorsDomain$slambda(this.
|
|
32106
|
-
i.
|
|
32141
|
+
var i = new PlatformResourceImpl$removeCorsDomain$slambda(this.p8g_1, this.q8g_1, this.r8g_1, completion);
|
|
32142
|
+
i.s8g_1 = $this$promise;
|
|
32107
32143
|
return i;
|
|
32108
32144
|
};
|
|
32109
32145
|
function PlatformResourceImpl$removeCorsDomain$slambda_0(this$0, $applicationId, $url, resultContinuation) {
|
|
@@ -32115,9 +32151,9 @@
|
|
|
32115
32151
|
return l;
|
|
32116
32152
|
}
|
|
32117
32153
|
function PlatformResourceImpl$addApplicationOwner$slambda(this$0, $applicationId, $userId, resultContinuation) {
|
|
32118
|
-
this.
|
|
32119
|
-
this.
|
|
32120
|
-
this.
|
|
32154
|
+
this.b8h_1 = this$0;
|
|
32155
|
+
this.c8h_1 = $applicationId;
|
|
32156
|
+
this.d8h_1 = $userId;
|
|
32121
32157
|
CoroutineImpl.call(this, resultContinuation);
|
|
32122
32158
|
}
|
|
32123
32159
|
protoOf(PlatformResourceImpl$addApplicationOwner$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -32138,7 +32174,7 @@
|
|
|
32138
32174
|
case 0:
|
|
32139
32175
|
this.e9_1 = 2;
|
|
32140
32176
|
this.d9_1 = 1;
|
|
32141
|
-
suspendResult = this.
|
|
32177
|
+
suspendResult = this.b8h_1.d7d(this.c8h_1, this.d8h_1, this);
|
|
32142
32178
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
32143
32179
|
return suspendResult;
|
|
32144
32180
|
}
|
|
@@ -32161,8 +32197,8 @@
|
|
|
32161
32197
|
while (true);
|
|
32162
32198
|
};
|
|
32163
32199
|
protoOf(PlatformResourceImpl$addApplicationOwner$slambda).m1k = function ($this$promise, completion) {
|
|
32164
|
-
var i = new PlatformResourceImpl$addApplicationOwner$slambda(this.
|
|
32165
|
-
i.
|
|
32200
|
+
var i = new PlatformResourceImpl$addApplicationOwner$slambda(this.b8h_1, this.c8h_1, this.d8h_1, completion);
|
|
32201
|
+
i.e8h_1 = $this$promise;
|
|
32166
32202
|
return i;
|
|
32167
32203
|
};
|
|
32168
32204
|
function PlatformResourceImpl$addApplicationOwner$slambda_0(this$0, $applicationId, $userId, resultContinuation) {
|
|
@@ -32174,9 +32210,9 @@
|
|
|
32174
32210
|
return l;
|
|
32175
32211
|
}
|
|
32176
32212
|
function PlatformResourceImpl$removeApplicationOwner$slambda(this$0, $applicationId, $userId, resultContinuation) {
|
|
32177
|
-
this.
|
|
32178
|
-
this.
|
|
32179
|
-
this.
|
|
32213
|
+
this.n8h_1 = this$0;
|
|
32214
|
+
this.o8h_1 = $applicationId;
|
|
32215
|
+
this.p8h_1 = $userId;
|
|
32180
32216
|
CoroutineImpl.call(this, resultContinuation);
|
|
32181
32217
|
}
|
|
32182
32218
|
protoOf(PlatformResourceImpl$removeApplicationOwner$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -32197,7 +32233,7 @@
|
|
|
32197
32233
|
case 0:
|
|
32198
32234
|
this.e9_1 = 2;
|
|
32199
32235
|
this.d9_1 = 1;
|
|
32200
|
-
suspendResult = this.
|
|
32236
|
+
suspendResult = this.n8h_1.e7d(this.o8h_1, this.p8h_1, this);
|
|
32201
32237
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
32202
32238
|
return suspendResult;
|
|
32203
32239
|
}
|
|
@@ -32220,8 +32256,8 @@
|
|
|
32220
32256
|
while (true);
|
|
32221
32257
|
};
|
|
32222
32258
|
protoOf(PlatformResourceImpl$removeApplicationOwner$slambda).m1k = function ($this$promise, completion) {
|
|
32223
|
-
var i = new PlatformResourceImpl$removeApplicationOwner$slambda(this.
|
|
32224
|
-
i.
|
|
32259
|
+
var i = new PlatformResourceImpl$removeApplicationOwner$slambda(this.n8h_1, this.o8h_1, this.p8h_1, completion);
|
|
32260
|
+
i.q8h_1 = $this$promise;
|
|
32225
32261
|
return i;
|
|
32226
32262
|
};
|
|
32227
32263
|
function PlatformResourceImpl$removeApplicationOwner$slambda_0(this$0, $applicationId, $userId, resultContinuation) {
|
|
@@ -32233,18 +32269,18 @@
|
|
|
32233
32269
|
return l;
|
|
32234
32270
|
}
|
|
32235
32271
|
function PlatformResourceImpl$getApplicationOwnersDetails$slambda(this$0, $applicationId, resultContinuation) {
|
|
32236
|
-
this.
|
|
32237
|
-
this.
|
|
32272
|
+
this.z8h_1 = this$0;
|
|
32273
|
+
this.a8i_1 = $applicationId;
|
|
32238
32274
|
CoroutineImpl.call(this, resultContinuation);
|
|
32239
32275
|
}
|
|
32240
|
-
protoOf(PlatformResourceImpl$getApplicationOwnersDetails$slambda).
|
|
32276
|
+
protoOf(PlatformResourceImpl$getApplicationOwnersDetails$slambda).c8i = function ($this$promise, $completion) {
|
|
32241
32277
|
var tmp = this.m1k($this$promise, $completion);
|
|
32242
32278
|
tmp.f9_1 = Unit_instance;
|
|
32243
32279
|
tmp.g9_1 = null;
|
|
32244
32280
|
return tmp.l9();
|
|
32245
32281
|
};
|
|
32246
32282
|
protoOf(PlatformResourceImpl$getApplicationOwnersDetails$slambda).v9 = function (p1, $completion) {
|
|
32247
|
-
return this.
|
|
32283
|
+
return this.c8i((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
32248
32284
|
};
|
|
32249
32285
|
protoOf(PlatformResourceImpl$getApplicationOwnersDetails$slambda).l9 = function () {
|
|
32250
32286
|
var suspendResult = this.f9_1;
|
|
@@ -32255,7 +32291,7 @@
|
|
|
32255
32291
|
case 0:
|
|
32256
32292
|
this.e9_1 = 2;
|
|
32257
32293
|
this.d9_1 = 1;
|
|
32258
|
-
suspendResult = this.
|
|
32294
|
+
suspendResult = this.z8h_1.f7d(this.a8i_1, this);
|
|
32259
32295
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
32260
32296
|
return suspendResult;
|
|
32261
32297
|
}
|
|
@@ -32278,14 +32314,14 @@
|
|
|
32278
32314
|
while (true);
|
|
32279
32315
|
};
|
|
32280
32316
|
protoOf(PlatformResourceImpl$getApplicationOwnersDetails$slambda).m1k = function ($this$promise, completion) {
|
|
32281
|
-
var i = new PlatformResourceImpl$getApplicationOwnersDetails$slambda(this.
|
|
32282
|
-
i.
|
|
32317
|
+
var i = new PlatformResourceImpl$getApplicationOwnersDetails$slambda(this.z8h_1, this.a8i_1, completion);
|
|
32318
|
+
i.b8i_1 = $this$promise;
|
|
32283
32319
|
return i;
|
|
32284
32320
|
};
|
|
32285
32321
|
function PlatformResourceImpl$getApplicationOwnersDetails$slambda_0(this$0, $applicationId, resultContinuation) {
|
|
32286
32322
|
var i = new PlatformResourceImpl$getApplicationOwnersDetails$slambda(this$0, $applicationId, resultContinuation);
|
|
32287
32323
|
var l = function ($this$promise, $completion) {
|
|
32288
|
-
return i.
|
|
32324
|
+
return i.c8i($this$promise, $completion);
|
|
32289
32325
|
};
|
|
32290
32326
|
l.$arity = 1;
|
|
32291
32327
|
return l;
|
|
@@ -32378,17 +32414,17 @@
|
|
|
32378
32414
|
return promise(tmp, VOID, VOID, PlatformResourceImpl$getApplicationOwnersDetails$slambda_0(this, applicationId, null));
|
|
32379
32415
|
};
|
|
32380
32416
|
function SitesResourceImpl$listSites$slambda(this$0, resultContinuation) {
|
|
32381
|
-
this.
|
|
32417
|
+
this.l8i_1 = this$0;
|
|
32382
32418
|
CoroutineImpl.call(this, resultContinuation);
|
|
32383
32419
|
}
|
|
32384
|
-
protoOf(SitesResourceImpl$listSites$slambda).
|
|
32420
|
+
protoOf(SitesResourceImpl$listSites$slambda).n8i = function ($this$promise, $completion) {
|
|
32385
32421
|
var tmp = this.m1k($this$promise, $completion);
|
|
32386
32422
|
tmp.f9_1 = Unit_instance;
|
|
32387
32423
|
tmp.g9_1 = null;
|
|
32388
32424
|
return tmp.l9();
|
|
32389
32425
|
};
|
|
32390
32426
|
protoOf(SitesResourceImpl$listSites$slambda).v9 = function (p1, $completion) {
|
|
32391
|
-
return this.
|
|
32427
|
+
return this.n8i((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
32392
32428
|
};
|
|
32393
32429
|
protoOf(SitesResourceImpl$listSites$slambda).l9 = function () {
|
|
32394
32430
|
var suspendResult = this.f9_1;
|
|
@@ -32399,7 +32435,7 @@
|
|
|
32399
32435
|
case 0:
|
|
32400
32436
|
this.e9_1 = 2;
|
|
32401
32437
|
this.d9_1 = 1;
|
|
32402
|
-
suspendResult = this.
|
|
32438
|
+
suspendResult = this.l8i_1.x7f(this);
|
|
32403
32439
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
32404
32440
|
return suspendResult;
|
|
32405
32441
|
}
|
|
@@ -32422,31 +32458,31 @@
|
|
|
32422
32458
|
while (true);
|
|
32423
32459
|
};
|
|
32424
32460
|
protoOf(SitesResourceImpl$listSites$slambda).m1k = function ($this$promise, completion) {
|
|
32425
|
-
var i = new SitesResourceImpl$listSites$slambda(this.
|
|
32426
|
-
i.
|
|
32461
|
+
var i = new SitesResourceImpl$listSites$slambda(this.l8i_1, completion);
|
|
32462
|
+
i.m8i_1 = $this$promise;
|
|
32427
32463
|
return i;
|
|
32428
32464
|
};
|
|
32429
32465
|
function SitesResourceImpl$listSites$slambda_0(this$0, resultContinuation) {
|
|
32430
32466
|
var i = new SitesResourceImpl$listSites$slambda(this$0, resultContinuation);
|
|
32431
32467
|
var l = function ($this$promise, $completion) {
|
|
32432
|
-
return i.
|
|
32468
|
+
return i.n8i($this$promise, $completion);
|
|
32433
32469
|
};
|
|
32434
32470
|
l.$arity = 1;
|
|
32435
32471
|
return l;
|
|
32436
32472
|
}
|
|
32437
32473
|
function SitesResourceImpl$getLocksForSite$slambda(this$0, $siteId, resultContinuation) {
|
|
32438
|
-
this.
|
|
32439
|
-
this.
|
|
32474
|
+
this.w8i_1 = this$0;
|
|
32475
|
+
this.x8i_1 = $siteId;
|
|
32440
32476
|
CoroutineImpl.call(this, resultContinuation);
|
|
32441
32477
|
}
|
|
32442
|
-
protoOf(SitesResourceImpl$getLocksForSite$slambda).
|
|
32478
|
+
protoOf(SitesResourceImpl$getLocksForSite$slambda).z8i = function ($this$promise, $completion) {
|
|
32443
32479
|
var tmp = this.m1k($this$promise, $completion);
|
|
32444
32480
|
tmp.f9_1 = Unit_instance;
|
|
32445
32481
|
tmp.g9_1 = null;
|
|
32446
32482
|
return tmp.l9();
|
|
32447
32483
|
};
|
|
32448
32484
|
protoOf(SitesResourceImpl$getLocksForSite$slambda).v9 = function (p1, $completion) {
|
|
32449
|
-
return this.
|
|
32485
|
+
return this.z8i((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
32450
32486
|
};
|
|
32451
32487
|
protoOf(SitesResourceImpl$getLocksForSite$slambda).l9 = function () {
|
|
32452
32488
|
var suspendResult = this.f9_1;
|
|
@@ -32457,7 +32493,7 @@
|
|
|
32457
32493
|
case 0:
|
|
32458
32494
|
this.e9_1 = 2;
|
|
32459
32495
|
this.d9_1 = 1;
|
|
32460
|
-
suspendResult = this.
|
|
32496
|
+
suspendResult = this.w8i_1.y7f(this.x8i_1, this);
|
|
32461
32497
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
32462
32498
|
return suspendResult;
|
|
32463
32499
|
}
|
|
@@ -32480,31 +32516,31 @@
|
|
|
32480
32516
|
while (true);
|
|
32481
32517
|
};
|
|
32482
32518
|
protoOf(SitesResourceImpl$getLocksForSite$slambda).m1k = function ($this$promise, completion) {
|
|
32483
|
-
var i = new SitesResourceImpl$getLocksForSite$slambda(this.
|
|
32484
|
-
i.
|
|
32519
|
+
var i = new SitesResourceImpl$getLocksForSite$slambda(this.w8i_1, this.x8i_1, completion);
|
|
32520
|
+
i.y8i_1 = $this$promise;
|
|
32485
32521
|
return i;
|
|
32486
32522
|
};
|
|
32487
32523
|
function SitesResourceImpl$getLocksForSite$slambda_0(this$0, $siteId, resultContinuation) {
|
|
32488
32524
|
var i = new SitesResourceImpl$getLocksForSite$slambda(this$0, $siteId, resultContinuation);
|
|
32489
32525
|
var l = function ($this$promise, $completion) {
|
|
32490
|
-
return i.
|
|
32526
|
+
return i.z8i($this$promise, $completion);
|
|
32491
32527
|
};
|
|
32492
32528
|
l.$arity = 1;
|
|
32493
32529
|
return l;
|
|
32494
32530
|
}
|
|
32495
32531
|
function SitesResourceImpl$getUsersForSite$slambda(this$0, $siteId, resultContinuation) {
|
|
32496
|
-
this.
|
|
32497
|
-
this.
|
|
32532
|
+
this.i8j_1 = this$0;
|
|
32533
|
+
this.j8j_1 = $siteId;
|
|
32498
32534
|
CoroutineImpl.call(this, resultContinuation);
|
|
32499
32535
|
}
|
|
32500
|
-
protoOf(SitesResourceImpl$getUsersForSite$slambda).
|
|
32536
|
+
protoOf(SitesResourceImpl$getUsersForSite$slambda).l8j = function ($this$promise, $completion) {
|
|
32501
32537
|
var tmp = this.m1k($this$promise, $completion);
|
|
32502
32538
|
tmp.f9_1 = Unit_instance;
|
|
32503
32539
|
tmp.g9_1 = null;
|
|
32504
32540
|
return tmp.l9();
|
|
32505
32541
|
};
|
|
32506
32542
|
protoOf(SitesResourceImpl$getUsersForSite$slambda).v9 = function (p1, $completion) {
|
|
32507
|
-
return this.
|
|
32543
|
+
return this.l8j((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
32508
32544
|
};
|
|
32509
32545
|
protoOf(SitesResourceImpl$getUsersForSite$slambda).l9 = function () {
|
|
32510
32546
|
var suspendResult = this.f9_1;
|
|
@@ -32515,7 +32551,7 @@
|
|
|
32515
32551
|
case 0:
|
|
32516
32552
|
this.e9_1 = 2;
|
|
32517
32553
|
this.d9_1 = 1;
|
|
32518
|
-
suspendResult = this.
|
|
32554
|
+
suspendResult = this.i8j_1.z7f(this.j8j_1, this);
|
|
32519
32555
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
32520
32556
|
return suspendResult;
|
|
32521
32557
|
}
|
|
@@ -32538,14 +32574,14 @@
|
|
|
32538
32574
|
while (true);
|
|
32539
32575
|
};
|
|
32540
32576
|
protoOf(SitesResourceImpl$getUsersForSite$slambda).m1k = function ($this$promise, completion) {
|
|
32541
|
-
var i = new SitesResourceImpl$getUsersForSite$slambda(this.
|
|
32542
|
-
i.
|
|
32577
|
+
var i = new SitesResourceImpl$getUsersForSite$slambda(this.i8j_1, this.j8j_1, completion);
|
|
32578
|
+
i.k8j_1 = $this$promise;
|
|
32543
32579
|
return i;
|
|
32544
32580
|
};
|
|
32545
32581
|
function SitesResourceImpl$getUsersForSite$slambda_0(this$0, $siteId, resultContinuation) {
|
|
32546
32582
|
var i = new SitesResourceImpl$getUsersForSite$slambda(this$0, $siteId, resultContinuation);
|
|
32547
32583
|
var l = function ($this$promise, $completion) {
|
|
32548
|
-
return i.
|
|
32584
|
+
return i.l8j($this$promise, $completion);
|
|
32549
32585
|
};
|
|
32550
32586
|
l.$arity = 1;
|
|
32551
32587
|
return l;
|
|
@@ -32566,18 +32602,18 @@
|
|
|
32566
32602
|
return promise(tmp, VOID, VOID, SitesResourceImpl$getUsersForSite$slambda_0(this, siteId, null));
|
|
32567
32603
|
};
|
|
32568
32604
|
function TilesResourceImpl$getLocksBelongingToTile$slambda(this$0, $tileId, resultContinuation) {
|
|
32569
|
-
this.
|
|
32570
|
-
this.
|
|
32605
|
+
this.u8j_1 = this$0;
|
|
32606
|
+
this.v8j_1 = $tileId;
|
|
32571
32607
|
CoroutineImpl.call(this, resultContinuation);
|
|
32572
32608
|
}
|
|
32573
|
-
protoOf(TilesResourceImpl$getLocksBelongingToTile$slambda).
|
|
32609
|
+
protoOf(TilesResourceImpl$getLocksBelongingToTile$slambda).x8j = function ($this$promise, $completion) {
|
|
32574
32610
|
var tmp = this.m1k($this$promise, $completion);
|
|
32575
32611
|
tmp.f9_1 = Unit_instance;
|
|
32576
32612
|
tmp.g9_1 = null;
|
|
32577
32613
|
return tmp.l9();
|
|
32578
32614
|
};
|
|
32579
32615
|
protoOf(TilesResourceImpl$getLocksBelongingToTile$slambda).v9 = function (p1, $completion) {
|
|
32580
|
-
return this.
|
|
32616
|
+
return this.x8j((!(p1 == null) ? isInterface(p1, CoroutineScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
32581
32617
|
};
|
|
32582
32618
|
protoOf(TilesResourceImpl$getLocksBelongingToTile$slambda).l9 = function () {
|
|
32583
32619
|
var suspendResult = this.f9_1;
|
|
@@ -32588,7 +32624,7 @@
|
|
|
32588
32624
|
case 0:
|
|
32589
32625
|
this.e9_1 = 2;
|
|
32590
32626
|
this.d9_1 = 1;
|
|
32591
|
-
suspendResult = this.
|
|
32627
|
+
suspendResult = this.u8j_1.w7h(this.v8j_1, this);
|
|
32592
32628
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
32593
32629
|
return suspendResult;
|
|
32594
32630
|
}
|
|
@@ -32611,23 +32647,23 @@
|
|
|
32611
32647
|
while (true);
|
|
32612
32648
|
};
|
|
32613
32649
|
protoOf(TilesResourceImpl$getLocksBelongingToTile$slambda).m1k = function ($this$promise, completion) {
|
|
32614
|
-
var i = new TilesResourceImpl$getLocksBelongingToTile$slambda(this.
|
|
32615
|
-
i.
|
|
32650
|
+
var i = new TilesResourceImpl$getLocksBelongingToTile$slambda(this.u8j_1, this.v8j_1, completion);
|
|
32651
|
+
i.w8j_1 = $this$promise;
|
|
32616
32652
|
return i;
|
|
32617
32653
|
};
|
|
32618
32654
|
function TilesResourceImpl$getLocksBelongingToTile$slambda_0(this$0, $tileId, resultContinuation) {
|
|
32619
32655
|
var i = new TilesResourceImpl$getLocksBelongingToTile$slambda(this$0, $tileId, resultContinuation);
|
|
32620
32656
|
var l = function ($this$promise, $completion) {
|
|
32621
|
-
return i.
|
|
32657
|
+
return i.x8j($this$promise, $completion);
|
|
32622
32658
|
};
|
|
32623
32659
|
l.$arity = 1;
|
|
32624
32660
|
return l;
|
|
32625
32661
|
}
|
|
32626
32662
|
function TilesResourceImpl$associateMultipleLocks$slambda(this$0, $tileId, $siteId, $lockIds, resultContinuation) {
|
|
32627
|
-
this.
|
|
32628
|
-
this.
|
|
32629
|
-
this.
|
|
32630
|
-
this.
|
|
32663
|
+
this.g8k_1 = this$0;
|
|
32664
|
+
this.h8k_1 = $tileId;
|
|
32665
|
+
this.i8k_1 = $siteId;
|
|
32666
|
+
this.j8k_1 = $lockIds;
|
|
32631
32667
|
CoroutineImpl.call(this, resultContinuation);
|
|
32632
32668
|
}
|
|
32633
32669
|
protoOf(TilesResourceImpl$associateMultipleLocks$slambda).l1k = function ($this$promise, $completion) {
|
|
@@ -32648,7 +32684,7 @@
|
|
|
32648
32684
|
case 0:
|
|
32649
32685
|
this.e9_1 = 2;
|
|
32650
32686
|
this.d9_1 = 1;
|
|
32651
|
-
suspendResult = this.
|
|
32687
|
+
suspendResult = this.g8k_1.x7h(this.h8k_1, this.i8k_1, this.j8k_1, this);
|
|
32652
32688
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
32653
32689
|
return suspendResult;
|
|
32654
32690
|
}
|
|
@@ -32671,8 +32707,8 @@
|
|
|
32671
32707
|
while (true);
|
|
32672
32708
|
};
|
|
32673
32709
|
protoOf(TilesResourceImpl$associateMultipleLocks$slambda).m1k = function ($this$promise, completion) {
|
|
32674
|
-
var i = new TilesResourceImpl$associateMultipleLocks$slambda(this.
|
|
32675
|
-
i.
|
|
32710
|
+
var i = new TilesResourceImpl$associateMultipleLocks$slambda(this.g8k_1, this.h8k_1, this.i8k_1, this.j8k_1, completion);
|
|
32711
|
+
i.k8k_1 = $this$promise;
|
|
32676
32712
|
return i;
|
|
32677
32713
|
};
|
|
32678
32714
|
function TilesResourceImpl$associateMultipleLocks$slambda_0(this$0, $tileId, $siteId, $lockIds, resultContinuation) {
|