@things-factory/operato-dataset 7.0.33 → 7.0.35

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": "@things-factory/operato-dataset",
3
- "version": "7.0.33",
3
+ "version": "7.0.35",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -81,7 +81,7 @@
81
81
  "@things-factory/integration-base": "^7.0.33",
82
82
  "@things-factory/integration-influxdb": "^7.0.33",
83
83
  "@things-factory/integration-msgraph": "^7.0.33",
84
- "@things-factory/integration-ui": "^7.0.33",
84
+ "@things-factory/integration-ui": "^7.0.35",
85
85
  "@things-factory/lite-menu": "^7.0.33",
86
86
  "@things-factory/lock-client": "^7.0.33",
87
87
  "@things-factory/more-base": "^7.0.33",
@@ -102,5 +102,5 @@
102
102
  "devDependencies": {
103
103
  "@things-factory/builder": "^7.0.33"
104
104
  },
105
- "gitHead": "d8ce7eb155cf54e1c8aa9dca34ca7872b0a0c804"
105
+ "gitHead": "0b2f9d060aebacdde2cf0b656273f8c3577ab09b"
106
106
  }
package/schema.graphql CHANGED
@@ -2931,7 +2931,7 @@ type Mutation {
2931
2931
  """To delete multiple ApprovalLines"""
2932
2932
  deleteApprovalLines(ids: [String!]!): Boolean!
2933
2933
  deleteAttachment(id: String!): Boolean!
2934
- deleteAttachmentsByRef(refBys: [String!]!): Boolean!
2934
+ deleteAttachmentsByRef(refBys: [String!]!, refType: String): Boolean!
2935
2935
 
2936
2936
  """To delete AttributeSet"""
2937
2937
  deleteAttributeSet(id: String!): Boolean!
@@ -4323,12 +4323,34 @@ input NewSetting {
4323
4323
  }
4324
4324
 
4325
4325
  input NewStateRegister {
4326
+ """Description of the state register"""
4326
4327
  description: String
4328
+
4329
+ """Group name for the state register"""
4330
+ group: String
4331
+
4332
+ """Name of the state register"""
4327
4333
  name: String!
4334
+
4335
+ """Number of decimal places if the state is a number type"""
4336
+ place: String
4337
+
4338
+ """
4339
+ Reference to an external entity or data, used as a flexible foreign key
4340
+ """
4328
4341
  refBy: String
4342
+
4343
+ """Current state value"""
4329
4344
  state: Object
4345
+
4346
+ """Time to live for the state value in seconds"""
4330
4347
  ttl: Int
4348
+
4349
+ """Type of the state"""
4331
4350
  type: String
4351
+
4352
+ """Unit of the state value"""
4353
+ unit: String
4332
4354
  }
4333
4355
 
4334
4356
  input NewTerminology {
@@ -5682,36 +5704,113 @@ input Sorting {
5682
5704
 
5683
5705
  """Entity for StateRegister"""
5684
5706
  type StateRegister {
5707
+ """Creation time of the state register"""
5685
5708
  createdAt: DateTimeISO
5709
+
5710
+ """User who created the state register"""
5686
5711
  creator: User
5712
+
5713
+ """ID of the user who created the state register"""
5714
+ creatorId: String
5715
+
5716
+ """Description of the state register"""
5687
5717
  description: String
5718
+
5719
+ """Associated domain for the state register"""
5688
5720
  domain: Domain!
5721
+
5722
+ """ID of the associated domain"""
5723
+ domainId: String!
5724
+
5725
+ """Group name for the state register"""
5726
+ group: String
5689
5727
  id: ID!
5728
+
5729
+ """Name of the state register"""
5690
5730
  name: String
5731
+
5732
+ """Number of decimal places if the state is a number type"""
5733
+ place: String
5734
+
5735
+ """
5736
+ Reference to an external entity or data, used as a flexible foreign key
5737
+ """
5691
5738
  refBy: String
5739
+
5740
+ """Current state value"""
5692
5741
  state: Object
5742
+
5743
+ """Time to live for the state value in seconds"""
5693
5744
  ttl: Int
5745
+
5746
+ """Type of the state"""
5694
5747
  type: String
5748
+
5749
+ """Unit of the state value"""
5750
+ unit: String
5751
+
5752
+ """Last update time of the state register"""
5695
5753
  updatedAt: DateTimeISO
5754
+
5755
+ """User who last updated the state register"""
5696
5756
  updater: User
5757
+
5758
+ """ID of the user who last updated the state register"""
5759
+ updaterId: String
5760
+
5761
+ """User who wrote the state"""
5697
5762
  writer: User
5763
+
5764
+ """ID of the user who wrote the state"""
5765
+ writerId: String
5766
+
5767
+ """Time when the state was recorded"""
5698
5768
  wroteAt: DateTimeISO
5699
5769
  }
5700
5770
 
5701
5771
  type StateRegisterList {
5772
+ """List of state registers"""
5702
5773
  items: [StateRegister!]!
5774
+
5775
+ """Total number of state registers"""
5703
5776
  total: Int!
5704
5777
  }
5705
5778
 
5706
5779
  input StateRegisterPatch {
5780
+ """Flag indicating create/update operations"""
5707
5781
  cuFlag: String
5782
+
5783
+ """Description of the state register"""
5708
5784
  description: String
5785
+
5786
+ """Group name for the state register"""
5787
+ group: String
5788
+
5789
+ """ID of the state register"""
5709
5790
  id: ID
5791
+
5792
+ """Name of the state register"""
5710
5793
  name: String
5794
+
5795
+ """Number of decimal places if the state is a number type"""
5796
+ place: String
5797
+
5798
+ """
5799
+ Reference to an external entity or data, used as a flexible foreign key
5800
+ """
5711
5801
  refBy: String
5802
+
5803
+ """Current state value"""
5712
5804
  state: Object
5805
+
5806
+ """Time to live for the state value in seconds"""
5713
5807
  ttl: Int
5808
+
5809
+ """Type of the state"""
5714
5810
  type: String
5811
+
5812
+ """Unit of the state value"""
5813
+ unit: String
5715
5814
  }
5716
5815
 
5717
5816
  type Step {