@rowengine/common 1.0.128 → 1.0.135

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.
@@ -11,6 +11,7 @@ interface ProjectAttrs {
11
11
  status: ProjectStatus;
12
12
  createdAt: Date;
13
13
  locale: 'pt-BR' | 'en' | 'es';
14
+ isDoubleRow?: boolean;
14
15
  estimatedTimeInSeconds?: number;
15
16
  highlightType?: HighlightType;
16
17
  bonusExportables?: ProjectBonusExportables;
@@ -52,6 +52,10 @@ const projectSchema = new mongoose_1.default.Schema({
52
52
  required: true,
53
53
  },
54
54
  // Non required below.
55
+ isDoubleRow: {
56
+ type: Boolean,
57
+ required: false,
58
+ },
55
59
  timeElapsedInSeconds: {
56
60
  type: Number,
57
61
  required: false,
package/package.json CHANGED
@@ -1,63 +1,63 @@
1
- {
2
- "name": "@rowengine/common",
3
- "version": "1.0.128",
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
- "./models": [
24
- {
25
- "import": "./build/models/index.js",
26
- "require": "./build/models/index.js",
27
- "default": "./build/models/index.js"
28
- },
29
- "./build/models/index.js"
30
- ],
31
- "./utils": [
32
- {
33
- "import": "./build/utils/index.js",
34
- "require": "./build/utils/index.js",
35
- "default": "./build/utils/index.js"
36
- },
37
- "./build/utils/index.js"
38
- ]
39
- },
40
- "types": "./build/index.d.ts",
41
- "files": [
42
- "build/**/*"
43
- ],
44
- "scripts": {
45
- "clean": "if exist .\\build rmdir /s /q .\\build",
46
- "build": "npm run clean & tsc",
47
- "pub": "git add . & git commit -m \"updated common package\" & npm version patch & npm run build & npm publish",
48
- "pub-linux": "rm -r /build ; npm run build ; git add . ; git commit -m \"updated common package\" ; npm version patch ; npm publish"
49
- },
50
- "author": "Leonardo Ribeiro",
51
- "license": "ISC",
52
- "dependencies": {
53
- "@google-cloud/storage": "^6.9.5",
54
- "bcrypt": "^6.0.0",
55
- "moment-timezone": "^0.5.43",
56
- "mongoose": "^8.5.2",
57
- "node-nats-streaming": "^0.3.2"
58
- },
59
- "devDependencies": {
60
- "@types/bcrypt": "^6.0.0",
61
- "@types/node": "^18.15.11"
62
- }
63
- }
1
+ {
2
+ "name": "@rowengine/common",
3
+ "version": "1.0.135",
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
+ "./models": [
24
+ {
25
+ "import": "./build/models/index.js",
26
+ "require": "./build/models/index.js",
27
+ "default": "./build/models/index.js"
28
+ },
29
+ "./build/models/index.js"
30
+ ],
31
+ "./utils": [
32
+ {
33
+ "import": "./build/utils/index.js",
34
+ "require": "./build/utils/index.js",
35
+ "default": "./build/utils/index.js"
36
+ },
37
+ "./build/utils/index.js"
38
+ ]
39
+ },
40
+ "types": "./build/index.d.ts",
41
+ "files": [
42
+ "build/**/*"
43
+ ],
44
+ "scripts": {
45
+ "clean": "if exist .\\build rmdir /s /q .\\build",
46
+ "build": "npm run clean & tsc",
47
+ "pub": "git add . & git commit -m \"updated common package\" & npm version patch & npm run build & npm publish",
48
+ "pub-linux": "rm -r /build ; npm run build ; git add . ; git commit -m \"updated common package\" ; npm version patch ; npm publish"
49
+ },
50
+ "author": "Leonardo Ribeiro",
51
+ "license": "ISC",
52
+ "dependencies": {
53
+ "@google-cloud/storage": "^6.9.5",
54
+ "bcrypt": "^6.0.0",
55
+ "moment-timezone": "^0.5.43",
56
+ "mongoose": "^8.5.2",
57
+ "node-nats-streaming": "^0.3.2"
58
+ },
59
+ "devDependencies": {
60
+ "@types/bcrypt": "^6.0.0",
61
+ "@types/node": "^18.15.11"
62
+ }
63
+ }