@rowengine/common 1.0.36 → 1.0.38
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/build/interfaces/stagetimes.d.ts +2 -1
- package/package.json +44 -44
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Company } from "./company";
|
|
2
|
+
import { Project } from "./project";
|
|
2
3
|
/**
|
|
3
4
|
* Store the processing time for each executable/stage in seconds.
|
|
4
5
|
*/
|
|
@@ -22,7 +23,7 @@ export interface ExportablesTimes {
|
|
|
22
23
|
* on the queues (in seconds).
|
|
23
24
|
*/
|
|
24
25
|
export interface StageTimes {
|
|
25
|
-
|
|
26
|
+
project: Project;
|
|
26
27
|
company: Company;
|
|
27
28
|
date: Date;
|
|
28
29
|
area?: number;
|
package/package.json
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@rowengine/common",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "",
|
|
5
|
-
"main": "./build/index.js",
|
|
6
|
-
"exports": {
|
|
7
|
-
".": [
|
|
8
|
-
{
|
|
9
|
-
"import": "./build/index.js",
|
|
10
|
-
"require": "./build/index.js",
|
|
11
|
-
"default": "./build/index.js"
|
|
12
|
-
},
|
|
13
|
-
"./build/index.js"
|
|
14
|
-
],
|
|
15
|
-
"./interfaces": [
|
|
16
|
-
{
|
|
17
|
-
"import": "./build/interfaces/index.js",
|
|
18
|
-
"require": "./build/interfaces/index.js",
|
|
19
|
-
"default": "./build/interfaces/index.js"
|
|
20
|
-
},
|
|
21
|
-
"./build/interfaces/index.js"
|
|
22
|
-
]
|
|
23
|
-
},
|
|
24
|
-
"types": "./build/index.d.ts",
|
|
25
|
-
"files": [
|
|
26
|
-
"build/**/*"
|
|
27
|
-
],
|
|
28
|
-
"scripts": {
|
|
29
|
-
"clean": "if exist .\\build rmdir /s /q .\\build",
|
|
30
|
-
"build": "npm run clean & tsc",
|
|
31
|
-
"pub": "git add . & git commit -m \"updated common package\" & npm version patch & npm run build & npm publish"
|
|
32
|
-
},
|
|
33
|
-
"author": "Leonardo Ribeiro",
|
|
34
|
-
"license": "ISC",
|
|
35
|
-
"dependencies": {
|
|
36
|
-
"@google-cloud/storage": "^6.9.5",
|
|
37
|
-
"moment-timezone": "^0.5.43",
|
|
38
|
-
"node-nats-streaming": "^0.3.2"
|
|
39
|
-
},
|
|
40
|
-
"devDependencies": {
|
|
41
|
-
"@types/node": "^18.15.11",
|
|
42
|
-
"typescript": "^5.5.4"
|
|
43
|
-
}
|
|
44
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@rowengine/common",
|
|
3
|
+
"version": "1.0.38",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "./build/index.js",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": [
|
|
8
|
+
{
|
|
9
|
+
"import": "./build/index.js",
|
|
10
|
+
"require": "./build/index.js",
|
|
11
|
+
"default": "./build/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./build/index.js"
|
|
14
|
+
],
|
|
15
|
+
"./interfaces": [
|
|
16
|
+
{
|
|
17
|
+
"import": "./build/interfaces/index.js",
|
|
18
|
+
"require": "./build/interfaces/index.js",
|
|
19
|
+
"default": "./build/interfaces/index.js"
|
|
20
|
+
},
|
|
21
|
+
"./build/interfaces/index.js"
|
|
22
|
+
]
|
|
23
|
+
},
|
|
24
|
+
"types": "./build/index.d.ts",
|
|
25
|
+
"files": [
|
|
26
|
+
"build/**/*"
|
|
27
|
+
],
|
|
28
|
+
"scripts": {
|
|
29
|
+
"clean": "if exist .\\build rmdir /s /q .\\build",
|
|
30
|
+
"build": "npm run clean & tsc",
|
|
31
|
+
"pub": "git add . & git commit -m \"updated common package\" & npm version patch & npm run build & npm publish"
|
|
32
|
+
},
|
|
33
|
+
"author": "Leonardo Ribeiro",
|
|
34
|
+
"license": "ISC",
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@google-cloud/storage": "^6.9.5",
|
|
37
|
+
"moment-timezone": "^0.5.43",
|
|
38
|
+
"node-nats-streaming": "^0.3.2"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@types/node": "^18.15.11",
|
|
42
|
+
"typescript": "^5.5.4"
|
|
43
|
+
}
|
|
44
|
+
}
|