@operato/scene-grist 8.0.0-alpha.3 → 8.0.0-beta.0

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,15 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [8.0.0-beta.0](https://github.com/things-scene/operato-scene/compare/v8.0.0-alpha.12...v8.0.0-beta.0) (2025-01-07)
7
+
8
+
9
+ ### :bug: Bug Fix
10
+
11
+ * @hatiolab/things-scene@^8.0.0-beta ([c32f4c0](https://github.com/things-scene/operato-scene/commit/c32f4c00decf244ca82ae17a41e33f269e1882e7))
12
+
13
+
14
+
6
15
  ## [8.0.0-alpha.3](https://github.com/things-scene/operato-scene/compare/v8.0.0-alpha.2...v8.0.0-alpha.3) (2024-09-15)
7
16
 
8
17
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@operato/scene-grist",
3
3
  "description": "Grist UI component for things-scene",
4
4
  "author": "heartyoh",
5
- "version": "8.0.0-alpha.3",
5
+ "version": "8.0.0-beta.0",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
8
8
  "license": "MIT",
@@ -27,7 +27,7 @@
27
27
  "migration": "things-factory-migration"
28
28
  },
29
29
  "dependencies": {
30
- "@hatiolab/things-scene": "^8.0.0-alpha",
30
+ "@hatiolab/things-scene": "^8.0.0-beta",
31
31
  "@operato/data-grist": "^8.0.0-alpha",
32
32
  "@operato/i18n": "^8.0.0-alpha",
33
33
  "ses": "^1.5.0"
@@ -61,5 +61,5 @@
61
61
  "prettier --write"
62
62
  ]
63
63
  },
64
- "gitHead": "464ddfa271b121d79c706baea9d6c9dd8f21034d"
64
+ "gitHead": "b3cf6db1fbdcb9f4feac35560517fec3bb42c493"
65
65
  }
package/schema.graphql CHANGED
@@ -201,6 +201,7 @@ type Attachment {
201
201
  refBy: String
202
202
  refType: String
203
203
  size: String!
204
+ tags: Object
204
205
  updatedAt: DateTimeISO!
205
206
  updater: User
206
207
  }
@@ -219,6 +220,7 @@ input AttachmentPatch {
219
220
  name: String
220
221
  refBy: String
221
222
  refType: String
223
+ tags: Object
222
224
  }
223
225
 
224
226
  """Entity for AttributeSet"""
