@things-factory/operato-board 6.1.0 → 6.1.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/operato-board",
3
- "version": "6.1.0",
3
+ "version": "6.1.2",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -80,41 +80,41 @@
80
80
  "@operato/shell": "^1.0.1",
81
81
  "@operato/styles": "^1.0.0",
82
82
  "@operato/utils": "^1.0.1",
83
- "@things-factory/apptool-ui": "^6.1.0",
84
- "@things-factory/auth-ui": "^6.1.0",
85
- "@things-factory/board-service": "^6.1.0",
86
- "@things-factory/board-ui": "^6.1.0",
87
- "@things-factory/context-ui": "^6.1.0",
88
- "@things-factory/export-ui": "^6.1.0",
89
- "@things-factory/fav-base": "^6.1.0",
90
- "@things-factory/font-base": "^6.1.0",
83
+ "@things-factory/apptool-ui": "^6.1.2",
84
+ "@things-factory/auth-ui": "^6.1.2",
85
+ "@things-factory/board-service": "^6.1.2",
86
+ "@things-factory/board-ui": "^6.1.2",
87
+ "@things-factory/context-ui": "^6.1.2",
88
+ "@things-factory/export-ui": "^6.1.2",
89
+ "@things-factory/fav-base": "^6.1.2",
90
+ "@things-factory/font-base": "^6.1.2",
91
91
  "@things-factory/form-ui": "^6.1.0",
92
- "@things-factory/help": "^6.1.0",
93
- "@things-factory/i18n-base": "^6.1.0",
94
- "@things-factory/import-ui": "^6.1.0",
95
- "@things-factory/integration-base": "^6.1.0",
96
- "@things-factory/integration-msgraph": "^6.1.0",
97
- "@things-factory/integration-notification": "^6.1.0",
98
- "@things-factory/integration-openai": "^6.1.0",
99
- "@things-factory/integration-ui": "^6.1.0",
92
+ "@things-factory/help": "^6.1.2",
93
+ "@things-factory/i18n-base": "^6.1.2",
94
+ "@things-factory/import-ui": "^6.1.2",
95
+ "@things-factory/integration-base": "^6.1.2",
96
+ "@things-factory/integration-msgraph": "^6.1.2",
97
+ "@things-factory/integration-notification": "^6.1.2",
98
+ "@things-factory/integration-openai": "^6.1.2",
99
+ "@things-factory/integration-ui": "^6.1.2",
100
100
  "@things-factory/layout-ui": "^6.1.0",
101
- "@things-factory/more-ui": "^6.1.0",
102
- "@things-factory/notification": "^6.1.0",
103
- "@things-factory/oauth2-client": "^6.1.0",
104
- "@things-factory/offline-ui": "^6.1.0",
101
+ "@things-factory/more-ui": "^6.1.2",
102
+ "@things-factory/notification": "^6.1.2",
103
+ "@things-factory/oauth2-client": "^6.1.2",
104
+ "@things-factory/offline-ui": "^6.1.2",
105
105
  "@things-factory/operato-license-checker": "^3.1.0",
106
106
  "@things-factory/pdf": "^6.1.0",
107
- "@things-factory/print-service": "^6.1.0",
108
- "@things-factory/print-ui": "^6.1.0",
109
- "@things-factory/resource-ui": "^6.1.0",
107
+ "@things-factory/print-service": "^6.1.2",
108
+ "@things-factory/print-ui": "^6.1.2",
109
+ "@things-factory/resource-ui": "^6.1.2",
110
110
  "@things-factory/scene-google-map": "^6.1.0",
111
- "@things-factory/setting-ui": "^6.1.0",
112
- "@things-factory/shell": "^6.1.0",
113
- "@things-factory/system-ui": "^6.1.0"
111
+ "@things-factory/setting-ui": "^6.1.2",
112
+ "@things-factory/shell": "^6.1.2",
113
+ "@things-factory/system-ui": "^6.1.2"
114
114
  },
115
115
  "devDependencies": {
116
- "@things-factory/board-test": "^6.1.0",
116
+ "@things-factory/board-test": "^6.1.2",
117
117
  "@things-factory/builder": "^6.1.0"
118
118
  },
119
- "gitHead": "205ac14ff55275d948a8cc6d7c514b90d6baf6ef"
119
+ "gitHead": "f237e856ae21fc8c09b7bbbcc4f50282c7e7856d"
120
120
  }
package/schema.gql CHANGED
@@ -3,6 +3,15 @@
3
3
  # !!! DO NOT MODIFY THIS FILE BY YOURSELF !!!
4
4
  # -----------------------------------------------
5
5
 
