Path: blob/master/src/packages/sync/editor/string/test/data.ts
1451 views
/*1* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45import { client_db } from "@cocalc/util/schema";67export function a_txt() {8const project_id = "ae1d6165-1310-4949-b266-e0448fdd065f";9const path = "a.txt";10const string_id = client_db.sha1(project_id, path);11const client_id = "72570709-2eb2-499f-a7d2-38978d8c7393";12return {13client_id,14project_id,15path,16string_id,17init_queries: {18syncstrings: [19{20snapshot_interval: 5,21project_id,22path,23users: [project_id, client_id],24string_id,25last_active: "2019-01-04T18:24:08.806Z",26init: { time: "2019-01-04T18:24:09.878Z", size: 0, error: "" },27doctype: '{"type":"string"}',28read_only: false,29save: { state: "done", error: "", hash: 0, time: 1546626249624 },30},31],32},33};34}353637