@operato/scene-table 1.2.45 → 1.2.49

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,24 @@
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.49](https://github.com/things-scene/operato-scene/compare/v1.2.48...v1.2.49) (2023-06-26)
7
+
8
+
9
+ ### :bug: Bug Fix
10
+
11
+ * missing .npmignore ([61ba4f2](https://github.com/things-scene/operato-scene/commit/61ba4f2ae22a865d700a971d62eb01f950c34d0e))
12
+
13
+
14
+
15
+ ## [1.2.46](https://github.com/things-scene/operato-scene/compare/v1.2.45...v1.2.46) (2023-06-10)
16
+
17
+
18
+ ### :bug: Bug Fix
19
+
20
+ * typescript build options ([3eb0d7f](https://github.com/things-scene/operato-scene/commit/3eb0d7fd80e2c3cea698501aa1d9d54903423a7b))
21
+
22
+
23
+
6
24
  ## [1.2.45](https://github.com/things-scene/operato-scene/compare/v1.2.44...v1.2.45) (2023-06-09)
7
25
 
8
26
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@operato/scene-table",
3
3
  "description": "Things Scene Table Component.",
4
- "version": "1.2.45",
4
+ "version": "1.2.49",
5
5
  "author": "heartyoh",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
@@ -58,5 +58,5 @@
58
58
  "prettier --write"
59
59
  ]
60
60
  },
61
- "gitHead": "131e93569c5da183050eb855d67b72580414d370"
61
+ "gitHead": "f91b0d45641177ae36015ebd23b780a48715349b"
62
62
  }
package/schema.gql CHANGED
@@ -152,6 +152,61 @@ input AttachmentPatch {
152
152
  refType: String
153
153
  }
154
154
 
155
+ """Entity for AttributeSet"""
156
+ type AttributeSet {
157
+ createdAt: Timestamp
158
+ description: String
159
+ entity: String
160
+ id: ID!
161
+ items: [AttributeSetItem!]
162
+ updatedAt: Timestamp
163
+ }
164
+
165
+ """Entity for AttributeSetItem"""
166
+ type AttributeSetItem {
167
+ active: Boolean
168
+ description: String
169
+ hidden: Boolean
170
+ name: String!
171
+ options: Object
172
+ tag: String
173
+ type: String
174
+ }
175
+
176
+ input AttributeSetItemPatch {
177
+ active: Boolean
178
+ description: String
179
+ hidden: Boolean
180
+ name: String
181
+ options: Object
182
+ tag: String
183
+ type: AttributeSetItemType
184
+ }
185
+
186
+ """type enumeration of a attribute-set-item"""
187
+ enum AttributeSetItemType {
188
+ boolean
189
+ date
190
+ datetime
191
+ file
192
+ number
193
+ select
194
+ text
195
+ }
196
+
197
+ type AttributeSetList {
198
+ items: [AttributeSet!]!
199
+ total: Int!
200
+ }
201
+
202
+ input AttributeSetPatch {
203
+ cuFlag: String
204
+ description: String
205
+ entity: String
206
+ id: ID
207
+ items: [AttributeSetItemPatch!]
208
+ }
209
+
155
210
  """Entity for Visualization Board"""
156
211
  type Board {
157
212
  createdAt: Timestamp
@@ -326,8 +381,10 @@ type Data {
326
381
  scalar Date
327
382
 
328
383
  type Domain {
384
+ attributes: Object
329
385
  brandImage: String
330
386
  brandName: String
387
+ children: Domain
331
388
  contentImage: String
332
389
  createdAt: Timestamp
333
390
  description: String
@@ -335,7 +392,8 @@ type Domain {
335
392
  id: ID!
336
393
  name: String!
337
394
  owner: String
338
- ownerUser: User!
395
+ ownerUser: User
396
+ parent: Domain
339
397
  subdomain: String
340
398
  systemFlag: Boolean
341
399
  theme: String
@@ -359,12 +417,15 @@ type DomainList {
359
417
  }
360
418
 
361
419
  input DomainPatch {
420
+ attributes: Object
362
421
  brandImage: String
363
422
  brandName: String
364
423
  contentImage: String
365
424
  description: String
366
425
  id: String
367
426
  name: String
427
+ owner: String
428
+ parent: ObjectRef
368
429
  subdomain: String
369
430
  systemFlag: Boolean
370
431
  theme: String
@@ -641,6 +702,12 @@ input GroupPatch {
641
702
  name: String
642
703
  }
643
704
 
705
+ enum InheritedValueType {
706
+ Include
707
+ None
708
+ Only
709
+ }
710
+
644
711
  type Invitation {
645
712
  createdAt: Timestamp
646
713
  creator: User
@@ -1056,6 +1123,9 @@ type Mutation {
1056
1123
  createAttachment(attachment: NewAttachment!): Attachment!
1057
1124
  createAttachments(attachments: [NewAttachment!]!): [Attachment!]!
1058
1125
 
1126
+ """To create new AttributeSet"""
1127
+ createAttributeSet(attribute: NewAttributeSet!): AttributeSet!
1128
+
1059
1129
  """To create new Board"""
1060
1130
  createBoard(board: NewBoard!): Board!
1061
1131
 
@@ -1140,6 +1210,12 @@ type Mutation {
1140
1210
  deleteAttachment(id: String!): Boolean!
1141
1211
  deleteAttachmentsByRef(refBys: [String!]!): Boolean!
1142
1212
 
1213
+ """To delete AttributeSet"""
1214
+ deleteAttributeSet(id: String!): Boolean!
1215
+
1216
+ """To delete multiple AttributeSets"""
1217
+ deleteAttributeSets(ids: [String!]!): Boolean!
1218
+
1143
1219
  """To delete Board"""
1144
1220
  deleteBoard(id: String!): Boolean!
1145
1221
 
@@ -1293,6 +1369,9 @@ type Mutation {
1293
1369
  getOauth2AuthUrl(id: String!): String!
1294
1370
  grantRoles(customerId: String!, roles: [RolePatch!]!): Boolean!
1295
1371
 
1372
+ """To import multiple AttributeSets"""
1373
+ importAttributeSets(attributes: [AttributeSetPatch!]!): Boolean!
1374
+
1296
1375
  """To import multiple CommonCodeDetails"""
1297
1376
  importCommonCodeDetails(commonCodeDetails: [CommonCodeDetailPatch!]!): Boolean!
1298
1377
 
@@ -1381,6 +1460,9 @@ type Mutation {
1381
1460
  updateApplication(id: String!, patch: ApplicationPatch!): Application!
1382
1461
  updateAttachment(id: String!, patch: AttachmentPatch!): Attachment!
1383
1462
 
1463
+ """To modify AttributeSet information"""
1464
+ updateAttributeSet(id: String!, patch: AttributeSetPatch!): AttributeSet!
1465
+
1384
1466
  """To modify Board information"""
1385
1467
  updateBoard(id: String!, patch: BoardPatch!): Board!
1386
1468
 
@@ -1429,6 +1511,9 @@ type Mutation {
1429
1511
  """To modify MenuDetailColumn information"""
1430
1512
  updateMenuDetailColumn(id: String!, patch: MenuDetailColumnPatch!): MenuDetailColumn!
1431
1513
 
1514
+ """To modify multiple AttributeSets' information"""
1515
+ updateMultipleAttributeSet(patches: [AttributeSetPatch!]!): [AttributeSet!]!
1516
+
1432
1517
  """To modify multiple CommonCodes' information"""
1433
1518
  updateMultipleCommonCode(patches: [CommonCodePatch!]!): [CommonCode!]!
1434
1519
 
@@ -1533,6 +1618,13 @@ input NewAttachment {
1533
1618
  refType: String
1534
1619
  }
1535
1620
 
1621
+ input NewAttributeSet {
1622
+ active: Boolean
1623
+ description: String
1624
+ entity: String!
1625
+ items: [AttributeSetItemPatch!]
1626
+ }
1627
+
1536
1628
  input NewBoard {
1537
1629
  description: String
1538
1630
  groupId: String
@@ -2093,33 +2185,45 @@ type PropertySpec {
2093
2185
 
2094
2186
  type Query {
2095
2187
  appBinding(id: String!): AppBinding!
2096
- appBindings(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): AppBindingList!
2188
+ appBindings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AppBindingList!
2097
2189
 
2098
2190
  """ To fetch appliance"""
2099
2191
  appliance(id: String!): Appliance!
2100
2192
 
2101
2193
  """To fetch multiple appliance"""
2102
- appliances(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ApplianceList!
2194
+ appliances(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplianceList!
2103
2195
 
2104
2196
  """To fetch application"""
2105
2197
  application(id: String!): Application!
2106
2198
 
2107
2199
  """To fetch multiple application"""
2108
- applications(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ApplicationList!
2200
+ applications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplicationList!
2109
2201
  attachment(id: String!): Attachment!
2110
- attachments(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): AttachmentList!
2202
+ attachments(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AttachmentList!
2203
+
2204
+ """To fetch a AttributeSet"""
2205
+ attributeSet(id: String!): AttributeSet
2206
+
2207
+ """To fetch a AttributeSet by Entity name"""
2208
+ attributeSetByEntity(entity: String!): AttributeSet
2209
+
2210
+ """To fetch multiple AttributeSets"""
2211
+ attributeSets(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AttributeSetList!
2111
2212
 
2112
2213
  """To fetch a board"""
2113
2214
  board(id: String!): Board!
2114
2215
 
2216
+ """To fetch a Board Model by name"""
2217
+ boardByName(name: String!): Board
2218
+
2115
2219
  """Board Usage Permissions"""
2116
2220
  boardPermissions: [String!]!
2117
2221
 
2118
2222
  """To fetch multiple Boards"""
2119
- boards(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): BoardList!
2223
+ boards(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
2120
2224
 
2121
2225
  """To fetch Boards created by me"""
2122
- boardsCreatedByMe(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): BoardList!
2226
+ boardsCreatedByMe(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
2123
2227
 
2124
2228
  """To check if system would provide default password to create new user"""
2125
2229
  checkDefaultPassword: Boolean!
@@ -2143,16 +2247,16 @@ type Query {
2143
2247
  commonCodeDetail(id: String!): CommonCodeDetail!
2144
2248
 
2145
2249
  """To fetch multiple CommonCodeDetails"""
2146
- commonCodeDetails(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): CommonCodeDetailList!
2250
+ commonCodeDetails(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): CommonCodeDetailList!
2147
2251
 
2148
2252
  """To fetch multiple CommonCodes"""
2149
- commonCodes(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): CommonCodeList!
2253
+ commonCodes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): CommonCodeList!
2150
2254
 
2151
2255
  """To fetch a connector"""
2152
2256
  connection(name: String!): ConnectorType!
2153
2257
 
2154
2258
  """To fetch multiple connections"""
2155
- connections(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ConnectionList!
2259
+ connections(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ConnectionList!
2156
2260
 
2157
2261
  """To fetch the connector from a connection"""
2158
2262
  connectorByConnection(connectionName: String!): ConnectorType!
@@ -2165,10 +2269,10 @@ type Query {
2165
2269
  domain(id: String!): Domain!
2166
2270
 
2167
2271
  """To fetch all domains (Only superuser is granted this privilege.)"""
2168
- domains(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DomainList!
2272
+ domains(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
2169
2273
 
2170
2274
  """To fetch multiple Entities"""
2171
- entities(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): EntityList!
2275
+ entities(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EntityList!
2172
2276
 
2173
2277
  """To fetch a Entity"""
2174
2278
  entity(id: String!): Entity!
@@ -2177,7 +2281,7 @@ type Query {
2177
2281
  entityColumn(id: String!): EntityColumn!
2178
2282
 
2179
2283
  """To fetch multiple EntityColumns"""
2180
- entityColumns(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): EntityColumnList!
2284
+ entityColumns(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EntityColumnList!
2181
2285
 
2182
2286
  """To fetch a EntityMetadata"""
2183
2287
  entityMetadata(name: String!): EntityMetadata!
@@ -2186,10 +2290,10 @@ type Query {
2186
2290
  favorite(id: String!): Favorite!
2187
2291
 
2188
2292
  """To fetch multiple BoardFavorites"""
2189
- favoriteBoards(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): BoardFavoriteList!
2293
+ favoriteBoards(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardFavoriteList!
2190
2294
 
2191
2295
  """To fetch multiple Favorites"""
2192
- favorites(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): FavoriteList!
2296
+ favorites(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): FavoriteList!
2193
2297
 
2194
2298
  """To fetch the state of a connection"""
2195
2299
  fetchConnectionState(name: String!): ConnectionState!
@@ -2198,10 +2302,7 @@ type Query {
2198
2302
  font(id: String!): Font!
2199
2303
 
2200
2304
  """To fetch multiple Fonts"""
2201
- fonts(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): FontList!
2202
-
2203
- """To fetch a Global Board Model"""
2204
- globalBoardByName(name: String!): Board
2305
+ fonts(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): FontList!
2205
2306
  grantedRoles: [GrantedRole!]!
2206
2307
  grantingRoles(customerId: String!): [GrantedRole!]!
2207
2308
 
@@ -2209,7 +2310,7 @@ type Query {
2209
2310
  group(id: String!): Group
2210
2311
 
2211
2312
  """To fetch multiple Groups"""
2212
- groups(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): GroupList!
2313
+ groups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): GroupList!
2213
2314
 
2214
2315
  """To query whether I have the given permission"""
2215
2316
  hasPrivilege(category: String!, name: String!): Boolean!
@@ -2223,7 +2324,7 @@ type Query {
2223
2324
  menuButton(id: String!): MenuButton!
2224
2325
 
2225
2326
  """To fetch multiple MenuButtons"""
2226
- menuButtons(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuButtonList!
2327
+ menuButtons(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuButtonList!
2227
2328
 
2228
2329
  """To fetch a Menu by routing"""
2229
2330
  menuByRouting(routing: String!): Menu!
@@ -2232,7 +2333,7 @@ type Query {
2232
2333
  menuColumn(id: String!): MenuColumn!
2233
2334
 
2234
2335
  """To fetch multiple MenuColumns"""
2235
- menuColumns(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuColumnList!
2336
+ menuColumns(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuColumnList!
2236
2337
 
2237
2338
  """To fetch a MenuDetail"""
2238
2339
  menuDetail(id: String!): MenuDetail!
@@ -2241,19 +2342,19 @@ type Query {
2241
2342
  menuDetailButton(id: String!): MenuDetailButton!
2242
2343
 
2243
2344
  """To fetch multiple MenuDetailButtons"""
2244
- menuDetailButtons(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuDetailButtonList!
2345
+ menuDetailButtons(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuDetailButtonList!
2245
2346
 
2246
2347
  """To fetch a MenuDetailColumn"""
2247
2348
  menuDetailColumn(id: String!): MenuDetailColumn!
2248
2349
 
2249
2350
  """To fetch multiple MenuDetailColumns"""
2250
- menuDetailColumns(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuDetailColumnList!
2351
+ menuDetailColumns(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuDetailColumnList!
2251
2352
 
2252
2353
  """To fetch multiple MenuDetails"""
2253
- menuDetails(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuDetailList!
2354
+ menuDetails(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuDetailList!
2254
2355
 
2255
2356
  """To fetch multiple Menus"""
2256
- menus(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuList!
2357
+ menus(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuList!
2257
2358
 
2258
2359
  """To fetch current user's Favorites"""
2259
2360
  myFavorites: [Favorite!]!
@@ -2266,7 +2367,7 @@ type Query {
2266
2367
  oauth2Client(id: String!): Oauth2Client
2267
2368
 
2268
2369
  """To fetch multiple Oauth2Clients"""
2269
- oauth2Clients(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): Oauth2ClientList!
2370
+ oauth2Clients(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): Oauth2ClientList!
2270
2371
 
2271
2372
  """To fetch specific domain's CommonCodes by given name"""
2272
2373
  partnerCommonCode(name: String!, partnerDomainId: String!): CommonCode!
@@ -2276,25 +2377,25 @@ type Query {
2276
2377
 
2277
2378
  """To fetch multiple PartnerSettings"""
2278
2379
  partnerSettings(filters: [Filter!]!, pagination: Pagination!, partnerDomain: ObjectRef!, sortings: [Sorting!]!): PartnerSettingList!
2279
- partners(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): PartnerList!
2380
+ partners(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PartnerList!
2280
2381
 
2281
2382
  """To fetch a PayloadLog"""
2282
2383
  payloadLog(id: String!): PayloadLog!
2283
2384
 
2284
2385
  """To fetch multiple PayloadLogs"""
2285
- payloadLogs(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): PayloadLogList!
2386
+ payloadLogs(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PayloadLogList!
2286
2387
 
2287
2388
  """To fetch a PlayGroup"""
2288
2389
  playGroup(id: String!): PlayGroup
2289
2390
 
2290
2391
  """To fetch multiple PlayGroups"""
2291
- playGroups(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): PlayGroupList!
2392
+ playGroups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PlayGroupList!
2292
2393
 
2293
2394
  """To fetch privilege"""
2294
2395
  privilege(category: String!, name: String!): Privilege!
2295
2396
 
2296
2397
  """To fetch multiple privileges"""
2297
- privileges(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): PrivilegeList!
2398
+ privileges(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PrivilegeList!
2298
2399
 
2299
2400
  """To fetch role"""
2300
2401
  role(name: String!): Role!
@@ -2306,7 +2407,7 @@ type Query {
2306
2407
  rolePrivileges(roleId: String!): [RolePrivilege!]!
2307
2408
 
2308
2409
  """To fetch multiple users"""
2309
- roles(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): RoleList!
2410
+ roles(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): RoleList!
2310
2411
 
2311
2412
  """To fetch a scenario"""
2312
2413
  scenario(id: String!): Scenario!
@@ -2315,23 +2416,23 @@ type Query {
2315
2416
  scenarioInstance(instanceName: String!): ScenarioInstance!
2316
2417
 
2317
2418
  """To fetch multiple scenario instances"""
2318
- scenarioInstances(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ScenarioInstanceList!
2419
+ scenarioInstances(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ScenarioInstanceList!
2319
2420
 
2320
2421
  """To fetch multiple scenarios"""
2321
- scenarios(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ScenarioList!
2322
- searchCustomers(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DomainList!
2422
+ scenarios(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ScenarioList!
2423
+ searchCustomers(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
2323
2424
 
2324
2425
  """To fetch a Setting"""
2325
2426
  setting(name: String!, partnerDomainId: String): Setting!
2326
2427
 
2327
2428
  """To fetch multiple Settings"""
2328
- settings(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): SettingList!
2429
+ settings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): SettingList!
2329
2430
 
2330
2431
  """To fetch a step"""
2331
2432
  step(name: String!): Step!
2332
2433
 
2333
2434
  """To fetch multiple steps"""
2334
- steps(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): StepList!
2435
+ steps(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): StepList!
2335
2436
 
2336
2437
  """To fetch a task-type"""
2337
2438
  taskType(name: String!): TaskType!
@@ -2343,7 +2444,7 @@ type Query {
2343
2444
  taskTypesByConnection(connectionName: String!): TaskTypeList!
2344
2445
 
2345
2446
  """To fetch multiple Terminologies"""
2346
- terminologies(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): TerminologyList!
2447
+ terminologies(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): TerminologyList!
2347
2448
 
2348
2449
  """To fetch a Terminology"""
2349
2450
  terminology(id: String!): Terminology!
@@ -2358,7 +2459,7 @@ type Query {
2358
2459
  userRoles(userId: String!): [UserRole!]!
2359
2460
 
2360
2461
  """To fetch multiple users"""
2361
- users(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): UserList!
2462
+ users(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserList!
2362
2463
  vendors: [Domain!]!
2363
2464
  }
2364
2465
 
@@ -2398,6 +2499,7 @@ type RolePrivilege {
2398
2499
  }
2399
2500
 
2400
2501
  type Scenario {
2502
+ """[will be deprecated] automatically be started when this server start"""
2401
2503
  active: Boolean
2402
2504
  createdAt: Timestamp
2403
2505
  creator: User
@@ -2406,6 +2508,9 @@ type Scenario {
2406
2508
  id: ID!
2407
2509
  instances: [ScenarioInstance!]
2408
2510
  name: String!
2511
+
2512
+ """accessible and executable system-wide"""
2513
+ public: Boolean
2409
2514
  schedule: String
2410
2515
  scheduleId: String
2411
2516
  state: String
package/tsconfig.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "module": "esnext",
5
5
  "moduleResolution": "node",
6
6
  "noEmitOnError": true,
7
- "lib": ["es2017", "dom"],
7
+ "lib": ["es2019", "dom"],
8
8
  "strict": true,
9
9
  "esModuleInterop": false,
10
10
  "allowSyntheticDefaultImports": true,
@@ -16,7 +16,7 @@
16
16
  "rootDir": "src",
17
17
  "declaration": true,
18
18
  "incremental": true,
19
- "types": ["node"]
19
+ "types": []
20
20
  },
21
21
  "include": ["**/*.ts", "*.d.ts"]
22
22
  }
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/tslib/tslib.d.ts","../../node_modules/@hatiolab/things-scene/things-scene.d.ts","./src/table-cell.ts","./src/table.ts","./src/data-list/data-cell.ts","./src/data-list/data-list-layout.ts","./src/data-list/data-list.ts","./src/index.ts","./src/helper-functions.ts","./src/types.ts","./src/templates/data-list.ts","./src/templates/table.ts","./src/templates/index.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/dom-events.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"fcd3ecc9f764f06f4d5c467677f4f117f6abf49dee6716283aa204ff1162498b","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"f1c9fe42b65437a61104e601eb298c5c859fb522b483f1bdb700eed67a16f980","1ec425c4c916d3a75b0557409a967eb5fee869beb69eefc2fbbf563f92bda771",{"version":"1ca1279c2865eb36a878c471b7226f5a9aca83872a77f685cbb57ae1a6763145","signature":"546847af93e390d29aecf0c2f8f73e7c9d77b389c5c91e4235aaa142cbd691fe"},{"version":"9942d78511174333cc0961947bafbe10cf436544a5f6646f61626a8820bf7ec8","signature":"9771db34432fea0b7061abd293588bbec695518584fe3ff2f0e92b78f09e64d2"},{"version":"b3ff423135d373a82c875df559573d94f9384fc596605cbb7aa54dd2dd949a26","signature":"e1c2b72c82d4b574bdfc7040fa1bf9ebac600104d61481824d3cef6b09de5dd1"},{"version":"77bd6e9bc8261369e74fcf648938ee878a75b9d126e19ee414fd452abaf5d272","signature":"592c7e5ea2df68aa407be1398a544900b41b58ee0345428d34223fc30d978240"},{"version":"76793918cc82bd85d85c4f552363951b1dc52ff533a51a47e9c375259c376a97","signature":"37e9a757ead13a2bcc691e2647268fd03f249219023072a32a8dc0db3bc5cc6e"},{"version":"0f1377d787433323434405a062d09a1398f5d33e1576f9c613673d9f469a7e0f","signature":"7d02d97a7a65065e1d520da2d020a3f25be2e84759bc46753477fe9a9f8b538c"},{"version":"db2b292c047db880a6fce447af8c15dbc1d7b92b71a345f90aeac7e398b26842","signature":"1ba833b30fe1327ccfdd6d677b4c94926f977075ffe09a2343c0c1d0031aa4ca"},{"version":"baa275c80f50945517e25fc292e3e96f84b484282ebbeb3cdc15a12249f855f9","signature":"66bcab35d001493a84cdf682f0e313872d10b6ed388efe767bb21fd883c4eac6"},{"version":"3fc4d42c1027b356c77c522b7a3daca6e87e23d89c111a432fce43e7c1d58e09","signature":"66ec166d01b5aea41847fb62680d88b5688b0aaf9496c73951a4a6239bcb878f"},{"version":"652be17ef64607e9eb0a0e87d9ffb1325f461a20362c877e0003f196b217f762","signature":"72d84e028e717c9076493b4a96f9523d24f3ebd0e08744c18d3ef714c70c2eaf"},{"version":"02b675f5beeeaf581b1b21b7bc72a1d67964dd9bccfb69ae19a79731e26f92c1","signature":"5ec5bde912e6a83d79b62a2d034bd2daf05071307bb667da8562163381f57662"},"587f13f1e8157bd8cec0adda0de4ef558bb8573daa9d518d1e2af38e87ecc91f","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"bce910d9164785c9f0d4dcea4be359f5f92130c7c7833dea6138ab1db310a1f9","affectsGlobalScope":true},"7a435e0c814f58f23e9a0979045ec0ef5909aac95a70986e8bcce30c27dff228",{"version":"241a2e19e03fd1d884e0f304429378d05bc2c1b26b5693c84868f7ad0674982d","affectsGlobalScope":true},"db71be322f07f769200108aa19b79a75dd19a187c9dca2a30c4537b233aa2863","0b70ce7a20fa21c7201a5a972b7f2288cb90ace8a2dde9f3344b5dfc6504abaf",{"version":"49479e21a040c0177d1b1bc05a124c0383df7a08a0726ad4d9457619642e875a","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","3fd0f1af75fb7abe0ea376aa71541daaf489f3d87c394b1165db684ea44b48be","3690133deae19c8127c5505fcb67b04bdc9eb053796008538a9b9abbb70d85aa","5b1c0a23f464f894e7c2b2b6c56df7b9afa60ed48c5345f8618d389a636b2108","be2b092f2765222757c6441b86c53a5ea8dfed47bbc43eab4c5fe37942c866b3","8e6b05abc98adba15e1ac78e137c64576c74002e301d682e66feb77a23907ab8","1ca735bb3d407b2af4fbee7665f3a0a83be52168c728cc209755060ba7ed67bd",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"b85c02e14ecb2a873dad5a1de72319b265160ba48f1b83661aeb3bba1366c1bc","affectsGlobalScope":true},"48a9a4c1c8d3df1e2a243ca91213b246aa0199aaedeff2baf480fcda85abd5b6","404c251593761ec3a964b0d15fd4d717fb0e2f98fef8941a7216f1dc81c3ddb3","55709608060f77965c270ac10ac646286589f1bd1cb174fff1778a2dd9a7ef31","790623a47c5eda62910098884ecb154dc0e5f3a23fc36c1bfb3b5b9ed44e2c2d","42b40e40f2a358cda332456214fad311e1806a6abf3cebaaac72496e07556642","354612fe1d49ecc9551ea3a27d94eef2887b64ef4a71f72ca444efe0f2f0ba80",{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true},"6a325d4c96569bdd5a9a59f819a672e2d5644ee6cf98ab910e0064402557af8d","5e2b91328a540a0933ab5c2203f4358918e6f0fe7505d22840a891a6117735f1","3abc3512fa04aa0230f59ea1019311fd8667bd935d28306311dccc8b17e79d5d",{"version":"14a50dafe3f45713f7f27cb6320dff07c6ac31678f07959c2134260061bf91ff","affectsGlobalScope":true},{"version":"5761c90b0cabdd6bd1f5fb1c3bf942088fdd39e18ed35dbe39b0c34bc733bf13","affectsGlobalScope":true},"1349077576abb41f0e9c78ec30762ff75b710208aff77f5fdcc6a8c8ce6289dd","e2ce82603102b5c0563f59fb40314cc1ff95a4d521a66ad14146e130ea80d89c","a3e0395220255a350aa9c6d56f882bfcb5b85c19fddf5419ec822cf22246a26d","c27b01e8ddff5cd280711af5e13aecd9a3228d1c256ea797dd64f8fdec5f7df5","898840e876dfd21843db9f2aa6ae38ba2eab550eb780ff62b894b9fbfebfae6b","0cab4d7d4edc40cd3af9eea7c3ed6d1016910c0954c49c4297e479bf3822a625","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","164deb2409ac5f4da3cd139dbcee7f7d66753d90363a4d7e2db8d8874f272270","1fb6c5ec52332a8b531a8d7a5300ac9301f98c4fe62f68e744e0841ccba65e7e",{"version":"ab294c4b7279318ee2a8fdf681305457ecc05970c94108d304933f18823eeac1","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","bbda6ea452a2386093a1eda18a6e26a989e98869f1b9f37e46f510a986d2e740","812b25f798033c202baedf386a1ccc41f9191b122f089bffd10fdccce99fba11","244cdeb8c344eb42e6142cbb0727752b9b735443fba7007c11b14ca06ebed97c",{"version":"75dd741ca6a6c8d2437a6ca8349b64b816421dbf9fe82dd026afaba965576962","affectsGlobalScope":true},{"version":"8799401a7ab57764f0d464513a7fa7c72e1d70a226b172ec60fff534ea94d108","affectsGlobalScope":true},"2ce2210032ccaff7710e2abf6a722e62c54960458e73e356b6a365c93ab6ca66","92db194ef7d208d5e4b6242a3434573fd142a621ff996d84cc9dbba3553277d0","69f5747ad0887c24c76858ed458712101771349f2287e21871fcd1562daa7dc0",{"version":"0bd9543cd8fc0959c76fb8f4f5a26626c2ed62ef4be98fd857bce268066db0a2","affectsGlobalScope":true},"1ca6858a0cbcd74d7db72d7b14c5360a928d1d16748a55ecfa6bfaff8b83071b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"220717df86539e219f619d31965d177e7235185e4bc6f6e6ed7e11a9b004d5ca"],"root":[[47,57]],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./dist","rootDir":"./src","sourceMap":true,"strict":true,"target":5},"fileIdsList":[[104],[58,104],[61,104],[62,67,95,104],[63,74,75,82,92,103,104],[63,64,74,82,104],[65,104],[66,67,75,83,104],[67,92,100,104],[68,70,74,82,104],[69,104],[70,71,104],[74,104],[72,74,104],[74,75,76,92,103,104],[74,75,76,89,92,95,104],[104,108],[70,74,77,82,92,103,104],[74,75,77,78,82,92,100,103,104],[77,79,92,100,103,104],[58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110],[74,80,104],[81,103,104],[70,74,82,92,104],[83,104],[84,104],[61,85,104],[86,102,104,108],[87,104],[88,104],[74,89,90,104],[89,91,104,106],[62,74,92,93,94,95,104],[62,92,94,104],[92,93,104],[95,104],[96,104],[92,104],[74,98,99,104],[98,99,104],[67,82,92,100,104],[101,104],[82,102,104],[62,77,88,103,104],[67,104],[92,104,105],[104,106],[104,107],[62,67,74,76,85,92,103,104,106,108],[92,104,109],[45,46,52,104],[45,46,49,51,104],[45,46,49,50,53,104],[45,47,48,51,104],[45,46,48,104],[45,46,47,53,104],[45,104],[45,55,56,104],[45,46,53,104],[46],[46,49,50,53],[46,52],[47,48,51],[46,47,53],[46,53]],"referencedMap":[[46,1],[58,2],[59,2],[61,3],[62,4],[63,5],[64,6],[65,7],[66,8],[67,9],[68,10],[69,11],[70,12],[71,12],[73,13],[72,14],[74,13],[75,15],[76,16],[60,17],[110,1],[77,18],[78,19],[79,20],[111,21],[80,22],[81,23],[82,24],[83,25],[84,26],[85,27],[86,28],[87,29],[88,30],[89,31],[90,31],[91,32],[92,33],[94,34],[93,35],[95,36],[96,37],[97,38],[98,39],[99,40],[100,41],[101,42],[102,43],[103,44],[104,45],[105,46],[106,47],[107,48],[108,49],[109,50],[45,1],[43,1],[44,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[33,1],[30,1],[31,1],[32,1],[34,1],[7,1],[35,1],[40,1],[41,1],[36,1],[37,1],[38,1],[39,1],[1,1],[42,1],[49,51],[50,52],[51,53],[53,51],[52,54],[47,55],[48,56],[55,57],[57,58],[56,57],[54,59]],"exportedModulesMap":[[46,1],[58,2],[59,2],[61,3],[62,4],[63,5],[64,6],[65,7],[66,8],[67,9],[68,10],[69,11],[70,12],[71,12],[73,13],[72,14],[74,13],[75,15],[76,16],[60,17],[110,1],[77,18],[78,19],[79,20],[111,21],[80,22],[81,23],[82,24],[83,25],[84,26],[85,27],[86,28],[87,29],[88,30],[89,31],[90,31],[91,32],[92,33],[94,34],[93,35],[95,36],[96,37],[97,38],[98,39],[99,40],[100,41],[101,42],[102,43],[103,44],[104,45],[105,46],[106,47],[107,48],[108,49],[109,50],[45,1],[43,1],[44,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[33,1],[30,1],[31,1],[32,1],[34,1],[7,1],[35,1],[40,1],[41,1],[36,1],[37,1],[38,1],[39,1],[1,1],[42,1],[49,60],[50,60],[51,61],[53,62],[52,63],[47,60],[48,64],[54,65]],"semanticDiagnosticsPerFile":[46,58,59,61,62,63,64,65,66,67,68,69,70,71,73,72,74,75,76,60,110,77,78,79,111,80,81,82,83,84,85,86,87,88,89,90,91,92,94,93,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,45,43,44,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,33,30,31,32,34,7,35,40,41,36,37,38,39,1,42,49,50,51,53,52,47,48,55,57,56,54]},"version":"5.0.4"}
1
+ {"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/tslib/tslib.d.ts","../../node_modules/@hatiolab/things-scene/things-scene.d.ts","./src/table-cell.ts","./src/table.ts","./src/data-list/data-cell.ts","./src/data-list/data-list-layout.ts","./src/data-list/data-list.ts","./src/index.ts","./src/helper-functions.ts","./src/types.ts","./src/templates/data-list.ts","./src/templates/table.ts","./src/templates/index.ts"],"fileInfos":[{"version":"f59215c5f1d886b05395ee7aca73e0ac69ddfad2843aa88530e797879d511bad","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7",{"version":"3dda5344576193a4ae48b8d03f105c86f20b2f2aff0a1d1fd7935f5d68649654","affectsGlobalScope":true},{"version":"9d9885c728913c1d16e0d2831b40341d6ad9a0ceecaabc55209b306ad9c736a5","affectsGlobalScope":true},{"version":"17bea081b9c0541f39dd1ae9bc8c78bdd561879a682e60e2f25f688c0ecab248","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"f1c9fe42b65437a61104e601eb298c5c859fb522b483f1bdb700eed67a16f980","1ec425c4c916d3a75b0557409a967eb5fee869beb69eefc2fbbf563f92bda771",{"version":"1ca1279c2865eb36a878c471b7226f5a9aca83872a77f685cbb57ae1a6763145","signature":"546847af93e390d29aecf0c2f8f73e7c9d77b389c5c91e4235aaa142cbd691fe"},{"version":"9942d78511174333cc0961947bafbe10cf436544a5f6646f61626a8820bf7ec8","signature":"9771db34432fea0b7061abd293588bbec695518584fe3ff2f0e92b78f09e64d2"},{"version":"b3ff423135d373a82c875df559573d94f9384fc596605cbb7aa54dd2dd949a26","signature":"e1c2b72c82d4b574bdfc7040fa1bf9ebac600104d61481824d3cef6b09de5dd1"},{"version":"77bd6e9bc8261369e74fcf648938ee878a75b9d126e19ee414fd452abaf5d272","signature":"592c7e5ea2df68aa407be1398a544900b41b58ee0345428d34223fc30d978240"},{"version":"76793918cc82bd85d85c4f552363951b1dc52ff533a51a47e9c375259c376a97","signature":"37e9a757ead13a2bcc691e2647268fd03f249219023072a32a8dc0db3bc5cc6e"},{"version":"0f1377d787433323434405a062d09a1398f5d33e1576f9c613673d9f469a7e0f","signature":"7d02d97a7a65065e1d520da2d020a3f25be2e84759bc46753477fe9a9f8b538c"},{"version":"db2b292c047db880a6fce447af8c15dbc1d7b92b71a345f90aeac7e398b26842","signature":"1ba833b30fe1327ccfdd6d677b4c94926f977075ffe09a2343c0c1d0031aa4ca"},{"version":"baa275c80f50945517e25fc292e3e96f84b484282ebbeb3cdc15a12249f855f9","signature":"66bcab35d001493a84cdf682f0e313872d10b6ed388efe767bb21fd883c4eac6"},{"version":"3fc4d42c1027b356c77c522b7a3daca6e87e23d89c111a432fce43e7c1d58e09","signature":"66ec166d01b5aea41847fb62680d88b5688b0aaf9496c73951a4a6239bcb878f"},{"version":"652be17ef64607e9eb0a0e87d9ffb1325f461a20362c877e0003f196b217f762","signature":"72d84e028e717c9076493b4a96f9523d24f3ebd0e08744c18d3ef714c70c2eaf"},{"version":"02b675f5beeeaf581b1b21b7bc72a1d67964dd9bccfb69ae19a79731e26f92c1","signature":"5ec5bde912e6a83d79b62a2d034bd2daf05071307bb667da8562163381f57662"}],"root":[[37,47]],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./dist","rootDir":"./src","sourceMap":true,"strict":true,"target":5},"fileIdsList":[[35,36,42],[35,36,39,41],[35,36,39,40,43],[35,37,38,41],[35,36,38],[35,36,37,43],[35],[35,45,46],[35,36,43],[36],[36,39,40,43],[36,42],[37,38,41],[36,37,43],[36,43]],"referencedMap":[[39,1],[40,2],[41,3],[43,1],[42,4],[37,5],[38,6],[45,7],[47,8],[46,7],[44,9]],"exportedModulesMap":[[39,10],[40,10],[41,11],[43,12],[42,13],[37,10],[38,14],[44,15]],"semanticDiagnosticsPerFile":[36,35,33,34,7,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,32,29,30,31,1,39,40,41,43,42,37,38,45,47,46,44]},"version":"5.1.3"}
@@ -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": 1684252064046,
10
- "name": "logs/application-2023-05-17-00.log",
11
- "hash": "326edb1be378b13ad8b806ff2bc87a573e24ccebe4eda987acabad4fb5bc3e2d"
12
- },
13
- {
14
- "date": 1684254839519,
15
- "name": "logs/application-2023-05-17-01.log",
16
- "hash": "1d93be8915080b222a37c7a5f7c99843ea921d61eecdbf96f461fb342c3546e5"
17
- },
18
- {
19
- "date": 1684278288353,
20
- "name": "logs/application-2023-05-17-08.log",
21
- "hash": "ae446cd8bdf4ab6eb9f7226c80ac0d1c9bfdc2712411acfdbc9f9561c576a855"
22
- }
23
- ],
24
- "hashType": "sha256"
25
- }
@@ -1,20 +0,0 @@
1
- {
2
- "keep": {
3
- "days": true,
4
- "amount": 14
5
- },
6
- "auditLog": "logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json",
7
- "files": [
8
- {
9
- "date": 1684252099505,
10
- "name": "logs/connections-2023-05-17-00.log",
11
- "hash": "bcf01279a1d19291ae831e62721b3068c276ed28099311e97efa74afcb98d9f7"
12
- },
13
- {
14
- "date": 1684254840765,
15
- "name": "logs/connections-2023-05-17-01.log",
16
- "hash": "c96770e6a9c0a548e7ee93ea8e081aa449374066d1e431e69da356719275f538"
17
- }
18
- ],
19
- "hashType": "sha256"
20
- }
@@ -1,8 +0,0 @@
1
- 2023-05-17T00:48:19+09:00 info: File Storage is Ready.
2
- 2023-05-17T00:48:19+09:00 error: oracledb module loading failed
3
- 2023-05-17T00:48:20+09:00 info: Default DataSource established
4
- 2023-05-17T00:48:20+09:00 info: Transaction DataSource established
5
- 2023-05-17T00:48:21+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
- 2023-05-17T00:48:21+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
7
- 2023-05-17T00:50:39+09:00 info: File Storage is Ready.
8
- 2023-05-17T00:50:39+09:00 error: oracledb module loading failed
@@ -1,6 +0,0 @@
1
- 2023-05-17T01:34:00+09:00 info: File Storage is Ready.
2
- 2023-05-17T01:34:00+09:00 error: oracledb module loading failed
3
- 2023-05-17T01:34:01+09:00 info: Default DataSource established
4
- 2023-05-17T01:34:01+09:00 info: Transaction DataSource established
5
- 2023-05-17T01:34:02+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
- 2023-05-17T01:34:02+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -1,2 +0,0 @@
1
- 2023-05-17T08:04:48+09:00 error: thumbnail not found
2
- 2023-05-17T08:04:48+09:00 error: thumbnail not found
@@ -1,41 +0,0 @@
1
- 2023-05-17T00:48:21+09:00 info: Initializing ConnectionManager...
2
- 2023-05-17T00:48:21+09:00 info: Connector 'echo-back-server' started to ready
3
- 2023-05-17T00:48:21+09:00 info: Connector 'echo-back' started to ready
4
- 2023-05-17T00:48:21+09:00 info: Connector 'http-connector' started to ready
5
- 2023-05-17T00:48:21+09:00 info: Connector 'graphql-connector' started to ready
6
- 2023-05-17T00:48:21+09:00 info: Connector 'sqlite-connector' started to ready
7
- 2023-05-17T00:48:21+09:00 info: Connector 'postgresql-connector' started to ready
8
- 2023-05-17T00:48:21+09:00 info: Connector 'mqtt-connector' started to ready
9
- 2023-05-17T00:48:21+09:00 info: Connector 'mssql-connector' started to ready
10
- 2023-05-17T00:48:21+09:00 info: Connector 'oracle-connector' started to ready
11
- 2023-05-17T00:48:21+09:00 info: Connector 'mysql-connector' started to ready
12
- 2023-05-17T00:48:21+09:00 info: Connector 'socket-server' started to ready
13
- 2023-05-17T00:48:21+09:00 info: Connector 'msgraph-connector' started to ready
14
- 2023-05-17T00:48:21+09:00 info: Connector 'openai-connector' started to ready
15
- 2023-05-17T00:48:21+09:00 info: echo-back-servers are ready
16
- 2023-05-17T00:48:21+09:00 info: echo-back connections are ready
17
- 2023-05-17T00:48:21+09:00 info: http-connector connections are ready
18
- 2023-05-17T00:48:21+09:00 info: graphql-connector connections are ready
19
- 2023-05-17T00:48:21+09:00 info: sqlite-connector connections are ready
20
- 2023-05-17T00:48:21+09:00 info: postgresql-connector connections are ready
21
- 2023-05-17T00:48:21+09:00 info: mqtt-connector connections are ready
22
- 2023-05-17T00:48:21+09:00 info: mssql-connector connections are ready
23
- 2023-05-17T00:48:21+09:00 info: oracle-connector connections are ready
24
- 2023-05-17T00:48:21+09:00 info: mysql-connector connections are ready
25
- 2023-05-17T00:48:21+09:00 info: socket servers are ready
26
- 2023-05-17T00:48:21+09:00 info: msgraph-connector connections are ready
27
- 2023-05-17T00:48:21+09:00 info: openai-connector connections are ready
28
- 2023-05-17T00:48:21+09:00 info: All connector for 'echo-back-server' ready
29
- 2023-05-17T00:48:21+09:00 info: All connector for 'echo-back' ready
30
- 2023-05-17T00:48:21+09:00 info: All connector for 'http-connector' ready
31
- 2023-05-17T00:48:21+09:00 info: All connector for 'graphql-connector' ready
32
- 2023-05-17T00:48:21+09:00 info: All connector for 'sqlite-connector' ready
33
- 2023-05-17T00:48:21+09:00 info: All connector for 'postgresql-connector' ready
34
- 2023-05-17T00:48:21+09:00 info: All connector for 'mqtt-connector' ready
35
- 2023-05-17T00:48:21+09:00 info: All connector for 'mssql-connector' ready
36
- 2023-05-17T00:48:21+09:00 info: All connector for 'oracle-connector' ready
37
- 2023-05-17T00:48:21+09:00 info: All connector for 'mysql-connector' ready
38
- 2023-05-17T00:48:21+09:00 info: All connector for 'socket-server' ready
39
- 2023-05-17T00:48:21+09:00 info: All connector for 'msgraph-connector' ready
40
- 2023-05-17T00:48:21+09:00 info: All connector for 'openai-connector' ready
41
- 2023-05-17T00:48:21+09:00 info: ConnectionManager initialization done:
@@ -1,41 +0,0 @@
1
- 2023-05-17T01:34:02+09:00 info: Initializing ConnectionManager...
2
- 2023-05-17T01:34:02+09:00 info: Connector 'echo-back-server' started to ready
3
- 2023-05-17T01:34:02+09:00 info: Connector 'echo-back' started to ready
4
- 2023-05-17T01:34:02+09:00 info: Connector 'http-connector' started to ready
5
- 2023-05-17T01:34:02+09:00 info: Connector 'graphql-connector' started to ready
6
- 2023-05-17T01:34:02+09:00 info: Connector 'sqlite-connector' started to ready
7
- 2023-05-17T01:34:02+09:00 info: Connector 'postgresql-connector' started to ready
8
- 2023-05-17T01:34:02+09:00 info: Connector 'mqtt-connector' started to ready
9
- 2023-05-17T01:34:02+09:00 info: Connector 'mssql-connector' started to ready
10
- 2023-05-17T01:34:02+09:00 info: Connector 'oracle-connector' started to ready
11
- 2023-05-17T01:34:02+09:00 info: Connector 'mysql-connector' started to ready
12
- 2023-05-17T01:34:02+09:00 info: Connector 'socket-server' started to ready
13
- 2023-05-17T01:34:02+09:00 info: Connector 'msgraph-connector' started to ready
14
- 2023-05-17T01:34:02+09:00 info: Connector 'openai-connector' started to ready
15
- 2023-05-17T01:34:02+09:00 info: echo-back-servers are ready
16
- 2023-05-17T01:34:02+09:00 info: echo-back connections are ready
17
- 2023-05-17T01:34:02+09:00 info: http-connector connections are ready
18
- 2023-05-17T01:34:02+09:00 info: graphql-connector connections are ready
19
- 2023-05-17T01:34:02+09:00 info: sqlite-connector connections are ready
20
- 2023-05-17T01:34:02+09:00 info: postgresql-connector connections are ready
21
- 2023-05-17T01:34:02+09:00 info: mqtt-connector connections are ready
22
- 2023-05-17T01:34:02+09:00 info: mssql-connector connections are ready
23
- 2023-05-17T01:34:02+09:00 info: oracle-connector connections are ready
24
- 2023-05-17T01:34:02+09:00 info: mysql-connector connections are ready
25
- 2023-05-17T01:34:02+09:00 info: socket servers are ready
26
- 2023-05-17T01:34:02+09:00 info: msgraph-connector connections are ready
27
- 2023-05-17T01:34:02+09:00 info: openai-connector connections are ready
28
- 2023-05-17T01:34:02+09:00 info: All connector for 'echo-back-server' ready
29
- 2023-05-17T01:34:02+09:00 info: All connector for 'echo-back' ready
30
- 2023-05-17T01:34:02+09:00 info: All connector for 'http-connector' ready
31
- 2023-05-17T01:34:02+09:00 info: All connector for 'graphql-connector' ready
32
- 2023-05-17T01:34:02+09:00 info: All connector for 'sqlite-connector' ready
33
- 2023-05-17T01:34:02+09:00 info: All connector for 'postgresql-connector' ready
34
- 2023-05-17T01:34:02+09:00 info: All connector for 'mqtt-connector' ready
35
- 2023-05-17T01:34:02+09:00 info: All connector for 'mssql-connector' ready
36
- 2023-05-17T01:34:02+09:00 info: All connector for 'oracle-connector' ready
37
- 2023-05-17T01:34:02+09:00 info: All connector for 'mysql-connector' ready
38
- 2023-05-17T01:34:02+09:00 info: All connector for 'socket-server' ready
39
- 2023-05-17T01:34:02+09:00 info: All connector for 'msgraph-connector' ready
40
- 2023-05-17T01:34:02+09:00 info: All connector for 'openai-connector' ready
41
- 2023-05-17T01:34:02+09:00 info: ConnectionManager initialization done:
@@ -1,20 +0,0 @@
1
- {
2
- "keep": {
3
- "days": true,
4
- "amount": 14
5
- },
6
- "auditLog": "logs/system/.8f68aa00d5b0fe69695ca5d7d93ab4be5756b952-audit.json",
7
- "files": [
8
- {
9
- "date": 1684252584523,
10
- "name": "logs/system/scenario-scroll-2023-05-17-00.log",
11
- "hash": "8f39fed548f679386a86adcfee1e25ecd28073f9236f01e51e56b176e02b9f16"
12
- },
13
- {
14
- "date": 1684252801344,
15
- "name": "logs/system/scenario-scroll-2023-05-17-01.log",
16
- "hash": "31c4469830e892e73abba72544a6e24573ddb8e7846dc24d7e1a15c0edfa2b59"
17
- }
18
- ],
19
- "hashType": "sha256"
20
- }
@@ -1,15 +0,0 @@
1
- {
2
- "keep": {
3
- "days": true,
4
- "amount": 14
5
- },
6
- "auditLog": "logs/system/.a06c3cf26b69b8982cdf74083f9385175a2d84e7-audit.json",
7
- "files": [
8
- {
9
- "date": 1684254842539,
10
- "name": "logs/system/scenario-scroll-2023-05-17-01.log",
11
- "hash": "a83458a4aec3d75ef88310bfe78f28bade8d46f456bb73389f4563d779b799ec"
12
- }
13
- ],
14
- "hashType": "sha256"
15
- }
@@ -1,86 +0,0 @@
1
- 2023-05-17T00:56:24+09:00 info: scroll-1684252584519:[state changed] STOPPED => READY
2
- 2023-05-17T00:56:24+09:00 info: scroll-1684252584519:[state changed] READY => STARTED
3
- 2023-05-17T00:56:24+09:00 info: Start 1 Rounds #######
4
- 2023-05-17T00:56:24+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
5
- 2023-05-17T00:56:24+09:00 info: scroll-1684252584519:[state changed] HALTED => UNLOADED
6
- 2023-05-17T00:56:24+09:00 info: scroll-1684252584519:[state changed] HALTED => UNLOADED
7
- 2023-05-17T00:56:58+09:00 info: scroll-1684252618500:[state changed] STOPPED => READY
8
- 2023-05-17T00:56:58+09:00 info: scroll-1684252618500:[state changed] READY => STARTED
9
- 2023-05-17T00:56:58+09:00 info: Start 1 Rounds #######
10
- 2023-05-17T00:56:58+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
11
- 2023-05-17T00:56:58+09:00 info: scroll-1684252618500:[state changed] HALTED => UNLOADED
12
- 2023-05-17T00:56:58+09:00 info: scroll-1684252618500:[state changed] HALTED => UNLOADED
13
- 2023-05-17T00:57:02+09:00 info: scroll-1684252622050:[state changed] STOPPED => READY
14
- 2023-05-17T00:57:02+09:00 info: scroll-1684252622050:[state changed] READY => STARTED
15
- 2023-05-17T00:57:02+09:00 info: Start 1 Rounds #######
16
- 2023-05-17T00:57:02+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
17
- 2023-05-17T00:57:02+09:00 info: scroll-1684252622050:[state changed] HALTED => UNLOADED
18
- 2023-05-17T00:57:02+09:00 info: scroll-1684252622050:[state changed] HALTED => UNLOADED
19
- 2023-05-17T00:57:13+09:00 info: scroll-1684252633411:[state changed] STOPPED => READY
20
- 2023-05-17T00:57:13+09:00 info: scroll-1684252633411:[state changed] READY => STARTED
21
- 2023-05-17T00:57:13+09:00 info: Start 1 Rounds #######
22
- 2023-05-17T00:57:13+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
23
- 2023-05-17T00:57:13+09:00 info: scroll-1684252633411:[state changed] HALTED => UNLOADED
24
- 2023-05-17T00:57:13+09:00 info: scroll-1684252633411:[state changed] HALTED => UNLOADED
25
- 2023-05-17T00:57:14+09:00 info: scroll-1684252634316:[state changed] STOPPED => READY
26
- 2023-05-17T00:57:14+09:00 info: scroll-1684252634316:[state changed] READY => STARTED
27
- 2023-05-17T00:57:14+09:00 info: Start 1 Rounds #######
28
- 2023-05-17T00:57:14+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
29
- 2023-05-17T00:57:14+09:00 info: scroll-1684252634316:[state changed] HALTED => UNLOADED
30
- 2023-05-17T00:57:14+09:00 info: scroll-1684252634316:[state changed] HALTED => UNLOADED
31
- 2023-05-17T00:57:43+09:00 info: scroll-1684252663593:[state changed] STOPPED => READY
32
- 2023-05-17T00:57:43+09:00 info: scroll-1684252663593:[state changed] READY => STARTED
33
- 2023-05-17T00:57:43+09:00 info: Start 1 Rounds #######
34
- 2023-05-17T00:57:43+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
35
- 2023-05-17T00:57:43+09:00 info: scroll-1684252663593:[state changed] HALTED => UNLOADED
36
- 2023-05-17T00:57:43+09:00 info: scroll-1684252663593:[state changed] HALTED => UNLOADED
37
- 2023-05-17T00:58:25+09:00 info: scroll-1684252705291:[state changed] STOPPED => READY
38
- 2023-05-17T00:58:25+09:00 info: scroll-1684252705291:[state changed] READY => STARTED
39
- 2023-05-17T00:58:25+09:00 info: Start 1 Rounds #######
40
- 2023-05-17T00:58:25+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
41
- 2023-05-17T00:58:25+09:00 info: scroll-1684252705291:[state changed] HALTED => UNLOADED
42
- 2023-05-17T00:58:25+09:00 info: scroll-1684252705291:[state changed] HALTED => UNLOADED
43
- 2023-05-17T00:58:25+09:00 info: scroll-1684252705837:[state changed] STOPPED => READY
44
- 2023-05-17T00:58:25+09:00 info: scroll-1684252705837:[state changed] READY => STARTED
45
- 2023-05-17T00:58:25+09:00 info: Start 1 Rounds #######
46
- 2023-05-17T00:58:25+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
47
- 2023-05-17T00:58:25+09:00 info: scroll-1684252705837:[state changed] HALTED => UNLOADED
48
- 2023-05-17T00:58:25+09:00 info: scroll-1684252705837:[state changed] HALTED => UNLOADED
49
- 2023-05-17T00:58:33+09:00 info: scroll-1684252713382:[state changed] STOPPED => READY
50
- 2023-05-17T00:58:33+09:00 info: scroll-1684252713382:[state changed] READY => STARTED
51
- 2023-05-17T00:58:33+09:00 info: Start 1 Rounds #######
52
- 2023-05-17T00:58:33+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
53
- 2023-05-17T00:58:33+09:00 info: scroll-1684252713382:[state changed] HALTED => UNLOADED
54
- 2023-05-17T00:58:33+09:00 info: scroll-1684252713382:[state changed] HALTED => UNLOADED
55
- 2023-05-17T00:59:09+09:00 info: scroll-1684252749852:[state changed] STOPPED => READY
56
- 2023-05-17T00:59:09+09:00 info: scroll-1684252749852:[state changed] READY => STARTED
57
- 2023-05-17T00:59:09+09:00 info: Start 1 Rounds #######
58
- 2023-05-17T00:59:09+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
59
- 2023-05-17T00:59:09+09:00 info: Step done.
60
- 2023-05-17T00:59:09+09:00 info: scroll-1684252749852:[state changed] READY => STARTED
61
- 2023-05-17T00:59:09+09:00 info: scroll-1684252749852:[state changed] STOPPED => UNLOADED
62
- 2023-05-17T00:59:09+09:00 info: scroll-1684252749852:[state changed] STOPPED => UNLOADED
63
- 2023-05-17T00:59:22+09:00 info: scroll-1684252762097:[state changed] STOPPED => READY
64
- 2023-05-17T00:59:22+09:00 info: scroll-1684252762097:[state changed] READY => STARTED
65
- 2023-05-17T00:59:22+09:00 info: Start 1 Rounds #######
66
- 2023-05-17T00:59:22+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
67
- 2023-05-17T00:59:22+09:00 info: Step done.
68
- 2023-05-17T00:59:22+09:00 info: scroll-1684252762097:[state changed] READY => STARTED
69
- 2023-05-17T00:59:22+09:00 info: scroll-1684252762097:[state changed] STOPPED => UNLOADED
70
- 2023-05-17T00:59:22+09:00 info: scroll-1684252762097:[state changed] STOPPED => UNLOADED
71
- 2023-05-17T00:59:32+09:00 info: scroll-1684252772963:[state changed] STOPPED => READY
72
- 2023-05-17T00:59:32+09:00 info: scroll-1684252772963:[state changed] READY => STARTED
73
- 2023-05-17T00:59:32+09:00 info: Start 1 Rounds #######
74
- 2023-05-17T00:59:32+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
75
- 2023-05-17T00:59:32+09:00 info: Step done.
76
- 2023-05-17T00:59:32+09:00 info: scroll-1684252772963:[state changed] READY => STARTED
77
- 2023-05-17T00:59:32+09:00 info: scroll-1684252772963:[state changed] STOPPED => UNLOADED
78
- 2023-05-17T00:59:32+09:00 info: scroll-1684252772963:[state changed] STOPPED => UNLOADED
79
- 2023-05-17T00:59:56+09:00 info: scroll-1684252796039:[state changed] STOPPED => READY
80
- 2023-05-17T00:59:56+09:00 info: scroll-1684252796039:[state changed] READY => STARTED
81
- 2023-05-17T00:59:56+09:00 info: Start 1 Rounds #######
82
- 2023-05-17T00:59:56+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
83
- 2023-05-17T00:59:56+09:00 info: Step done.
84
- 2023-05-17T00:59:56+09:00 info: scroll-1684252796039:[state changed] READY => STARTED
85
- 2023-05-17T00:59:56+09:00 info: scroll-1684252796039:[state changed] STOPPED => UNLOADED
86
- 2023-05-17T00:59:56+09:00 info: scroll-1684252796039:[state changed] STOPPED => UNLOADED
@@ -1,128 +0,0 @@
1
- 2023-05-17T01:00:01+09:00 info: scroll-1684252801344:[state changed] STOPPED => READY
2
- 2023-05-17T01:00:01+09:00 info: scroll-1684252801344:[state changed] READY => STARTED
3
- 2023-05-17T01:00:01+09:00 info: Start 1 Rounds #######
4
- 2023-05-17T01:00:01+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
5
- 2023-05-17T01:00:01+09:00 info: Step done.
6
- 2023-05-17T01:00:01+09:00 info: scroll-1684252801344:[state changed] READY => STARTED
7
- 2023-05-17T01:00:01+09:00 info: scroll-1684252801344:[state changed] STOPPED => UNLOADED
8
- 2023-05-17T01:00:01+09:00 info: scroll-1684252801344:[state changed] STOPPED => UNLOADED
9
- 2023-05-17T01:00:06+09:00 info: scroll-1684252806093:[state changed] STOPPED => READY
10
- 2023-05-17T01:00:06+09:00 info: scroll-1684252806093:[state changed] READY => STARTED
11
- 2023-05-17T01:00:06+09:00 info: Start 1 Rounds #######
12
- 2023-05-17T01:00:06+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
13
- 2023-05-17T01:00:06+09:00 info: Step done.
14
- 2023-05-17T01:00:06+09:00 info: scroll-1684252806093:[state changed] READY => STARTED
15
- 2023-05-17T01:00:06+09:00 info: scroll-1684252806093:[state changed] STOPPED => UNLOADED
16
- 2023-05-17T01:00:06+09:00 info: scroll-1684252806093:[state changed] STOPPED => UNLOADED
17
- 2023-05-17T01:00:27+09:00 info: scroll-1684252827820:[state changed] STOPPED => READY
18
- 2023-05-17T01:00:27+09:00 info: scroll-1684252827820:[state changed] READY => STARTED
19
- 2023-05-17T01:00:27+09:00 info: Start 1 Rounds #######
20
- 2023-05-17T01:00:27+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
21
- 2023-05-17T01:00:27+09:00 info: Step done.
22
- 2023-05-17T01:00:27+09:00 info: scroll-1684252827820:[state changed] READY => STARTED
23
- 2023-05-17T01:00:27+09:00 info: scroll-1684252827820:[state changed] STOPPED => UNLOADED
24
- 2023-05-17T01:00:27+09:00 info: scroll-1684252827820:[state changed] STOPPED => UNLOADED
25
- 2023-05-17T01:00:29+09:00 info: scroll-1684252829779:[state changed] STOPPED => READY
26
- 2023-05-17T01:00:29+09:00 info: scroll-1684252829779:[state changed] READY => STARTED
27
- 2023-05-17T01:00:29+09:00 info: Start 1 Rounds #######
28
- 2023-05-17T01:00:29+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
29
- 2023-05-17T01:00:29+09:00 info: Step done.
30
- 2023-05-17T01:00:29+09:00 info: scroll-1684252829779:[state changed] READY => STARTED
31
- 2023-05-17T01:00:29+09:00 info: scroll-1684252829779:[state changed] STOPPED => UNLOADED
32
- 2023-05-17T01:00:29+09:00 info: scroll-1684252829779:[state changed] STOPPED => UNLOADED
33
- 2023-05-17T01:00:38+09:00 info: scroll-1684252838905:[state changed] STOPPED => READY
34
- 2023-05-17T01:00:38+09:00 info: scroll-1684252838905:[state changed] READY => STARTED
35
- 2023-05-17T01:00:38+09:00 info: Start 1 Rounds #######
36
- 2023-05-17T01:00:38+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
37
- 2023-05-17T01:00:38+09:00 info: Step done.
38
- 2023-05-17T01:00:38+09:00 info: scroll-1684252838905:[state changed] READY => STARTED
39
- 2023-05-17T01:00:38+09:00 info: scroll-1684252838905:[state changed] STOPPED => UNLOADED
40
- 2023-05-17T01:00:38+09:00 info: scroll-1684252838905:[state changed] STOPPED => UNLOADED
41
- 2023-05-17T01:05:59+09:00 info: scroll-1684253159648:[state changed] STOPPED => READY
42
- 2023-05-17T01:05:59+09:00 info: scroll-1684253159648:[state changed] READY => STARTED
43
- 2023-05-17T01:05:59+09:00 info: Start 1 Rounds #######
44
- 2023-05-17T01:05:59+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
45
- 2023-05-17T01:05:59+09:00 info: Step done.
46
- 2023-05-17T01:05:59+09:00 info: scroll-1684253159648:[state changed] READY => STARTED
47
- 2023-05-17T01:05:59+09:00 info: scroll-1684253159648:[state changed] STOPPED => UNLOADED
48
- 2023-05-17T01:05:59+09:00 info: scroll-1684253159648:[state changed] STOPPED => UNLOADED
49
- 2023-05-17T01:07:20+09:00 info: scroll-1684253240497:[state changed] STOPPED => READY
50
- 2023-05-17T01:07:20+09:00 info: scroll-1684253240497:[state changed] READY => STARTED
51
- 2023-05-17T01:07:20+09:00 info: Start 1 Rounds #######
52
- 2023-05-17T01:07:20+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
53
- 2023-05-17T01:07:20+09:00 info: Step done.
54
- 2023-05-17T01:07:20+09:00 info: scroll-1684253240497:[state changed] READY => STARTED
55
- 2023-05-17T01:07:20+09:00 info: scroll-1684253240497:[state changed] STOPPED => UNLOADED
56
- 2023-05-17T01:07:20+09:00 info: scroll-1684253240497:[state changed] STOPPED => UNLOADED
57
- 2023-05-17T01:08:24+09:00 info: scroll-1684253304693:[state changed] STOPPED => READY
58
- 2023-05-17T01:08:24+09:00 info: scroll-1684253304693:[state changed] READY => STARTED
59
- 2023-05-17T01:08:24+09:00 info: Start 1 Rounds #######
60
- 2023-05-17T01:08:24+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
61
- 2023-05-17T01:08:24+09:00 info: Step done.
62
- 2023-05-17T01:08:24+09:00 info: scroll-1684253304693:[state changed] READY => STARTED
63
- 2023-05-17T01:08:24+09:00 info: scroll-1684253304693:[state changed] STOPPED => UNLOADED
64
- 2023-05-17T01:08:24+09:00 info: scroll-1684253304693:[state changed] STOPPED => UNLOADED
65
- 2023-05-17T01:14:31+09:00 info: scroll-1684253671135:[state changed] STOPPED => READY
66
- 2023-05-17T01:14:31+09:00 info: scroll-1684253671135:[state changed] READY => STARTED
67
- 2023-05-17T01:14:31+09:00 info: Start 1 Rounds #######
68
- 2023-05-17T01:14:31+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
69
- 2023-05-17T01:14:31+09:00 info: Step done.
70
- 2023-05-17T01:14:31+09:00 info: scroll-1684253671135:[state changed] READY => STARTED
71
- 2023-05-17T01:14:31+09:00 info: scroll-1684253671135:[state changed] STOPPED => UNLOADED
72
- 2023-05-17T01:14:31+09:00 info: scroll-1684253671135:[state changed] STOPPED => UNLOADED
73
- 2023-05-17T01:18:27+09:00 info: scroll-1684253907865:[state changed] STOPPED => READY
74
- 2023-05-17T01:18:27+09:00 info: scroll-1684253907865:[state changed] READY => STARTED
75
- 2023-05-17T01:18:27+09:00 info: Start 1 Rounds #######
76
- 2023-05-17T01:18:27+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
77
- 2023-05-17T01:18:27+09:00 info: Step done.
78
- 2023-05-17T01:18:27+09:00 info: scroll-1684253907865:[state changed] READY => STARTED
79
- 2023-05-17T01:18:27+09:00 info: scroll-1684253907865:[state changed] STOPPED => UNLOADED
80
- 2023-05-17T01:18:27+09:00 info: scroll-1684253907865:[state changed] STOPPED => UNLOADED
81
- 2023-05-17T01:33:48+09:00 info: scroll-1684254828777:[state changed] STOPPED => READY
82
- 2023-05-17T01:33:48+09:00 info: scroll-1684254828777:[state changed] READY => STARTED
83
- 2023-05-17T01:33:48+09:00 info: Start 1 Rounds #######
84
- 2023-05-17T01:33:48+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
85
- 2023-05-17T01:33:48+09:00 info: Step done.
86
- 2023-05-17T01:33:48+09:00 info: scroll-1684254828777:[state changed] READY => STARTED
87
- 2023-05-17T01:33:48+09:00 info: scroll-1684254828777:[state changed] STOPPED => UNLOADED
88
- 2023-05-17T01:33:48+09:00 info: scroll-1684254828777:[state changed] STOPPED => UNLOADED
89
- 2023-05-17T01:34:02+09:00 info: scroll:[state changed] STOPPED => READY
90
- 2023-05-17T01:34:02+09:00 info: scroll:[state changed] READY => STARTED
91
- 2023-05-17T01:34:02+09:00 info: Start 1 Rounds #######
92
- 2023-05-17T01:34:02+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
93
- 2023-05-17T01:34:02+09:00 info: Step done.
94
- 2023-05-17T01:34:02+09:00 info: scroll:[state changed] READY => STARTED
95
- 2023-05-17T01:34:02+09:00 info: scroll:[state changed] STOPPED => UNLOADED
96
- 2023-05-17T01:34:02+09:00 info: scroll:[state changed] STOPPED => UNLOADED
97
- 2023-05-17T01:34:48+09:00 info: scroll-1684254888678:[state changed] STOPPED => READY
98
- 2023-05-17T01:34:48+09:00 info: scroll-1684254888678:[state changed] READY => STARTED
99
- 2023-05-17T01:34:48+09:00 info: Start 1 Rounds #######
100
- 2023-05-17T01:34:48+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
101
- 2023-05-17T01:34:48+09:00 info: Step done.
102
- 2023-05-17T01:34:48+09:00 info: scroll-1684254888678:[state changed] READY => STARTED
103
- 2023-05-17T01:34:48+09:00 info: scroll-1684254888678:[state changed] STOPPED => UNLOADED
104
- 2023-05-17T01:34:48+09:00 info: scroll-1684254888678:[state changed] STOPPED => UNLOADED
105
- 2023-05-17T01:36:36+09:00 info: scroll-1684254996621:[state changed] STOPPED => READY
106
- 2023-05-17T01:36:36+09:00 info: scroll-1684254996621:[state changed] READY => STARTED
107
- 2023-05-17T01:36:36+09:00 info: Start 1 Rounds #######
108
- 2023-05-17T01:36:36+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
109
- 2023-05-17T01:36:36+09:00 info: Step done.
110
- 2023-05-17T01:36:36+09:00 info: scroll-1684254996621:[state changed] READY => STARTED
111
- 2023-05-17T01:36:36+09:00 info: scroll-1684254996621:[state changed] STOPPED => UNLOADED
112
- 2023-05-17T01:36:36+09:00 info: scroll-1684254996621:[state changed] STOPPED => UNLOADED
113
- 2023-05-17T01:37:12+09:00 info: scroll-1684255032136:[state changed] STOPPED => READY
114
- 2023-05-17T01:37:12+09:00 info: scroll-1684255032136:[state changed] READY => STARTED
115
- 2023-05-17T01:37:12+09:00 info: Start 1 Rounds #######
116
- 2023-05-17T01:37:12+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
117
- 2023-05-17T01:37:12+09:00 info: Step done.
118
- 2023-05-17T01:37:12+09:00 info: scroll-1684255032136:[state changed] READY => STARTED
119
- 2023-05-17T01:37:12+09:00 info: scroll-1684255032136:[state changed] STOPPED => UNLOADED
120
- 2023-05-17T01:37:12+09:00 info: scroll-1684255032136:[state changed] STOPPED => UNLOADED
121
- 2023-05-17T01:40:32+09:00 info: scroll-1684255232615:[state changed] STOPPED => READY
122
- 2023-05-17T01:40:32+09:00 info: scroll-1684255232615:[state changed] READY => STARTED
123
- 2023-05-17T01:40:32+09:00 info: Start 1 Rounds #######
124
- 2023-05-17T01:40:32+09:00 info: Step 'long'(7e88f932-6114-4194-b2c1-1deb5e270d84) started.
125
- 2023-05-17T01:40:32+09:00 info: Step done.
126
- 2023-05-17T01:40:32+09:00 info: scroll-1684255232615:[state changed] READY => STARTED
127
- 2023-05-17T01:40:32+09:00 info: scroll-1684255232615:[state changed] STOPPED => UNLOADED
128
- 2023-05-17T01:40:32+09:00 info: scroll-1684255232615:[state changed] STOPPED => UNLOADED