@things-factory/integration-base 8.0.55 → 8.0.61

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.55",
3
+ "version": "8.0.61",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -27,13 +27,13 @@
27
27
  "dependencies": {
28
28
  "@apollo/client": "^3.6.9",
29
29
  "@operato/moment-timezone-es": "^8.0.0",
30
- "@things-factory/api": "^8.0.55",
31
- "@things-factory/auth-base": "^8.0.55",
32
- "@things-factory/cache-service": "^8.0.55",
30
+ "@things-factory/api": "^8.0.61",
31
+ "@things-factory/auth-base": "^8.0.61",
32
+ "@things-factory/cache-service": "^8.0.61",
33
33
  "@things-factory/env": "^8.0.37",
34
- "@things-factory/oauth2-client": "^8.0.55",
35
- "@things-factory/scheduler-client": "^8.0.55",
36
- "@things-factory/shell": "^8.0.55",
34
+ "@things-factory/oauth2-client": "^8.0.61",
35
+ "@things-factory/scheduler-client": "^8.0.61",
36
+ "@things-factory/shell": "^8.0.61",
37
37
  "@things-factory/utils": "^8.0.37",
38
38
  "async-mqtt": "^2.5.0",
39
39
  "chance": "^1.1.11",
@@ -44,5 +44,5 @@
44
44
  "readline": "^1.3.0",
45
45
  "ses": "^1.5.0"
46
46
  },
47
- "gitHead": "172e2730c2e249faa839070c1b21d81bb4b6c946"
47
+ "gitHead": "72a14cc70333dcba45b4c1a6ca8140a8dc1c87a5"
48
48
  }
@@ -12,7 +12,7 @@ import {
12
12
  } from 'typeorm'
13
13
 
14
14
  import { PrivilegeObject, Role, User } from '@things-factory/auth-base'
15
- import { Domain } from '@things-factory/shell'
15
+ import { Domain, cronMonthZeroBasedTransformer } from '@things-factory/shell'
16
16
 
17
17
  import { ScenarioEngine } from '../../engine'
18
18
  import { Step } from '../step/step-type'
@@ -52,7 +52,7 @@ export class Scenario {
52
52
  @Field({ nullable: true, description: '[will be deprecated] automatically be started when this server start' })
53
53
  active?: boolean
54
54
 
55
- @Column({ nullable: true })
55
+ @Column({ nullable: true, transformer: cronMonthZeroBasedTransformer })
56
56
  @Field({ nullable: true })
57
57
  schedule?: string
58
58