@things-factory/operato-ecs 8.0.18 → 8.0.19

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.
Files changed (2) hide show
  1. package/package.json +14 -2
  2. package/schema.graphql +15 -26
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/operato-ecs",
3
- "version": "8.0.18",
3
+ "version": "8.0.19",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -44,26 +44,38 @@
44
44
  "@operato/property-editor": "^8.0.0",
45
45
  "@operato/scene-chartjs": "^8.0.0",
46
46
  "@operato/scene-clock": "^8.0.0",
47
+ "@operato/scene-clone": "^8.0.0",
48
+ "@operato/scene-compass": "^8.0.0",
47
49
  "@operato/scene-data-transform": "^8.0.0",
48
50
  "@operato/scene-excel": "^8.0.0",
49
51
  "@operato/scene-form": "^8.0.0",
50
52
  "@operato/scene-gantt": "^8.0.0",
51
53
  "@operato/scene-gauge": "^8.0.0",
54
+ "@operato/scene-google-map": "^8.0.0",
55
+ "@operato/scene-graphql": "^8.0.0",
52
56
  "@operato/scene-grist": "^8.0.0",
53
57
  "@operato/scene-half-roundrect": "^8.0.0",
58
+ "@operato/scene-i18n": "^8.0.0",
54
59
  "@operato/scene-image-slider": "^8.0.0",
60
+ "@operato/scene-indoor-map": "^8.0.0",
55
61
  "@operato/scene-integration": "^8.0.0",
56
62
  "@operato/scene-label": "^8.0.0",
63
+ "@operato/scene-legend": "^8.0.0",
57
64
  "@operato/scene-manufacturing": "^8.0.0",
65
+ "@operato/scene-marker": "^8.0.0",
58
66
  "@operato/scene-news-ticker": "^8.0.0",
67
+ "@operato/scene-polypath": "^8.0.0",
59
68
  "@operato/scene-progressbar": "^8.0.0",
60
69
  "@operato/scene-random": "^8.0.0",
61
70
  "@operato/scene-restful": "^8.0.0",
62
71
  "@operato/scene-scichart": "^8.0.0",
63
72
  "@operato/scene-switch": "^8.0.0",
73
+ "@operato/scene-tab": "^8.0.0",
64
74
  "@operato/scene-table": "^8.0.0",
65
75
  "@operato/scene-timer": "^8.0.0",
76
+ "@operato/scene-visualizer": "^8.0.0",
66
77
  "@operato/scene-wellstek-gantt": "^8.0.0",
78
+ "@operato/scene-wheel-sorter": "^8.0.0",
67
79
  "@things-factory/api": "^8.0.15",
68
80
  "@things-factory/apptool-ui": "^8.0.15",
69
81
  "@things-factory/auth-ui": "^8.0.15",
@@ -97,5 +109,5 @@
97
109
  "devDependencies": {
98
110
  "@things-factory/builder": "^8.0.18"
99
111
  },
100
- "gitHead": "2f22c848f13bf0ee753d67257bd06fd8a74a706c"
112
+ "gitHead": "90a27be743d77fe259bf37bdb41028683b5f7284"
101
113
  }
