@fmsim/fmsim 2.0.0-beta.86 → 2.0.0-beta.88

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": "@fmsim/fmsim",
3
- "version": "2.0.0-beta.86",
3
+ "version": "2.0.0-beta.88",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -40,8 +40,8 @@
40
40
  "docker:push": "docker image push hatiolab/fmsim:latest && docker image push hatiolab/fmsim:$npm_package_version"
41
41
  },
42
42
  "dependencies": {
43
- "@fmsim/layout-view": "^2.0.0-beta.86",
44
- "@fmsim/machine": "^2.0.0-beta.86",
43
+ "@fmsim/layout-view": "^2.0.0-beta.88",
44
+ "@fmsim/machine": "^2.0.0-beta.88",
45
45
  "@operato/attachment": "^10.0.0-beta.1",
46
46
  "@operato/font": "^10.0.0-beta.1",
47
47
  "@operato/i18n": "^10.0.0-beta.1",
@@ -78,5 +78,5 @@
78
78
  "resolutions": {
79
79
  "lit": "^3.0.0"
80
80
  },
81
- "gitHead": "2e7fe85f5e286c28c9fb3b5c095a23c8c150b41d"
81
+ "gitHead": "a85bfc6794b783dd619448e2cc07cca8eafbb467"
82
82
  }
package/schema.graphql CHANGED
@@ -1019,6 +1019,11 @@ type Connection {
1019
1019
  """Unique identifier for the connection."""
1020
1020
  id: ID!
1021
1021
 
1022
+ """
1023
+ Inheritance mode for child domains. ISOLATE = per-child instance with isolated session. SHARE = shared parent instance. null = use Connector default (falls back to ISOLATE).
1024
+ """
1025
+ inheritanceMode: ConnectionInheritanceMode
1026
+
1022
1027
  """The name of the connection."""
1023
1028
  name: String!
1024
1029
 
@@ -1043,6 +1048,14 @@ type Connection {
1043
1048
  updater: User
1044
1049
  }
1045
1050
 
1051
+ """
1052
+ Child domain inheritance mode — ISOLATE: per-child instance with isolated session/credentials. SHARE: single parent instance reused by all children.
1053
+ """
1054
+ enum ConnectionInheritanceMode {
1055
+ ISOLATE
1056
+ SHARE
1057
+ }
1058
+
1046
1059
  """A paginated list of connections."""
1047
1060
  type ConnectionList {
1048
1061
  """The list of connection items."""
@@ -1074,6 +1087,11 @@ input ConnectionPatch {
1074
1087
  """The unique identifier of the connection to update."""
1075
1088
  id: ID
1076
1089
 
1090
+ """
1091
+ Inheritance mode for child domains. ISOLATE = per-child instance. SHARE = shared parent instance. null = use connector default.
1092
+ """
1093
+ inheritanceMode: ConnectionInheritanceMode
1094
+
1077
1095
  """The new name for the connection."""
1078
1096
  name: String
1079
1097
 
@@ -1103,6 +1121,11 @@ type ConnectionState {
1103
1121
  """The unique identifier of the connection."""
1104
1122
  id: String
1105
1123
 
1124
+ """
1125
+ Inheritance mode for child domains. ISOLATE = per-child instance. SHARE = shared parent instance. null = use connector default (falls back to ISOLATE).
1126
+ """
1127
+ inheritanceMode: ConnectionInheritanceMode
1128
+
1106
1129
  """The name of the connection."""
1107
1130
  name: String
1108
1131
 
@@ -1837,6 +1860,22 @@ input EnvVarPatch {
1837
1860
  value: String
1838
1861
  }
1839
1862
 
1863
+ """Resolved state of an EnvVar key with ancestor closest-wins lookup."""
1864
+ type EnvVarResolution {
1865
+ """EnvVar id (only when found in any domain)."""
1866
+ envVarId: String
1867
+ hasValue: Boolean!
1868
+ key: String!
1869
+ sourceDomainId: String
1870
+ sourceDomainName: String
1871
+ status: String!
1872
+
1873
+ """
1874
+ Resolved value when found. Client decides masking based on propertySpec type.
1875
+ """
1876
+ value: String
1877
+ }
1878
+
1840
1879
  """Entity for Favorite"""
1841
1880
  type Favorite {
1842
1881
  createdAt: DateTimeISO
@@ -3554,6 +3593,11 @@ input NewConnection {
3554
3593
  """The endpoint URL or address for the new connection."""
3555
3594
  endpoint: String
3556
3595
 
3596
+ """
3597
+ Inheritance mode for child domains. ISOLATE = per-child instance. SHARE = shared parent instance. null = use connector default.
3598
+ """
3599
+ inheritanceMode: ConnectionInheritanceMode
3600
+
3557
3601
  """The name for the new connection."""
3558
3602
  name: String!
3559
3603
 
@@ -5280,6 +5324,11 @@ type Query {
5280
5324
  """To fetch a EntityMetadata"""
5281
5325
  entityMetadata(name: String!): EntityMetadata!
5282
5326
  envVar(id: String!): EnvVar
5327
+
5328
+ """
5329
+ Resolves a batch of EnvVar keys with ancestor closest-wins inheritance.
5330
+ """
5331
+ envVarResolutions(keys: [String!]!): [EnvVarResolution!]!
5283
5332
  envVars(
5284
5333
  """An array of filter conditions to apply to the list query."""
5285
5334
  filters: [Filter!]