@sync-in/server
Version:
The secure, open-source platform for file storage, sharing, collaboration, and sync
48 lines (47 loc) • 1.51 kB
JavaScript
/*
* Copyright (C) 2012-2025 Johan Legrand <johan.legrand@sync-in.com>
* This file is part of Sync-in | The open source file sync and share solution
* See the LICENSE file for licensing details
*/ "use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
function _export(target, all) {
for(var name in all)Object.defineProperty(target, name, {
enumerable: true,
get: Object.getOwnPropertyDescriptor(all, name).get
});
}
_export(exports, {
get APP_STORE_DIRNAME () {
return APP_STORE_DIRNAME;
},
get APP_STORE_MANIFEST_FILE () {
return APP_STORE_MANIFEST_FILE;
},
get APP_STORE_PLATFORM () {
return APP_STORE_PLATFORM;
},
get APP_STORE_REPOSITORY () {
return APP_STORE_REPOSITORY;
},
get APP_STORE_URL () {
return APP_STORE_URL;
}
});
const APP_STORE_URL = 'https://updates.sync-in.org';
const APP_STORE_DIRNAME = 'releases';
const APP_STORE_MANIFEST_FILE = 'latest.json';
var APP_STORE_REPOSITORY = /*#__PURE__*/ function(APP_STORE_REPOSITORY) {
APP_STORE_REPOSITORY["LOCAL"] = "local";
APP_STORE_REPOSITORY["PUBLIC"] = "public";
return APP_STORE_REPOSITORY;
}({});
var APP_STORE_PLATFORM = /*#__PURE__*/ function(APP_STORE_PLATFORM) {
APP_STORE_PLATFORM["WIN"] = "win";
APP_STORE_PLATFORM["MAC"] = "mac";
APP_STORE_PLATFORM["LINUX"] = "linux";
APP_STORE_PLATFORM["NODE"] = "node";
return APP_STORE_PLATFORM;
}({});
//# sourceMappingURL=store.js.map