@devtion/backend 0.0.0-e22d20d → 0.0.0-e312890
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.
|
@@ -2748,8 +2748,7 @@ const checkAndRemoveBlockingContributor = functions__namespace
|
|
|
2748
2748
|
if (timeoutExpirationDateInMsForBlockingContributor < currentServerTimestamp &&
|
|
2749
2749
|
(contributionStep === "DOWNLOADING" /* ParticipantContributionStep.DOWNLOADING */ ||
|
|
2750
2750
|
contributionStep === "COMPUTING" /* ParticipantContributionStep.COMPUTING */ ||
|
|
2751
|
-
contributionStep === "UPLOADING" /* ParticipantContributionStep.UPLOADING */
|
|
2752
|
-
contributionStep === "COMPLETED" /* ParticipantContributionStep.COMPLETED */))
|
|
2751
|
+
contributionStep === "UPLOADING" /* ParticipantContributionStep.UPLOADING */))
|
|
2753
2752
|
timeoutType = "BLOCKING_CONTRIBUTION" /* TimeoutType.BLOCKING_CONTRIBUTION */;
|
|
2754
2753
|
if (timeoutExpirationDateInMsForVerificationCloudFunction > 0 &&
|
|
2755
2754
|
timeoutExpirationDateInMsForVerificationCloudFunction < currentServerTimestamp &&
|
|
@@ -2725,8 +2725,7 @@ const checkAndRemoveBlockingContributor = functions
|
|
|
2725
2725
|
if (timeoutExpirationDateInMsForBlockingContributor < currentServerTimestamp &&
|
|
2726
2726
|
(contributionStep === "DOWNLOADING" /* ParticipantContributionStep.DOWNLOADING */ ||
|
|
2727
2727
|
contributionStep === "COMPUTING" /* ParticipantContributionStep.COMPUTING */ ||
|
|
2728
|
-
contributionStep === "UPLOADING" /* ParticipantContributionStep.UPLOADING */
|
|
2729
|
-
contributionStep === "COMPLETED" /* ParticipantContributionStep.COMPLETED */))
|
|
2728
|
+
contributionStep === "UPLOADING" /* ParticipantContributionStep.UPLOADING */))
|
|
2730
2729
|
timeoutType = "BLOCKING_CONTRIBUTION" /* TimeoutType.BLOCKING_CONTRIBUTION */;
|
|
2731
2730
|
if (timeoutExpirationDateInMsForVerificationCloudFunction > 0 &&
|
|
2732
2731
|
timeoutExpirationDateInMsForVerificationCloudFunction < currentServerTimestamp &&
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"timeout.d.ts","sourceRoot":"","sources":["../../../src/functions/timeout.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,SAAS,MAAM,oBAAoB,CAAA;AAuB/C;;;;;;;;;;;;;;;;;GAiBG;AACH,eAAO,MAAM,iCAAiC,
|
|
1
|
+
{"version":3,"file":"timeout.d.ts","sourceRoot":"","sources":["../../../src/functions/timeout.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,SAAS,MAAM,oBAAoB,CAAA;AAuB/C;;;;;;;;;;;;;;;;;GAiBG;AACH,eAAO,MAAM,iCAAiC,kCA6MxC,CAAA;AAEN;;;GAGG;AACH,eAAO,MAAM,wCAAwC,mDA0C/C,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devtion/backend",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-e312890",
|
|
4
4
|
"description": "MPC Phase 2 backend for Firebase services management",
|
|
5
5
|
"repository": "git@github.com:privacy-scaling-explorations/p0tion.git",
|
|
6
6
|
"homepage": "https://github.com/privacy-scaling-explorations/p0tion",
|
|
@@ -86,5 +86,5 @@
|
|
|
86
86
|
"publishConfig": {
|
|
87
87
|
"access": "public"
|
|
88
88
|
},
|
|
89
|
-
"gitHead": "
|
|
89
|
+
"gitHead": "523f29a0c484496e734ccd908c7bcd428ed90618"
|
|
90
90
|
}
|
package/src/functions/timeout.ts
CHANGED
|
@@ -144,8 +144,7 @@ export const checkAndRemoveBlockingContributor = functions
|
|
|
144
144
|
timeoutExpirationDateInMsForBlockingContributor < currentServerTimestamp &&
|
|
145
145
|
(contributionStep === ParticipantContributionStep.DOWNLOADING ||
|
|
146
146
|
contributionStep === ParticipantContributionStep.COMPUTING ||
|
|
147
|
-
contributionStep === ParticipantContributionStep.UPLOADING
|
|
148
|
-
contributionStep === ParticipantContributionStep.COMPLETED)
|
|
147
|
+
contributionStep === ParticipantContributionStep.UPLOADING)
|
|
149
148
|
)
|
|
150
149
|
timeoutType = TimeoutType.BLOCKING_CONTRIBUTION
|
|
151
150
|
|