@@ -750,6 +752,8 @@ type Employee {
750
752
  address: String
751
753
  alias: String
752
754
  approvalLines: [ApprovalLine!]!
755
+ bankAccount: String
756
+ bankName: String
753
757
  contact: Contact
754
758
  controlNo: String!
755
759
  createdAt: DateTimeISO
@@ -758,8 +762,10 @@ type Employee {
758
762
  department: Department
759
763
  domain: Domain!
760
764
  email: EmailAddress
765
+ emergencyContact: String
766
+ emergencyContactPhone: String
761
767
  extension: String
762
- hiredOn: String
768
+ hiredOn: DateTimeISO
763
769
  id: ID!
764
770
  jobPosition: String
765
771
  jobResponsibility: String
@@ -769,7 +775,7 @@ type Employee {
769
775
  phone: String
770
776
  photo: String
771
777
  profile: Profile
772
- retiredAt: String
778
+ retiredOn: DateTimeISO
773
779
  supervises: [Employee!]!
774
780
  supervisor: Employee
775
781
  type: String
@@ -787,18 +793,22 @@ type EmployeeList {
787
793
  input EmployeePatch {
788
794
  active: Boolean
789
795
  alias: String
796
+ bankAccount: String
797
+ bankName: String
790
798
  contact: ObjectRefForContact
791
799
  controlNo: String
792
800
  cuFlag: String
793
801
  department: ObjectRefForDepartment
794
- hiredOn: String
802
+ emergencyContact: String
803
+ emergencyContactPhone: String
804
+ hiredOn: DateTimeISO
795
805
  id: ID
796
806
  jobPosition: String
797
807
  jobResponsibility: String
798
808
  name: String
799
809
  note: String
800
810
  photo: Upload
801
- retiredAt: String
811
+ retiredOn: DateTimeISO
802
812
  supervisor: ObjectRefForEmployee
803
813
  type: EmployeeType
804
814
  user: ObjectRefForUser
@@ -1163,7 +1173,6 @@ type Menu {
1163
1173
  name: String
1164
1174
  pagination: Boolean
1165
1175
  parent: Menu
1166
- privilege: PrivilegeObject
1167
1176
  rank: Float
1168
1177
  resourceId: String
1169
1178
  resourceName: String
@@ -1485,7 +1494,6 @@ input MenuPatch {
1485
1494
  name: String
1486
1495
  pagination: Boolean
1487
1496
  parent: ObjectRef
1488
- privilege: PrivilegeInput
1489
1497
  rank: Int
1490
1498
  resourceId: String
1491
1499
  resourceName: String
@@ -2363,6 +2371,7 @@ input NewAttachment {
2363
2371
  file: Upload!
2364
2372
  refBy: String
2365
2373
  refType: String
2374
+ tags: Object
2366
2375
  }
2367
2376
 
2368
2377
  input NewAttributeSet {
@@ -2447,17 +2456,21 @@ input NewDepartment {
2447
2456
  input NewEmployee {
2448
2457
  active: Boolean
2449
2458
  alias: String
2459
+ bankAccount: String
2460
+ bankName: String
2450
2461
  contact: ObjectRefForContact
2451
2462
  controlNo: String!
2452
2463
  department: ObjectRefForDepartment
2464
+ emergencyContact: String
2465
+ emergencyContactPhone: String
2453
2466
  extension: String
2454
- hiredOn: String
2467
+ hiredOn: DateTimeISO
2455
2468
  jobPosition: String
2456
2469
  jobResponsibility: String
2457
2470
  name: String!
2458
2471
  note: String
2459
2472
  photo: Upload
2460
- retiredAt: String
2473
+ retiredOn: DateTimeISO
2461
2474
  supervisor: ObjectRefForEmployee
2462
2475
  type: EmployeeType
2463
2476
  user: ObjectRefForUser
@@ -2557,7 +2570,6 @@ input NewMenu {
2557
2570
  name: String!
2558
2571
  pagination: Boolean
2559
2572
  parent: ObjectRef
2560
- privilege: PrivilegeInput
2561
2573
  rank: Int
2562
2574
  resourceId: String
2563
2575
  resourceName: String
@@ -2800,7 +2812,7 @@ input NewScenario {
2800
2812
  active: Boolean
2801
2813
  description: String
2802
2814
  name: String!
2803
- privilege: PrivilegeInput
2815
+ role: ObjectRef
2804
2816
  schedule: String
2805
2817
  timezone: String
2806
2818
  ttl: Float
@@ -3088,7 +3100,7 @@ input ObjectRefForEmployee {
3088
3100
  """Field description"""
3089
3101
  description: String
3090
3102
  email: EmailAddress
3091
- hiredOn: String
3103
+ hiredOn: DateTimeISO
3092
3104
 
3093
3105
  """Field id"""
3094
3106
  id: ID!
@@ -3425,13 +3437,6 @@ type Privilege {
3425
3437
  updater: User
3426
3438
  }
3427
3439
 
3428
- input PrivilegeInput {
3429
- category: String
3430
- owner: Boolean
3431
- privilege: String
3432
- super: Boolean
3433
- }
3434
-
3435
3440
  type PrivilegeList {
3436
3441
  items: [Privilege!]
3437
3442
  total: Int
@@ -3982,6 +3987,7 @@ type Scenario {
3982
3987
  """accessible and executable system-wide"""
3983
3988
  public: Boolean
3984
3989
  publishTags: [Connection!]!
3990
+ role: Role
3985
3991
  schedule: String
3986
3992
  scheduleId: String
3987
3993
  state: String
@@ -4063,7 +4069,7 @@ input ScenarioPatch {
4063
4069
  description: String
4064
4070
  id: ID
4065
4071
  name: String
4066
- privilege: PrivilegeInput
4072
+ role: ObjectRef
4067
4073
  schedule: String
4068
4074
  steps: [StepPatch!]
4069
4075
  timezone: String