6
+ input APIDocCompletionInput {
7
+ code: String!
8
+ language: String
9
+ }
10
+
11
+ type APIDocCompletionOutput {
12
+ message: String
13
+ }
14
+
6
15
  type AccessToken {
7
16
  accesToken: String!
8
17
  refreshToken: String!
@@ -257,6 +266,24 @@ input BoardPatch {
257
266
  thumbnail: String
258
267
  }
259
268
 
269
+ input ChatCompletionInput {
270
+ content: String!
271
+ }
272
+
273
+ type ChatCompletionOutput {
274
+ message: String
275
+ }
276
+
277
+ input CodeDecipherInput {
278
+ code: String!
279
+ language: String
280
+ system: String
281
+ }
282
+
283
+ type CodeDecipherOutput {
284
+ message: String
285
+ }
286
+
260
287
  """Entity for CommonCode"""
261
288
  type CommonCode {
262
289
  createdAt: Timestamp
@@ -2184,6 +2211,7 @@ type PropertySpec {
2184
2211
  }
2185
2212
 
2186
2213
  type Query {
2214
+ APIDocCompletion(input: APIDocCompletionInput!): APIDocCompletionOutput!
2187
2215
  appBinding(id: String!): AppBinding!
2188
2216
  appBindings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AppBindingList!
2189
2217
 
@@ -2224,6 +2252,7 @@ type Query {
2224
2252
 
2225
2253
  """To fetch Boards created by me"""
2226
2254
  boardsCreatedByMe(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
2255
+ chatCompletion(input: ChatCompletionInput!): ChatCompletionOutput!
2227
2256
 
2228
2257
  """To check if system would provide default password to create new user"""
2229
2258
  checkDefaultPassword: Boolean!
@@ -2264,6 +2293,8 @@ type Query {
2264
2293
  """To fetch multiple connector"""
2265
2294
  connectors: ConnectorList!
2266
2295
  customers: [Domain!]!
2296
+ decipherCode(input: CodeDecipherInput!): CodeDecipherOutput!
2297
+ decipherErrorCode(input: CodeDecipherInput!): CodeDecipherOutput!
2267
2298
 
2268
2299
  """To fetch domain"""
2269
2300
  domain(id: String!): Domain!
@@ -2314,6 +2345,7 @@ type Query {
2314
2345
 
2315
2346
  """To query whether I have the given permission"""
2316
2347
  hasPrivilege(category: String!, name: String!): Boolean!
2348
+ i18nCompletion(input: i18nCompletionInput!): i18nCompletionOutput!
2317
2349
  invitation(email: String!, reference: String!, type: String!): Invitation!
2318
2350
  invitations(reference: String!, type: String!): InvitationList!
2319
2351
 
@@ -2770,4 +2802,12 @@ type UserRole {
2770
2802
  description: String
2771
2803
  id: String
2772
2804
  name: String
2805
+ }
2806
+
2807
+ input i18nCompletionInput {
2808
+ json: String!
2809
+ }
2810
+
2811
+ type i18nCompletionOutput {
2812
+ message: String
2773
2813
  }
@@ -1,56 +0,0 @@
1
- var licenseKey = require('./config/license').Key
2
- module.exports = {
3
- accessTokenCookieKey: 'access_token.board',
4
- licenseKey: licenseKey,
5
- scheduler: {
6
- /* Name to be used for setting client's "application" properties when registering a schedule */
7
- application: 'operato-board',
8
- /* Base endpoint to be used for setting "callback" properties when registering a schedule */
9
- callbackBase: 'http://localhost:3000',
10
- /*
11
- Scheduler service endpoint
12
- caution) endpoint for "localhost" has some problem.
13
- https://github.com/node-fetch/node-fetch/issues/1624
14
- */
15
- endpoint: 'http://127.0.0.1:9902'
16
- },
17
- // ormconfig: {
18
- // name: 'default',
19
- // type: 'sqlite',
20
- // database: 'db.sqlite',
21
- // synchronize: false,
22
- // logging: true,
23
- // logger: 'debug'
24
- // },
25
- // ormconfig4Tx: {
26
- // name: 'default',
27
- // type: 'sqlite',
28
- // database: 'db.sqlite',
29
- // synchronize: false,
30
- // logging: true,
31
- // logger: 'debug'
32
- // }
33
-
34
- ormconfig: {
35
- name: 'default',
36
- type: 'postgres',
37
- host: '127.0.0.1',
38
- port: 5432,
39
- database: 'vis_app',
40
- username: 'postgres',
41
- password: 'hatioLAB1008',
42
- synchronize: true,
43
- logging: true
44
- },
45
- ormconfig4Tx: {
46
- name: 'default',
47
- type: 'postgres',
48
- host: '127.0.0.1',
49
- port: 5432,
50
- database: 'vis_app',
51
- username: 'postgres',
52
- password: 'hatioLAB1008',
53
- synchronize: false,
54
- logging: true
55
- }
56
- }
@@ -1,33 +0,0 @@
1
- var licenseKey = require('./config/license').Key
2
-
3
- module.exports = {
4
- licenseKey: licenseKey,
5
- protocol: 'https',
6
- accessTokenCookieKey: 'access_token.board',
7
- email: {
8
- host: 'smtp.office365.com', // your sender-email smtp host
9
- port: 587, // smtp server port
10
- secure: false, // true for 465, false for other ports
11
- auth: {
12
- user: 'your sender-email',
13
- pass: 'your sender-email password' // generated ethereal password
14
- },
15
- secureConnection: false,
16
- tls: {
17
- ciphers: 'SSLv3'
18
- }
19
- },
20
- logger: {
21
- file: {
22
- filename: 'logs/application-%DATE%.log',
23
- datePattern: 'YYYY-MM-DD-HH',
24
- zippedArchive: false,
25
- maxSize: '20m',
26
- maxFiles: '2d',
27
- level: 'info'
28
- },
29
- console: {
30
- level: 'silly'
31
- }
32
- }
33
- }