@dssp/dcsp 1.0.0-alpha.3 → 1.0.0-alpha.5

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/schema.graphql CHANGED
@@ -80,6 +80,7 @@ type AppBinding {
80
80
  updatedAt: DateTimeISO
81
81
  updater: User!
82
82
  userType: String
83
+ username: String
83
84
  usersAuthProviders: [UsersAuthProviders!]
84
85
  }
85
86
 
@@ -388,6 +389,7 @@ type Board {
388
389
  playGroups: [PlayGroup!]
389
390
  state: String
390
391
  thumbnail: String
392
+ type: String
391
393
  updatedAt: DateTimeISO
392
394
  updater: User
393
395
  version: Float
@@ -407,6 +409,7 @@ type BoardFavorite {
407
409
  playGroups: [PlayGroup!]
408
410
  state: String
409
411
  thumbnail: String
412
+ type: String
410
413
  updatedAt: DateTimeISO
411
414
  updater: User
412
415
  version: Float
@@ -430,6 +433,7 @@ type BoardHistory {
430
433
  name: String!
431
434
  playGroups: [PlayGroup!]
432
435
  thumbnail: String
436
+ type: String
433
437
  updatedAt: DateTimeISO
434
438
  updater: User
435
439
  version: Float
@@ -446,6 +450,7 @@ input BoardPatch {
446
450
  model: String
447
451
  name: String
448
452
  thumbnail: String
453
+ type: String
449
454
  }
450
455
 
451
456
  type BoardSetting {
@@ -565,12 +570,15 @@ type BuildingInspection {
565
570
  attatchments: [Attachment!]!
566
571
  buildingInspectionSummary: BuildingInspectionSummary!
567
572
  buildingLevel: BuildingLevel
573
+ cellX: Float
574
+ cellY: Float
568
575
  checklist: Checklist
569
576
  createdAt: DateTimeISO
570
577
  creator: User
571
578
  deletedAt: DateTimeISO
572
579
  drawingMarker: String
573
580
  id: ID!
581
+ projectType: String
574
582
  requestDate: String
575
583
  status: String
576
584
  updatedAt: DateTimeISO
@@ -637,6 +645,7 @@ type BuildingLevel {
637
645
  mainDrawing: Attachment
638
646
  mainDrawingImage: String
639
647
  mainDrawingThumbnail: String
648
+ noticeCount: Float!
640
649
  rebarDistributionDrawing: Attachment
641
650
  rebarDistributionDrawingThumbnail: String
642
651
  updatedAt: DateTimeISO
@@ -682,11 +691,23 @@ type Checklist {
682
691
  inspectionParts: [String!]
683
692
  location: String
684
693
  name: String
694
+
695
+ """총괄 시공 책임자"""
696
+ overallConstructor: User
685
697
  overallConstructorSignature: String
698
+
699
+ """총괄 감리 책임자"""
700
+ overallSupervisory: User
686
701
  overallSupervisorySignature: String
687
702
  supervisorInspectionDate: DateTimeISO
688
703
  task: Task!
704
+
705
+ """공종별 시공 관리자"""
706
+ taskConstructor: User
689
707
  taskConstructorSignature: String
708
+
709
+ """건축사보 (공종별 감리 관리자)"""
710
+ taskSupervisory: User
690
711
  taskSupervisorySignature: String
691
712
  updatedAt: DateTimeISO
692
713
  updater: User
@@ -930,7 +951,7 @@ type Connection {
930
951
  endpoint: String
931
952
  id: ID!
932
953
  name: String!
933
- params: String
954
+ params: Object
934
955
  state: String
935
956
  type: String
936
957
  updatedAt: DateTimeISO
@@ -950,7 +971,7 @@ input ConnectionPatch {
950
971
  endpoint: String
951
972
  id: ID
952
973
  name: String
953
- params: String
974
+ params: Object
954
975
  type: String
955
976
  }
956
977
 
@@ -1175,9 +1196,35 @@ input DomainGeneratorInput {
1175
1196
 
1176
1197
  input DomainInput {
1177
1198
  description: String
1199
+ extType: String
1178
1200
  name: String!
1179
1201
  }
1180
1202
 
1203
+ """Entity for DomainLink representing a connection between two domains"""
1204
+ type DomainLink {
1205
+ createdAt: DateTimeISO!
1206
+ creator: User
1207
+ id: ID!
1208
+ sourceDomain: Domain!
1209
+ targetDomain: Domain!
1210
+ type: String!
1211
+ updatedAt: DateTimeISO!
1212
+ updater: User
1213
+ }
1214
+
1215
+ type DomainLinkList {
1216
+ items: [DomainLink!]!
1217
+ total: Int!
1218
+ }
1219
+
1220
+ input DomainLinkPatch {
1221
+ cuFlag: String
1222
+ id: ID!
1223
+ sourceDomain: ObjectRef
1224
+ targetDomain: ObjectRef
1225
+ type: String
1226
+ }
1227
+
1181
1228
  type DomainList {
1182
1229
  items: [Domain!]
1183
1230
  total: Int
@@ -1189,6 +1236,7 @@ input DomainPatch {
1189
1236
  brandName: String
1190
1237
  contentImage: String
1191
1238
  description: String
1239
+ extType: String
1192
1240
  id: String
1193
1241
  name: String
1194
1242
  owner: String
@@ -1678,13 +1726,18 @@ type LiteMenu {
1678
1726
  active: Boolean
1679
1727
  appName: String
1680
1728
  board: Board
1729
+
1730
+ """Settings for help contents"""
1681
1731
  createdAt: DateTimeISO
1682
1732
  creator: User
1683
1733
  description: String
1684
1734
  domain: Domain!
1735
+ help: String
1685
1736
  icon: String
1686
1737
  id: ID!
1687
1738
  label: String!
1739
+
1740
+ """Settings for multilingual titles"""
1688
1741
  labels: Object
1689
1742
  name: String!
1690
1743
  parent: String
@@ -1705,6 +1758,7 @@ input LiteMenuPatch {
1705
1758
  active: Boolean
1706
1759
  appName: String
1707
1760
  description: String
1761
+ help: String
1708
1762
  icon: String
1709
1763
  labels: Object
1710
1764
  name: String
@@ -2126,7 +2180,7 @@ input MenuPatch {
2126
2180
 
2127
2181
  type Mutation {
2128
2182
  """To activate user"""
2129
- activateUser(userId: String!): Boolean!
2183
+ activateUser(username: String!): Boolean!
2130
2184
 
2131
2185
  """
2132
2186
  Attaches an existing contact to an employee. The contact is identified by its ID and the employee is identified by their ID.
@@ -2199,6 +2253,9 @@ type Mutation {
2199
2253
  """To create domain (Only superuser is granted this privilege.)"""
2200
2254
  createDomain(domainInput: DomainPatch!): Domain!
2201
2255
 
2256
+ """To create new DomainLink"""
2257
+ createDomainLink(domainLink: NewDomainLink!): DomainLink!
2258
+
2202
2259
  """
2203
2260
  Creates a new employee record with the provided details. Optionally associates the employee with a supervisor, department, and system user. If a photo is provided, it will be attached to the employee record.
2204
2261
  """
@@ -2249,6 +2306,9 @@ type Mutation {
2249
2306
  """To create my new PagePreference"""
2250
2307
  createMyPagePreference(pagePreference: NewPagePreference!): PagePreference!
2251
2308
 
2309
+ """To create new NoticeComment"""
2310
+ createNoticeComment(noticeComment: NewNoticeComment!): NoticeComment!
2311
+
2252
2312
  """To create new Notification"""
2253
2313
  createNotification(notification: NewNotification!): Notification!
2254
2314
 
@@ -2421,8 +2481,14 @@ type Mutation {
2421
2481
  """To delete domain (Only superuser is granted this privilege.)"""
2422
2482
  deleteDomain(name: String!): Domain!
2423
2483
 
2484
+ """To delete DomainLink"""
2485
+ deleteDomainLink(id: String!): Boolean!
2486
+
2487
+ """To delete multiple DomainLinks"""
2488
+ deleteDomainLinks(ids: [String!]!): Boolean!
2489
+
2424
2490
  """To delete domain user"""
2425
- deleteDomainUser(email: EmailAddress!): Boolean!
2491
+ deleteDomainUser(username: String!): Boolean!
2426
2492
 
2427
2493
  """To delete multiple domains (Only superuser is granted this privilege.)"""
2428
2494
  deleteDomains(names: [String!]!): Boolean!
@@ -2521,6 +2587,9 @@ type Mutation {
2521
2587
  """To delete my preference"""
2522
2588
  deleteMyUserPreference(element: String!, key: String!): Boolean!
2523
2589
 
2590
+ """To delete NoticeComment"""
2591
+ deleteNoticeComment(id: String!): Boolean!
2592
+
2524
2593
  """To delete Notification"""
2525
2594
  deleteNotification(id: String!): Boolean!
2526
2595
 
@@ -2639,7 +2708,7 @@ type Mutation {
2639
2708
  deleteThemes(ids: [String!]!): Boolean!
2640
2709
 
2641
2710
  """To delete a user"""
2642
- deleteUser(email: EmailAddress!): Boolean!
2711
+ deleteUser(username: String!): Boolean!
2643
2712
 
2644
2713
  """To delete UserPreference"""
2645
2714
  deleteUserPreference(id: String!): Boolean!
@@ -2648,7 +2717,7 @@ type Mutation {
2648
2717
  deleteUserPreferences(ids: [String!]!): Boolean!
2649
2718
 
2650
2719
  """To delete some users"""
2651
- deleteUsers(emails: [String!]!): Boolean!
2720
+ deleteUsers(usernames: [String!]!): Boolean!
2652
2721
 
2653
2722
  """To delete multiple WorkerTypes"""
2654
2723
  deleteWorkerTypes(ids: [String!]!): Boolean!
@@ -2763,11 +2832,11 @@ type Mutation {
2763
2832
  importThemes(themes: [ThemePatch!]!): Boolean!
2764
2833
 
2765
2834
  """To inactivate user"""
2766
- inactivateUser(userId: String!): Boolean!
2835
+ inactivateUser(username: String!): Boolean!
2767
2836
  inviteCustomer(customerDomainName: String!): Boolean!
2768
2837
 
2769
2838
  """To invite new user"""
2770
- inviteUser(email: EmailAddress!): Boolean!
2839
+ inviteUser(username: String!): Boolean!
2771
2840
 
2772
2841
  """To make the board to join the group"""
2773
2842
  joinGroup(boardIds: [String!]!, id: String!): Group!
@@ -2813,7 +2882,7 @@ type Mutation {
2813
2882
  reorderPlayGroup(boardIds: [String!]!, id: String!): PlayGroup!
2814
2883
 
2815
2884
  """To reset password to default"""
2816
- resetPasswordToDefault(userId: String!): Boolean!
2885
+ resetPasswordToDefault(username: String!): Boolean!
2817
2886
 
2818
2887
  """To revert Board version"""
2819
2888
  revertBoardVersion(id: String!, version: Float!): Board!
@@ -2847,7 +2916,7 @@ type Mutation {
2847
2916
  terminateContract(partnerName: String!): Boolean!
2848
2917
 
2849
2918
  """To transfer owner of domain"""
2850
- transferOwner(email: EmailAddress!): Boolean!
2919
+ transferOwner(username: String!): Boolean!
2851
2920
 
2852
2921
  """To modify ActionPlan information"""
2853
2922
  updateActionPlan(id: String!, patch: ActionPlanPatch!): ActionPlan!
@@ -2906,6 +2975,9 @@ type Mutation {
2906
2975
  """To update domain (Only superuser is granted this privilege.)"""
2907
2976
  updateDomain(name: String!, patch: DomainPatch!): Domain!
2908
2977
 
2978
+ """To modify DomainLink information"""
2979
+ updateDomainLink(id: String!, patch: DomainLinkPatch!): DomainLink!
2980
+
2909
2981
  """To update multiple domains (Only superuser is granted this privilege.)"""
2910
2982
  updateDomains(patches: [DomainPatch!]!): Boolean!
2911
2983
 
@@ -2996,6 +3068,9 @@ type Mutation {
2996
3068
  """To modify multiple Departments' information"""
2997
3069
  updateMultipleDepartment(patches: [DepartmentPatch!]!): [Department!]!
2998
3070
 
3071
+ """To modify multiple DomainLinks' information"""
3072
+ updateMultipleDomainLink(patches: [DomainLinkPatch!]!): [DomainLink!]!
3073
+
2999
3074
  """
3000
3075
  Updates or creates multiple employee records based on the provided patches. New employees are created if the "cuFlag" is "+", and existing employees are updated if the "cuFlag" is "M".
3001
3076
  """
@@ -3088,6 +3163,9 @@ type Mutation {
3088
3163
  """To create or update my preference"""
3089
3164
  updateMyUserPreference(key: String!, preference: Object!): UserPreference!
3090
3165
 
3166
+ """To modify NoticeComment information"""
3167
+ updateNoticeComment(id: String!, patch: NoticeCommentPatch!): NoticeComment!
3168
+
3091
3169
  """To modify Notification information"""
3092
3170
  updateNotification(id: String!, patch: NotificationPatch!): Notification!
3093
3171
 
@@ -3167,7 +3245,7 @@ type Mutation {
3167
3245
  updateUserPreference(id: String!, patch: UserPreferencePatch!): UserPreference!
3168
3246
 
3169
3247
  """To update roles for a user"""
3170
- updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, userId: String!): User!
3248
+ updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, username: String!): User!
3171
3249
 
3172
3250
  """프로젝트 공정표 업로드"""
3173
3251
  uploadProjectScheduleTable(param: UploadProjectScheduleTable!): Boolean!
@@ -3242,6 +3320,7 @@ input NewBoard {
3242
3320
  model: String!
3243
3321
  name: String!
3244
3322
  thumbnail: String
3323
+ type: String
3245
3324
  }
3246
3325
 
3247
3326
  input NewBoardTemplate {
@@ -3289,7 +3368,7 @@ input NewConnection {
3289
3368
  edge: ObjectRef
3290
3369
  endpoint: String
3291
3370
  name: String!
3292
- params: String
3371
+ params: Object
3293
3372
  type: String
3294
3373
  }
3295
3374
 
@@ -3316,6 +3395,12 @@ input NewDepartment {
3316
3395
  picture: Upload
3317
3396
  }
3318
3397
 
3398
+ input NewDomainLink {
3399
+ sourceDomain: ObjectRef!
3400
+ targetDomain: ObjectRef!
3401
+ type: String!
3402
+ }
3403
+
3319
3404
  input NewEmployee {
3320
3405
  active: Boolean
3321
3406
  alias: String
@@ -3428,6 +3513,7 @@ input NewLiteMenu {
3428
3513
  active: Boolean
3429
3514
  appName: String
3430
3515
  description: String
3516
+ help: String
3431
3517
  icon: String
3432
3518
  labels: Object
3433
3519
  name: String!
@@ -3579,6 +3665,11 @@ input NewMenuDetailColumn {
3579
3665
  virtualField: Boolean
3580
3666
  }
3581
3667
 
3668
+ input NewNoticeComment {
3669
+ buildingLevelId: String
3670
+ comment: String
3671
+ }
3672
+
3582
3673
  input NewNotification {
3583
3674
  body: String
3584
3675
  image: String
@@ -3805,6 +3896,7 @@ input NewUser {
3805
3896
  password: String
3806
3897
  roles: [ObjectRef!]
3807
3898
  userType: String
3899
+ username: String!
3808
3900
  }
3809
3901
 
3810
3902
  input NewUserByDomainWizardInput {
@@ -3822,6 +3914,22 @@ input NewUserPreference {
3822
3914
  user: ObjectRef!
3823
3915
  }
3824
3916
 
3917
+ """Entity for NoticeComment"""
3918
+ type NoticeComment {
3919
+ buildingLevel: BuildingLevel
3920
+ comment: String
3921
+ createdAt: DateTimeISO
3922
+ creator: User
3923
+ deletedAt: DateTimeISO
3924
+ id: ID!
3925
+ }
3926
+
3927
+ input NoticeCommentPatch {
3928
+ buildingLevelId: String
3929
+ comment: String
3930
+ id: ID
3931
+ }
3932
+
3825
3933
  """Entity for Notification"""
3826
3934
  type Notification {
3827
3935
  body: String
@@ -4380,6 +4488,7 @@ type Project {
4380
4488
  kpi: Float
4381
4489
  mainPhoto: Attachment
4382
4490
  name: String!
4491
+ projectType: String!
4383
4492
  robotProgressRate: Float
4384
4493
  rootTasks: [Task!]
4385
4494
  scheduleTable: Attachment
@@ -4707,6 +4816,12 @@ type Query {
4707
4816
  """To fetch domain"""
4708
4817
  domain(id: String!): Domain!
4709
4818
 
4819
+ """To fetch multiple DomainLinks"""
4820
+ domainLinks(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainLinkList!
4821
+
4822
+ """To fetch domain"""
4823
+ domainTypes: [String!]!
4824
+
4710
4825
  """To fetch all domains (Only superuser is granted this privilege.)"""
4711
4826
  domains(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
4712
4827
 
@@ -4772,6 +4887,9 @@ type Query {
4772
4887
  i18nCompletion(input: i18nCompletionInput!): i18nCompletionOutput!
4773
4888
  imageCompletion(input: ImageCompletionInput!): ImageCompletionOutput!
4774
4889
 
4890
+ """BuildingInspection By ChecklistItemId"""
4891
+ inspectionByChecklistItemId: BuildingInspection!
4892
+
4775
4893
  """To fetch a InspectionDrawingType"""
4776
4894
  inspectionDrawingType(id: String!): InspectionDrawingType
4777
4895
 
@@ -4871,8 +4989,8 @@ type Query {
4871
4989
  """To fetch multiple PagePreferences"""
4872
4990
  myPagePreferences(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PagePreferenceList!
4873
4991
 
4874
- """To fetch roles of current user"""
4875
- myRoles: [Role!]!
4992
+ """To fetch roles of current user (id, name only)"""
4993
+ myRoles: [RoleBrief!]!
4876
4994
 
4877
4995
  """To fetch a User's own UserPreference"""
4878
4996
  myUserPreference(element: String!, key: String!): UserPreference
@@ -4880,6 +4998,9 @@ type Query {
4880
4998
  """To fetch multiple UserPreferences"""
4881
4999
  myUserPreferences(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserPreferenceList!
4882
5000
 
5001
+ """To fetch multiple NoticeComments"""
5002
+ noticeComments(buildingLevelId: String!): [NoticeComment!]!
5003
+
4883
5004
  """To fetch a Notification"""
4884
5005
  notification(id: String!): Notification
4885
5006
 
@@ -5139,6 +5260,11 @@ type Role {
5139
5260
  users: [User!]
5140
5261
  }
5141
5262
 
5263
+ type RoleBrief {
5264
+ id: String
5265
+ name: String
5266
+ }
5267
+
5142
5268
  type RoleList {
5143
5269
  items: [Role!]
5144
5270
  total: Int
@@ -5437,7 +5563,7 @@ type Step {
5437
5563
  id: ID!
5438
5564
  log: Boolean
5439
5565
  name: String!
5440
- params: String
5566
+ params: Object
5441
5567
 
5442
5568
  """
5443
5569
  A boolean attribute indicating the inclusion status of an element in the result
@@ -5463,7 +5589,7 @@ input StepPatch {
5463
5589
  id: ID
5464
5590
  log: Boolean
5465
5591
  name: String
5466
- params: String
5592
+ params: Object
5467
5593
  result: Boolean
5468
5594
  sequence: Int
5469
5595
  skip: Boolean
@@ -5729,6 +5855,7 @@ type User {
5729
5855
  updatedAt: DateTimeISO
5730
5856
  updater: User
5731
5857
  userType: String
5858
+ username: String
5732
5859
  usersAuthProviders: [UsersAuthProviders!]
5733
5860
  }
5734
5861
 
@@ -2,10 +2,10 @@
2
2
  <html lang="en">
3
3
  <head>
4
4
  <meta charset="utf-8" />
5
- <title>Construction Site Link</title>
5
+ <title>Construction Supervision Platform</title>
6
6
  <meta name="generator" content="Things Factory Starter Kit" />
7
7
  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
8
- <meta name="description" content="Revolutionizing Safety Oversight" />
8
+ <meta name="description" content="Driving the Digitalization of Site Supervision" />
9
9
  <meta name="color-scheme" content="light only"/>
10
10
  <meta name="supported-color-schemes" content="light"/>
11
11
 
@@ -21,15 +21,15 @@
21
21
 
22
22
  <!-- Add to homescreen for Chrome on Android. Fallback for manifest.json -->
23
23
  <meta name="mobile-web-app-capable" content="yes" />
24
- <meta name="application-name" content="Construction Site Link" />
25
- <meta name="application-description" content="Revolutionizing Safety Oversight" />
24
+ <meta name="application-name" content="Construction Supervision Platform" />
25
+ <meta name="application-description" content="Driving the Digitalization of Site Supervision" />
26
26
  <meta name="application-copyright" content="Copyright © hatiolab.com. All Rights Reserved." />
27
27
  <link rel="application-icon" href="/assets/manifest/icon-96x96.png" />
28
28
 
29
29
  <!-- Add to homescreen for Safari on iOS -->
30
30
  <meta name="apple-mobile-web-app-capable" content="yes" />
31
31
  <meta name="apple-mobile-web-app-status-bar-style" content="default" />
32
- <meta name="apple-mobile-web-app-title" content="Construction Site Link" />
32
+ <meta name="apple-mobile-web-app-title" content="Construction Supervision Platform" />
33
33
 
34
34
  <!-- Homescreen icons -->
35
35
  <link rel="apple-touch-icon" href="/assets/manifest/icon-48x48.png" />
@@ -47,7 +47,7 @@
47
47
  <meta name="twitter:card" content="summary" />
48
48
  <meta name="twitter:site" content="@username" />
49
49
  <meta property="og:type" content="website" />
50
- <meta property="og:site_name" content="Construction Site Link, Revolutionizing Safety Oversight" />
50
+ <meta property="og:site_name" content="Construction Supervision Platform, Driving the Digitalization of Site Supervision" />
51
51
  <meta property="og:image" content="/assets/manifest/image-metaog.png" />
52
52
 
53
53
  <!-- Performance tip: hint to the browser to start the handshake for the fonts site -->
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta charset="utf-8" />
5
5
  <meta name="google" content="notranslate" />
6
- <title>Construction Site Link</title>
6
+ <title>Construction Supervision Platform</title>
7
7
  <meta name="generator" content="Things Factory Starter Kit" />
8
8
  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
9
9
  <meta name="description" content="Smart Digital Construction Supervision Platform" />
@@ -20,7 +20,7 @@
20
20
 
21
21
  <!-- Add to homescreen for Chrome on Android. Fallback for manifest.json -->
22
22
  <meta name="mobile-web-app-capable" content="yes" />
23
- <meta name="application-name" content="Construction Site Link" />
23
+ <meta name="application-name" content="Construction Supervision Platform" />
24
24
  <meta name="application-description" content="Smart Digital Construction Supervision Platform" />
25
25
  <meta name="application-copyright" content="Copyright © hatiolab.com. All Rights Reserved." />
26
26
  <link rel="application-icon" href="/assets/manifest/icon-96x96.png" />
@@ -28,7 +28,7 @@
28
28
  <!-- Add to homescreen for Safari on iOS -->
29
29
  <meta name="apple-mobile-web-app-capable" content="yes" />
30
30
  <meta name="apple-mobile-web-app-status-bar-style" content="default" />
31
- <meta name="apple-mobile-web-app-title" content="Construction Site Link" />
31
+ <meta name="apple-mobile-web-app-title" content="Construction Supervision Platform" />
32
32
 
33
33
  <!-- Homescreen icons -->
34
34
  <link rel="apple-touch-icon" href="/assets/manifest/icon-48x48.png" />