@things-factory/operato-gangsters 6.0.33 → 6.0.35

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/menu.ts CHANGED
@@ -51,7 +51,7 @@ export function getMenuTemplate(owner: boolean = false, activities: any[]) {
51
51
  }) || []
52
52
  },
53
53
  {
54
- name: '시작 가능 업무',
54
+ name: '새업무 할당',
55
55
  icon: 'rocket_launch',
56
56
  path: 'starter-list'
57
57
  },
@@ -1 +1,14 @@
1
- module.exports = {}
1
+ module.exports = {
2
+ scheduler: {
3
+ /* Name to be used for setting client's "application" properties when registering a schedule */
4
+ application: 'operato-gangsters',
5
+ /* Base endpoint to be used for setting "callback" properties when registering a schedule */
6
+ callbackBase: 'http://localhost:3000',
7
+ /*
8
+ Scheduler service endpoint
9
+ caution) endpoint for "localhost" has some problem.
10
+ https://github.com/node-fetch/node-fetch/issues/1624
11
+ */
12
+ endpoint: 'http://127.0.0.1:9902'
13
+ }
14
+ }
@@ -1,5 +1,17 @@
1
1
  module.exports = {
2
2
  protocol: 'https',
3
+ scheduler: {
4
+ /* Name to be used for setting client's "application" properties when registering a schedule */
5
+ application: 'operato-gangsters',
6
+ /* Base endpoint to be used for setting "callback" properties when registering a schedule */
7
+ callbackBase: 'http://localhost:3000',
8
+ /*
9
+ Scheduler service endpoint
10
+ caution) endpoint for "localhost" has some problem.
11
+ https://github.com/node-fetch/node-fetch/issues/1624
12
+ */
13
+ endpoint: 'http://127.0.0.1:9902'
14
+ },
3
15
  email: {
4
16
  host: 'smtp.office365.com', // your sender-email smtp host
5
17
  port: 587, // smtp server port
package/db.sqlite CHANGED
Binary file
@@ -79,6 +79,11 @@
79
79
  "date": 1680679332310,
80
80
  "name": "logs/application-2023-04-05-16.log",
81
81
  "hash": "93c029375341b5904103032193303d7e36be73c6fa8d7b418c347f2ab75615af"
82
+ },
83
+ {
84
+ "date": 1680689713796,
85
+ "name": "logs/application-2023-04-05-19.log",
86
+ "hash": "fead84aedd5c53bdb8530eca607f1c3dd8363248d261076a91e1cb4ee78c8cd2"
82
87
  }
83
88
  ],
84
89
  "hashType": "sha256"
@@ -134,6 +134,11 @@
134
134
  "date": 1680679334035,
135
135
  "name": "logs/connections-2023-04-05-07.log",
136
136
  "hash": "e11ff06a9c6df8d1421717c096dc4da5611ca45f73b39cb32edb3618fd9f6d04"
137
+ },
138
+ {
139
+ "date": 1680689715065,
140
+ "name": "logs/connections-2023-04-05-10.log",
141
+ "hash": "38219e0e644827a6f3077528103678c5122289335cbdecab8460c9463cd0404f"
137
142
  }
138
143
  ],
139
144
  "hashType": "sha256"
@@ -7,3 +7,21 @@
7
7
  2023-04-05T10:22:07+09:00 info: File Storage is Ready.
8
8
  2023-04-05T10:53:51+09:00 info: File Storage is Ready.
9
9
  2023-04-05T10:55:24+09:00 info: File Storage is Ready.
10
+ 2023-04-05T19:15:15+09:00 error: oracledb module loading failed
11
+ 2023-04-05T19:15:16+09:00 info: Default DataSource established
12
+ 2023-04-05T19:15:16+09:00 info: Transaction DataSource established
13
+ 2023-04-05T19:15:16+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
14
+ 2023-04-05T19:15:16+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
15
+ 2023-04-05T19:16:02+09:00 error: SQLITE_ERROR: cannot start a transaction within a transaction
16
+ 2023-04-05T19:16:02+09:00 error: Transaction is not started yet, start transaction before committing or rolling it back.
17
+ 2023-04-05T19:16:15+09:00 error: SQLITE_ERROR: cannot start a transaction within a transaction
18
+ 2023-04-05T19:16:15+09:00 error: domain(a8462527-50cd-46b2-a33b-a881423b4a9c) not found
19
+ 2023-04-05T19:17:02+09:00 error: SQLITE_ERROR: cannot start a transaction within a transaction
20
+ 2023-04-05T19:17:02+09:00 error: domain(a8462527-50cd-46b2-a33b-a881423b4a9c) not found
21
+ 2023-04-05T19:17:15+09:00 error: SQLITE_ERROR: cannot start a transaction within a transaction
22
+ 2023-04-05T19:17:15+09:00 error: Transaction is not started yet, start transaction before committing or rolling it back.
23
+ 2023-04-05T19:18:02+09:00 error: SQLITE_ERROR: cannot start a transaction within a transaction
24
+ 2023-04-05T19:18:02+09:00 error: Transaction is not started yet, start transaction before committing or rolling it back.
25
+ 2023-04-05T19:18:15+09:00 error: SQLITE_ERROR: cannot start a transaction within a transaction
26
+ 2023-04-05T19:18:15+09:00 error: domain(a8462527-50cd-46b2-a33b-a881423b4a9c) not found
27
+ 2023-04-05T19:19:02+09:00 error: domain(a8462527-50cd-46b2-a33b-a881423b4a9c) not found
@@ -0,0 +1 @@
1
+ 2023-04-05T19:15:14+09:00 info: File Storage is Ready.
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/operato-gangsters",
3
- "version": "6.0.33",
3
+ "version": "6.0.35",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -56,34 +56,34 @@
56
56
  "@operato/scene-table": "^1.0.0",
