Compare commits

..

4 commits

Author SHA1 Message Date
James Long
97081d46c4 Fix reference to Timestamp; version 22.12.09 2022-12-08 17:38:26 -05:00
James Long
60f83b334e 22.12.08 2022-12-08 16:00:20 -05:00
James Long
340ac869ce Bump API to working version 2022-12-08 16:00:01 -05:00
Trevor Farlow
b2b6ba4921 Docker workflow: Drop major.minor tagging 2022-12-08 14:53:48 -05:00
3 changed files with 7 additions and 7 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "actual-sync", "name": "actual-sync",
"version": "22.12.03", "version": "22.12.09",
"license": "MIT", "license": "MIT",
"description": "actual syncing server", "description": "actual syncing server",
"main": "index.js", "main": "index.js",
@ -12,7 +12,7 @@
"verify": "yarn -s lint && yarn types" "verify": "yarn -s lint && yarn types"
}, },
"dependencies": { "dependencies": {
"@actual-app/api": "4.1.3", "@actual-app/api": "4.1.5",
"@actual-app/web": "22.12.3", "@actual-app/web": "22.12.3",
"bcrypt": "^5.0.1", "bcrypt": "^5.0.1",
"better-sqlite3": "^7.5.0", "better-sqlite3": "^7.5.0",

View file

@ -6,7 +6,7 @@ let { getPathForGroupFile } = require('./util/paths');
let actual = require('@actual-app/api'); let actual = require('@actual-app/api');
let merkle = actual.internal.merkle; let merkle = actual.internal.merkle;
let SyncPb = actual.internal.SyncProtoBuf; let SyncPb = actual.internal.SyncProtoBuf;
let Timestamp = actual.internal.timestamp.default; let Timestamp = actual.internal.timestamp.Timestamp;
function getGroupDb(groupId) { function getGroupDb(groupId) {
let path = getPathForGroupFile(groupId); let path = getPathForGroupFile(groupId);

View file

@ -2,10 +2,10 @@
# yarn lockfile v1 # yarn lockfile v1
"@actual-app/api@4.1.3": "@actual-app/api@4.1.5":
version "4.1.3" version "4.1.5"
resolved "https://registry.yarnpkg.com/@actual-app/api/-/api-4.1.3.tgz#8f2602f2d8a89c443e5d027be6fc896c492d6762" resolved "https://registry.yarnpkg.com/@actual-app/api/-/api-4.1.5.tgz#727f7e2233dd29204d2b7e244a671b3b88d0683a"
integrity sha512-0ANB9Ag5AMiRWrFpJRsIp2a3B7wwoF5kufWp0zos/tV3g4OgeqrUtEfvftyvYQq/qS3Q9RM3Wy37Wgvo+/3ERw== integrity sha512-rI4xqaHt9UNxovSPo8tukjluuESlxscMXUkImyYV4gYzAETsSFET3k0708Zw0EZsXCVanqAtfv+v84SNEBqn0A==
dependencies: dependencies:
better-sqlite3 "^7.5.0" better-sqlite3 "^7.5.0"
node-fetch "^1.6.3" node-fetch "^1.6.3"