@things-factory/operato-dataset 6.0.74 → 6.0.76
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/client/bootstrap.ts +2 -2
- package/client/menu.ts +3 -3
- package/client/{query-data-key-sets.ts → query-data-sets.ts} +31 -0
- package/db.sqlite +0 -0
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +62 -12
- package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +35 -10
- package/logs/application-2023-05-12-13.log +7 -0
- package/logs/application-2023-05-12-14.log +7 -0
- package/logs/application-2023-05-12-15.log +37 -0
- package/logs/application-2023-05-12-16.log +5 -0
- package/logs/application-2023-05-12-17.log +5 -0
- package/logs/application-2023-05-12-18.log +28 -0
- package/logs/application-2023-05-12-19.log +11 -0
- package/logs/application-2023-05-12-22.log +3 -0
- package/logs/application-2023-05-12-23.log +1 -0
- package/logs/application-2023-05-13-00.log +7 -0
- package/logs/application-2023-05-13-01.log +1 -0
- package/logs/application-2023-05-13-02.log +1 -0
- package/logs/application-2023-05-13-03.log +3 -0
- package/logs/application-2023-05-13-04.log +1 -0
- package/logs/connections-2023-05-12-15.log +0 -0
- package/logs/connections-2023-05-12-16.log +0 -0
- package/logs/connections-2023-05-12-17.log +0 -0
- package/logs/connections-2023-05-12-18.log +0 -0
- package/logs/connections-2023-05-12-19.log +0 -0
- package/package.json +35 -34
- package/schema.gql +34 -0
- package/yarn-error.log +2 -1
- package/logs/application-2023-05-06-09.log +0 -58
- package/logs/application-2023-05-06-11.log +0 -9
- package/logs/application-2023-05-06-18.log +0 -10
- package/logs/application-2023-05-06-20.log +0 -1
- /package/logs/{connections-2023-04-26-07.log → connections-2023-05-12-13.log} +0 -0
- /package/logs/{connections-2023-04-27-08.log → connections-2023-05-12-14.log} +0 -0
package/client/bootstrap.ts
CHANGED
|
@@ -22,7 +22,7 @@ import { ADD_MORENDA } from '@things-factory/more-base'
|
|
|
22
22
|
import { ADD_SETTING } from '@things-factory/setting-base'
|
|
23
23
|
|
|
24
24
|
import { getMenuTemplate } from './menu'
|
|
25
|
-
import { queryDataKeySets } from './query-data-
|
|
25
|
+
import { queryDataSets, queryDataKeySets } from './query-data-sets'
|
|
26
26
|
|
|
27
27
|
console.log(
|
|
28
28
|
`%c
|
|
@@ -50,7 +50,7 @@ export default function bootstrap() {
|
|
|
50
50
|
})
|
|
51
51
|
|
|
52
52
|
auth.on('profile', async ({ credential }) => {
|
|
53
|
-
updateMenuTemplate(getMenuTemplate(credential.owner, await
|
|
53
|
+
updateMenuTemplate(getMenuTemplate(credential.owner, await queryDataSets()))
|
|
54
54
|
|
|
55
55
|
/* set auth management menus into more-panel */
|
|
56
56
|
setAuthManagementMenus(credential)
|
package/client/menu.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { generateActivitySummary, startSubscribeActivitySummary } from '@things-
|
|
|
4
4
|
|
|
5
5
|
startSubscribeActivitySummary()
|
|
6
6
|
|
|
7
|
-
export function getMenuTemplate(owner: boolean = false,
|
|
7
|
+
export function getMenuTemplate(owner: boolean = false, dataSets: any[]) {
|
|
8
8
|
return [
|
|
9
9
|
{
|
|
10
10
|
name: '나의 업무',
|
|
@@ -85,7 +85,7 @@ export function getMenuTemplate(owner: boolean = false, dataKeySets: any[]) {
|
|
|
85
85
|
icon: 'checklist',
|
|
86
86
|
path: 'data-sample-list',
|
|
87
87
|
menus:
|
|
88
|
-
|
|
88
|
+
dataSets.map(item => {
|
|
89
89
|
return {
|
|
90
90
|
name: item.name,
|
|
91
91
|
icon: 'checklist',
|
|
@@ -103,7 +103,7 @@ export function getMenuTemplate(owner: boolean = false, dataKeySets: any[]) {
|
|
|
103
103
|
icon: 'checklist',
|
|
104
104
|
path: 'data-summary-list',
|
|
105
105
|
menus:
|
|
106
|
-
|
|
106
|
+
dataSets.map(item => {
|
|
107
107
|
return {
|
|
108
108
|
name: item.name,
|
|
109
109
|
icon: 'checklist',
|
|
@@ -1,6 +1,37 @@
|
|
|
1
1
|
import gql from 'graphql-tag'
|
|
2
2
|
import { client } from '@operato/graphql'
|
|
3
3
|
|
|
4
|
+
export async function queryDataSets(): Promise<{ id: string; name: string; description: string; active: boolean }[]> {
|
|
5
|
+
const response = await client.query({
|
|
6
|
+
query: gql`
|
|
7
|
+
query ($filters: [Filter!], $pagination: Pagination, $sortings: [Sorting!]) {
|
|
8
|
+
responses: dataSets(filters: $filters, pagination: $pagination, sortings: $sortings) {
|
|
9
|
+
items {
|
|
10
|
+
id
|
|
11
|
+
name
|
|
12
|
+
description
|
|
13
|
+
active
|
|
14
|
+
}
|
|
15
|
+
total
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
`,
|
|
19
|
+
variables: {
|
|
20
|
+
filters: [
|
|
21
|
+
{
|
|
22
|
+
name: 'active',
|
|
23
|
+
operator: 'eq',
|
|
24
|
+
value: true
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
pagination: {},
|
|
28
|
+
sortings: []
|
|
29
|
+
}
|
|
30
|
+
})
|
|
31
|
+
|
|
32
|
+
return response.data.responses.items
|
|
33
|
+
}
|
|
34
|
+
|
|
4
35
|
export async function queryDataKeySets(): Promise<
|
|
5
36
|
{ id: string; name: string; description: string; active: boolean }[]
|
|
6
37
|
> {
|
package/db.sqlite
CHANGED
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../node_modules/lerna/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/tslib/tslib.d.ts","../server/controllers/index.ts","../server/routes.ts","../server/index.ts","../server/service/index.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"f1c9fe42b65437a61104e601eb298c5c859fb522b483f1bdb700eed67a16f980","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",{"version":"a943623bbc56da5587aa97af9fe34dc408e02f9ba5f96ee0b51a6dc5eb8044ef","affectsGlobalScope":true},"b3ac30041a9d9ee943f3301ef359369e2083ebc9b9cbca9475a02f300d43d699","b9516dd0d60937676906fb13064d6a4e1e69752b9e3a08ab7b4986541c4a3123","66a6e7b6e32eea099615d627028ed0d681679e31237df03e68e1b912e3e61da0","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"f749812878fecfa53cfc13b36e5d35086fb6377983a9df44175da83ccc23af1f","affectsGlobalScope":true},"fd536fe411f46ae62c4729e342a3494adbdd54335e41039c238170c9781da9ff",{"version":"772ff00e189d93488d1ca6f0f4dfba77bd090a99ed31e19a14bc16fad4078e48","affectsGlobalScope":true},"d9b1fa0da9fbff85402c3ee794bcfe6d7cfef2fa053761b7d83989cdb7f9b26d","ac0c7cb0a4c1bec60be2c0460b3bda1e674eaf2c98312d7b6f16a0bb58718e2d",{"version":"7e2181a6fc140b4525d5a45c204477c37fa78a635558e88552c68f76a4325403","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","6a6bfa45d3ed96dea1ad653444fb26ddaa9245d2e2d6ddaab050cb9a2c0936d7","276b547eeb8eeeee9a446a3bfa6e07d1c0199269bdcf33813abab1281394a9cb","c999f7816955f75b447823e3e4085f699600e2a4a3327907df9af65b0a9c0df6","958df89fdcf5555cdfd57a14037e05505048dd29c59e8009bea279b65523b241","ffa8324a4c0611f9a50262fb36f097eeabe0fa0d71755aa67156da13cde1b932","9b814e0806922056145bedb096f11b73bdce70cc871f3ccfc4ce00b2cba75718",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"be3d24f3fd8c85fedd91485b207d180f14ac2602805b52f6a33462ada14c27b0","affectsGlobalScope":true},"443509b8f5fa1242a5b542ec817f0e9ef48064a7298daad87607bb8543e93db9","2ad6a251b6ef19fd1f8498f83bb7b265033bd52287e1f6569d09544f18806713","bfa08f2c30c475aef1c9451855ba6b2acfdc64f61950a38fae75806d66fb85c2","159807eb55a9439f9a675bd493788190a6203b5f36c315f8c3acbfcb875c7072","fe31b2b31ac5453fc7b8eef32b62017e55b214ceb884f0b177f442af92e84682","dd72576c8ea64d55af46a386068503d3cfcecce84ed7e1cbd4ff4081ba67fafc",{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true},"70a7e8a7880d55396285e4b85ff5bdf3af3083176abe07f944967836f2a43188","3570df7c6f3a976109f55b596a2d88c2f87e0574cd1502272594ee5c4e56d0ef","850e95721334c2aa7697b08782f443ec4286274e5024169d4443933544f359d7",{"version":"74e6cd21f7b5e29fab05060ea24e2b90aa254f16f3f62ccd7055bdb8fc7b2ff5","affectsGlobalScope":true},{"version":"5761c90b0cabdd6bd1f5fb1c3bf942088fdd39e18ed35dbe39b0c34bc733bf13","affectsGlobalScope":true},"1eb6c5569d41e6021832d0a8a71f45fecbc13d03ad7d306da485999148b64955","c05ef0ecf06540ad3039515c10d3b27f9380639ced40f4093fd073e1b5ff21d9","c774096c5935712de41c763e3c08a04b7a788a85fb07a0c2df23fb5ace3bc610","2b847f2aba41dcd69677684d5d300c08aea4e306c305fd39bf548cef19f03cfe","f4c0cbc93eb51fd61e07a86111739770dd524f6297bd83266ff004aec553e085","9a134dbb29f0af914d90b23f609b39019d66ed53db7d492ab6b04c67114559da","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","7b3781fbdfddbee8dba55ccee5aa74a7c8d6701ade11d49ab7d8cb1fcefe669e","c4aab2ec3a249f2a4caa9cbdb099752a80daf999b79d85aa3504cdfd6e559476",{"version":"2cff47e15621f3055af1df1547426f833c9d0a571750c4f0659836f45c50fe0a","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","c764a6cf523d13f2304a23216cd1084e28c041eebabd8aa9b2a9d99866c668c0","1272a5c2bd05961adc473e905332b7a422b00485c10b41c752f7fcf6835e3436","30ef92bf8135ce36ba1231fe41715276f2a40be72a478ddeb862bc16672e8680",{"version":"4ace0a30a70fe5963442d75ea6e69f525671ae76f6e57ab7556c44839b4237e8","affectsGlobalScope":true},{"version":"a6f03dbf03c001fb3ac1c9bea6dde049dfff27ef8886cc4a886374aacf2e997d","affectsGlobalScope":true},"66bfb3de947abf4b117ee849c245425dbe494d6903e28f9ded566e91c9d05d77","c28d4f58131b93d60e087b86148d4e0c9d9b5c49c23ff1a9d1a9594fdedd5d08","c6b5d7f259544c91024ecf2b17138574a3f6ff2476468fafd7f957d2b68d6d98",{"version":"1ec27c4b695590464113276d174f873e260e468ef226b7dc18f9193875fa559d","affectsGlobalScope":true},"33da4ee2ab9fdd9ef8b3fc526d871ce02ae8c825283f5695e7cad507c087b97c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"71709584ed5ed7d236dc225441ec4634ffc6c718853e04b9c27b9ea121459044","6c1e688f95fcaf53b1e41c0fdadf2c1cfc96fa924eaf7f9fdb60f96deb0a4986","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","db25694be959314fd1e868d72e567746db1db9e2001fae545d12d2a8c1bba1b8","43883cf3635bb1846cbdc6c363787b76227677388c74f7313e3f0edb380840fa","2d47012580f859dae201d2eef898a416bdae719dffc087dfd06aefe3de2f9c8d","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","2cec1a31729b9b01e9294c33fc9425d336eff067282809761ad2e74425d6d2a5",{"version":"5bc4bb5796ce660d9869477983aac87734e19fecd1ad60fb0b13ffe1f1a450ed","affectsGlobalScope":true}],"options":{"allowSyntheticDefaultImports":true,"declaration":false,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":1,"noEmitOnError":true,"noImplicitAny":false,"outDir":"./","sourceMap":true,"strict":false,"target":4,"useDefineForClassFields":false},"fileIdsList":[[95],[95,105],[95,107,110],[49,95],[52,95],[53,58,86,95],[54,65,66,73,83,94,95],[54,55,65,73,95],[56,95],[57,58,66,74,95],[58,83,91,95],[59,61,65,73,95],[60,95],[61,62,95],[65,95],[63,65,95],[65,66,67,83,94,95],[65,66,67,80,83,86,95],[95,99],[61,65,68,73,83,94,95],[65,66,68,69,73,83,91,94,95],[68,70,83,91,94,95],[49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101],[65,71,95],[72,94,95],[61,65,73,83,95],[74,95],[75,95],[52,76,95],[77,93,95,99],[78,95],[79,95],[65,80,81,95],[80,82,95,97],[53,65,83,84,85,86,95],[53,83,85,95],[83,84,95],[86,95],[87,95],[83,95],[65,89,90,95],[89,90,95],[58,73,83,91,95],[92,95],[73,93,95],[53,68,79,94,95],[58,95],[83,95,96],[95,97],[95,98],[53,58,65,67,76,83,94,95,97,99],[83,95,100],[95,103,109],[95,107],[95,104,108],[95,106],[44,95]],"referencedMap":[[103,1],[106,2],[105,1],[111,3],[49,4],[50,4],[52,5],[53,6],[54,7],[55,8],[56,9],[57,10],[58,11],[59,12],[60,13],[61,14],[62,14],[64,15],[63,16],[65,15],[66,17],[67,18],[51,19],[101,1],[68,20],[69,21],[70,22],[102,23],[71,24],[72,25],[73,26],[74,27],[75,28],[76,29],[77,30],[78,31],[79,32],[80,33],[81,33],[82,34],[83,35],[85,36],[84,37],[86,38],[87,39],[88,40],[89,41],[90,42],[91,43],[92,44],[93,45],[94,46],[95,47],[96,48],[97,49],[98,50],[99,51],[100,52],[104,1],[110,53],[108,54],[109,55],[8,1],[9,1],[11,1],[10,1],[2,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[3,1],[4,1],[23,1],[20,1],[21,1],[22,1],[24,1],[25,1],[26,1],[5,1],[27,1],[28,1],[29,1],[30,1],[6,1],[34,1],[31,1],[32,1],[33,1],[35,1],[7,1],[36,1],[41,1],[42,1],[37,1],[38,1],[39,1],[40,1],[1,1],[43,1],[107,56],[44,1],[45,1],[47,57],[46,1],[48,57]],"exportedModulesMap":[[103,1],[106,2],[105,1],[111,3],[49,4],[50,4],[52,5],[53,6],[54,7],[55,8],[56,9],[57,10],[58,11],[59,12],[60,13],[61,14],[62,14],[64,15],[63,16],[65,15],[66,17],[67,18],[51,19],[101,1],[68,20],[69,21],[70,22],[102,23],[71,24],[72,25],[73,26],[74,27],[75,28],[76,29],[77,30],[78,31],[79,32],[80,33],[81,33],[82,34],[83,35],[85,36],[84,37],[86,38],[87,39],[88,40],[89,41],[90,42],[91,43],[92,44],[93,45],[94,46],[95,47],[96,48],[97,49],[98,50],[99,51],[100,52],[104,1],[110,53],[108,54],[109,55],[8,1],[9,1],[11,1],[10,1],[2,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[3,1],[4,1],[23,1],[20,1],[21,1],[22,1],[24,1],[25,1],[26,1],[5,1],[27,1],[28,1],[29,1],[30,1],[6,1],[34,1],[31,1],[32,1],[33,1],[35,1],[7,1],[36,1],[41,1],[42,1],[37,1],[38,1],[39,1],[40,1],[1,1],[43,1],[107,56],[44,1],[45,1],[47,57],[46,1],[48,57]],"semanticDiagnosticsPerFile":[103,106,105,111,49,50,52,53,54,55,56,57,58,59,60,61,62,64,63,65,66,67,51,101,68,69,70,102,71,72,73,74,75,76,77,78,79,80,81,82,83,85,84,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,104,110,108,109,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,107,44,45,47,46,48]},"version":"4.9.5"}
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/lerna/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/tslib/tslib.d.ts","../server/controllers/index.ts","../server/routes.ts","../server/index.ts","../server/service/index.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"f1c9fe42b65437a61104e601eb298c5c859fb522b483f1bdb700eed67a16f980","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",{"version":"a943623bbc56da5587aa97af9fe34dc408e02f9ba5f96ee0b51a6dc5eb8044ef","affectsGlobalScope":true},"b3ac30041a9d9ee943f3301ef359369e2083ebc9b9cbca9475a02f300d43d699","b9516dd0d60937676906fb13064d6a4e1e69752b9e3a08ab7b4986541c4a3123","9ee13abb39c50c2f45b5362dbadc55334e82dfc9789cfc070808e10dc5f60000","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"f749812878fecfa53cfc13b36e5d35086fb6377983a9df44175da83ccc23af1f","affectsGlobalScope":true},"03c04ba2137908b3b6219ecadc3471d4e39bb9030e6404510ee6e87a3b590a2d",{"version":"772ff00e189d93488d1ca6f0f4dfba77bd090a99ed31e19a14bc16fad4078e48","affectsGlobalScope":true},"d9b1fa0da9fbff85402c3ee794bcfe6d7cfef2fa053761b7d83989cdb7f9b26d","ac0c7cb0a4c1bec60be2c0460b3bda1e674eaf2c98312d7b6f16a0bb58718e2d",{"version":"7e2181a6fc140b4525d5a45c204477c37fa78a635558e88552c68f76a4325403","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","0ea59475772c2a8fdeb1f41ad9b02025aff6423003ec7eaf8129ee846f438aee","276b547eeb8eeeee9a446a3bfa6e07d1c0199269bdcf33813abab1281394a9cb","c999f7816955f75b447823e3e4085f699600e2a4a3327907df9af65b0a9c0df6","64361245fe025cbbad90451dd3698f7e6822d465ef568cbee3a4d8ddb52e7cda","8e6b05abc98adba15e1ac78e137c64576c74002e301d682e66feb77a23907ab8","9b814e0806922056145bedb096f11b73bdce70cc871f3ccfc4ce00b2cba75718",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"2013a2215691096d953ce7cefbc71a6cd31ef14be092cd003792714c5cd23bde","affectsGlobalScope":true},"60155c38ec392043962a90006153f7e31187b93411f2d8f9b35f595e98b8d75f","2ad6a251b6ef19fd1f8498f83bb7b265033bd52287e1f6569d09544f18806713","bfa08f2c30c475aef1c9451855ba6b2acfdc64f61950a38fae75806d66fb85c2","159807eb55a9439f9a675bd493788190a6203b5f36c315f8c3acbfcb875c7072","fe31b2b31ac5453fc7b8eef32b62017e55b214ceb884f0b177f442af92e84682","dd72576c8ea64d55af46a386068503d3cfcecce84ed7e1cbd4ff4081ba67fafc",{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true},"70a7e8a7880d55396285e4b85ff5bdf3af3083176abe07f944967836f2a43188","3570df7c6f3a976109f55b596a2d88c2f87e0574cd1502272594ee5c4e56d0ef","850e95721334c2aa7697b08782f443ec4286274e5024169d4443933544f359d7",{"version":"74e6cd21f7b5e29fab05060ea24e2b90aa254f16f3f62ccd7055bdb8fc7b2ff5","affectsGlobalScope":true},{"version":"5761c90b0cabdd6bd1f5fb1c3bf942088fdd39e18ed35dbe39b0c34bc733bf13","affectsGlobalScope":true},"1eb6c5569d41e6021832d0a8a71f45fecbc13d03ad7d306da485999148b64955","c05ef0ecf06540ad3039515c10d3b27f9380639ced40f4093fd073e1b5ff21d9","fd25a0d3e6448b61d33e1fe4e0667a1a87a77e53570b65a454937cf2dc92f967","c27b01e8ddff5cd280711af5e13aecd9a3228d1c256ea797dd64f8fdec5f7df5","24a68c38b5c66d6a6883624342560d88db670e97824b397e78d9dac121aa8bae","9a134dbb29f0af914d90b23f609b39019d66ed53db7d492ab6b04c67114559da","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","7b3781fbdfddbee8dba55ccee5aa74a7c8d6701ade11d49ab7d8cb1fcefe669e","c4aab2ec3a249f2a4caa9cbdb099752a80daf999b79d85aa3504cdfd6e559476",{"version":"666d3f264db693828f6edc2eb53ae6013e40f6e39278ca209c7a8a99ac91b62f","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","c764a6cf523d13f2304a23216cd1084e28c041eebabd8aa9b2a9d99866c668c0","1272a5c2bd05961adc473e905332b7a422b00485c10b41c752f7fcf6835e3436","30ef92bf8135ce36ba1231fe41715276f2a40be72a478ddeb862bc16672e8680",{"version":"4ace0a30a70fe5963442d75ea6e69f525671ae76f6e57ab7556c44839b4237e8","affectsGlobalScope":true},{"version":"a6f03dbf03c001fb3ac1c9bea6dde049dfff27ef8886cc4a886374aacf2e997d","affectsGlobalScope":true},"66bfb3de947abf4b117ee849c245425dbe494d6903e28f9ded566e91c9d05d77","c28d4f58131b93d60e087b86148d4e0c9d9b5c49c23ff1a9d1a9594fdedd5d08","c6b5d7f259544c91024ecf2b17138574a3f6ff2476468fafd7f957d2b68d6d98",{"version":"1ec27c4b695590464113276d174f873e260e468ef226b7dc18f9193875fa559d","affectsGlobalScope":true},"33da4ee2ab9fdd9ef8b3fc526d871ce02ae8c825283f5695e7cad507c087b97c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"71709584ed5ed7d236dc225441ec4634ffc6c718853e04b9c27b9ea121459044","6c1e688f95fcaf53b1e41c0fdadf2c1cfc96fa924eaf7f9fdb60f96deb0a4986","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","db25694be959314fd1e868d72e567746db1db9e2001fae545d12d2a8c1bba1b8","43883cf3635bb1846cbdc6c363787b76227677388c74f7313e3f0edb380840fa","2d47012580f859dae201d2eef898a416bdae719dffc087dfd06aefe3de2f9c8d","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","2cec1a31729b9b01e9294c33fc9425d336eff067282809761ad2e74425d6d2a5",{"version":"5bc4bb5796ce660d9869477983aac87734e19fecd1ad60fb0b13ffe1f1a450ed","affectsGlobalScope":true}],"options":{"allowSyntheticDefaultImports":true,"declaration":false,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":1,"noEmitOnError":true,"noImplicitAny":false,"outDir":"./","sourceMap":true,"strict":false,"target":4,"useDefineForClassFields":false},"fileIdsList":[[95],[95,105],[95,107,110],[49,95],[52,95],[53,58,86,95],[54,65,66,73,83,94,95],[54,55,65,73,95],[56,95],[57,58,66,74,95],[58,83,91,95],[59,61,65,73,95],[60,95],[61,62,95],[65,95],[63,65,95],[65,66,67,83,94,95],[65,66,67,80,83,86,95],[95,99],[61,65,68,73,83,94,95],[65,66,68,69,73,83,91,94,95],[68,70,83,91,94,95],[49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101],[65,71,95],[72,94,95],[61,65,73,83,95],[74,95],[75,95],[52,76,95],[77,93,95,99],[78,95],[79,95],[65,80,81,95],[80,82,95,97],[53,65,83,84,85,86,95],[53,83,85,95],[83,84,95],[86,95],[87,95],[83,95],[65,89,90,95],[89,90,95],[58,73,83,91,95],[92,95],[73,93,95],[53,68,79,94,95],[58,95],[83,95,96],[95,97],[95,98],[53,58,65,67,76,83,94,95,97,99],[83,95,100],[95,103,109],[95,107],[95,104,108],[95,106],[44,95]],"referencedMap":[[103,1],[106,2],[105,1],[111,3],[49,4],[50,4],[52,5],[53,6],[54,7],[55,8],[56,9],[57,10],[58,11],[59,12],[60,13],[61,14],[62,14],[64,15],[63,16],[65,15],[66,17],[67,18],[51,19],[101,1],[68,20],[69,21],[70,22],[102,23],[71,24],[72,25],[73,26],[74,27],[75,28],[76,29],[77,30],[78,31],[79,32],[80,33],[81,33],[82,34],[83,35],[85,36],[84,37],[86,38],[87,39],[88,40],[89,41],[90,42],[91,43],[92,44],[93,45],[94,46],[95,47],[96,48],[97,49],[98,50],[99,51],[100,52],[104,1],[110,53],[108,54],[109,55],[8,1],[9,1],[11,1],[10,1],[2,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[3,1],[4,1],[23,1],[20,1],[21,1],[22,1],[24,1],[25,1],[26,1],[5,1],[27,1],[28,1],[29,1],[30,1],[6,1],[34,1],[31,1],[32,1],[33,1],[35,1],[7,1],[36,1],[41,1],[42,1],[37,1],[38,1],[39,1],[40,1],[1,1],[43,1],[107,56],[44,1],[45,1],[47,57],[46,1],[48,57]],"exportedModulesMap":[[103,1],[106,2],[105,1],[111,3],[49,4],[50,4],[52,5],[53,6],[54,7],[55,8],[56,9],[57,10],[58,11],[59,12],[60,13],[61,14],[62,14],[64,15],[63,16],[65,15],[66,17],[67,18],[51,19],[101,1],[68,20],[69,21],[70,22],[102,23],[71,24],[72,25],[73,26],[74,27],[75,28],[76,29],[77,30],[78,31],[79,32],[80,33],[81,33],[82,34],[83,35],[85,36],[84,37],[86,38],[87,39],[88,40],[89,41],[90,42],[91,43],[92,44],[93,45],[94,46],[95,47],[96,48],[97,49],[98,50],[99,51],[100,52],[104,1],[110,53],[108,54],[109,55],[8,1],[9,1],[11,1],[10,1],[2,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[3,1],[4,1],[23,1],[20,1],[21,1],[22,1],[24,1],[25,1],[26,1],[5,1],[27,1],[28,1],[29,1],[30,1],[6,1],[34,1],[31,1],[32,1],[33,1],[35,1],[7,1],[36,1],[41,1],[42,1],[37,1],[38,1],[39,1],[40,1],[1,1],[43,1],[107,56],[44,1],[45,1],[47,57],[46,1],[48,57]],"semanticDiagnosticsPerFile":[103,106,105,111,49,50,52,53,54,55,56,57,58,59,60,61,62,64,63,65,66,67,51,101,68,69,70,102,71,72,73,74,75,76,77,78,79,80,81,82,83,85,84,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,104,110,108,109,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,107,44,45,47,46,48]},"version":"4.9.5"}
|
|
@@ -6,24 +6,74 @@
|
|
|
6
6
|
"auditLog": "logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
|
-
"date":
|
|
10
|
-
"name": "logs/application-2023-05-
|
|
11
|
-
"hash": "
|
|
9
|
+
"date": 1683899730311,
|
|
10
|
+
"name": "logs/application-2023-05-12-22.log",
|
|
11
|
+
"hash": "f6592c0fed12f3c86b6cea278caef7c41f325b44967550cdcfba38de727dd2b4"
|
|
12
12
|
},
|
|
13
13
|
{
|
|
14
|
-
"date":
|
|
15
|
-
"name": "logs/application-2023-05-
|
|
16
|
-
"hash": "
|
|
14
|
+
"date": 1683899819128,
|
|
15
|
+
"name": "logs/application-2023-05-12-13.log",
|
|
16
|
+
"hash": "7b495fbcf8018226e66b42a40f14aad6d4dc760b63ab5242b33cccd6497604a8"
|
|
17
17
|
},
|
|
18
18
|
{
|
|
19
|
-
"date":
|
|
20
|
-
"name": "logs/application-2023-05-
|
|
21
|
-
"hash": "
|
|
19
|
+
"date": 1683901620954,
|
|
20
|
+
"name": "logs/application-2023-05-12-14.log",
|
|
21
|
+
"hash": "dbd02a2272af7be8d510bdfd7fa7790a7a6fad2a79da7f09cec87a13f80e0c26"
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
|
-
"date":
|
|
25
|
-
"name": "logs/application-2023-05-
|
|
26
|
-
"hash": "
|
|
24
|
+
"date": 1683903156924,
|
|
25
|
+
"name": "logs/application-2023-05-12-23.log",
|
|
26
|
+
"hash": "eaefbd55ad3a2f25d8629a4753945fab2f9f2e47797f4921051862d0aecaff85"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"date": 1683904351916,
|
|
30
|
+
"name": "logs/application-2023-05-13-00.log",
|
|
31
|
+
"hash": "2a19c52ae996c391abf3b53d64aa80f17428ba97ba012797b398d1621943520a"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"date": 1683904353850,
|
|
35
|
+
"name": "logs/application-2023-05-12-15.log",
|
|
36
|
+
"hash": "fd4488bb77ae281998d2504331c75958bc02a3b4662d29857c49975531a1a78a"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"date": 1683907867959,
|
|
40
|
+
"name": "logs/application-2023-05-13-01.log",
|
|
41
|
+
"hash": "4340bea961b0e0022386ab5a3249b3758c97308fe2638b76a8b4860e5da77d40"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"date": 1683907869940,
|
|
45
|
+
"name": "logs/application-2023-05-12-16.log",
|
|
46
|
+
"hash": "967d12fca938d4b91094d6963c04afeb308d9848d9655303282fe1bb603b9c00"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"date": 1683913329170,
|
|
50
|
+
"name": "logs/application-2023-05-13-02.log",
|
|
51
|
+
"hash": "5ae7bd73e7ab8a90c426dad9988cb4dc5e8a09ad5bceae225cdd848fbe6efe56"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"date": 1683913331037,
|
|
55
|
+
"name": "logs/application-2023-05-12-17.log",
|
|
56
|
+
"hash": "77b6ef2e539aff0e5c7e9384b3aca84df8df9636d206a43ac8c9e85306f90ddf"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"date": 1683914435089,
|
|
60
|
+
"name": "logs/application-2023-05-12-18.log",
|
|
61
|
+
"hash": "f76bb7f9deed2a02d0debc431714a2f26579454fde695213b4def77bbbc44091"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"date": 1683916586450,
|
|
65
|
+
"name": "logs/application-2023-05-13-03.log",
|
|
66
|
+
"hash": "d1cb876bbe313116313b0d300109c5a4e587b9ee59518635920abc74f73595ce"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"date": 1683918029929,
|
|
70
|
+
"name": "logs/application-2023-05-12-19.log",
|
|
71
|
+
"hash": "db6416fc358f7b2f7e80893490786e7db10ee5bc9336de0550f94846be9333b3"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"date": 1683918109795,
|
|
75
|
+
"name": "logs/application-2023-05-13-04.log",
|
|
76
|
+
"hash": "1a3ceb93a1823a8d05bfd8bfae158189c58a8e8dc7b644801be4ed180f8c5d9f"
|
|
27
77
|
}
|
|
28
78
|
],
|
|
29
79
|
"hashType": "sha256"
|
|
@@ -5,16 +5,6 @@
|
|
|
5
5
|
},
|
|
6
6
|
"auditLog": "logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json",
|
|
7
7
|
"files": [
|
|
8
|
-
{
|
|
9
|
-
"date": 1682495080609,
|
|
10
|
-
"name": "logs/connections-2023-04-26-07.log",
|
|
11
|
-
"hash": "4cd12fad7302b1e09382a443f4a3b6cb02e9a38650dc71b9fef565356e280d88"
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
"date": 1682585948210,
|
|
15
|
-
"name": "logs/connections-2023-04-27-08.log",
|
|
16
|
-
"hash": "bdc3a6d2cc77837a605bf82df40b5a7e431e4f11dc27c411d6a666fd622ba199"
|
|
17
|
-
},
|
|
18
8
|
{
|
|
19
9
|
"date": 1683363924538,
|
|
20
10
|
"name": "logs/connections-2023-05-06-09.log",
|
|
@@ -24,6 +14,41 @@
|
|
|
24
14
|
"date": 1683372634155,
|
|
25
15
|
"name": "logs/connections-2023-05-06-11.log",
|
|
26
16
|
"hash": "1f5c86835895b07c0cd41ef61958354dedab2e5676ebc5e4f80b862bdf2a24ff"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"date": 1683899818948,
|
|
20
|
+
"name": "logs/connections-2023-05-12-13.log",
|
|
21
|
+
"hash": "ad09698ffab87bf6ecb7ce1e0e90994c45323980435854a29f21281015bfcff0"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"date": 1683903158232,
|
|
25
|
+
"name": "logs/connections-2023-05-12-14.log",
|
|
26
|
+
"hash": "e1d447897035486fc716b16db496a86299bbd6ab4887d4ca5c55cf1438ff1756"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"date": 1683904353666,
|
|
30
|
+
"name": "logs/connections-2023-05-12-15.log",
|
|
31
|
+
"hash": "e4292ecc3fa7ac96adccc746831f3107671cfb82f3a9d7e9f71456176b43fe4c"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"date": 1683907869748,
|
|
35
|
+
"name": "logs/connections-2023-05-12-16.log",
|
|
36
|
+
"hash": "5d578166ab7e440980d4a996b4283c4f050271b2e214ca7a81a9f03201644781"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"date": 1683913330847,
|
|
40
|
+
"name": "logs/connections-2023-05-12-17.log",
|
|
41
|
+
"hash": "18f8a317b84f78c7ce66d49a02f3939913a64dc55f4a07b2b52f6d693736fb50"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"date": 1683916588222,
|
|
45
|
+
"name": "logs/connections-2023-05-12-18.log",
|
|
46
|
+
"hash": "65eb2c799304ada017fc1d69a810f4292b8c2c377fe4a4ba7cfc85b6c218d677"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"date": 1683918111563,
|
|
50
|
+
"name": "logs/connections-2023-05-12-19.log",
|
|
51
|
+
"hash": "e36ba7de205badb89ede57c783358da4d543c4e0b2838579b1d4a9fbe8c6be77"
|
|
27
52
|
}
|
|
28
53
|
],
|
|
29
54
|
"hashType": "sha256"
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
2023-05-12T22:56:59+09:00 error: oracledb module loading failed
|
|
2
|
+
2023-05-12T22:56:59+09:00 info: Default DataSource established
|
|
3
|
+
2023-05-12T22:57:00+09:00 info: Transaction DataSource established
|
|
4
|
+
2023-05-12T22:57:01+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
5
|
+
2023-05-12T22:57:01+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
6
|
+
2023-05-12T22:59:03+09:00 error: Cannot query field "data" on type "DataSummary".
|
|
7
|
+
2023-05-12T22:59:32+09:00 error: Cannot query field "data" on type "DataSummary".
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
2023-05-12T23:27:00+09:00 error: Cannot query field "data" on type "DataSummary".
|
|
2
|
+
2023-05-12T23:27:13+09:00 error: Cannot query field "data" on type "DataSummary".
|
|
3
|
+
2023-05-12T23:52:38+09:00 error: oracledb module loading failed
|
|
4
|
+
2023-05-12T23:52:39+09:00 info: Default DataSource established
|
|
5
|
+
2023-05-12T23:52:39+09:00 info: Transaction DataSource established
|
|
6
|
+
2023-05-12T23:52:40+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
7
|
+
2023-05-12T23:52:40+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
2023-05-13T00:12:33+09:00 error: oracledb module loading failed
|
|
2
|
+
2023-05-13T00:12:34+09:00 info: Default DataSource established
|
|
3
|
+
2023-05-13T00:12:35+09:00 info: Transaction DataSource established
|
|
4
|
+
2023-05-13T00:12:36+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
5
|
+
2023-05-13T00:12:36+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
6
|
+
2023-05-13T00:20:25+09:00 error: oracledb module loading failed
|
|
7
|
+
2023-05-13T00:20:37+09:00 info: Default DataSource established
|
|
8
|
+
2023-05-13T00:20:38+09:00 info: Transaction DataSource established
|
|
9
|
+
2023-05-13T00:20:39+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
10
|
+
2023-05-13T00:20:39+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
11
|
+
2023-05-13T00:29:24+09:00 error: oracledb module loading failed
|
|
12
|
+
2023-05-13T00:29:25+09:00 info: Default DataSource established
|
|
13
|
+
2023-05-13T00:30:49+09:00 info: Transaction DataSource established
|
|
14
|
+
2023-05-13T00:30:50+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
15
|
+
2023-05-13T00:30:50+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
16
|
+
2023-05-13T00:31:06+09:00 error: oracledb module loading failed
|
|
17
|
+
2023-05-13T00:31:07+09:00 info: Default DataSource established
|
|
18
|
+
2023-05-13T00:31:08+09:00 info: Transaction DataSource established
|
|
19
|
+
2023-05-13T00:31:08+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
20
|
+
2023-05-13T00:31:08+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
21
|
+
2023-05-13T00:32:52+09:00 error: oracledb module loading failed
|
|
22
|
+
2023-05-13T00:32:53+09:00 info: Default DataSource established
|
|
23
|
+
2023-05-13T00:32:53+09:00 info: Transaction DataSource established
|
|
24
|
+
2023-05-13T00:32:54+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
25
|
+
2023-05-13T00:32:54+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
26
|
+
2023-05-13T00:48:31+09:00 error: oracledb module loading failed
|
|
27
|
+
2023-05-13T00:48:32+09:00 info: Default DataSource established
|
|
28
|
+
2023-05-13T00:48:32+09:00 info: Transaction DataSource established
|
|
29
|
+
2023-05-13T00:48:33+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
30
|
+
2023-05-13T00:48:33+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
31
|
+
2023-05-13T00:49:48+09:00 error: Property "dataItems" was not found in "DataSet". Make sure your query is correct.
|
|
32
|
+
2023-05-13T00:50:41+09:00 error: Property "dataItems" was not found in "DataSet". Make sure your query is correct.
|
|
33
|
+
2023-05-13T00:52:27+09:00 error: oracledb module loading failed
|
|
34
|
+
2023-05-13T00:52:28+09:00 info: Default DataSource established
|
|
35
|
+
2023-05-13T00:52:28+09:00 info: Transaction DataSource established
|
|
36
|
+
2023-05-13T00:52:29+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
37
|
+
2023-05-13T00:52:29+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
2023-05-13T01:11:09+09:00 error: oracledb module loading failed
|
|
2
|
+
2023-05-13T01:11:10+09:00 info: Default DataSource established
|
|
3
|
+
2023-05-13T01:11:11+09:00 info: Transaction DataSource established
|
|
4
|
+
2023-05-13T01:11:12+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
5
|
+
2023-05-13T01:11:12+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
2023-05-13T02:42:11+09:00 error: oracledb module loading failed
|
|
2
|
+
2023-05-13T02:42:12+09:00 info: Default DataSource established
|
|
3
|
+
2023-05-13T02:42:12+09:00 info: Transaction DataSource established
|
|
4
|
+
2023-05-13T02:42:13+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
5
|
+
2023-05-13T02:42:13+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
2023-05-13T03:00:35+09:00 error: Cannot query field "dataSet" on type "DataKeySet".
|
|
2
|
+
2023-05-13T03:36:28+09:00 error: oracledb module loading failed
|
|
3
|
+
2023-05-13T03:36:29+09:00 info: Default DataSource established
|
|
4
|
+
2023-05-13T03:36:29+09:00 info: Transaction DataSource established
|
|
5
|
+
2023-05-13T03:36:30+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
6
|
+
2023-05-13T03:36:30+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
7
|
+
2023-05-13T03:51:54+09:00 error: oracledb module loading failed
|
|
8
|
+
2023-05-13T03:51:55+09:00 info: Default DataSource established
|
|
9
|
+
2023-05-13T03:51:56+09:00 info: Transaction DataSource established
|
|
10
|
+
2023-05-13T03:51:57+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
11
|
+
2023-05-13T03:51:57+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
12
|
+
2023-05-13T03:54:35+09:00 error: oracledb module loading failed
|
|
13
|
+
2023-05-13T03:54:36+09:00 info: Default DataSource established
|
|
14
|
+
2023-05-13T03:54:36+09:00 info: Transaction DataSource established
|
|
15
|
+
2023-05-13T03:54:37+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
16
|
+
2023-05-13T03:54:37+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
17
|
+
2023-05-13T03:58:41+09:00 error: Variable "$dataSetId" is not defined.
|
|
18
|
+
2023-05-13T03:58:41+09:00 error: Variable "$dataKeySetId" is never used.
|
|
19
|
+
2023-05-13T03:58:41+09:00 error: Variable "$dataSetId" is not defined.
|
|
20
|
+
2023-05-13T03:58:41+09:00 error: Variable "$dataKeySetId" is never used.
|
|
21
|
+
2023-05-13T03:58:43+09:00 error: Variable "$dataSetId" is not defined.
|
|
22
|
+
2023-05-13T03:58:43+09:00 error: Variable "$dataKeySetId" is never used.
|
|
23
|
+
2023-05-13T03:58:44+09:00 error: Variable "$dataSetId" is not defined.
|
|
24
|
+
2023-05-13T03:58:44+09:00 error: Variable "$dataKeySetId" is never used.
|
|
25
|
+
2023-05-13T03:58:44+09:00 error: Variable "$dataSetId" is not defined.
|
|
26
|
+
2023-05-13T03:58:44+09:00 error: Variable "$dataKeySetId" is never used.
|
|
27
|
+
2023-05-13T03:59:04+09:00 error: Variable "$dataSetId" is not defined.
|
|
28
|
+
2023-05-13T03:59:04+09:00 error: Variable "$dataKeySetId" is never used.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
2023-05-13T04:00:29+09:00 error: Variable "$dataSetId" is not defined.
|
|
2
|
+
2023-05-13T04:00:29+09:00 error: Variable "$dataKeySetId" is never used.
|
|
3
|
+
2023-05-13T04:00:29+09:00 error: Variable "$dataSetId" is not defined.
|
|
4
|
+
2023-05-13T04:00:29+09:00 error: Variable "$dataKeySetId" is never used.
|
|
5
|
+
2023-05-13T04:00:46+09:00 error: "summary" alias was not found. Maybe you forgot to join it?
|
|
6
|
+
2023-05-13T04:00:46+09:00 error: "summary" alias was not found. Maybe you forgot to join it?
|
|
7
|
+
2023-05-13T04:01:51+09:00 error: oracledb module loading failed
|
|
8
|
+
2023-05-13T04:01:52+09:00 info: Default DataSource established
|
|
9
|
+
2023-05-13T04:01:53+09:00 info: Transaction DataSource established
|
|
10
|
+
2023-05-13T04:01:54+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
11
|
+
2023-05-13T04:01:54+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
2023-05-12T23:52:37+09:00 info: File Storage is Ready.
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
2023-05-13T00:12:32+09:00 info: File Storage is Ready.
|
|
2
|
+
2023-05-13T00:20:25+09:00 info: File Storage is Ready.
|
|
3
|
+
2023-05-13T00:29:23+09:00 info: File Storage is Ready.
|
|
4
|
+
2023-05-13T00:31:06+09:00 info: File Storage is Ready.
|
|
5
|
+
2023-05-13T00:32:51+09:00 info: File Storage is Ready.
|
|
6
|
+
2023-05-13T00:48:30+09:00 info: File Storage is Ready.
|
|
7
|
+
2023-05-13T00:52:26+09:00 info: File Storage is Ready.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
2023-05-13T01:11:09+09:00 info: File Storage is Ready.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
2023-05-13T02:42:10+09:00 info: File Storage is Ready.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
2023-05-13T04:01:50+09:00 info: File Storage is Ready.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/operato-dataset",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.76",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
7
7
|
"thingsFactoryConfig": "things-factory.config.ts",
|
|
8
8
|
"author": "heartyoh <heartyoh@hatiolab.com>",
|
|
9
9
|
"description": "Operato Dataset - dataset, collecting, logging",
|
|
10
|
+
"license": "MIT",
|
|
10
11
|
"publishConfig": {
|
|
11
12
|
"access": "public",
|
|
12
13
|
"@things-factory:registry": "https://registry.npmjs.org"
|
|
@@ -56,40 +57,40 @@
|
|
|
56
57
|
"@operato/scene-table": "^1.0.0",
|
|
57
58
|
"@operato/scene-timer": "^1.0.0",
|
|
58
59
|
"@operato/shell": "^1.2.6",
|
|
59
|
-
"@things-factory/api": "^6.0.
|
|
60
|
-
"@things-factory/apptool-base": "^6.0.
|
|
61
|
-
"@things-factory/apptool-ui": "^6.0.
|
|
62
|
-
"@things-factory/auth-base": "^6.0.
|
|
63
|
-
"@things-factory/auth-ui": "^6.0.
|
|
64
|
-
"@things-factory/board-service": "^6.0.
|
|
65
|
-
"@things-factory/board-ui": "^6.0.
|
|
66
|
-
"@things-factory/ccp": "^6.0.
|
|
67
|
-
"@things-factory/context-ui": "^6.0.
|
|
68
|
-
"@things-factory/dashboard": "^6.0.
|
|
69
|
-
"@things-factory/dataset": "^6.0.
|
|
70
|
-
"@things-factory/export-ui": "^6.0.
|
|
71
|
-
"@things-factory/help": "^6.0.
|
|
72
|
-
"@things-factory/i18n-base": "^6.0.
|
|
73
|
-
"@things-factory/integration-base": "^6.0.
|
|
74
|
-
"@things-factory/integration-msgraph": "^6.0.
|
|
75
|
-
"@things-factory/integration-ui": "^6.0.
|
|
76
|
-
"@things-factory/lite-menu": "^6.0.
|
|
77
|
-
"@things-factory/more-base": "^6.0.
|
|
78
|
-
"@things-factory/more-ui": "^6.0.
|
|
79
|
-
"@things-factory/notification": "^6.0.
|
|
80
|
-
"@things-factory/oauth2-client": "^6.0.
|
|
81
|
-
"@things-factory/organization": "^6.0.
|
|
82
|
-
"@things-factory/qc": "^6.0.
|
|
83
|
-
"@things-factory/resource-ui": "^6.0.
|
|
84
|
-
"@things-factory/setting-base": "^6.0.
|
|
85
|
-
"@things-factory/setting-ui": "^6.0.
|
|
86
|
-
"@things-factory/shell": "^6.0.
|
|
87
|
-
"@things-factory/system-ui": "^6.0.
|
|
88
|
-
"@things-factory/work-shift": "^6.0.
|
|
89
|
-
"@things-factory/worklist": "^6.0.
|
|
60
|
+
"@things-factory/api": "^6.0.76",
|
|
61
|
+
"@things-factory/apptool-base": "^6.0.76",
|
|
62
|
+
"@things-factory/apptool-ui": "^6.0.76",
|
|
63
|
+
"@things-factory/auth-base": "^6.0.76",
|
|
64
|
+
"@things-factory/auth-ui": "^6.0.76",
|
|
65
|
+
"@things-factory/board-service": "^6.0.76",
|
|
66
|
+
"@things-factory/board-ui": "^6.0.76",
|
|
67
|
+
"@things-factory/ccp": "^6.0.76",
|
|
68
|
+
"@things-factory/context-ui": "^6.0.76",
|
|
69
|
+
"@things-factory/dashboard": "^6.0.76",
|
|
70
|
+
"@things-factory/dataset": "^6.0.76",
|
|
71
|
+
"@things-factory/export-ui": "^6.0.76",
|
|
72
|
+
"@things-factory/help": "^6.0.76",
|
|
73
|
+
"@things-factory/i18n-base": "^6.0.76",
|
|
74
|
+
"@things-factory/integration-base": "^6.0.76",
|
|
75
|
+
"@things-factory/integration-msgraph": "^6.0.76",
|
|
76
|
+
"@things-factory/integration-ui": "^6.0.76",
|
|
77
|
+
"@things-factory/lite-menu": "^6.0.76",
|
|
78
|
+
"@things-factory/more-base": "^6.0.76",
|
|
79
|
+
"@things-factory/more-ui": "^6.0.76",
|
|
80
|
+
"@things-factory/notification": "^6.0.76",
|
|
81
|
+
"@things-factory/oauth2-client": "^6.0.76",
|
|
82
|
+
"@things-factory/organization": "^6.0.76",
|
|
83
|
+
"@things-factory/qc": "^6.0.76",
|
|
84
|
+
"@things-factory/resource-ui": "^6.0.76",
|
|
85
|
+
"@things-factory/setting-base": "^6.0.76",
|
|
86
|
+
"@things-factory/setting-ui": "^6.0.76",
|
|
87
|
+
"@things-factory/shell": "^6.0.76",
|
|
88
|
+
"@things-factory/system-ui": "^6.0.76",
|
|
89
|
+
"@things-factory/work-shift": "^6.0.76",
|
|
90
|
+
"@things-factory/worklist": "^6.0.76"
|
|
90
91
|
},
|
|
91
92
|
"devDependencies": {
|
|
92
|
-
"@things-factory/builder": "^6.0.
|
|
93
|
+
"@things-factory/builder": "^6.0.76"
|
|
93
94
|
},
|
|
94
|
-
"gitHead": "
|
|
95
|
+
"gitHead": "9764b72a970f16771840811199df6a29e1dc7a30"
|
|
95
96
|
}
|
package/schema.gql
CHANGED
|
@@ -826,6 +826,11 @@ type DataItem {
|
|
|
826
826
|
options: Object
|
|
827
827
|
quota: Int
|
|
828
828
|
spec: Object
|
|
829
|
+
|
|
830
|
+
"""
|
|
831
|
+
The grouping logic for data summarization in the given field during periodic task deadlines.
|
|
832
|
+
"""
|
|
833
|
+
stat: String
|
|
829
834
|
tag: String
|
|
830
835
|
type: String
|
|
831
836
|
unit: String
|
|
@@ -839,6 +844,11 @@ input DataItemPatch {
|
|
|
839
844
|
options: Object
|
|
840
845
|
quota: Int
|
|
841
846
|
spec: Object
|
|
847
|
+
|
|
848
|
+
"""
|
|
849
|
+
The grouping logic for data summarization in the given field during periodic task deadlines.
|
|
850
|
+
"""
|
|
851
|
+
stat: String
|
|
842
852
|
tag: String
|
|
843
853
|
type: DataItemType
|
|
844
854
|
unit: String
|
|
@@ -1194,6 +1204,11 @@ type DataSummary {
|
|
|
1194
1204
|
countOos: Float
|
|
1195
1205
|
createdAt: Timestamp
|
|
1196
1206
|
creator: User
|
|
1207
|
+
data01: Float
|
|
1208
|
+
data02: Float
|
|
1209
|
+
data03: Float
|
|
1210
|
+
data04: Float
|
|
1211
|
+
data05: Float
|
|
1197
1212
|
dataItems: [DataItem!]
|
|
1198
1213
|
dataSet: DataSet!
|
|
1199
1214
|
dataSetVersion: Float
|
|
@@ -2639,6 +2654,9 @@ type Mutation {
|
|
|
2639
2654
|
"""To start new scenario instance"""
|
|
2640
2655
|
startScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstance!
|
|
2641
2656
|
|
|
2657
|
+
"""To start posting scenario based on the schedule of the given scenario"""
|
|
2658
|
+
startScenarioSchedule(scenarioId: String!): Scenario!
|
|
2659
|
+
|
|
2642
2660
|
"""To stop posting activity based on the schedule of the given activity"""
|
|
2643
2661
|
stopActivitySchedule(activityId: String!): Activity
|
|
2644
2662
|
|
|
@@ -2648,6 +2666,9 @@ type Mutation {
|
|
|
2648
2666
|
"""To start new scenario instance"""
|
|
2649
2667
|
stopScenario(instanceName: String): ScenarioInstance
|
|
2650
2668
|
|
|
2669
|
+
"""To stop posting scenario based on the schedule of the given scenario"""
|
|
2670
|
+
stopScenarioSchedule(scenarioId: String!): Scenario
|
|
2671
|
+
|
|
2651
2672
|
"""To submit a ActivityThread"""
|
|
2652
2673
|
submitActivityThread(id: String!, output: Object, reason: String): ActivityThread!
|
|
2653
2674
|
|
|
@@ -3877,6 +3898,9 @@ type Query {
|
|
|
3877
3898
|
"""To fetch multiple data samples by data key set"""
|
|
3878
3899
|
dataSamplesByDataKeySet(dataKeySetId: String!, filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DataSampleList!
|
|
3879
3900
|
|
|
3901
|
+
"""To fetch multiple data samples by data set"""
|
|
3902
|
+
dataSamplesByDataSet(dataSetId: String!, filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DataSampleList!
|
|
3903
|
+
|
|
3880
3904
|
"""To fetch a DataSensor"""
|
|
3881
3905
|
dataSensor(id: String!): DataSensor!
|
|
3882
3906
|
|
|
@@ -3886,6 +3910,9 @@ type Query {
|
|
|
3886
3910
|
"""To fetch a DataSet"""
|
|
3887
3911
|
dataSet(id: String!): DataSet!
|
|
3888
3912
|
|
|
3913
|
+
"""To fetch a DataSet by name"""
|
|
3914
|
+
dataSetByName(name: String!): DataSet!
|
|
3915
|
+
|
|
3889
3916
|
"""To fetch multiple DataSetHistories"""
|
|
3890
3917
|
dataSetHistories(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DataSetHistoryList!
|
|
3891
3918
|
|
|
@@ -3913,6 +3940,9 @@ type Query {
|
|
|
3913
3940
|
"""To fetch multiple data summaries by data key set"""
|
|
3914
3941
|
dataSummariesByDataKeySet(dataKeySetId: String!, filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DataSummaryList!
|
|
3915
3942
|
|
|
3943
|
+
"""To fetch multiple data summaries by data set"""
|
|
3944
|
+
dataSummariesByDataSet(dataSetId: String!, filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DataSummaryList!
|
|
3945
|
+
|
|
3916
3946
|
"""To fetch a DataSummary"""
|
|
3917
3947
|
dataSummary(id: String!): DataSummary
|
|
3918
3948
|
|
|
@@ -3969,6 +3999,9 @@ type Query {
|
|
|
3969
3999
|
|
|
3970
4000
|
"""To fetch a work date and work shift for given datetime"""
|
|
3971
4001
|
getWorkDateAndShift(dateTime: Timestamp!): WorkDateWorkShiftPair!
|
|
4002
|
+
|
|
4003
|
+
"""To fetch a Global Board Model"""
|
|
4004
|
+
globalBoardByName(name: String!): Board
|
|
3972
4005
|
grantedRoles: [GrantedRole!]!
|
|
3973
4006
|
grantingRoles(customerId: String!): [GrantedRole!]!
|
|
3974
4007
|
|
|
@@ -4204,6 +4237,7 @@ type Scenario {
|
|
|
4204
4237
|
instances: [ScenarioInstance!]
|
|
4205
4238
|
name: String!
|
|
4206
4239
|
schedule: String
|
|
4240
|
+
scheduleId: String
|
|
4207
4241
|
state: String
|
|
4208
4242
|
steps: [Step!]
|
|
4209
4243
|
timezone: String
|
package/yarn-error.log
CHANGED
|
@@ -36,7 +36,8 @@ npm manifest:
|
|
|
36
36
|
"thingsFactoryConfig": "things-factory.config.ts",
|
|
37
37
|
"author": "heartyoh <heartyoh@hatiolab.com>",
|
|
38
38
|
"description": "Operato Dataset - dataset, collecting, logging",
|
|
39
|
-
"
|
|
39
|
+
"license": "MIT",
|
|
40
|
+
"publishConfig": {
|
|
40
41
|
"access": "public",
|
|
41
42
|
"@things-factory:registry": "https://registry.npmjs.org"
|
|
42
43
|
},
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
2023-05-06T18:05:24+09:00 error: oracledb module loading failed
|
|
2
|
-
2023-05-06T18:05:25+09:00 info: Default DataSource established
|
|
3
|
-
2023-05-06T18:05:26+09:00 info: Transaction DataSource established
|
|
4
|
-
2023-05-06T18:05:27+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
5
|
-
2023-05-06T18:05:27+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
6
|
-
2023-05-06T18:12:18+09:00 error: oracledb module loading failed
|
|
7
|
-
2023-05-06T18:12:19+09:00 info: Default DataSource established
|
|
8
|
-
2023-05-06T18:12:20+09:00 info: Transaction DataSource established
|
|
9
|
-
2023-05-06T18:12:21+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
10
|
-
2023-05-06T18:12:21+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
11
|
-
2023-05-06T18:12:49+09:00 error: stream is not readable
|
|
12
|
-
2023-05-06T18:12:49+09:00 error: stream is not readable
|
|
13
|
-
2023-05-06T18:12:49+09:00 error: stream is not readable
|
|
14
|
-
2023-05-06T18:12:49+09:00 error: stream is not readable
|
|
15
|
-
2023-05-06T18:12:49+09:00 error: stream is not readable
|
|
16
|
-
2023-05-06T18:12:49+09:00 error: stream is not readable
|
|
17
|
-
2023-05-06T18:12:49+09:00 error: stream is not readable
|
|
18
|
-
2023-05-06T18:16:14+09:00 error: Cannot query field "id" on type "DataItem".
|
|
19
|
-
2023-05-06T18:16:35+09:00 error: Cannot return null for non-nullable field Mutation.generateDataSummaries.
|
|
20
|
-
2023-05-06T18:17:39+09:00 error: oracledb module loading failed
|
|
21
|
-
2023-05-06T18:17:40+09:00 info: Default DataSource established
|
|
22
|
-
2023-05-06T18:17:40+09:00 info: Transaction DataSource established
|
|
23
|
-
2023-05-06T18:20:41+09:00 error: oracledb module loading failed
|
|
24
|
-
2023-05-06T18:20:42+09:00 info: Default DataSource established
|
|
25
|
-
2023-05-06T18:20:42+09:00 info: Transaction DataSource established
|
|
26
|
-
2023-05-06T18:21:32+09:00 error: oracledb module loading failed
|
|
27
|
-
2023-05-06T18:21:33+09:00 info: Default DataSource established
|
|
28
|
-
2023-05-06T18:21:33+09:00 info: Transaction DataSource established
|
|
29
|
-
2023-05-06T18:21:34+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
30
|
-
2023-05-06T18:21:34+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
31
|
-
2023-05-06T18:22:21+09:00 error: Field "generateDataSummaries" must not have a selection since type "Boolean!" has no subfields.
|
|
32
|
-
2023-05-06T18:27:11+09:00 error: oracledb module loading failed
|
|
33
|
-
2023-05-06T18:27:12+09:00 info: Default DataSource established
|
|
34
|
-
2023-05-06T18:27:12+09:00 info: Transaction DataSource established
|
|
35
|
-
2023-05-06T18:27:13+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
36
|
-
2023-05-06T18:27:13+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
37
|
-
2023-05-06T18:32:33+09:00 error: oracledb module loading failed
|
|
38
|
-
2023-05-06T18:32:34+09:00 info: Default DataSource established
|
|
39
|
-
2023-05-06T18:32:34+09:00 info: Transaction DataSource established
|
|
40
|
-
2023-05-06T18:32:35+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
41
|
-
2023-05-06T18:32:35+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
42
|
-
2023-05-06T18:32:44+09:00 error: SQLITE_ERROR: ON CONFLICT clause does not match any PRIMARY KEY or UNIQUE constraint
|
|
43
|
-
2023-05-06T18:38:04+09:00 error: oracledb module loading failed
|
|
44
|
-
2023-05-06T18:38:05+09:00 info: Default DataSource established
|
|
45
|
-
2023-05-06T18:38:05+09:00 info: Transaction DataSource established
|
|
46
|
-
2023-05-06T18:38:06+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
47
|
-
2023-05-06T18:38:06+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
48
|
-
2023-05-06T18:38:36+09:00 error: SQLITE_ERROR: ON CONFLICT clause does not match any PRIMARY KEY or UNIQUE constraint
|
|
49
|
-
2023-05-06T18:43:41+09:00 error: oracledb module loading failed
|
|
50
|
-
2023-05-06T18:43:42+09:00 info: Default DataSource established
|
|
51
|
-
2023-05-06T18:43:43+09:00 info: Transaction DataSource established
|
|
52
|
-
2023-05-06T18:43:44+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
53
|
-
2023-05-06T18:43:44+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
54
|
-
2023-05-06T18:47:00+09:00 error: oracledb module loading failed
|
|
55
|
-
2023-05-06T18:47:01+09:00 info: Default DataSource established
|
|
56
|
-
2023-05-06T18:47:01+09:00 info: Transaction DataSource established
|
|
57
|
-
2023-05-06T18:47:02+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
58
|
-
2023-05-06T18:47:02+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
2023-05-06T20:30:34+09:00 error: oracledb module loading failed
|
|
2
|
-
2023-05-06T20:30:35+09:00 info: Default DataSource established
|
|
3
|
-
2023-05-06T20:30:35+09:00 info: Transaction DataSource established
|
|
4
|
-
2023-05-06T20:30:36+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
5
|
-
2023-05-06T20:30:36+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
6
|
-
2023-05-06T20:31:54+09:00 error: Cannot query field "data" on type "DataSummary".
|
|
7
|
-
2023-05-06T20:31:58+09:00 error: Cannot query field "data" on type "DataSummary".
|
|
8
|
-
2023-05-06T20:35:06+09:00 error: SQLITE_ERROR: no such column: DataSummary.collectedAt
|
|
9
|
-
2023-05-06T20:53:18+09:00 error: SQLITE_BUSY: database is locked
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
2023-05-06T18:05:23+09:00 info: File Storage is Ready.
|
|
2
|
-
2023-05-06T18:12:17+09:00 info: File Storage is Ready.
|
|
3
|
-
2023-05-06T18:17:38+09:00 info: File Storage is Ready.
|
|
4
|
-
2023-05-06T18:20:40+09:00 info: File Storage is Ready.
|
|
5
|
-
2023-05-06T18:21:31+09:00 info: File Storage is Ready.
|
|
6
|
-
2023-05-06T18:27:10+09:00 info: File Storage is Ready.
|
|
7
|
-
2023-05-06T18:32:32+09:00 info: File Storage is Ready.
|
|
8
|
-
2023-05-06T18:38:03+09:00 info: File Storage is Ready.
|
|
9
|
-
2023-05-06T18:43:40+09:00 info: File Storage is Ready.
|
|
10
|
-
2023-05-06T18:46:59+09:00 info: File Storage is Ready.
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
2023-05-06T20:30:33+09:00 info: File Storage is Ready.
|
|
File without changes
|
|
File without changes
|