57
57
  "@operato/scene-timer": "^1.0.0",
58
58
  "@sendbird/uikit-react": "^3.0.0",
59
- "@things-factory/api": "^6.0.32",
60
- "@things-factory/apptool-ui": "^6.0.32",
61
- "@things-factory/auth-ui": "^6.0.32",
62
- "@things-factory/board-service": "^6.0.32",
63
- "@things-factory/board-ui": "^6.0.32",
64
- "@things-factory/context-ui": "^6.0.32",
65
- "@things-factory/dashboard": "^6.0.32",
66
- "@things-factory/dataset": "^6.0.33",
67
- "@things-factory/export-ui": "^6.0.32",
68
- "@things-factory/grist-ui": "^6.0.32",
69
- "@things-factory/help": "^6.0.32",
70
- "@things-factory/i18n-base": "^6.0.32",
71
- "@things-factory/integration-ui": "^6.0.32",
72
- "@things-factory/lite-menu": "^6.0.32",
73
- "@things-factory/more-ui": "^6.0.32",
74
- "@things-factory/notification": "^6.0.32",
75
- "@things-factory/oauth2-client": "^6.0.32",
76
- "@things-factory/organization": "^6.0.32",
77
- "@things-factory/print-ui": "^6.0.32",
78
- "@things-factory/resource-ui": "^6.0.32",
79
- "@things-factory/setting-base": "^6.0.32",
80
- "@things-factory/setting-ui": "^6.0.32",
81
- "@things-factory/shell": "^6.0.32",
82
- "@things-factory/system-ui": "^6.0.32",
83
- "@things-factory/worklist": "^6.0.33"
59
+ "@things-factory/api": "^6.0.34",
60
+ "@things-factory/apptool-ui": "^6.0.34",
61
+ "@things-factory/auth-ui": "^6.0.34",
62
+ "@things-factory/board-service": "^6.0.34",
63
+ "@things-factory/board-ui": "^6.0.34",
64
+ "@things-factory/context-ui": "^6.0.34",
65
+ "@things-factory/dashboard": "^6.0.34",
66
+ "@things-factory/dataset": "^6.0.35",
67
+ "@things-factory/export-ui": "^6.0.34",
68
+ "@things-factory/grist-ui": "^6.0.34",
69
+ "@things-factory/help": "^6.0.34",
70
+ "@things-factory/i18n-base": "^6.0.34",
71
+ "@things-factory/integration-ui": "^6.0.34",
72
+ "@things-factory/lite-menu": "^6.0.34",
73
+ "@things-factory/more-ui": "^6.0.34",
74
+ "@things-factory/notification": "^6.0.34",
75
+ "@things-factory/oauth2-client": "^6.0.34",
76
+ "@things-factory/organization": "^6.0.34",
77
+ "@things-factory/print-ui": "^6.0.34",
78
+ "@things-factory/resource-ui": "^6.0.34",
79
+ "@things-factory/setting-base": "^6.0.34",
80
+ "@things-factory/setting-ui": "^6.0.34",
81
+ "@things-factory/shell": "^6.0.34",
82
+ "@things-factory/system-ui": "^6.0.34",
83
+ "@things-factory/worklist": "^6.0.35"
84
84
  },
85
85
  "devDependencies": {
86
- "@things-factory/builder": "^6.0.32"
86
+ "@things-factory/builder": "^6.0.34"
87
87
  },
88
- "gitHead": "6836e4138220146670154548575624faf260bca4"
88
+ "gitHead": "2f731189d998bc4a6fb99cd8f4851cc90ef7a748"
89
89
  }