@things-factory/operato-gangsters 6.0.13 → 6.0.15

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.
Files changed (46) hide show
  1. package/client/menu.ts +9 -28
  2. package/client/update-badge.ts +115 -0
  3. package/db.sqlite +0 -0
  4. package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +36 -86
  5. package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +30 -0
  6. package/logs/application-2023-03-12-03.log +19 -0
  7. package/logs/application-2023-03-12-04.log +10 -0
  8. package/logs/application-2023-03-12-05.log +10 -0
  9. package/logs/application-2023-03-12-11.log +19 -0
  10. package/logs/application-2023-03-12-12.log +4 -0
  11. package/logs/application-2023-03-12-13.log +2 -0
  12. package/logs/application-2023-03-12-14.log +2 -0
  13. package/logs/application-2023-03-12-15.log +10 -0
  14. package/logs/application-2023-03-12-16.log +28 -0
  15. package/logs/application-2023-03-12-20.log +3 -0
  16. package/logs/application-2023-03-13-00.log +2 -0
  17. package/logs/application-2023-03-13-01.log +5 -0
  18. package/logs/connections-2023-03-12-03.log +0 -0
  19. package/logs/connections-2023-03-12-04.log +0 -0
  20. package/logs/connections-2023-03-12-05.log +0 -0
  21. package/logs/connections-2023-03-12-11.log +0 -0
  22. package/logs/connections-2023-03-12-15.log +0 -0
  23. package/logs/connections-2023-03-12-16.log +0 -0
  24. package/package.json +7 -7
  25. package/logs/application-2023-03-07-15.log +0 -1
  26. package/logs/application-2023-03-08-00.log +0 -1
  27. package/logs/application-2023-03-08-08.log +0 -21
  28. package/logs/application-2023-03-08-09.log +0 -48
  29. package/logs/application-2023-03-08-10.log +0 -5
  30. package/logs/application-2023-03-08-11.log +0 -7
  31. package/logs/application-2023-03-08-12.log +0 -11
  32. package/logs/application-2023-03-08-13.log +0 -26
  33. package/logs/application-2023-03-08-14.log +0 -29
  34. package/logs/application-2023-03-08-15.log +0 -21
  35. package/logs/application-2023-03-08-17.log +0 -5
  36. package/logs/application-2023-03-08-18.log +0 -9
  37. package/logs/application-2023-03-08-19.log +0 -1
  38. package/logs/application-2023-03-08-20.log +0 -1
  39. package/logs/application-2023-03-08-21.log +0 -2
  40. package/logs/application-2023-03-08-22.log +0 -5
  41. package/logs/application-2023-03-08-23.log +0 -64
  42. package/logs/application-2023-03-09-00.log +0 -12
  43. package/logs/application-2023-03-09-07.log +0 -5
  44. package/logs/application-2023-03-09-08.log +0 -11
  45. package/logs/application-2023-03-09-09.log +0 -2
  46. package/logs/application-2023-03-09-16.log +0 -1
package/client/menu.ts CHANGED
@@ -1,33 +1,10 @@
1
- import gql from 'graphql-tag'
1
+ import { asyncReplace } from 'lit/directives/async-replace.js'
2
2
  import i18next from 'i18next'
3
-
4
- import { subscribe } from '@operato/graphql'
5
-
6
- async function subscribeActivityInstance() {
7
- return await subscribe(
8
- {
9
- query: gql`
10
- subscription {
11
- activityInstance {
12
- name
13
- }
14
- }
15
- `
16
- },
17
- {
18
- next: async ({ data }) => {
19
- if (data) {
20
- var { name } = data.activityInstance
21
- console.log('activity-instance', name)
22
- }
23
- }
24
- }
25
- )
26
- }
3
+ import { updateBadge, subscribeActivityEvents } from './update-badge'
27
4
 
