@operato/scene-visualizer 1.2.87 → 1.2.90

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/CHANGELOG.md CHANGED
@@ -3,6 +3,23 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.2.90](https://github.com/things-scene/operato-scene/compare/v1.2.89...v1.2.90) (2023-11-22)
7
+
8
+ **Note:** Version bump only for package @operato/scene-visualizer
9
+
10
+
11
+
12
+
13
+
14
+ ## [1.2.88](https://github.com/things-scene/operato-scene/compare/v1.2.87...v1.2.88) (2023-11-12)
15
+
16
+
17
+ ### :bug: Bug Fix
18
+
19
+ * three@0.158.0 ([8f56203](https://github.com/things-scene/operato-scene/commit/8f5620347e290c53dffc43319e08d77ab66b7caa))
20
+
21
+
22
+
6
23
  ## [1.2.87](https://github.com/things-scene/operato-scene/compare/v1.2.86...v1.2.87) (2023-11-10)
7
24
 
8
25
  **Note:** Version bump only for package @operato/scene-visualizer
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@operato/scene-visualizer",
3
3
  "description": "visualizer component for operato-scene",
4
4
  "author": "heartyoh",
5
- "version": "1.2.87",
5
+ "version": "1.2.90",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
8
8
  "license": "MIT",
@@ -29,14 +29,14 @@
29
29
  "dependencies": {
30
30
  "@hatiolab/things-scene": "^3.2.0",
31
31
  "lit": "^2.5.0",
32
- "three": "^0.157.0",
32
+ "three": "^0.158.0",
33
33
  "tinycolor2": "^1.6.0"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@hatiolab/prettier-config": "^1.0.0",
37
37
  "@things-factory/builder": "^6.0.0",
38
38
  "@things-factory/operato-board": "^6.0.0",
39
- "@types/three": "^0.156.0",
39
+ "@types/three": "^0.158.0",
40
40
  "@types/tinycolor2": "^1.4.3",
41
41
  "@typescript-eslint/eslint-plugin": "^4.33.0",
42
42
  "@typescript-eslint/parser": "^4.33.0",
@@ -62,5 +62,5 @@
62
62
  "prettier --write"
63
63
  ]
64
64
  },
65
- "gitHead": "d795a8b7767e8b82729cd2d08d65814d3aca06b4"
65
+ "gitHead": "93fdb854cd60011a20786ed3dc693088dbb751bc"
66
66
  }
package/schema.graphql CHANGED
@@ -40,6 +40,7 @@ type AppBinding {
40
40
  updatedAt: DateTimeISO
41
41
  updater: User!
42
42
  userType: String
43
+ usersAuthProviders: [UsersAuthProviders!]
43
44
  }
44
45
 
45
46
  type AppBindingList {
@@ -275,6 +276,62 @@ input AttributeSetPatch {
275
276
  items: [AttributeSetItemPatch!]
276
277
  }
277
278
 
279
+ """Entity for AuthProvider"""
280
+ type AuthProvider {
281
+ active: Boolean
282
+ clientId: String
283
+ clientSecret: String
284
+ createdAt: DateTimeISO
285
+ creator: User
286
+ domain: Domain
287
+ id: ID!
288
+ params: Object
289
+ privateKey: String
290
+ state: String
291
+ tenantId: String
292
+ type: String
293
+ updatedAt: DateTimeISO
294
+ updater: User
295
+ usersAuthProviders: [UsersAuthProviders!]
296
+ }
297
+
298
+ type AuthProviderList {
299
+ items: [AuthProvider!]!
300
+ total: Int!
301
+ }
302
+
303
+ type AuthProviderParameterSpec {
304
+ label: String!
305
+ name: String!
306
+ placeholder: String
307
+ property: Object
308
+ type: String!
309
+ }
310
+
311
+ input AuthProviderPatch {
312
+ active: Boolean
313
+ clientId: String
314
+ clientSecret: String
315
+ cuFlag: String
316
+ id: ID
317
+ params: Object
318
+ privateKey: String
319
+ tenantId: String
320
+ type: String
321
+ }
322
+
323
+ type AuthProviderType {
324
+ description: String
325
+ help: String
326
+ parameterSpec: [AuthProviderParameterSpec!]
327
+ type: String!
328
+ }
329
+
330
+ type AuthProviderTypeList {
331
+ items: [AuthProviderType!]!
332
+ total: Int!
333
+ }
334
+
278
335
  """Entity for Visualization Board"""
279
336
  type Board {
280
337
  createdAt: DateTimeISO
@@ -356,13 +413,14 @@ type BoardTemplate {
356
413
  description: String
357
414
  domain: Domain
358
415
  id: ID!
416
+ mine: Boolean!
359
417
  model: String
360
418
  name: String
361
- state: String
419
+ tags: Object
362
420
  thumbnail: String
363
421
  updatedAt: DateTimeISO
364
422
  updater: User
365
- version: Float
423
+ visibility: String
366
424
  }
367
425
 
368
426
  type BoardTemplateList {
@@ -374,16 +432,10 @@ input BoardTemplatePatch {
374
432
  cuFlag: String
375
433
  description: String
376
434
  id: ID
377
- model: String!
435
+ model: String
378
436
  name: String
379
- state: BoardTemplateStatus
380
437
  thumbnail: String
381
- }
382
-
383
- """state enumeration of a boardTemplate"""
384
- enum BoardTemplateStatus {
385
- DRAFT
386
- RELEASED
438
+ visibility: String
387
439
  }
388
440
 
389
441
  input ChatCompletionInput {
@@ -1466,6 +1518,9 @@ type Mutation {
1466
1518
  """To create new AttributeSet"""
1467
1519
  createAttributeSet(attribute: NewAttributeSet!): AttributeSet!
1468
1520
 
1521
+ """To create new AuthProvider"""
1522
+ createAuthProvider(authProvider: NewAuthProvider!): AuthProvider!
1523
+
1469
1524
  """To create new Board"""
1470
1525
  createBoard(board: NewBoard!): Board!
1471
1526
 
@@ -1589,6 +1644,10 @@ type Mutation {
1589
1644
  """To delete multiple AttributeSets"""
1590
1645
  deleteAttributeSets(ids: [String!]!): Boolean!
1591
1646
 
1647
+ """To delete AuthProvider"""
1648
+ deleteAuthProvider(id: String!): Boolean!
1649
+ deleteAuthProviders(ids: [String!]!): Boolean!
1650
+
1592
1651
  """To delete Board"""
1593
1652
  deleteBoard(id: String!): Boolean!
1594
1653
 
@@ -1879,7 +1938,22 @@ type Mutation {
1879
1938
  """To refresh oauth2 access token"""
1880
1939
  refreshOauth2AccessToken(id: String!): Oauth2Client!
1881
1940
 
1882
- """To release Board information"""
1941
+ """To register a board as a board template with the given ID"""
1942
+ registerBoardAsTemplate(
1943
+ """description of board template to be regiestered"""
1944
+ description: String!
1945
+
1946
+ """board Id to be regiestered"""
1947
+ id: String!
1948
+
1949
+ """name of board template to be regiestered"""
1950
+ name: String!
1951
+
1952
+ """visibility of board template to be regiestered"""
1953
+ visibility: String!
1954
+ ): BoardTemplate!
1955
+
1956
+ """To release a Board"""
1883
1957
  releaseBoard(id: String!): Board!
1884
1958
  renewApplicationAccessToken(id: String!, scope: String!): AccessToken!
1885
1959
 
@@ -1914,8 +1988,11 @@ type Mutation {
1914
1988
  """To subscribe azure active directory users"""
1915
1989
  subscribeAzureADUsers: Boolean!
1916
1990
 
1917
- """To synchronize azure active directory users"""
1918
- synchronizeAzureADUsers: Boolean!
1991
+ """To subscribe google users"""
1992
+ subscribeGoogleUsers: Boolean!
1993
+
1994
+ """To synchronize auth-providers users"""
1995
+ synchronizeAuthProviderUsers(id: String!): Boolean!
1919
1996
 
1920
1997
  """
1921
1998
  To synchronize privilege master from graphql directives. Only superuser is permitted.
@@ -1935,6 +2012,9 @@ type Mutation {
1935
2012
  """To modify AttributeSet information"""
1936
2013
  updateAttributeSet(id: String!, patch: AttributeSetPatch!): AttributeSet!
1937
2014
 
2015
+ """To modify AuthProvider information"""
2016
+ updateAuthProvider(id: String!, patch: AuthProviderPatch!): AuthProvider!
2017
+
1938
2018
  """To modify Board information"""
1939
2019
  updateBoard(id: String!, patch: BoardPatch!): Board!
1940
2020
 
@@ -2000,6 +2080,7 @@ type Mutation {
2000
2080
 
2001
2081
  """To modify multiple AttributeSets' information"""
2002
2082
  updateMultipleAttributeSet(patches: [AttributeSetPatch!]!): [AttributeSet!]!
2083
+ updateMultipleAuthProvider(patches: [AuthProviderPatch!]!): [AuthProvider!]!
2003
2084
 
2004
2085
  """To modify multiple CommonCodes' information"""
2005
2086
  updateMultipleCommonCode(patches: [CommonCodePatch!]!): [CommonCode!]!
@@ -2159,6 +2240,16 @@ input NewAttributeSet {
2159
2240
  items: [AttributeSetItemPatch!]
2160
2241
  }
2161
2242
 
2243
+ input NewAuthProvider {
2244
+ active: Boolean
2245
+ clientId: String
2246
+ clientSecret: String
2247
+ params: Object
2248
+ privateKey: String
2249
+ tenantId: String
2250
+ type: String!
2251
+ }
2252
+
2162
2253
  input NewBoard {
2163
2254
  description: String
2164
2255
  groupId: String
@@ -2168,11 +2259,11 @@ input NewBoard {
2168
2259
  }
2169
2260
 
2170
2261
  input NewBoardTemplate {
2171
- description: String
2262
+ description: String!
2172
2263
  model: String!
2173
2264
  name: String!
2174
- state: BoardTemplateStatus
2175
2265
  thumbnail: String
2266
+ visibility: String!
2176
2267
  }
2177
2268
 
2178
2269
  input NewCommonCode {
@@ -2545,6 +2636,7 @@ input NewScenario {
2545
2636
  active: Boolean
2546
2637
  description: String
2547
2638
  name: String!
2639
+ privilege: PrivilegeInput
2548
2640
  schedule: String
2549
2641
  timezone: String
2550
2642
  type: String
@@ -2983,11 +3075,25 @@ type Privilege {
2983
3075
  updater: User
2984
3076
  }
2985
3077
 
3078
+ input PrivilegeInput {
3079
+ category: String
3080
+ owner: Boolean
3081
+ privilege: String
3082
+ super: Boolean
3083
+ }
3084
+
2986
3085
  type PrivilegeList {
2987
3086
  items: [Privilege!]
2988
3087
  total: Int
2989
3088
  }
2990
3089
 
3090
+ type PrivilegeObject {
3091
+ category: String
3092
+ owner: Boolean
3093
+ privilege: String
3094
+ super: Boolean
3095
+ }
3096
+
2991
3097
  input PrivilegePatch {
2992
3098
  category: String
2993
3099
  description: String
@@ -3058,6 +3164,15 @@ type Query {
3058
3164
  """To fetch multiple AttributeSets"""
3059
3165
  attributeSets(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AttributeSetList!
3060
3166
 
3167
+ """To fetch a AuthProvider"""
3168
+ authProvider(id: String!): AuthProvider
3169
+
3170
+ """To fetch a AuthProvider"""
3171
+ authProviderTypes: AuthProviderTypeList
3172
+
3173
+ """To fetch multiple AuthProviders"""
3174
+ authProviders(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AuthProviderList!
3175
+
3061
3176
  """To fetch a board"""
3062
3177
  board(id: String!): Board!
3063
3178
 
@@ -3073,9 +3188,6 @@ type Query {
3073
3188
  """To fetch a BoardTemplate"""
3074
3189
  boardTemplate(id: String!): BoardTemplate
3075
3190
 
3076
- """To fetch a BoardTemplate by name"""
3077
- boardTemplateByName(name: String!): BoardTemplate
3078
-
3079
3191
  """To fetch multiple BoardTemplates"""
3080
3192
  boardTemplates(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardTemplateList!
3081
3193
 
@@ -3337,7 +3449,7 @@ type Query {
3337
3449
  """To fetch Menus by role"""
3338
3450
  roleMenus(roleId: String!): MenuList!
3339
3451
 
3340
- """To fetch priviliges of a role"""
3452
+ """To fetch privileges of a role"""
3341
3453
  rolePrivileges(roleId: String!): [RolePrivilege!]!
3342
3454
 
3343
3455
  """To fetch multiple users"""
@@ -3455,6 +3567,7 @@ type Scenario {
3455
3567
  id: ID!
3456
3568
  instances: [ScenarioInstance!]
3457
3569
  name: String!
3570
+ privilege: PrivilegeObject
3458
3571
 
3459
3572
  """accessible and executable system-wide"""
3460
3573
  public: Boolean
@@ -3528,6 +3641,7 @@ input ScenarioPatch {
3528
3641
  description: String
3529
3642
  id: ID
3530
3643
  name: String
3644
+ privilege: PrivilegeInput
3531
3645
  schedule: String
3532
3646
  steps: [StepPatch!]
3533
3647
  timezone: String
@@ -3728,6 +3842,7 @@ type User {
3728
3842
  updatedAt: DateTimeISO
3729
3843
  updater: User
3730
3844
  userType: String
3845
+ usersAuthProviders: [UsersAuthProviders!]
3731
3846
  }
3732
3847
 
3733
3848
  type UserList {
@@ -3755,6 +3870,17 @@ type UserRole {
3755
3870
  name: String
3756
3871
  }
3757
3872
 
3873
+ """Entity for UsersAuthProviders"""
3874
+ type UsersAuthProviders {
3875
+ authProvider: AuthProvider
3876
+ createdAt: DateTimeISO
3877
+ domain: Domain
3878
+ id: ID!
3879
+ ssoId: String
3880
+ updatedAt: DateTimeISO
3881
+ user: User
3882
+ }
3883
+
3758
3884
  input i18nCompletionInput {
3759
3885
  json: String!
3760
3886
  }
package/db.sqlite DELETED
Binary file
@@ -1,25 +0,0 @@
1
- {
2
- "keep": {
3
- "days": true,
4
- "amount": 2
5
- },
6
- "auditLog": "logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json",
7
- "files": [
8
- {
9
- "date": 1696583286822,
10
- "name": "logs/application-2023-10-06-18.log",
11
- "hash": "d55097de8199fbcc06fff4bf3c4180e4c264a26af11a28da574dac5bfe8d4151"
12
- },
13
- {
14
- "date": 1696589449948,
15
- "name": "logs/application-2023-10-06-19.log",
16
- "hash": "67c3e89607a8ae0505c5e9c15a50d19be886e26b88559387334133c65a4769fc"
17
- },
18
- {
19
- "date": 1696590211739,
20
- "name": "logs/application-2023-10-06-20.log",
21
- "hash": "7010c9d659b92e41b63bef688e17ecdd8579f0a601fa2579b31ca0788c462ec1"
22
- }
23
- ],
24
- "hashType": "sha256"
25
- }
@@ -1,25 +0,0 @@
1
- {
2
- "keep": {
3
- "days": true,
4
- "amount": 14
5
- },
6
- "auditLog": "logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json",
7
- "files": [
8
- {
9
- "date": 1696583287909,
10
- "name": "logs/connections-2023-10-06-18.log",
11
- "hash": "45bfa1f1557792c0f32a8bad1241ef8caea5716310e925474aa08f4ebfe43aa3"
12
- },
13
- {
14
- "date": 1696589451269,
15
- "name": "logs/connections-2023-10-06-19.log",
16
- "hash": "f46a426443badf6a6afbc6dc9d5607847b9b1f6db0380bd74379f179135e4116"
17
- },
18
- {
19
- "date": 1696590900635,
20
- "name": "logs/connections-2023-10-06-20.log",
21
- "hash": "4e5cef35937595702625fc22d8f63a3a447f80282cfc542a3aa6f67e66933c5d"
22
- }
23
- ],
24
- "hashType": "sha256"
25
- }
@@ -1,18 +0,0 @@
1
- 2023-10-06T18:08:07+09:00 info: File Storage is Ready.
2
- 2023-10-06T18:08:08+09:00 error: oracledb module loading failed
3
- 2023-10-06T18:08:08+09:00 error: oracledb module loading failed
4
- 2023-10-06T18:08:09+09:00 info: Default DataSource established
5
- 2023-10-06T18:08:10+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
- 2023-10-06T18:08:10+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
7
- 2023-10-06T18:15:33+09:00 info: File Storage is Ready.
8
- 2023-10-06T18:15:33+09:00 error: oracledb module loading failed
9
- 2023-10-06T18:15:33+09:00 error: oracledb module loading failed
10
- 2023-10-06T18:15:34+09:00 info: Default DataSource established
11
- 2023-10-06T18:15:35+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
12
- 2023-10-06T18:15:35+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
13
- 2023-10-06T18:40:18+09:00 info: File Storage is Ready.
14
- 2023-10-06T18:40:18+09:00 error: oracledb module loading failed
15
- 2023-10-06T18:40:19+09:00 error: oracledb module loading failed
16
- 2023-10-06T18:40:19+09:00 info: Default DataSource established
17
- 2023-10-06T18:40:20+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
18
- 2023-10-06T18:40:20+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -1,13 +0,0 @@
1
- 2023-10-06T19:50:50+09:00 info: File Storage is Ready.
2
- 2023-10-06T19:50:51+09:00 error: oracledb module loading failed
3
- 2023-10-06T19:50:51+09:00 error: oracledb module loading failed
4
- 2023-10-06T19:50:52+09:00 info: Default DataSource established
5
- 2023-10-06T19:50:53+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
- 2023-10-06T19:50:53+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
7
- 2023-10-06T19:53:24+09:00 error: thumbnail not found
8
- 2023-10-06T19:53:24+09:00 error: thumbnail not found
9
- 2023-10-06T19:53:24+09:00 error: thumbnail not found
10
- 2023-10-06T19:53:24+09:00 error: thumbnail not found
11
- 2023-10-06T19:53:24+09:00 error: thumbnail not found
12
- 2023-10-06T19:53:24+09:00 error: thumbnail not found
13
- 2023-10-06T19:53:24+09:00 error: thumbnail not found
@@ -1,6 +0,0 @@
1
- 2023-10-06T20:15:00+09:00 info: File Storage is Ready.
2
- 2023-10-06T20:15:00+09:00 error: oracledb module loading failed
3
- 2023-10-06T20:15:00+09:00 error: oracledb module loading failed
4
- 2023-10-06T20:15:02+09:00 info: Default DataSource established
5
- 2023-10-06T20:15:03+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
- 2023-10-06T20:15:03+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -1,114 +0,0 @@
1
- 2023-10-06T18:08:10+09:00 info: Initializing ConnectionManager...
2
- 2023-10-06T18:08:10+09:00 info: Connector 'echo-back-server' started to ready
3
- 2023-10-06T18:08:10+09:00 info: Connector 'echo-back' started to ready
4
- 2023-10-06T18:08:10+09:00 info: Connector 'http-connector' started to ready
5
- 2023-10-06T18:08:10+09:00 info: Connector 'graphql-connector' started to ready
6
- 2023-10-06T18:08:10+09:00 info: Connector 'sqlite-connector' started to ready
7
- 2023-10-06T18:08:10+09:00 info: Connector 'postgresql-connector' started to ready
8
- 2023-10-06T18:08:10+09:00 info: Connector 'mqtt-connector' started to ready
9
- 2023-10-06T18:08:10+09:00 info: Connector 'mssql-connector' started to ready
10
- 2023-10-06T18:08:10+09:00 info: Connector 'oracle-connector' started to ready
11
- 2023-10-06T18:08:10+09:00 info: Connector 'mysql-connector' started to ready
12
- 2023-10-06T18:08:10+09:00 info: Connector 'socket-server' started to ready
13
- 2023-10-06T18:08:10+09:00 info: Connector 'msgraph-connector' started to ready
14
- 2023-10-06T18:08:10+09:00 info: echo-back-servers are ready
15
- 2023-10-06T18:08:10+09:00 info: echo-back connections are ready
16
- 2023-10-06T18:08:10+09:00 info: http-connector connections are ready
17
- 2023-10-06T18:08:10+09:00 info: graphql-connector connections are ready
18
- 2023-10-06T18:08:10+09:00 info: sqlite-connector connections are ready
19
- 2023-10-06T18:08:10+09:00 info: postgresql-connector connections are ready
20
- 2023-10-06T18:08:10+09:00 info: mqtt-connector connections are ready
21
- 2023-10-06T18:08:10+09:00 info: mssql-connector connections are ready
22
- 2023-10-06T18:08:10+09:00 info: oracle-connector connections are ready
23
- 2023-10-06T18:08:10+09:00 info: mysql-connector connections are ready
24
- 2023-10-06T18:08:10+09:00 info: socket servers are ready
25
- 2023-10-06T18:08:10+09:00 info: msgraph-connector connections are ready
26
- 2023-10-06T18:08:10+09:00 info: All connector for 'echo-back-server' ready
27
- 2023-10-06T18:08:10+09:00 info: All connector for 'echo-back' ready
28
- 2023-10-06T18:08:10+09:00 info: All connector for 'http-connector' ready
29
- 2023-10-06T18:08:10+09:00 info: All connector for 'graphql-connector' ready
30
- 2023-10-06T18:08:10+09:00 info: All connector for 'sqlite-connector' ready
31
- 2023-10-06T18:08:10+09:00 info: All connector for 'postgresql-connector' ready
32
- 2023-10-06T18:08:10+09:00 info: All connector for 'mqtt-connector' ready
33
- 2023-10-06T18:08:10+09:00 info: All connector for 'mssql-connector' ready
34
- 2023-10-06T18:08:10+09:00 info: All connector for 'oracle-connector' ready
35
- 2023-10-06T18:08:10+09:00 info: All connector for 'mysql-connector' ready
36
- 2023-10-06T18:08:10+09:00 info: All connector for 'socket-server' ready
37
- 2023-10-06T18:08:10+09:00 info: All connector for 'msgraph-connector' ready
38
- 2023-10-06T18:08:10+09:00 info: ConnectionManager initialization done:
39
- 2023-10-06T18:15:35+09:00 info: Initializing ConnectionManager...
40
- 2023-10-06T18:15:35+09:00 info: Connector 'echo-back-server' started to ready
41
- 2023-10-06T18:15:35+09:00 info: Connector 'echo-back' started to ready
42
- 2023-10-06T18:15:35+09:00 info: Connector 'http-connector' started to ready
43
- 2023-10-06T18:15:35+09:00 info: Connector 'graphql-connector' started to ready
44
- 2023-10-06T18:15:35+09:00 info: Connector 'sqlite-connector' started to ready
45
- 2023-10-06T18:15:35+09:00 info: Connector 'postgresql-connector' started to ready
46
- 2023-10-06T18:15:35+09:00 info: Connector 'mqtt-connector' started to ready
47
- 2023-10-06T18:15:35+09:00 info: Connector 'mssql-connector' started to ready
48
- 2023-10-06T18:15:35+09:00 info: Connector 'oracle-connector' started to ready
49
- 2023-10-06T18:15:35+09:00 info: Connector 'mysql-connector' started to ready
50
- 2023-10-06T18:15:35+09:00 info: Connector 'socket-server' started to ready
51
- 2023-10-06T18:15:35+09:00 info: Connector 'msgraph-connector' started to ready
52
- 2023-10-06T18:15:35+09:00 info: echo-back-servers are ready
53
- 2023-10-06T18:15:35+09:00 info: echo-back connections are ready
54
- 2023-10-06T18:15:35+09:00 info: http-connector connections are ready
55
- 2023-10-06T18:15:35+09:00 info: graphql-connector connections are ready
56
- 2023-10-06T18:15:35+09:00 info: sqlite-connector connections are ready
57
- 2023-10-06T18:15:35+09:00 info: postgresql-connector connections are ready
58
- 2023-10-06T18:15:35+09:00 info: mqtt-connector connections are ready
59
- 2023-10-06T18:15:35+09:00 info: mssql-connector connections are ready
60
- 2023-10-06T18:15:35+09:00 info: oracle-connector connections are ready
61
- 2023-10-06T18:15:35+09:00 info: mysql-connector connections are ready
62
- 2023-10-06T18:15:35+09:00 info: socket servers are ready
63
- 2023-10-06T18:15:35+09:00 info: msgraph-connector connections are ready
64
- 2023-10-06T18:15:35+09:00 info: All connector for 'echo-back-server' ready
65
- 2023-10-06T18:15:35+09:00 info: All connector for 'echo-back' ready
66
- 2023-10-06T18:15:35+09:00 info: All connector for 'http-connector' ready
67
- 2023-10-06T18:15:35+09:00 info: All connector for 'graphql-connector' ready
68
- 2023-10-06T18:15:35+09:00 info: All connector for 'sqlite-connector' ready
69
- 2023-10-06T18:15:35+09:00 info: All connector for 'postgresql-connector' ready
70
- 2023-10-06T18:15:35+09:00 info: All connector for 'mqtt-connector' ready
71
- 2023-10-06T18:15:35+09:00 info: All connector for 'mssql-connector' ready
72
- 2023-10-06T18:15:35+09:00 info: All connector for 'oracle-connector' ready
73
- 2023-10-06T18:15:35+09:00 info: All connector for 'mysql-connector' ready
74
- 2023-10-06T18:15:35+09:00 info: All connector for 'socket-server' ready
75
- 2023-10-06T18:15:35+09:00 info: All connector for 'msgraph-connector' ready
76
- 2023-10-06T18:15:35+09:00 info: ConnectionManager initialization done:
77
- 2023-10-06T18:40:20+09:00 info: Initializing ConnectionManager...
78
- 2023-10-06T18:40:20+09:00 info: Connector 'echo-back-server' started to ready
79
- 2023-10-06T18:40:20+09:00 info: Connector 'echo-back' started to ready
80
- 2023-10-06T18:40:20+09:00 info: Connector 'http-connector' started to ready
81
- 2023-10-06T18:40:20+09:00 info: Connector 'graphql-connector' started to ready
82
- 2023-10-06T18:40:20+09:00 info: Connector 'sqlite-connector' started to ready
83
- 2023-10-06T18:40:20+09:00 info: Connector 'postgresql-connector' started to ready
84
- 2023-10-06T18:40:20+09:00 info: Connector 'mqtt-connector' started to ready
85
- 2023-10-06T18:40:20+09:00 info: Connector 'mssql-connector' started to ready
86
- 2023-10-06T18:40:20+09:00 info: Connector 'oracle-connector' started to ready
87
- 2023-10-06T18:40:20+09:00 info: Connector 'mysql-connector' started to ready
88
- 2023-10-06T18:40:20+09:00 info: Connector 'socket-server' started to ready
89
- 2023-10-06T18:40:20+09:00 info: Connector 'msgraph-connector' started to ready
90
- 2023-10-06T18:40:20+09:00 info: echo-back-servers are ready
91
- 2023-10-06T18:40:20+09:00 info: echo-back connections are ready
92
- 2023-10-06T18:40:20+09:00 info: http-connector connections are ready
93
- 2023-10-06T18:40:20+09:00 info: graphql-connector connections are ready
94
- 2023-10-06T18:40:20+09:00 info: sqlite-connector connections are ready
95
- 2023-10-06T18:40:20+09:00 info: postgresql-connector connections are ready
96
- 2023-10-06T18:40:20+09:00 info: mqtt-connector connections are ready
97
- 2023-10-06T18:40:20+09:00 info: mssql-connector connections are ready
98
- 2023-10-06T18:40:20+09:00 info: oracle-connector connections are ready
99
- 2023-10-06T18:40:20+09:00 info: mysql-connector connections are ready
100
- 2023-10-06T18:40:20+09:00 info: socket servers are ready
101
- 2023-10-06T18:40:20+09:00 info: msgraph-connector connections are ready
102
- 2023-10-06T18:40:20+09:00 info: All connector for 'echo-back-server' ready
103
- 2023-10-06T18:40:20+09:00 info: All connector for 'echo-back' ready
104
- 2023-10-06T18:40:20+09:00 info: All connector for 'http-connector' ready
105
- 2023-10-06T18:40:20+09:00 info: All connector for 'graphql-connector' ready
106
- 2023-10-06T18:40:20+09:00 info: All connector for 'sqlite-connector' ready
107
- 2023-10-06T18:40:20+09:00 info: All connector for 'postgresql-connector' ready
108
- 2023-10-06T18:40:20+09:00 info: All connector for 'mqtt-connector' ready
109
- 2023-10-06T18:40:20+09:00 info: All connector for 'mssql-connector' ready
110
- 2023-10-06T18:40:20+09:00 info: All connector for 'oracle-connector' ready
111
- 2023-10-06T18:40:20+09:00 info: All connector for 'mysql-connector' ready
112
- 2023-10-06T18:40:20+09:00 info: All connector for 'socket-server' ready
113
- 2023-10-06T18:40:20+09:00 info: All connector for 'msgraph-connector' ready
114
- 2023-10-06T18:40:20+09:00 info: ConnectionManager initialization done:
@@ -1,38 +0,0 @@
1
- 2023-10-06T19:50:53+09:00 info: Initializing ConnectionManager...
2
- 2023-10-06T19:50:53+09:00 info: Connector 'echo-back-server' started to ready
3
- 2023-10-06T19:50:53+09:00 info: Connector 'echo-back' started to ready
4
- 2023-10-06T19:50:53+09:00 info: Connector 'http-connector' started to ready
5
- 2023-10-06T19:50:53+09:00 info: Connector 'graphql-connector' started to ready
6
- 2023-10-06T19:50:53+09:00 info: Connector 'sqlite-connector' started to ready
7
- 2023-10-06T19:50:53+09:00 info: Connector 'postgresql-connector' started to ready
8
- 2023-10-06T19:50:53+09:00 info: Connector 'mqtt-connector' started to ready
9
- 2023-10-06T19:50:53+09:00 info: Connector 'mssql-connector' started to ready
10
- 2023-10-06T19:50:53+09:00 info: Connector 'oracle-connector' started to ready
11
- 2023-10-06T19:50:53+09:00 info: Connector 'mysql-connector' started to ready
12
- 2023-10-06T19:50:53+09:00 info: Connector 'socket-server' started to ready
13
- 2023-10-06T19:50:53+09:00 info: Connector 'msgraph-connector' started to ready
14
- 2023-10-06T19:50:53+09:00 info: echo-back-servers are ready
15
- 2023-10-06T19:50:53+09:00 info: echo-back connections are ready
16
- 2023-10-06T19:50:53+09:00 info: http-connector connections are ready
17
- 2023-10-06T19:50:53+09:00 info: graphql-connector connections are ready
18
- 2023-10-06T19:50:53+09:00 info: sqlite-connector connections are ready
19
- 2023-10-06T19:50:53+09:00 info: postgresql-connector connections are ready
20
- 2023-10-06T19:50:53+09:00 info: mqtt-connector connections are ready
21
- 2023-10-06T19:50:53+09:00 info: mssql-connector connections are ready
22
- 2023-10-06T19:50:53+09:00 info: oracle-connector connections are ready
23
- 2023-10-06T19:50:53+09:00 info: mysql-connector connections are ready
24
- 2023-10-06T19:50:53+09:00 info: socket servers are ready
25
- 2023-10-06T19:50:53+09:00 info: msgraph-connector connections are ready
26
- 2023-10-06T19:50:53+09:00 info: All connector for 'echo-back-server' ready
27
- 2023-10-06T19:50:53+09:00 info: All connector for 'echo-back' ready
28
- 2023-10-06T19:50:53+09:00 info: All connector for 'http-connector' ready
29
- 2023-10-06T19:50:53+09:00 info: All connector for 'graphql-connector' ready
30
- 2023-10-06T19:50:53+09:00 info: All connector for 'sqlite-connector' ready
31
- 2023-10-06T19:50:53+09:00 info: All connector for 'postgresql-connector' ready
32
- 2023-10-06T19:50:53+09:00 info: All connector for 'mqtt-connector' ready
33
- 2023-10-06T19:50:53+09:00 info: All connector for 'mssql-connector' ready
34
- 2023-10-06T19:50:53+09:00 info: All connector for 'oracle-connector' ready
35
- 2023-10-06T19:50:53+09:00 info: All connector for 'mysql-connector' ready
36
- 2023-10-06T19:50:53+09:00 info: All connector for 'socket-server' ready
37
- 2023-10-06T19:50:53+09:00 info: All connector for 'msgraph-connector' ready
38
- 2023-10-06T19:50:53+09:00 info: ConnectionManager initialization done: