@dssp/project 0.0.24 → 0.0.25

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": "@dssp/project",
3
- "version": "0.0.24",
3
+ "version": "0.0.25",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -27,7 +27,7 @@
27
27
  "migration:create": "node ../../node_modules/typeorm/cli.js migration:create -d ./server/migrations"
28
28
  },
29
29
  "dependencies": {
30
- "@dssp/building-complex": "^0.0.24",
30
+ "@dssp/building-complex": "^0.0.25",
31
31
  "@operato/graphql": "^8.0.0-alpha",
32
32
  "@operato/shell": "^8.0.0-alpha",
33
33
  "@things-factory/auth-base": "^8.0.0-alpha",
@@ -38,5 +38,5 @@
38
38
  "@things-factory/shell": "^8.0.0-alpha",
39
39
  "exceljs": "^4.4.0"
40
40
  },
41
- "gitHead": "534da1901bb069b633bb2aa390817724cc542a6f"
41
+ "gitHead": "428e139a9391cfc5b3b376cf247d58c9fc02351a"
42
42
  }
@@ -53,28 +53,46 @@ const SEED_COMMON_CODES = [
53
53
  description: '직책',
54
54
  details: [
55
55
  {
56
- name: '감리사',
57
- description: '감리사',
56
+ name: 'ADMIN',
57
+ description: '관리자',
58
58
  labels: null,
59
59
  rank: 1
60
60
  },
61
61
  {
62
- name: '설계사',
63
- description: '설계사',
62
+ name: 'OVERALL_SUPERVISORY',
63
+ description: '총괄 감리 책임자',
64
64
  labels: null,
65
65
  rank: 2
66
66
  },
67
67
  {
68
- name: '현장관리자',
69
- description: '현장관리자',
68
+ name: 'TASK_SUPERVISORY',
69
+ description: '공종별 감리 책임자',
70
70
  labels: null,
71
71
  rank: 3
72
72
  },
73
73
  {
74
- name: '시공자',
75
- description: '시공자',
74
+ name: 'OVERALL_CONSTRUCTOR',
75
+ description: '총괄 시공 책임자',
76
76
  labels: null,
77
77
  rank: 4
78
+ },
79
+ {
80
+ name: 'TASK_CONSTRUCTOR',
81
+ description: '공종별 시공 관리자',
82
+ labels: null,
83
+ rank: 5
84
+ },
85
+ {
86
+ name: 'DESIGNER',
87
+ description: '설계사',
88
+ labels: null,
89
+ rank: 6
90
+ },
91
+ {
92
+ name: 'CONSTRUCTOR',
93
+ description: '시공자',
94
+ labels: null,
95
+ rank: 7
78
96
  }
79
97
  ]
80
98
  }
@@ -51,9 +51,6 @@ export class ProjectPatch {
51
51
 
52
52
  @Field({ nullable: true })
53
53
  buildingComplex?: BuildingComplexPatch
54
-
55
- // @Field(type => ObjectRef, { nullable: true, description: '연관된 건물 복합체 정보 (선택 사항)' })
56
- // buildingComplex?: ObjectRef
57
54
  }
58
55
 
59
56
  @ObjectType()