@dssp/dssp 1.0.6 → 1.0.7

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 +3 -3
  2. package/schema.graphql +1192 -24
package/schema.graphql CHANGED
@@ -1182,6 +1182,11 @@ type Board {
1182
1182
  }
1183
1183
 
1184
1184
  input BoardAIChatInput {
1185
+ """
1186
+ Whether core board editing tools (addComponent / styling / scene actions) are available. Defaults to true. Set false for surfaces that must not modify the board — e.g. an operations chat where irreversible commands live, so reversible edits and irreversible actions never share one conversation.
1187
+ """
1188
+ boardTools: Boolean
1189
+
1185
1190
  """
1186
1191
  Component categories to surface (e.g. ["3D", "form"]). Subset filter for groupings exposed in component-schemas.
1187
1192
  """
@@ -1195,6 +1200,11 @@ input BoardAIChatInput {
1195
1200
  """Current BoardModel JSON."""
1196
1201
  currentBoard: JSON
1197
1202
 
1203
+ """
1204
+ Host context describing what this surface is looking at (e.g. { spaceId } for a space deliberation, { boardId } for board authoring). Tools read it as ctx.state.host so the model never has to ask the user for identifiers. Client-supplied — never used for authorization; tools verify the scope belongs to the caller tenant.
1205
+ """
1206
+ hostContext: JSON
1207
+
1198
1208
  """
1199
1209
  Component types the LLM is allowed to emit (e.g. ["rect", "label"]). Constrains generation to the current solution.
1200
1210
  """
@@ -1220,6 +1230,11 @@ input BoardAIChatInput {
1220
1230
  """
1221
1231
  model: String
1222
1232
 
1233
+ """
1234
+ Force a tool call on the first turn (toolChoice: required). Turn this on for surfaces that discuss live state: the grounding guard catches invented identifiers but not an invented situation stated without any, which only happens when the model answers without querying at all. Concept / how-to questions are unaffected — they are answered through a documentation tool.
1235
+ """
1236
+ requireGroundingTools: Boolean
1237
+
1223
1238
  """
1224
1239
  Capability scopes the AI is allowed to use (e.g. 'create', 'edit', 'style'). Filters which tools are exposed to the LLM.
1225
1240
  """
@@ -1239,6 +1254,16 @@ input BoardAIChatInput {
1239
1254
  Sampling temperature override. Falls back to assistant default when omitted.
1240
1255
  """
1241
1256
  temperature: Float
1257
+
1258
+ """
1259
+ Registered external tool categories this conversation may use (registerToolCategory names, e.g. ["twin", "board-import"]). Omit to allow every registered category. Applies to tool definitions AND execution, so a surface cannot call a category it was not granted.
1260
+ """
1261
+ toolCategories: [String!]
1262
+
1263
+ """
1264
+ Id of the last message to keep from the stored history. The client keeps its own truncation when a user edits a message (the server history is intentionally preserved), so pass the last kept message id to hide the retracted span from the agent. Omit to use the whole stored history.
1265
+ """
1266
+ truncateAfterMessageId: String
1242
1267
  }
1243
1268
 
1244
1269
  type BoardAIChatOutput {
@@ -1256,12 +1281,27 @@ type BoardAIChatOutput {
1256
1281
  """Clarifying question when input is ambiguous."""
1257
1282
  followUp: String
1258
1283
 
1284
+ """
1285
+ Ungrounded identifiers mentioned by the reply — present in the answer but absent from everything the model received (prompt, board context, history, tool results). Hallucination candidates surfaced to the user; the reply itself is not altered. Null when the answer is grounded.
1286
+ """
1287
+ groundingWarnings: JSON
1288
+
1289
+ """
1290
+ Reported when the stored history exceeded the prompt cap for this turn: { omitted, summarized }. The surface uses it to tell the user the conversation grew long — a new conversation is better for a different topic. Objective fact only; no topic-change detection.
1291
+ """
1292
+ historyFolded: JSON
1293
+
1259
1294
  """BoardEditPatch."""
1260
1295
  patch: JSON
1261
1296
 
1262
1297
  """Persisted PatchEntry id (when patch was generated)."""
1263
1298
  patchId: String
1264
1299
 
1300
+ """
1301
+ Action proposals the AI recorded without executing — each carries what a tool returned alongside `proposed: true`. The surface renders a confirm button; execution is the user's act, never the assistant's. Null when nothing was proposed.
1302
+ """
1303
+ proposals: JSON
1304
+
1265
1305
  """Conversational reply."""
1266
1306
  reply: String!
1267
1307
 
@@ -1295,6 +1335,21 @@ input BoardAIMentionPickInput {
1295
1335
  token: String!
1296
1336
  }
1297
1337
 
1338
+ """A single component difference between two board versions."""
1339
+ type BoardComponentDiff {
1340
+ """The kind of change: 'added', 'removed', or 'modified'."""
1341
+ changeType: String!
1342
+
1343
+ """Names of the properties that changed (for modified components)."""
1344
+ changedProps: [String!]
1345
+
1346
+ """The refid of the component (identity used for diffing)."""
1347
+ refid: Int
1348
+
1349
+ """The component type (e.g. rect, text, table)."""
1350
+ type: String
1351
+ }
1352
+
1298
1353
  """Represents a board that a user has marked as a favorite."""
1299
1354
  type BoardFavorite {
1300
1355
  """The timestamp when the board was created."""
@@ -1380,6 +1435,9 @@ type BoardHistory {
1380
1435
  """
1381
1436
  action: String!
1382
1437
 
1438
+ """The release note/comment left when this version was published."""
1439
+ comment: String
1440
+
1383
1441
  """The creation timestamp of the original board."""
1384
1442
  createdAt: DateTimeISO
1385
1443
 
@@ -1555,6 +1613,31 @@ input BoardTemplatePatch {
1555
1613
  visibility: String
1556
1614
  }
1557
1615
 
1616
+ """
1617
+ The difference between two board versions (or a version and the current draft).
1618
+ """
1619
+ type BoardVersionDiff {
1620
+ """Number of components added."""
1621
+ addedCount: Int!
1622
+
1623
+ """Component-level changes."""
1624
+ componentDiffs: [BoardComponentDiff!]!
1625
+
1626
+ """The base version number being compared from."""
1627
+ fromVersion: Int!
1628
+
1629
+ """Number of components modified."""
1630
+ modifiedCount: Int!
1631
+
1632
+ """Number of components removed."""
1633
+ removedCount: Int!
1634
+
1635
+ """
1636
+ The target version number being compared to. Null means the current draft.
1637
+ """
1638
+ toVersion: Int
1639
+ }
1640
+
1558
1641
  """동 정보"""
1559
1642
  type Building {
1560
1643
  basementFloorCount: Float
@@ -1864,6 +1947,11 @@ type ChatMessage {
1864
1947
 
1865
1948
  """Soft delete timestamp."""
1866
1949
  deletedAt: DateTimeISO
1950
+
1951
+ """
1952
+ Ungrounded identifiers mentioned by this reply (hallucination candidates). Null when grounded.
1953
+ """
1954
+ groundingWarningsJson: JSON
1867
1955
  id: ID
1868
1956
 
1869
1957
  """
@@ -1896,8 +1984,16 @@ type ChatMessage {
1896
1984
  type ChatSession {
1897
1985
  aiClientId: String
1898
1986
 
1987
+ """Id of the anchored target (board id / space id / instance id)."""
1988
+ anchorId: String
1989
+
1990
+ """
1991
+ What this conversation is anchored to: 'board' (authoring a board) | 'space' (a site and the twins running there) | 'instance' | 'none'. Absent on legacy rows — treated as 'board' when boardId is present.
1992
+ """
1993
+ anchorType: String
1994
+
1899
1995
  """
1900
- Connected Board id. Multiple sessions per board allowed (future: threads / per-user / contexts).
1996
+ Connected Board id. Multiple sessions per board allowed (future: threads / per-user / contexts). Kept for backward compatibility — board-anchored sessions dual-write this alongside anchorId.
1901
1997
  """
1902
1998
  boardId: String
1903
1999
  createdAt: DateTimeISO
@@ -1907,17 +2003,81 @@ type ChatSession {
1907
2003
  domain: Domain
1908
2004
  id: ID
1909
2005
 
2006
+ """
2007
+ Timestamp of the last message in this session (denormalized for list ordering and unread comparison — avoids per-session aggregation across the supported DB drivers).
2008
+ """
2009
+ lastMessageAt: DateTimeISO
2010
+
2011
+ """
2012
+ Short preview of the last message, stored so the session list does not need to query messages.
2013
+ """
2014
+ lastMessagePreview: String
2015
+
1910
2016
  """Compressed summary of older messages (for token saving)."""
1911
2017
  lastSummary: String
1912
2018
 
1913
2019
  """User-given name of this session (tab label / identification)."""
1914
2020
  name: String
2021
+
2022
+ """
2023
+ Id of the last message folded into lastSummary — enables incremental summarization instead of re-reading the whole history.
2024
+ """
2025
+ summaryUpToMessageId: String
1915
2026
  updatedAt: DateTimeISO
1916
2027
 
1917
2028
  """User who last updated this session."""
1918
2029
  updater: User
1919
2030
  }
1920
2031
 
2032
+ """
2033
+ Session list entry for the inbox — a session plus this viewer's unread state. Ordered by recent activity so a user can find where to go back to.
2034
+ """
2035
+ type ChatSessionInboxEntry {
2036
+ """Id of the anchored target."""
2037
+ anchorId: String
2038
+
2039
+ """
2040
+ What the session is anchored to: 'board' | 'space' | 'instance' | 'none'.
2041
+ """
2042
+ anchorType: String
2043
+
2044
+ """Connected board id (board-anchored sessions)."""
2045
+ boardId: String
2046
+
2047
+ """Session creation timestamp."""
2048
+ createdAt: DateTimeISO
2049
+
2050
+ """
2051
+ Whether this viewer hid the session from their own list (only returned when showHidden is on).
2052
+ """
2053
+ hidden: Boolean
2054
+
2055
+ """Session id."""
2056
+ id: ID
2057
+
2058
+ """Timestamp of the last message (list ordering / unread comparison)."""
2059
+ lastMessageAt: DateTimeISO
2060
+
2061
+ """Short preview of the last message."""
2062
+ lastMessagePreview: String
2063
+
2064
+ """
2065
+ Whether this viewer created the session — only the creator may delete it.
2066
+ """
2067
+ mine: Boolean!
2068
+
2069
+ """User-given session name (tab label)."""
2070
+ name: String
2071
+
2072
+ """
2073
+ Whether this viewer is a participant of the session (non-participants get no unread state).
2074
+ """
2075
+ participant: Boolean!
2076
+
2077
+ """Whether this viewer has unread activity in the session."""
2078
+ unread: Boolean!
2079
+ }
2080
+
1921
2081
  """
1922
2082
  Participant of a ChatSession — links a User to a session with a role. Foundation for multi-user chat / per-user filtering / member display.
1923
2083
  """
@@ -1936,9 +2096,19 @@ type ChatSessionParticipant {
1936
2096
  """Domain to which this participant belongs."""
1937
2097
  domain: Domain
1938
2098
 
2099
+ """
2100
+ When this user hid the session from their own list. Per-user only; the session and other participants are unaffected. Activity newer than this timestamp makes it reappear.
2101
+ """
2102
+ hiddenAt: DateTimeISO
2103
+
1939
2104
  """Unique participant id."""
1940
2105
  id: ID!
1941
2106
 
2107
+ """
2108
+ Point up to which this participant has read the session. Distinct from lastSeenAt (presence): a window can be open without being read, and the read point survives disconnection. Null means nothing read yet.
2109
+ """
2110
+ lastReadAt: DateTimeISO
2111
+
1942
2112
  """Last seen / activity timestamp (presence indicator)."""
1943
2113
  lastSeenAt: DateTimeISO
1944
2114
 
@@ -2090,6 +2260,13 @@ type ChecklistItem {
2090
2260
  updater: User
2091
2261
  }
2092
2262
 
2263
+ input ChecklistItemAiJudgment {
2264
+ id: ID!
2265
+
2266
+ """AI 판정 결과 (T: 적합, F: 부적합, null: 미판정)"""
2267
+ supervisoryConfirmStatus: ChecklistItemConfirmStatus
2268
+ }
2269
+
2093
2270
  """Entity for ChecklistItemComment"""
2094
2271
  type ChecklistItemComment {
2095
2272
  checklistItem: ChecklistItem
@@ -2106,6 +2283,12 @@ input ChecklistItemCommentPatch {
2106
2283
  id: ID
2107
2284
  }
2108
2285
 
2286
+ """적합 상태"""
2287
+ enum ChecklistItemConfirmStatus {
2288
+ F
2289
+ T
2290
+ }
2291
+
2109
2292
  """History Entity of ChecklistItem"""
2110
2293
  type ChecklistItemHistory {
2111
2294
  checklistHistory: ChecklistHistory
@@ -2675,6 +2858,11 @@ type Data {
2675
2858
  The tag name attached to the data, used for filtering and identification.
2676
2859
  """
2677
2860
  tag: String!
2861
+
2862
+ """
2863
+ Server publish timestamp in epoch milliseconds, stamped at delivery. Used by clients to monitor data delivery lag.
2864
+ """
2865
+ ts: Float
2678
2866
  }
2679
2867
 
2680
2868
  """
@@ -3684,6 +3872,11 @@ type Department {
3684
3872
  """Pagination options for the list query."""
3685
3873
  pagination: Pagination
3686
3874
 
3875
+ """
3876
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
3877
+ """
3878
+ search: String
3879
+
3687
3880
  """Sorting options for the list query."""
3688
3881
  sortings: [Sorting!]
3689
3882
  ): [Department!]!
@@ -4992,12 +5185,18 @@ type KpiMetric {
4992
5185
  """Unique identifier for this KPI metric."""
4993
5186
  id: ID!
4994
5187
 
5188
+ """metric 확장 설정(input/kind/source 등). 입력 UI·소스 바인딩 등을 담는 네임스페이스."""
5189
+ meta: Object
5190
+
4995
5191
  """Metric code, unique within the domain, used in KPI formulas."""
4996
5192
  name: String!
4997
5193
 
4998
5194
  """Aggregation period type for this metric."""
4999
5195
  periodType: KpiPeriodType!
5000
5196
 
5197
+ """목록 표시 순서(오름차순). 미지정(null)은 뒤로 정렬."""
5198
+ rank: Int
5199
+
5001
5200
  """
5002
5201
  Cron schedule string for periodic KPI value aggregation (e.g., "0 0 * * *" for daily).
5003
5202
  """
@@ -5051,11 +5250,17 @@ input KpiMetricPatch {
5051
5250
  description: String
5052
5251
  fieldName: String
5053
5252
  id: ID
5253
+
5254
+ """확장 메타(JSON). 입력 위젯 힌트(meta.input) 등. 스키마 변경 없이 확장."""
5255
+ meta: Object
5054
5256
  name: String
5055
5257
 
5056
5258
  """Aggregation period type for this metric."""
5057
5259
  periodType: KpiPeriodType
5058
5260
 
5261
+ """목록 표시 순서(오름차순). 미지정(null)은 뒤로 정렬."""
5262
+ rank: Int
5263
+
5059
5264
  """
5060
5265
  Cron schedule string for periodic KPI value aggregation (e.g., "0 0 * * *" for daily).
5061
5266
  """
@@ -6267,6 +6472,16 @@ type Mutation {
6267
6472
  """Add a user as owner of the current domain."""
6268
6473
  addDomainOwner(reason: String, username: String!): DomainOwner!
6269
6474
 
6475
+ """
6476
+ Append a system note to a session — context that did not come from a participant typing (e.g. a conversation carried over from another surface, an external state change). The AI sees it as part of the shared history.
6477
+ """
6478
+ appendSessionNote(content: String!, sessionId: String!): Boolean!
6479
+
6480
+ """
6481
+ Carry a conversation from another surface into this session as its own turns (user / assistant), preserving order. Use when a lightweight exchange is promoted into a persistent discussion — the participants should read it as the conversation continuing, not as a machine dump.
6482
+ """
6483
+ appendSessionTurns(sessionId: String!, turns: JSON!): Boolean!
6484
+
6270
6485
  """To apply to all building inspection"""
6271
6486
  applyToAllBuildingInspection(buildingInspectionId: String!): Boolean!
6272
6487
 
@@ -6340,6 +6555,17 @@ type Mutation {
6340
6555
  """
6341
6556
  copyScenarios(ids: [String!]!): [Scenario!]!
6342
6557
 
6558
+ """
6559
+ Always create a new AI chat session anchored to a target (no idempotent reuse). For multi-session UX — 새 탭 열기.
6560
+ """
6561
+ createAISession(
6562
+ anchorId: String!
6563
+ anchorType: String!
6564
+
6565
+ """Optional name (defaults to auto-generated `세션 N`)."""
6566
+ name: String
6567
+ ): ChatSession!
6568
+
6343
6569
  """To create new ActionPlan"""
6344
6570
  createActionPlan(actionPlan: NewActionPlan!): ActionPlan!
6345
6571
 
@@ -6383,16 +6609,6 @@ type Mutation {
6383
6609
  """Create Daily Worklog by projectId+date"""
6384
6610
  createBuildingInspectionDailyWorklog(patch: BuildingInspectionDailyWorklogNew!): BuildingInspectionDailyWorklog!
6385
6611
 
6386
- """
6387
- Always create a new AI chat session for a board (no idempotent reuse). For multi-session UX — 새 탭 열기.
6388
- """
6389
- createChatSession(
6390
- boardId: String!
6391
-
6392
- """Optional name (defaults to auto-generated `세션 N`)."""
6393
- name: String
6394
- ): ChatSession!
6395
-
6396
6612
  """To create new ChecklistItemComment"""
6397
6613
  createChecklistItemComment(checklistItemComment: NewChecklistItemComment!): ChecklistItemComment!
6398
6614
 
@@ -6639,6 +6855,11 @@ type Mutation {
6639
6855
  """To delegate a ActivityThread"""
6640
6856
  delegateActivityThread(assignee: ObjectRef, dueAt: DateTimeISO, id: String!, reason: String): ActivityThread!
6641
6857
 
6858
+ """
6859
+ Delete a chat session — creator only, since a shared deliberation cannot be un-deleted from the UI. Participants who are not the creator can hide it from their own list instead (hideAISession). Soft delete; broadcast as meta activity so every list drops it.
6860
+ """
6861
+ deleteAISession(sessionId: String!): Boolean!
6862
+
6642
6863
  """To delete ActionPlan"""
6643
6864
  deleteActionPlan(id: String!): Boolean!
6644
6865
 
@@ -7054,6 +7275,9 @@ type Mutation {
7054
7275
  """To delete multiple ProjectReports"""
7055
7276
  deleteProjectReports(ids: [String!]!): Boolean!
7056
7277
 
7278
+ """비밀번호 확인 후 프로젝트 삭제 (수퍼유저 전용, 테넌트 강등 상태에서만)"""
7279
+ deleteProjectWithPassword(password: String!, projectId: String!): Boolean!
7280
+
7057
7281
  """To delete Resource"""
7058
7282
  deleteResource(id: String!): Boolean!
7059
7283
 
@@ -7198,6 +7422,11 @@ type Mutation {
7198
7422
  getOauth2AuthUrl(id: String!): String!
7199
7423
  grantRoles(customerId: String!, roles: [RolePatch!]!): Boolean!
7200
7424
 
7425
+ """
7426
+ Hide (or unhide) a session from the calling user's own list. Per-user and reversible — the session and other participants are unaffected. Activity newer than the hide makes it reappear; the inbox filter (showHidden) reveals hidden ones.
7427
+ """
7428
+ hideAISession(hidden: Boolean, sessionId: String!): Boolean!
7429
+
7201
7430
  """To import multiple ActionPlans"""
7202
7431
  importActionPlans(actionPlans: [ActionPlanPatch!]!): Boolean!
7203
7432
 
@@ -7368,6 +7597,11 @@ type Mutation {
7368
7597
  """Removes one or more boards from a play group."""
7369
7598
  leavePlayGroup(boardIds: [String!]!, id: String!): PlayGroup!
7370
7599
 
7600
+ """
7601
+ Mark a session as read up to now for the current user. Idempotent. Distinct from presence (lastSeenAt) — a window can be open without being read.
7602
+ """
7603
+ markSessionRead(sessionId: String!): Boolean!
7604
+
7371
7605
  """
7372
7606
  완료된 ImportSession 의 결과 boardModel 을 새 Board entity 로 영속화한다. 검수 단계 (사용자/AI 가 import 결과를 확인 후 명시적으로 호출) 에서 사용. Board.state="draft" 로 생성되므로 release mutation 으로 별도 발행 필요.
7373
7607
  """
@@ -7443,14 +7677,24 @@ type Mutation {
7443
7677
  rejectActivityApproval(comment: String, id: String!): ActivityApproval
7444
7678
 
7445
7679
  """Releases a board, making it public and creating a version history."""
7446
- releaseBoard(id: String!): Board!
7680
+ releaseBoard(comment: String, id: String!): Board!
7447
7681
 
7448
7682
  """Release a KPI and create a version history."""
7449
7683
  releaseKpi(id: String!): Kpi!
7450
7684
 
7685
+ """
7686
+ Releases (publishes) a scenario, creating an immutable version snapshot. Operational execution (schedule/auto-start) runs the latest released version.
7687
+ """
7688
+ releaseScenario(comment: String, id: String!): Scenario!
7689
+
7451
7690
  """Remove a user from the owners of the current domain."""
7452
7691
  removeDomainOwner(reason: String, username: String!): Boolean!
7453
7692
 
7693
+ """
7694
+ Rename a chat session. Any participant may rename it — the name is the topic label of a shared deliberation and the change is reversible. Broadcast as meta activity so every participant sees it without raising unread badges.
7695
+ """
7696
+ renameAISession(name: String!, sessionId: String!): Boolean!
7697
+
7454
7698
  """Rename a ChatSession (tab label)."""
7455
7699
  renameChatSession(name: String!, sessionId: String!): Boolean!
7456
7700
  renewApplicationAccessToken(id: String!, scope: String!): AccessToken!
@@ -7481,10 +7725,22 @@ type Mutation {
7481
7725
  """Mark a patch as reverted (does not undo, only flags)."""
7482
7726
  revertPatch(patchId: String!): Boolean!
7483
7727
 
7728
+ """
7729
+ Reverts a scenario to a released version by copying that version into the current draft. The past version remains as an archive; this does not create a new version.
7730
+ """
7731
+ revertScenarioVersion(id: String!, version: Int!): Scenario!
7732
+
7484
7733
  """
7485
7734
  Runs a new scenario instance once and returns the result after it finishes.
7486
7735
  """
7487
- runScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstanceRunResult!
7736
+ runScenario(
7737
+ instanceName: String
7738
+
7739
+ """Version to run: 'released' (default) or 'draft' (debugging)."""
7740
+ mode: String
7741
+ scenarioName: String!
7742
+ variables: Object
7743
+ ): ScenarioInstanceRunResult!
7488
7744
 
7489
7745
  """To approve ActivityApproval"""
7490
7746
  saveActivityApproval(comment: String, id: String!): ActivityApproval
@@ -7494,6 +7750,11 @@ type Mutation {
7494
7750
  sendInvitation(email: EmailAddress!, reference: String!, type: String!): Invitation!
7495
7751
  singleUpload(file: Upload!): Attachment!
7496
7752
 
7753
+ """
7754
+ Start (or get existing) AI chat session anchored to a target. Idempotent — returns first existing or creates one. Use anchorType board for board authoring, space for a site (its co-located twins).
7755
+ """
7756
+ startAISession(anchorId: String!, anchorType: String!): ChatSession!
7757
+
7497
7758
  """To start posting activity based on the schedule of the given activity"""
7498
7759
  startActivitySchedule(activityId: String!): Activity!
7499
7760
 
@@ -7501,7 +7762,7 @@ type Mutation {
7501
7762
  startActivityThread(id: String!, output: Object, reason: String): ActivityThread
7502
7763
 
7503
7764
  """
7504
- Start (or get existing) AI chat session for a board. Idempotent returns first existing or creates one.
7765
+ Start (or get existing) AI chat session for a board. Thin wrapper over startAISession(board).
7505
7766
  """
7506
7767
  startBoardAISession(boardId: String!): ChatSession!
7507
7768
 
@@ -7516,7 +7777,14 @@ type Mutation {
7516
7777
  startDataSummarySchedule(dataSetId: String!): DataSet!
7517
7778
 
7518
7779
  """Starts a new scenario instance, which will run in the background."""
7519
- startScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstanceStartResult!
7780
+ startScenario(
7781
+ instanceName: String
7782
+
7783
+ """Version to run: 'released' (default) or 'draft' (debugging)."""
7784
+ mode: String
7785
+ scenarioName: String!
7786
+ variables: Object
7787
+ ): ScenarioInstanceStartResult!
7520
7788
 
7521
7789
  """Starts the schedule for a specific scenario, if one is defined."""
7522
7790
  startScenarioSchedule(scenarioId: String!): Scenario!
@@ -7553,6 +7821,11 @@ type Mutation {
7553
7821
  """즐겨찾기 토글"""
7554
7822
  toggleFieldDocumentFavorite(id: String!): FieldDocument!
7555
7823
 
7824
+ """
7825
+ Presence heartbeat — bump current user's lastSeenAt in the session (online indicator).
7826
+ """
7827
+ touchPresence(sessionId: String!): Boolean!
7828
+
7556
7829
  """
7557
7830
  Transfers domain ownership to another user. Use this mutation to assign the owner role to a different user within the domain.
7558
7831
  """
@@ -7619,6 +7892,9 @@ type Mutation {
7619
7892
  """To modify ChecklistItemComment information"""
7620
7893
  updateChecklistItemComment(id: String!, patch: ChecklistItemCommentPatch!): ChecklistItemComment!
7621
7894
 
7895
+ """To update checklist items with AI inspection judgments"""
7896
+ updateChecklistItemsAiJudgment(items: [ChecklistItemAiJudgment!]!): Boolean!
7897
+
7622
7898
  """To modify CommonCode information"""
7623
7899
  updateCommonCode(name: String!, patch: CommonCodePatch!): CommonCode!
7624
7900
 
@@ -8623,6 +8899,8 @@ input NewFavorite {
8623
8899
  }
8624
8900
 
8625
8901
  input NewFieldDocument {
8902
+ """AI 브리핑 힌트용 분류 문자열 (대 · 중 · 소분류)"""
8903
+ category: String
8626
8904
  code: String!
8627
8905
  file: Upload
8628
8906
  name: String!
@@ -8743,12 +9021,18 @@ input NewKpiMetric {
8743
9021
  """Name of the field in the dataset this metric maps to."""
8744
9022
  fieldName: String
8745
9023
 
9024
+ """확장 메타(JSON). 입력 위젯 힌트(meta.input) 등. 스키마 변경 없이 확장."""
9025
+ meta: Object
9026
+
8746
9027
  """Metric code, unique within the domain, used in KPI formulas."""
8747
9028
  name: String!
8748
9029
 
8749
9030
  """Aggregation period type for this metric."""
8750
9031
  periodType: KpiPeriodType
8751
9032
 
9033
+ """목록 표시 순서(오름차순). 미지정(null)은 뒤로 정렬."""
9034
+ rank: Int
9035
+
8752
9036
  """
8753
9037
  Cron schedule string for periodic KPI value aggregation (e.g., "0 0 * * *" for daily).
8754
9038
  """
@@ -9781,6 +10065,11 @@ type PagePreferenceList {
9781
10065
 
9782
10066
  """Input type for specifying pagination options in a list query."""
9783
10067
  input Pagination {
10068
+ """
10069
+ Keyset cursor: return rows positioned after this one, per the current sorting. Prefer this over page for feeds that grow at the head (event journals, logs, newest-first lists) where offset paging silently duplicates or skips rows as new rows arrive. Opaque — pass back the nextCursor the previous response returned. Wins over page when both are given.
10070
+ """
10071
+ after: String
10072
+
9784
10073
  """The maximum number of items per page."""
9785
10074
  limit: Int
9786
10075
 
@@ -10100,6 +10389,11 @@ type Privilege {
10100
10389
  """The user who created the privilege."""
10101
10390
  creator: User
10102
10391
 
10392
+ """
10393
+ True when no module in this deployment declares this privilege anymore (@privilege directive). The bootstrap sync only adds rows, so a removed directive leaves a grantable row that does nothing. Computed per request — it answers for the asking deployment, not for all time.
10394
+ """
10395
+ deprecated: Boolean!
10396
+
10103
10397
  """A detailed description of what the privilege allows."""
10104
10398
  description: String
10105
10399
 
@@ -10426,6 +10720,11 @@ type Query {
10426
10720
  """Pagination options for the list query."""
10427
10721
  pagination: Pagination
10428
10722
 
10723
+ """
10724
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
10725
+ """
10726
+ search: String
10727
+
10429
10728
  """Sorting options for the list query."""
10430
10729
  sortings: [Sorting!]
10431
10730
  ): ActionPlanList!
@@ -10441,6 +10740,11 @@ type Query {
10441
10740
  """Pagination options for the list query."""
10442
10741
  pagination: Pagination
10443
10742
 
10743
+ """
10744
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
10745
+ """
10746
+ search: String
10747
+
10444
10748
  """Sorting options for the list query."""
10445
10749
  sortings: [Sorting!]
10446
10750
  ): ActivityList!
@@ -10462,6 +10766,11 @@ type Query {
10462
10766
  """Pagination options for the list query."""
10463
10767
  pagination: Pagination
10464
10768
 
10769
+ """
10770
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
10771
+ """
10772
+ search: String
10773
+
10465
10774
  """Sorting options for the list query."""
10466
10775
  sortings: [Sorting!]
10467
10776
  ): ActivityApprovalList!
@@ -10486,6 +10795,11 @@ type Query {
10486
10795
  """Pagination options for the list query."""
10487
10796
  pagination: Pagination
10488
10797
 
10798
+ """
10799
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
10800
+ """
10801
+ search: String
10802
+
10489
10803
  """Sorting options for the list query."""
10490
10804
  sortings: [Sorting!]
10491
10805
  ): ActivityInstanceHistoryList!
@@ -10504,6 +10818,11 @@ type Query {
10504
10818
  """Pagination options for the list query."""
10505
10819
  pagination: Pagination
10506
10820
 
10821
+ """
10822
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
10823
+ """
10824
+ search: String
10825
+
10507
10826
  """Sorting options for the list query."""
10508
10827
  sortings: [Sorting!]
10509
10828
  ): ActivityInstanceList!
@@ -10521,6 +10840,11 @@ type Query {
10521
10840
  """Pagination options for the list query."""
10522
10841
  pagination: Pagination
10523
10842
 
10843
+ """
10844
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
10845
+ """
10846
+ search: String
10847
+
10524
10848
  """Sorting options for the list query."""
10525
10849
  sortings: [Sorting!]
10526
10850
  ): ActivityInstanceList!
@@ -10536,6 +10860,11 @@ type Query {
10536
10860
  """Pagination options for the list query."""
10537
10861
  pagination: Pagination
10538
10862
 
10863
+ """
10864
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
10865
+ """
10866
+ search: String
10867
+
10539
10868
  """Sorting options for the list query."""
10540
10869
  sortings: [Sorting!]
10541
10870
  ): ActivityInstanceList!
@@ -10557,6 +10886,11 @@ type Query {
10557
10886
  """Pagination options for the list query."""
10558
10887
  pagination: Pagination
10559
10888
 
10889
+ """
10890
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
10891
+ """
10892
+ search: String
10893
+
10560
10894
  """Sorting options for the list query."""
10561
10895
  sortings: [Sorting!]
10562
10896
  ): ActivityTemplateList!
@@ -10575,6 +10909,11 @@ type Query {
10575
10909
  """Pagination options for the list query."""
10576
10910
  pagination: Pagination
10577
10911
 
10912
+ """
10913
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
10914
+ """
10915
+ search: String
10916
+
10578
10917
  """Sorting options for the list query."""
10579
10918
  sortings: [Sorting!]
10580
10919
  ): ActivityThreadList!
@@ -10589,6 +10928,11 @@ type Query {
10589
10928
  """Pagination options for the list query."""
10590
10929
  pagination: Pagination
10591
10930
 
10931
+ """
10932
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
10933
+ """
10934
+ search: String
10935
+
10592
10936
  """Sorting options for the list query."""
10593
10937
  sortings: [Sorting!]
10594
10938
  ): AppBindingList!
@@ -10607,6 +10951,11 @@ type Query {
10607
10951
  """Pagination options for the list query."""
10608
10952
  pagination: Pagination
10609
10953
 
10954
+ """
10955
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
10956
+ """
10957
+ search: String
10958
+
10610
10959
  """Sorting options for the list query."""
10611
10960
  sortings: [Sorting!]
10612
10961
  ): ApplianceList!
@@ -10625,6 +10974,11 @@ type Query {
10625
10974
  """Pagination options for the list query."""
10626
10975
  pagination: Pagination
10627
10976
 
10977
+ """
10978
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
10979
+ """
10980
+ search: String
10981
+
10628
10982
  """Sorting options for the list query."""
10629
10983
  sortings: [Sorting!]
10630
10984
  ): ApplicationList!
@@ -10640,6 +10994,11 @@ type Query {
10640
10994
  """Pagination options for the list query."""
10641
10995
  pagination: Pagination
10642
10996
 
10997
+ """
10998
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
10999
+ """
11000
+ search: String
11001
+
10643
11002
  """Sorting options for the list query."""
10644
11003
  sortings: [Sorting!]
10645
11004
  ): ActivityApprovalList!
@@ -10658,6 +11017,11 @@ type Query {
10658
11017
  """Pagination options for the list query."""
10659
11018
  pagination: Pagination
10660
11019
 
11020
+ """
11021
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11022
+ """
11023
+ search: String
11024
+
10661
11025
  """Sorting options for the list query."""
10662
11026
  sortings: [Sorting!]
10663
11027
  ): ApprovalLineList!
@@ -10673,6 +11037,11 @@ type Query {
10673
11037
  """Pagination options for the list query."""
10674
11038
  pagination: Pagination
10675
11039
 
11040
+ """
11041
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11042
+ """
11043
+ search: String
11044
+
10676
11045
  """Sorting options for the list query."""
10677
11046
  sortings: [Sorting!]
10678
11047
  ): ApprovalLineList!
@@ -10688,6 +11057,11 @@ type Query {
10688
11057
  """Pagination options for the list query."""
10689
11058
  pagination: Pagination
10690
11059
 
11060
+ """
11061
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11062
+ """
11063
+ search: String
11064
+
10691
11065
  """Sorting options for the list query."""
10692
11066
  sortings: [Sorting!]
10693
11067
  ): ActivityApprovalList!
@@ -10702,6 +11076,11 @@ type Query {
10702
11076
  """Pagination options for the list query."""
10703
11077
  pagination: Pagination
10704
11078
 
11079
+ """
11080
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11081
+ """
11082
+ search: String
11083
+
10705
11084
  """Sorting options for the list query."""
10706
11085
  sortings: [Sorting!]
10707
11086
  ): AttachmentList!
@@ -10735,6 +11114,11 @@ type Query {
10735
11114
  """Pagination options for the list query."""
10736
11115
  pagination: Pagination
10737
11116
 
11117
+ """
11118
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11119
+ """
11120
+ search: String
11121
+
10738
11122
  """Sorting options for the list query."""
10739
11123
  sortings: [Sorting!]
10740
11124
  ): AttributeSetList!
@@ -10756,6 +11140,11 @@ type Query {
10756
11140
  """Pagination options for the list query."""
10757
11141
  pagination: Pagination
10758
11142
 
11143
+ """
11144
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11145
+ """
11146
+ search: String
11147
+
10759
11148
  """Sorting options for the list query."""
10760
11149
  sortings: [Sorting!]
10761
11150
  ): AuthProviderList!
@@ -10792,6 +11181,11 @@ type Query {
10792
11181
  """Pagination options for the list query."""
10793
11182
  pagination: Pagination
10794
11183
 
11184
+ """
11185
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11186
+ """
11187
+ search: String
11188
+
10795
11189
  """Sorting options for the list query."""
10796
11190
  sortings: [Sorting!]
10797
11191
  ): BoardTemplateList!
@@ -10807,10 +11201,20 @@ type Query {
10807
11201
  """Pagination options for the list query."""
10808
11202
  pagination: Pagination
10809
11203
 
11204
+ """
11205
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11206
+ """
11207
+ search: String
11208
+
10810
11209
  """Sorting options for the list query."""
10811
11210
  sortings: [Sorting!]
10812
11211
  ): BoardTemplateList!
10813
11212
 
11213
+ """
11214
+ Computes the component-level difference between a board version and another version or the current draft. Omit toVersion to diff the base version against the current draft.
11215
+ """
11216
+ boardVersionDiff(id: String!, toVersion: Int, version: Int!): BoardVersionDiff!
11217
+
10814
11218
  """Retrieves up to 10 historical versions of a specific board."""
10815
11219
  boardVersions(id: String!): [BoardHistory!]!
10816
11220
 
@@ -10825,6 +11229,11 @@ type Query {
10825
11229
  """Pagination options for the list query."""
10826
11230
  pagination: Pagination
10827
11231
 
11232
+ """
11233
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11234
+ """
11235
+ search: String
11236
+
10828
11237
  """Sorting options for the list query."""
10829
11238
  sortings: [Sorting!]
10830
11239
  ): BoardList!
@@ -10840,6 +11249,11 @@ type Query {
10840
11249
  """Pagination options for the list query."""
10841
11250
  pagination: Pagination
10842
11251
 
11252
+ """
11253
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11254
+ """
11255
+ search: String
11256
+
10843
11257
  """Sorting options for the list query."""
10844
11258
  sortings: [Sorting!]
10845
11259
  ): BoardList!
@@ -10879,6 +11293,11 @@ type Query {
10879
11293
  """Pagination options for the list query."""
10880
11294
  pagination: Pagination
10881
11295
 
11296
+ """
11297
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11298
+ """
11299
+ search: String
11300
+
10882
11301
  """Sorting options for the list query."""
10883
11302
  sortings: [Sorting!]
10884
11303
  ): BuildingInspectionHistoryList!
@@ -10906,6 +11325,11 @@ type Query {
10906
11325
  """Pagination options for the list query."""
10907
11326
  pagination: Pagination
10908
11327
 
11328
+ """
11329
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11330
+ """
11331
+ search: String
11332
+
10909
11333
  """Sorting options for the list query."""
10910
11334
  sortings: [Sorting!]
10911
11335
  ): BuildingInspectionList!
@@ -10936,16 +11360,31 @@ type Query {
10936
11360
  """
10937
11361
  chatSessionByBoard(boardId: String!): ChatSession
10938
11362
 
10939
- """List participants of a ChatSession (members / owner)."""
10940
- chatSessionParticipants(sessionId: String!): [ChatSessionParticipant!]!
10941
-
10942
11363
  """
10943
- List all AI chat sessions for a board (oldest first). Multi-session supportUI 탭으로 표시.
11364
+ List sessions anchored to a target with this viewer's unread state, most recent activity first. Supports free-text search over name and last preview, a mine-only filter, hidden inclusion, and paging. Uses the denormalized last-activity timestamp compared against the viewer's read point no per-session aggregation.
10944
11365
  """
10945
- chatSessionsByBoard(boardId: String!): [ChatSession!]!
11366
+ chatSessionInbox(anchorId: String!, anchorType: String!, limit: Int, mineOnly: Boolean, offset: Int, search: String, showHidden: Boolean): [ChatSessionInboxEntry!]!
10946
11367
 
10947
11368
  """
10948
- Checks if the system is configured to provide a default password for new users.
11369
+ Total number of sessions matching the same filters as chatSessionInbox (before paging). Request it alongside the list so the UI can tell "end of page" from "end of data".
11370
+ """
11371
+ chatSessionInboxTotal(anchorId: String!, anchorType: String!, mineOnly: Boolean, search: String, showHidden: Boolean): Int!
11372
+
11373
+ """List participants of a ChatSession (members / owner)."""
11374
+ chatSessionParticipants(sessionId: String!): [ChatSessionParticipant!]!
11375
+
11376
+ """
11377
+ List AI chat sessions anchored to a target (oldest first). Anchor decides the nature and the history boundary of the conversation: board = authoring, space = the site and the twins running there. Board anchor also matches legacy rows that only have boardId.
11378
+ """
11379
+ chatSessionsByAnchor(anchorId: String!, anchorType: String!): [ChatSession!]!
11380
+
11381
+ """
11382
+ List all AI chat sessions for a board (oldest first). Thin wrapper over chatSessionsByAnchor(board).
11383
+ """
11384
+ chatSessionsByBoard(boardId: String!): [ChatSession!]!
11385
+
11386
+ """
11387
+ Checks if the system is configured to provide a default password for new users.
10949
11388
  """
10950
11389
  checkDefaultPassword: Boolean!
10951
11390
 
@@ -10982,6 +11421,11 @@ type Query {
10982
11421
  """Pagination options for the list query."""
10983
11422
  pagination: Pagination
10984
11423
 
11424
+ """
11425
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11426
+ """
11427
+ search: String
11428
+
10985
11429
  """Sorting options for the list query."""
10986
11430
  sortings: [Sorting!]
10987
11431
  ): ChecklistHistoryList!
@@ -11006,6 +11450,11 @@ type Query {
11006
11450
  """Pagination options for the list query."""
11007
11451
  pagination: Pagination
11008
11452
 
11453
+ """
11454
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11455
+ """
11456
+ search: String
11457
+
11009
11458
  """Sorting options for the list query."""
11010
11459
  sortings: [Sorting!]
11011
11460
  ): ChecklistItemHistoryList!
@@ -11024,6 +11473,11 @@ type Query {
11024
11473
  """Pagination options for the list query."""
11025
11474
  pagination: Pagination
11026
11475
 
11476
+ """
11477
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11478
+ """
11479
+ search: String
11480
+
11027
11481
  """Sorting options for the list query."""
11028
11482
  sortings: [Sorting!]
11029
11483
  ): ChecklistItemList!
@@ -11042,6 +11496,11 @@ type Query {
11042
11496
  """Pagination options for the list query."""
11043
11497
  pagination: Pagination
11044
11498
 
11499
+ """
11500
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11501
+ """
11502
+ search: String
11503
+
11045
11504
  """Sorting options for the list query."""
11046
11505
  sortings: [Sorting!]
11047
11506
  ): ChecklistTemplateItemList!
@@ -11057,6 +11516,11 @@ type Query {
11057
11516
  """Pagination options for the list query."""
11058
11517
  pagination: Pagination
11059
11518
 
11519
+ """
11520
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11521
+ """
11522
+ search: String
11523
+
11060
11524
  """Sorting options for the list query."""
11061
11525
  sortings: [Sorting!]
11062
11526
  ): ChecklistTemplateList!
@@ -11072,6 +11536,11 @@ type Query {
11072
11536
  """Pagination options for the list query."""
11073
11537
  pagination: Pagination
11074
11538
 
11539
+ """
11540
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11541
+ """
11542
+ search: String
11543
+
11075
11544
  """Sorting options for the list query."""
11076
11545
  sortings: [Sorting!]
11077
11546
  ): ChecklistTypeList!
@@ -11087,6 +11556,11 @@ type Query {
11087
11556
  """Pagination options for the list query."""
11088
11557
  pagination: Pagination
11089
11558
 
11559
+ """
11560
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11561
+ """
11562
+ search: String
11563
+
11090
11564
  """Sorting options for the list query."""
11091
11565
  sortings: [Sorting!]
11092
11566
  ): ChecklistList!
@@ -11102,6 +11576,11 @@ type Query {
11102
11576
  """Pagination options for the list query."""
11103
11577
  pagination: Pagination
11104
11578
 
11579
+ """
11580
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11581
+ """
11582
+ search: String
11583
+
11105
11584
  """Sorting options for the list query."""
11106
11585
  sortings: [Sorting!]
11107
11586
  ): ApprovalLineList!
@@ -11123,6 +11602,11 @@ type Query {
11123
11602
  """Pagination options for the list query."""
11124
11603
  pagination: Pagination
11125
11604
 
11605
+ """
11606
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11607
+ """
11608
+ search: String
11609
+
11126
11610
  """Sorting options for the list query."""
11127
11611
  sortings: [Sorting!]
11128
11612
  ): CommonCodeDetailList!
@@ -11138,6 +11622,11 @@ type Query {
11138
11622
  """Pagination options for the list query."""
11139
11623
  pagination: Pagination
11140
11624
 
11625
+ """
11626
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11627
+ """
11628
+ search: String
11629
+
11141
11630
  """Sorting options for the list query."""
11142
11631
  sortings: [Sorting!]
11143
11632
  ): CommonCodeList!
@@ -11158,6 +11647,11 @@ type Query {
11158
11647
  """Pagination options for the list query."""
11159
11648
  pagination: Pagination
11160
11649
 
11650
+ """
11651
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11652
+ """
11653
+ search: String
11654
+
11161
11655
  """Sorting options for the list query."""
11162
11656
  sortings: [Sorting!]
11163
11657
  ): ConnectionList!
@@ -11182,6 +11676,11 @@ type Query {
11182
11676
  """Pagination options for the list query."""
11183
11677
  pagination: Pagination
11184
11678
 
11679
+ """
11680
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11681
+ """
11682
+ search: String
11683
+
11185
11684
  """Sorting options for the list query."""
11186
11685
  sortings: [Sorting!]
11187
11686
  ): ConstructionChecklistTemplateItemList!
@@ -11197,6 +11696,11 @@ type Query {
11197
11696
  """Pagination options for the list query."""
11198
11697
  pagination: Pagination
11199
11698
 
11699
+ """
11700
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11701
+ """
11702
+ search: String
11703
+
11200
11704
  """Sorting options for the list query."""
11201
11705
  sortings: [Sorting!]
11202
11706
  ): ConstructionChecklistTemplateList!
@@ -11212,6 +11716,11 @@ type Query {
11212
11716
  """Pagination options for the list query."""
11213
11717
  pagination: Pagination
11214
11718
 
11719
+ """
11720
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11721
+ """
11722
+ search: String
11723
+
11215
11724
  """Sorting options for the list query."""
11216
11725
  sortings: [Sorting!]
11217
11726
  ): ConstructionDetailTypeList!
@@ -11230,6 +11739,11 @@ type Query {
11230
11739
  """Pagination options for the list query."""
11231
11740
  pagination: Pagination
11232
11741
 
11742
+ """
11743
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11744
+ """
11745
+ search: String
11746
+
11233
11747
  """Sorting options for the list query."""
11234
11748
  sortings: [Sorting!]
11235
11749
  ): ConstructionTypeList!
@@ -11248,6 +11762,11 @@ type Query {
11248
11762
  """Pagination options for the list query."""
11249
11763
  pagination: Pagination
11250
11764
 
11765
+ """
11766
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11767
+ """
11768
+ search: String
11769
+
11251
11770
  """Sorting options for the list query."""
11252
11771
  sortings: [Sorting!]
11253
11772
  ): ContactList!
@@ -11281,6 +11800,11 @@ type Query {
11281
11800
  """Pagination options for the list query."""
11282
11801
  pagination: Pagination
11283
11802
 
11803
+ """
11804
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11805
+ """
11806
+ search: String
11807
+
11284
11808
  """Sorting options for the list query."""
11285
11809
  sortings: [Sorting!]
11286
11810
  ): DataArchiveList!
@@ -11303,6 +11827,11 @@ type Query {
11303
11827
  """Pagination options for the list query."""
11304
11828
  pagination: Pagination
11305
11829
 
11830
+ """
11831
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11832
+ """
11833
+ search: String
11834
+
11306
11835
  """Sorting options for the list query."""
11307
11836
  sortings: [Sorting!]
11308
11837
  ): DataKeySetList!
@@ -11325,6 +11854,11 @@ type Query {
11325
11854
  """Pagination options for the list query."""
11326
11855
  pagination: Pagination
11327
11856
 
11857
+ """
11858
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11859
+ """
11860
+ search: String
11861
+
11328
11862
  """Sorting options for the list query."""
11329
11863
  sortings: [Sorting!]
11330
11864
  ): DataOocList!
@@ -11347,6 +11881,11 @@ type Query {
11347
11881
  """Pagination options for the list query."""
11348
11882
  pagination: Pagination
11349
11883
 
11884
+ """
11885
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11886
+ """
11887
+ search: String
11888
+
11350
11889
  """Sorting options for the list query."""
11351
11890
  sortings: [Sorting!]
11352
11891
  ): DataSampleList!
@@ -11366,6 +11905,11 @@ type Query {
11366
11905
  """Pagination options for the list query."""
11367
11906
  pagination: Pagination
11368
11907
 
11908
+ """
11909
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11910
+ """
11911
+ search: String
11912
+
11369
11913
  """Sorting options for the list query."""
11370
11914
  sortings: [Sorting!]
11371
11915
  ): DataSampleList!
@@ -11385,6 +11929,11 @@ type Query {
11385
11929
  """Pagination options for the list query."""
11386
11930
  pagination: Pagination
11387
11931
 
11932
+ """
11933
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11934
+ """
11935
+ search: String
11936
+
11388
11937
  """Sorting options for the list query."""
11389
11938
  sortings: [Sorting!]
11390
11939
  ): DataSampleList!
@@ -11405,6 +11954,11 @@ type Query {
11405
11954
  pagination: Pagination
11406
11955
  period: String!
11407
11956
 
11957
+ """
11958
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11959
+ """
11960
+ search: String
11961
+
11408
11962
  """Sorting options for the list query."""
11409
11963
  sortings: [Sorting!]
11410
11964
  ): DataSampleList!
@@ -11427,6 +11981,11 @@ type Query {
11427
11981
  """Pagination options for the list query."""
11428
11982
  pagination: Pagination
11429
11983
 
11984
+ """
11985
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
11986
+ """
11987
+ search: String
11988
+
11430
11989
  """Sorting options for the list query."""
11431
11990
  sortings: [Sorting!]
11432
11991
  ): DataSensorList!
@@ -11452,6 +12011,11 @@ type Query {
11452
12011
  """Pagination options for the list query."""
11453
12012
  pagination: Pagination
11454
12013
 
12014
+ """
12015
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12016
+ """
12017
+ search: String
12018
+
11455
12019
  """Sorting options for the list query."""
11456
12020
  sortings: [Sorting!]
11457
12021
  ): DataSetHistoryList!
@@ -11472,6 +12036,11 @@ type Query {
11472
12036
  """Pagination options for the list query."""
11473
12037
  pagination: Pagination
11474
12038
 
12039
+ """
12040
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12041
+ """
12042
+ search: String
12043
+
11475
12044
  """Sorting options for the list query."""
11476
12045
  sortings: [Sorting!]
11477
12046
  ): DataSetList!
@@ -11489,6 +12058,11 @@ type Query {
11489
12058
  """Pagination options for the list query."""
11490
12059
  pagination: Pagination
11491
12060
 
12061
+ """
12062
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12063
+ """
12064
+ search: String
12065
+
11492
12066
  """Sorting options for the list query."""
11493
12067
  sortings: [Sorting!]
11494
12068
  ): DataSetList!
@@ -11506,6 +12080,11 @@ type Query {
11506
12080
  """Pagination options for the list query."""
11507
12081
  pagination: Pagination
11508
12082
 
12083
+ """
12084
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12085
+ """
12086
+ search: String
12087
+
11509
12088
  """Sorting options for the list query."""
11510
12089
  sortings: [Sorting!]
11511
12090
  ): DataSetList!
@@ -11529,6 +12108,11 @@ type Query {
11529
12108
  """Pagination options for the list query."""
11530
12109
  pagination: Pagination
11531
12110
 
12111
+ """
12112
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12113
+ """
12114
+ search: String
12115
+
11532
12116
  """Sorting options for the list query."""
11533
12117
  sortings: [Sorting!]
11534
12118
  ): DataSummaryList!
@@ -11548,6 +12132,11 @@ type Query {
11548
12132
  """Pagination options for the list query."""
11549
12133
  pagination: Pagination
11550
12134
 
12135
+ """
12136
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12137
+ """
12138
+ search: String
12139
+
11551
12140
  """Sorting options for the list query."""
11552
12141
  sortings: [Sorting!]
11553
12142
  ): DataSummaryList!
@@ -11567,6 +12156,11 @@ type Query {
11567
12156
  """Pagination options for the list query."""
11568
12157
  pagination: Pagination
11569
12158
 
12159
+ """
12160
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12161
+ """
12162
+ search: String
12163
+
11570
12164
  """Sorting options for the list query."""
11571
12165
  sortings: [Sorting!]
11572
12166
  ): DataSummaryList!
@@ -11586,6 +12180,11 @@ type Query {
11586
12180
  """Pagination options for the list query."""
11587
12181
  pagination: Pagination
11588
12182
 
12183
+ """
12184
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12185
+ """
12186
+ search: String
12187
+
11589
12188
  """Sorting options for the list query."""
11590
12189
  sortings: [Sorting!]
11591
12190
  ): DataSummaryList!
@@ -11612,6 +12211,11 @@ type Query {
11612
12211
  pagination: Pagination
11613
12212
  period: String!
11614
12213
 
12214
+ """
12215
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12216
+ """
12217
+ search: String
12218
+
11615
12219
  """Sorting options for the list query."""
11616
12220
  sortings: [Sorting!]
11617
12221
  ): [DynamicDataSummary!]!
@@ -11630,6 +12234,11 @@ type Query {
11630
12234
  """Pagination options for the list query."""
11631
12235
  pagination: Pagination
11632
12236
 
12237
+ """
12238
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12239
+ """
12240
+ search: String
12241
+
11633
12242
  """Sorting options for the list query."""
11634
12243
  sortings: [Sorting!]
11635
12244
  ): DepartmentList
@@ -11645,6 +12254,11 @@ type Query {
11645
12254
  """Pagination options for the list query."""
11646
12255
  pagination: Pagination
11647
12256
 
12257
+ """
12258
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12259
+ """
12260
+ search: String
12261
+
11648
12262
  """Sorting options for the list query."""
11649
12263
  sortings: [Sorting!]
11650
12264
  ): DepartmentList!
@@ -11668,6 +12282,11 @@ type Query {
11668
12282
  """Pagination options for the list query."""
11669
12283
  pagination: Pagination
11670
12284
 
12285
+ """
12286
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12287
+ """
12288
+ search: String
12289
+
11671
12290
  """Sorting options for the list query."""
11672
12291
  sortings: [Sorting!]
11673
12292
  ): DomainLinkList!
@@ -11703,6 +12322,11 @@ type Query {
11703
12322
  """Pagination options for the list query."""
11704
12323
  pagination: Pagination
11705
12324
 
12325
+ """
12326
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12327
+ """
12328
+ search: String
12329
+
11706
12330
  """Sorting options for the list query."""
11707
12331
  sortings: [Sorting!]
11708
12332
  ): DomainList!
@@ -11721,6 +12345,11 @@ type Query {
11721
12345
  """Pagination options for the list query."""
11722
12346
  pagination: Pagination
11723
12347
 
12348
+ """
12349
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12350
+ """
12351
+ search: String
12352
+
11724
12353
  """Sorting options for the list query."""
11725
12354
  sortings: [Sorting!]
11726
12355
  ): ActivityThreadList!
@@ -11736,6 +12365,11 @@ type Query {
11736
12365
  """Pagination options for the list query."""
11737
12366
  pagination: Pagination
11738
12367
 
12368
+ """
12369
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12370
+ """
12371
+ search: String
12372
+
11739
12373
  """Sorting options for the list query."""
11740
12374
  sortings: [Sorting!]
11741
12375
  ): ActivityInstanceList!
@@ -11751,6 +12385,11 @@ type Query {
11751
12385
  """Pagination options for the list query."""
11752
12386
  pagination: Pagination
11753
12387
 
12388
+ """
12389
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12390
+ """
12391
+ search: String
12392
+
11754
12393
  """Sorting options for the list query."""
11755
12394
  sortings: [Sorting!]
11756
12395
  ): ApplianceList!
@@ -11773,6 +12412,11 @@ type Query {
11773
12412
  """Pagination options for the list query."""
11774
12413
  pagination: Pagination
11775
12414
 
12415
+ """
12416
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12417
+ """
12418
+ search: String
12419
+
11776
12420
  """Sorting options for the list query."""
11777
12421
  sortings: [Sorting!]
11778
12422
  ): EmployeeList!
@@ -11788,6 +12432,11 @@ type Query {
11788
12432
  """Pagination options for the list query."""
11789
12433
  pagination: Pagination
11790
12434
 
12435
+ """
12436
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12437
+ """
12438
+ search: String
12439
+
11791
12440
  """Sorting options for the list query."""
11792
12441
  sortings: [Sorting!]
11793
12442
  ): EntityList!
@@ -11809,6 +12458,11 @@ type Query {
11809
12458
  """Pagination options for the list query."""
11810
12459
  pagination: Pagination
11811
12460
 
12461
+ """
12462
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12463
+ """
12464
+ search: String
12465
+
11812
12466
  """Sorting options for the list query."""
11813
12467
  sortings: [Sorting!]
11814
12468
  ): EntityColumnList!
@@ -11831,6 +12485,11 @@ type Query {
11831
12485
  """Pagination options for the list query."""
11832
12486
  pagination: Pagination
11833
12487
 
12488
+ """
12489
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12490
+ """
12491
+ search: String
12492
+
11834
12493
  """Sorting options for the list query."""
11835
12494
  sortings: [Sorting!]
11836
12495
  ): EnvVarList!
@@ -11849,6 +12508,11 @@ type Query {
11849
12508
  """Pagination options for the list query."""
11850
12509
  pagination: Pagination
11851
12510
 
12511
+ """
12512
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12513
+ """
12514
+ search: String
12515
+
11852
12516
  """Sorting options for the list query."""
11853
12517
  sortings: [Sorting!]
11854
12518
  ): BoardFavoriteList!
@@ -11864,6 +12528,11 @@ type Query {
11864
12528
  """Pagination options for the list query."""
11865
12529
  pagination: Pagination
11866
12530
 
12531
+ """
12532
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12533
+ """
12534
+ search: String
12535
+
11867
12536
  """Sorting options for the list query."""
11868
12537
  sortings: [Sorting!]
11869
12538
  ): FavoriteList!
@@ -11894,6 +12563,11 @@ type Query {
11894
12563
  """Pagination options for the list query."""
11895
12564
  pagination: Pagination
11896
12565
 
12566
+ """
12567
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12568
+ """
12569
+ search: String
12570
+
11897
12571
  """Sorting options for the list query."""
11898
12572
  sortings: [Sorting!]
11899
12573
  ): FontList!
@@ -11917,6 +12591,11 @@ type Query {
11917
12591
  """Pagination options for the list query."""
11918
12592
  pagination: Pagination
11919
12593
 
12594
+ """
12595
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12596
+ """
12597
+ search: String
12598
+
11920
12599
  """Sorting options for the list query."""
11921
12600
  sortings: [Sorting!]
11922
12601
  ): GroupList!
@@ -11924,6 +12603,11 @@ type Query {
11924
12603
  """To query whether I have the given permission"""
11925
12604
  hasPrivilege(category: String!, privilege: String!): Boolean!
11926
12605
 
12606
+ """
12607
+ Number of sessions on this anchor that the caller has hidden and that have had no activity since. Meant to be requested alongside chatSessionInbox in the same operation so the filter can say how many are folded away.
12608
+ """
12609
+ hiddenSessionCount(anchorId: String!, anchorType: String!): Int!
12610
+
11927
12611
  """Get import session progress."""
11928
12612
  importSession(id: String!): ImportSession
11929
12613
 
@@ -11947,6 +12631,11 @@ type Query {
11947
12631
  """Pagination options for the list query."""
11948
12632
  pagination: Pagination
11949
12633
 
12634
+ """
12635
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12636
+ """
12637
+ search: String
12638
+
11950
12639
  """Sorting options for the list query."""
11951
12640
  sortings: [Sorting!]
11952
12641
  ): InspectionDrawingTypeList!
@@ -11965,6 +12654,11 @@ type Query {
11965
12654
  """Pagination options for the list query."""
11966
12655
  pagination: Pagination
11967
12656
 
12657
+ """
12658
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12659
+ """
12660
+ search: String
12661
+
11968
12662
  """Sorting options for the list query."""
11969
12663
  sortings: [Sorting!]
11970
12664
  ): InspectionPartList!
@@ -11980,6 +12674,11 @@ type Query {
11980
12674
  """Pagination options for the list query."""
11981
12675
  pagination: Pagination
11982
12676
 
12677
+ """
12678
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12679
+ """
12680
+ search: String
12681
+
11983
12682
  """Sorting options for the list query."""
11984
12683
  sortings: [Sorting!]
11985
12684
  ): InstallableActivityList!
@@ -12009,6 +12708,11 @@ type Query {
12009
12708
  """Pagination options for the list query."""
12010
12709
  pagination: Pagination
12011
12710
 
12711
+ """
12712
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12713
+ """
12714
+ search: String
12715
+
12012
12716
  """Sorting options for the list query."""
12013
12717
  sortings: [Sorting!]
12014
12718
  ): IssueList!
@@ -12051,6 +12755,11 @@ type Query {
12051
12755
  """Pagination options for the list query."""
12052
12756
  pagination: Pagination
12053
12757
 
12758
+ """
12759
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12760
+ """
12761
+ search: String
12762
+
12054
12763
  """Sorting options for the list query."""
12055
12764
  sortings: [Sorting!]
12056
12765
  ): KpiMetricValueList!
@@ -12066,6 +12775,11 @@ type Query {
12066
12775
  """Pagination options for the list query."""
12067
12776
  pagination: Pagination
12068
12777
 
12778
+ """
12779
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12780
+ """
12781
+ search: String
12782
+
12069
12783
  """Sorting options for the list query."""
12070
12784
  sortings: [Sorting!]
12071
12785
  ): KpiMetricList!
@@ -12102,6 +12816,11 @@ type Query {
12102
12816
  """Pagination options for the list query."""
12103
12817
  pagination: Pagination
12104
12818
 
12819
+ """
12820
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12821
+ """
12822
+ search: String
12823
+
12105
12824
  """Sorting options for the list query."""
12106
12825
  sortings: [Sorting!]
12107
12826
  ): KpiOrgScopeList!
@@ -12126,6 +12845,11 @@ type Query {
12126
12845
  """Pagination options for the list query."""
12127
12846
  pagination: Pagination
12128
12847
 
12848
+ """
12849
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12850
+ """
12851
+ search: String
12852
+
12129
12853
  """Sorting options for the list query."""
12130
12854
  sortings: [Sorting!]
12131
12855
  ): KpiScopeList!
@@ -12144,6 +12868,11 @@ type Query {
12144
12868
  """Pagination options for the list query."""
12145
12869
  pagination: Pagination
12146
12870
 
12871
+ """
12872
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12873
+ """
12874
+ search: String
12875
+
12147
12876
  """Sorting options for the list query."""
12148
12877
  sortings: [Sorting!]
12149
12878
  ): KpiStatisticList!
@@ -12168,6 +12897,11 @@ type Query {
12168
12897
  """Pagination options for the list query."""
12169
12898
  pagination: Pagination
12170
12899
 
12900
+ """
12901
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12902
+ """
12903
+ search: String
12904
+
12171
12905
  """Sorting options for the list query."""
12172
12906
  sortings: [Sorting!]
12173
12907
  ): KpiValueList!
@@ -12183,6 +12917,11 @@ type Query {
12183
12917
  """Pagination options for the list query."""
12184
12918
  pagination: Pagination
12185
12919
 
12920
+ """
12921
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12922
+ """
12923
+ search: String
12924
+
12186
12925
  """Sorting options for the list query."""
12187
12926
  sortings: [Sorting!]
12188
12927
  ): KpiList!
@@ -12213,6 +12952,11 @@ type Query {
12213
12952
  """Pagination options for the list query."""
12214
12953
  pagination: Pagination
12215
12954
 
12955
+ """
12956
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12957
+ """
12958
+ search: String
12959
+
12216
12960
  """Sorting options for the list query."""
12217
12961
  sortings: [Sorting!]
12218
12962
  ): KpiValueList!
@@ -12231,6 +12975,11 @@ type Query {
12231
12975
  """Pagination options for the list query."""
12232
12976
  pagination: Pagination
12233
12977
 
12978
+ """
12979
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
12980
+ """
12981
+ search: String
12982
+
12234
12983
  """Sorting options for the list query."""
12235
12984
  sortings: [Sorting!]
12236
12985
  ): LiteMenuList!
@@ -12246,6 +12995,11 @@ type Query {
12246
12995
  """Pagination options for the list query."""
12247
12996
  pagination: Pagination
12248
12997
 
12998
+ """
12999
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13000
+ """
13001
+ search: String
13002
+
12249
13003
  """Sorting options for the list query."""
12250
13004
  sortings: [Sorting!]
12251
13005
  ): LoginHistoryList!
@@ -12270,6 +13024,11 @@ type Query {
12270
13024
  """Pagination options for the list query."""
12271
13025
  pagination: Pagination
12272
13026
 
13027
+ """
13028
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13029
+ """
13030
+ search: String
13031
+
12273
13032
  """Sorting options for the list query."""
12274
13033
  sortings: [Sorting!]
12275
13034
  ): MenuButtonList!
@@ -12291,6 +13050,11 @@ type Query {
12291
13050
  """Pagination options for the list query."""
12292
13051
  pagination: Pagination
12293
13052
 
13053
+ """
13054
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13055
+ """
13056
+ search: String
13057
+
12294
13058
  """Sorting options for the list query."""
12295
13059
  sortings: [Sorting!]
12296
13060
  ): MenuColumnList!
@@ -12312,6 +13076,11 @@ type Query {
12312
13076
  """Pagination options for the list query."""
12313
13077
  pagination: Pagination
12314
13078
 
13079
+ """
13080
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13081
+ """
13082
+ search: String
13083
+
12315
13084
  """Sorting options for the list query."""
12316
13085
  sortings: [Sorting!]
12317
13086
  ): MenuDetailButtonList!
@@ -12330,6 +13099,11 @@ type Query {
12330
13099
  """Pagination options for the list query."""
12331
13100
  pagination: Pagination
12332
13101
 
13102
+ """
13103
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13104
+ """
13105
+ search: String
13106
+
12333
13107
  """Sorting options for the list query."""
12334
13108
  sortings: [Sorting!]
12335
13109
  ): MenuDetailColumnList!
@@ -12345,6 +13119,11 @@ type Query {
12345
13119
  """Pagination options for the list query."""
12346
13120
  pagination: Pagination
12347
13121
 
13122
+ """
13123
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13124
+ """
13125
+ search: String
13126
+
12348
13127
  """Sorting options for the list query."""
12349
13128
  sortings: [Sorting!]
12350
13129
  ): MenuDetailList!
@@ -12360,6 +13139,11 @@ type Query {
12360
13139
  """Pagination options for the list query."""
12361
13140
  pagination: Pagination
12362
13141
 
13142
+ """
13143
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13144
+ """
13145
+ search: String
13146
+
12363
13147
  """Sorting options for the list query."""
12364
13148
  sortings: [Sorting!]
12365
13149
  ): MenuList!
@@ -12375,6 +13159,11 @@ type Query {
12375
13159
  """Pagination options for the list query."""
12376
13160
  pagination: Pagination
12377
13161
 
13162
+ """
13163
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13164
+ """
13165
+ search: String
13166
+
12378
13167
  """Sorting options for the list query."""
12379
13168
  sortings: [Sorting!]
12380
13169
  ): ApprovalLineList!
@@ -12393,6 +13182,11 @@ type Query {
12393
13182
  """Pagination options for the list query."""
12394
13183
  pagination: Pagination
12395
13184
 
13185
+ """
13186
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13187
+ """
13188
+ search: String
13189
+
12396
13190
  """Sorting options for the list query."""
12397
13191
  sortings: [Sorting!]
12398
13192
  ): LiteMenuList!
@@ -12409,6 +13203,11 @@ type Query {
12409
13203
  """Pagination options for the list query."""
12410
13204
  pagination: Pagination
12411
13205
 
13206
+ """
13207
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13208
+ """
13209
+ search: String
13210
+
12412
13211
  """Sorting options for the list query."""
12413
13212
  sortings: [Sorting!]
12414
13213
  ): MenuList!
@@ -12424,6 +13223,11 @@ type Query {
12424
13223
  """Pagination options for the list query."""
12425
13224
  pagination: Pagination
12426
13225
 
13226
+ """
13227
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13228
+ """
13229
+ search: String
13230
+
12427
13231
  """Sorting options for the list query."""
12428
13232
  sortings: [Sorting!]
12429
13233
  ): NotificationList!
@@ -12445,6 +13249,11 @@ type Query {
12445
13249
  """Pagination options for the list query."""
12446
13250
  pagination: Pagination
12447
13251
 
13252
+ """
13253
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13254
+ """
13255
+ search: String
13256
+
12448
13257
  """Sorting options for the list query."""
12449
13258
  sortings: [Sorting!]
12450
13259
  ): PagePreferenceList!
@@ -12466,6 +13275,11 @@ type Query {
12466
13275
  """Pagination options for the list query."""
12467
13276
  pagination: Pagination
12468
13277
 
13278
+ """
13279
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13280
+ """
13281
+ search: String
13282
+
12469
13283
  """Sorting options for the list query."""
12470
13284
  sortings: [Sorting!]
12471
13285
  ): UserPreferenceList!
@@ -12490,6 +13304,11 @@ type Query {
12490
13304
  """Pagination options for the list query."""
12491
13305
  pagination: Pagination
12492
13306
 
13307
+ """
13308
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13309
+ """
13310
+ search: String
13311
+
12493
13312
  """Sorting options for the list query."""
12494
13313
  sortings: [Sorting!]
12495
13314
  ): NotificationRuleList!
@@ -12505,6 +13324,11 @@ type Query {
12505
13324
  """Pagination options for the list query."""
12506
13325
  pagination: Pagination
12507
13326
 
13327
+ """
13328
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13329
+ """
13330
+ search: String
13331
+
12508
13332
  """Sorting options for the list query."""
12509
13333
  sortings: [Sorting!]
12510
13334
  ): NotificationList!
@@ -12523,6 +13347,11 @@ type Query {
12523
13347
  """Pagination options for the list query."""
12524
13348
  pagination: Pagination
12525
13349
 
13350
+ """
13351
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13352
+ """
13353
+ search: String
13354
+
12526
13355
  """Sorting options for the list query."""
12527
13356
  sortings: [Sorting!]
12528
13357
  ): Oauth2ClientList!
@@ -12548,6 +13377,11 @@ type Query {
12548
13377
  """Pagination options for the list query."""
12549
13378
  pagination: Pagination
12550
13379
 
13380
+ """
13381
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13382
+ """
13383
+ search: String
13384
+
12551
13385
  """Sorting options for the list query."""
12552
13386
  sortings: [Sorting!]
12553
13387
  ): PartnerList!
@@ -12571,6 +13405,11 @@ type Query {
12571
13405
  """Pagination options for the list query."""
12572
13406
  pagination: Pagination
12573
13407
 
13408
+ """
13409
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13410
+ """
13411
+ search: String
13412
+
12574
13413
  """Sorting options for the list query."""
12575
13414
  sortings: [Sorting!]
12576
13415
  ): PayloadLogList!
@@ -12595,6 +13434,11 @@ type Query {
12595
13434
  """Pagination options for the list query."""
12596
13435
  pagination: Pagination
12597
13436
 
13437
+ """
13438
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13439
+ """
13440
+ search: String
13441
+
12598
13442
  """Sorting options for the list query."""
12599
13443
  sortings: [Sorting!]
12600
13444
  ): ActivityInstanceList!
@@ -12616,6 +13460,11 @@ type Query {
12616
13460
  """Pagination options for the list query."""
12617
13461
  pagination: Pagination
12618
13462
 
13463
+ """
13464
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13465
+ """
13466
+ search: String
13467
+
12619
13468
  """Sorting options for the list query."""
12620
13469
  sortings: [Sorting!]
12621
13470
  ): PlayGroupList!
@@ -12637,6 +13486,11 @@ type Query {
12637
13486
  """Pagination options for the list query."""
12638
13487
  pagination: Pagination
12639
13488
 
13489
+ """
13490
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13491
+ """
13492
+ search: String
13493
+
12640
13494
  """Sorting options for the list query."""
12641
13495
  sortings: [Sorting!]
12642
13496
  ): PrinterDeviceList!
@@ -12652,6 +13506,11 @@ type Query {
12652
13506
  """Pagination options for the list query."""
12653
13507
  pagination: Pagination
12654
13508
 
13509
+ """
13510
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13511
+ """
13512
+ search: String
13513
+
12655
13514
  """Sorting options for the list query."""
12656
13515
  sortings: [Sorting!]
12657
13516
  ): PrivilegeList!
@@ -12676,6 +13535,11 @@ type Query {
12676
13535
  """Pagination options for the list query."""
12677
13536
  pagination: Pagination
12678
13537
 
13538
+ """
13539
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13540
+ """
13541
+ search: String
13542
+
12679
13543
  """Sorting options for the list query."""
12680
13544
  sortings: [Sorting!]
12681
13545
  ): ProjectChecklistItemList!
@@ -12691,6 +13555,11 @@ type Query {
12691
13555
  """Pagination options for the list query."""
12692
13556
  pagination: Pagination
12693
13557
 
13558
+ """
13559
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13560
+ """
13561
+ search: String
13562
+
12694
13563
  """Sorting options for the list query."""
12695
13564
  sortings: [Sorting!]
12696
13565
  ): ProjectChecklistList!
@@ -12709,6 +13578,11 @@ type Query {
12709
13578
  """Pagination options for the list query."""
12710
13579
  pagination: Pagination
12711
13580
 
13581
+ """
13582
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13583
+ """
13584
+ search: String
13585
+
12712
13586
  """Sorting options for the list query."""
12713
13587
  sortings: [Sorting!]
12714
13588
  ): ProjectReportList!
@@ -12724,6 +13598,11 @@ type Query {
12724
13598
  """Pagination options for the list query."""
12725
13599
  pagination: Pagination
12726
13600
 
13601
+ """
13602
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13603
+ """
13604
+ search: String
13605
+
12727
13606
  """Sorting options for the list query."""
12728
13607
  sortings: [Sorting!]
12729
13608
  ): ProjectList!
@@ -12748,6 +13627,11 @@ type Query {
12748
13627
  """Pagination options for the list query."""
12749
13628
  pagination: Pagination
12750
13629
 
13630
+ """
13631
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13632
+ """
13633
+ search: String
13634
+
12751
13635
  """Sorting options for the list query."""
12752
13636
  sortings: [Sorting!]
12753
13637
  ): ResourceList!
@@ -12772,6 +13656,11 @@ type Query {
12772
13656
  """Pagination options for the list query."""
12773
13657
  pagination: Pagination
12774
13658
 
13659
+ """
13660
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13661
+ """
13662
+ search: String
13663
+
12775
13664
  """Sorting options for the list query."""
12776
13665
  sortings: [Sorting!]
12777
13666
  ): RoleList!
@@ -12793,10 +13682,33 @@ type Query {
12793
13682
  """Pagination options for the list query."""
12794
13683
  pagination: Pagination
12795
13684
 
13685
+ """
13686
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13687
+ """
13688
+ search: String
13689
+
12796
13690
  """Sorting options for the list query."""
12797
13691
  sortings: [Sorting!]
12798
13692
  ): ScenarioInstanceList!
12799
13693
 
13694
+ """Fetches the most recently released version (snapshot) of a scenario."""
13695
+ scenarioPublished(id: String!): ScenarioHistory
13696
+
13697
+ """
13698
+ Fetches a specific released version (snapshot) of a scenario by version number.
13699
+ """
13700
+ scenarioVersion(id: String!, version: Int!): ScenarioHistory
13701
+
13702
+ """
13703
+ Computes the difference between a released version and either another released version or the current draft. Omit toVersion to diff the base version against the current draft.
13704
+ """
13705
+ scenarioVersionDiff(id: String!, toVersion: Int, version: Int!): ScenarioVersionDiff!
13706
+
13707
+ """
13708
+ Fetches recent released versions (snapshots) of a scenario, newest first.
13709
+ """
13710
+ scenarioVersions(id: String!): [ScenarioHistory!]!
13711
+
12800
13712
  """Fetches a paginated list of scenarios."""
12801
13713
  scenarios(
12802
13714
  """An array of filter conditions to apply to the list query."""
@@ -12808,6 +13720,11 @@ type Query {
12808
13720
  """Pagination options for the list query."""
12809
13721
  pagination: Pagination
12810
13722
 
13723
+ """
13724
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13725
+ """
13726
+ search: String
13727
+
12811
13728
  """Sorting options for the list query."""
12812
13729
  sortings: [Sorting!]
12813
13730
  ): ScenarioList!
@@ -12821,6 +13738,11 @@ type Query {
12821
13738
  """Pagination options for the list query."""
12822
13739
  pagination: Pagination
12823
13740
 
13741
+ """
13742
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13743
+ """
13744
+ search: String
13745
+
12824
13746
  """Sorting options for the list query."""
12825
13747
  sortings: [Sorting!]
12826
13748
  ): DomainList!
@@ -12844,6 +13766,11 @@ type Query {
12844
13766
  """Pagination options for the list query."""
12845
13767
  pagination: Pagination
12846
13768
 
13769
+ """
13770
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13771
+ """
13772
+ search: String
13773
+
12847
13774
  """Sorting options for the list query."""
12848
13775
  sortings: [Sorting!]
12849
13776
  ): SettingList!
@@ -12859,6 +13786,11 @@ type Query {
12859
13786
  """Pagination options for the list query."""
12860
13787
  pagination: Pagination
12861
13788
 
13789
+ """
13790
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13791
+ """
13792
+ search: String
13793
+
12862
13794
  """Sorting options for the list query."""
12863
13795
  sortings: [Sorting!]
12864
13796
  ): ActivityList!
@@ -12880,6 +13812,11 @@ type Query {
12880
13812
  """Pagination options for the list query."""
12881
13813
  pagination: Pagination
12882
13814
 
13815
+ """
13816
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13817
+ """
13818
+ search: String
13819
+
12883
13820
  """Sorting options for the list query."""
12884
13821
  sortings: [Sorting!]
12885
13822
  ): StateRegisterList!
@@ -12898,6 +13835,11 @@ type Query {
12898
13835
  """Pagination options for the list query."""
12899
13836
  pagination: Pagination
12900
13837
 
13838
+ """
13839
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13840
+ """
13841
+ search: String
13842
+
12901
13843
  """Sorting options for the list query."""
12902
13844
  sortings: [Sorting!]
12903
13845
  ): StepList!
@@ -12921,6 +13863,11 @@ type Query {
12921
13863
  """Pagination options for the list query."""
12922
13864
  pagination: Pagination
12923
13865
 
13866
+ """
13867
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13868
+ """
13869
+ search: String
13870
+
12924
13871
  """Sorting options for the list query."""
12925
13872
  sortings: [Sorting!]
12926
13873
  ): ActivityList!
@@ -12939,6 +13886,11 @@ type Query {
12939
13886
  """Pagination options for the list query."""
12940
13887
  pagination: Pagination
12941
13888
 
13889
+ """
13890
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13891
+ """
13892
+ search: String
13893
+
12942
13894
  """Sorting options for the list query."""
12943
13895
  sortings: [Sorting!]
12944
13896
  ): SupervisorList!
@@ -12963,6 +13915,11 @@ type Query {
12963
13915
  """Pagination options for the list query."""
12964
13916
  pagination: Pagination
12965
13917
 
13918
+ """
13919
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13920
+ """
13921
+ search: String
13922
+
12966
13923
  """Sorting options for the list query."""
12967
13924
  sortings: [Sorting!]
12968
13925
  ): TaskResourceList!
@@ -12989,6 +13946,11 @@ type Query {
12989
13946
  """Pagination options for the list query."""
12990
13947
  pagination: Pagination
12991
13948
 
13949
+ """
13950
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13951
+ """
13952
+ search: String
13953
+
12992
13954
  """Sorting options for the list query."""
12993
13955
  sortings: [Sorting!]
12994
13956
  ): TaskList!
@@ -13004,6 +13966,11 @@ type Query {
13004
13966
  """Pagination options for the list query."""
13005
13967
  pagination: Pagination
13006
13968
 
13969
+ """
13970
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13971
+ """
13972
+ search: String
13973
+
13007
13974
  """Sorting options for the list query."""
13008
13975
  sortings: [Sorting!]
13009
13976
  ): TerminologyList!
@@ -13025,6 +13992,11 @@ type Query {
13025
13992
  """Pagination options for the list query."""
13026
13993
  pagination: Pagination
13027
13994
 
13995
+ """
13996
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
13997
+ """
13998
+ search: String
13999
+
13028
14000
  """Sorting options for the list query."""
13029
14001
  sortings: [Sorting!]
13030
14002
  ): ThemeList!
@@ -13040,6 +14012,11 @@ type Query {
13040
14012
  """Pagination options for the list query."""
13041
14013
  pagination: Pagination
13042
14014
 
14015
+ """
14016
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
14017
+ """
14018
+ search: String
14019
+
13043
14020
  """Sorting options for the list query."""
13044
14021
  sortings: [Sorting!]
13045
14022
  ): ActivityThreadList!
@@ -13069,6 +14046,11 @@ type Query {
13069
14046
  """Pagination options for the list query."""
13070
14047
  pagination: Pagination
13071
14048
 
14049
+ """
14050
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
14051
+ """
14052
+ search: String
14053
+
13072
14054
  """Sorting options for the list query."""
13073
14055
  sortings: [Sorting!]
13074
14056
  ): UserList!
@@ -13085,6 +14067,11 @@ type Query {
13085
14067
  """Pagination options for the list query."""
13086
14068
  pagination: Pagination
13087
14069
 
14070
+ """
14071
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
14072
+ """
14073
+ search: String
14074
+
13088
14075
  """Sorting options for the list query."""
13089
14076
  sortings: [Sorting!]
13090
14077
  ): WorkShiftList!
@@ -13103,6 +14090,11 @@ type Query {
13103
14090
  """Pagination options for the list query."""
13104
14091
  pagination: Pagination
13105
14092
 
14093
+ """
14094
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
14095
+ """
14096
+ search: String
14097
+
13106
14098
  """Sorting options for the list query."""
13107
14099
  sortings: [Sorting!]
13108
14100
  ): WorkerTypeList!
@@ -13284,6 +14276,11 @@ type Scenario {
13284
14276
 
13285
14277
  """Indicates if the scenario is accessible and executable system-wide."""
13286
14278
  public: Boolean
14279
+
14280
+ """
14281
+ The publish state of the scenario: 'draft' (has unreleased edits) or 'released'.
14282
+ """
14283
+ publishState: String
13287
14284
  publishTags: [Connection!]!
13288
14285
 
13289
14286
  """Role required to execute the scenario."""
@@ -13295,9 +14292,7 @@ type Scenario {
13295
14292
  """The ID of the scheduled job, if any."""
13296
14293
  scheduleId: String
13297
14294
  state: String
13298
-
13299
- """The sequence of steps that make up the scenario."""
13300
- steps: [Step!]
14295
+ steps: [Step!]!
13301
14296
 
13302
14297
  """The timezone for the schedule."""
13303
14298
  timezone: String
@@ -13313,6 +14308,88 @@ type Scenario {
13313
14308
 
13314
14309
  """The user who last updated the scenario."""
13315
14310
  updater: User
14311
+
14312
+ """
14313
+ The latest released version number of the scenario (0 if never released).
14314
+ """
14315
+ version: Int
14316
+ }
14317
+
14318
+ """A single scenario field difference between two versions."""
14319
+ type ScenarioFieldDiff {
14320
+ """The value after (in the target version/draft)."""
14321
+ after: Object
14322
+
14323
+ """The value before (in the base version)."""
14324
+ before: Object
14325
+
14326
+ """
14327
+ The name of the field that changed (e.g. description, schedule, steps).
14328
+ """
14329
+ field: String!
14330
+ }
14331
+
14332
+ """Stores released (published) version snapshots of scenarios."""
14333
+ type ScenarioHistory {
14334
+ """The action that created this history record."""
14335
+ action: String!
14336
+
14337
+ """The release note/comment left when this version was published."""
14338
+ comment: String
14339
+
14340
+ """The creation timestamp of the original scenario."""
14341
+ createdAt: DateTimeISO
14342
+
14343
+ """The user who created the original scenario."""
14344
+ creator: User
14345
+
14346
+ """The description of the scenario at this point in history."""
14347
+ description: String
14348
+
14349
+ """The domain this scenario belonged to."""
14350
+ domain: Domain
14351
+
14352
+ """Unique identifier for the scenario history record."""
14353
+ id: ID!
14354
+
14355
+ """The iteration mode of the scenario at this point in history."""
14356
+ iteration: String
14357
+
14358
+ """The name of the scenario at this point in history."""
14359
+ name: String
14360
+
14361
+ """The ID of the original scenario this history record belongs to."""
14362
+ originalId: String!
14363
+
14364
+ """Privilege required to execute the scenario."""
14365
+ privilege: PrivilegeObject
14366
+
14367
+ """Role required to execute the scenario at this point."""
14368
+ role: Role
14369
+
14370
+ """The schedule of the scenario at this point in history."""
14371
+ schedule: String
14372
+
14373
+ """The steps of the scenario captured in this version."""
14374
+ steps: [Step!]
14375
+
14376
+ """The timezone of the scenario at this point in history."""
14377
+ timezone: String
14378
+
14379
+ """The time-to-live of scenario instances at this point."""
14380
+ ttl: Int
14381
+
14382
+ """The type of the scenario at this point in history."""
14383
+ type: String
14384
+
14385
+ """The update timestamp of the scenario at this point in history."""
14386
+ updatedAt: DateTimeISO
14387
+
14388
+ """The user who published this version."""
14389
+ updater: User
14390
+
14391
+ """The released version number of this snapshot."""
14392
+ version: Int
13316
14393
  }
13317
14394
 
13318
14395
  """Represents a running or completed instance of a scenario."""
@@ -13521,6 +14598,47 @@ type ScenarioQueueState {
13521
14598
  queue: [PendingObject!]!
13522
14599
  }
13523
14600
 
14601
+ """
14602
+ A single step difference between two scenario versions, keyed by step name.
14603
+ """
14604
+ type ScenarioStepDiff {
14605
+ """The step as it is in the target version/draft."""
14606
+ after: Object
14607
+
14608
+ """The step as it was in the base version."""
14609
+ before: Object
14610
+
14611
+ """The kind of change: 'added', 'removed', or 'modified'."""
14612
+ changeType: String!
14613
+
14614
+ """
14615
+ Field-level changes within a modified step (task, connection, params, ...).
14616
+ """
14617
+ fieldDiffs: [ScenarioFieldDiff!]
14618
+
14619
+ """The step name (identity used for diffing)."""
14620
+ name: String
14621
+ }
14622
+
14623
+ """
14624
+ The difference between two scenario versions (or a version and the current draft).
14625
+ """
14626
+ type ScenarioVersionDiff {
14627
+ """Scenario-level field changes."""
14628
+ fieldDiffs: [ScenarioFieldDiff!]!
14629
+
14630
+ """The base version number being compared from."""
14631
+ fromVersion: Int!
14632
+
14633
+ """Step-level changes keyed by step name."""
14634
+ stepDiffs: [ScenarioStepDiff!]!
14635
+
14636
+ """
14637
+ The target version number being compared to. Null means the current draft.
14638
+ """
14639
+ toVersion: Int
14640
+ }
14641
+
13524
14642
  """Types of organizational scope dimensions"""
13525
14643
  enum ScopeType {
13526
14644
  BUSINESS
@@ -13531,6 +14649,36 @@ enum ScopeType {
13531
14649
  TEMPORAL
13532
14650
  }
13533
14651
 
14652
+ """
14653
+ Activity notice for a session the current user participates in — badge/list refresh only, no message body.
14654
+ """
14655
+ type SessionActivity {
14656
+ """User who caused the activity — clients skip badging their own."""
14657
+ actorId: String
14658
+
14659
+ """Id of the anchored target."""
14660
+ anchorId: String
14661
+
14662
+ """
14663
+ What the session is anchored to: 'board' | 'space' | 'instance' | 'none'.
14664
+ """
14665
+ anchorType: String
14666
+
14667
+ """Activity timestamp (ISO)."""
14668
+ at: String!
14669
+
14670
+ """
14671
+ Kind of activity: 'message' (new message — raise the unread badge) or 'meta' (session itself changed, e.g. renamed — refresh the list but do not badge).
14672
+ """
14673
+ kind: String!
14674
+
14675
+ """One-line preview (not the full body)."""
14676
+ preview: String
14677
+
14678
+ """Session that had activity."""
14679
+ sessionId: String!
14680
+ }
14681
+
13534
14682
  """Entity for Setting"""
13535
14683
  type Setting {
13536
14684
  category: String!
@@ -13824,6 +14972,16 @@ type Subscription {
13824
14972
  """Subscribes to real-time updates for a specific board."""
13825
14973
  board(id: String!): Board!
13826
14974
 
14975
+ """
14976
+ Subscribes to board edit patches (AI or user-direct) for real-time collaboration on a board.
14977
+ """
14978
+ boardPatchActivity(boardId: String!): PatchEntry!
14979
+
14980
+ """
14981
+ Subscribes to chat messages (user / assistant / system) of a session for real-time group chat.
14982
+ """
14983
+ chatMessageActivity(sessionId: String!): ChatMessage!
14984
+
13827
14985
  """Subscribes to log messages from connections."""
13828
14986
  connectionLog(level: String): Log!
13829
14987
 
@@ -13835,6 +14993,11 @@ type Subscription {
13835
14993
  Real-time subscription for out-of-control (OOC) events. Users with supervisory roles receive immediate notifications when OOC events occur in their domain.
13836
14994
  """
13837
14995
  dataOoc: DataOoc!
14996
+
14997
+ """
14998
+ Subscribes to activity in every session the current user participates in, so a closed chat surface can still show unread badges and refresh its list.
14999
+ """
15000
+ mySessionActivity: SessionActivity!
13838
15001
  notification(subjects: [String!]): Notification!
13839
15002
 
13840
15003
  """Subscribes to real-time updates for a specific play group."""
@@ -13913,6 +15076,11 @@ type Task {
13913
15076
  """Pagination options for the list query."""
13914
15077
  pagination: Pagination
13915
15078
 
15079
+ """
15080
+ A single free-text term matched across the fields the resolver declares as searchable (OR). Additive to filters: both are applied together. Prefer this over hand-assembling one search filter per field.
15081
+ """
15082
+ search: String
15083
+
13916
15084
  """Sorting options for the list query."""
13917
15085
  sortings: [Sorting!]
13918
15086
  ): [Task!]