28
5
  export function getMenuTemplate(owner) {
29
6
  requestAnimationFrame(async () => {
30
- const subscriber = await subscribeActivityInstance()
7
+ await subscribeActivityEvents()
31
8
  })
32
9
 
33
10
  return [
@@ -35,23 +12,27 @@ export function getMenuTemplate(owner) {
35
12
  name: '내 업무함',
36
13
  icon: 'inventory',
37
14
  path: 'todo-list',
15
+ badge: () => asyncReplace(updateBadge('numberOfToDos')),
38
16
  active: ({ path }) => /^activity\//.test(path)
39
17
  },
40
18
  {
41
19
  name: '내 결재함',
42
20
  icon: 'inventory',
43
21
  path: 'approval-waiting-list',
22
+ badge: () => asyncReplace(updateBadge('numberOfApprovalWaitings')),
44
23
  active: ({ path }) => /^approval\//.test(path)
45
24
  },
46
25
  {
47
26
  name: '업무 뱅크',
48
27
  icon: 'content_paste_search',
49
- path: 'pickable-list'
28
+ path: 'pickable-list',
29
+ badge: () => asyncReplace(updateBadge('numberOfPicks'))
50
30
  },
51
31
  {
52
32
  name: '작성중인 업무',
53
33
  icon: 'edit_calendar',
54
- path: 'draft-list'
34
+ path: 'draft-list',
35
+ badge: () => asyncReplace(updateBadge('numberOfDrafts'))
55
36
  },
56
37
  {
57
38
  name: '업무 진행 이력',
@@ -0,0 +1,115 @@
1
+ import debounce from 'lodash-es/debounce'
2
+ import gql from 'graphql-tag'
3
+ import { client, subscribe } from '@operato/graphql'
4
+ import { AsyncLock } from '@operato/utils'
5
+
6
+ async function subscribeActivityInstance() {
7
+ return await subscribe(
8
+ {
9
+ query: gql`
10
+ subscription {
11
+ activityInstance {
12
+ name
13
+ }
14
+ }
15
+ `
16
+ },
17
+ {
18
+ next: async ({ data }) => {
19
+ if (data) {
20
+ fetchActivitySummary()
21
+ }
22
+ }
23
+ }
24
+ )
25
+ }
26
+
27
+ async function subscribeActivityThread() {
28
+ return await subscribe(
29
+ {
30
+ query: gql`
31
+ subscription {
32
+ activityThread {
33
+ transaction
34
+ }
35
+ }
36
+ `
37
+ },
38
+ {
39
+ next: async ({ data }) => {
40
+ if (data) {
41
+ fetchActivitySummary()
42
+ }
43
+ }
44
+ }
45
+ )
46
+ }
47
+
48
+ async function subscribeActivityApproval() {
49
+ return await subscribe(
50
+ {
51
+ query: gql`
52
+ subscription {
53
+ activityApproval {
54
+ judgment
55
+ }
56
+ }
57
+ `
58
+ },
59
+ {
60
+ next: async ({ data }) => {
61
+ if (data) {
62
+ fetchActivitySummary()
63
+ }
64
+ }
65
+ }
66
+ )
67
+ }
68
+
69
+ var badges = {
70
+ numberOfToDos: new AsyncLock(),
71
+ numberOfApprovalWaitings: new AsyncLock(),
72
+ numberOfPicks: new AsyncLock(),
73
+ numberOfDrafts: new AsyncLock()
74
+ }
75
+
76
+ const fetchActivitySummary = debounce(async () => {
77
+ const response = await client.query({
78
+ query: gql`
79
+ query {
80
+ activitySummary {
81
+ numberOfToDos
82
+ numberOfApprovalWaitings
83
+ numberOfPicks
84
+ numberOfDrafts
85
+ }
86
+ }
87
+ `
88
+ })
89
+
90
+ if (response.data) {
91
+ const { numberOfToDos, numberOfApprovalWaitings, numberOfPicks, numberOfDrafts } = response.data.activitySummary
92
+
93
+ badges['numberOfToDos'].unlock(numberOfToDos)
94
+ badges['numberOfApprovalWaitings'].unlock(numberOfApprovalWaitings)
95
+ badges['numberOfPicks'].unlock(numberOfPicks)
96
+ badges['numberOfDrafts'].unlock(numberOfDrafts)
97
+ }
98
+ }, 1000)
99
+
100
+ export async function* updateBadge(name: string) {
101
+ badges[name] = new AsyncLock()
102
+
103
+ while (true) {
104
+ badges[name].lock()
105
+ yield await badges[name].promise
106
+ }
107
+ }
108
+
109
+ export async function subscribeActivityEvents() {
110
+ await subscribeActivityInstance()
111
+ await subscribeActivityThread()
112
+ await subscribeActivityApproval()
113
+
114
+ fetchActivitySummary()
115
+ }
package/db.sqlite CHANGED
Binary file
@@ -6,114 +6,64 @@
6
6
  "auditLog": "logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json",
7
7
  "files": [
8
8
  {
9
- "date": 1678202817141,
10
- "name": "logs/application-2023-03-08-00.log",
11
- "hash": "a339c7d6d97e616529bcc8f758270e76274a60907eb588e7be0f372fde377156"
9
+ "date": 1678590978691,
10
+ "name": "logs/application-2023-03-12-12.log",
11
+ "hash": "015cf72898234b19ac6a7c993aba3b761bb441d33bc0e7a0263d4d5b393142da"
12
12
  },
13
13
  {
14
- "date": 1678202818043,
15
- "name": "logs/application-2023-03-07-15.log",
16
- "hash": "602919d3d491ed368f3844efcf999b624553b0f60ef2e02b926f8e81072ab1e4"
14
+ "date": 1678590980056,
15
+ "name": "logs/application-2023-03-12-03.log",
16
+ "hash": "208d9fe0cedb89ccd3d02b444a300ffb232c96e69ae1504fe67dbf295c4d3548"
17
17
  },
18
18
  {
19
- "date": 1678265175904,
20
- "name": "logs/application-2023-03-08-17.log",
21
- "hash": "c6f443460f2c3f938393d0ed98e666b9dfd1a59afce0cfb7a3d61e0e20e6793c"
19
+ "date": 1678595421774,
20
+ "name": "logs/application-2023-03-12-13.log",
21
+ "hash": "0da5ed485968ebfb009333506580c8074de107748de30e56b2c4b603839498b1"
22
22
  },
23
23
  {
24
- "date": 1678265177376,
25
- "name": "logs/application-2023-03-08-08.log",
26
- "hash": "b093a9cf93836760c0ff9d5f0e2a6014367097c6ce38a5a8c6be44afb760e57f"
24
+ "date": 1678595423098,
25
+ "name": "logs/application-2023-03-12-04.log",
26
+ "hash": "ad8559c376db0c8f99652e76789aa14d45834706933a2996146f058352311c8d"
27
27
  },
28
28
  {
29
- "date": 1678266009300,
30
- "name": "logs/application-2023-03-08-18.log",
31
- "hash": "817a1fc8fadc078394c4d42a61cb999b1c3554fcf1cc50a7c26a42d87b78ea82"
29
+ "date": 1678598088236,
30
+ "name": "logs/application-2023-03-12-14.log",
31
+ "hash": "29b6666164b4482ad98e7e160556b5fb1ed99bc502bcea222a5a51fc221279fc"
32
32
  },
33
33
  {
34
- "date": 1678266010458,
35
- "name": "logs/application-2023-03-08-09.log",
36
- "hash": "7977de9886b189a8834242ee7066aa972bd6ac266e6024c06e8408f3b36c162e"
34
+ "date": 1678598089599,
35
+ "name": "logs/application-2023-03-12-05.log",
36
+ "hash": "1f28258ca4f92fef97fa9311ec3492fd0ace92120c9ad2871b72432d45a6577a"
37
37
  },
38
38
  {
39
- "date": 1678269758127,
40
- "name": "logs/application-2023-03-08-19.log",
41
- "hash": "7fc1d75dc01961cc07e7d76fe7149294143a34b800d21512d84965f751e53648"
39
+ "date": 1678620418064,
40
+ "name": "logs/application-2023-03-12-11.log",
41
+ "hash": "83e8aa164b82a0d18c3aab55becb6dbf41f8526bcca47832f857fb3bce12c234"
42
42
  },
43
43
  {
44
- "date": 1678269759735,
45
- "name": "logs/application-2023-03-08-10.log",
46
- "hash": "db9947f4f90fd53fd08a182c4f640dcc714cdfc5820a23240fef20d6763f1d4d"
44
+ "date": 1678620498594,
45
+ "name": "logs/application-2023-03-12-20.log",
46
+ "hash": "821924930315d686b32e27738bb353385ce696e604faf0f8b45c0bb1227104e7"
47
47
  },
48
48
  {
49
- "date": 1678276231030,
50
- "name": "logs/application-2023-03-08-20.log",
51
- "hash": "1a54053a63f1f5e8ee3e153ddeb81d5b72ccf645b6f013aff79a251ac1c572ab"
49
+ "date": 1678634636285,
50
+ "name": "logs/application-2023-03-13-00.log",
51
+ "hash": "a3f093e84b8b0fef5a7dc396f14ada946f9ebe194c66286e8a1b3368491108c6"
52
52
  },
53
53
  {
54
- "date": 1678276232774,
55
- "name": "logs/application-2023-03-08-11.log",
56
- "hash": "7ef007f726eab049c4355068a123921e7e18ed456aec560300da2240f7cca11d"
54
+ "date": 1678634637848,
55
+ "name": "logs/application-2023-03-12-15.log",
56
+ "hash": "928faed83638fbbcae4975f9afb9434893d7e066a57405228f710d9e578cc0f5"
57
57
  },
58
58
  {
59
- "date": 1678278774679,
60
- "name": "logs/application-2023-03-08-21.log",
61
- "hash": "5e3b991893214b4b305eedff8e8aa7f5ff636ce807dde56b1767ee4db91324fd"
59
+ "date": 1678636835549,
60
+ "name": "logs/application-2023-03-13-01.log",
61
+ "hash": "ff9066c78a19c449ba4dee2a4d36ec557aa68efb77c52c69c458a097c702e981"
62
62
  },
63
63
  {
64
- "date": 1678278776501,
65
- "name": "logs/application-2023-03-08-12.log",
66
- "hash": "492c17ac99f42b073d936fbb27ee744a4a611de2c75ae0035890188d97ef640a"
67
- },
68
- {
69
- "date": 1678280439146,
70
- "name": "logs/application-2023-03-08-22.log",
71
- "hash": "5976a045b78d3490cff6c2c2a43ad9c91b51a6a7a14f0065f8f5fc4b3dbb6c63"
72
- },
73
- {
74
- "date": 1678280440984,
75
- "name": "logs/application-2023-03-08-13.log",
76
- "hash": "af5911a40cd931cd8c4d30d64de31f808fcafbecb612331dcc647e4af270ce13"
77
- },
78
- {
79
- "date": 1678284363476,
80
- "name": "logs/application-2023-03-08-23.log",
81
- "hash": "5bad09036330bd1007efbbe12bae555e8d62d29343eda15228d1a5c77aa999a8"
82
- },
83
- {
84
- "date": 1678284364812,
85
- "name": "logs/application-2023-03-08-14.log",
86
- "hash": "0e8209604b1718c9b0c9a202a0e2c05e681471e4e2c5152a91da53cc143e43fc"
87
- },
88
- {
89
- "date": 1678287645731,
90
- "name": "logs/application-2023-03-08-15.log",
91
- "hash": "5992da0273c48449c030e0182390c7c9c4f7e79ae52a0851cc62b1b2d79c0f18"
92
- },
93
- {
94
- "date": 1678288572853,
95
- "name": "logs/application-2023-03-09-00.log",
96
- "hash": "d742e2844f4b662937abcce9e7906a044c71ca437b3296e7361549bf3767be8b"
97
- },
98
- {
99
- "date": 1678316492218,
100
- "name": "logs/application-2023-03-09-08.log",
101
- "hash": "70a0974f6f38c5f1d6bd1037942c2a3b4c32522d20475ead29d2bcb5ef1c06e9"
102
- },
103
- {
104
- "date": 1678320196828,
105
- "name": "logs/application-2023-03-09-09.log",
106
- "hash": "d6d1f2b3b62f7f9318f30ff49ab12ff804c9edc7df5b776d6cc118df7993a469"
107
- },
108
- {
109
- "date": 1678347379074,
110
- "name": "logs/application-2023-03-09-16.log",
111
- "hash": "415cdcc7c8a2238a2454f537af2df230b9fd8a956b98c5e83a58896150cf0659"
112
- },
113
- {
114
- "date": 1678347381230,
115
- "name": "logs/application-2023-03-09-07.log",
116
- "hash": "45f70aab640014c992535bad1872c03098e26dcaa396db54250dc9c1aa20933c"
64
+ "date": 1678636837600,
65
+ "name": "logs/application-2023-03-12-16.log",
66
+ "hash": "fc63f2fe25434ff836321b748cfc0ce41c2ff62fc4d8b21cf8c5d269ca660076"
117
67
  }
118
68
  ],
119
69
  "hashType": "sha256"
@@ -64,6 +64,36 @@
64
64
  "date": 1678347380962,
65
65
  "name": "logs/connections-2023-03-09-07.log",
66
66
  "hash": "b8f8dabeb822dfc8abc01ad079effe94db21b4d19db8c806386e0391df8ddb30"
67
+ },
68
+ {
69
+ "date": 1678590979898,
70
+ "name": "logs/connections-2023-03-12-03.log",
71
+ "hash": "dca7957d2a3ee3d3f5b8b4391fef30b035476b4236e1eb290c5ea48d94ec3209"
72
+ },
73
+ {
74
+ "date": 1678595422941,
75
+ "name": "logs/connections-2023-03-12-04.log",
76
+ "hash": "8f9dd21052cd7aadb7f9642e81f4ce36238a0d1ade799335791d800de2e8bf08"
77
+ },
78
+ {
79
+ "date": 1678598089439,
80
+ "name": "logs/connections-2023-03-12-05.log",
81
+ "hash": "db3fd9fa0b12550adc59187976268545de912c6903737380a33fe176d41dc658"
82
+ },
83
+ {
84
+ "date": 1678620499823,
85
+ "name": "logs/connections-2023-03-12-11.log",
86
+ "hash": "d457ce63fb3313e8be7dfbff9d43660b112de34e56a16ee53e9d437ee4654d7e"
87
+ },
88
+ {
89
+ "date": 1678634637667,
90
+ "name": "logs/connections-2023-03-12-15.log",
91
+ "hash": "8fdf810209dd360b586e5097db1fb98cddaa4312b8d9cc63a454dbe24e9f5aa0"
92
+ },
93
+ {
94
+ "date": 1678636837180,
95
+ "name": "logs/connections-2023-03-12-16.log",
96
+ "hash": "6ad0c9972ffc84092cea57029064f493ba728aa085ed724f41e3492603420124"
67
97
  }
68
98
  ],
69
99
  "hashType": "sha256"
@@ -0,0 +1,19 @@
1
+ 2023-03-12T12:16:20+09:00 error: oracledb module loading failed
2
+ 2023-03-12T12:19:16+09:00 error: oracledb module loading failed
3
+ 2023-03-12T12:19:17+09:00 info: Default DataSource established
4
+ 2023-03-12T12:19:17+09:00 error: SQLITE_CONSTRAINT: NOT NULL constraint failed: temporary_activity_threads.version
5
+ 2023-03-12T12:19:17+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
+ 2023-03-12T12:19:17+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
7
+ 2023-03-12T12:20:33+09:00 error: SQLITE_ERROR: no such column: at.version
8
+ 2023-03-12T12:20:41+09:00 error: SQLITE_ERROR: no such column: at.version
9
+ 2023-03-12T12:20:55+09:00 error: SQLITE_ERROR: no such column: at.version
10
+ 2023-03-12T12:22:48+09:00 error: oracledb module loading failed
11
+ 2023-03-12T12:22:49+09:00 info: Default DataSource established
12
+ 2023-03-12T12:22:49+09:00 info: Transaction DataSource established
13
+ 2023-03-12T12:22:50+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
14
+ 2023-03-12T12:22:50+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
15
+ 2023-03-12T12:44:36+09:00 error: oracledb module loading failed
16
+ 2023-03-12T12:44:37+09:00 info: Default DataSource established
17
+ 2023-03-12T12:44:38+09:00 info: Transaction DataSource established
18
+ 2023-03-12T12:44:38+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
19
+ 2023-03-12T12:44:38+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -0,0 +1,10 @@
1
+ 2023-03-12T13:30:23+09:00 error: oracledb module loading failed
2
+ 2023-03-12T13:30:23+09:00 info: Default DataSource established
3
+ 2023-03-12T13:30:24+09:00 info: Transaction DataSource established
4
+ 2023-03-12T13:30:24+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
5
+ 2023-03-12T13:30:24+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
6
+ 2023-03-12T13:34:04+09:00 error: oracledb module loading failed
7
+ 2023-03-12T13:34:05+09:00 info: Default DataSource established
8
+ 2023-03-12T13:34:05+09:00 info: Transaction DataSource established
9
+ 2023-03-12T13:34:05+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
10
+ 2023-03-12T13:34:05+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -0,0 +1,10 @@
1
+ 2023-03-12T14:14:49+09:00 error: oracledb module loading failed
2
+ 2023-03-12T14:14:50+09:00 info: Default DataSource established
3
+ 2023-03-12T14:14:50+09:00 info: Transaction DataSource established
4
+ 2023-03-12T14:14:51+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
5
+ 2023-03-12T14:14:51+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
6
+ 2023-03-12T14:31:19+09:00 error: oracledb module loading failed
7
+ 2023-03-12T14:31:20+09:00 info: Default DataSource established
8
+ 2023-03-12T14:31:20+09:00 info: Transaction DataSource established
9
+ 2023-03-12T14:31:21+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
10
+ 2023-03-12T14:31:21+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -0,0 +1,19 @@
1
+ 2023-03-12T20:26:58+09:00 error: Cannot query field "activitySummary" on type "Query". Did you mean "activityByName", "activityTemplate", "activityThread", "activityThreads", or "activity"?
2
+ 2023-03-12T20:27:03+09:00 error: Cannot query field "activitySummary" on type "Query". Did you mean "activityByName", "activityTemplate", "activityThread", "activityThreads", or "activity"?
3
+ 2023-03-12T20:28:19+09:00 error: oracledb module loading failed
4
+ 2023-03-12T20:28:20+09:00 info: Default DataSource established
5
+ 2023-03-12T20:28:21+09:00 info: Transaction DataSource established
6
+ 2023-03-12T20:28:21+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
7
+ 2023-03-12T20:28:21+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
8
+ 2023-03-12T20:28:56+09:00 error: Field "activitySummary" argument "id" of type "String!" is required, but it was not provided.
9
+ 2023-03-12T20:29:04+09:00 error: Field "activitySummary" argument "id" of type "String!" is required, but it was not provided.
10
+ 2023-03-12T20:29:37+09:00 error: oracledb module loading failed
11
+ 2023-03-12T20:29:38+09:00 info: Default DataSource established
12
+ 2023-03-12T20:29:38+09:00 info: Transaction DataSource established
13
+ 2023-03-12T20:29:39+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
14
+ 2023-03-12T20:29:39+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
15
+ 2023-03-12T20:51:43+09:00 error: oracledb module loading failed
16
+ 2023-03-12T20:51:44+09:00 info: Default DataSource established
17
+ 2023-03-12T20:51:44+09:00 info: Transaction DataSource established
18
+ 2023-03-12T20:51:44+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
19
+ 2023-03-12T20:51:44+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -0,0 +1,4 @@
1
+ 2023-03-12T12:16:19+09:00 info: File Storage is Ready.
2
+ 2023-03-12T12:19:15+09:00 info: File Storage is Ready.
3
+ 2023-03-12T12:22:47+09:00 info: File Storage is Ready.
4
+ 2023-03-12T12:44:36+09:00 info: File Storage is Ready.
@@ -0,0 +1,2 @@
1
+ 2023-03-12T13:30:22+09:00 info: File Storage is Ready.
2
+ 2023-03-12T13:34:03+09:00 info: File Storage is Ready.
@@ -0,0 +1,2 @@
1
+ 2023-03-12T14:14:48+09:00 info: File Storage is Ready.
2
+ 2023-03-12T14:31:18+09:00 info: File Storage is Ready.
@@ -0,0 +1,10 @@
1
+ 2023-03-13T00:23:57+09:00 error: oracledb module loading failed
2
+ 2023-03-13T00:23:58+09:00 info: Default DataSource established
3
+ 2023-03-13T00:23:58+09:00 info: Transaction DataSource established
4
+ 2023-03-13T00:23:59+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
5
+ 2023-03-13T00:23:59+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
6
+ 2023-03-13T00:27:07+09:00 error: oracledb module loading failed
7
+ 2023-03-13T00:27:08+09:00 info: Default DataSource established
8
+ 2023-03-13T00:27:08+09:00 info: Transaction DataSource established
9
+ 2023-03-13T00:27:09+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
10
+ 2023-03-13T00:27:09+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -0,0 +1,28 @@
1
+ 2023-03-13T01:00:37+09:00 error: oracledb module loading failed
2
+ 2023-03-13T01:00:38+09:00 info: Default DataSource established
3
+ 2023-03-13T01:00:38+09:00 info: Transaction DataSource established
4
+ 2023-03-13T01:00:39+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
5
+ 2023-03-13T01:00:39+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
6
+ 2023-03-13T01:07:47+09:00 error: Cannot query field "boardPermissions" on type "Query".
7
+ 2023-03-13T01:07:47+09:00 error: Cannot query field "myFavorites" on type "Query".
8
+ 2023-03-13T01:07:56+09:00 error: Cannot query field "boardPermissions" on type "Query".
9
+ 2023-03-13T01:07:56+09:00 error: Cannot query field "myFavorites" on type "Query".
10
+ 2023-03-13T01:16:35+09:00 error: oracledb module loading failed
11
+ 2023-03-13T01:16:36+09:00 info: Default DataSource established
12
+ 2023-03-13T01:16:36+09:00 info: Transaction DataSource established
13
+ 2023-03-13T01:16:37+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
14
+ 2023-03-13T01:16:37+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
15
+ 2023-03-13T01:17:43+09:00 error: oracledb module loading failed
16
+ 2023-03-13T01:17:44+09:00 info: Default DataSource established
17
+ 2023-03-13T01:17:45+09:00 info: Transaction DataSource established
18
+ 2023-03-13T01:17:45+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
19
+ 2023-03-13T01:17:45+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
20
+ 2023-03-13T01:24:04+09:00 error: oracledb module loading failed
21
+ 2023-03-13T01:24:05+09:00 info: Default DataSource established
22
+ 2023-03-13T01:24:05+09:00 error: SQLITE_BUSY: database is locked
23
+ 2023-03-13T01:26:20+09:00 error: oracledb module loading failed
24
+ 2023-03-13T01:26:21+09:00 info: Default DataSource established
25
+ 2023-03-13T01:26:21+09:00 info: Transaction DataSource established
26
+ 2023-03-13T01:26:22+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
27
+ 2023-03-13T01:26:22+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
28
+ 2023-03-13T01:45:35+09:00 error: read ECONNRESET
@@ -0,0 +1,3 @@
1
+ 2023-03-12T20:28:19+09:00 info: File Storage is Ready.
2
+ 2023-03-12T20:29:36+09:00 info: File Storage is Ready.
3
+ 2023-03-12T20:51:42+09:00 info: File Storage is Ready.
@@ -0,0 +1,2 @@
1
+ 2023-03-13T00:23:56+09:00 info: File Storage is Ready.
2
+ 2023-03-13T00:27:06+09:00 info: File Storage is Ready.
@@ -0,0 +1,5 @@
1
+ 2023-03-13T01:00:36+09:00 info: File Storage is Ready.
2
+ 2023-03-13T01:16:34+09:00 info: File Storage is Ready.
3
+ 2023-03-13T01:17:42+09:00 info: File Storage is Ready.
4
+ 2023-03-13T01:24:03+09:00 info: File Storage is Ready.
5
+ 2023-03-13T01:26:19+09:00 info: File Storage is Ready.
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/operato-gangsters",
3
- "version": "6.0.13",
3
+ "version": "6.0.15",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -61,9 +61,9 @@
61
61
  "@things-factory/apptool-ui": "^6.0.12",
62
62
  "@things-factory/auth-ui": "^6.0.12",
63
63
  "@things-factory/board-service": "^6.0.12",
64
- "@things-factory/board-ui": "^6.0.12",
64
+ "@things-factory/board-ui": "^6.0.14",
65
65
  "@things-factory/context-ui": "^6.0.13",
66
- "@things-factory/dashboard": "^6.0.12",
66
+ "@things-factory/dashboard": "^6.0.14",
67
67
  "@things-factory/dataset": "^6.0.12",
68
68
  "@things-factory/export-ui": "^6.0.13",
69
69
  "@things-factory/grist-ui": "^6.0.12",
@@ -72,18 +72,18 @@
72
72
  "@things-factory/integration-melsec": "^6.0.12",
73
73
  "@things-factory/integration-modbus": "^6.0.12",
74
74
  "@things-factory/integration-ui": "^6.0.12",
75
- "@things-factory/lite-menu": "^6.0.12",
75
+ "@things-factory/lite-menu": "^6.0.15",
76
76
  "@things-factory/more-ui": "^6.0.12",
77
77
  "@things-factory/notification": "^6.0.12",
78
78
  "@things-factory/oauth2-client": "^6.0.12",
79
- "@things-factory/organization": "^6.0.12",
79
+ "@things-factory/organization": "^6.0.15",
80
80
  "@things-factory/print-ui": "^6.0.13",
81
81
  "@things-factory/resource-ui": "^6.0.13",
82
82
  "@things-factory/setting-base": "^6.0.12",
83
83
  "@things-factory/setting-ui": "^6.0.12",
84
84
  "@things-factory/shell": "^6.0.12",
85
85
  "@things-factory/system-ui": "^6.0.12",
86
- "@things-factory/worklist": "^6.0.12",
86
+ "@things-factory/worklist": "^6.0.15",
87
87
  "@types/react-dom": "^18.0.10",
88
88
  "graphql-tag": "^2.12.6",
89
89
  "marked": "^4.0.14",
@@ -95,5 +95,5 @@
95
95
  "@things-factory/builder": "^6.0.7",
96
96
  "@types/marked": "^4.0.3"
97
97
  },