package/schema.graphql CHANGED
@@ -762,8 +762,6 @@ type Employee {
762
762
  address: String
763
763
  alias: String
764
764
  approvalLines: [ApprovalLine!]!
765
- bankAccount: String
766
- bankName: String
767
765
  contact: Contact
768
766
  controlNo: String!
769
767
  createdAt: DateTimeISO
@@ -772,10 +770,8 @@ type Employee {
772
770
  department: Department
773
771
  domain: Domain!
774
772
  email: EmailAddress
775
- emergencyContact: String
776
- emergencyContactPhone: String
777
773
  extension: String
778
- hiredOn: DateTimeISO
774
+ hiredOn: String
779
775
  id: ID!
780
776
  jobPosition: String
781
777
  jobResponsibility: String
@@ -785,7 +781,7 @@ type Employee {
785
781
  phone: String
786
782
  photo: String
787
783
  profile: Profile
788
- retiredOn: DateTimeISO
784
+ retiredAt: String
789
785
  supervises: [Employee!]!
790
786
  supervisor: Employee
791
787
  type: String
@@ -803,22 +799,18 @@ type EmployeeList {
803
799
  input EmployeePatch {
804
800
  active: Boolean
805
801
  alias: String
806
- bankAccount: String
807
- bankName: String
808
802
  contact: ObjectRefForContact
809
803
  controlNo: String
810
804
  cuFlag: String
811
805
  department: ObjectRefForDepartment
812
- emergencyContact: String
813
- emergencyContactPhone: String
814
- hiredOn: DateTimeISO
806
+ hiredOn: String
815
807
  id: ID
816
808
  jobPosition: String
817
809
  jobResponsibility: String
818
810
  name: String
819
811
  note: String
820
812
  photo: Upload
821
- retiredOn: DateTimeISO
813
+ retiredAt: String
822
814
  supervisor: ObjectRefForEmployee
823
815
  type: EmployeeType
824
816
  user: ObjectRefForUser
@@ -1567,7 +1559,7 @@ input MenuPatch {
1567
1559
 
1568
1560
  type Mutation {
1569
1561
  """To activate user"""
1570
- activateUser(userId: String!): Boolean!
1562
+ activateUser(username: String!): Boolean!
1571
1563
 
1572
1564
  """
1573
1565
  Attaches an existing contact to an employee. The contact is identified by its ID and the employee is identified by their ID.
@@ -1785,7 +1777,7 @@ type Mutation {
1785
1777
  deleteDomain(name: String!): Domain!
1786
1778
 
1787
1779
  """To delete domain user"""
1788
- deleteDomainUser(email: EmailAddress!): Boolean!
1780
+ deleteDomainUser(username: String!): Boolean!
1789
1781
 
1790
1782
  """To delete multiple domains (Only superuser is granted this privilege.)"""
1791
1783
  deleteDomains(names: [String!]!): Boolean!
@@ -2054,11 +2046,11 @@ type Mutation {
2054
2046
  importThemes(themes: [ThemePatch!]!): Boolean!
2055
2047
 
2056
2048
  """To inactivate user"""
2057
- inactivateUser(userId: String!): Boolean!
2049
+ inactivateUser(username: String!): Boolean!
2058
2050
  inviteCustomer(customerDomainName: String!): Boolean!
2059
2051
 
2060
2052
  """To invite new user"""
2061
- inviteUser(email: EmailAddress!): Boolean!
2053
+ inviteUser(username: String!): Boolean!
2062
2054
 
2063
2055
  """To make the board to join the group"""
2064
2056
  joinGroup(boardIds: [String!]!, id: String!): Group!
@@ -2105,7 +2097,7 @@ type Mutation {
2105
2097
  reorderPlayGroup(boardIds: [String!]!, id: String!): PlayGroup!
2106
2098
 
2107
2099
  """To reset password to default"""
2108
- resetPasswordToDefault(userId: String!): Boolean!
2100
+ resetPasswordToDefault(username: String!): Boolean!
2109
2101
 
2110
2102
  """To revert Board version"""
2111
2103
  revertBoardVersion(id: String!, version: Float!): Board!
@@ -2139,7 +2131,7 @@ type Mutation {
2139
2131
  terminateContract(partnerName: String!): Boolean!
2140
2132
 
2141
2133
  """To transfer owner of domain"""
2142
- transferOwner(email: EmailAddress!): Boolean!
2134
+ transferOwner(username: String!): Boolean!
2143
2135
  unregisterSchedule(handle: ID!): Boolean!
2144
2136
  updateAppliance(id: String!, patch: AppliancePatch!): Appliance!
2145
2137
  updateApplication(id: String!, patch: ApplicationPatch!): Application!
@@ -2362,7 +2354,7 @@ type Mutation {
2362
2354
  updateUserPreference(id: String!, patch: UserPreferencePatch!): UserPreference!
2363
2355
 
2364
2356
  """To update roles for a user"""
2365
- updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, userId: String!): User!
2357
+ updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, username: String!): User!
2366
2358
  }
2367
2359
 
2368
2360
  input NewAppliance {
@@ -2484,21 +2476,17 @@ input NewDepartment {
2484
2476
  input NewEmployee {
2485
2477
  active: Boolean
2486
2478
  alias: String
2487
- bankAccount: String
2488
- bankName: String
2489
2479
  contact: ObjectRefForContact
2490
2480
  controlNo: String!
2491
2481
  department: ObjectRefForDepartment
2492
- emergencyContact: String
2493
- emergencyContactPhone: String
2494
2482
  extension: String
2495
- hiredOn: DateTimeISO
2483
+ hiredOn: String
2496
2484
  jobPosition: String
2497
2485
  jobResponsibility: String
2498
2486
  name: String!
2499
2487
  note: String
2500
2488
  photo: Upload
2501
- retiredOn: DateTimeISO
2489
+ retiredAt: String
2502
2490
  supervisor: ObjectRefForEmployee
2503
2491
  type: EmployeeType
2504
2492
  user: ObjectRefForUser
@@ -2910,6 +2898,7 @@ input NewUser {
2910
2898
  password: String
2911
2899
  roles: [ObjectRef!]
2912
2900
  userType: String
2901
+ username: String!
2913
2902
  }
2914
2903
 
2915
2904
  input NewUserByDomainWizardInput {
@@ -3130,7 +3119,7 @@ input ObjectRefForEmployee {
3130
3119
  """Field description"""
3131
3120
  description: String
3132
3121
  email: EmailAddress
3133
- hiredOn: DateTimeISO
3122
+ hiredOn: String
3134
3123
 
3135
3124
  """Field id"""
3136
3125
  id: ID!