├── .eslintrc.json ├── .github └── FUNDING.yml ├── .gitignore ├── .npmrc ├── .prettierrc.json ├── .stylelintrc.json ├── .travis.yml ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── LICENSE.md ├── README.md ├── config └── settings.default.json ├── dist ├── api.js ├── common │ ├── enums.js │ └── utils.js ├── config.js ├── db.js ├── docs │ ├── 114cd18b478088cff3e422700eeea537.woff2 │ ├── 4a6300dffff48f5dabd3a27b772d72eb.woff │ ├── 4ecc699baadc90c3a2acbd6c135f292f.woff2 │ ├── 53545bf0c95fb5bef17517d4ac17f983.woff2 │ ├── 5d2da57e78ccb220d139d8c0ef27a907.woff2 │ ├── 80e266aa14cb22f85c8e.png │ ├── 85b2f9813ec12e45cad12b26344db0eb.woff │ ├── 8b1204b2d4afe3341531c6a30ad9f59c.woff │ ├── 90c57a3f35f7e89ba0d57bb7d09fbf6f.svg │ ├── a4bca9febc2433c2f5f7aef68bc4e78e.woff2 │ ├── c36c06cf5b267471cea2a745dfd4759a.woff │ ├── cc9f106945de5cf13dcb5e54b5d2cec2.svg │ ├── d58264d95a88a19dca5b1cc58f877c07.woff │ ├── e69e9185150b62b34889665da401d0ca.woff │ ├── fd55075af28b340bce1ba9cf7f652bfd.woff2 │ ├── index.html │ ├── index.js │ ├── index.js.LICENSE.txt │ ├── index.js.map │ ├── styles.css │ └── styles.css.map ├── exception.js ├── location.js ├── models │ ├── bookmarks.model.js │ └── newSyncLogs.model.js ├── routers │ ├── api.router.js │ ├── bookmarks.router.js │ ├── docs.router.js │ └── info.router.js ├── server.js ├── services │ ├── api.service.js │ ├── bookmarks.service.js │ ├── info.service.js │ └── newSyncLogs.service.js └── uuid.js ├── jest.config.js ├── jestconfig.e2e.json ├── jestconfig.unit.json ├── package.json ├── src ├── api.ts ├── common │ ├── enums.ts │ ├── utils.spec.ts │ └── utils.ts ├── config.spec.ts ├── config.ts ├── db.spec.ts ├── db.ts ├── docs │ ├── images │ │ ├── clouds.svg │ │ ├── icon-128.png │ │ └── logo.svg │ ├── index.html │ ├── index.ts │ ├── mixins.scss │ ├── styles.scss │ └── variables.scss ├── exception.spec.ts ├── exception.ts ├── location.spec.ts ├── location.ts ├── models │ ├── bookmarks.model.spec.ts │ ├── bookmarks.model.ts │ ├── newSyncLogs.model.spec.ts │ └── newSyncLogs.model.ts ├── routers │ ├── api.router.spec.ts │ ├── api.router.ts │ ├── bookmarks.router.spec.ts │ ├── bookmarks.router.ts │ ├── docs.router.spec.ts │ ├── docs.router.ts │ ├── info.router.spec.ts │ └── info.router.ts ├── server.spec.ts ├── server.ts ├── services │ ├── api.service.spec.ts │ ├── api.service.ts │ ├── bookmarks.service.spec.ts │ ├── bookmarks.service.ts │ ├── info.service.spec.ts │ ├── info.service.ts │ ├── newSyncLogs.service.spec.ts │ └── newSyncLogs.service.ts ├── uuid.spec.ts └── uuid.ts ├── test └── e2e │ ├── bookmarks.spec.ts │ ├── docs.spec.ts │ ├── info.spec.ts │ └── server.spec.ts ├── tsconfig.eslint.json ├── tsconfig.json └── webpack.config.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | loglevel=silent -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/README.md -------------------------------------------------------------------------------- /config/settings.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/config/settings.default.json -------------------------------------------------------------------------------- /dist/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/api.js -------------------------------------------------------------------------------- /dist/common/enums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/common/enums.js -------------------------------------------------------------------------------- /dist/common/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/common/utils.js -------------------------------------------------------------------------------- /dist/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/config.js -------------------------------------------------------------------------------- /dist/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/db.js -------------------------------------------------------------------------------- /dist/docs/114cd18b478088cff3e422700eeea537.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/docs/114cd18b478088cff3e422700eeea537.woff2 -------------------------------------------------------------------------------- /dist/docs/4a6300dffff48f5dabd3a27b772d72eb.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/docs/4a6300dffff48f5dabd3a27b772d72eb.woff -------------------------------------------------------------------------------- /dist/docs/4ecc699baadc90c3a2acbd6c135f292f.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/docs/4ecc699baadc90c3a2acbd6c135f292f.woff2 -------------------------------------------------------------------------------- /dist/docs/53545bf0c95fb5bef17517d4ac17f983.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/docs/53545bf0c95fb5bef17517d4ac17f983.woff2 -------------------------------------------------------------------------------- /dist/docs/5d2da57e78ccb220d139d8c0ef27a907.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/docs/5d2da57e78ccb220d139d8c0ef27a907.woff2 -------------------------------------------------------------------------------- /dist/docs/80e266aa14cb22f85c8e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/docs/80e266aa14cb22f85c8e.png -------------------------------------------------------------------------------- /dist/docs/85b2f9813ec12e45cad12b26344db0eb.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/docs/85b2f9813ec12e45cad12b26344db0eb.woff -------------------------------------------------------------------------------- /dist/docs/8b1204b2d4afe3341531c6a30ad9f59c.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/docs/8b1204b2d4afe3341531c6a30ad9f59c.woff -------------------------------------------------------------------------------- /dist/docs/90c57a3f35f7e89ba0d57bb7d09fbf6f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/docs/90c57a3f35f7e89ba0d57bb7d09fbf6f.svg -------------------------------------------------------------------------------- /dist/docs/a4bca9febc2433c2f5f7aef68bc4e78e.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/docs/a4bca9febc2433c2f5f7aef68bc4e78e.woff2 -------------------------------------------------------------------------------- /dist/docs/c36c06cf5b267471cea2a745dfd4759a.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/docs/c36c06cf5b267471cea2a745dfd4759a.woff -------------------------------------------------------------------------------- /dist/docs/cc9f106945de5cf13dcb5e54b5d2cec2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/docs/cc9f106945de5cf13dcb5e54b5d2cec2.svg -------------------------------------------------------------------------------- /dist/docs/d58264d95a88a19dca5b1cc58f877c07.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/docs/d58264d95a88a19dca5b1cc58f877c07.woff -------------------------------------------------------------------------------- /dist/docs/e69e9185150b62b34889665da401d0ca.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/docs/e69e9185150b62b34889665da401d0ca.woff -------------------------------------------------------------------------------- /dist/docs/fd55075af28b340bce1ba9cf7f652bfd.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/docs/fd55075af28b340bce1ba9cf7f652bfd.woff2 -------------------------------------------------------------------------------- /dist/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/docs/index.html -------------------------------------------------------------------------------- /dist/docs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/docs/index.js -------------------------------------------------------------------------------- /dist/docs/index.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/docs/index.js.LICENSE.txt -------------------------------------------------------------------------------- /dist/docs/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/docs/index.js.map -------------------------------------------------------------------------------- /dist/docs/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/docs/styles.css -------------------------------------------------------------------------------- /dist/docs/styles.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/docs/styles.css.map -------------------------------------------------------------------------------- /dist/exception.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/exception.js -------------------------------------------------------------------------------- /dist/location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/location.js -------------------------------------------------------------------------------- /dist/models/bookmarks.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/models/bookmarks.model.js -------------------------------------------------------------------------------- /dist/models/newSyncLogs.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/models/newSyncLogs.model.js -------------------------------------------------------------------------------- /dist/routers/api.router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/routers/api.router.js -------------------------------------------------------------------------------- /dist/routers/bookmarks.router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/routers/bookmarks.router.js -------------------------------------------------------------------------------- /dist/routers/docs.router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/routers/docs.router.js -------------------------------------------------------------------------------- /dist/routers/info.router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/routers/info.router.js -------------------------------------------------------------------------------- /dist/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/server.js -------------------------------------------------------------------------------- /dist/services/api.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/services/api.service.js -------------------------------------------------------------------------------- /dist/services/bookmarks.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/services/bookmarks.service.js -------------------------------------------------------------------------------- /dist/services/info.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/services/info.service.js -------------------------------------------------------------------------------- /dist/services/newSyncLogs.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/services/newSyncLogs.service.js -------------------------------------------------------------------------------- /dist/uuid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/dist/uuid.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/jest.config.js -------------------------------------------------------------------------------- /jestconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/jestconfig.e2e.json -------------------------------------------------------------------------------- /jestconfig.unit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/jestconfig.unit.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/package.json -------------------------------------------------------------------------------- /src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/api.ts -------------------------------------------------------------------------------- /src/common/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/common/enums.ts -------------------------------------------------------------------------------- /src/common/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/common/utils.spec.ts -------------------------------------------------------------------------------- /src/common/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/common/utils.ts -------------------------------------------------------------------------------- /src/config.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/config.spec.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/db.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/db.spec.ts -------------------------------------------------------------------------------- /src/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/db.ts -------------------------------------------------------------------------------- /src/docs/images/clouds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/docs/images/clouds.svg -------------------------------------------------------------------------------- /src/docs/images/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/docs/images/icon-128.png -------------------------------------------------------------------------------- /src/docs/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/docs/images/logo.svg -------------------------------------------------------------------------------- /src/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/docs/index.html -------------------------------------------------------------------------------- /src/docs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/docs/index.ts -------------------------------------------------------------------------------- /src/docs/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/docs/mixins.scss -------------------------------------------------------------------------------- /src/docs/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/docs/styles.scss -------------------------------------------------------------------------------- /src/docs/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/docs/variables.scss -------------------------------------------------------------------------------- /src/exception.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/exception.spec.ts -------------------------------------------------------------------------------- /src/exception.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/exception.ts -------------------------------------------------------------------------------- /src/location.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/location.spec.ts -------------------------------------------------------------------------------- /src/location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/location.ts -------------------------------------------------------------------------------- /src/models/bookmarks.model.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/models/bookmarks.model.spec.ts -------------------------------------------------------------------------------- /src/models/bookmarks.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/models/bookmarks.model.ts -------------------------------------------------------------------------------- /src/models/newSyncLogs.model.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/models/newSyncLogs.model.spec.ts -------------------------------------------------------------------------------- /src/models/newSyncLogs.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/models/newSyncLogs.model.ts -------------------------------------------------------------------------------- /src/routers/api.router.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/routers/api.router.spec.ts -------------------------------------------------------------------------------- /src/routers/api.router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/routers/api.router.ts -------------------------------------------------------------------------------- /src/routers/bookmarks.router.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/routers/bookmarks.router.spec.ts -------------------------------------------------------------------------------- /src/routers/bookmarks.router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/routers/bookmarks.router.ts -------------------------------------------------------------------------------- /src/routers/docs.router.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/routers/docs.router.spec.ts -------------------------------------------------------------------------------- /src/routers/docs.router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/routers/docs.router.ts -------------------------------------------------------------------------------- /src/routers/info.router.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/routers/info.router.spec.ts -------------------------------------------------------------------------------- /src/routers/info.router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/routers/info.router.ts -------------------------------------------------------------------------------- /src/server.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/server.spec.ts -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/server.ts -------------------------------------------------------------------------------- /src/services/api.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/services/api.service.spec.ts -------------------------------------------------------------------------------- /src/services/api.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/services/api.service.ts -------------------------------------------------------------------------------- /src/services/bookmarks.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/services/bookmarks.service.spec.ts -------------------------------------------------------------------------------- /src/services/bookmarks.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/services/bookmarks.service.ts -------------------------------------------------------------------------------- /src/services/info.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/services/info.service.spec.ts -------------------------------------------------------------------------------- /src/services/info.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/services/info.service.ts -------------------------------------------------------------------------------- /src/services/newSyncLogs.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/services/newSyncLogs.service.spec.ts -------------------------------------------------------------------------------- /src/services/newSyncLogs.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/services/newSyncLogs.service.ts -------------------------------------------------------------------------------- /src/uuid.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/uuid.spec.ts -------------------------------------------------------------------------------- /src/uuid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/src/uuid.ts -------------------------------------------------------------------------------- /test/e2e/bookmarks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/test/e2e/bookmarks.spec.ts -------------------------------------------------------------------------------- /test/e2e/docs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/test/e2e/docs.spec.ts -------------------------------------------------------------------------------- /test/e2e/info.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/test/e2e/info.spec.ts -------------------------------------------------------------------------------- /test/e2e/server.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/test/e2e/server.spec.ts -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbrowsersync/api/HEAD/webpack.config.js --------------------------------------------------------------------------------