@things-factory/quotation 8.0.0-alpha.7 → 8.0.0-beta.0
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/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-server/service/quotation/quotation-history.js +7 -2
- package/dist-server/service/quotation/quotation-history.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -7
- package/server/service/quotation/quotation-history.ts +8 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/quotation",
|
|
3
|
-
"version": "8.0.0-
|
|
3
|
+
"version": "8.0.0-beta.0",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"migration:create": "node ../../node_modules/typeorm/cli.js migration:create ./server/migrations/migration"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@operato/graphql": "^8.0.0-
|
|
31
|
-
"@operato/shell": "^8.0.0-
|
|
32
|
-
"@things-factory/auth-base": "^8.0.0-
|
|
33
|
-
"@things-factory/shell": "^8.0.0-
|
|
34
|
-
"@things-factory/worklist": "^8.0.0-
|
|
30
|
+
"@operato/graphql": "^8.0.0-beta",
|
|
31
|
+
"@operato/shell": "^8.0.0-beta",
|
|
32
|
+
"@things-factory/auth-base": "^8.0.0-beta.0",
|
|
33
|
+
"@things-factory/shell": "^8.0.0-beta.0",
|
|
34
|
+
"@things-factory/worklist": "^8.0.0-beta.0"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "add6fb8224b2cb19cbea47bed6a5ecb0424c9a28"
|
|
37
37
|
}
|
|
@@ -107,8 +107,14 @@ export class QuotationHistory implements HistoryEntityInterface<Quotation> {
|
|
|
107
107
|
? 'enum'
|
|
108
108
|
: DATABASE_TYPE == 'oracle'
|
|
109
109
|
? 'varchar2'
|
|
110
|
-
: '
|
|
111
|
-
|
|
110
|
+
: DATABASE_TYPE == 'mssql'
|
|
111
|
+
? 'nvarchar'
|
|
112
|
+
: 'varchar',
|
|
113
|
+
enum:
|
|
114
|
+
DATABASE_TYPE == 'postgres' || DATABASE_TYPE == 'mysql' || DATABASE_TYPE == 'mariadb'
|
|
115
|
+
? HistoryActionType
|
|
116
|
+
: undefined,
|
|
117
|
+
length: DATABASE_TYPE == 'postgres' || DATABASE_TYPE == 'mysql' || DATABASE_TYPE == 'mariadb' ? undefined : 10
|
|
112
118
|
})
|
|
113
119
|
public action!: HistoryActionType
|
|
114
120
|
}
|