@stamprally/server 0.21.0 → 0.22.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/README.md +1 -1
- package/dist/index.cjs +6 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +7 -3
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -1298,8 +1298,12 @@ var StampRallyServer = class {
|
|
|
1298
1298
|
);
|
|
1299
1299
|
const results = [];
|
|
1300
1300
|
const rejectedCheckIns = /* @__PURE__ */ new Set();
|
|
1301
|
-
const operations =
|
|
1302
|
-
|
|
1301
|
+
const operations = core.sortOperationsDeterministically(
|
|
1302
|
+
[...request.operations ?? []].map((operation) => ({
|
|
1303
|
+
operation,
|
|
1304
|
+
operationId: syncOperationId(operation, directRequest.userId),
|
|
1305
|
+
timestamp: operationTimestamp(operation)
|
|
1306
|
+
}))
|
|
1303
1307
|
).map(({ operation }) => operation);
|
|
1304
1308
|
for (const operation of operations) {
|
|
1305
1309
|
try {
|