98
- "gitHead": "6211b989212c23cf8f5d6be6d2c0f7e662e7c573"
98
+ "gitHead": "7371bc44d75176210235997a56363f09b6a85453"
99
99
  }
@@ -1 +0,0 @@
1
- 2023-03-08T00:26:58+09:00 error: oracledb module loading failed
@@ -1 +0,0 @@
1
- 2023-03-08T00:26:57+09:00 info: File Storage is Ready.
@@ -1,21 +0,0 @@
1
- 2023-03-08T17:46:17+09:00 error: oracledb module loading failed
2
- 2023-03-08T17:49:02+09:00 error: oracledb module loading failed
3
- 2023-03-08T17:49:48+09:00 error: oracledb module loading failed
4
- 2023-03-08T17:49:49+09:00 info: Default DataSource established
5
- 2023-03-08T17:49:49+09:00 info: Transaction DataSource established
6
- 2023-03-08T17:49:50+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
7
- 2023-03-08T17:49:50+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
8
- 2023-03-08T17:50:58+09:00 error: SQLITE_ERROR: no such column: ap.approval
9
- 2023-03-08T17:51:37+09:00 error: oracledb module loading failed
10
- 2023-03-08T17:51:38+09:00 info: Default DataSource established
11
- 2023-03-08T17:51:38+09:00 info: Transaction DataSource established
12
- 2023-03-08T17:51:39+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
13
- 2023-03-08T17:51:39+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
14
- 2023-03-08T17:52:04+09:00 error: SQLITE_ERROR: no such column: ap.dueAt
15
- 2023-03-08T17:52:17+09:00 error: SQLITE_ERROR: no such column: ap.dueAt
16
- 2023-03-08T17:54:30+09:00 error: oracledb module loading failed
17
- 2023-03-08T17:54:31+09:00 info: Default DataSource established
18
- 2023-03-08T17:54:31+09:00 info: Transaction DataSource established
19
- 2023-03-08T17:54:32+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
20
- 2023-03-08T17:54:32+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
21
- 2023-03-08T17:55:58+09:00 error: SQLITE_ERROR: no such column: ap.dueAt
@@ -1,48 +0,0 @@
1
- 2023-03-08T18:00:10+09:00 error: oracledb module loading failed
2
- 2023-03-08T18:00:11+09:00 info: Default DataSource established
3
- 2023-03-08T18:00:11+09:00 info: Transaction DataSource established
4
- 2023-03-08T18:00:11+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
5
- 2023-03-08T18:00:11+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
6
- 2023-03-08T18:17:11+09:00 error: oracledb module loading failed
7
- 2023-03-08T18:17:11+09:00 info: Default DataSource established
8
- 2023-03-08T18:17:12+09:00 info: Transaction DataSource established
9
- 2023-03-08T18:17:12+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
10
- 2023-03-08T18:17:12+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
11
- 2023-03-08T18:20:09+09:00 error: oracledb module loading failed
12
- 2023-03-08T18:20:10+09:00 info: Default DataSource established
13
- 2023-03-08T18:20:10+09:00 info: Transaction DataSource established
14
- 2023-03-08T18:20:10+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
15
- 2023-03-08T18:20:10+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
16
- 2023-03-08T18:23:14+09:00 error: oracledb module loading failed
17
- 2023-03-08T18:23:15+09:00 info: Default DataSource established
18
- 2023-03-08T18:23:15+09:00 info: Transaction DataSource established
19
- 2023-03-08T18:23:15+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
20
- 2023-03-08T18:23:15+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
21
- 2023-03-08T18:25:56+09:00 error: oracledb module loading failed
22
- 2023-03-08T18:25:57+09:00 info: Default DataSource established
23
- 2023-03-08T18:25:57+09:00 info: Transaction DataSource established
24
- 2023-03-08T18:25:57+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
25
- 2023-03-08T18:25:57+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
26
- 2023-03-08T18:27:00+09:00 error: stream is not readable
27
- 2023-03-08T18:27:00+09:00 error: stream is not readable
28
- 2023-03-08T18:27:00+09:00 error: stream is not readable
29
- 2023-03-08T18:38:46+09:00 error: oracledb module loading failed
30
- 2023-03-08T18:38:47+09:00 info: Default DataSource established
31
- 2023-03-08T18:38:47+09:00 info: Transaction DataSource established
32
- 2023-03-08T18:38:48+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
33
- 2023-03-08T18:38:48+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
34
- 2023-03-08T18:43:22+09:00 error: oracledb module loading failed
35
- 2023-03-08T18:43:23+09:00 info: Default DataSource established
36
- 2023-03-08T18:43:23+09:00 info: Transaction DataSource established
37
- 2023-03-08T18:43:24+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
38
- 2023-03-08T18:43:24+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
39
- 2023-03-08T18:50:36+09:00 error: oracledb module loading failed
40
- 2023-03-08T18:50:37+09:00 info: Default DataSource established
41
- 2023-03-08T18:50:37+09:00 info: Transaction DataSource established
42
- 2023-03-08T18:50:38+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
43
- 2023-03-08T18:50:38+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
44
- 2023-03-08T18:55:33+09:00 error: oracledb module loading failed
45
- 2023-03-08T18:55:34+09:00 info: Default DataSource established
46
- 2023-03-08T18:55:34+09:00 info: Transaction DataSource established
47
- 2023-03-08T18:55:35+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
48
- 2023-03-08T18:55:35+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -1,5 +0,0 @@
1
- 2023-03-08T19:02:39+09:00 error: oracledb module loading failed
2
- 2023-03-08T19:02:40+09:00 info: Default DataSource established
3
- 2023-03-08T19:02:40+09:00 info: Transaction DataSource established
4
- 2023-03-08T19:02:41+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
5
- 2023-03-08T19:02:41+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -1,7 +0,0 @@
1
- 2023-03-08T20:50:32+09:00 error: oracledb module loading failed
2
- 2023-03-08T20:50:33+09:00 info: Default DataSource established
3
- 2023-03-08T20:50:34+09:00 info: Transaction DataSource established
4
- 2023-03-08T20:50:34+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
5
- 2023-03-08T20:50:34+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
6
- 2023-03-08T20:51:22+09:00 error: SQLITE_ERROR: ambiguous column name: activity_threads-activity_threads.id
7
- 2023-03-08T20:53:27+09:00 error: SQLITE_ERROR: ambiguous column name: activity_threads-activity_threads.id
@@ -1,11 +0,0 @@
1
- 2023-03-08T21:32:56+09:00 error: oracledb module loading failed
2
- 2023-03-08T21:32:57+09:00 info: Default DataSource established
3
- 2023-03-08T21:32:57+09:00 info: Transaction DataSource established
4
- 2023-03-08T21:32:58+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
5
- 2023-03-08T21:32:58+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
6
- 2023-03-08T21:39:56+09:00 error: SQLITE_ERROR: ambiguous column name: activity_threads-activity_threads-activityThread.id
7
- 2023-03-08T21:50:18+09:00 error: oracledb module loading failed
8
- 2023-03-08T21:50:19+09:00 info: Default DataSource established
9
- 2023-03-08T21:50:19+09:00 info: Transaction DataSource established
10
- 2023-03-08T21:50:20+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
11
- 2023-03-08T21:50:20+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -1,26 +0,0 @@
1
- 2023-03-08T22:00:40+09:00 error: oracledb module loading failed
2
- 2023-03-08T22:00:42+09:00 info: Default DataSource established
3
- 2023-03-08T22:00:42+09:00 info: Transaction DataSource established
4
- 2023-03-08T22:00:43+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
5
- 2023-03-08T22:00:43+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
6
- 2023-03-08T22:13:19+09:00 error: oracledb module loading failed
7
- 2023-03-08T22:13:20+09:00 info: Default DataSource established
8
- 2023-03-08T22:13:20+09:00 info: Transaction DataSource established
9
- 2023-03-08T22:13:21+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
10
- 2023-03-08T22:13:21+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
11
- 2023-03-08T22:20:16+09:00 error: oracledb module loading failed
12
- 2023-03-08T22:20:17+09:00 info: Default DataSource established
13
- 2023-03-08T22:20:17+09:00 info: Transaction DataSource established
14
- 2023-03-08T22:20:18+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
15
- 2023-03-08T22:20:18+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
16
- 2023-03-08T22:44:18+09:00 error: oracledb module loading failed
17
- 2023-03-08T22:44:19+09:00 info: Default DataSource established
18
- 2023-03-08T22:44:19+09:00 info: Transaction DataSource established
19
- 2023-03-08T22:44:20+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
20
- 2023-03-08T22:44:20+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
21
- 2023-03-08T22:48:22+09:00 error: Unexpected error value: "Cannot specify the approval user for this approval line"
22
- 2023-03-08T22:55:54+09:00 error: oracledb module loading failed
23
- 2023-03-08T22:55:55+09:00 info: Default DataSource established
24
- 2023-03-08T22:55:55+09:00 info: Transaction DataSource established
25
- 2023-03-08T22:55:56+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
26
- 2023-03-08T22:55:56+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -1,29 +0,0 @@
1
- 2023-03-08T23:06:04+09:00 error: oracledb module loading failed
2
- 2023-03-08T23:06:05+09:00 info: Default DataSource established
3
- 2023-03-08T23:06:05+09:00 info: Transaction DataSource established
4
- 2023-03-08T23:06:06+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
5
- 2023-03-08T23:06:06+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
6
- 2023-03-08T23:56:59+09:00 error: Cannot query field "state" on type "ActivityApproval".
7
- 2023-03-08T23:56:59+09:00 error: Cannot query field "dueAt" on type "ActivityApproval".
8
- 2023-03-08T23:56:59+09:00 error: Cannot query field "assignedAt" on type "ActivityApproval".
9
- 2023-03-08T23:56:59+09:00 error: Cannot query field "assignee" on type "ActivityApproval".
10
- 2023-03-08T23:56:59+09:00 error: Cannot query field "output" on type "ActivityApproval".
11
- 2023-03-08T23:56:59+09:00 error: Cannot query field "activityInstance" on type "ActivityApproval". Did you mean "activityThread"?
12
- 2023-03-08T23:58:37+09:00 error: Cannot query field "state" on type "ActivityApproval".
13
- 2023-03-08T23:58:37+09:00 error: Cannot query field "dueAt" on type "ActivityApproval".
14
- 2023-03-08T23:58:37+09:00 error: Cannot query field "assignedAt" on type "ActivityApproval".
15
- 2023-03-08T23:58:37+09:00 error: Cannot query field "assignee" on type "ActivityApproval".
16
- 2023-03-08T23:58:37+09:00 error: Cannot query field "output" on type "ActivityApproval".
17
- 2023-03-08T23:58:37+09:00 error: Cannot query field "activityInstance" on type "ActivityApproval". Did you mean "activityThread"?
18
- 2023-03-08T23:59:29+09:00 error: Cannot query field "state" on type "ActivityApproval".
19
- 2023-03-08T23:59:29+09:00 error: Cannot query field "dueAt" on type "ActivityApproval".
20
- 2023-03-08T23:59:29+09:00 error: Cannot query field "assignedAt" on type "ActivityApproval".
21
- 2023-03-08T23:59:29+09:00 error: Cannot query field "assignee" on type "ActivityApproval".
22
- 2023-03-08T23:59:29+09:00 error: Cannot query field "output" on type "ActivityApproval".
23
- 2023-03-08T23:59:29+09:00 error: Cannot query field "activityInstance" on type "ActivityApproval". Did you mean "activityThread"?
24
- 2023-03-08T23:59:56+09:00 error: Cannot query field "state" on type "ActivityApproval".
25
- 2023-03-08T23:59:56+09:00 error: Cannot query field "dueAt" on type "ActivityApproval".
26
- 2023-03-08T23:59:56+09:00 error: Cannot query field "assignedAt" on type "ActivityApproval".
27
- 2023-03-08T23:59:56+09:00 error: Cannot query field "assignee" on type "ActivityApproval".
28
- 2023-03-08T23:59:56+09:00 error: Cannot query field "output" on type "ActivityApproval".
29
- 2023-03-08T23:59:56+09:00 error: Cannot query field "activityInstance" on type "ActivityApproval". Did you mean "activityThread"?
@@ -1,21 +0,0 @@
1
- 2023-03-09T00:00:45+09:00 error: Cannot query field "state" on type "ActivityApproval".
2
- 2023-03-09T00:00:45+09:00 error: Cannot query field "dueAt" on type "ActivityApproval".
3
- 2023-03-09T00:00:45+09:00 error: Cannot query field "assignedAt" on type "ActivityApproval".
4
- 2023-03-09T00:00:45+09:00 error: Cannot query field "assignee" on type "ActivityApproval".
5
- 2023-03-09T00:00:45+09:00 error: Cannot query field "output" on type "ActivityApproval".
6
- 2023-03-09T00:00:45+09:00 error: Cannot query field "activityInstance" on type "ActivityApproval". Did you mean "activityThread"?
7
- 2023-03-09T00:16:14+09:00 error: oracledb module loading failed
8
- 2023-03-09T00:16:15+09:00 info: Default DataSource established
9
- 2023-03-09T00:16:15+09:00 info: Transaction DataSource established
10
- 2023-03-09T00:16:15+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
11
- 2023-03-09T00:16:15+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
12
- 2023-03-09T00:23:46+09:00 error: oracledb module loading failed
13
- 2023-03-09T00:23:47+09:00 info: Default DataSource established
14
- 2023-03-09T00:23:47+09:00 info: Transaction DataSource established
15
- 2023-03-09T00:23:48+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
16
- 2023-03-09T00:23:48+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
17
- 2023-03-09T00:25:27+09:00 error: Cannot query field "approveActivityApproval" on type "Mutation". Did you mean "abortActivityApproval"?
18
- 2023-03-09T00:25:29+09:00 error: Cannot query field "rejectActivityApproval" on type "Mutation". Did you mean "abortActivityApproval"?
19
- 2023-03-09T00:25:31+09:00 error: Cannot query field "saveActivityApproval" on type "Mutation". Did you mean "abortActivityApproval", "saveActivityThread", or "startActivityThread"?
20
- 2023-03-09T00:25:35+09:00 error: Cannot query field "saveActivityApproval" on type "Mutation". Did you mean "abortActivityApproval", "saveActivityThread", or "startActivityThread"?
21
- 2023-03-09T00:28:40+09:00 error: Cannot query field "saveActivityApproval" on type "Mutation". Did you mean "abortActivityApproval", "saveActivityThread", or "startActivityThread"?
@@ -1,5 +0,0 @@
1
- 2023-03-08T17:46:16+09:00 info: File Storage is Ready.
2
- 2023-03-08T17:49:02+09:00 info: File Storage is Ready.
3
- 2023-03-08T17:49:48+09:00 info: File Storage is Ready.
4
- 2023-03-08T17:51:37+09:00 info: File Storage is Ready.
5
- 2023-03-08T17:54:30+09:00 info: File Storage is Ready.
@@ -1,9 +0,0 @@
1
- 2023-03-08T18:00:09+09:00 info: File Storage is Ready.
2
- 2023-03-08T18:17:10+09:00 info: File Storage is Ready.
3
- 2023-03-08T18:20:08+09:00 info: File Storage is Ready.
4
- 2023-03-08T18:23:13+09:00 info: File Storage is Ready.
5
- 2023-03-08T18:25:55+09:00 info: File Storage is Ready.
6
- 2023-03-08T18:38:45+09:00 info: File Storage is Ready.
7
- 2023-03-08T18:43:21+09:00 info: File Storage is Ready.
8
- 2023-03-08T18:50:35+09:00 info: File Storage is Ready.
9
- 2023-03-08T18:55:32+09:00 info: File Storage is Ready.
@@ -1 +0,0 @@
1
- 2023-03-08T19:02:38+09:00 info: File Storage is Ready.
@@ -1 +0,0 @@
1
- 2023-03-08T20:50:31+09:00 info: File Storage is Ready.
@@ -1,2 +0,0 @@
1
- 2023-03-08T21:32:55+09:00 info: File Storage is Ready.
2
- 2023-03-08T21:50:17+09:00 info: File Storage is Ready.
@@ -1,5 +0,0 @@
1
- 2023-03-08T22:00:39+09:00 info: File Storage is Ready.
2
- 2023-03-08T22:13:18+09:00 info: File Storage is Ready.
3
- 2023-03-08T22:20:15+09:00 info: File Storage is Ready.
4
- 2023-03-08T22:44:17+09:00 info: File Storage is Ready.
5
- 2023-03-08T22:55:53+09:00 info: File Storage is Ready.
@@ -1,64 +0,0 @@
1
- 2023-03-08T23:06:04+09:00 info: File Storage is Ready.
2
- 2023-03-09T08:01:33+09:00 error: oracledb module loading failed
3
- 2023-03-09T08:02:29+09:00 error: oracledb module loading failed
4
- 2023-03-09T08:02:30+09:00 info: Default DataSource established
5
- 2023-03-09T08:02:30+09:00 info: Transaction DataSource established
6
- 2023-03-09T08:02:31+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
7
- 2023-03-09T08:02:31+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
8
- 2023-03-09T08:03:30+09:00 error: Unknown argument "save" on field "Mutation.approveActivityApproval".
9
- 2023-03-09T08:05:45+09:00 error: oracledb module loading failed
10
- 2023-03-09T08:05:46+09:00 info: Default DataSource established
11
- 2023-03-09T08:05:46+09:00 info: Transaction DataSource established
12
- 2023-03-09T08:05:47+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
13
- 2023-03-09T08:05:47+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
14
- 2023-03-09T08:12:03+09:00 error: oracledb module loading failed
15
- 2023-03-09T08:12:04+09:00 info: Default DataSource established
16
- 2023-03-09T08:12:05+09:00 info: Transaction DataSource established
17
- 2023-03-09T08:12:05+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
18
- 2023-03-09T08:12:05+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
19
- 2023-03-09T08:12:45+09:00 error: Unknown type "string". Did you mean "String", "Setting", or "Sorting"?
20
- 2023-03-09T08:12:45+09:00 error: Unknown type "string". Did you mean "String", "Setting", or "Sorting"?
21
- 2023-03-09T08:12:45+09:00 error: Unknown argument "save" on field "Mutation.approveActivityApproval".
22
- 2023-03-09T08:12:45+09:00 error: Variable "$save" is not defined.
23
- 2023-03-09T08:12:45+09:00 error: Variable "$judgment" is never used.
24
- 2023-03-09T08:12:45+09:00 error: Variable "$comment" is never used.
25
- 2023-03-09T08:14:05+09:00 error: oracledb module loading failed
26
- 2023-03-09T08:14:06+09:00 info: Default DataSource established
27
- 2023-03-09T08:14:06+09:00 info: Transaction DataSource established
28
- 2023-03-09T08:14:06+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
29
- 2023-03-09T08:14:06+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
30
- 2023-03-09T08:19:07+09:00 error: oracledb module loading failed
31
- 2023-03-09T08:19:08+09:00 info: Default DataSource established
32
- 2023-03-09T08:19:09+09:00 info: Transaction DataSource established
33
- 2023-03-09T08:21:14+09:00 error: oracledb module loading failed
34
- 2023-03-09T08:21:14+09:00 info: Default DataSource established
35
- 2023-03-09T08:21:15+09:00 info: Transaction DataSource established
36
- 2023-03-09T08:21:15+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
37
- 2023-03-09T08:21:15+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
38
- 2023-03-09T08:23:05+09:00 error: Variable "$judgment" got invalid value "approve"; Value "approve" does not exist in "ActivityApprovalJudgment" enum. Did you mean the enum value "Approved"?
39
- 2023-03-09T08:24:56+09:00 error: Cannot read properties of undefined (reading 'approvalLine')
40
- 2023-03-09T08:29:44+09:00 error: oracledb module loading failed
41
- 2023-03-09T08:29:45+09:00 info: Default DataSource established
42
- 2023-03-09T08:29:46+09:00 info: Transaction DataSource established
43
- 2023-03-09T08:29:46+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
44
- 2023-03-09T08:29:46+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
45
- 2023-03-09T08:30:34+09:00 error: Cannot destructure property 'type' of 'approvalLineItem' as it is undefined.
46
- 2023-03-09T08:30:50+09:00 error: Cannot destructure property 'type' of 'approvalLineItem' as it is undefined.
47
- 2023-03-09T08:31:11+09:00 error: Cannot destructure property 'type' of 'approvalLineItem' as it is undefined.
48
- 2023-03-09T08:33:09+09:00 error: Cannot destructure property 'type' of 'approvalLineItem' as it is undefined.
49
- 2023-03-09T08:34:08+09:00 error: oracledb module loading failed
50
- 2023-03-09T08:34:09+09:00 info: Default DataSource established
51
- 2023-03-09T08:34:09+09:00 info: Transaction DataSource established
52
- 2023-03-09T08:34:10+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
53
- 2023-03-09T08:34:10+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
54
- 2023-03-09T08:34:54+09:00 error: Unexpected error value: "Cannot specify the approval user for this approval line"
55
- 2023-03-09T08:38:30+09:00 error: oracledb module loading failed
56
- 2023-03-09T08:38:31+09:00 info: Default DataSource established
57
- 2023-03-09T08:38:31+09:00 info: Transaction DataSource established
58
- 2023-03-09T08:38:32+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
59
- 2023-03-09T08:38:32+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
60
- 2023-03-09T08:47:05+09:00 error: oracledb module loading failed
61
- 2023-03-09T08:47:06+09:00 info: Default DataSource established
62
- 2023-03-09T08:47:06+09:00 info: Transaction DataSource established
63
- 2023-03-09T08:47:07+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
64
- 2023-03-09T08:47:07+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -1,12 +0,0 @@
1
- 2023-03-09T00:16:13+09:00 info: File Storage is Ready.
2
- 2023-03-09T00:23:46+09:00 info: File Storage is Ready.
3
- 2023-03-09T09:03:18+09:00 error: oracledb module loading failed
4
- 2023-03-09T09:03:19+09:00 info: Default DataSource established
5
- 2023-03-09T09:03:19+09:00 info: Transaction DataSource established
6
- 2023-03-09T09:03:20+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
7
- 2023-03-09T09:03:20+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
8
- 2023-03-09T09:05:47+09:00 error: oracledb module loading failed
9
- 2023-03-09T09:05:48+09:00 info: Default DataSource established
10
- 2023-03-09T09:05:48+09:00 info: Transaction DataSource established
11
- 2023-03-09T09:05:49+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
12
- 2023-03-09T09:05:49+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -1,5 +0,0 @@
1
- 2023-03-09T16:36:21+09:00 error: oracledb module loading failed
2
- 2023-03-09T16:36:22+09:00 info: Default DataSource established
3
- 2023-03-09T16:36:22+09:00 info: Transaction DataSource established
4
- 2023-03-09T16:36:23+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
5
- 2023-03-09T16:36:23+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -1,11 +0,0 @@
1
- 2023-03-09T08:01:32+09:00 info: File Storage is Ready.
2
- 2023-03-09T08:02:29+09:00 info: File Storage is Ready.
3
- 2023-03-09T08:05:44+09:00 info: File Storage is Ready.
4
- 2023-03-09T08:12:02+09:00 info: File Storage is Ready.
5
- 2023-03-09T08:14:04+09:00 info: File Storage is Ready.
6
- 2023-03-09T08:19:06+09:00 info: File Storage is Ready.
7
- 2023-03-09T08:21:13+09:00 info: File Storage is Ready.
8
- 2023-03-09T08:29:43+09:00 info: File Storage is Ready.
9
- 2023-03-09T08:34:07+09:00 info: File Storage is Ready.
10
- 2023-03-09T08:38:29+09:00 info: File Storage is Ready.
11
- 2023-03-09T08:47:04+09:00 info: File Storage is Ready.
@@ -1,2 +0,0 @@
1
- 2023-03-09T09:03:17+09:00 info: File Storage is Ready.
2
- 2023-03-09T09:05:46+09:00 info: File Storage is Ready.
@@ -1 +0,0 @@
1
- 2023-03-09T16:36:19+09:00 info: File Storage is Ready.