@things-factory/integration-base 8.0.0-alpha.28 → 8.0.0-alpha.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/integration-base",
3
- "version": "8.0.0-alpha.28",
3
+ "version": "8.0.0-alpha.30",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -27,14 +27,14 @@
27
27
  "dependencies": {
28
28
  "@apollo/client": "^3.6.9",
29
29
  "@operato/moment-timezone-es": "^8.0.0-alpha",
30
- "@things-factory/api": "^8.0.0-alpha.28",
31
- "@things-factory/auth-base": "^8.0.0-alpha.28",
32
- "@things-factory/cache-service": "^8.0.0-alpha.28",
30
+ "@things-factory/api": "^8.0.0-alpha.29",
31
+ "@things-factory/auth-base": "^8.0.0-alpha.29",
32
+ "@things-factory/cache-service": "^8.0.0-alpha.29",
33
33
  "@things-factory/env": "^8.0.0-alpha.8",
34
- "@things-factory/oauth2-client": "^8.0.0-alpha.28",
35
- "@things-factory/scheduler-client": "^8.0.0-alpha.28",
36
- "@things-factory/shell": "^8.0.0-alpha.28",
37
- "@things-factory/utils": "^8.0.0-alpha.14",
34
+ "@things-factory/oauth2-client": "^8.0.0-alpha.29",
35
+ "@things-factory/scheduler-client": "^8.0.0-alpha.29",
36
+ "@things-factory/shell": "^8.0.0-alpha.29",
37
+ "@things-factory/utils": "^8.0.0-alpha.29",
38
38
  "async-mqtt": "^2.5.0",
39
39
  "chance": "^1.1.11",
40
40
  "cross-fetch": "^3.0.4",
@@ -44,5 +44,5 @@
44
44
  "readline": "^1.3.0",
45
45
  "ses": "^1.5.0"
46
46
  },
47
- "gitHead": "a686f7c8320e5a67280cdb307f32f220c0297c77"
47
+ "gitHead": "f01fac46630cf06e1697edc185dfb4cddcd61365"
48
48
  }
@@ -24,7 +24,7 @@ function getSystemTimeZone() {
24
24
  }
25
25
 
26
26
  const SYSTEM_TZ = getSystemTimeZone()
27
- const systemTimestamp = format((info, opts) => {
27
+ const systemTimestamp = format((info, opts: { tz?: string }) => {
28
28
  if (opts.tz) info.timestamp = moment().tz(opts.tz).format()
29
29
  return info
30
30
  })
@@ -15,7 +15,7 @@ export function getHeadlessPool() {
15
15
  headlessPool = genericPool.createPool(
16
16
  {
17
17
  create() {
18
- console.log('headless-pool-for-scensrio about to create')
18
+ console.log('headless instance in headless-pool-for-scensrio about to create')
19
19
  return initializeChromium()
20
20
  },
21
21
  validate(browser) {
@@ -39,7 +39,7 @@ function getSystemTimeZone() {
39
39
  }
40
40
 
41
41
  const SYSTEM_TZ = getSystemTimeZone()
42
- const systemTimestamp = format((info, opts) => {
42
+ const systemTimestamp = format((info, opts: { tz?: string }) => {
43
43
  if (opts.tz) info.timestamp = moment().tz(opts.tz).format()
44
44
  return info
45
45
  })